File tree Expand file tree Collapse file tree 7 files changed +16
-2
lines changed
Expand file tree Collapse file tree 7 files changed +16
-2
lines changed Original file line number Diff line number Diff line change 2121 xrange = range
2222 ord = lambda _ : _
2323
24- KEY = b"Beeth7hoyooleeF0 "
24+ KEY = b"wXGWkn7KI0VhDOHS "
2525
2626def xor (message , key ):
2727 return b"" .join (struct .pack ('B' , ord (message [i ]) ^ ord (key [i % len (key )])) for i in range (len (message )))
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ # NOTE: this script is for dev usage after AV something something
4+
5+ DIR=$( cd -P -- " $( dirname -- " ${BASH_SOURCE[0]} " ) " && pwd -P)
6+
7+ cd $DIR /../../data/shell
8+ find -regex " .*backdoor\.[a-z]*_" -or -regex " .*stager\.[a-z]*_" -type f -exec python ../../extra/cloak/cloak.py -d -i ' {}' \;
9+
10+ cd $DIR /../cloak
11+ sed -i ' s/KEY = .*/KEY = b"' ` python -c ' import random; import string; print("".join(random.sample(string.ascii_letters + string.digits, 16)))' ` ' "/g' cloak.py
12+
13+ cd $DIR /../../data/shell
14+ find -regex " .*backdoor\.[a-z]*" -or -regex " .*stager\.[a-z]*" -type f -exec python ../../extra/cloak/cloak.py -i ' {}' \;
Original file line number Diff line number Diff line change 1818from thirdparty .six import unichr as _unichr
1919
2020# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
21- VERSION = "1.4.8.19 "
21+ VERSION = "1.4.8.20 "
2222TYPE = "dev" if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] != '0' else "stable"
2323TYPE_COLORS = {"dev" : 33 , "stable" : 90 , "pip" : 34 }
2424VERSION_STRING = "sqlmap/%s#%s" % ('.' .join (VERSION .split ('.' )[:- 1 ]) if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] == '0' else VERSION , TYPE )
You can’t perform that action at this time.
0 commit comments