Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /*
- Contoh : php script-name.php Website.nya
- Bukan : php script-name.php https://Website.nya/
- */
- if(!$argv[1]){
- die("\n cara penggunaan: php $argv[0] 'nama domain yg akan di scan' \n");
- }
- if(eregi("http://",$argv[1])){
- die("\n Udah gw bilang coeg, tanpa htpp:// \n");
- }else{
- $g=@file_get_contents("http://www.pagesinventory.com/search/?s=$argv[1]");
- @preg_match_all('#<td><a href="\/domain\/(.*?).html">#',$g,$matches) ;
- foreach ($matches[1] as $ul){
- echo "http://".$ul."/"."\n";
- }
- }
- ?>
Advertisement
Add Comment
Please, Sign In to add comment