Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html>
- <head>
- <title>DefacerID Mass Notifier By Bayz21</title>
- <style>
- body {
- background: url(http://i.imgur.com/YFRATix.jpg);
- cursor: url("//2.bp.blogspot.com/-uc-RVzjXLhI/VkVYXbrFXEI/AAAAAAAADas/LbzSMFo4kn4/s1600/Miku%2BCursor.png"), auto;
- margin : 0;
- padding : 0;
- color : white;
- font-size: medium;
- }
- body{background-color:#808080;color:#FFF;align:center;font: 12pt Verdana;}
- input[type=text],textarea,select,input[type=password],button,submit{border: 5px #f60b84 solid;background: #f19cc8;
- color: #200505;font: 12pt Verdana;outline: none;border-radius: 5px;opacity:0.7;}
- textarea{width: 525px; height: 301px;}
- input[type=submit], .button, input[type=reset], button {background: #ed0d0d;color: #FFF;font: 12pt Verdana;outline: none;
- opacity:1;filter:alpha(opacity=90); padding: 5px 8px !important;border: none !important;border-radius: 5px;}
- </style>
- </head>
- <center>
- <form method='POST' action=''>
- Attacker :<div class="kotak"><br><input type='text' name='nick' placeholder='Security Ghost'><br></div>
- Team : <br><input type='text' name='team' value='Security Ghost'><br></div>
- Sites :<br><textarea class='form-control con7' name="sites" placeholder="http://korban.com/" cols='50' rows='12'></textarea><br></div>
- <input type='submit' name='sikat' value='Submit!!'>
- </form>
- </html>
- <?php
- ini_set('display_errors', 0);
- error_reporting(0);
- $nick = $_POST['nick'];
- $team = $_POST['team'];
- $sikat = $_POST['sikat'];
- $url = explode("\r\n", $_POST['sites']);
- if($sikat){
- echo "Notify with nick [ ".$nick." ] and With Team [ ".$team." ] <br>";
- 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($url as $url) {
- $defid = defid($url,$nick,$team);
- if(preg_match('#<div class="warning-box">#', $defid)) {
- echo "ERROR -> ".$url."<br>";
- } else {
- echo "OK -> ".$url."<br>";
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement