-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcct.asm
13193 lines (10694 loc) · 355 KB
/
cct.asm
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
;---------------------------------------------------------------------------------------------------------------------------
; Console Command Tool (CCT) v1.28.0.50
; Created in 2018 by José A. Rojo L.
;---------------------------------------------------------------------------------------------------------------------------
; MIT License
; Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation
; files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy,
; modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the
; Software is furnished to do so, subject to the following conditions:
; The above copyright notice and this permission notice shall be included in all copies or substantial portions of the
; Software.
; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
; WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
; COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
; ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
; https://opensource.org/licenses/MIT
;---------------------------------------------------------------------------------------------------------------------------
format PE console
;---------------------------------------------------------------------------------------------------------------------------
include 'main.inc'
;---------------------------------------------------------------------------------------------------------------------------
CALG_MD5 = 00008003h
CALG_SHA1 = 00008004h
CALG_SHA256 = 0000800Ch
CALG_SHA384 = 0000800Dh
CALG_SHA512 = 0000800Eh
CRYPT_VERIFYCONTEXT = $F0000000
PROV_RSA_AES = 24
HP_HASHVAL = 2
HP_HASHSIZE = 4
CRYPT_STRING_BASE64 = 1
CRYPT_STRING_NOCRLF = 40000000h
URLPOLICY_ALLOW = 0
URLPOLICY_DISALLOW = 3
OLECLOSE_NOSAVE = 1
S_OK = 0
S_FALSE = 1
INPLACE_E_NOTOOLSPACE = 800401A1h
E_UNEXPECTED = 8000FFFFh
E_OUTOFMEMORY = 8007000Eh
E_NOINTERFACE = 80004002h
E_NOTIMPL = 80004001h
E_INVALIDARG = 80070057h
INET_E_DEFAULT_ACTION = 800C0011h
TYPE_E_ELEMENTNOTFOUND = 8002802Bh
DISP_E_UNKNOWNINTERFACE = 80020001h
DISP_E_MEMBERNOTFOUND = 80020003h
DISP_E_BADPARAMCOUNT = 8002000Eh
DISP_E_TYPEMISMATCH = 80020005h
DISP_E_BADINDEX = 8002000Bh
DISP_E_ARRAYISLOCKED = 8002000Dh
DISP_E_EXCEPTION = 80020009h
URLACTION_JAVA_PERMISSIONS = 00001C00h
URLACTION_DOWNLOAD_SIGNED_ACTIVEX = 00001001h
URLACTION_DOWNLOAD_UNSIGNED_ACTIVEX = 00001004h
URLACTION_ACTIVEX_RUN = 00001200h
URLACTION_ACTIVEX_OVERRIDE_OBJECT_SAFETY = 00001201h
URLACTION_ACTIVEX_OVERRIDE_DATA_SAFETY = 00001202h
URLACTION_ACTIVEX_OVERRIDE_SCRIPT_SAFETY = 00001203h
URLACTION_ACTIVEX_CONFIRM_NOOBJECTSAFETY = 00001204h
URLACTION_ACTIVEX_NO_WEBOC_SCRIPT = 00001206h
URLACTION_ACTIVEX_OVERRIDE_REPURPOSEDETECTION = 00001207h
URLACTION_ACTIVEX_OVERRIDE_OPTIN = 00001208h
URLACTION_ACTIVEX_SCRIPTLET_RUN = 00001209h
URLACTION_ACTIVEX_DYNSRC_VIDEO_AND_ANIMATION = 0000120Ah
URLACTION_ACTIVEX_OVERRIDE_DOMAINLIST = 0000120Bh
URLACTION_ACTIVEX_ALLOW_TDC = 0000120Ch
URLACTION_SCRIPT_JAVA_USE = 00001402h
URLACTION_SCRIPT_SAFE_ACTIVEX = 00001405h
URLACTION_SCRIPT_PASTE = 00001407h
URLACTION_HTML_JAVA_RUN = 00001605h
URLACTION_AUTOMATIC_ACTIVEX_UI = 00002201h
SCRIPTITEM_ISVISIBLE = $2
SCRIPTITEM_NOCODE = $400
SCRIPTSTATE_UNINITIALIZED = 0
SCRIPTSTATE_CONNECTED = 2
SCRIPTSTATE_DISCONNECTED = 3
SCRIPTSTATE_CLOSED = 4
SCRIPTINFO_IUNKNOWN = 1
SCRIPTINFO_ITYPEINFO = 2
SCRIPTINFO_ALL_FLAGS = 3
OLEIVERB_INPLACEACTIVATE = -5
DISPID_TITLECHANGE = 113
DISPID_BEFORENAVIGATE2 = 250
DISPID_NAVIGATECOMPLETE2 = 252
DISPID_DOCUMENTCOMPLETE = 259
DISPID_READYSTATECHANGE = -609
DISPID_PROGRESS = 1958
DISPID_FSCOMMAND = 150
DISPID_FLASHCALL = 197
CONTEXT_MENU_CONTROL = 2
ID_SHDOCLC_ACCEL = 42
ID_CLOSE_CMD = 50
DOCHOSTUIDBLCLK_DEFAULT = 0
DOCHOSTUIFLAG_DIALOG = 1
DOCHOSTUIFLAG_DISABLE_HELP_MENU = 2
DOCHOSTUIFLAG_NO3DBORDER = 4
DOCHOSTUIFLAG_SCROLL_NO = 8
DOCHOSTUIFLAG_DISABLE_SCRIPT_INACTIVE = 16
DOCHOSTUIFLAG_OPENNEWWIN = 32
DOCHOSTUIFLAG_DISABLE_OFFSCREEN = 64
DOCHOSTUIFLAG_FLAT_SCROLLBAR = 128
DOCHOSTUIFLAG_DIV_BLOCKDEFAULT = 256
DOCHOSTUIFLAG_ACTIVATE_CLIENTHIT_ONLY = 512
DOCHOSTUIDBLCLK_SHOWPROPERTIES = 1
DOCHOSTUIDBLCLK_SHOWCODE = 2
SWP_FRAMECHANGED = 20h
LOCALE_SYSTEM_DEFAULT = 800h
BINDF_GETNEWESTVERSION = 10h
BINDF_IGNORESECURITYPROBLEM = 100h
VT_EMPTY = 0
VT_I2 = 2
VT_I4 = 3
VT_BSTR = 8
VT_DISPATCH = 9
VT_BOOL = 11
VT_VARIANT = 12
VT_BYREF = 4000h
VT_BYREFVAR = VT_BYREF or VT_VARIANT
VARIANT_TRUE = $FFFF
VARIANT_FALSE = $0000
FOF_SILENT = 0004h
FOF_NOCONFIRMATION = 0010h
FOF_NOERRORUI = 0400h
FOF_NOCONFIRMMKDIR = 0200h
FOF_NO_UI = FOF_SILENT or FOF_NOCONFIRMATION or FOF_NOERRORUI or FOF_NOCONFIRMMKDIR ; supported since Windows Vista.
TH32CS_SNAPTHREAD = 00000004h
CLSCTX_INPROC_SERVER = 01h
VER_NT_WORKSTATION = 1
KEY_EVENT = 1
GETCH_VK_HOME = 71
GETCH_VK_END = 79
GETCH_VK_LEFT = 75
GETCH_VK_RIGHT = 77
GETCH_VK_DEL = 83
INPUT_MOUSE = 0
INPUT_KEYBOARD = 1
INPUT_HARDWARE = 2
KEYEVENTF_KEYUP = 0002h
INFINITE = -1
SEE_MASK_NOCLOSEPROCESS = 00000040h
CREATE_DEFAULT_ERROR_MODE = 04000000h
VER_SUITE_WH_SERVER = 00008000h
SM_TABLETPC = 86
SM_MEDIACENTER = 87
SM_STARTER = 88
SM_SERVERR2 = 89
COINIT_APARTMENTTHREADED = 02h
COINIT_DISABLE_OLE1DDE = 04h
ERROR_FILE_NOT_FOUND = 2
ERROR_PATH_NOT_FOUND = 3
ERROR_BAD_FORMAT = 0Bh
SE_ERR_ACCESSDENIED = 5
SE_ERR_ASSOCINCOMPLETE = 1Bh
SE_ERR_DDEBUSY = 1Eh
SE_ERR_DDEFAIL = 1Dh
SE_ERR_DDETIMEOUT = 1Ch
SE_ERR_DLLNOTFOUND = 20h
SE_ERR_NOASSOC = 1Fh
SE_ERR_OOM = 8
SE_ERR_SHARE = 1Ah
SPF_DEFAULT = 0
SPF_ASYNC = 1
SPF_PURGEBEFORESPEAK = 2
SPF_IS_FILENAME = 3
SPF_IS_XML = 4
SPF_IS_NOT_XML = 5
SPF_PERSIST_XML = 6
SEEK_END = 2
SHRT_MAX = 32767
USHRT_MAX = 65535
LONG_MAX = 2147483647
LONG_MIN = -2147483647
;---------------------------------------------------------------------------------------------------------------------------
macro multi_icon group, [label, icon_file, num]
{
common local count
count = 0
forward local data, size, position
label dd RVA data, size, 0, 0
virtual at 0
file icon_file: 6 + (num * 16), 16
load size dword from 8
load position dword from 12
end virtual
data file icon_file: position, size
count = count+1
common local header
align 4
group dd RVA header, 6 + count * 14, 0, 0
header dw 0,1,count
forward
file icon_file: 6 + (num * 16), 12
dw label#.resid
common
align 4
}
;---------------------------------------------------------------------------------------------------------------------------
struc GUID def
{
match d1-d2-d3-d4-d5, def
\{
.Data1 dd 0x\#d1
.Data2 dw 0x\#d2
.Data3 dw 0x\#d3
.Data4 db 0x\#d4 shr 8,\
0x\#d4 and 0FFh
.Data5 db 0x\#d5 shr 40,\
0x\#d5 shr 32 and 0FFh,\
0x\#d5 shr 24 and 0FFh,\
0x\#d5 shr 16 and 0FFh,\
0x\#d5 shr 8 and 0FFh,\
0x\#d5 and 0FFh
\}
}
;---------------------------------------------------------------------------------------------------------------------------
macro RGB red, green, blue
{
xor eax, eax
mov al, blue
rol eax, 8
mov al, green
rol eax, 8
mov al, red
}
;---------------------------------------------------------------------------------------------------------------------------
struct VS_FIXEDFILEINFO
dwSignature dd ?
dwStrucVersion dd ?
dwFileVersionMS dd ?
dwFileVersionLS dd ?
dwProductVersionMS dd ?
dwProductVersionLS dd ?
dwFileFlagsMask dd ?
dwFileFlags dd ?
dwFileOS dd ?
dwFileType dd ?
dwFileSubtype dd ?
dwFileDateMS dd ?
dwFileDateLS dd ?
ends
;---------------------------------------------------------------------------------------------------------------------------
struct RTL_OSVERSIONINFOEXW
dwOSVersionInfoSize dd ?
dwMajorVersion dd ?
dwMinorVersion dd ?
dwBuildNumber dd ?
dwPlatformId dd ?
szCSDVersion dw 128 dup (?)
wServicePackMajor dw ?
wServicePackMinor dw ?
wSuiteMask dw ?
wProductType db ?
wReserved db ?
ends
;---------------------------------------------------------------------------------------------------------------------------
struct KEY_EVENT_RECORD
bKeyDown dd ?
wRepeatCount dd ?
wVirtualKeyCode dw ?
wVirtualScanCode dw ?
union
UnicodeChar dw ?
AsciiChar db ?
ends
dwControlKeyState dd ?
ends
struct INPUT_RECORD
EventType dw ?
KeyEvent KEY_EVENT_RECORD
ends
;---------------------------------------------------------------------------------------------------------------------------
struct MOUSEINPUT
dx dd ?
dy dd ?
mouseData dd ?
dwFlags dd ?
time dd ?
dwExtraInfo dd ?
ends
struct KEYBDINPUT
wVk dw ?
wScan dw ?
dwFlags dd ?
time dd ?
dwExtraInfo dd ?
ends
struct HARDWAREINPUT
uMsg dd ?
wParamL dw ?
wParamH dw ?
ends
struct INPUT
type dd ?
union
mi MOUSEINPUT
ki KEYBDINPUT
hi HARDWAREINPUT
ends
ends
;---------------------------------------------------------------------------------------------------------------------------
struct COORD
X dw ?
Y dw ?
ends
struct SMALL_RECT
Left dw ?
Top dw ?
Right dw ?
Bottom dw ?
ends
struct CONSOLE_SCREEN_BUFFER_INFO
dwSize COORD
dwCursorPosition COORD
wAttributes dw ?
srWindow SMALL_RECT
dwMaximumWindowSize COORD
ends
;---------------------------------------------------------------------------------------------------------------------------
struct THREADENTRY32
dwSize dd ?
cntUsage dd ?
th32ThreadID dd ?
th32OwnerProcessID dd ?
tpBasePri dd ?
tpDeltaPri dd ?
dwFlags dd ?
ends
;---------------------------------------------------------------------------------------------------------------------------
struct SHELLEXECUTEINFO
cbSize dd ?
fMask dd ?
hwnd dd ?
lpVerb dd ?
lpFile dd ?
lpParameters dd ?
lpDirectory dd ?
nShow dd ?
hInstApp dd ?
lpIDList dd ?
lpClass dd ?
hkeyClass dd ?
dwHotKey dd ?
union
hIcon dd ?
hMonitor dd ?
ends
hProcess dd ?
ends
;---------------------------------------------------------------------------------------------------------------------------
struct SECURITY_ATTRIBUTES
nLength dd ?
lpSecurityDescriptor dd ?
bInheritHandle dd ?
ends
;---------------------------------------------------------------------------------------------------------------------------
struct CWPSTRUCT
lParam dd ?
wParam dd ?
message dd ?
hwnd dd ?
ends
;---------------------------------------------------------------------------------------------------------------------------
struct GDIP_STARTUP_INPUT
GdiplusVersion dd ?
DebugEventCallback dd ?
SuppressBackgroundThread dd ?
SuppressExternalCodecs dd ?
ends
;---------------------------------------------------------------------------------------------------------------------------
struct WB_OBJ
iUnknown dd ?
Base0 dd ?
iOleClientSite dd ?
Base1 dd ?
iOleInPlaceSite dd ?
Base2 dd ?
iOleInPlaceFrame dd ?
Base3 dd ?
iDocHostUIHandler dd ?
Base4 dd ?
iWebBrowserEvents dd ?
Base5 dd ?
iExternalDispatch dd ?
Base6 dd ?
iServiceProvider dd ?
Base7 dd ?
iSecurityManager dd ?
Base8 dd ?
ends
;---------------------------------------------------------------------------------------------------------------------------
struct SCR_OBJ
iActiveScriptSite dd ?
Base0 dd ?
iActiveScriptSiteWindow dd ?
Base1 dd ?
iConsoleDispatch dd ?
Base2 dd ?
ends
;---------------------------------------------------------------------------------------------------------------------------
struct SWF_OBJ
iShockwaveFlashEvents dd ?
Base0 dd ?
ends
;---------------------------------------------------------------------------------------------------------------------------
struct BIND_OBJ
iBindStatusCallback dd ?
Base0 dd ?
ends
;---------------------------------------------------------------------------------------------------------------------------
struct OLEINPLACEFRAMEINFO
cb dd ?
fMDIApp dd ?
hwndFrame dd ?
haccel dd ?
cAccelEntries dd ?
ends
;---------------------------------------------------------------------------------------------------------------------------
struct DISPPARAMS
rgvarg dd ?
rgdispidNamedArgs dd ?
cArgs dd ?
cNamedArgs dd ?
ends
struct CY
union
struct
Lo dd ?
Hi dd ?
ends
int64 dq ?
ends
ends
struct DECIMAL
wReserved dw ?
union
struct
scale db ?
sign db ?
ends
signscale dw ?
ends
Hi32 dd ?
union
struct
Lo32 dd ?
Mid32 dd ?
ends
Lo64 dq ?
ends
ends
struct VARIANT
union
struct
vt dw ?
wReserved1 dw ?
wReserved2 dw ?
wReserved3 dw ?
union
llVal dq ?
lVal dd ?
bVal db ?
iVal dw ?
fltVal dd ?
dblVal dq ?
boolVal dw ?
bool dw ?
scode dd ?
cyVal CY
date dq ?
bstrVal dd ?
punkVal dd ?
pdispVal dd ?
parray dd ?
pbVal dd ?
piVal dd ?
plVal dd ?
pllVal dd ?
pfltVal dd ?
pdblVal dd ?
pboolVal dd ?
pbool dd ?
pscode dd ?
pcyVal dd ?
pdate dd ?
pbstrVal dd ?
ppunkVal dd ?
ppdispVal dd ?
pparray dd ?
pvarVal dd ?
byref dd ?
cVal db ?
uiVal dw ?
ulVal dd ?
ullVal dq ?
intVal dd ?
uintVal dd ?
pdecVal dd ?
pcVal dd ?
puiVal dd ?
pulVal dd ?
pullVal dd ?
pintVal dd ?
puintVal dd ?
struct
pvRecord dd ?
pRecInfo dd ?
ends
ends
ends
decVal DECIMAL
ends
ends
;---------------------------------------------------------------------------------------------------------------------------
struct DOCHOSTUIINFO
cbSize dd ?
dwFlags dd ?
dwDoubleClick dd ?
ends
;---------------------------------------------------------------------------------------------------------------------------
struct EXCEPINFO
wCode dw ?
wReserved dw ?
bstrSource dd ?
bstrDescription dd ?
bstrHelpFile dd ?
dwHelpContext dd ?
pvReserved dd ?
pfnDeferredFillIn dd ?
scode dd ?
ends
;---------------------------------------------------------------------------------------------------------------------------
interface IUnknown,\
QueryInterface,\
AddRef,\
Release
interface IDispatch,\
QueryInterface,\
AddRef,\
Release,\
GetTypeInfoCount,\
GetTypeInfo,\
GetIDsOfNames,\
Invoke
interface IActiveScript,\
QueryInterface,\
AddRef,\
Release,\
SetScriptSite,\
GetScriptSite,\
SetScriptState,\
GetScriptState,\
Close,\
AddNamedItem,\
AddTypeLib,\
GetScriptDispatch,\
GetCurrentScriptThreadID,\
GetScriptThreadID,\
GetScriptThreadState,\
InterruptScriptThread,\
Clone
interface IActiveScriptParse,\
QueryInterface,\
AddRef,\
Release,\
InitNew,\
AddScriptlet,\
ParseScriptText
interface IActiveScriptError,\
QueryInterface,\
AddRef,\
Release,\
GetExceptionInfo,\
GetSourcePosition,\
GetSourceLineText
interface IScriptEncoder,\
QueryInterface,\
AddRef,\
Release,\
GetTypeInfoCount,\
GetTypeInfo,\
GetIDsOfNames,\
Invoke,\
EncodeScriptFile
interface IOleWindow,\
QueryInterface,\
AddRef,\
Release,\
GetWindow,\
ContextSensitiveHelp
interface IOleObject,\
QueryInterface,\
AddRef,\
Release,\
SetClientSite,\
GetClientSite,\
SetHostNames,\
Close,\
SetMoniker,\
GetMoniker,\
InitFromData,\
GetClipboardData,\
DoVerb,\
EnumVerbs,\
Update,\
IsUpToDate,\
GetUserClassID,\
GetUserType,\
SetExtent,\
GetExtent,\
Advise,\
Unadvise,\
EnumAdvise,\
GetMiscStatus,\
SetColorScheme
interface IOleInPlaceActiveObject,\
QueryInterface,\
AddRef,\
Release,\
GetWindow,\
ContextSensitiveHelp,\
TranslateAccelerator,\
OnFrameWindowActivate,\
OnDocWindowActivate,\
ResizeBorder,\
EnableModeless
interface IWebBrowser2,\
QueryInterface,\
AddRef,\
Release,\
GetTypeInfoCount,\
GetTypeInfo,\
GetIDsOfNames,\
Invoke,\
GoBack,\
GoForward,\
GoHome,\
GoSearch,\
Navigate,\
Refresh,\
Refresh2,\
Stop,\
get_Application,\
get_Parent,\
get_Container,\
get_Document,\
get_TopLevelContainer,\
get_Type,\
get_Left,\
put_Left,\
get_Top,\
put_Top,\
get_Width,\
put_Width,\
get_Height,\
put_Height,\
get_LocationName,\
get_LocationURL,\
get_Busy,\
Quit,\
ClientToWindow,\
PutProperty,\
GetProperty,\
get_Name,\
get_HWND,\
get_FullName,\
get_Path,\
get_Visible,\
put_Visible,\
get_StatusBar,\
put_StatusBar,\
get_StatusText,\
put_StatusText,\
get_ToolBar,\
put_ToolBar,\
get_MenuBar,\
put_MenuBar,\
get_FullScreen,\
put_FullScreen,\
Navigate2,\
QueryStatusWB,\
ExecWB,\
ShowBrowserBar,\
get_ReadyState,\
get_Offline,\
put_Offline,\
get_Silent,\
put_Silent,\
get_RegisterAsBrowser,\
put_RegisterAsBrowser,\
get_RegisterAsDropTarget,\
put_RegisterAsDropTarget,\
get_TheaterMode,\
put_TheaterMode,\
get_AddressBar,\
put_AddressBar,\
get_Resizable,\
put_Resizable
interface IConnectionPointContainer,\
QueryInterface,\
AddRef,\
Release,\
EnumConnectionPoints,\
FindConnectionPoint
interface IConnectionPoint,\
QueryInterface,\
AddRef,\
Release,\
GetConnectionInterface,\
GetConnectionPointContainer,\
Advise,\
Unadvise
interface IHTMLDocument2,\
QueryInterface,\
AddRef,\
Release,\
GetTypeInfoCount,\
GetTypeInfo,\
GetIDsOfNames,\
Invoke,\
get_Script,\
get_all,\
get_body,\
get_activeElement,\
get_images,\
get_applets,\
get_links,\
get_forms,\
get_anchors,\
put_title,\
get_title,\
get_scripts,\
put_designMode,\
get_designMode,\
get_selection,\
get_readyState,\
get_frames,\
get_embeds,\
get_plugins,\
put_alinkColor,\
get_alinkColor,\
put_bgColor,\
get_bgColor,\
put_fgColor,\
get_fgColor,\
put_linkColor,\
get_linkColor,\
put_vlinkColor,\
get_vlinkColor,\
get_referrer,\
get_location,\
get_lastModified,\
put_URL,\
get_URL,\
put_domain,\
get_domain,\
put_cookie,\
get_cookie,\
put_expands,\
get_expands,\
put_charset,\
get_charset,\
put_defaultCharset,\
get_defaultCharset,\
get_mimeType,\
get_fileSize,\
get_fileCreatedDate,\
get_fileModifiedDate,\
get_fileUpdatedDate,\
get_security,\
get_protocol,\
get_nameProp,\
write,\
writeln,\
open,\
close,\
clear,\
queryCommandSupported,\
queryCommandEnabled,\
queryCommandState,\
queryCommandIndeterm,\
queryCommandText,\
queryCommandValue,\
execCommand,\
execCommandShowHelp,\
createElement,\
put_onhelp,\
get_onhelp,\
put_onclick,\
get_onclick,\
put_ondblclick,\
get_ondblclick,\
put_onkeyup,\
get_onkeyup,\
put_onkeydown,\
get_onkeydown,\
put_onkeypress,\
get_onkeypress,\
put_onmouseup,\
get_onmouseup,\
put_onmousedown,\
get_onmousedown,\
put_onmousemove,\
get_onmousemove,\
put_onmouseout,\
get_onmouseout,\
put_onmouseover,\
get_onmouseover,\
put_onreadystatechange,\
get_onreadystatechange,\
put_onafterupdate,\
get_onafterupdate,\
put_onrowexit,\
get_onrowexit,\
put_onrowenter,\
get_onrowenter,\
put_ondragstart,\
get_ondragstart,\
put_onselectstart,\
get_onselectstart,\
elementFromPoint,\
get_parentWindow,\
get_styleSheets,\
put_onbeforeupdate,\
get_onbeforeupdate,\
put_onerrorupdate,\
get_onerrorupdate,\
toString,\
createStyleSheet
interface IHTMLElementCollection,\
QueryInterface,\
AddRef,\
Release,\
GetTypeInfoCount,\
GetTypeInfo,\
GetIDsOfNames,\
Invoke,\
toString,\
put_length,\
get_length,\
get__newEnum,\
item,\
tags
interface IHTMLLinkElement,\
QueryInterface,\
AddRef,\
Release,\
GetTypeInfoCount,\
GetTypeInfo,\
GetIDsOfNames,\
Invoke,\
put_href,\
get_href,\
put_rel,\
get_rel,\
put_rev,\
get_rev,\
put_type,\
get_type,\
get_readyState,\
put_onreadystatechange,\
get_onreadystatechange,\
put_onload,\
get_onload,\
put_onerror,\
get_onerror,\
get_styleSheet,\
put_disabled,\
get_disabled,\
put_media,\
get_media
interface IHTMLElement,\
QueryInterface,\
AddRef,\
Release,\
GetTypeInfoCount,\
GetTypeInfo,\
GetIDsOfNames,\
Invoke,\
setAttribute,\
getAttribute,\
removeAttribute,\
put_className,\
get_className,\
put_id,\
get_id,\
get_tagName,\
get_parentElement,\
get_style,\
put_onhelp,\
get_onhelp,\
put_onclick,\
get_onclick,\
put_ondblclick,\
get_ondblclick,\
put_onkeydown,\
get_onkeydown,\
put_onkeyup,\
get_onkeyup,\
put_onkeypress,\
get_onkeypress,\
put_onmouseout,\
get_onmouseout,\
put_onmouseover,\
get_onmouseover,\
put_onmousemove,\
get_onmousemove,\
put_onmousedown,\
get_onmousedown,\
put_onmouseup,\
get_onmouseup,\
get_document,\
put_title,\
get_title,\
put_language,\
get_language,\
put_onselectstart,\
get_onselectstart,\
scrollIntoView,\
contains,\