Skip to content

Commit eeffcfe

Browse files
committed
Periodic recloaking (AV)
1 parent 809538d commit eeffcfe

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+2
-2
lines changed

data/shell/backdoors/backdoor.asp_

0 Bytes
Binary file not shown.

data/shell/backdoors/backdoor.aspx_

0 Bytes
Binary file not shown.

data/shell/backdoors/backdoor.jsp_

0 Bytes
Binary file not shown.

data/shell/backdoors/backdoor.php_

0 Bytes
Binary file not shown.

data/shell/stagers/stager.asp_

0 Bytes
Binary file not shown.

data/shell/stagers/stager.aspx_

0 Bytes
Binary file not shown.

data/shell/stagers/stager.jsp_

0 Bytes
Binary file not shown.

data/shell/stagers/stager.php_

0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

extra/cloak/cloak.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
xrange = range
2222
ord = lambda _: _
2323

24-
KEY = b"MOZFqVjlk1CY436G"
24+
KEY = b"cwRAopWDYixMeqs3"
2525

2626
def xor(message, key):
2727
return b"".join(struct.pack('B', ord(message[i]) ^ ord(key[i % len(key)])) for i in range(len(message)))

extra/icmpsh/icmpsh.exe_

0 Bytes
Binary file not shown.

extra/runcmd/runcmd.exe_

0 Bytes
Binary file not shown.
Binary file not shown.

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
from thirdparty.six import unichr as _unichr
1919

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

0 commit comments

Comments
 (0)