Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd92de1 commit b0465a6Copy full SHA for b0465a6
1 file changed
lib/core/settings.py
@@ -10,6 +10,7 @@
10
import subprocess
11
import string
12
import sys
13
+import time
14
15
from lib.core.enums import DBMS
16
from lib.core.enums import DBMS_DIRECTORY_NAME
@@ -19,7 +20,7 @@
19
20
# sqlmap version and site
21
VERSION = "1.0-dev"
22
REVISION = getRevisionNumber()
-VERSION_STRING = "sqlmap/%s%s" % (VERSION, "-%s" % REVISION if REVISION else "-nongit")
23
+VERSION_STRING = "sqlmap/%s%s" % (VERSION, "-%s" % REVISION if REVISION else "-nongit-%s" % time.strftime("%Y%M%d", time.gmtime(os.path.getctime(__file__))))
24
DESCRIPTION = "automatic SQL injection and database takeover tool"
25
SITE = "http://sqlmap.org"
26
ISSUES_PAGE = "https://github.com/sqlmapproject/sqlmap/issues/new"
0 commit comments