forked from dhanumurti/casperspy
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathattacker.frm
More file actions
1759 lines (1589 loc) · 94 KB
/
Copy pathattacker.frm
File metadata and controls
1759 lines (1589 loc) · 94 KB
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
VERSION 5.00
Object = "{A8E5842E-102B-4289-9D57-3B3F5B5E15D3}#15.2#0"; "CODEJO~4.OCX"
Object = "{555E8FCC-830E-45CC-AF00-A012D5AE7451}#15.2#0"; "CODEJO~2.OCX"
Object = "{BD0C1912-66C3-49CC-8B12-7B347BF6C846}#15.2#0"; "CO85CC~1.OCX"
Begin VB.Form frmMain
Appearance = 0 'Flat
BackColor = &H80000007&
Caption = " CasperLauncher | Full Version [Shadow Striker]"
ClientHeight = 8490
ClientLeft = 60
ClientTop = 450
ClientWidth = 10785
Icon = "attacker.frx":0000
LinkTopic = "Form1"
ScaleHeight = 8490
ScaleWidth = 10785
StartUpPosition = 2 'CenterScreen
Begin VB.Frame Frame1
Caption = "CasperLauncher | Most Complete Attacker"
BeginProperty Font
Name = "HelveticaNeueLT Std Blk Ext"
Size = 15.75
Charset = 0
Weight = 900
Underline = 0 'False
Italic = -1 'True
Strikethrough = 0 'False
EndProperty
ForeColor = &H00404040&
Height = 7455
Left = 0
TabIndex = 0
Top = 480
Width = 10935
Begin VB.ListBox List1
BackColor = &H8000000F&
BeginProperty Font
Name = "Calibri"
Size = 12
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 5190
ItemData = "attacker.frx":1CCA
Left = 240
List = "attacker.frx":1D7F
Sorted = -1 'True
TabIndex = 10
Top = 1680
Width = 3135
End
Begin VB.TextBox Text1
Alignment = 2 'Center
Appearance = 0 'Flat
BackColor = &H8000000F&
BorderStyle = 0 'None
BeginProperty Font
Name = "Calibri"
Size = 12
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 3495
Left = 3480
MultiLine = -1 'True
TabIndex = 9
Text = "attacker.frx":1FC8
Top = 1680
Width = 3855
End
Begin XtremeSuiteControls.PushButton PushButton1
Height = 1095
Left = 7440
TabIndex = 3
ToolTipText = "Launch Attacker"
Top = 1680
Width = 1575
_Version = 983042
_ExtentX = 2778
_ExtentY = 1931
_StockProps = 79
Caption = "Launch"
ForeColor = 4210752
BackColor = -2147483633
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Verdana"
Size = 8.25
Charset = 0
Weight = 700
Underline = 0 'False
Italic = -1 'True
Strikethrough = 0 'False
EndProperty
FlatStyle = -1 'True
Appearance = 2
DrawFocusRect = 0 'False
TextImageRelation= 1
IconWidth = 48
Icon = "attacker.frx":204E
End
Begin XtremeSuiteControls.PushButton PushButton4
Height = 1095
Left = 9120
TabIndex = 4
Top = 5925
Width = 1575
_Version = 983042
_ExtentX = 2778
_ExtentY = 1931
_StockProps = 79
Caption = "About"
ForeColor = 4210752
BackColor = -2147483633
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Verdana"
Size = 8.25
Charset = 0
Weight = 700
Underline = 0 'False
Italic = -1 'True
Strikethrough = 0 'False
EndProperty
FlatStyle = -1 'True
Appearance = 2
DrawFocusRect = 0 'False
TextImageRelation= 1
IconWidth = 48
Icon = "attacker.frx":44B8
End
Begin XtremeSuiteControls.PushButton PushButton3
Height = 1095
Left = 9000
TabIndex = 5
ToolTipText = "Find tutorial how to use the Attacker which you select"
Top = 1680
Width = 1575
_Version = 983042
_ExtentX = 2778
_ExtentY = 1931
_StockProps = 79
Caption = "Guide"
ForeColor = 4210752
BackColor = -2147483633
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Verdana"
Size = 8.25
Charset = 0
Weight = 700
Underline = 0 'False
Italic = -1 'True
Strikethrough = 0 'False
EndProperty
FlatStyle = -1 'True
Appearance = 2
DrawFocusRect = 0 'False
TextImageRelation= 1
IconWidth = 48
Icon = "attacker.frx":6922
End
Begin XtremeSuiteControls.PushButton PushButton2
Height = 1095
Left = 7440
TabIndex = 6
ToolTipText = "Find specific attacker"
Top = 5925
Width = 1575
_Version = 983042
_ExtentX = 2778
_ExtentY = 1931
_StockProps = 79
Caption = "Find"
ForeColor = 4210752
BackColor = -2147483633
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Verdana"
Size = 8.25
Charset = 0
Weight = 700
Underline = 0 'False
Italic = -1 'True
Strikethrough = 0 'False
EndProperty
FlatStyle = -1 'True
Appearance = 2
DrawFocusRect = 0 'False
TextImageRelation= 1
IconWidth = 48
Icon = "attacker.frx":8D8C
End
Begin XtremeSuiteControls.PushButton PushButton9
Height = 315
Left = 3000
TabIndex = 7
Top = 1320
Visible = 0 'False
Width = 375
_Version = 983042
_ExtentX = 661
_ExtentY = 556
_StockProps = 79
BackColor = -2147483633
Enabled = 0 'False
Transparent = -1 'True
FlatStyle = -1 'True
Appearance = 2
BorderGap = 0
IconWidth = 16
Icon = "attacker.frx":B1F6
End
Begin VB.TextBox m
Appearance = 0 'Flat
BackColor = &H8000000F&
BorderStyle = 0 'None
BeginProperty Font
Name = "Courier New"
Size = 8.25
Charset = 0
Weight = 700
Underline = 0 'False
Italic = -1 'True
Strikethrough = 0 'False
EndProperty
ForeColor = &H00404040&
Height = 315
Left = 2520
TabIndex = 1
Top = 1320
Visible = 0 'False
Width = 495
End
Begin VB.TextBox Text10
Appearance = 0 'Flat
BackColor = &H8000000F&
BorderStyle = 0 'None
BeginProperty Font
Name = "Calibri"
Size = 12
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 315
Left = 240
TabIndex = 2
Text = "Find attacker here.."
Top = 1320
Visible = 0 'False
Width = 2295
End
Begin XtremeSuiteControls.TabControl TabControl1
Height = 8295
Left = 120
TabIndex = 8
Top = 480
Width = 10935
_Version = 983042
_ExtentX = 19288
_ExtentY = 14631
_StockProps = 68
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Calibri"
Size = 12
Charset = 0
Weight = 700
Underline = 0 'False
Italic = -1 'True
Strikethrough = 0 'False
EndProperty
Appearance = 4
Color = 8
PaintManager.BoldSelected= -1 'True
PaintManager.ShowIcons= -1 'True
PaintManager.LargeIcons= -1 'True
ItemCount = 9
SelectedItem = 4
Item(0).Caption = "Attacker"
Item(0).ControlCount= 0
Item(1).Caption = "Botnet"
Item(1).ControlCount= 0
Item(2).Caption = "Cracking"
Item(2).ControlCount= 0
Item(3).Caption = "Exploit"
Item(3).ControlCount= 0
Item(4).Caption = "Keylogger"
Item(4).ControlCount= 0
Item(5).Caption = "Network"
Item(5).ControlCount= 0
Item(6).Caption = "Social Engginering"
Item(6).ControlCount= 0
Item(7).Caption = "Trojan"
Item(7).ControlCount= 0
Item(8).Caption = "Web Hacking"
Item(8).ControlCount= 0
End
End
Begin XtremeSkinFramework.SkinFramework SkinFramework1
Left = 4560
Top = 3840
_Version = 983042
_ExtentX = 635
_ExtentY = 635
_StockProps = 0
End
Begin XtremeCommandBars.ImageManager ImageManager
Left = 1320
Top = 120
_Version = 983042
_ExtentX = 635
_ExtentY = 635
_StockProps = 0
Icons = "attacker.frx":B660
End
Begin XtremeCommandBars.CommandBars CommandBars
Left = 240
Top = 120
_Version = 983042
_ExtentX = 635
_ExtentY = 635
_StockProps = 0
VisualTheme = 7
DesignerControls= -1 'True
DesignerControlsData= "attacker.frx":39D6A
End
End
Attribute VB_Name = "frmMain"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
' CasperLauncher is a Hacking Framework Interface built for Windows.
' It is written in Visual Basic 6
' Copyright (C) www.casperspy.com by sillhouette
' CasperLauncher is distributed in the hope that it will be useful,
Option Explicit
Dim intResponse As Integer
Private Declare Function ShellExecute Lib "shell32.dll" Alias "ShellExecuteA" (ByVal hwnd As Long, ByVal lpOperation As String, ByVal lpFile As String, ByVal lpParameters As String, ByVal lpDirectory As String, ByVal nShowCmd As Long) As Long
Private Declare Function InitCommonControls Lib "Comctl32.dll" () As Long
Public UseDisabledIcons As Boolean
' Reg Key Security Options...
Const KEY_ALL_ACCESS = &H2003F
' Reg Key ROOT Types...
Const HKEY_LOCAL_MACHINE = &H80000002
Const ERROR_SUCCESS = 0
Const REG_SZ = 1 ' Unicode nul terminated string
Const REG_DWORD = 4 ' 32-bit number
Const gREGKEYSYSINFOLOC = "SOFTWARE\Microsoft\Shared Tools Location"
Const gREGVALSYSINFOLOC = "MSINFO"
Const gREGKEYSYSINFO = "SOFTWARE\Microsoft\Shared Tools\MSINFO"
Const gREGVALSYSINFO = "PATH"
Private Declare Function RegOpenKeyEx Lib "advapi32" Alias "RegOpenKeyExA" (ByVal hKey As Long, ByVal lpSubKey As String, ByVal ulOptions As Long, ByVal samDesired As Long, ByRef phkResult As Long) As Long
Private Declare Function RegQueryValueEx Lib "advapi32" Alias "RegQueryValueExA" (ByVal hKey As Long, ByVal lpValueName As String, ByVal lpReserved As Long, ByRef lpType As Long, ByVal lpData As String, ByRef lpcbData As Long) As Long
Private Declare Function RegCloseKey Lib "advapi32" (ByVal hKey As Long) As Long
Dim file1
Dim about
Public execution1 As String
Public execution2 As String
Public execution3 As String
Public execution4 As String
Dim reportlocation As String
Dim WshShell, oExec
Dim counter As Integer
Dim search, se As String
Public Function MapPath( _
path As String _
) As String
End Function
Public Sub StartSysInfo()
On Error GoTo SysInfoErr
Dim rc As Long
Dim SysInfoPath As String
' Try To Get System Info Program Path\Name From Registry...
If GetKeyValue(HKEY_LOCAL_MACHINE, gREGKEYSYSINFO, gREGVALSYSINFO, SysInfoPath) Then
' Try To Get System Info Program Path Only From Registry...
ElseIf GetKeyValue(HKEY_LOCAL_MACHINE, gREGKEYSYSINFOLOC, gREGVALSYSINFOLOC, SysInfoPath) Then
' Validate Existance Of Known 32 Bit File Version
If (Dir(SysInfoPath & "\MSINFO32.EXE") <> "") Then
SysInfoPath = SysInfoPath & "\MSINFO32.EXE"
' Error - File Can Not Be Found...
Else
GoTo SysInfoErr
End If
' Error - Registry Entry Can Not Be Found...
Else
GoTo SysInfoErr
End If
Call Shell(SysInfoPath, vbNormalFocus)
Exit Sub
SysInfoErr:
MsgBox "System Information Is Unavailable At This Time", vbOKOnly
End Sub
Public Function GetKeyValue(KeyRoot As Long, KeyName As String, SubKeyRef As String, ByRef KeyVal As String) As Boolean
Dim i As Long ' Loop Counter
Dim rc As Long ' Return Code
Dim hKey As Long ' Handle To An Open Registry Key
Dim hDepth As Long '
Dim KeyValType As Long ' Data Type Of A Registry Key
Dim tmpVal As String ' Tempory Storage For A Registry Key Value
Dim KeyValSize As Long ' Size Of Registry Key Variable
'------------------------------------------------------------
' Open RegKey Under KeyRoot {HKEY_LOCAL_MACHINE...}
'------------------------------------------------------------
rc = RegOpenKeyEx(KeyRoot, KeyName, 0, KEY_ALL_ACCESS, hKey) ' Open Registry Key
If (rc <> ERROR_SUCCESS) Then GoTo GetKeyError ' Handle Error...
tmpVal = String$(1024, 0) ' Allocate Variable Space
KeyValSize = 1024 ' Mark Variable Size
'------------------------------------------------------------
' Retrieve Registry Key Value...
'------------------------------------------------------------
rc = RegQueryValueEx(hKey, SubKeyRef, 0, KeyValType, tmpVal, KeyValSize) ' Get/Create Key Value
If (rc <> ERROR_SUCCESS) Then GoTo GetKeyError ' Handle Errors
tmpVal = VBA.Left(tmpVal, InStr(tmpVal, VBA.Chr(0)) - 1)
'------------------------------------------------------------
' Determine Key Value Type For Conversion...
'------------------------------------------------------------
Select Case KeyValType ' Search Data Types...
Case REG_SZ ' String Registry Key Data Type
KeyVal = tmpVal ' Copy String Value
Case REG_DWORD ' Double Word Registry Key Data Type
For i = Len(tmpVal) To 1 Step -1 ' Convert Each Bit
KeyVal = KeyVal + Hex(Asc(Mid(tmpVal, i, 1))) ' Build Value Char. By Char.
Next
KeyVal = Format$("&h" + KeyVal) ' Convert Double Word To String
End Select
GetKeyValue = True ' Return Success
rc = RegCloseKey(hKey) ' Close Registry Key
Exit Function ' Exit
GetKeyError: ' Cleanup After An Error Has Occured...
KeyVal = "" ' Set Return Val To Empty String
GetKeyValue = False ' Return Failure
rc = RegCloseKey(hKey) ' Close Registry Key
End Function
Private Function AddButton(Controls As CommandBarControls, ControlType As XTPControlType, Id As Long, Optional BeginGroup As Boolean = False) As CommandBarControl
Dim Control As CommandBarControl
Set Control = Controls.Add(ControlType, Id, "")
Control.BeginGroup = BeginGroup
Set AddButton = Control
End Function
Private Sub DockRightOf(BarToDock As CommandBar, BarOnLeft As CommandBar)
Dim Left As Long
Dim Top As Long
Dim Right As Long
Dim Bottom As Long
CommandBars.RecalcLayout
BarOnLeft.GetWindowRect Left, Top, Right, Bottom
CommandBars.DockToolBar BarToDock, Right, (Bottom + Top) / 2, BarOnLeft.Position
End Sub
Public Function GetDll() As String
If CommandBarsGlobalSettings.ResourceImages.DllFileName = "" Then
'if nothing has been set, then use Office 2007
GetDll = App.path & "\..\..\..\Styles\OfficeXp.Dll"
Else
GetDll = CommandBarsGlobalSettings.ResourceImages.DllFileName
End If
End Function
Public Function GetINI() As String
If CommandBarsGlobalSettings.ResourceImages.IniFileName = "" Then
'if nothing has been set, then use Office 2007
GetINI = App.path & ""
Else
GetINI = CommandBarsGlobalSettings.ResourceImages.IniFileName
End If
End Function
Private Sub CommandBars_Execute(ByVal Control As XtremeCommandBars.ICommandBarControl)
On Error Resume Next
Select Case Control.Id
'Attacker menubar
Case ID_ATTACKER_ATTACK1:
If Dir("C:\Program Files\CasperLauncher\programs\builder\CSBuilder.exe") <> "" Then
Shell App.path & "\programs\builder\CSBuilder.exe", vbNormalFocus
Else
ShellExecute 0, vbNullString, "http://casperspy.com/download/casperspy-builder/", vbNullString, vbNullString, vbNormalFocus
End If
Case ID_ATTACKER_ATTACK2: frmmain2.Show
frmmain2.wb1.Navigate "http://casperspy.com/dashboard/"
Case ID_ATTACKER_ATTACK3: Dim intResponse As Integer
ShellExecute 0, vbNullString, "http://blog.casperspy.com/how-to-use/", vbNullString, vbNullString, vbNormalFocus
Case ID_ATTACKER_AGOBOT: TabControl1.SelectedItem = 0
List1.ListIndex = 0
Case ID_ATTACKER_CASPER: TabControl1.SelectedItem = 0
List1.ListIndex = 8
Case ID_ATTACKER_CITADEL: TabControl1.SelectedItem = 0
List1.ListIndex = 9
Case ID_ATTACKER_CYTHOSIA: TabControl1.SelectedItem = 0
List1.ListIndex = 12
Case ID_ATTACKER_VERTEXNET: TabControl1.SelectedItem = 0
List1.ListIndex = 52
Case ID_ATTACKER_ZEUS: TabControl1.SelectedItem = 0
List1.ListIndex = 58
Case ID_ATTACKER_EXPLOIT1: TabControl1.SelectedItem = 0
List1.ListIndex = 10
Case ID_ATTACKER_EXPLOIT2: TabControl1.SelectedItem = 0
List1.ListIndex = 23
Case ID_ATTACKER_EXPLOIT3: TabControl1.SelectedItem = 0
List1.ListIndex = 32
Case ID_ATTACKER_EXPLOIT4: TabControl1.SelectedItem = 0
List1.ListIndex = 34
Case ID_ATTACKER_FORMGRABBER1: TabControl1.SelectedItem = 0
List1.ListIndex = 33
Case ID_ATTACKER_FORMGRABBER2: TabControl1.SelectedItem = 0
List1.ListIndex = 50
Case ID_ATTACKER_FORMGRABBER3: TabControl1.SelectedItem = 0
List1.ListIndex = 54
Case ID_ATTACKER_KEYLOGGER1: TabControl1.SelectedItem = 0
List1.ListIndex = 2
Case ID_ATTACKER_KEYLOGGER2: TabControl1.SelectedItem = 0
List1.ListIndex = 30
Case ID_ATTACKER_KEYLOGGER3: TabControl1.SelectedItem = 0
List1.ListIndex = 38
Case ID_ATTACKER_KEYLOGGER4: TabControl1.SelectedItem = 0
List1.ListIndex = 52
Case ID_ATTACKER_NETWORK1: TabControl1.SelectedItem = 0
List1.ListIndex = 1
Case ID_ATTACKER_NETWORK2: TabControl1.SelectedItem = 0
List1.ListIndex = 15
Case ID_ATTACKER_NETWORK3: TabControl1.SelectedItem = 0
List1.ListIndex = 16
Case ID_ATTACKER_NETWORK4: TabControl1.SelectedItem = 0
List1.ListIndex = 19
Case ID_ATTACKER_NETWORK5: TabControl1.SelectedItem = 0
List1.ListIndex = 22
Case ID_ATTACKER_NETWORK6: TabControl1.SelectedItem = 0
List1.ListIndex = 25
Case ID_ATTACKER_NETWORK7: TabControl1.SelectedItem = 0
List1.ListIndex = 27
Case ID_ATTACKER_NETWORK8: TabControl1.SelectedItem = 0
List1.ListIndex = 31
Case ID_ATTACKER_NETWORK9: TabControl1.SelectedItem = 0
List1.ListIndex = 35
Case ID_ATTACKER_NETWORK10: TabControl1.SelectedItem = 0
List1.ListIndex = 37
Case ID_ATTACKER_NETWORK11: TabControl1.SelectedItem = 0
List1.ListIndex = 39
Case ID_ATTACKER_NETWORK12: TabControl1.SelectedItem = 0
List1.ListIndex = 41
Case ID_ATTACKER_NETWORK13: TabControl1.SelectedItem = 0
List1.ListIndex = 53
Case ID_ATTACKER_NETWORK14: TabControl1.SelectedItem = 0
List1.ListIndex = 55
Case ID_ATTACKER_TROJAN1: TabControl1.SelectedItem = 0
List1.ListIndex = 4
Case ID_ATTACKER_TROJAN2: TabControl1.SelectedItem = 0
List1.ListIndex = 5
Case ID_ATTACKER_TROJAN3: TabControl1.SelectedItem = 0
List1.ListIndex = 13
Case ID_ATTACKER_TROJAN4: TabControl1.SelectedItem = 0
List1.ListIndex = 36
Case ID_ATTACKER_TROJAN5: TabControl1.SelectedItem = 0
List1.ListIndex = 44
Case ID_ATTACKER_TROJAN6: TabControl1.SelectedItem = 0
List1.ListIndex = 49
Case ID_ATTACKER_TROJAN7: TabControl1.SelectedItem = 0
List1.ListIndex = 48
Case ID_ATTACKER_WEBHACKING1: TabControl1.SelectedItem = 0
List1.ListIndex = 6
Case ID_ATTACKER_WEBHACKING2: TabControl1.SelectedItem = 0
List1.ListIndex = 14
Case ID_ATTACKER_WEBHACKING3: TabControl1.SelectedItem = 0
List1.ListIndex = 20
Case ID_ATTACKER_WEBHACKING4: TabControl1.SelectedItem = 0
List1.ListIndex = 26
Case ID_ATTACKER_WEBHACKING5: TabControl1.SelectedItem = 0
List1.ListIndex = 29
Case ID_ATTACKER_WEBHACKING6: TabControl1.SelectedItem = 0
List1.ListIndex = 45
Case ID_ATTACKER_WEBHACKING7: TabControl1.SelectedItem = 0
List1.ListIndex = 56
Case ID_ATTACKER_SOCIAL1: TabControl1.SelectedItem = 0
List1.ListIndex = 3
Case ID_ATTACKER_SOCIAL2: TabControl1.SelectedItem = 0
List1.ListIndex = 21
Case ID_ATTACKER_SOCIAL3: TabControl1.SelectedItem = 0
List1.ListIndex = 28
Case ID_ATTACKER_SOCIAL4: TabControl1.SelectedItem = 0
List1.ListIndex = 47
Case ID_ATTACKER_SOCIAL5: TabControl1.SelectedItem = 0
List1.ListIndex = 40
Case ID_ATTACKER_EXIT: End
Case ID_ATTACKER_MORE1: TabControl1.SelectedItem = 1
Case ID_ATTACKER_MORE2: TabControl1.SelectedItem = 3
Case ID_ATTACKER_MORE3: TabControl1.SelectedItem = 0
List1.ListIndex = 33
Case ID_ATTACKER_MORE4: TabControl1.SelectedItem = 4
Case ID_ATTACKER_MORE5: TabControl1.SelectedItem = 5
Case ID_ATTACKER_MORE6: TabControl1.SelectedItem = 7
Case ID_ATTACKER_MORE7: TabControl1.SelectedItem = 8
Case ID_ATTACKER_MORE8: TabControl1.SelectedItem = 6
'Guide Menubar
Case ID_GUIDE_SYSTEM: Me.Hide
guide.Show
guide.TabControl1.SelectedItem = 0
Case ID_GUIDE_NETWORK: Me.Hide
guide.Show
guide.TabControl1.SelectedItem = 1
Case ID_GUIDE_WEB: Me.Hide
guide.Show
guide.TabControl1.SelectedItem = 2
Case ID_GUIDE_TUTORIAL: Me.Hide
guide.Show
guide.TabControl1.SelectedItem = 3
Case ID_FILE_VIDEO: Me.Hide
guide.Show
guide.TabControl1.SelectedItem = 4
'Help Menubar
Case ID_HELP_ABOUT: Intro.Show
Case ID_FILE_UPDATE: Shell App.path & "\programs\autoupdate.exe", vbNormalFocus
'ToolBar
Case ID_FILE_NEWS: frmmain2.Show
frmmain2.wb1.Navigate "http://feeds.feedburner.com/casperspybotnet"
Case ID_ACTIONS_CHAT: frmmain2.Show
frmmain2.wb1.Navigate "http://form.jotform.me/form/31453837808461"
Case ID_ACTIONS_CONTACT: frmmain2.Show
frmmain2.wb1.Navigate "http://casperspy.com/botmaster/"
Case ID_FILE_FORUM: frmmain2.Show
frmmain2.wb1.Navigate "http://casperspy.com/forum/"
Case ID_FILE_TUTORIAL: Me.Hide
guide.Show
guide.TabControl1.SelectedItem = 3
Case ID_FILE_GUIDE: Unload Me
Load guide
guide.Show
Case ID_FILE_EBOOK: Me.Hide
guide.Show
guide.TabControl1.SelectedItem = 5
Case ID_FILE_CASPERSPY: Me.Hide
frmMain.Show
frmMain.TabControl1.SelectedItem = 0
Case Else: MsgBox Control.Caption & " clicked", vbOKOnly, "Button Clicked"
End Select
End Sub
Private Sub CommandBars_Resize()
On Error Resume Next
Dim Left As Long
Dim Top As Long
Dim Right As Long
Dim Bottom As Long
CommandBars.GetClientRect Left, Top, Right, Bottom
Frame1.Move Left, Top, Right - Left, Bottom - Top
End Sub
Private Sub CommandBars_Update(ByVal Control As XtremeCommandBars.ICommandBarControl)
Select Case Control.Id
Case ID_EDIT_CUT: Control.Enabled = True
Case ID_EDIT_PASTE: Control.Enabled = True
Case ID_EDIT_COPY: Control.Enabled = True
Case ID_EDIT_UNDO: Control.Enabled = True
Case ID_PROJECT_STOP: Control.Enabled = True
Case ID_FILE_SAVE_ALL: Control.Enabled = True
Case ID_ACTIONS_CHAT: Control.Enabled = True
Case ID_ACTIONS_CONTACT: Control.Enabled = True
Case ID_ACTIONS_VIEW: Control.Enabled = True
End Select
End Sub
Private Sub Form_Initialize()
InitCommonControls
End Sub
Private Sub Form_Load()
SkinFramework1.LoadSkin App.path & "\casper\EX2008.cjstyles", ""
SkinFramework1.ApplyWindow Me.hwnd
TabControl1.SelectedItem = 0
CommandBarsGlobalSettings.App = App
Dim Control As CommandBarControl
Dim ControlFile As CommandBarPopup, ControlEdit As CommandBarPopup, ControlView As CommandBarPopup
Dim ControlProject As CommandBarPopup, ControlHelp As CommandBarPopup
Set ControlFile = CommandBars.ActiveMenuBar.Controls.Add(xtpControlPopup, 0, "&Attacker")
With ControlFile.CommandBar
Set Control = AddControl(.Controls, xtpControlPopup, ID_ATTACKER_ATTACK, "&CasperSpy")
AddControl Control.CommandBar.Controls, xtpControlButton, ID_ATTACKER_ATTACK1, "&Builder"
AddControl Control.CommandBar.Controls, xtpControlButton, ID_ATTACKER_ATTACK2, "&Cpanel"
AddControl Control.CommandBar.Controls, xtpControlButton, ID_ATTACKER_ATTACK3, "&How to use"
Set Control = AddControl(.Controls, xtpControlPopup, ID_ATTACKER_BOTNET, "&Botnet")
AddControl Control.CommandBar.Controls, xtpControlButton, ID_ATTACKER_AGOBOT, "&Agobot IRC"
AddControl Control.CommandBar.Controls, xtpControlButton, ID_ATTACKER_CITADEL, "&Citadel"
AddControl Control.CommandBar.Controls, xtpControlButton, ID_ATTACKER_CYTHOSIA, "&Cythosia"
AddControl Control.CommandBar.Controls, xtpControlButton, ID_ATTACKER_SPYEYE, "&Spy Eye"
AddControl Control.CommandBar.Controls, xtpControlButton, ID_ATTACKER_SPITMO, "&Spitmo"
AddControl Control.CommandBar.Controls, xtpControlButton, ID_ATTACKER_VERTEXNET, "&VertexNet DDOS"
AddControl Control.CommandBar.Controls, xtpControlButton, ID_ATTACKER_ZEUS, "&Zeus"
AddControl Control.CommandBar.Controls, xtpControlButton, ID_ATTACKER_MORE1, "&More..."
Set Control = AddControl(.Controls, xtpControlPopup, ID_ATTACKER_EXPLOIT, "&Exploit")
AddControl Control.CommandBar.Controls, xtpControlButton, ID_ATTACKER_EXPLOIT1, "&Crypter"
AddControl Control.CommandBar.Controls, xtpControlButton, ID_ATTACKER_EXPLOIT2, "&Evil PDF"
AddControl Control.CommandBar.Controls, xtpControlButton, ID_ATTACKER_EXPLOIT3, "&Metasploit"
AddControl Control.CommandBar.Controls, xtpControlButton, ID_ATTACKER_EXPLOIT4, "&Msfpayload exec"
AddControl Control.CommandBar.Controls, xtpControlButton, ID_ATTACKER_MORE2, "&More..."
Set Control = AddControl(.Controls, xtpControlPopup, ID_ATTACKER_FORMGRABBER, "&Form Grabber")
AddControl Control.CommandBar.Controls, xtpControlButton, ID_ATTACKER_FORMGRABBER1, "&MP-formgrabber"
AddControl Control.CommandBar.Controls, xtpControlButton, ID_ATTACKER_FORMGRABBER2, "&TW-Grabber"
AddControl Control.CommandBar.Controls, xtpControlButton, ID_ATTACKER_FORMGRABBER3, "&WebCrab"
AddControl Control.CommandBar.Controls, xtpControlButton, ID_ATTACKER_MORE3, "&More..."
Set Control = AddControl(.Controls, xtpControlPopup, ID_ATTACKER_KEYLOGGER, "&Keylogger")
AddControl Control.CommandBar.Controls, xtpControlButton, ID_ATTACKER_KEYLOGGER1, "&Albertino"
AddControl Control.CommandBar.Controls, xtpControlButton, ID_ATTACKER_KEYLOGGER2, "&Keymail"
AddControl Control.CommandBar.Controls, xtpControlButton, ID_ATTACKER_KEYLOGGER3, "&Rapzo"
AddControl Control.CommandBar.Controls, xtpControlButton, ID_ATTACKER_KEYLOGGER4, "&Vulcan"
AddControl Control.CommandBar.Controls, xtpControlButton, ID_ATTACKER_MORE4, "&More..."
Set Control = AddControl(.Controls, xtpControlPopup, ID_ATTACKER_NETWORK, "&Network")
AddControl Control.CommandBar.Controls, xtpControlButton, ID_ATTACKER_NETWORK1, "&AirCrack-NG"
AddControl Control.CommandBar.Controls, xtpControlButton, ID_ATTACKER_NETWORK2, "&Dmitry"
AddControl Control.CommandBar.Controls, xtpControlButton, ID_ATTACKER_NETWORK3, "&Dnsdict"
AddControl Control.CommandBar.Controls, xtpControlButton, ID_ATTACKER_NETWORK4, "&Driftnet"
AddControl Control.CommandBar.Controls, xtpControlButton, ID_ATTACKER_NETWORK5, "&Ettercap"
AddControl Control.CommandBar.Controls, xtpControlButton, ID_ATTACKER_NETWORK6, "&Gerix"
AddControl Control.CommandBar.Controls, xtpControlButton, ID_ATTACKER_NETWORK7, "&Janidos"
AddControl Control.CommandBar.Controls, xtpControlButton, ID_ATTACKER_NETWORK8, "&LBD"
AddControl Control.CommandBar.Controls, xtpControlButton, ID_ATTACKER_NETWORK9, "&Nmap"
AddControl Control.CommandBar.Controls, xtpControlButton, ID_ATTACKER_NETWORK10, "&Pyrit"
AddControl Control.CommandBar.Controls, xtpControlButton, ID_ATTACKER_NETWORK11, "&Reaver"
AddControl Control.CommandBar.Controls, xtpControlButton, ID_ATTACKER_NETWORK12, "&Slowloris"
AddControl Control.CommandBar.Controls, xtpControlButton, ID_ATTACKER_NETWORK13, "&Wash"
AddControl Control.CommandBar.Controls, xtpControlButton, ID_ATTACKER_NETWORK14, "&Wifite"
AddControl Control.CommandBar.Controls, xtpControlButton, ID_ATTACKER_MORE5, "&More..."
Set Control = AddControl(.Controls, xtpControlPopup, ID_ATTACKER_TROJAN, "&Trojan")
AddControl Control.CommandBar.Controls, xtpControlButton, ID_ATTACKER_TROJAN1, "&Bifrost"
AddControl Control.CommandBar.Controls, xtpControlButton, ID_ATTACKER_TROJAN2, "&Bionet"
AddControl Control.CommandBar.Controls, xtpControlButton, ID_ATTACKER_TROJAN3, "&Darkmoon"
AddControl Control.CommandBar.Controls, xtpControlButton, ID_ATTACKER_TROJAN4, "&Prorat"
AddControl Control.CommandBar.Controls, xtpControlButton, ID_ATTACKER_TROJAN5, "&Spynet"
AddControl Control.CommandBar.Controls, xtpControlButton, ID_ATTACKER_TROJAN6, "&Turkojan"
AddControl Control.CommandBar.Controls, xtpControlButton, ID_ATTACKER_TROJAN7, "&Trojan Creator"
AddControl Control.CommandBar.Controls, xtpControlButton, ID_ATTACKER_MORE6, "&More..."
Set Control = AddControl(.Controls, xtpControlPopup, ID_ATTACKER_WEBHACKING, "&Web Hacking")
AddControl Control.CommandBar.Controls, xtpControlButton, ID_ATTACKER_WEBHACKING1, "&Burpsuite"
AddControl Control.CommandBar.Controls, xtpControlButton, ID_ATTACKER_WEBHACKING2, "&Dirbuster"
AddControl Control.CommandBar.Controls, xtpControlButton, ID_ATTACKER_WEBHACKING3, "&DVWA"
AddControl Control.CommandBar.Controls, xtpControlButton, ID_ATTACKER_WEBHACKING4, "&Havij pro"
AddControl Control.CommandBar.Controls, xtpControlButton, ID_ATTACKER_WEBHACKING5, "&Joomscan"
AddControl Control.CommandBar.Controls, xtpControlButton, ID_ATTACKER_WEBHACKING6, "&Sqlmap"
AddControl Control.CommandBar.Controls, xtpControlButton, ID_ATTACKER_WEBHACKING7, "&Wp-scan"
AddControl Control.CommandBar.Controls, xtpControlButton, ID_ATTACKER_MORE7, "&More..."
Set Control = AddControl(.Controls, xtpControlPopup, ID_ATTACKER_SOCIAL, "&Social Engginering")
AddControl Control.CommandBar.Controls, xtpControlButton, ID_ATTACKER_SOCIAL1, "&Autoinfector"
AddControl Control.CommandBar.Controls, xtpControlButton, ID_ATTACKER_SOCIAL2, "&Edjpgcom"
AddControl Control.CommandBar.Controls, xtpControlButton, ID_ATTACKER_SOCIAL3, "&Jigsaw"
AddControl Control.CommandBar.Controls, xtpControlButton, ID_ATTACKER_SOCIAL4, "&The Harvester"
AddControl Control.CommandBar.Controls, xtpControlButton, ID_ATTACKER_SOCIAL5, "&SET"
AddControl Control.CommandBar.Controls, xtpControlButton, ID_ATTACKER_MORE8, "&More..."
AddControl .Controls, xtpControlButton, ID_ATTACKER_EXIT, "&Exit"
Set frmMain.CommandBars.Icons = frmMain.ImageManager.Icons
frmMain.CommandBars.Options.SetIconSize True, 42, 35
frmMain.CommandBars.RecalcLayout
End With
Set ControlView = CommandBars.ActiveMenuBar.Controls.Add(xtpControlPopup, 0, "&Guide")
With ControlView.CommandBar
AddControl .Controls, xtpControlButton, ID_GUIDE_SYSTEM, "&System Attack"
AddControl .Controls, xtpControlButton, ID_GUIDE_NETWORK, "&Network Attack"
AddControl .Controls, xtpControlButton, ID_GUIDE_WEB, "&Web Attack"
AddControl .Controls, xtpControlButton, ID_GUIDE_TUTORIAL, "&Tutorial"
AddControl .Controls, xtpControlButton, ID_GUIDE_VIDEO, "&Video Tutorial"
AddControl .Controls, xtpControlButton, ID_GUIDE_EBOOK, "&Ebook"
Set frmMain.CommandBars.Icons = frmMain.ImageManager.Icons
frmMain.CommandBars.Options.SetIconSize True, 32, 32
frmMain.CommandBars.RecalcLayout
End With
Set ControlHelp = CommandBars.ActiveMenuBar.Controls.Add(xtpControlPopup, 0, "&Help")
With ControlHelp.CommandBar.Controls
.Add xtpControlButton, ID_HELP_ABOUT, "&About"
.Add xtpControlButton, ID_FILE_UPDATE, "&Updates Contents"
Set frmMain.CommandBars.Icons = frmMain.ImageManager.Icons
frmMain.CommandBars.Options.SetIconSize True, 32, 32
frmMain.CommandBars.RecalcLayout
End With
Dim ToolBar As CommandBar
Set ToolBar = CommandBars.Add("Alpha", xtpBarTop)
AddControl ToolBar.Controls, xtpControlButton, ID_FILE_CASPERSPY, "&Attacker", False, "Show Attacker Menu"
AddControl ToolBar.Controls, xtpControlButton, ID_FILE_GUIDE, "&Guide", False, "Show Guide Menu"
AddControl ToolBar.Controls, xtpControlButton, ID_FILE_EBOOK, "&Ebook", False, "Download Exclusive Ebook"
AddControl ToolBar.Controls, xtpControlButton, ID_FILE_TUTORIAL, "&Tutorial", False, "See manual instruction how to use all Attacker"
AddControl ToolBar.Controls, xtpControlButton, ID_FILE_VIDEO, "Video Tutorial", False, "Watch this and you'll know"
AddControl ToolBar.Controls, xtpControlButton, ID_FILE_NEWS, "&News", False, "News Update about CyberSecurity"
AddControl ToolBar.Controls, xtpControlButton, ID_FILE_FORUM, "Forum", False, "Visite CasperSpy Forum"
AddControl ToolBar.Controls, xtpControlButton, ID_ACTIONS_CHAT, "Chat", False, "Chat with Us"
AddControl ToolBar.Controls, xtpControlButton, ID_ACTIONS_CONTACT, "&Cpanel", False, "Access Botmaster Control Panel"
AddControl ToolBar.Controls, xtpControlButton, ID_FILE_UPDATE, "&Auto Update", False, "Auto Update all Contents & Feature of CasperLauncher"
Set frmMain.CommandBars.Icons = frmMain.ImageManager.Icons
frmMain.CommandBars.Options.LargeIcons = True
frmMain.CommandBars.RecalcLayout
Dim StatusBar As StatusBar
Set StatusBar = CommandBars.StatusBar
Set frmMain.CommandBars.Icons = frmMain.ImageManager.Icons
StatusBar.Visible = True
StatusBar.AddPane 0
StatusBar.AddPane ID_INDICATOR_CAPS
StatusBar.AddPane ID_INDICATOR_NUM
StatusBar.AddPane ID_INDICATOR_SCRL
End Sub
Private Sub List1_Click()
If List1.Text = "Agobot" Or List1.Text = "agobot" Then
Text1.Text = "Agobot IRC Botnet" & vbCrLf & " " & vbCrLf & "Agobot (Gaobot) is a family of computer worms. Axel Gembe was responsible for writing the first version."
End If
If List1.Text = "Cybergate" Or List1.Text = "cybergate" Then
Text1.Text = "CyberGate - Rat" & vbCrLf & " " & vbCrLf & "CyberGate was built to be a tool for various possible applications, ranging from assisting Users with routine maintenance tasks, to remotely monitoring your Children, captures regular user activities and maintain a backup of your typed data automatically. It can also be used as a monitoring device for detecting unauthorized access."
End If
If List1.Text = "Subseven" Or List1.Text = "subseven" Then
Text1.Text = "SubSeven - Remote Administration Trojan" & vbCrLf & " " & vbCrLf & "SubSeven 2.3 is a simple, easy to use remote administration tool (RAT) designed to work on all current Windows platforms, both 32bit and 64bit. This tool is aimed at people who want that little bit more power and control over remote computer management. Please use this tool responsibly and read and accept the disclaimer prior to use. If you do not agree with the disclaimer, please do not use the tool. You accept full liability and responsibility for your actions when using SubSeven. Do not use this tool on computers you are not authorized to control. U can download it from the clicking the download now button."
End If
If List1.Text = "SoftIce" Or List1.Text = "softice" Then
Text1.Text = "SoftIce | W32Dasm - Windows Disassembler | Hacker's View (HIEW) | Cracking toolkit" & vbCrLf & " " & vbCrLf & "SoftICE is a kernel mode debugger for Microsoft Windows. Crucially, it is designed to run underneath Windows such that the operating system is unaware of its presence. Unlike an application debugger, SoftICE is capable of suspending all operations in Windows when instructed. For driver debugging this is critical due to how hardware is accessed and the kernel of the operating system functions. Because of its low-level capabilities, SoftICE is also popular as a software cracking tool."
End If
If List1.Text = "ResHack" Or List1.Text = "reshack" Then
Text1.Text = "Resource Hacker" & vbCrLf & " " & vbCrLf & "Resource HackerTM is a freeware utility to view, modify, rename, add, delete and extract resources in 32bit & 64bit Windows executables and resource files (*.res). It incorporates an internal resource script compiler and decompiler and works on all (Win95 - Win7) Windows operating systems."
End If
If List1.Text = "PeExplorer" Or List1.Text = "peexplorer" Then
Text1.Text = "View, Edit, and Reverse Engineer EXE and DLL Files." & vbCrLf & " " & vbCrLf & "PE Explorer is the most feature-packed program for inspecting the inner workings of your own software, and more importantly, third party Windows applications and libraries for which you do not have source code."
End If
If List1.Text = "OllyDbg" Or List1.Text = "ollydbg" Then
Text1.Text = "Olly Debugger" & vbCrLf & " " & vbCrLf & "OllyDbg is a 32-bit assembler level analysing debugger for Microsoft® Windows®. Emphasis on binary code analysis makes it particularly useful in cases where source is unavailable."
End If
If List1.Text = "IdaPro" Or List1.Text = "idapro" Then
Text1.Text = "Interactive DissassAsembler" & vbCrLf & " " & vbCrLf & "IDA is a Windows, Linux or Mac OS X hosted multi-processor disassembler and debugger that offers so many features it is hard to describe them all. Just grab an evaluation version if you want a test drive. An executive summary is provided for the non-technical user."
End If
If List1.Text = "Hiew32" Or List1.Text = "hiew32" Then
Text1.Text = "Hiew32 - Old School Cracking Tools" & vbCrLf & " " & vbCrLf & "view and edit files of any length in text, hex, and decode modes, x86-64 disassembler & assembler (AVX instructions include), physical & logical drive view & edit, support for NE, LE, LX, PE/PE32+ and little-endian ELF/ELF64 executable formats, support for Netware Loadable Modules like NLM, DSK, LAN, etc"
End If
If List1.Text = "Hexedit" Or List1.Text = "hexedit" Then
Text1.Text = "Hexadecimal Editor" & vbCrLf & " " & vbCrLf & "With a hex editor, a user can see or edit the raw and exact contents of a file, as opposed to the interpretation of the same content that other, higher level application software may associate with the file format. For example, this could be raw image data, in contrast to the way image editing software would interpret and show the same file."
End If
If List1.Text = "RxBot" Or List1.Text = "rxbot" Then
Text1.Text = "RxBot IRC Botnet" & vbCrLf & " " & vbCrLf & "Rxbot (also known as rBot) is a win32 computer IRC worm (written in C++) that spreads to computers running Windows XP"
End If
If List1.Text = "Crime Pack" Or List1.Text = "crimepack" Then
Text1.Text = "CrimePack - Exploit Kit" & vbCrLf & " " & vbCrLf & "is a malicious code present on fraudulent websites or illegally injected on legitimate but hacked websites without the knowledge of the administrator."
End If
If List1.Text = "Picebot" Or List1.Text = "picebot" Then
Text1.Text = "Picebot Pharming Botnet" & vbCrLf & " " & vbCrLf & "Pharming is a cyber attack intended to redirect a website's traffic to another, bogus site. Pharming can be conducted either by changing the hosts file on a victim's computer or by exploitation of a vulnerability in DNS server software."
End If
If List1.Text = "Andromeda" Or List1.Text = "andromeda" Then
Text1.Text = "Andromeda Botnet" & vbCrLf & " " & vbCrLf & "Botnet with Flexible modules bot. Based on this product, you can build a botnet with extremely diverse opportunities. Bot extended functions with the help of the plug-in can be loaded right quantity and at any time."
End If
If List1.Text = "CasperLogger" Or List1.Text = "casperlogger" Then
Text1.Text = "CasperLogger V1.0" & vbCrLf & " " & vbCrLf & "is stealth email keylogger which will send login credentials data to your email to use it you just set the email which was registered first on SMTP register."
End If