This repository has been archived by the owner on May 1, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathindex.html
77 lines (63 loc) · 3.02 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
<!DOCTYPE html>
<html lang="en"><head><meta charset=utf-8>
<title>emailguesser.com | Track down hard to find email addresses</title>
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
<meta name="description" content="Tool to track down hard to find email addresses using name comibations and the Bing Search API.">
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="http://twitter.github.com/bootstrap/assets/css/bootstrap.css" />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
</head>
<body>
<div id="wrap">
<div id="header"><h1><a href="">
<center><img src="email.png">Email Guesser</center>
</a></h1></div>
<div id="main-sideless">
<p>
Use this form to generate and search all the likeliest iterations of email addresses.
<p style="font-size:xx-small">This tool works best for business domains (harvard.edu, politico.com) rather than free commercial email providers (Gmail, Hotmail, Yahoo, etc.)</p>
<form method="get" class="form-horizontal">
<table id="fields">
<tr>
<td>First:</td><td><input type="text" name="first" placeholder="required" required id="first" /></td>
</tr>
<tr>
<td>Middle: <i>(optional)</i></td><td><input type="text" name="middle" placeholder="optional" id="middle"/></td>
</tr>
<tr>
<td>Last:</td><td><input type="text" id="last" name="last" placeholder="required" required /></td>
</tr>
<tr>
<td>Domain Name:</td><td><input type="text" id="domain" name="domain" placeholder="required" required/></td>
</tr>
</table>
<div class="form-actions">
<input type="submit" name="Submit" value="Submit" class="btn btn-info btn-large"/>
<input type="submit" name="Clear" value="Clear" class="btn" id="clear"/>
</div>
</form>
<div id="domainwarning" class="alert alert-block alert-error fade in">
Warning: You're using a very common public domain, and so your results may not be reliable.
</div>
<div id="results" >
<table class="table table-striped"><thead><tr><th>Email</th><th>Frequency</th></tr></thead>
<tbody>
</tbody>
</table>
</div>
<script src="jquery.tablesorter.min.js"></script>
<script src="scripts.js"></script>
<script>
</script>
</div>
<div id="footer">
<p>Site by Yahel Carmon <a href="https://twitter.com/yahel" class="twitter-follow-button" data-show-count="false">Follow @yahel</a>
<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
</div>
<script type="text/javascript">
var _gaq = _gaq || []; _gaq.push(['_setAccount', 'UA-6951392-2']); _gaq.push(['_trackPageview']);
(function() {var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
(document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(ga);})();
</script>
</body></html>