forked from Syntheticc/Hell-Multitool-source
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Hell.cmd
3411 lines (2488 loc) · 115 KB
/
Hell.cmd
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
chcp 65001 >nul
title 91.18.83.13
:notice
color D
mode con lines=30 cols=74
echo ╔═══════════════════════╗
echo ║ credits: ryang, cloud ║
echo ╚═══════════════════════╝
echo ╔═══════════════════════════════════╗
echo ║░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░║
echo ║░░██╗░░██╗███████╗██╗░░░░░██╗░░░░░░║
echo ║░░██║░░██║██╔════╝██║░░░░░██║░░░░░░║
echo ║░░███████║█████╗░░██║░░░░░██║░░░░░░║
echo ║░░██╔══██║██╔══╝░░██║░░░░░██║░░░░░░║
echo ║░░██║░░██║███████╗███████╗███████╗░║
echo ║░░╚═╝░░╚═╝╚══════╝╚══════╝╚══════╝░║
echo ║░░░░░░░░░░░░░░░░░░░░░░░░░░PREMIUM░░║
echo ╚═══════════════════════════════════╝
echo ╔═══════════════════════╗
echo ║ hell, "ryang#1337 ║
echo ╚═══════════════════════╝
echo ╔═══════════════════════╗
echo ║ press 1 to login ║
echo ╚═══════════════════════╝
set /p input3= [root@hell]:
if %input3% == 1 goto login
if %input3% == 2 goto buy
if %input3% == 3 goto admin
echo invalid option
timeout 3 >nul
goto notice
:loading
mode con lines=30 cols=55
cls
color D
echo conencting to root.
timeout 1 >nul
goto connecting2
:connecting2
mode con lines=30 cols=55
cls
color D
echo connecting to root..
timeout 1 >nul
goto connecting3
:connecting3
mode con lines=30 cols=55
cls
color D
echo connecting to root...
timeout 1 >nul
goto connecting4
:connecting4
mode con lines=30 cols=55
cls
color D
echo connecting to root.
timeout 1 >nul
goto connecting5
:connecting5
mode con lines=30 cols=55
cls
color D
echo connecting to root..
timeout 1 >nul
goto connected
:connected
mode con lines=30 cols=55
cls
color D
echo succesfully connected to root
timeout 3 >nul
goto welcome
:welcome
mode con lines=30 cols=55
cls
color D
echo welcome %username%
timeout 3 >nul goto main
goto main
:main
cls
color D
mode con lines=30 cols=74
echo ╔═══════════════════════════════════╗
echo ║░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░║
echo ║░░██╗░░██╗███████╗██╗░░░░░██╗░░░░░░║
echo ║░░██║░░██║██╔════╝██║░░░░░██║░░░░░░║
echo ║░░███████║█████╗░░██║░░░░░██║░░░░░░║
echo ║░░██╔══██║██╔══╝░░██║░░░░░██║░░░░░░║
echo ║░░██║░░██║███████╗███████╗███████╗░║
echo ║░░╚═╝░░╚═╝╚══════╝╚══════╝╚══════╝░║
echo ║░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░║
echo ╚═══════════════════════════════════╝
echo Enter Activation Key
echo Join .gg/generate make a ticket and ask for key
echo --------------------------------
echo Multitool Design: cloud.#0001
echo --------------------------------
echo Multitool Devved by: ryang#1337
echo --------------------------------
set /p input= [root@hell]:
if %input% == 0731 goto help
goto main
:help
color D
title Hell MultiTool
mode con lines=30 cols=74
echo ╔═══════════════════════════════════╗
echo ║░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░║
echo ║░░██╗░░██╗███████╗██╗░░░░░██╗░░░░░░║
echo ║░░██║░░██║██╔════╝██║░░░░░██║░░░░░░║
echo ║░░███████║█████╗░░██║░░░░░██║░░░░░░║
echo ║░░██╔══██║██╔══╝░░██║░░░░░██║░░░░░░║
echo ║░░██║░░██║███████╗███████╗███████╗░║
echo ║░░╚═╝░░╚═╝╚══════╝╚══════╝╚══════╝░║
echo ║░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░║
echo ╚═══════════════════════════════════╝
echo ╔═══════════════════════╗
echo ║ hell, "ryang#1337 ║
echo ╚═══════════════════════╝
echo ╔═══════════════════════╗═══════════════════════╗
echo ║1) pingers ║16) Pc Cleanup ║
echo ║2) LinkVertise Bypass ║17) fortnite spoofer ║
echo ║3) username checker ║18) check hwid ║
echo ║4) fake mail ║19) webhook spam ║
echo ║5) creater info ║20) dox tool ║
echo ║6) server ping ║21) SynSniper ║
echo ║7) clouds ddos ║22) Synful Gen ║
echo ║8) free botnet ║23) Syn Stealer Source ║
echo ║9) free ddos ║24) 100 free methods ║
echo ║10) ip logger ║25) token grab code ║
echo ║11) acc gen ║26) vape client logger ║
echo ║12) spotify ad bypass ║27) nitro gen scam ║
echo ║13) more features ║28) credits ║
echo ║14) Cracks and Leaks ║29) logout ║
echo ║15) Discord Server ║30) exit ║
echo ╚═══════════════════════╝═══════════════════════╝
set /p input2= [root@hell]:
if %input2% == 1 goto pingers
if %input2% == 2 goto bypass
if %input2% == 3 goto checker
if %input2% == 4 goto 1
if %input2% == 5 goto info
if %input2% == 6 goto servertest
if %input2% == 7 goto ddos
if %input2% == 8 goto vps
if %input2% == 9 goto freedos
if %input2% == 10 goto logger
if %input2% == 11 goto acc
if %input2% == 12 goto spot
if %input2% == 13 goto more
if %input2% == 29 goto logout
if %input2% == 30 goto exit
if %input2% == 16 goto cleanup
if %input2% == 17 goto check2
if %input2% == 18 goto check
if %input2% == 19 goto 3
if %input2% == 14 goto leaks
if %input2% == 15 goto discord
if %input2% == 20 goto dox
if %input2% == 21 goto snipes
if %input2% == 22 goto genss
if %input2% == 23 goto steal
if %input2% == 24 goto 100
if %input2% == 28 goto credits
if %input2% == 25 goto grabber
if %input2% == 26 goto vape
if %input2% == 27 goto genner
goto help
:pingers
echo 1) hell
echo 2) regular
echo 3) anime broken but works
echo 4) back
echo 5) exit
set /p ok= [root@hell]:
if %ok% == 1 goto hell
if %ok% == 2 goto pinger
if %ok% == 3 goto anime
if %ok% == 4 goto help
if %ok% == 5 goto exit
:exit
exit
:hell
color 4
cls
echo ╔═══════════════════════════════════╗
echo ║░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░║
echo ║░░██╗░░██╗███████╗██╗░░░░░██╗░░░░░░║
echo ║░░██║░░██║██╔════╝██║░░░░░██║░░░░░░║
echo ║░░███████║█████╗░░██║░░░░░██║░░░░░░║
echo ║░░██╔══██║██╔══╝░░██║░░░░░██║░░░░░░║
echo ║░░██║░░██║███████╗███████╗███████╗░║
echo ║░░╚═╝░░╚═╝╚══════╝╚══════╝╚══════╝░║
echo ║░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░║
echo ╚═══════════════════════════════════╝
set /p IP=Enter IP:
:rainbow
PING -n 1 %IP% | FIND "TTL="
IF ERRORLEVEL 1 (SET in=c & echo FUCK TCM)
ping -t 2 0 10 127.0.0.1 >nul
color 01
PING -n 1 %IP% | FIND "TTL="
IF ERRORLEVEL 1 (SET in=c & echo FUCK TCM)
ping -t 2 0 10 127.0.0.1 >nul
color 02
PING -n 1 %IP% | FIND "TTL="
IF ERRORLEVEL 1 (SET in=c & echo FUCK TCM)
ping -t 2 0 10 127.0.0.1 >nul
color 03
PING -n 1 %IP% | FIND "TTL="
IF ERRORLEVEL 1 (SET in=c & echo FUCK TCM)
ping -t 2 0 10 127.0.0.1 >nul
color 04
PING -n 1 %IP% | FIND "TTL="
IF ERRORLEVEL 1 (SET in=c & echo FUCK TCM)
ping -t 2 0 10 127.0.0.1 >nul
color 05
PING -n 1 %IP% | FIND "TTL="
IF ERRORLEVEL 1 (SET in=c & echo FUCK TCM)
ping -t 2 0 10 127.0.0.1 >nul
color 06
PING -n 1 %IP% | FIND "TTL="
IF ERRORLEVEL 1 (SET in=c & echo FUCK TCM)
ping -t 2 0 10 127.0.0.1 >nul
color 07
PING -n 1 %IP% | FIND "TTL="
IF ERRORLEVEL 1 (SET in=c & echo FUCK TCM)
ping -t 2 0 10 127.0.0.1 >nul
color 08
PING -n 1 %IP% | FIND "TTL="
IF ERRORLEVEL 1 (SET in=c & echo FUCK TCM)
ping -t 2 0 10 127.0.0.1 >nul
color 09
PING -n 1 %IP% | FIND "TTL="
IF ERRORLEVEL 1 (SET in=c & echo FUCK TCM)
ping -t 2 0 10 127.0.0.1 >nul
color 0a
PING -n 1 %IP% | FIND "TTL="
IF ERRORLEVEL 1 (SET in=c & echo FUCK TCM)
ping -t 2 0 10 127.0.0.1 >nul
color 0b
PING -n 1 %IP% | FIND "TTL="
IF ERRORLEVEL 1 (SET in=c & echo FUCK TCM)
ping -t 2 0 10 127.0.0.1 >nul
color 0c
PING -n 1 %IP% | FIND "TTL="
IF ERRORLEVEL 1 (SET in=c & echo FUCK TCM)
ping -t 2 0 10 127.0.0.1 >nul
color 0d
PING -n 1 %IP% | FIND "TTL="
IF ERRORLEVEL 1 (SET in=c & echo FUCK TCM)
ping -t 2 0 10 127.0.0.1 >nul
color 0e
PING -n 1 %IP% | FIND "TTL="
IF ERRORLEVEL 1 (SET in=c & echo FUCK TCM)
ping -t 2 0 10 127.0.0.1 >nul
color 0f
PING -n 1 %IP% | FIND "TTL="
IF ERRORLEVEL 1 (SET in=c & echo FUCK TCM)
ping -t 2 0 10 127.0.0.1 >nul
goto rainbow
:pinger
color 4
cls
set /p IP=Enter IP:
:rainbow
PING -n 1 %IP% | FIND "TTL="
IF ERRORLEVEL 1 (SET in=c & echo FUCK TCM)
ping -t 2 0 10 127.0.0.1 >nul
color 01
PING -n 1 %IP% | FIND "TTL="
IF ERRORLEVEL 1 (SET in=c & echo FUCK TCM)
ping -t 2 0 10 127.0.0.1 >nul
color 02
PING -n 1 %IP% | FIND "TTL="
IF ERRORLEVEL 1 (SET in=c & echo FUCK TCM)
ping -t 2 0 10 127.0.0.1 >nul
color 03
PING -n 1 %IP% | FIND "TTL="
IF ERRORLEVEL 1 (SET in=c & echo FUCK TCM)
ping -t 2 0 10 127.0.0.1 >nul
color 04
PING -n 1 %IP% | FIND "TTL="
IF ERRORLEVEL 1 (SET in=c & echo FUCK TCM)
ping -t 2 0 10 127.0.0.1 >nul
color 05
PING -n 1 %IP% | FIND "TTL="
IF ERRORLEVEL 1 (SET in=c & echo FUCK TCM)
ping -t 2 0 10 127.0.0.1 >nul
color 06
PING -n 1 %IP% | FIND "TTL="
IF ERRORLEVEL 1 (SET in=c & echo FUCK TCM)
ping -t 2 0 10 127.0.0.1 >nul
color 07
PING -n 1 %IP% | FIND "TTL="
IF ERRORLEVEL 1 (SET in=c & echo FUCK TCM)
ping -t 2 0 10 127.0.0.1 >nul
color 08
PING -n 1 %IP% | FIND "TTL="
IF ERRORLEVEL 1 (SET in=c & echo FUCK TCM)
ping -t 2 0 10 127.0.0.1 >nul
color 09
PING -n 1 %IP% | FIND "TTL="
IF ERRORLEVEL 1 (SET in=c & echo FUCK TCM)
ping -t 2 0 10 127.0.0.1 >nul
color 0a
PING -n 1 %IP% | FIND "TTL="
IF ERRORLEVEL 1 (SET in=c & echo FUCK TCM)
ping -t 2 0 10 127.0.0.1 >nul
color 0b
PING -n 1 %IP% | FIND "TTL="
IF ERRORLEVEL 1 (SET in=c & echo FUCK TCM)
ping -t 2 0 10 127.0.0.1 >nul
color 0c
PING -n 1 %IP% | FIND "TTL="
IF ERRORLEVEL 1 (SET in=c & echo FUCK TCM)
ping -t 2 0 10 127.0.0.1 >nul
color 0d
PING -n 1 %IP% | FIND "TTL="
IF ERRORLEVEL 1 (SET in=c & echo FUCK TCM)
ping -t 2 0 10 127.0.0.1 >nul
color 0e
PING -n 1 %IP% | FIND "TTL="
IF ERRORLEVEL 1 (SET in=c & echo FUCK TCM)
ping -t 2 0 10 127.0.0.1 >nul
color 0f
PING -n 1 %IP% | FIND "TTL="
IF ERRORLEVEL 1 (SET in=c & echo FUCK TCM)
ping -t 2 0 10 127.0.0.1 >nul
goto rainbow
:anime
echo ///////+hyy+///+//////////++/+//+++++++++++++++++++++++++o+++o+++++++++++++++oo++++++ohhdhysyhhhhysy
echo ///////+yyy+///////////////+////+++++++++++++++++++++++++o+++++++++oo+++++++ooo++++++ohhhhysyhhhhyyy
echo ///////+hhy+/////////////+++///+///++++++++++++++++++++++oyy++++ossoo+++++++o+o+++++++yhdhysyhhhhyys
echo ///////+yyy+////////+//++/////+/+++++++++++++ossyyyyyyyyshhhyosyhyhy+o+o+ooo++o+++++++shhdhsshhhhyys
echo ssssssssyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyhhhddddddddddddddddddyyhyhhsoy+y++s+oyyyyyyyyyhhhhsshhhhyys
echo yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyhhdddddddddddddddddddddddddhhhhyyos+sos+++shyyyyyyyhhhhysyhhhyys
echo yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyhhddddddddddddddddddmdddddddddddhdhhyssssss//+ssyyyyyyhhhhysyhhhhys
echo yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyddddddddddddddddddddddmmddddddddddddhh++osss/++sossssyyhhhhhsshhhhyy
echo hhhhhhhhhhhhhhhhyhhhhhhhhhhhhhddddddddddddddddddddddddddmmdddddddddddds++++++osooso+oooyyhhhssyhhhyy
echo hhhhhhhhyyyyhyyhsoyhyhyyhhhhhdddddddddddddddddddyyydddddddmdddddddmmmmddoosoosoooo+++++ooossssyhhhyy
echo ssssssssyyyooooooo+ssssyyyhhddddddddddddddddddddho+osyhddddmdddddddmmmmmdysoooooo++++++++++++oooossy
echo //////++ysyo+/++oos+ohdddhhdddddddddddddddddddmdds++/++shdddmdddddmmmmNmdddyoo+++++++++++++++++++++o
echo ///////+ysooo+ooooooososyhhddddddddmddhsyddddddhdy++++osooshdmmdmmmmmmmNmmmdhoo+o+++++++++++++++++++
echo ///+//++yyyoo+os++oso+++shhddddddddmdds+ohdddmdshy///s++///+oyddmmmmmmmNmmmmh+oooooo++++++++++++++++
echo ///////+yyy++o+++ooyss+++ydmdddddddmdy+++odddmmosh+//+/+/+++++ydmmmmmmmmNmmmy+/++oso++++++++++++++++
echo ///////+yyyo/+o+/+osso++/shmmmdddddmdo//+oydddmo+y+////+oosyyyymmmmmmmmmNmmmy++++++ooo+++o++++++++++
echo ///////+yyy+/+oo//++o++/+ymmmmmmmmmmy++ooo+oydms+o++//++yddysssymmmmdhhmNmmms++//++++++oooo+++++++++
echo ///////+yyy+/ooyo++++++ooydmmmmmmmmNo++++/++osdy++/////++o+++++ommmdosohNmmms++/++++++/++osooo+++o++
echo ///////+yyy++oossosoososohmmmmmmmmmm++//++oosyhdo+////+//+++++++dmhoossyNmmmo++//++++//++oosyysssooo
echo ///////+yyyo/oooooooooooodmmmmmmmNmm+///+oohdhyso////+///++/++++ds+/ssymNmmmo+////////+ooosyssyyyyyy
echo ///////+yyy+oo+++o++++++odmmmmmmmNNNo++/+yds++++++///+////////++o+//symNNmmms+//+++/++ooooyo++osyyyy
echo ///////+yyyos+++++++++++odmmmmmmmNNNms++oho++++++++/+/+so+//////////hNNNNmhdy+/++oooooooosoo+++ooooo
echo ///////+yyyso+o+++++++++smmmmmmmmmNNmds++++++++++++/++hhhs+/////+/+omNNNmmsshooo++++++++oo++++++++++
echo ///////+yyyso+++++++o+o+hmmmmmmmmmNNdosoo++++++/+/////oyyss+/////+odNNNmddsoooo+++++++++s++oo+++++++
echo ////////yyso++++++++++osdmmmmmmmmmNNmoosoo++/////////+/osss+/////oymNNNmyo+o++++++o+++ooo+ooo+o+++++
echo ///////+yy++++++++++++oymmmmmmmmmmNNmy+++ooo+///////////++++/++oyo+dmmds+o+++++++++++++soo+s++++++o+
echo ////////yo++++++++++++odmmmmmmmmmmmNNd/+++++++++++//++/+++//++syysyyyyso++++++++++++++oo++oy+++++++o
echo ///////oo++++++++++++oymmmmmmmmmmdmNNmo/////:///ss++osoooooooosyooosysooo+++++++++++++soo+syo++++osy
echo //////+oo++++++++++++odmmmmmmmdhmhhmNmh////////+o///ossssssoosssooooyoo++++++++++o++ooooooys++ooshss
echo /////+oo++++o+++++++osyyhdmmmdo+hdsymddo///++///++osyooossysssssssooossso+++++++ooo+osoooshsooshhhys
echo ::://oo+++++++++++++oyssoosyhho+ohdyydhdoooooooooooosoooossosysoosyhyhdhoo++++++oosoos++oyyssooyhhhs
echo :://+oo++++++++++++ossosysoooosoooshyoysyo++++++++++oo/+osoooyssyhdhhhdhso++++++++osos+osyys+//yhhhy
echo :://s+oo++++++++++oyyoooosyooo++++oossooo+++++++++o+ososyyyyyyhhhhdhhhdhyo+o+++++++oyo+oyy+////+hhhh
echo ///+o+o+++++++o+osyyyo+++osysoo++oo++oo+++oo++++++++shhdhhdddhddddhhdddddsoo++++++++oyosy+//:/:/shhh
echo /:/s++++++++++osyyyys+++++oosso++++++++oo++o++++++++oydhhhdhdddddddddhhhhhyso++++++oosyss////::/+hhh
echo ///s++++++++oosyyssso++++++++ooo+++++++++++s+++++++++oohdhhhdmddydhdhhhhhhhy+++++++++oyy+//////:/shh
echo ///oo++o+++oossssoo++++++++++++++++++++++++s++o++++++oshdhhhhmhdsyhhhdddddho+++++++++oss/:/://///+yh
echo ////+oooo+++ooo+++++++++++++++++ooo++++++++s++++++++oshhddhhhddhoohhhhhhhhooo+++++++++oo/:/:/::://sh
echo /////+syyssoo++++++++++++++++++ooosoo++++oooo+++++++oyhhhdhhhhdyo/+shhhhhso+o++++++++++s///::::////y
echo //////yyyyyo++oooooooooooo++o+++++ossso+++++s++++++++ooyydhhhhhs+//+yyhyoo+++++++++++++o+/::::::/:/+
echo /////+yyyyy+/////++oossssoooooooooooosyssoo+so++++++++++ooyhhhsooo+soosoo+++++++++++++++s//:::/::://
echo /////+yyyyy+///////++///+++oosssssssssyyyyssss+o++++++++++osys++o+oso+o+++++++++++++++++o///////////
echo //////osyyyyssssssssssssssssssyyyyyyyyyyhhhyyyo++++o++++++++++++++oosoo++++++++++++++++oosssssssssss
echo ///////+hyysyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyooo++++++++++++++++osooo+++++++++++++++++ohhyyyyyyyyy
echo ///////+hyssyyhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhoo++++++++++++++++++ooo++++++++++++++++++oyyssyyhhhhh
echo ///////+hyssyhdddddddddddddddddddddddddddhhhdhhyo++++++++++++++o++++os+++++++++o++++++++osyssyhddddd
echo ///////+hyyyydddddddddddddddddddddddddddddhddddhooo+++++++++++++++++oooo++++++++++++++++ooyssyhddddd
echo ///////+hyysyddddddddddddddddddddddddddddddddddhhoo++++++++++o+++++++osoo+++++++++++++++ooysyyhddddd
echo ///////+dyysyhddddddddddddddddddddddddddddddddddhyo+++++++++++++++++++oooo++++++++++++++ooysyhdddddd
echo //////++hyyyyddddddddddddddddddddddddddddddddddddhso+++++++++++++o++++os++o+++++++oo+++ooohyyydddddd
echo ///////+hysyydddddddddddddddddddddddddddddddddddddhoo+o++oo+o++++oo+oossoo++oo++oo+++++ooosyyhdddddd
set /p IP=Enter IP:
:rainbow
PING -n 1 %IP% | FIND "TTL="
IF ERRORLEVEL 1 (SET in=c & echo FUCK TCM)
ping -t 2 0 10 127.0.0.1 >nul
color 01
PING -n 1 %IP% | FIND "TTL="
IF ERRORLEVEL 1 (SET in=c & echo FUCK TCM)
ping -t 2 0 10 127.0.0.1 >nul
color 02
PING -n 1 %IP% | FIND "TTL="
IF ERRORLEVEL 1 (SET in=c & echo FUCK TCM)
ping -t 2 0 10 127.0.0.1 >nul
color 03
PING -n 1 %IP% | FIND "TTL="
IF ERRORLEVEL 1 (SET in=c & echo FUCK TCM)
ping -t 2 0 10 127.0.0.1 >nul
color 04
PING -n 1 %IP% | FIND "TTL="
IF ERRORLEVEL 1 (SET in=c & echo FUCK TCM)
ping -t 2 0 10 127.0.0.1 >nul
color 05
PING -n 1 %IP% | FIND "TTL="
IF ERRORLEVEL 1 (SET in=c & echo FUCK TCM)
ping -t 2 0 10 127.0.0.1 >nul
color 06
PING -n 1 %IP% | FIND "TTL="
IF ERRORLEVEL 1 (SET in=c & echo FUCK TCM)
ping -t 2 0 10 127.0.0.1 >nul
color 07
PING -n 1 %IP% | FIND "TTL="
IF ERRORLEVEL 1 (SET in=c & echo FUCK TCM)
ping -t 2 0 10 127.0.0.1 >nul
color 08
PING -n 1 %IP% | FIND "TTL="
IF ERRORLEVEL 1 (SET in=c & echo FUCK TCM)
ping -t 2 0 10 127.0.0.1 >nul
color 09
PING -n 1 %IP% | FIND "TTL="
IF ERRORLEVEL 1 (SET in=c & echo FUCK TCM)
ping -t 2 0 10 127.0.0.1 >nul
color 0a
PING -n 1 %IP% | FIND "TTL="
IF ERRORLEVEL 1 (SET in=c & echo FUCK TCM)
ping -t 2 0 10 127.0.0.1 >nul
color 0b
PING -n 1 %IP% | FIND "TTL="
IF ERRORLEVEL 1 (SET in=c & echo FUCK TCM)
ping -t 2 0 10 127.0.0.1 >nul
color 0c
PING -n 1 %IP% | FIND "TTL="
IF ERRORLEVEL 1 (SET in=c & echo FUCK TCM)
ping -t 2 0 10 127.0.0.1 >nul
color 0d
PING -n 1 %IP% | FIND "TTL="
IF ERRORLEVEL 1 (SET in=c & echo FUCK TCM)
ping -t 2 0 10 127.0.0.1 >nul
color 0e
PING -n 1 %IP% | FIND "TTL="
IF ERRORLEVEL 1 (SET in=c & echo FUCK TCM)
ping -t 2 0 10 127.0.0.1 >nul
color 0f
PING -n 1 %IP% | FIND "TTL="
IF ERRORLEVEL 1 (SET in=c & echo FUCK TCM)
ping -t 2 0 10 127.0.0.1 >nul
goto rainbow
:info
color D
echo Copyrights ryang#1337, Hell Multitool
pause
goto help
:checker
start chrome https://cdn.discordapp.com/attachments/967956565908922398/967974719334797342/Tiktok_Username_Checker.zip
timout 3 >nul
goto help
:bypass
start chrome https://cdn.discordapp.com/attachments/968033947382583336/968603626929000448/bypass.py
goto help
:servertest
cls
title Hell MultiTool - Checking a server's status
set /p page= Enter the server you would like to test:
cls
echo Checking "%page%" (this may take a bit.)
echo This option is still in beta, so it may or may not work
ping %page%>nul
cls
if errorlevel 1 (
echo The server "%page%" is offline
) else echo The server "%page%" is online
pause
goto help
:buy
echo to buy you need to dm ryang#0001 for key
timeout 3 >nul
goto notice
:acc
start chrome https://cdn.discordapp.com/attachments/929781350272221207/968665322620088360/gen.txt
goto help
:ddos
start chrome https://github.com/c10udz/panel
timeout 3 >nul
goto help
:test
color D
mode con lines=30 cols=74
echo ╔═══════════════════════════════════╗
echo ║░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░║
echo ║░░██╗░░██╗███████╗██╗░░░░░██╗░░░░░░║
echo ║░░██║░░██║██╔════╝██║░░░░░██║░░░░░░║
echo ║░░███████║█████╗░░██║░░░░░██║░░░░░░║
echo ║░░██╔══██║██╔══╝░░██║░░░░░██║░░░░░░║
echo ║░░██║░░██║███████╗███████╗███████╗░║
echo ║░░╚═╝░░╚═╝╚══════╝╚══════╝╚══════╝░║
echo ║░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░║
echo ╚═══════════════════════════════════╝
echo ╔═══════════════════════╗
echo ║ hell, "ryang#1337 ║
echo ╚═══════════════════════╝
echo ╔═══════════════════════╗
echo ║1) pingers ║
echo ║2) fake mail - shitty ║
echo ║3) creater info ║
echo ║4) server ping ║
echo ║5) ip logger ║
echo ║6) free ddos ║
echo ║7) nitro sniper ║
echo ║8) logout ║
echo ║10) exit ║
echo ╚═══════════════════════╝
set /p input4= [root@hell]:
if %input4% == 1 goto pingers
if %input4% == 2 goto email
if %input4% == 3 goto info
if %input4% == 4 goto servertest
if %input4% == 5 logger
if %input4% == 6 goto freedos
if %input4% == 7 goto sniper
if %input4% == 8 goto logout
if %input4% == 10 goto exit
goto test
:logout
echo logging out
goto notice
:email
start chrome https://temp-mail.org/en/
goto test
:freedos
start chrome https://ddosforhire.net/
goto test
:logger
start chrome https://iplogger.org/
goto test
:1
start chrome https://www.gmailnator.com/
goto help
:login
mode con lines=30 cols=55
cls
color D
echo ██╗░░░░░░█████╗░░██████╗░██╗███╗░░██╗
echo ██║░░░░░██╔══██╗██╔════╝░██║████╗░██║
echo ██║░░░░░██║░░██║██║░░██╗░██║██╔██╗██║
echo ██║░░░░░██║░░██║██║░░╚██╗██║██║╚████║
echo ███████╗╚█████╔╝╚██████╔╝██║██║░╚███║
echo ╚══════╝░╚════╝░░╚═════╝░╚═╝╚═╝░░╚══╝
echo.
echo Enter info if you already have
set /p user= username:
echo.
set /p pass= password:
if %user% == root if %pass% == cloud goto loading
if %user% == ryan if %pass% == 0731 goto loading
if %user% == test if %pass% == test goto test
if %user% == sleepy if %pass% == free goto loading
echo wrong credintials try again
timeout 3 >nul
goto login
:more
color D
mode con lines=30 cols=74
echo ╔═══════════════════════════════════╗
echo ║░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░║
echo ║░░██╗░░██╗███████╗██╗░░░░░██╗░░░░░░║
echo ║░░██║░░██║██╔════╝██║░░░░░██║░░░░░░║
echo ║░░███████║█████╗░░██║░░░░░██║░░░░░░║
echo ║░░██╔══██║██╔══╝░░██║░░░░░██║░░░░░░║
echo ║░░██║░░██║███████╗███████╗███████╗░║
echo ║░░╚═╝░░╚═╝╚══════╝╚══════╝╚══════╝░║
echo ║░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░░║
echo ╚═══════════════════════════════════╝
echo ╔═══════════════════════╗
echo ║ hell, "ryang#1337 ║
echo ╚═══════════════════════╝
echo ╔═══════════════════════╗═══════════════════════╗
echo ║1) token protection ║16) Amazon Card Gen ║
echo ║2) nitro snipe ║17) tukz yt downloader ║
echo ║3) proxy scraper ║18) lightbreaker's mp ║
echo ║4) server nuker ║19) webhook tool ║
echo ║5) rat tool ║20) fake id generator ║
echo ║6) backdoor ║21) credit card gen ║
echo ║7) doxbin ║22) spotify acc create ║
echo ║8) tukz server inv ║23) nitro promo gen ║
echo ║9) Syns MarketPlace ║24) hangman game ║
echo ║10) wallet miner ║25) fake disc token gen║
echo ║11) insta user checker ║26) lightbreakers face ║
echo ║12) vanity spoofer ║27) twitch ║
echo ║13) instagram brute ║28) youtube ║
echo ║14) tt gen and checker ║29) logout ║
echo ║15) hazard nuker ║30) page 1 ║
echo ╚═══════════════════════╝═══════════════════════╝
set /p input5= [root@hell]:
if %input5% == 1 goto protect
if %input5% == 2 goto sniper
if %input5% == 3 goto scrape
if %input5% == 4 goto nuker
if %input5% == 5 goto rats
if %input5% == 6 goto back
if %input5% == 7 start doxbin.org
if %input5% == 8 start https://discord.gg/nPHWgpAdR6
if %input5% == 9 start https://discord.gg/fuByN9rtqe
if %input5% == 10 start https://github.com/Syntheticc/Wallet-Miner
if %input5% == 11 start https://cdn.discordapp.com/attachments/929781350272221207/986388527036104774/instacheck.py
if %input5% == 12 start https://cdn.discordapp.com/attachments/929781350272221207/986389531244773427/vanity_hack.py
if %input5% == 13 start https://github.com/manoj1995madushanka/instagramBrute
if %input5% == 14 start https://cdn.discordapp.com/attachments/929781350272221207/986388100479602778/USERNAME_CHECKER.zip
if %input5% == 15 start https://github.com/Rdimo/Hazard-Nuker
if %input5% == 16 start https://cdn.discordapp.com/attachments/929781350272221207/986387785864859758/AmazonGen.exe
if %input5% == 30 goto help
if %input5% == 29 goto logout
if %input5% == 17 start https://cdn.discordapp.com/attachments/979871604844683324/986395950195040266/Youtube_Downloader.exe
if %input5% == 18 start https://discord.gg/Zy7E7vMaWk
if %input5% == 19 start https://cdn.discordapp.com/attachments/979871604844683324/985207295011082321/WebhookRape.exe
if %input5% == 20 start https://fake-identity-generator.syntheticcc.repl.co
if %input5% == 21 start https://namso-gen.com/
if %input5% == 22 start https://mega.nz/file/wllHlKjD#O2Y0H1zRtJ6jqbC82CVlJ_vzK1T2FAxbtEXq8t1NQ0M
if %input5% == 28 goto youtube
if %input5% == 27 goto twitch
if %input5% == 25 goto token
if %input5% == 26 goto light
if %input5% == 24 goto hangman
if %input5% == 23 goto promo
goto more
:light
start chrome https://cdn.discordapp.com/attachments/980172473658130452/986419636008525875/IMG_0526.jpg
goto more
:token
start chrome https://cdn.discordapp.com/attachments/983339513109700618/983339582194061372/TokenGen.exe
goto more
:promo
start chrome https://cdn.discordapp.com/attachments/978636287634440252/986413176348348446/Promotion-Code-Gen_2.zip
goto more
:dragon
@echo off
:menu
color 0a
cls
echo DRAGON KILL
echo Choose the number:
echo 1. Start game
echo 2. Exit
set /p menu=
if '%menu%'=='1' (
goto sets
)
if '%menu%'=='2' (
exit
)else goto menu
:sets
cls
set /a money=1000
set /a health=1000
set /a potions=0
set /a damage=2
set /a dd=5
set /a dh=25
set /a moneygain=50
set /a levels=0
set /a new=%dh%+5
:start
cls
echo Money:%money%
echo Health:%health%
echo Number of healing potions:%potions%
echo Choose the number:
echo 1. Venture onward to the dragon
echo 2. Go to Store
echo 3. Go to Title screen
echo 4. Drink heal potion
set /p choose=
if '%choose%'=='1' (
cls
echo DO NOT HOLD THE ENTER KEY
pause
goto fight
)
if '%choose%'=='2' (
goto store
)
if '%choose%'=='3' (
goto menu
)
if '%choose%'=='4' (
goto nextx
)else goto start
:fight
cls
echo Health:%health%
echo Dragon's Health:%new%
echo You have encountered a dragon
pause
cls
echo Press enter to hit the dragon
set /p hit=
set /a new=%new%-%damage%
if %new% LSS 1 (
goto defeat
)
cls
echo Health:%health%
echo Dragon's Health:%new%
echo You have hit the dragon
echo The dragon lost %damage% health
pause
cls
echo The dragon has hit you!
set /a health=%health%-%dd%
if %health% LSS 1 (
goto defeated
)
pause
cls
goto fight
:defeat
cls
set /a dh=%dh%+20
set /a new=%dh%
set /a money=%money%+15
set /a levels=%levels%+1
echo You defeated the dragon and earned $15.
echo Congratz
pause
goto start
:defeated
cls
echo Sorry You died!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
echo RIP
echo You have killed %levels% dragon
pause
goto menu
:store
cls
echo Money:%money%
echo Welcome to the store!
echo Choose:
echo 1.Sword Upgrade $700
echo 2.Heal Potion $30
echo 3.Leave Store
set /p again=
if %again%==1 (
goto buysword
)
if %again%==2 (
goto buyheal
)
if %again%==3 (
goto start
)else goto store</p><p>:buysword
cls
set /a money=%money%-700
if %money% LSS 0 (
echo You cant buy that!
set /a money=%money%+700
pause
goto store
)else (
set /a damage=%damage%+4
echo You have upgraded your sword
pause
goto store
)
:buyheal
cls
set /a money=%money%-30
if %money% LSS 0 (
echo You cant buy that!
set /a money=%money%+30
pause
goto store
)else (
set /a potions=%potions%+1
echo You have bought one heal potion
pause
goto store
)
:nextx
cls
if %potions%==0 (
echo Sorry. You dont have any potions.
pause
goto start
)else (
set /a health=%health%+15
set /a potions=%potions%-1
echo You have used one potion
pause
goto start
)
:hangman
title Hangman
:menu
cls
echo Mode - 1) 1 player 2) 2+ player
echo 1 player -^> You %Pwins%:%Cwins% Computer
choice /c 0123456789 /n
if %errorlevel% == 2 goto 1player
if %errorlevel% GEQ 3 goto 2player
if %errorlevel% == 1 echo How do you play 0 player? TEACH ME YOUR WAYS!! && pause> nul && goto menu
:1player
cls
echo computer choosing word...
set word=%random%
:loop
if %word% LSS 31 goto chooseword
if %word% GTR 1000 set /a word=%word% -970
set /a word= %word% -30
if %word% LSS 31 goto chooseword
goto loop
:chooseword
if %word% == 1 set L1= B && set L2= A && set L3= N && set L4= J && set L5= O
if %word% == 2 set L1= H && set L2= O && set L3= R && set L4= N && set L5= S
if %word% == 3 set L1= S && set L2= E && set L3= W && set L4= E && set L5= R
if %word% == 4 set L1= M && set L2= E && set L3= L && set L4= O && set L5= N
if %word% == 5 set L1= L && set L2= U && set L3= R && set L4= I && set L5= D
if %word% == 6 set L1= K && set L2= R && set L3= I && set L4= L && set L5= L
if %word% == 7 set L1= D && set L2= W && set L3= A && set L4= R && set L5= F
if %word% == 8 set L1= R && set L2= U && set L3= G && set L4= B && set L5= Y
if %word% == 9 set L1= T && set L2= A && set L3= C && set L4= O && set L5= S
if %word% == 10 set L1= A && set L2= L && set L3= P && set L4= H && set L5= A
if %word% == 11 set L1= A && set L2= L && set L3= O && set L4= F && set L5= T
if %word% == 12 set L1= C && set L2= H && set L3= U && set L4= T && set L5= E
if %word% == 13 set L1= G && set L2= L && set L3= A && set L4= S && set L5= S
if %word% == 14 set L1= N && set L2= U && set L3= K && set L4= E && set L5= D
if %word% == 15 set L1= F && set L2= A && set L3= T && set L4= T && set L5= Yv
if %word% == 16 set L1= Q && set L2= U && set L3= A && set L4= C && set L5= K
if %word% == 17 set L1= P && set L2= R && set L3= I && set L4= M && set L5= E
if %word% == 18 set L1= W && set L2= I && set L3= T && set L4= T && set L5= Y
if %word% == 19 set L1= E && set L2= X && set L3= I && set L4= S && set L5= T
if %word% == 20 set L1= O && set L2= Z && set L3= O && set L4= N && set L5= E
if %word% == 21 set L1= I && set L2= D && set L3= E && set L4= A && set L5= S
if %word% == 22 set L1= J && set L2= O && set L3= L && set L4= L && set L5= Y
if %word% == 23 set L1= U && set L2= N && set L3= C && set L4= L && set L5= E
if %word% == 24 set L1= V && set L2= I && set L3= T && set L4= A && set L5= L
if %word% == 25 set L1= G && set L2= N && set L3= A && set L4= S && set L5= H
if %word% == 26 set L1= Y && set L2= O && set L3= U && set L4= T && set L5= H
if %word% == 27 set L1= Z && set L2= O && set L3= N && set L4= E && set L5= D
if %word% == 28 set L1= F && set L2= L && set L3= U && set L4= N && set L5= G
if %word% == 29 set L1= B && set L2= L && set L3= O && set L4= N && set L5= D
if %word% == 30 set L1= K && set L2= N && set L3= O && set L4= W && set L5= S
set H1=
set H2=
set H3=
set H4=
set H5=
set H6=
set H7=
set H8=
set H9=
set S1=_
set S2=_
set S3=_
set S4=_
set S5=_
set a=
set b=
set c=
set d=
set e=
set f=
set g=
set h=
set i=
set j=
set k=
set l=
set m=
set n=
set o=
set p=
set q=
set r=
set s=
set t=
set u=
set v=
set w=
set x=
set y=
set z=
set /a fail=0
:Changman
goto Ccheck1
:Cguess
set found=0
cls