[Source]How to make an Auto Poster.

Posts 111 of 11 · Page 1 of 1
[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.


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("http://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.
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
Don't release the source man...
People will leech and abuse it if you do.
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?
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 Pixie 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
I'm confused, what does this do??
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
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:
http://www.mpgh.net/forum/33-visual-...ss-mailer.html
http://www.mpgh.net/forum/33-visual-...ode-dumps.html
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:
http://www.mpgh.net/forum/33-visual-...ss-mailer.html
http://www.mpgh.net/forum/33-visual-...ode-dumps.html
your an idiot
Quote Originally Posted by CodeHPro View Post
your an idiot
Your a noob.
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
Posts 111 of 11 · Page 1 of 1
This thread is closed for replies.

Similar Threads

Tags for this Thread

Need help?