Results 1 to 11 of 11
  1. #1
    scriptkiddy's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Location
    Canada
    Posts
    67
    Reputation
    12
    Thanks
    63

    [Source]How to make an Auto Poster.

    Please note, use this for other forums. Don't use this on this forum.

    I don't want to turn this sub-forum into a black hat forum, so I don't think I am going to release any keylogger/phishersock/worm tutorials.

    [IMG]https://i286.photobucke*****m/albums/ll82/passisnotcat/example.jpg?t=1254605406[/IMG]
    Make it look something like this...

    If your going to copy paste my source and repost the exact same thing on the forum please atleast give me credit.

    Code:
    Public Class Form1
    
        Inherits System.Windows.Forms.Form
    
    
    
    
    
        Private Sub Button1_Click_1(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
            ListBox1.Items.Add(TextBox1.Text)
            TextBox1.Clear()
    
        End Sub
    
        Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
            TextBox1.ReadOnly = True 'makes it so people cant change their options
            TextBox2.ReadOnly = True
            TextBox3.ReadOnly = True
            TextBox4.ReadOnly = True
            TextBox5.ReadOnly = True
            TextBox6.ReadOnly = True
            TextBox7.ReadOnly = True
            TextBox8.ReadOnly = True
            Timer1.Start()
            Button1.Enabled = False
            Button2.Enabled = False
        End Sub
    
        Sub Delay(ByVal dblSecs As Double) 'call a delay
    
            Const OneSec As Double = 1.0# / (1440.0# * 60.0#)
            Dim dblWaitTil As Date
            Now.AddSeconds(OneSec)
            dblWaitTil = Now.AddSeconds(OneSec).AddSeconds(dblSecs)
            Do Until Now > dblWaitTil
                Application.DoEvents()
            Loop
    
        End Sub
    
        Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
            Label1.Text = "Timer re-loop"
            ListBox1.SelectedIndex = 0 'targets our first link
            WebBrowser1.Navigate(ListBox1.SelectedItem)
            Call Delay(3)
            Label1.Text = CStr(Int(Rnd() * 6)) 'generates a number from 0-6
    
            If Label1.Text = 0 Then
                WebBrowser1.Document.GetElementById("message").SetAttribute("value", TextBox2.Text())
            ElseIf Label1.Text = 1 Then
                WebBrowser1.Document.GetElementById("message").SetAttribute("value", TextBox3.Text())
            ElseIf Label1.Text = 2 Then
                WebBrowser1.Document.GetElementById("message").SetAttribute("value", TextBox4.Text())
            ElseIf Label1.Text = 3 Then
                WebBrowser1.Document.GetElementById("message").SetAttribute("value", TextBox5.Text())
            ElseIf Label1.Text = 4 Then
                WebBrowser1.Document.GetElementById("message").SetAttribute("value", TextBox6.Text())
            ElseIf Label1.Text = 5 Then
                WebBrowser1.Document.GetElementById("message").SetAttribute("value", TextBox7.Text())
            ElseIf Label1.Text = 6 Then
                WebBrowser1.Document.GetElementById("message").SetAttribute("value", TextBox8.Text()) 'posts data into the messagebox
            End If
    
            '^ the above acts upon generation, meaning if its a 0 it will send textbox2.text
            '^ if its a 1 it will do textbox3, and etc
    
    
            Call Delay(4)
    
            WebBrowser1.Document.GetElementById("sbutton").InvokeMember("click") 'submits it
            ListBox1.Items.RemoveAt(0) 'deletes the link it just posted a thread on
        End Sub
    
        Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
            WebBrowser1.Navigate("https://www.arguewitheveryone.com") 'the target
            Randomize() 'random number generator
    
            MsgBox("Please login first, didn't bother adding that feature, because of people saying I would e-mail it to my gmail.")
        End Sub
    End Class
    Very simple, you can make it spider the forum to gain forum thread links too...

    Currently this works for one site.
    Last edited by scriptkiddy; 10-03-2009 at 04:35 PM.

  2. #2
    (G)rapefruit's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Location
    Not here
    Posts
    1,593
    Reputation
    9
    Thanks
    211
    My Mood
    Amused
    Looks nice... Maybe I'll try it tomorrow. (I was busy with VB all day) T_T

    I was busy experimenting with my Email bomber, web browser tutorial (Look at my thread) and some web browser designs (I know, I'm noob).

    So I was busy with VB like... The last 6 hours or something. XD

  3. #3
    K4GE's Avatar
    Join Date
    Mar 2009
    Gender
    male
    Posts
    311
    Reputation
    13
    Thanks
    65
    My Mood
    Inspired
    Don't release the source man...
    People will leech and abuse it if you do.

  4. #4
    (G)rapefruit's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Location
    Not here
    Posts
    1,593
    Reputation
    9
    Thanks
    211
    My Mood
    Amused
    Quote Originally Posted by K4GE View Post
    Don't release the source man...
    People will leech and abuse it if you do.
    Why should you care?

  5. #5
    Pixie's Avatar
    Join Date
    Apr 2009
    Gender
    male
    Location
    Pixie wird wieder steigen.
    Posts
    1,884
    Reputation
    22
    Thanks
    229
    My Mood
    Fine
    I'm confused, what does this do??

  6. #6
    scriptkiddy's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Location
    Canada
    Posts
    67
    Reputation
    12
    Thanks
    63
    Quote Originally Posted by K4GE View Post
    Don't release the source man...
    People will leech and abuse it if you do.
    Well, this is extremely easy, its not like im releasing a code to a FUD crypter or trojan, or my bypass to UAC.

    I don't care if people abuse this nooby source, because it is very simple and is nothing special, anyway enjoy guys!

    Quote Originally Posted by PixieCorp View Post
    I'm confused, what does this do??
    It goes on a website, and posts on certain threads with a random message that you specified, so your post count goes up.

    However, you need different values for each different site, I supplied the values for arguewitheveryone.

    This can also be used to check for updates on a website if you change the coding a bit.

    If anybody has an idea to release a tutorial on this forum, (not releasing anything private)
    PM me, I am pretty pro at C# and VB, also know some C++

    This thread needs some good tuts, no offense but its pretty nooby here lol
    Last edited by scriptkiddy; 10-05-2009 at 09:09 AM.

  7. #7
    CodeHPro's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Posts
    116
    Reputation
    10
    Thanks
    76
    My Mood
    Aggressive
    this code sucks!~ why have multiple textbox's,?\\\ just have 1 then have a sub send 1 line at a time from the textbox1 to a string + form filling is for noobs use http

    Edit: o aslo
    If your going to copy paste my source and repost the exact same thing on the forum please atleast give me credit.
    LOL give you credit you didnt make the code you dam noob that's my code i posted it like last week gtfo for not giving me credit k
    Last edited by CodeHPro; 10-06-2009 at 09:56 AM.

  8. #8
    scriptkiddy's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Location
    Canada
    Posts
    67
    Reputation
    12
    Thanks
    63
    1: WebBrowser1.Document.GetElementById("message").Set Attribute("value", TextBox2.Text())
    was posted over one year ago in my face book freezer. Go check it out, it says "made by scriptkiddy" it is also in my phisher, that I posted 8 days ago. I also included it in my mega thread (written 7 days ago). The only person who deserves credit for one line of code is microsoft.

    So tell me, who is stealing whos one line of code (lol)
    me with my other threads made earlier then yours, or you, with your thread made after mine?

    2: It is so the user has a choice.

    3: I would of done it via webclient (not browser) but I did it this way so people didn't think it was a phisher or something.

    4: I ment if someone copy pasted my exact code and posted it somewere else, without changing anything what-so-ever, same screen shots too. Then I would want credit, otherwise, for one line of code... naw... Microsoft gets credit there.

    Proof from this forum:
    https://www.mpgh.net/forum/33-visual-...ss-mailer.html
    https://www.mpgh.net/forum/33-visual-...ode-dumps.html
    Last edited by scriptkiddy; 10-06-2009 at 07:18 PM.

  9. #9
    CodeHPro's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Posts
    116
    Reputation
    10
    Thanks
    76
    My Mood
    Aggressive
    Quote Originally Posted by scriptkiddy View Post
    1: WebBrowser1.Document.GetElementById("message").Set Attribute("value", TextBox2.Text())
    was posted over one year ago in my face book freezer. Go check it out, it says "made by scriptkiddy" it is also in my phisher, that I posted 8 days ago. I also included it in my mega thread (written 7 days ago). The only person who deserves credit for one line of code is microsoft.

    So tell me, who is stealing whos one line of code (lol)
    me with my other threads made earlier then yours, or you, with your thread made after mine?

    2: It is so the user has a choice.

    3: I would of done it via webclient (not browser) but I did it this way so people didn't think it was a phisher or something.

    4: I ment if someone copy pasted my exact code and posted it somewere else, without changing anything what-so-ever, same screen shots too. Then I would want credit, otherwise, for one line of code... naw... Microsoft gets credit there.

    Proof from this forum:
    https://www.mpgh.net/forum/33-visual-...ss-mailer.html
    https://www.mpgh.net/forum/33-visual-...ode-dumps.html
    your an idiot

  10. #10
    scriptkiddy's Avatar
    Join Date
    Jul 2009
    Gender
    male
    Location
    Canada
    Posts
    67
    Reputation
    12
    Thanks
    63
    Quote Originally Posted by CodeHPro View Post
    your an idiot
    Your a noob.

  11. #11
    JIGS4W's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Posts
    2,906
    Reputation
    48
    Thanks
    156
    I know how to make a invisible keylogger (undetectable on computer and to human eye) which record what peoples typed and save it in Notepad. All I need now is that how to make the keylogger bind to files


Similar Threads

  1. How to make a auto clicker with hotkeys
    By ryski123 in forum Programming Tutorial Requests
    Replies: 8
    Last Post: 11-01-2010, 09:42 AM
  2. [TUT] Vid Tut On How To Make A Auto Clicker
    By dylan40 in forum Programming Tutorials
    Replies: 4
    Last Post: 04-02-2010, 06:47 PM
  3. [HELP]How to make game auto login with vb
    By BaZuGa in forum Visual Basic Programming
    Replies: 0
    Last Post: 01-19-2010, 11:55 AM
  4. [Source] How to make a DLL injector in VB
    By scimmyboy in forum Combat Arms Hack Coding / Programming / Source Code
    Replies: 12
    Last Post: 01-14-2010, 01:00 PM
  5. [TUT] How to make an auto typer
    By SkyReborn in forum Visual Basic Programming
    Replies: 5
    Last Post: 09-06-2009, 11:26 PM

Tags for this Thread