[HELP]MD5 Derypter[HELP] 06-21-2011, 11:11 PM
#1
Can anybody help me please!
I want to create MD5 Decrypter
Some of these
I want to create MD5 Decrypter
Some of these
| [HELP]MD5 Derypter[HELP] filter_list | |
![[Image: rytwG00.png]](http://i.imgur.com/rytwG00.png)
Dim ButtonPressed As Boolean
Private Sub Form1_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
WebBrowser1.Navigate("http://www.cmd5.org/")
End Sub
Private Sub WebBrowser1_DocumentCompleted(ByVal sender As System.Object, ByVal e As System.Windows.Forms.WebBrowserDocumentCompletedEventArgs) Handles WebBrowser1.DocumentCompleted
If Not WebBrowser1.Url.AbsoluteUri = "http://www.cmd5.org/" Then Exit Sub
If ButtonPressed = False Then FillForm("ctl00_ContentPlaceHolder1_TextBoxq", "ctl00_ContentPlaceHolder1_Button1", TextBox1.Text)
End Sub
Private Sub FillForm(ByVal TextFieldID As String, ByVal ButtonID As String, ByVal DesiredInput As String)
With WebBrowser1.Document
.GetElementById(TextFieldID).SetAttribute("value", DesiredInput)
.GetElementById(ButtonID).InvokeMember("click")
End With
ButtonPressed = True
End Sub![[Image: rytwG00.png]](http://i.imgur.com/rytwG00.png)
![[Image: rytwG00.png]](http://i.imgur.com/rytwG00.png)
![[Image: rytwG00.png]](http://i.imgur.com/rytwG00.png)
Private Sub Form_Load()
WebBrowser1.Navigate ("http://www.cmd5.org/")
Text1.Tag = "0"
End Sub
Private Sub FillForm(ByVal TextFieldID As String, ByVal ButtonID As String, ByVal DesiredInput As String)
With WebBrowser1.Document
.GetElementById(TextFieldID).Value = DesiredInput
.GetElementById(ButtonID).Click
End With
Text1.Tag = ""
End Sub
Private Sub WebBrowser1_DocumentComplete(ByVal pDisp As Object, URL As Variant)
If Text1.Tag <> "" Then Call FillForm("ctl00_ContentPlaceHolder1_TextBoxq", "ctl00_ContentPlaceHolder1_Button1", Text1.Text)
End Sub![[Image: rytwG00.png]](http://i.imgur.com/rytwG00.png)