More Python style fixes

MS-2855/keylogger-mettle-extension
Adam Cammack 2018-01-23 09:17:22 -06:00
parent 670055da4b
commit be08af5404
No known key found for this signature in database
GPG Key ID: C9378BA088092D66
1 changed files with 3 additions and 3 deletions

View File

@ -41,8 +41,8 @@ if __name__ == "__main__":
study = probe_scanner.make_scanner(
# Payload and pattern are given and applied straight to the socket, so
# they need to be bytes-like
payload = b'\x2a\xce\x00\x00\x00\x00\x00\x00\x00\x00\x00',
pattern = b'^\\*\xce.{3}$',
onmatch = report_wproxy
payload=b'\x2a\xce\x00\x00\x00\x00\x00\x00\x00\x00\x00',
pattern=b'^\\*\xce.{3}$',
onmatch=report_wproxy
)
module.run(metadata, study)