File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1919from lib .core .enums import OS
2020
2121# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22- VERSION = "1.2.10.0 "
22+ VERSION = "1.2.10.1 "
2323TYPE = "dev" if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] != '0' else "stable"
2424TYPE_COLORS = {"dev" : 33 , "stable" : 90 , "pip" : 34 }
2525VERSION_STRING = "sqlmap/%s#%s" % ('.' .join (VERSION .split ('.' )[:- 1 ]) if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] == '0' else VERSION , TYPE )
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ c8c386d644d57c659d74542f5f57f632 lib/core/patch.py
49490c3eef46bdbf87e29a3f95f90240d192 lib/core/replication.py
5050a7db43859b61569b601b97f187dd31c5 lib/core/revision.py
5151fcb74fcc9577523524659ec49e2e964b lib/core/session.py
52- a1ed8cb875f1b56683b2b320ccb63197 lib/core/settings.py
52+ 5f2410ec4abd6170ac6244321a959323 lib/core/settings.py
5353dd68a9d02fccb4fa1428b20e15b0db5d lib/core/shell.py
5454a7edc9250d13af36ac0108f259859c19 lib/core/subprocessng.py
555562bc180e3e828949ffb342a8f756c183 lib/core/target.py
@@ -404,7 +404,7 @@ ef722d062564def381b1f96f5faadee3 waf/baidu.py
40440441e399dbfe7b904d5aacfb37d85e1fbf waf/blockdos.py
4054052f3bbf43be94d4e9ffe9f80e8483d62f waf/ciscoacexml.py
406406ba84f296cb52f5e78a0670b98d7763fa waf/cloudbric.py
407- 94b50385a9d462492e3a639d71aaa1c3 waf/cloudflare.py
407+ a1d16d7106c9c66072aa58530c288515 waf/cloudflare.py
408408a8affab0838c6a1fe683d5b7333d7a69 waf/cloudfront.py
409409ac96f34c254951d301973617064eb1b5 waf/comodo.py
410410c84e515440fe482476c1f2687bd9960f waf/crawlprotect.py
Original file line number Diff line number Diff line change @@ -25,6 +25,7 @@ def detect(get_page):
2525 retval |= re .search (r"CloudFlare Ray ID:|var CloudFlare=" , page or "" ) is not None
2626 retval |= all (_ in (page or "" ) for _ in ("Attention Required! | Cloudflare" , "Please complete the security check to access" ))
2727 retval |= all (_ in (page or "" ) for _ in ("Attention Required! | Cloudflare" , "Sorry, you have been blocked" ))
28+ retval |= any (_ in (page or "" ) for _ in ("CLOUDFLARE_ERROR_500S_BOX" , "::CAPTCHA_BOX::" ))
2829
2930 if retval :
3031 break
You can’t perform that action at this time.
0 commit comments