Making any BOT I'm able for FREE

Status
Not open for further replies.
Can you please PM the bot that you said you were happy to PM, to me as well? Thank you!
 
Article importer bot which can strip links espand spin posts for wp
 
im doing call termination, but i dont understand why we neer bot for call termination?
like me who don't know anything about pbx...it would be easy if there is a bot that would connect to pbx then call
and loop the calls with 10-100 lines of calls
 
hey , can u tell me more about call termination, ? is it still available !!
like me who don't know anything about pbx...it would be easy if there is a bot that would connect to pbx then call
and loop the calls with 10-100 lines of calls
 
hey , can u tell me more about call termination, ? is it still available !!
still available, my main income is from termination arround $1k a day
today stats and some of payment proof from payoneer, some client send via bank, paypal, etc
Screenshot_2020-03-11-22-58-51-735_com.android.chrome.jpg IMG_20200311_225214.jpg
 
Last edited:
Did any of you get bot? I guess thta OP is just baiting you for ideas ;p
 
That’s nice mehn...can you put me through?
 
Op please I need your help I have a bot i need your suggestions on where I can get a dedicated to run the bot . The bot is an autoblog bot I got from someone but it’s requesting for dedicated ip to run
 
A bot that scrape top 10 google reaults for a lust of keywords

This one is easy I just wrote you one in php to use it you must install the php interpreter
if on ubunto/debian just apt-get install php
if on windows download the installer from windows.php.net/download/ and install it

then just copy this code to a txt and save it as somename.php
Code:
<?php
error_reporting(0);
ini_set('default_socket_timeout', 3);
echo "Please type your search\n";
$input=fopen ("php://stdin","r");
$inputSearch=fgets($input);
$inputSearch=str_replace("\n",'',$inputSearch);
$inputSearch=str_replace(" ",'+',$inputSearch);

echo "Please type your keywords separated with a colon : if more than one keyword\n";
$input=fopen ("php://stdin","r");
$keywords0=fgets($input);
$keywords0=str_replace("\n",'',$keywords0);
$keywords=explode(':',$keywords0);

echo "Google pages to fetch (press enter for the first one only)\n";
$input=fopen ("php://stdin","r");
$fetch0=fgets($input);
$toFetch=str_replace("\n",'',$fetch0);
if($toFetch == false) {$fetch = '0'; $toFetch='0';} else {$toFetch = $toFetch * 8; $fetch = '0';}


while($stop == false ) {
   $rep = false;
   $gUrl=file_get_contents("https://www.google.com/search?source=hp&q=$inputSearch&start=$fetch");
   $scrapUrl=explode('/url?q=',$gUrl);

   foreach($scrapUrl as $a){
       $findEnd=strstr($a,'&');
       if($findEnd && strstr($a,'http') && strstr($a,'google') == false) {
           $counter=$counter+1;
           $rep .=str_replace($findEnd,'',$a)."\n";
       }
   }
   echo "[*] Found $counter urls:\n$rep\n";
   $cleanUrls=explode("\n",$rep);
   if($counter>='1'){
       echo "[i] Searching keywords\n";
       foreach($cleanUrls as $b){
           if(strlen($b >'4')) {
               $get=file_get_contents($b);
               echo "[i] Analizing $b...";
               $inf=false;
                   foreach($keywords as $word)
                   {
                       $findWord=stristr($get,$word);
                       if($findWord){
                       echo "[Found $word]  ";
                       $inf=true;
                       }
                   }
                   if($inf == false) { echo "[No keywords found]";}
                   echo "\n";
           }
       }
   }
$fetch=$fetch+8;
$counter='0';
if($fetch > $toFetch){$stop = true;}
echo "\n--------------------------\n";
}

?>

then open your command line go to the folder where you saved the script and type-> php somename.php

here is a gif of it usage

a1.gif
 
Status
Not open for further replies.
Back
Top