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

Skip to content

Commit 4b54579

Browse files
committed
Minor update
1 parent 78da395 commit 4b54579

3 files changed

Lines changed: 5 additions & 3 deletions

File tree

extra/shutils/precommit-hook.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,4 @@ then
3939
fi
4040

4141
truncate -s 0 "$CHECKSUM_FULLPATH"
42-
cd $PROJECT_FULLPATH && for i in $(find . -name "*.py" -o -name "*.xml" -o -iname "*_" | sort); do git ls-files $i --error-unmatch &>/dev/null && md5sum $i | stdbuf -i0 -o0 -e0 sed 's/\.\///' >> "$CHECKSUM_FULLPATH"; git add "$CHECKSUM_FULLPATH"; done
42+
cd $PROJECT_FULLPATH && for i in $(find . -name "*.py" -o -name "*.xml" -o -name "*_" -o -type f -regex "./[^./]*" | sort); do git ls-files $i --error-unmatch &>/dev/null && md5sum $i | stdbuf -i0 -o0 -e0 sed 's/\.\///' >> "$CHECKSUM_FULLPATH"; git add "$CHECKSUM_FULLPATH"; done

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.enums import OS
2020

2121
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22-
VERSION = "1.3.1.73"
22+
VERSION = "1.3.1.74"
2323
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
2424
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
2525
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)

txt/checksum.md5

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
7ad922bcc16462a101862b1b0b15182f COMMITMENT
12
3d37032b2bd62ee37bd61c5b7ad31ab4 extra/beep/beep.py
23
fb6be55d21a70765e35549af2484f762 extra/beep/__init__.py
34
8b4237aae3b82c325e0b34f6adfa0bc3 extra/cloak/cloak.py
@@ -49,7 +50,7 @@ fe370021c6bc99daf44b2bfc0d1effb3 lib/core/patch.py
4950
7d8a22c582ad201f65b73225e4456170 lib/core/replication.py
5051
3179d34f371e0295dd4604568fb30bcd lib/core/revision.py
5152
d6269c55789f78cf707e09a0f5b45443 lib/core/session.py
52-
4f46f6e3c01512d8e39aae2a61390a15 lib/core/settings.py
53+
f59bb60ed2e0a30ed73b1ff174e2d950 lib/core/settings.py
5354
4483b4a5b601d8f1c4281071dff21ecc lib/core/shell.py
5455
10fd19b0716ed261e6d04f311f6f527c lib/core/subprocessng.py
5556
9c7b5c6397fb3da33e7a4d7876d159c6 lib/core/target.py
@@ -119,6 +120,7 @@ b79654e49850937ab2dc8e0d73625cab lib/utils/purge.py
119120
68f90f633d812ca428d2f15f016b2d96 lib/utils/timeout.py
120121
164f830baad3e13b226ee57d44d69dfa lib/utils/versioncheck.py
121122
a5007113e3cda726e1d131b99b927284 lib/utils/xrange.py
123+
28da82c0afa4d8a0e9848f7bd8e994b7 LICENSE
122124
b8656f4785d0945e68257107a171f945 plugins/dbms/access/connector.py
123125
b0e4f4aed8504f97d4044620d3a7d27d plugins/dbms/access/enumeration.py
124126
58d664d680087596965f95b482157320 plugins/dbms/access/filesystem.py

0 commit comments

Comments
 (0)