-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
165 lines (161 loc) · 5.39 KB
/
index.html
File metadata and controls
165 lines (161 loc) · 5.39 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
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
<title>SnowScript ❄️ — генератор команд</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background: #010101;
font-family: 'JetBrains Mono', 'Courier New', monospace;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
position: relative;
}
body::before {
content: "";
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: repeating-linear-gradient(0deg, rgba(0,255,255,0.02) 0px, rgba(255,0,255,0.02) 2px, transparent 2px, transparent 8px);
pointer-events: none;
z-index: 1;
}
.snow {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
pointer-events: none;
z-index: 2;
}
.snow i {
position: absolute;
background: #0ff;
border-radius: 50%;
opacity: 0.3;
box-shadow: 0 0 4px cyan;
animation: fall linear infinite;
}
@keyframes fall {
to { transform: translateY(100vh); }
}
.glass {
position: relative;
z-index: 10;
max-width: 800px;
width: 100%;
background: rgba(0, 0, 0, 0.75);
backdrop-filter: blur(8px);
border: 1px solid #0ff;
border-radius: 32px;
padding: 32px;
text-align: center;
box-shadow: 0 0 30px rgba(0,255,255,0.2);
}
.command-box {
background: #000000aa;
border: 2px solid #0ff;
border-radius: 24px;
padding: 24px;
margin: 24px 0;
}
.command-text {
color: #0f0;
font-size: 1.2rem;
word-break: break-word;
font-family: monospace;
}
button {
background: transparent;
border: 2px solid #0ff;
padding: 10px 20px;
border-radius: 40px;
color: #0ff;
font-weight: bold;
cursor: pointer;
margin: 8px;
transition: 0.2s;
}
button:hover {
background: #0ff;
color: black;
box-shadow: 0 0 12px #0ff;
}
.footer {
margin-top: 24px;
color: #0ff;
font-size: 0.7rem;
border-top: 1px solid #0ff;
padding-top: 16px;
}
</style>
</head>
<body>
<div class="snow" id="snow"></div>
<div class="glass">
<h1 style="color: #0ff;">❄️ SnowScript</h1>
<p style="color: #0ff;">генератор команд</p>
<div class="command-box">
<div class="command-text" id="commandDisplay">cryo-scan --ice=level3 | grep snowflake</div>
</div>
<button id="generateBtn">🧊 Сгенерировать</button>
<button id="copyBtn">📋 Копировать</button>
<div class="footer">
❄️ TPickME • бесполезно, но красиво
</div>
</div>
<script>
const commands = [
"cryo-scan --ice-depth=3 | grep frost",
"hashcat --mode winter -a cryo --stdout",
"nmap -sS -p- snow-target.local --ice-verbosity=2",
"crack --iceberg --wordlist=winter.txt",
"hydra -l root -P frost.txt ssh://target --icy-mode",
"cryo-dump /etc/snowflake | tee output.log",
"icebreaker --fingerprint --target 10.0.2.1 -w",
"nc -lvp 4444 -e /bin/snowsh",
"curl -X ICE https://api.cryo.com/v1/scan",
"wireshark -i eth0 -f 'icmp and snow' -k",
"msfconsole -q -x 'use exploit/multi/handler; set payload windows/x64/snow_reverse_tcp; run'",
"aircrack-ng -w winterlist.txt capture-01.cap --ice=hard",
"sqlmap -u 'http://snowlab.com/page?id=1' --level=5 --risk=3 --cryo",
"burpsuite --project=ice_cold --config=cryo.json &",
"python3 -m http.server 8080 --bind 0.0.0.0 --ice"
];
const display = document.getElementById("commandDisplay");
document.getElementById("generateBtn").addEventListener("click", () => {
const randomIndex = Math.floor(Math.random() * commands.length);
display.innerText = commands[randomIndex];
});
document.getElementById("copyBtn").addEventListener("click", () => {
navigator.clipboard.writeText(display.innerText).then(() => {
alert("✅ Команда скопирована");
});
});
function createSnow() {
const snowDiv = document.getElementById('snow');
for (let i = 0; i < 140; i++) {
const flake = document.createElement('i');
flake.style.left = Math.random() * 100 + '%';
flake.style.width = flake.style.height = Math.random() * 5 + 2 + 'px';
flake.style.animationDuration = Math.random() * 4 + 3 + 's';
flake.style.animationDelay = Math.random() * 5 + 's';
snowDiv.appendChild(flake);
}
}
createSnow();
</script>
</body>
</html>