Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 5a08b71

Browse files
committed
Minor update
1 parent 4b420e7 commit 5a08b71

5 files changed

Lines changed: 4 additions & 13 deletions

File tree

lib/core/optiondict.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,6 @@
225225
"identifyWaf": "boolean",
226226
"mobile": "boolean",
227227
"offline": "boolean",
228-
"pageRank": "boolean",
229228
"purgeOutput": "boolean",
230229
"skipWaf": "boolean",
231230
"smart": "boolean",

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from lib.core.enums import OS
2020

2121
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22-
VERSION = "1.1.2.13"
22+
VERSION = "1.1.2.14"
2323
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
2424
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
2525
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)

lib/parse/cmdline.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -738,10 +738,6 @@ def cmdLineParser(argv=None):
738738
action="store_true",
739739
help="Work in offline mode (only use session data)")
740740

741-
miscellaneous.add_option("--page-rank", dest="pageRank",
742-
action="store_true",
743-
help="Display page rank (PR) for Google dork results")
744-
745741
miscellaneous.add_option("--purge-output", dest="purgeOutput",
746742
action="store_true",
747743
help="Safely remove all content from output directory")

sqlmap.conf

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -779,10 +779,6 @@ mobile = False
779779
# Valid: True or False
780780
offline = False
781781

782-
# Display page rank (PR) for Google dork results.
783-
# Valid: True or False
784-
pageRank = False
785-
786782
# Skip heuristic detection of WAF/IPS/IDS protection.
787783
# Valid: True or False
788784
skipWaf = False

txt/checksum.md5

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,14 +38,14 @@ a8143dab9d3a27490f7d49b6b29ea530 lib/core/data.py
3838
9381a0c7e8bc19986299e84f4edda1a0 lib/core/exception.py
3939
310efc965c862cfbd7b0da5150a5ad36 lib/core/__init__.py
4040
9ba39bf66e9ecd469446bdbbeda906c3 lib/core/log.py
41-
e544108e2238d756c94a240e8a1ce061 lib/core/optiondict.py
41+
5831b80df6764faf1dd9470ff589ae87 lib/core/optiondict.py
4242
0324fce84ef88ed0416123f73c54a6d7 lib/core/option.py
4343
5f2f56e6c5f274408df61943f1e080c0 lib/core/profiling.py
4444
40be71cd774662a7b420caeb7051e7d5 lib/core/readlineng.py
4545
d8e9250f3775119df07e9070eddccd16 lib/core/replication.py
4646
785f86e3f963fa3798f84286a4e83ff2 lib/core/revision.py
4747
40c80b28b3a5819b737a5a17d4565ae9 lib/core/session.py
48-
17ee99af8efe59e90d66208d1e5ae8a4 lib/core/settings.py
48+
d459e275f77cb0e75d025e90638c0334 lib/core/settings.py
4949
d91291997d2bd2f6028aaf371bf1d3b6 lib/core/shell.py
5050
2ad85c130cc5f2b3701ea85c2f6bbf20 lib/core/subprocessng.py
5151
afd0636d2e93c23f4f0a5c9b6023ea17 lib/core/target.py
@@ -56,7 +56,7 @@ ad74fc58fc7214802fd27067bce18dd2 lib/core/unescaper.py
5656
4d13ed693401a498b6d073a2a494bd83 lib/core/wordlist.py
5757
310efc965c862cfbd7b0da5150a5ad36 lib/__init__.py
5858
8c4b04062db2245d9e190b413985202a lib/parse/banner.py
59-
0fdb733d3f116b01cd2709b3980aa892 lib/parse/cmdline.py
59+
31156d03e6f80842073cb78835d81c39 lib/parse/cmdline.py
6060
3a31657bc38f277d0016ff6d50bde61f lib/parse/configfile.py
6161
14539f1be714d4f1ed042067d63bc50a lib/parse/handler.py
6262
64e5bb3ecbdd75144500588b437ba8da lib/parse/headers.py

0 commit comments

Comments
 (0)