mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 06:50:14 +00:00
Some PEP8 related style cleaning
This commit is contained in:
parent
6cfa9cb0b3
commit
ca3d35a878
61 changed files with 176 additions and 172 deletions
|
|
@ -115,7 +115,7 @@ class Filesystem:
|
|||
if not single:
|
||||
if len(content) > 256:
|
||||
for i in xrange(0, len(content), 256):
|
||||
_ = content[i:i+256]
|
||||
_ = content[i:i + 256]
|
||||
|
||||
if encoding == "hex":
|
||||
_ = "0x%s" % _
|
||||
|
|
|
|||
|
|
@ -184,9 +184,9 @@ class Takeover(Abstraction, Metasploit, ICMPsh, Registry, Miscellaneous):
|
|||
goUdf = True
|
||||
|
||||
if goUdf:
|
||||
exitfunc="thread"
|
||||
exitfunc = "thread"
|
||||
else:
|
||||
exitfunc="process"
|
||||
exitfunc = "process"
|
||||
|
||||
self.createMsfShellcode(exitfunc=exitfunc, format="raw", extra="BufferRegister=EAX", encode="x86/alpha_mixed")
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue