Skip to content

Commit

Permalink
Periodical recloak
Browse files Browse the repository at this point in the history
  • Loading branch information
stamparm committed Feb 19, 2021
1 parent 30f1376 commit 86467e1
Show file tree
Hide file tree
Showing 45 changed files with 2 additions and 2 deletions.
Binary file modified data/shell/backdoors/backdoor.asp_
Binary file not shown.
Binary file modified data/shell/backdoors/backdoor.aspx_
Binary file not shown.
Binary file modified data/shell/backdoors/backdoor.jsp_
Binary file not shown.
Binary file modified data/shell/backdoors/backdoor.php_
Binary file not shown.
Binary file modified data/shell/stagers/stager.asp_
Binary file not shown.
Binary file modified data/shell/stagers/stager.aspx_
Binary file not shown.
Binary file modified data/shell/stagers/stager.jsp_
Binary file not shown.
Binary file modified data/shell/stagers/stager.php_
Binary file not shown.
Binary file modified data/udf/mysql/linux/32/lib_mysqludf_sys.so_
Binary file not shown.
Binary file modified data/udf/mysql/linux/64/lib_mysqludf_sys.so_
Binary file not shown.
Binary file modified data/udf/mysql/windows/32/lib_mysqludf_sys.dll_
Binary file not shown.
Binary file modified data/udf/mysql/windows/64/lib_mysqludf_sys.dll_
Binary file not shown.
Binary file modified data/udf/postgresql/linux/32/10/lib_postgresqludf_sys.so_
Binary file not shown.
Binary file modified data/udf/postgresql/linux/32/11/lib_postgresqludf_sys.so_
Binary file not shown.
Binary file modified data/udf/postgresql/linux/32/8.2/lib_postgresqludf_sys.so_
Binary file not shown.
Binary file modified data/udf/postgresql/linux/32/8.3/lib_postgresqludf_sys.so_
Binary file not shown.
Binary file modified data/udf/postgresql/linux/32/8.4/lib_postgresqludf_sys.so_
Binary file not shown.
Binary file modified data/udf/postgresql/linux/32/9.0/lib_postgresqludf_sys.so_
Binary file not shown.
Binary file modified data/udf/postgresql/linux/32/9.1/lib_postgresqludf_sys.so_
Binary file not shown.
Binary file modified data/udf/postgresql/linux/32/9.2/lib_postgresqludf_sys.so_
Binary file not shown.
Binary file modified data/udf/postgresql/linux/32/9.3/lib_postgresqludf_sys.so_
Binary file not shown.
Binary file modified data/udf/postgresql/linux/32/9.4/lib_postgresqludf_sys.so_
Binary file not shown.
Binary file modified data/udf/postgresql/linux/32/9.5/lib_postgresqludf_sys.so_
Binary file not shown.
Binary file modified data/udf/postgresql/linux/32/9.6/lib_postgresqludf_sys.so_
Binary file not shown.
Binary file modified data/udf/postgresql/linux/64/10/lib_postgresqludf_sys.so_
Binary file not shown.
Binary file modified data/udf/postgresql/linux/64/11/lib_postgresqludf_sys.so_
Binary file not shown.
Binary file modified data/udf/postgresql/linux/64/8.2/lib_postgresqludf_sys.so_
Binary file not shown.
Binary file modified data/udf/postgresql/linux/64/8.3/lib_postgresqludf_sys.so_
Binary file not shown.
Binary file modified data/udf/postgresql/linux/64/8.4/lib_postgresqludf_sys.so_
Binary file not shown.
Binary file modified data/udf/postgresql/linux/64/9.0/lib_postgresqludf_sys.so_
Binary file not shown.
Binary file modified data/udf/postgresql/linux/64/9.1/lib_postgresqludf_sys.so_
Binary file not shown.
Binary file modified data/udf/postgresql/linux/64/9.2/lib_postgresqludf_sys.so_
Binary file not shown.
Binary file modified data/udf/postgresql/linux/64/9.3/lib_postgresqludf_sys.so_
Binary file not shown.
Binary file modified data/udf/postgresql/linux/64/9.4/lib_postgresqludf_sys.so_
Binary file not shown.
Binary file modified data/udf/postgresql/linux/64/9.5/lib_postgresqludf_sys.so_
Binary file not shown.
Binary file modified data/udf/postgresql/linux/64/9.6/lib_postgresqludf_sys.so_
Binary file not shown.
Binary file modified data/udf/postgresql/windows/32/8.2/lib_postgresqludf_sys.dll_
Binary file not shown.
Binary file modified data/udf/postgresql/windows/32/8.3/lib_postgresqludf_sys.dll_
Binary file not shown.
Binary file modified data/udf/postgresql/windows/32/8.4/lib_postgresqludf_sys.dll_
Binary file not shown.
Binary file modified data/udf/postgresql/windows/32/9.0/lib_postgresqludf_sys.dll_
Binary file not shown.
2 changes: 1 addition & 1 deletion extra/cloak/cloak.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
xrange = range
ord = lambda _: _

KEY = b"cwRAopWDYixMeqs3"
KEY = b"ENWsCymUeJcXqSbD"

def xor(message, key):
return b"".join(struct.pack('B', ord(message[i]) ^ ord(key[i % len(key)])) for i in range(len(message)))
Expand Down
Binary file modified extra/icmpsh/icmpsh.exe_
Binary file not shown.
Binary file modified extra/runcmd/runcmd.exe_
Binary file not shown.
Binary file modified extra/shellcodeexec/windows/shellcodeexec.x32.exe_
Binary file not shown.
2 changes: 1 addition & 1 deletion lib/core/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
from thirdparty.six import unichr as _unichr

# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
VERSION = "1.5.2.19"
VERSION = "1.5.2.20"
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)
Expand Down

0 comments on commit 86467e1

Please sign in to comment.