-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathoptions.html
executable file
·70 lines (58 loc) · 2.27 KB
/
options.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Email Permutator</title>
<link rel="stylesheet" href="https://fonts.xz.style/serve/inter.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@exampledev/[email protected]/new.min.css">
<script src="js/jquery.min.js"></script>
<script src='js/options.js'></script>
</head>
<body>
<h1>Find a Person's Email Address</h1>
<table>
<tr>
<td>
<label>First name</label><br>
<input type="text" id="first_name" value="">
</td>
<td>
<label>Last name</label><br>
<input type="text" id="last_name" value="">
</td>
<td>
<label>Company Domain <button id="dontknowdomain" style="font-size: 10px; padding:3px 6px">Don't Know?</button></label><br>
<input type="text" id="domain" placeholder="example.com" value="">
</td>
</tr>
<tr>
<td colspan=3 style='text-align:center'>
<button id='submit'>Create Email Permutations</button>
</td>
</tr>
</table>
<hr>
<table id="scan_results">
<caption>Potential Emails</caption>
<thead>
<tr>
<th><button id='trigger_scan'>Validate Emails</button></th>
<th><a target='_blank' href='https://blog.0day.rocks/abusing-gmail-to-get-previously-unlisted-e-mail-addresses-41544b62b2'>Google Apps</a></th>
<th><a target='_blank' href='https://www.trustedsec.com/blog/achieving-passive-user-enumeration-with-onedrive/'>Office 365</a></th>
<th><a target='_blank' href='https://docs.github.com/en/rest/guides/getting-started-with-the-rest-api#authentication'>Github</a></th>
<th><a target='_blank' href='https://haveibeenpwned.com/'>HIBP</a></th>
</tr>
</thead>
<tbody id='results_tbody'>
</tbody>
<tfoot>
<th><button id='add'>+</button></th>
<th> </th>
<th> </th>
<th> </th>
<th> </th>
</tfoot>
</table>
</body>
</html>