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

Skip to content

Commit f91ae32

Browse files
committed
Minor update (to not confuse S3 vs Cloudfront)
1 parent 53fc9d6 commit f91ae32

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

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.revision import getRevisionNumber
2020

2121
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22-
VERSION = "1.0.6.55"
22+
VERSION = "1.0.6.56"
2323
REVISION = getRevisionNumber()
2424
STABLE = VERSION.count('.') <= 2
2525
VERSION_STRING = "sqlmap/%s#%s" % (VERSION, "stable" if STABLE else "dev")

waf/cloudfront.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ def detect(get_page):
2020

2121
retval |= re.search(r"cloudfront", headers.get("X-Cache", ""), re.I) is not None
2222
retval |= headers.get("X-Amz-Cf-Id") is not None
23-
retval |= re.search(r"AmazonS3", headers.get(HTTP_HEADER.SERVER, ""), re.I) is not None
2423

2524
if retval:
2625
break

0 commit comments

Comments
 (0)