Advertisement
lamiastella

shell_exec

Sep 19th, 2016
150
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. <html>
  2. <body>
  3.  
  4. <form action="welcome.php" method="post">
  5. Name: <input type="text" name="name"><br>
  6. E-mail: <input type="text" name="email"><br>
  7. <input type="submit">
  8. </form>
  9.  
  10.  
  11. <?php
  12.  
  13. $output = shell_exec('ls -ltr');
  14.  
  15. echo "<pre>$output</pre>";
  16. ?>
  17.  
  18.  
  19. </body>
  20. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement