Cheating Network
 
 

Go Back   Cheating Network > General Computing > Programming
Reload this Page Massive Help with VB.net Web Bot



Programming

This is a discussion about Massive Help with VB.net Web Bot within the Programming section, where you will Anything related to programming or scripting should go here.



Reply
 
LinkBack Thread Tools Display Modes
Old 08-31-2008, 03:42 PM   #1 (permalink)
Senior Member
 
Join Date: Aug 2008
Posts: 395
Reputation: 14
albinoblack is on a distinguished road
Default Massive Help with VB.net Web Bot

OK so I have some experience in VB, and I am looking to make a bot like wlindy 27's feeliberated or dopex's obama bot. I would want it to use the gmail+ trick, and be able to possibly use the apartment trick.

I dont really know what site I'm gonna do it for (yet) but ill find one that might actually work. Actually I was thinking of "redoing" dopex's obama bot as practice. (Maybe i can get source plz plz??) I really dont know how you would fill out the forms.

What i was thinking was actually using Http analyzer to capture the outgoing packets and with just resubmit eg the original blah.com/submit.php?adress+name+whatever. Im sure its not that easy and I would really like somebodies help with working on this in VB. If i got some help i could for sure put some time into making quality bots to bot sites such as feeliberated and moveon.org.
Thanks in advance
albinoblack is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 08-31-2008, 03:59 PM   #2 (permalink)
Senior Member
 
Join Date: Aug 2008
Posts: 395
Reputation: 14
albinoblack is on a distinguished road
Default

Ok so i already have made some headway... Need some help from here. I found that to get the sticker you have to submit this form - and the php is really easy to exploit - here it is https://political.moveon.org/baracks...rk&sticker=263 Part of it has been deleted since i realize that it is a sub only bot that i am trying to emulate - dont worry i wont realease anyhting.
After this, all you have to do is to click a "submit" button - and this is the hard part. ACtually what i think it is after looking through http analyzer is actually a post to a adress/post.pl (again not shown cause it is a sub only bot) So basically here is what i need specific answers to.

1.How do i convert spaces and other symbols to %20 in VB?
2. How do I post to a adress/post.pl in VB?
3. How do i assign and use variables in VB? eg - for the adress and name etc.
4. how do i get the gmail + trick to work eg how do I add 1 to a number every time a script repeats. I think it would be a for loop and and you would need a variable for each time the script runs to add to it. I dunno though

I think this is basically all I need. If you guys could answer that woudl be awesome. And dopex, im not sure if this is the same approach you used in your bot or not. I dont think it is. What was your approach?
albinoblack is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 08-31-2008, 04:18 PM   #3 (permalink)
Noob Helper
 
Join Date: Dec 2007
Posts: 318
Reputation: 80
grapplinghook will become famous soon enough
Send a message via AIM to grapplinghook Send a message via MSN to grapplinghook Send a message via Yahoo to grapplinghook
Default

1.
Code:
Dim Url As String = "blahblah replace spaces here"
Url.Replace(" ", "%20")
2. Using an httpwebrequest or a webclient

3.
Code:
Dim VarName As VarType = VarValue
since that would usually be a string

Code:
Dim Address As String = "123 Maple St."
4.

Code:
Dim Email As String
Dim EmailBase As String = "GmailBase"
For I As Integer = 1 To 100
 Email = EmailBase & "+" & I.ToString() & "@gmail.com"
Next
__________________
For all of my bots, click here

Quote:
Originally Posted by bigpapidh View Post
lmao, I gave my Mom's CC # to a dancing moose once, she wasnt happy.
Quote:
Originally Posted by bigpapidh View Post
there was this dancing moose pop up that asked for a CC #, I did what anyone would do and found someone elses CC and gave it to him, man it was a dancing moose couldnt resist.
grapplinghook is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 08-31-2008, 04:39 PM   #4 (permalink)
Senior Member
 
Join Date: Aug 2008
Posts: 395
Reputation: 14
albinoblack is on a distinguished road
Default

Quote:
Originally Posted by grapplinghook View Post
1.
Code:
Dim Url As String = "blahblah replace spaces here"
Url.Replace(" ", "%20")
2. Using an httpwebrequest or a webclient

3.
Code:
Dim VarName As VarType = VarValue
since that would usually be a string

Code:
Dim Address As String = "123 Maple St."
4.

Code:
Dim Email As String
Dim EmailBase As String = "GmailBase"
For I As Integer = 1 To 100
 Email = EmailBase & "+" & I.ToString() & "@gmail.com"
Next
OK thanks that works so far... how to do specifically getthe vars from a text entry box, and how do i use httpwebrequest? also how do I call the variables when I am submitting the adresss

Last edited by albinoblack; 08-31-2008 at 04:45 PM.
albinoblack is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 08-31-2008, 07:36 PM   #5 (permalink)
Senior Member
 
Join Date: Aug 2008
Posts: 395
Reputation: 14
albinoblack is on a distinguished road
Default

OK I'm totally confused- i have no idea on how to post http data.
Wlindy27 or dopex, could you advise on how you made up your bots for feeliberated and obama. Thanks in advance
albinoblack is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 08-31-2008, 07:40 PM   #6 (permalink)
Senior Member
 
dopex's Avatar
 
Join Date: Dec 2007
Posts: 914
Reputation: 45
dopex is on a distinguished road
Send a message via ICQ to dopex Send a message via AIM to dopex Send a message via MSN to dopex Send a message via Yahoo to dopex Send a message via Skype™ to dopex
Default

i use visual basic 6.0, so i dont know how that works with .net.
__________________

<assault14> why are u being prejitist and calling us gays

Dan offered $1.50 to do offer with fraud CC details but said it was (his own).
dopex is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 08-31-2008, 07:40 PM   #7 (permalink)
Senior Member
 
Join Date: Aug 2008
Posts: 395
Reputation: 14
albinoblack is on a distinguished road
Default

how did you do it in 6.0
albinoblack is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Tags
bot, massive, vbnet, web


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
MASSIVE amount of Free Magazines! MagicalCanOfSprite Free Stuff 76 11-03-2008 06:50 PM
just took a massive crap cl0aked Chit Chat 20 08-21-2008 03:20 PM
Club Live - Massive List und3rxoath Received In The Mail Today 22 07-08-2008 12:57 AM
WTB massive amounts of Pepsi Codes Sandbox Buy 8 05-08-2008 04:08 PM
disaresta's massive buy everything thread disaresta Buy 28 01-03-2008 09:17 PM


Powered by vBulletin
Copyright © 2000-2008 Jelsoft Enterprises Limited.
Search Engine Friendly URLs by vBSEO 3.2.0 ©2008, Crawlability, Inc.