Skip to content

Commit 8d8fc2b

Browse files
committed
cosmetics
1 parent 11ecd16 commit 8d8fc2b

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

lib/parse/cmdline.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ def cmdLineParser():
2626
This function parses the command line parameters and arguments
2727
"""
2828

29-
usage = "%s%s [options]" % ("python " if not IS_WIN else "",\
30-
"\"%s\"" % sys.argv[0] if " " in sys.argv[0] else sys.argv[0])
29+
usage = "%s%s [options]" % ("python " if not IS_WIN else "", \
30+
"\"%s\"" % sys.argv[0] if " " in sys.argv[0] else sys.argv[0])
3131
parser = OptionParser(usage=usage, version=VERSION_STRING)
3232

3333
try:

lib/techniques/error/use.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ def __oneShotErrorUse(expression, field):
9393
threadData.lastRequestUID else None, re.DOTALL | re.IGNORECASE)
9494

9595
if trimmed:
96-
warnMsg = "possible server trimmed output detected (due to it's length): "
96+
warnMsg = "possible server trimmed output detected (due to its length): "
9797
warnMsg += trimmed
9898
logger.warn(warnMsg)
9999

lib/techniques/inband/union/use.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def __oneShotUnionUse(expression, unpack=True):
7979
if headers else None), payload, True), re.DOTALL | re.IGNORECASE)
8080

8181
if trimmed:
82-
warnMsg = "possible server trimmed output detected (due to it's length): "
82+
warnMsg = "possible server trimmed output detected (due to its length): "
8383
warnMsg += trimmed
8484
logger.warn(warnMsg)
8585

0 commit comments

Comments
 (0)