Advertisement
Andydrummmer21

Send.php

Oct 18th, 2014
517
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.52 KB | None | 0 0
  1. <?php
  2. if(isset($_POST["command"])){
  3.  $num = file("count");
  4.  $count = $num[0] + 1;
  5.  file_put_contents("count",$count);
  6.  
  7. $table = (split(' +', $_POST["command"]));
  8. $wordcount = count($table);
  9. $serial = "shell.run(";
  10. for($i = 1;$i <= $wordcount;$i++){
  11.  $f = $i-1;
  12.  $serial = $serial.'"'.$table[$f].'"';
  13.  if($i < $wordcount){
  14.   $serial = $serial.",";
  15.  }
  16. }
  17. $serial = $serial.")";
  18.  
  19.  file_put_contents("tmp.txt",$serial);
  20.  header("Location: test.html");
  21.  
  22. }
  23. else{
  24.  $file = file("tmp.txt");
  25.  echo($file[0]);
  26. }
  27.  
  28.  
  29. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement