This commit is contained in:
Anh T Nguyen 2019-09-01 14:04:16 +07:00
parent 8099644cee
commit c0a6f1d1dd
1 changed files with 1 additions and 1 deletions

View File

@ -197,7 +197,7 @@ class ShellShockExploiter(HostExploiter):
if cls.check_remote_file_exists(url, header, exploit, file_path):
LOG.info("Another monkey is running shellshock exploit")
return False
cmdline = 'touch /tmp/monkey_lock'
cmdline = 'echo AAAA > %s' % file_path
run_path = exploit + cmdline
cls.attack_page(url, header, run_path)
return True