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 ff61417 commit bbf7472Copy full SHA for bbf7472
2 files changed
extra/shutils/junk.sh
@@ -0,0 +1,7 @@
1
+#!/bin/bash
2
+
3
+# Copyright (c) 2006-2019 sqlmap developers (http://sqlmap.org/)
4
+# See the file 'LICENSE' for copying permission
5
6
+find . -type d -name "__pycache__" -exec rm -rf {} \; &>/dev/null
7
+find . -name "*.pyc" -exec rm -f {} \; &>/dev/null
lib/core/settings.py
@@ -17,7 +17,7 @@
17
from lib.core.enums import OS
18
19
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
20
-VERSION = "1.3.4.35"
+VERSION = "1.3.4.36"
21
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
22
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
23
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)
0 commit comments