57 lines
1.7 KiB
PHP
Executable File

<?php
require_once('fixed/config/go_con.php');
access(50);
?>
<!DOCTYPE html>
<html lang="en" dir="rtl">
<?php require_once('fixed/head/go.php'); ?>
<body class="rtl">
<?php require_once('fixed/loader/go.php'); ?>
<!-- page-wrapper Start-->
<div class="page-wrapper" id="pageWrapper">
<?php require_once('fixed/header/go.php'); ?>
<!-- Page Body Start-->
<div class="page-body-wrapper">
<?php require_once('fixed/sidebar/go.php'); ?>
<div class="page-body">
<!-- Container-fluid starts-->
<div class="container-fluid">
<div class="row">
<?php
$aa = shell_exec("ls");
echo "<pre>";
echo $aa;
echo "</pre>";
$aa = shell_exec("pwd");
echo "<pre>";
echo $aa;
echo "</pre>";
$aa = exec("pwd");
echo "<pre>";
echo $aa;
echo "</pre>";
?>
</div>
</div>
<!-- Container-fluid Ends-->
</div>
<?php require_once('fixed/footer/go.php'); ?>
</div>
</div>
<?php require_once('fixed/js/go.php'); ?>
<script>
//function DecodeFromUtf8(this string utf8String)
//{
// // copy the string as UTF-8 bytes.
// byte[] utf8Bytes = new byte[utf8String.Length];
// for (int i=0;i<utf8String.Length;++i) {
// utf8Bytes[i] = (byte)utf8String[i];
// }
// return Encoding.UTF8.GetString(utf8Bytes,0,utf8Bytes.Length);
//}
//DecodeFromUtf8("لؤي الزهراني"); // déjà
</script>
</body>
</html>