Skip to content

Commit bd1bdf2

Browse files
committed
1 parent 19c7445 commit bd1bdf2

File tree

2 files changed

+4
-1
lines changed
  • data/exploits/CVE-2015-0359
  • external/source/exploits/CVE-2015-0359

2 files changed

+4
-1
lines changed

data/exploits/CVE-2015-0359/msf.swf

127 Bytes
Binary file not shown.

external/source/exploits/CVE-2015-0359/Msf.as

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,10 @@ package
4343

4444
private function mainThread():void
4545
{
46-
b64.decode(LoaderInfo(this.root.loaderInfo).parameters.sh)
46+
var b64_payload:String = LoaderInfo(this.root.loaderInfo).parameters.sh
47+
var pattern:RegExp = / /g;
48+
b64_payload = b64_payload.replace(pattern, "+")
49+
b64.decode(b64_payload)
4750
payload = b64.toByteArray().toString()
4851
ba.length = 0x1000
4952
ba.shareable = true

0 commit comments

Comments
 (0)