Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- //Tu5b0l3d -indoXploit-
- //thx for WPScan
- error_reporting(0);
- $site = "http://www.blah.com/";
- for($id=1;$id<=10;$id++){
- $get = file_get_contents("$site?author=$id");
- preg_match("/<title>(.*?)(\||\,)(.*?)<\/title>/i", $get, $name);
- preg_match("/<body class=\"archive author author-(.*?) author-$id/", $get, $login);
- $login = $login[1];
- if($login!=""){
- $name = trim($name[1]);
- echo "id $id => $login => $name\n";
- }
- }
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement