[help] looking for http request bot

thehack3r

Newbie
Joined
Jun 16, 2013
Messages
28
Reaction score
0
im looking for a program that can execute http post requests using a given proxy list,can someone point me in the right direction
 
That is program which is searched once a year. I don't think you have programs like that on the internet. Mostly you will find someone to custom code it for you .
 
You'll need a custom paid bot. If you have the time, look into uBot or Zennoposter, or possibly iMacros (free version).
 
You'll need a custom paid bot. If you have the time, look into uBot or Zennoposter, or possibly iMacros (free version).

That isn't what he is looking for.

A simple http request better will be basically just sending a text commands to the server

GET url
{headers..}


redirecting through a proxy. ubot / zenno cannot do this.


If you want to know HOW to do it
Download Visual studio Express Windows Desktop version

Create new console app


Code:
var urls = File.ReadAllLines(@"c:\path\to\urls");
var proxies =File.ReadAllLines(@"c:\path\to\proxies");

var cntrProxy = 0;
foreach(var url in urls){

  var proxy = getWebProxyFromString(proxies[cntrProxy]); //you'll have to do this
  var web = new WebClient();
  web.proxy = proxy;
  web.Download(url);

  cntrProxy++;
  if(cntrProxy >= proxies.Length) cntrProxy = 0 ;

}

That's it more or less. Yes you would want to multi thread, and perhaps change the UA on the request
 
bf4.jpgcould you expand a little bit onto that,i have no experience in coding,and how to i apply thing in this format
 
Last edited:
Back
Top