robercik1010

PHP Code Cipher

Oct 6th, 2012
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.39 KB | None | 0 0
  1. <html>
  2. <title>PHP Code Cipher</title>
  3. <form method=POST>
  4. <textarea name=code cols=20 rows=20>Enter your php code here</textarea>
  5. <p><input type=submit value=Send>
  6. </form>
  7. <p>
  8. <?
  9. if(empty($_POST['code'])){
  10. exit(0);
  11. }
  12. $K=$_POST['code'];
  13. ?>
  14. <b>Past it for file .php:</b><p>
  15. <textarea cols=30 rows=30>
  16. $CODE="<? echo base64_encode($K); ?>";
  17. eval(base64_decode($CODE));
  18. </textarea>
Advertisement
Add Comment
Please, Sign In to add comment