andripzf

[PHP] Cpanel Login

Dec 7th, 2013
463
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. <?php
  2. if($_POST["submit"]) {
  3. if((!$_POST["user"]) || (!$_POST["pass"])) {
  4. echo("Failed");
  5. } else {
  6. header("Location: http://".$_POST["user"].":".
  7. $_POST["pass"]."@IP:2082");
  8. }
  9. }
  10. ?>
Add Comment
Please, Sign In to add comment