Page 2 of 7 FirstFirst 1 2 3 4 5 6 ... LastLast
Results 21 to 40 of 129

Thread: Security problem with filemng

  1. #21
    Kilo Poster
    Join Date
    Aug 2009
    Location
    Curitiba - PR - Brazil
    Posts
    17

    Default

    Several files infected.

    To scan and clean I'm using this command:

    grep -ilr 'km0ae9gr6m' /var/www/vhosts | while read arq; do echo $arq; echo $arq >> /root/infected.txt; sed -i 's/km0ae9gr6m[^>]*qhk6sa6g1c/virus removed/g' $arq; done;



  2. #22
    Mega Poster
    Join Date
    Jun 2005
    Posts
    131

    Default This is a new plesk vulnerability

    Yes, I believe this is a NEW vulnerability.
    I have MU17 applied, and the php script says the patch had been successfully applied.

    I logged in to find active sessions on almost every account from all over the internet.

    I changed the passwords to the admin/client accounts and they just got them AGAIN.



  3. #23
    Mega Poster
    Join Date
    Jun 2005
    Posts
    131

    Default

    Yes, I have the latest using 9.5.4 MU17. It says the vulnerability patch is installed. The passwords were changed. They got the new ones right away, not much protection there. I just found over 100 active sessions from all over the internet.

    This is a NEW vulnerability.



  4. #24
    Kilo Poster
    Join Date
    Aug 2009
    Location
    Curitiba - PR - Brazil
    Posts
    17

    Default

    I also think it's a NEW vulnerability, my servers were all updated with the microupdate and were exploited.

    Only the ones with Atomic Secured Linux were not affected.

    I'm also using this command to clean the infected files (slightly different from my previous post):

    grep -ilr 'km0ae9gr6m' /var/www/vhosts/ | while read arq; do echo $arq; echo $arq >> /root/infected.txt; sed -ni '1h;1!H;${x;s/km0ae9gr6m.*qhk6sa6g1c/virus removed/;p}' $arq; done;



  5. #25
    Bit Poster
    Join Date
    Jul 2012
    Posts
    2

    Default

    Likewise, I have the patch installed, auto-changed all passwords and cleaned out the infected files on Friday, but have been compromised again this morning. This must be a NEW vulnerability. Any help is appreciated!



  6. #26

    Default

    Iīm sure its a NEW vulnerability too. Parallels support didnīt do anything, they answer to find a administrator :-(



  7. #27
    Kilo Poster
    Join Date
    Oct 2005
    Posts
    16

    Default

    I was patched on one server, unpatched on another. Both were penetrated. After patching the second server, then changing the client account passwords, the Plesk logs show the exploits are failing at the control panel login.

    I'm also using corncrake's script via cron for monitoring the files, which is very handy. Thanks, corncrake!



  8. #28
    Parallels Team IgorG's Avatar
    Join Date
    Oct 2009
    Location
    Novosibirsk, Russia
    Posts
    12,220

    Default

    It is NOT new vulnerability. We strongly recommend you remove all records in 'sessions' table of psa database after mass password changing.

    Use something like:

    mysql> delete from sessions;
    Last edited by IgorG; Jul 9, 2012 at 01:25 AM.



  9. #29
    Kilo Poster
    Join Date
    May 2010
    Posts
    18

    Default

    Yea, same here. Had the patch applied.

    Can only guess that the passwords (which are stored in plain text in MySQL who's root password is located in /etc/psa/.psa.shadow wtf?) were compromised during the last exploit.



  10. #30
    Parallels Team IgorG's Avatar
    Join Date
    Oct 2009
    Location
    Novosibirsk, Russia
    Posts
    12,220

    Default

    Quote Originally Posted by Squeeb View Post
    Yea, same here. Had the patch applied.

    Can only guess that the passwords (which are stored in plain text in MySQL who's root password is located in /etc/psa/.psa.shadow wtf?) were compromised during the last exploit.
    Generally, you should:

    (1) apply fixes <-- http://kb.parallels.com/113321
    (2) reset all passwords and make sure your clients don't change the passwords back <-- mail passwords could be skipped
    (3) remove sessions records from psa db <-- mysql> delete from sessions;
    (4) remove infected files <-- http://forum.parallels.com/showpost....8&postcount=24

    It should help.
    Last edited by sergius; Jul 9, 2012 at 12:55 PM.



  11. #31
    Bit Poster
    Join Date
    Apr 2012
    Posts
    4

    Default

    @IgorG it cannot be http://kb.parallels.com/en/113321 because at least for us servers had the patch applied long time ago and trojan was installed yesterday.



  12. #32
    Parallels Team IgorG's Avatar
    Join Date
    Oct 2009
    Location
    Novosibirsk, Russia
    Posts
    12,220

    Default

    Quote Originally Posted by MihaiV View Post
    @IgorG it cannot be http://kb.parallels.com/en/113321 because at least for us servers had the patch applied long time ago and trojan was installed yesterday.
    In that case why do you think that trojan was installed because of Plesk vulnerability?
    Did you clean sessions immediately after changing ALL passwords long time ago?



  13. #33
    Kilo Poster
    Join Date
    May 2010
    Posts
    18

    Default

    I will enable our admin panel again on one of our "less important" plesk servers and see what happens with the sessions table cleared and let you know.

    hehe .. BAIT!



  14. #34
    Parallels Team IgorG's Avatar
    Join Date
    Oct 2009
    Location
    Novosibirsk, Russia
    Posts
    12,220

    Default

    Quote Originally Posted by Squeeb View Post
    I will enable our admin panel again on one of our "less important" plesk servers and see what happens with the sessions table cleared and let you know.

    hehe .. BAIT!
    Do not forget change ALL passwords there before test.



  15. #35
    Kilo Poster
    Join Date
    May 2010
    Posts
    18

    Default

    php -d open_basedir= -d safe_mode=0 plesk_password_changer.php `cat /etc/psa/.psa.shadow` 'hurrrrderp' --users --domains --domainadmins --admin

    Is the command I used.

    I didn't want to reset everybody's mail password as I didn't think that was necessary.
    If it is, that will totally suck.



  16. #36
    Parallels Team IgorG's Avatar
    Join Date
    Oct 2009
    Location
    Novosibirsk, Russia
    Posts
    12,220

    Default

    Quote Originally Posted by Squeeb View Post
    I didn't want to reset everybody's mail password as I didn't think that was necessary.
    Ok. But in that case we can't talk about Plesk vulnerability consequences. Patch will not allow new attacks but already stolen passwords allows hackers to install any trojans on your already protected by patch Plesk server.

    Read "Best Practices" here http://kb.parallels.com/en/113321



  17. #37
    Bit Poster
    Join Date
    Jul 2012
    Posts
    2

    Default

    I have found the client account they had been using to access and have now locked it down and changed all the passwords again. Will monitor the situation but I don't believe it is a new vulnerability any more.



  18. #38
    Bit Poster
    Join Date
    Apr 2012
    Posts
    4

    Default

    Was done though the interface on multiple servers (different passwords and so) using interface and filemanager.
    @Igor there wasn't any sing then that it was hacked, patch was applied in the same day it was released.
    And will be kind of odd to actually break a server after some time



  19. #39

    Default

    Having the same issue, cleaning the websites with the scripts provided, TY



  20. #40
    Kilo Poster
    Join Date
    Dec 2007
    Posts
    22

    Default

    My plesk admin site log is full of lines like this:

    2012-07-09 00:38:38 W3SVC16922 XXX 216.x.x.x GET /plesk.php/client@97/domain@240/hosting/file-manager/edit/ cmd=chdir&file=/httpdocs/ 8443 - 182.93.234.129 HTTP/1.1 Mozilla/5.0+(Windows+NT+6.1)+AppleWebKit/536.5+(KHTML,+like+Gecko)+Chrome/15.0.1084.56+Safari/546.5 PLESKSESSID=8594fbb307a4224f265af04f2c899c4f;+loca le=en-US;+psaContext=domains https://domain.com:8443/plesk/client...ile=/httpdocs/ domain.com:8443 200 0 0 66324 469 19453

    Scary. Time to reset passwords.

    I applied the fix months ago. Does this mean the hackers dumped our databases months ago?

    Mark



Page 2 of 7 FirstFirst 1 2 3 4 5 6 ... LastLast

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •