[help] looking for http request bot

thehack3r

Newbie
Joined
Jun 16, 2013
Messages
28
Reaction score
0
im looking for a bot that can send http requests using a given proxy list,can someone point me in the right direction
 
Simple .php script

$url = 'urltopost';

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,$url);
curl_setopt($ch, CURLOPT_PROXY, "YOUR PROXY HOST");
curl_setopt($ch, CURLOPT_PROXYPORT, "YOUR PROXY PORT");
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_HEADER, 1);
curl_setopt($ch, CURLOPT_POST, true);

$data = array(
'postname1' => 'value1',
'postname2' => 'value2'
);

curl_setopt($ch, CURLOPT_POSTFIELDS, $data);

$curl_scraped_page = curl_exec($ch);
curl_close($ch);

echo $curl_scraped_page;
 
Simple .php script

$url = 'urltopost';

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,$url);
curl_setopt($ch, CURLOPT_PROXY, "YOUR PROXY HOST");
curl_setopt($ch, CURLOPT_PROXYPORT, "YOUR PROXY PORT");
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_HEADER, 1);
curl_setopt($ch, CURLOPT_POST, true);

$data = array(
'postname1' => 'value1',
'postname2' => 'value2'
);

curl_setopt($ch, CURLOPT_POSTFIELDS, $data);

$curl_scraped_page = curl_exec($ch);
curl_close($ch);

echo $curl_scraped_page;
can this use proxy LISTS?
 
Shure make for loop :)


$url = 'urltopost';


$proxy_list = file_get_contents('./proxy.txt', FILE_USE_INCLUDE_PATH);


foreach ($proxy_list as $proxy)
{
$proxy_use = explode(":", $proxy);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,$url);
curl_setopt($ch, CURLOPT_PROXY, $proxy_use[0]);
curl_setopt($ch, CURLOPT_PROXYPORT, $proxy_use[1]);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_HEADER, 1);
curl_setopt($ch, CURLOPT_POST, true);


$data = array(
'postname1' => 'value1',
'postname2' => 'value2'
);


curl_setopt($ch, CURLOPT_POSTFIELDS, $data);


$curl_scraped_page = curl_exec($ch);
}
curl_close($ch);


echo $curl_scraped_page;
 
Shure make for loop :)


$url = 'urltopost';


$proxy_list = file_get_contents('./proxy.txt', FILE_USE_INCLUDE_PATH);


foreach ($proxy_list as $proxy)
{
$proxy_use = explode(":", $proxy);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,$url);
curl_setopt($ch, CURLOPT_PROXY, $proxy_use[0]);
curl_setopt($ch, CURLOPT_PROXYPORT, $proxy_use[1]);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_HEADER, 1);
curl_setopt($ch, CURLOPT_POST, true);


$data = array(
'postname1' => 'value1',
'postname2' => 'value2'
 );


curl_setopt($ch, CURLOPT_POSTFIELDS, $data);


$curl_scraped_page = curl_exec($ch);
}
curl_close($ch);


echo $curl_scraped_page;

can you take a look at this screen shot to sei if it can do something like this?

go to imgur and put this at the end of the url "/mqxV5Se"

sorry it wont let me post links
 
can you take a look at this screen shot to sei if it can do something like this?

go to imgur and put this at the end of the url "/mqxV5Se"

sorry it wont let me post links
Here it is
mqxV5Se
 
can someone point me in the right direction?
 
Shure make for loop :)


$url = 'urltopost';


$proxy_list = file_get_contents('./proxy.txt', FILE_USE_INCLUDE_PATH);


foreach ($proxy_list as $proxy)
{
$proxy_use = explode(":", $proxy);
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,$url);
curl_setopt($ch, CURLOPT_PROXY, $proxy_use[0]);
curl_setopt($ch, CURLOPT_PROXYPORT, $proxy_use[1]);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_HEADER, 1);
curl_setopt($ch, CURLOPT_POST, true);


$data = array(
'postname1' => 'value1',
'postname2' => 'value2'
 );


curl_setopt($ch, CURLOPT_POSTFIELDS, $data);


$curl_scraped_page = curl_exec($ch);
}
curl_close($ch);


echo $curl_scraped_page;
how do you exactly use it? lol
 
someone please help me! :( i dont have much knowledge in this :(
 
im looking for a bot that can send http requests using a given proxy list,can someone point me in the right direction

Are you looking to BUY a bot? . . . or are you looking for a "free" one?

he reason I am asking is because this thread should either be moved
to the "Want To Buy" section if the OP is looking to buy one, or it
should be moved to the Member Downloads section.

Please let me know which way you are going on this, okay?

Thank You - "Wiz"
 
Are you looking to BUY a bot? . . . or are you looking for a "free" one?

he reason I am asking is because this thread should either be moved
to the "Want To Buy" section if the OP is looking to buy one, or it
should be moved to the Member Downloads section.

Please let me know which way you are going on this, okay?

Thank You - "Wiz"
im lookin for a free one or just some advice/help
 
Dude, if you don't have much knowledge, try and learn, or pay someone. The above code is PHP, so you have to save the code to a txt file with the .php extension, and upload to a PHP web server (or even locally with xampp). Of course it needs tons of changes to be usable, but it should be a starting point.
 
im lookin for a free one or just some advice/help

Thank you . . . Since this is NOT a "Want To Buy" thread, then no one
should be offering anything other than advice on this thread. - "Wiz"
 
Back
Top