AmbitiousJ
Newbie
- Mar 4, 2020
- 5
- 1
Can you please PM the bot that you said you were happy to PM, to me as well? Thank you!
Hey,
I'm making any BOT I'm able for FREE, just ask me.
im doing call termination, but i dont understand why we neer bot for call termination?Call termination bot with pBx
like me who don't know anything about pbx...it would be easy if there is a bot that would connect to pbx then callim 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
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
View attachment 129249 View attachment 129250
depends on your country manhCan you put me through? That’s so nice
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
View attachment 129249 View attachment 129250
A bot that scrape top 10 google reaults for a lust of keywords
<?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";
}
?>