forked from p15670423/monkey
Agent: Fix function call (misspelled) in WebRCE
This commit is contained in:
parent
10cfe346b6
commit
1bf51cd047
|
@ -274,7 +274,7 @@ class WebRCE(HostExploiter):
|
|||
"monkey_path": dest_path,
|
||||
"http_path": http_path,
|
||||
}
|
||||
self.telemetry_messenger.send_telemtry(
|
||||
self.telemetry_messenger.send_telemetry(
|
||||
T1197Telem(ScanStatus.USED, self.host, BITS_UPLOAD_STRING)
|
||||
)
|
||||
resp = self.exploit(url, backup_command)
|
||||
|
@ -334,10 +334,10 @@ class WebRCE(HostExploiter):
|
|||
command = CHMOD_MONKEY % {"monkey_path": path}
|
||||
try:
|
||||
resp = self.exploit(url, command)
|
||||
self.telemetry_messenger.send_telemtry(T1222Telem(ScanStatus.USED, command, self.host))
|
||||
self.telemetry_messenger.send_telemetry(T1222Telem(ScanStatus.USED, command, self.host))
|
||||
except Exception as e:
|
||||
logger.error("Something went wrong while trying to change permission: %s" % e)
|
||||
self.telemetry_messenger.send_telemtry(T1222Telem(ScanStatus.SCANNED, "", self.host))
|
||||
self.telemetry_messenger.send_telemetry(T1222Telem(ScanStatus.SCANNED, "", self.host))
|
||||
return False
|
||||
# If exploiter returns True / False
|
||||
if isinstance(resp, bool):
|
||||
|
|
Loading…
Reference in New Issue