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
extra/shutils/pydiatra.sh
View file @
dd009087
#!/bin/bash
# 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
# Runs py3diatra on all python files (prerequisite: pip install pydiatra)
...
...
extra/shutils/pyflakes.sh
View file @
dd009087
#!/bin/bash
# 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
# Runs pyflakes on all python files (prerequisite: apt-get install pyflakes)
...
...
extra/shutils/pylint.sh
View file @
dd009087
#!/bin/bash
# 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
find
.
-wholename
"./thirdparty"
-prune
-o
-type
f
-iname
"*.py"
-exec
pylint
--rcfile
=
./.pylintrc
'{}'
\;
extra/shutils/pypi.sh
View file @
dd009087
...
...
@@ -16,7 +16,7 @@ cat > $TMP_DIR/setup.py << EOF
#!/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
"""
...
...
@@ -67,7 +67,7 @@ cat > sqlmap/__init__.py << EOF
#!/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
"""
...
...
extra/vulnserver/__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
"""
...
...
extra/vulnserver/vulnserver.py
View file @
dd009087
...
...
@@ -3,7 +3,7 @@
"""
vulnserver.py - Trivial SQLi vulnerable HTTP server (Note: for testing purposes)
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/__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/controller/__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/controller/action.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/controller/checks.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/controller/controller.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/controller/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/core/__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/core/agent.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/bigarray.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/common.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
"""
...
...
@@ -4158,10 +4158,11 @@ def removeReflectiveValues(content, payload, suppressWarning=False):
if
not
suppressWarning
:
debugMsg
=
"turning off reflection removal mechanism (for optimization purposes)"
logger
.
debug
(
debugMsg
)
except
MemoryError
:
except
(
MemoryError
,
SystemError
):
kb
.
reflectiveMechanism
=
False
if
not
suppressWarning
:
debugMsg
=
"turning off reflection removal mechanism
(because of low memory issues)
"
debugMsg
=
"turning off reflection removal mechanism"
logger
.
debug
(
debugMsg
)
return
retVal
...
...
lib/core/compat.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/convert.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/data.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/datatype.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
…
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