-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (25 loc) · 992 Bytes
/
Copy pathindex.html
File metadata and controls
25 lines (25 loc) · 992 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE html>
<!--
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
-->
<html>
<head>
<title>CSCI 145 Final</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<h2>Password guesser</h2>
<p>This utility will take a 5 digit password and brute force guess it. This is a tool to show how insecure and easily short passwords are guessed.</p>
<br><br>
<p>This tool may take 1-5 minutes to guess a 5 digit password. If it appears frozen just wait.</p>
<br>
<form id="password" action="form_action.asp">
Password to Guess: <input type="text" name="pass" value="passw">
</form>
<button onclick="guessPass()">Guess</button>
<script src="Scripts/PasswordGuesser.js"></script>
</body>
</html>