-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
218 lines (205 loc) · 6.34 KB
/
index.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script
src="https://code.jquery.com/jquery-3.7.1.js"
integrity="sha256-eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4="
crossorigin="anonymous"
></script>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN"
crossorigin="anonymous"
/>
<script src="script.js"></script>
<title>Wordlist Generator</title>
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<style>
body {
margin: 20px;
font-family: Georgia, Arial, sans-serif, Verdana, 'Trebuchet MS',
'Times New Roman', serif;
font-size: 1rem;
font-weight: 400;
line-height: 1.5;
color: #212529;
text-align: left;
background-color: #f0f0f0;
}
textarea {
resize: none;
width: 100%;
}
input[name='word'] {
width: 75%;
}
input[name='date'] {
width: 35%;
text-align: center;
}
label {
margin-right: 10px;
}
::placeholder {
font-style: italic;
}
h2 {
color: rgb(82, 82, 82);
}
.spaced-letters {
letter-spacing: 5px;
}
</style>
</head>
<body>
<div class="container">
<div class="row">
<div class="title text-center">
<h1 class="spaced-letters fw-bold">Wordl!$t G3nerat@r</h1>
<p>
By
<a href="https://www.linkedin.com/in/juan-tomas-ortiz/"
><i>Tomás Ortiz</i></a
>
</p>
</div>
</div>
<hr />
<div class="row">
<div class="instructions">
<h2 class="fw-bold">Instructions</h2>
<ul>
<li>Only one word per input.</li>
<li>Word length is limited to 13 characters.</li>
<li>
A single word is required to generate a word list; the others are
optional.
</li>
<li>
The number of results depends on the quantity and length of the
words, as well as the selected options.
</li>
<li>
All data is processed in the client's browser. Therefore, your
computer must have enough resources for the application to work
properly.
</li>
</ul>
</div>
</div>
<hr />
<div class="row">
<div class="input col-6">
<form id="generateWordlist" autocomplete="off">
<h2 class="fw-bold">Input</h2>
<div class="mb-3 d-flex align-items-center">
<label for="word1" class="form-label">Word #1</label>
<input
type="text"
id="word1"
class="form-control"
name="word"
minlength="1"
maxlength="13"
placeholder="E.g. First Name, Last Name, Username..."
/>
</div>
<div class="mb-3 d-flex align-items-center">
<label for="word2" class="form-label">Word #2</label>
<input
type="text"
id="word2"
class="form-control"
name="word"
minlength="1"
maxlength="13"
placeholder="E.g. Company Name, Job Title, Career, Industry..."
/>
</div>
<div class="mb-3 d-flex align-items-center">
<label for="word3" class="form-label">Word #3</label>
<input
type="text"
id="word3"
name="word"
class="form-control"
minlength="1"
maxlength="13"
placeholder="E.g. Country, State, Street Name..."
/>
</div>
<div class="mb-3 d-flex align-items-center">
<label for="date" class="form-label"
>Date (<i>E.g. birthdate, anniversary...</i>)</label
>
<input type="date" class="form-control" id="date" name="date" />
</div>
<div class="mb-3">
<input
type="checkbox"
id="numbers"
name="numbers"
value="numbers"
checked
/>
<label for="numbers">Include numbers (<i>0-9</i>)</label><br />
<input
type="checkbox"
id="symbols"
name="symbols"
value="symbols"
checked
/>
<label for="symbols"
>Include symbols (<i>!@#$%^&*()_+-={}[]|\:;"'<>,.?/</i>)</label
>
</div>
<div class="buttons mb-3">
<input
type="submit"
class="btn btn-primary"
value="Generate Wordlist"
/>
<button type="button" class="btn btn-secondary" id="clearInputs">
Clear inputs
</button>
</div>
<div
class="spinner-border text-primary"
id="spinner"
role="status"
style="display: none"
>
<span class="visually-hidden">Loading...</span>
</div>
</form>
</div>
<div class="output col-6">
<h2 class="fw-bold">Output</h2>
<div class="mt-3">
<p id="results"></p>
</div>
<div class="mt-3">
<textarea id="output" rows="15" disabled></textarea>
</div>
<div class="mt-3">
<p id="fileSize"></p>
</div>
<div class="mt-3">
<button id="download" class="btn btn-success" disabled>
Download
</button>
</div>
</div>
</div>
</div>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL"
crossorigin="anonymous"
></script>
</body>
</html>