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

Skip to content

Commit 9a5fc5c

Browse files
committed
New auxiliary (extra) file (for administration purposes)
1 parent 51a1973 commit 9a5fc5c

3 files changed

Lines changed: 17 additions & 2 deletions

File tree

extra/shutils/strip.sh

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
#!/bin/bash
2+
3+
# References: http://www.thegeekstuff.com/2012/09/strip-command-examples/
4+
# http://www.muppetlabs.com/~breadbox/software/elfkickers.html
5+
# https://ptspts.blogspot.hr/2013/12/how-to-make-smaller-c-and-c-binaries.html
6+
7+
# For example:
8+
# python ../../../../../extra/cloak/cloak.py -d -i lib_postgresqludf_sys.so_
9+
# ../../../../../extra/shutils/strip.sh lib_postgresqludf_sys.so
10+
# python ../../../../../extra/cloak/cloak.py -i lib_postgresqludf_sys.so
11+
# rm lib_postgresqludf_sys.so
12+
13+
strip -S --strip-unneeded --remove-section=.note.gnu.gold-version --remove-section=.comment --remove-section=.note --remove-section=.note.gnu.build-id --remove-section=.note.ABI-tag $*
14+
sstrip $*
15+

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.revision import getRevisionNumber
2020

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

txt/checksum.md5

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ e60456db5380840a586654344003d4e6 lib/core/readlineng.py
4545
5ef56abb8671c2ca6ceecb208258e360 lib/core/replication.py
4646
99a2b496b9d5b546b335653ca801153f lib/core/revision.py
4747
7c15dd2777af4dac2c89cab6df17462e lib/core/session.py
48-
fe3ef0815ed7abb8a5c23ea9f88667b3 lib/core/settings.py
48+
3808e1bfe1652f1b7579660e1f71262f lib/core/settings.py
4949
7af83e4f18cab6dff5e67840eb65be80 lib/core/shell.py
5050
23657cd7d924e3c6d225719865855827 lib/core/subprocessng.py
5151
0bc2fae1dec18cdd11954b22358293f2 lib/core/target.py

0 commit comments

Comments
 (0)