Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
packages
tools
sqlmap
Commits
dd009087
Commit
dd009087
authored
Jan 04, 2022
by
Nong Hoang Tu
Browse files
New upstream version 1.6
parent
f5a1c63e
Pipeline
#4991
failed with stages
Changes
398
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
lib/core/testing.py
View file @
dd009087
#!/usr/bin/env python
"""
Copyright (c) 2006-202
1
sqlmap developers (https://sqlmap.org/)
Copyright (c) 2006-202
2
sqlmap developers (https://sqlmap.org/)
See the file 'LICENSE' for copying permission
"""
...
...
lib/core/threads.py
View file @
dd009087
#!/usr/bin/env python
"""
Copyright (c) 2006-202
1
sqlmap developers (https://sqlmap.org/)
Copyright (c) 2006-202
2
sqlmap developers (https://sqlmap.org/)
See the file 'LICENSE' for copying permission
"""
...
...
lib/core/unescaper.py
View file @
dd009087
#!/usr/bin/env python
"""
Copyright (c) 2006-202
1
sqlmap developers (https://sqlmap.org/)
Copyright (c) 2006-202
2
sqlmap developers (https://sqlmap.org/)
See the file 'LICENSE' for copying permission
"""
...
...
lib/core/update.py
View file @
dd009087
#!/usr/bin/env python
"""
Copyright (c) 2006-202
1
sqlmap developers (https://sqlmap.org/)
Copyright (c) 2006-202
2
sqlmap developers (https://sqlmap.org/)
See the file 'LICENSE' for copying permission
"""
...
...
lib/core/wordlist.py
View file @
dd009087
#!/usr/bin/env python
"""
Copyright (c) 2006-202
1
sqlmap developers (https://sqlmap.org/)
Copyright (c) 2006-202
2
sqlmap developers (https://sqlmap.org/)
See the file 'LICENSE' for copying permission
"""
...
...
lib/parse/__init__.py
View file @
dd009087
#!/usr/bin/env python
"""
Copyright (c) 2006-202
1
sqlmap developers (https://sqlmap.org/)
Copyright (c) 2006-202
2
sqlmap developers (https://sqlmap.org/)
See the file 'LICENSE' for copying permission
"""
...
...
lib/parse/banner.py
View file @
dd009087
#!/usr/bin/env python
"""
Copyright (c) 2006-202
1
sqlmap developers (https://sqlmap.org/)
Copyright (c) 2006-202
2
sqlmap developers (https://sqlmap.org/)
See the file 'LICENSE' for copying permission
"""
...
...
lib/parse/cmdline.py
View file @
dd009087
#!/usr/bin/env python
"""
Copyright (c) 2006-202
1
sqlmap developers (https://sqlmap.org/)
Copyright (c) 2006-202
2
sqlmap developers (https://sqlmap.org/)
See the file 'LICENSE' for copying permission
"""
...
...
@@ -815,6 +815,9 @@ def cmdLineParser(argv=None):
parser
.
add_argument
(
"--force-pivoting"
,
dest
=
"forcePivoting"
,
action
=
"store_true"
,
help
=
SUPPRESS
)
parser
.
add_argument
(
"--ignore-stdin"
,
dest
=
"ignoreStdin"
,
action
=
"store_true"
,
help
=
SUPPRESS
)
parser
.
add_argument
(
"--non-interactive"
,
dest
=
"nonInteractive"
,
action
=
"store_true"
,
help
=
SUPPRESS
)
...
...
@@ -1060,7 +1063,7 @@ def cmdLineParser(argv=None):
if
args
.
dummy
:
args
.
url
=
args
.
url
or
DUMMY_URL
if
hasattr
(
sys
.
stdin
,
"fileno"
)
and
not
any
((
os
.
isatty
(
sys
.
stdin
.
fileno
()),
args
.
api
,
"GITHUB_ACTIONS"
in
os
.
environ
)):
if
hasattr
(
sys
.
stdin
,
"fileno"
)
and
not
any
((
os
.
isatty
(
sys
.
stdin
.
fileno
()),
args
.
api
,
args
.
ignoreStdin
,
"GITHUB_ACTIONS"
in
os
.
environ
)):
args
.
stdinPipe
=
iter
(
sys
.
stdin
.
readline
,
None
)
else
:
args
.
stdinPipe
=
None
...
...
lib/parse/configfile.py
View file @
dd009087
#!/usr/bin/env python
"""
Copyright (c) 2006-202
1
sqlmap developers (https://sqlmap.org/)
Copyright (c) 2006-202
2
sqlmap developers (https://sqlmap.org/)
See the file 'LICENSE' for copying permission
"""
...
...
lib/parse/handler.py
View file @
dd009087
#!/usr/bin/env python
"""
Copyright (c) 2006-202
1
sqlmap developers (https://sqlmap.org/)
Copyright (c) 2006-202
2
sqlmap developers (https://sqlmap.org/)
See the file 'LICENSE' for copying permission
"""
...
...
lib/parse/headers.py
View file @
dd009087
#!/usr/bin/env python
"""
Copyright (c) 2006-202
1
sqlmap developers (https://sqlmap.org/)
Copyright (c) 2006-202
2
sqlmap developers (https://sqlmap.org/)
See the file 'LICENSE' for copying permission
"""
...
...
lib/parse/html.py
View file @
dd009087
#!/usr/bin/env python
"""
Copyright (c) 2006-202
1
sqlmap developers (https://sqlmap.org/)
Copyright (c) 2006-202
2
sqlmap developers (https://sqlmap.org/)
See the file 'LICENSE' for copying permission
"""
...
...
lib/parse/payloads.py
View file @
dd009087
#!/usr/bin/env python
"""
Copyright (c) 2006-202
1
sqlmap developers (https://sqlmap.org/)
Copyright (c) 2006-202
2
sqlmap developers (https://sqlmap.org/)
See the file 'LICENSE' for copying permission
"""
...
...
lib/parse/sitemap.py
View file @
dd009087
#!/usr/bin/env python
"""
Copyright (c) 2006-202
1
sqlmap developers (https://sqlmap.org/)
Copyright (c) 2006-202
2
sqlmap developers (https://sqlmap.org/)
See the file 'LICENSE' for copying permission
"""
...
...
lib/request/__init__.py
View file @
dd009087
#!/usr/bin/env python
"""
Copyright (c) 2006-202
1
sqlmap developers (https://sqlmap.org/)
Copyright (c) 2006-202
2
sqlmap developers (https://sqlmap.org/)
See the file 'LICENSE' for copying permission
"""
...
...
lib/request/basic.py
View file @
dd009087
#!/usr/bin/env python
"""
Copyright (c) 2006-202
1
sqlmap developers (https://sqlmap.org/)
Copyright (c) 2006-202
2
sqlmap developers (https://sqlmap.org/)
See the file 'LICENSE' for copying permission
"""
...
...
lib/request/basicauthhandler.py
View file @
dd009087
#!/usr/bin/env python
"""
Copyright (c) 2006-202
1
sqlmap developers (https://sqlmap.org/)
Copyright (c) 2006-202
2
sqlmap developers (https://sqlmap.org/)
See the file 'LICENSE' for copying permission
"""
...
...
lib/request/chunkedhandler.py
View file @
dd009087
#!/usr/bin/env python
"""
Copyright (c) 2006-202
1
sqlmap developers (https://sqlmap.org/)
Copyright (c) 2006-202
2
sqlmap developers (https://sqlmap.org/)
See the file 'LICENSE' for copying permission
"""
...
...
lib/request/comparison.py
View file @
dd009087
#!/usr/bin/env python
"""
Copyright (c) 2006-202
1
sqlmap developers (https://sqlmap.org/)
Copyright (c) 2006-202
2
sqlmap developers (https://sqlmap.org/)
See the file 'LICENSE' for copying permission
"""
...
...
lib/request/connect.py
View file @
dd009087
#!/usr/bin/env python
"""
Copyright (c) 2006-202
1
sqlmap developers (https://sqlmap.org/)
Copyright (c) 2006-202
2
sqlmap developers (https://sqlmap.org/)
See the file 'LICENSE' for copying permission
"""
...
...
Prev
1
2
3
4
5
6
7
8
…
20
Next
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment