File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ # Copyright (c) 2006-2013 sqlmap developers (http://sqlmap.org/)
4+ # See the file 'LICENSE' for copying permission
5+
6+ # Stress test against Python3
7+ for i in $( find . -iname " *.py" | grep -v __init__) ; do python3 -c ' import ' ` echo $i | cut -d ' .' -f 2 | cut -d ' /' -f 2- | sed ' s/\//./g' ` ' ' ; done
Original file line number Diff line number Diff line change 1717from lib .core .enums import OS
1818
1919# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
20- VERSION = "1.3.3.59 "
20+ VERSION = "1.3.3.60 "
2121TYPE = "dev" if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] != '0' else "stable"
2222TYPE_COLORS = {"dev" : 33 , "stable" : 90 , "pip" : 34 }
2323VERSION_STRING = "sqlmap/%s#%s" % ('.' .join (VERSION .split ('.' )[:- 1 ]) if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] == '0' else VERSION , TYPE )
You can’t perform that action at this time.
0 commit comments