Page 2 of 2 FirstFirst 12
Results 16 to 25 of 25
  1. #16
    qddW$#%^jtyjtyj's Avatar
    Join Date
    Feb 2010
    Gender
    male
    Posts
    721
    Reputation
    7
    Thanks
    148
    My Mood
    Mellow
    This is easy it handles all about on
    and that it clicks the buttons itself


    kriminnal part:
    if webbrowser1.documenttex*****ntains("kriminal") then
    WebBrowser1.Document.GetElementById("IDOFBUTTON"). InvokeMember("Click")
    WebBrowser1.Document.GetElementById("IDOFRADIOBUTT ON").InvokeMember("Click")
    end if

    Login part:
    On webbrowser1.documentcompleted:
    If WebBrowser1.DocumentTex*****ntains("Succesfully Logged in") Then
    form2.show
    me.hide
    end if
    Last edited by qddW$#%^jtyjtyj; 07-08-2010 at 04:38 AM.

  2. #17
    Threadstarter
    Advanced Member
    Prfction's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Check your bathroom
    Posts
    160
    Reputation
    10
    Thanks
    21
    My Mood
    Cool
    Umh.

    Form1 is loggin form. There it is 2 textboxes and 1 button. Nothign more! There i write in the bane and pw i've choosedin vb. Then the bot shows up.

    And your vide for the bot is nothing like that I need? I have a drop down box in my form where i can choose the same opinions like i can do on the site. And the bot doe the crime i've choose.

    I know how to do this.

    But as I said, my computer crashed and deletef my project. So i'm just wondering if someone here wants to try to do it, or i'll do it over again by my self........

  3. #18
    Blubb1337's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Germany
    Posts
    5,915
    Reputation
    161
    Thanks
    3,108
    We would have to do it from scratch, too. We are not here to work out projects for you. We can help you for sure. But this is just your lazyness.



  4. #19
    Threadstarter
    Advanced Member
    Prfction's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Check your bathroom
    Posts
    160
    Reputation
    10
    Thanks
    21
    My Mood
    Cool
    I know but it was ment for peoples who were looking for a chellenge, or just something to do. I don't say anyone here need to do it! I'll do it my self if no Ine wants. I was just going to check

  5. #20
    tweaker99's Avatar
    Join Date
    Mar 2009
    Gender
    male
    Posts
    27
    Reputation
    10
    Thanks
    968
    noob noob noob! lol not flaming but don't ever use a webbrowser use http post whenever you can! it's the best way to go and can do so many things with it i can make this for you , making bots is one of the first things i started out in in vb.net 3 years ago give me site link also add me on msn ipivb@live.com

  6. #21
    Blubb1337's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Germany
    Posts
    5,915
    Reputation
    161
    Thanks
    3,108
    Quote Originally Posted by tweaker99 View Post
    noob noob noob! lol not flaming but don't ever use a webbrowser use http post whenever you can! it's the best way to go and can do so many things with it i can make this for you , making bots is one of the first things i started out in in vb.net 3 years ago give me site link also add me on msn ipivb@live.com
    To get information, sure....to login...?!



  7. #22
    tweaker99's Avatar
    Join Date
    Mar 2009
    Gender
    male
    Posts
    27
    Reputation
    10
    Thanks
    968
    Quote Originally Posted by Blubb1337 View Post
    To get information, sure....to login...?!
    what you can use http for everything i use it to hack sites all the time to login to this site all you do is
    Code:
    Imports System
    Imports System.Collections.Generic
    Imports System.ComponentModel
    Imports System.Data
    Imports System.Drawing
    Imports System.Linq
    Imports System.Text
    Imports System.Windows.Forms
    Imports System.Net
    Imports System.IO
    Public Class Form1
        Inherits Form
        Public Sub New()
            InitializeComponent()
        End Sub
    
        Dim Cookies As New CookieContainer()
    
        Private Function HttpGet(ByVal Url As String)
            Dim request As HttpWebRequest = Nothing
            Dim uri As New Uri(Url)
            request = DirectCast(WebRequest.Create(uri), HttpWebRequest)
            reques*****okieContainer = Cookies
            request.Method = "GET"
            request.Accept = "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8"
            request.UserAgent = "Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.0.7) Gecko/2009021910 Firefox/3.0.7"
            request.Referer = ""
            reques*****ntentType = "text/html"
            Dim result As [String] = ""
            Using response As HttpWebResponse = DirectCast(request.GetResponse(), HttpWebResponse)
                Cookies.Add(response.Cookies)
                Using responseStream As Stream = response.GetResponseStream()
                    Using readStream As New StreamReader(responseStream, Encoding.UTF8)
                        result = readStream.ReadToEnd()
                    End Using
                End Using
            End Using
            Return result
        End Function
    
        Private Function Post(ByVal url As [String], ByVal postData As StringBuilder) As [String]
            Dim request As HttpWebRequest = Nothing
            Dim uri As New Uri(url)
            request = DirectCast(WebRequest.Create(uri), HttpWebRequest)
            reques*****okieContainer = Cookies
            request.Method = "POST"
            request.Accept = "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8"
            request.UserAgent = "Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.0.7) Gecko/2009021910 Firefox/3.0.7"
            request.Referer = ""
            reques*****ntentType = "application/x-www-form-urlencoded"
            reques*****ntentLength = postData.Length
            Using writeStream As Stream = request.GetRequestStream()
                Dim encoding__1 As New UTF8Encoding()
                Dim bytes As Byte() = encoding__1.GetBytes(postData.ToString())
                writeStream.Write(bytes, 0, bytes.Length)
            End Using
            Dim result As [String] = ""
            Using response As HttpWebResponse = DirectCast(request.GetResponse(), HttpWebResponse)
                Cookies.Add(response.Cookies)
                Using responseStream As Stream = response.GetResponseStream()
                    Using readStream As New StreamReader(responseStream, Encoding.UTF8)
                        result = readStream.ReadToEnd()
                    End Using
                End Using
            End Using
            Return result
        End Function
    Code:
        Dim postData As New StringBuilder()
            postData.Append("vb_login_username=tweaker99&vb_login_password=FAKE&s=&securitytoken=TOEKE=login&vb_login_md5password=PASS&vb_login_md5password_utf=PASS")
            Dim result As [String] = Post("https://www.mpgh.net/forum/login.php?do=login", postData)
            result = HttpGet("page you want to get as logged in")
    lol i think im the only one on this whole forum who knows how to use postdata i use it all the time instead of a browser, so say i want to hack an online site say you get a point for everytime you click a button i could ust postdata to
    login then
    send info to there site saying i clicked the button i have used this to make many bots to make money online and make auto posters updaters etc etc o ya and this is really good if you want to make a brut forcer
    Last edited by tweaker99; 07-10-2010 at 09:40 AM.

  8. #23
    Blubb1337's Avatar
    Join Date
    Sep 2009
    Gender
    male
    Location
    Germany
    Posts
    5,915
    Reputation
    161
    Thanks
    3,108
    Never used postdata before. That is why I didn't know.



  9. #24
    tweaker99's Avatar
    Join Date
    Mar 2009
    Gender
    male
    Posts
    27
    Reputation
    10
    Thanks
    968
    Quote Originally Posted by Blubb1337 View Post
    Never used postdata before. That is why I didn't know.
    hmm you will love it trust me , i can teach you alot! about it and how to use it it's the best way to go for everything you use a tool called httpfirefox to get the postdata sent when you click a button

  10. #25
    juggernault5's Avatar
    Join Date
    Jul 2010
    Gender
    male
    Location
    .....In my Computer......
    Posts
    59
    Reputation
    10
    Thanks
    2
    My Mood
    Hot
    I CAN DO THIS PM ME
    MASTER-KILLER NEW CODER



    MPGH IS THE BEST

Page 2 of 2 FirstFirst 12

Similar Threads

  1. [Request] requesting Gold bot/hacK and fast lvling in game
    By Raza123 in forum Hack Requests
    Replies: 0
    Last Post: 07-21-2011, 11:15 PM
  2. REQUEST- SOLO bot vs me game
    By hackzerz in forum Call of Duty Modern Warfare 2 GSC Modding Help/Discussion
    Replies: 5
    Last Post: 08-23-2010, 06:38 AM
  3. [Request] AFK bot
    By Stelthkid in forum Combat Arms Spammers, Injectors and Multi Tools
    Replies: 1
    Last Post: 07-06-2010, 10:55 PM
  4. [Request] Knife Bot
    By Aginem in forum Call of Duty Modern Warfare 2 Help
    Replies: 1
    Last Post: 06-24-2010, 07:34 AM
  5. [Request] knife bot
    By popok in forum Battlefield Bad Company 2 (BFBC2) Hacks
    Replies: 27
    Last Post: 03-20-2010, 05:58 PM