-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
36 lines (30 loc) · 859 Bytes
/
Copy pathindex.html
File metadata and controls
36 lines (30 loc) · 859 Bytes
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
<html>
<head>
<title>E-mail Spammer</title>
<link rel="stylesheet" href="style.css">
<meta charset="UTF-8">
</head>
<body>
<h1>E-Mail Spammer</h1>
<img src="icon.png" width="100" height="100"/>
</br>
<button onClick="download()">Download</button>
</br>
<p id="quick" onClick="quickdownload()">Alternative Download</p>
<p>Download the E-Mail Spammer</p>
</br>
<p id="instinfo">Installation info:</p>
</br>
<img src="installation1.png" width="330" height="330"/>
</br>
<img src="installation2.png" width="309" height="306"/>
<script>
function download(){
window.open("https://file-link.net/36643/MailSpammer");
}
function quickdownload(){
window.open("https://dl.dropboxusercontent.com/s/62bnfvlydpps0fm/SpammerInstaller.exe?dl=0");
}
</script>
</body>
</html>