Skip to content

Commit be08af5

Browse files
committed
More Python style fixes
1 parent 670055d commit be08af5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

modules/auxiliary/scanner/wproxy/att_open_proxy.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ def report_wproxy(target, response):
4141
study = probe_scanner.make_scanner(
4242
# Payload and pattern are given and applied straight to the socket, so
4343
# they need to be bytes-like
44-
payload = b'\x2a\xce\x00\x00\x00\x00\x00\x00\x00\x00\x00',
45-
pattern = b'^\\*\xce.{3}$',
46-
onmatch = report_wproxy
44+
payload=b'\x2a\xce\x00\x00\x00\x00\x00\x00\x00\x00\x00',
45+
pattern=b'^\\*\xce.{3}$',
46+
onmatch=report_wproxy
4747
)
4848
module.run(metadata, study)

0 commit comments

Comments
 (0)