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+ # 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+
Original file line number Diff line number Diff line change 1919from 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 "
2323REVISION = getRevisionNumber ()
2424TYPE = "dev" if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] != '0' else "stable"
2525TYPE_COLORS = {"dev" : 33 , "stable" : 90 , "pip" : 34 }
Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ e60456db5380840a586654344003d4e6 lib/core/readlineng.py
45455ef56abb8671c2ca6ceecb208258e360 lib/core/replication.py
464699a2b496b9d5b546b335653ca801153f lib/core/revision.py
47477c15dd2777af4dac2c89cab6df17462e lib/core/session.py
48- fe3ef0815ed7abb8a5c23ea9f88667b3 lib/core/settings.py
48+ 3808e1bfe1652f1b7579660e1f71262f lib/core/settings.py
49497af83e4f18cab6dff5e67840eb65be80 lib/core/shell.py
505023657cd7d924e3c6d225719865855827 lib/core/subprocessng.py
51510bc2fae1dec18cdd11954b22358293f2 lib/core/target.py
You can’t perform that action at this time.
0 commit comments