html
html
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
26
27
28
<html>
<head>
<title>BruteForce</title>
</head>
<body>
<input type="text" id="pass" value="password">
<button onclick="start()">Go</button>
<input type="text" id="Ia" value="char to use">
<button onclick="stop()">Quit</button>
<hr />
<div id="i"></div>
<br />
<br />
<hr class="un" />
<br />
<script>
alert("A little update, \nhope you like it!");
var pass = "";
var passL = 0;
var breakL = false;
var alpha = [];
var Ialpha = "";
var x = -1;
var y = 0;
var z = 0;
var w = 0;
Enter to Rename, Shift+Enter to Preview
css
css
1
2
3
body {
}
Enter to Rename, Shift+Enter to Preview
js
js
1
Enter to Rename, Shift+Enter to Preview
BROWSER
Console
Run