Skip to content

Commit cce3208

Browse files
committed
Cleanup
1 parent 7da3d8d commit cce3208

File tree

4 files changed

+6
-7
lines changed

4 files changed

+6
-7
lines changed

extra/socks/socks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
3. Neither the name of Dan Haim nor the names of his contributors may be used
1616
to endorse or promote products derived from this software without specific
1717
prior written permission.
18-
18+
1919
THIS SOFTWARE IS PROVIDED BY DAN HAIM "AS IS" AND ANY EXPRESS OR IMPLIED
2020
WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
2121
MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO

lib/controller/controller.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ def __saveToResultsFile():
189189
if not results:
190190
line = "%s,,,%s" % (conf.url, os.linesep)
191191
conf.resultsFP.writelines(line)
192-
192+
193193
def start():
194194
"""
195195
This function calls a function that performs checks on both URL

plugins/generic/enumeration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1052,7 +1052,7 @@ def getColumns(self, onlyColNames=False):
10521052
else:
10531053
condQuery = " AND (%s)" % " OR ".join("%s = '%s'" % (condition, unsafeSQLIdentificatorNaming(col)) for col in colList)
10541054
infoMsg += "'%s' " % ", ".join(unsafeSQLIdentificatorNaming(col) for col in colList)
1055-
1055+
10561056
else:
10571057
condQuery = ""
10581058

sqlmap.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,8 @@ def main():
7070
# Store original command line options for possible later restoration
7171
cmdLineOptions.update(cmdLineParser().__dict__)
7272

73-
dataToStdout("[!] Legal disclaimer: %s\n\n" % LEGAL_DISCLAIMER, forceOutput=True)
74-
75-
dataToStdout("[*] starting at: %s\n\n" % time.strftime("%X"), forceOutput=True)
73+
dataToStdout("[!] legal disclaimer: %s\n\n" % LEGAL_DISCLAIMER, forceOutput=True)
74+
dataToStdout("[*] starting at %s\n\n" % time.strftime("%X"), forceOutput=True)
7675

7776
try:
7877
init(cmdLineOptions)
@@ -121,7 +120,7 @@ def main():
121120
closeDumper(True)
122121

123122
finally:
124-
dataToStdout("\n[*] shutting down at: %s\n\n" % time.strftime("%X"), forceOutput=True)
123+
dataToStdout("\n[*] shutting down at %s\n\n" % time.strftime("%X"), forceOutput=True)
125124

126125
kb.threadContinue = False
127126
kb.threadException = True

0 commit comments

Comments
 (0)