Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- ini_set('display_errors', 0);
- error_reporting(0);
- print "_________ _________ __
- \_ ___ \ ____ ___\______ \ ____ ___ ____/ |_
- / \ \/ / _ \ / \ / // __ \\ \/ /\ __\
- \ \___( <_> ) | \/ /\ ___/ > < | |
- \______ /\____/|___| /____/ \___ >__/\_ \ |__|
- \/ \/ \/ \/
- ";
- echo "\nNick: ";$nick=trim(fgets(STDIN,1024));
- echo "\nTeam: ";$team=trim(fgets(STDIN,1024));
- echo "\nSites List (FILE): ";$setlis=trim(fgets(STDIN,1024));
- $domain = explode("\n", file_get_contents($setlis));
- echo "Notify with nick [ ".$nick." ] \n";
- function defid($url,$nick,$team) {
- $ch = curl_init("https://defacer.id/archives/notify");
- curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
- curl_setopt($ch, CURLOPT_POST, true);
- curl_setopt($ch, CURLOPT_POSTFIELDS, "attacker=$nick&team=$team&poc=SQL Injection&url=$url");
- return curl_exec($ch);
- curl_close($ch);
- }
- foreach($domain as $url) {
- $defid = defid($url,$nick,$team);
- if(preg_match('#<div class="success-box">#', $defid)) {
- echo "\nOK -> ".$url;
- } else {
- echo "\nError -> ".$url;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment