File tree 2 files changed +6
-2
lines changed
2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -3861,6 +3861,10 @@ def checkIntegrity():
3861
3861
logger .error ("wrong modification time of '%s'" % filepath )
3862
3862
retVal = False
3863
3863
3864
+ suffix = extractRegexResult (r"#(?P<result>\w+)" , VERSION_STRING )
3865
+ if suffix and suffix not in {"dev" , "stable" }:
3866
+ retVal = False
3867
+
3864
3868
return retVal
3865
3869
3866
3870
def getDaysFromLastUpdate ():
Original file line number Diff line number Diff line change 20
20
from thirdparty .six import unichr as _unichr
21
21
22
22
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
23
- VERSION = "1.7.7.0 "
23
+ VERSION = "1.7.7.1 "
24
24
TYPE = "dev" if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] != '0' else "stable"
25
25
TYPE_COLORS = {"dev" : 33 , "stable" : 90 , "pip" : 34 }
26
26
VERSION_STRING = "sqlmap/%s#%s" % ('.' .join (VERSION .split ('.' )[:- 1 ]) if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] == '0' else VERSION , TYPE )
702
702
FORCE_COOKIE_EXPIRATION_TIME = "9999999999"
703
703
704
704
# Github OAuth token used for creating an automatic Issue for unhandled exceptions
705
- GITHUB_REPORT_OAUTH_TOKEN = "Z2hwXzJEdUdKQXVyNms3c2J2em0weXNFYlVrZ2hxczE1eDBRQnA2Vg "
705
+ GITHUB_REPORT_OAUTH_TOKEN = "Z2hwX09GTWlsWUJVZWhiYWluS3I3T2hUbE9abHJ4cXNUTTFYeUxxTw "
706
706
707
707
# Skip unforced HashDB flush requests below the threshold number of cached items
708
708
HASHDB_FLUSH_THRESHOLD = 32
You can’t perform that action at this time.
0 commit comments