-
Notifications
You must be signed in to change notification settings - Fork 7
/
pkglist.yaml
1145 lines (1145 loc) · 21.9 KB
/
pkglist.yaml
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
- category: CodeAnalysis
command: flawfinder --help | more
name: Flawfinder
pkg: flawfinder
exclude: 0
- category: CodeAnalysis
command: pscan -h
name: pscan
pkg: pscan
exclude: 0
- category: CodeAnalysis
command: rats --help | more
name: rats - Rough Auditing Tool for Security
pkg: rats
exclude: 0
- category: CodeAnalysis
command: splint -help
name: splint
pkg: splint
exclude: 0
- category: Forensics
command: binwalk -h
name: binwalk
pkg: binwalk
exclude: 1
- category: Forensics
command: cmospwd -h
name: BIOS tool
pkg: cmospwd
exclude: 1
- category: Forensics
command: dcfldd
name: Improved dd
pkg: dcfldd
exclude: 0
- category: Forensics
command: ddrescue -h
name: ddrescue
pkg: ddrescue
exclude: 0
- category: Forensics
command: driftnet -h
pkg: driftnet
name: driftnet
exclude: 0
- category: Forensics
command: examiner
name: ELF Examiner
pkg: examiner
exclude: 0
- category: Forensics
command: extundelete --help
name: extundelete
pkg: extundelete
exclude: 0
- category: Forensics
command: firstaidkit -g gtk
name: First Aid Kit
pkg: firstaidkit-gui
exclude: 0
- category: Forensics
command: foremost -h
name: Foremost Filecarver
pkg: foremost
exclude: 0
- category: Forensics
command: terrier -h
name: Image and Container analysis tool
pkg: terrier
exclude: 0
- category: Forensics
command: hfsutils
name: hfsutils
pkg: hfsutils
exclude: 1
- category: Forensics
command: ht -h
name: ht
pkg: ht
exclude: 0
- category: Forensics
command: nwipe
name: Securely erase disks
pkg: nwipe
exclude: 0
- category: Forensics
command: pdfcrack
name: PDF cracker
pkg: pdfcrack
exclude: 1
- category: Forensics
command: safecopy -h
name: safecopy
pkg: safecopy
exclude: 1
- category: Forensics
command: scalpel -h
name: scalpel
pkg: scalpel
exclude: 1
- category: Forensics
command: scrub
pkg: scrub
name: Disk scruber
exclude: 0
- category: Forensics
command: sectool-gui
name: sectool
pkg: sectool-gui
exclude: 0
- category: Forensics
command: srm -h
name: Securely Remove Files
pkg: srm
exclude: 0
- category: Forensics
command: testdisk -h
name: testdisk
pkg: testdisk
exclude: 0
- category: Forensics
command: unhide
name: unhide
pkg: unhide
exclude: 0
- category: Forensics
command: wipe -h
name: wipe
pkg: wipe
exclude: 1
- category: Forensics
command: ewfinfo
name: EWF tools
pkg: ewftools
exclude: 0
- category: Forensics
pkg: afftools
name: afftools
command: afftools
exclude: 0
- category: Forensics
pkg: dc3dd
name: dc3dd
command: dc3dd --help
exclude: 0
- category: Forensics
pkg: gparted
exclude: 0
- category: Forensics
pkg: scanmem
name: Debugging tool
command: scanmem -h
exclude: 0
- category: Forensics
pkg: sleuthkit
exclude: 0
- category: General
command: bonesi
name: DDoS Botnet Simulator
pkg: bonesi
exclude: 1
- category: General
command: badchars
name: HEX bad char generator
pkg: badchars
exclude: 1
- category: General
command: chisel
name: TCP tunnel over HTTP
pkg: chisel
exclude: 1
- category: General
command: shellz
name: Utility for shells and tunnels
pkg: shellz
exclude: 1
- category: General
command: dislocker -h
pkg: dislocker
exclude: 0
- category: General
command: dnstop
name: dnstop
pkg: dnstop
exclude: 1
- category: General
command: aiodnsbrute
name: DNS asynchronous brute force utility
pkg: aiodnsbrute
exclude: 1
- category: General
command: dnstwist
name: Domain name permutation engine
pkg: dnstwist
exclude: 1
- category: General
command: dnstracer -h
name: DNS tracer
pkg: dnstracer
exclude: 0
- category: General
command: macchanger --help
name: MAC address changer
pkg: macchanger
exclude: 0
- category: General
command: netsed -h
name: netsed
pkg: netsed
exclude: 1
- category: General
command: ntp
name: The NTP daemon and utilities
pkg: ntp
exclude: 0
- category: General
command: proxychains-ng
name: proxychains-ng
pkg: proxychains-ng
exclude: 1
- category: General
command: credslayer
name: Tool to xtract credentials
pkg: credslayer
exclude: 1
- category: General
command: ssh
name: SSH client
pkg: openssh
exclude: 0
- category: General
command: sslstrip -h
name: sslstrip
pkg: sslstrip
exclude: 1
- category: General
command: telnet --help
name: Telnet
pkg: telnet
exclude: 0
- category: General
pkg: firstaidkit-plugin-all
exclude: 0
- category: General
pkg: hans
command: hans -h
name: hans
exclude: 0
- category: General
pkg: goaltdns
command: goaltdns -h
name: Permutation generation tool
exclude: 0
- category: General
pkg: hexedit
command: hexedit -h
exclude: 0
- category: General
pkg: inxi
command: inxi -Fxxplu
exclude: 0
- category: General
pkg: irssi
exclude: 0
command: irssi
name: IRC client}
- category: General
pkg: mcabber
command: mcabber -h
exclude: 0
- category: General
pkg: mc
name: Midnight Commander
command: mc
exclude: 0
- category: General
pkg: mutt
exclude: 0
- category: General
pkg: nano
command: nano
name: nano Editor
exclude: 0
- category: General
pkg: nc6
command: nc6 -h
exclude: 0
- category: General
pkg: nc
command: nc -h
exclude: 0
- category: General
pkg: net-snmp
exclude: 0
- category: General
pkg: net-snmp-utils
exclude: 0
- category: General
pkg: ngrep
command: ngrep -h
exclude: 0
- category: General
pkg: ntfs-3g
exclude: 0
- category: General
pkg: ntfsprogs
exclude: 0
- category: General
pkg: pcapdiff
exclude: 0
- category: General
pkg: pcapfix
exclude: 0
- category: General
pkg: picviz-gui
exclude: 1
- category: General
pkg: scap-security-guide
exclude: 0
- category: General
pkg: scap-workbench
exclude: 0
- category: General
pkg: screen
exclude: 0
- category: General
pkg: security-menus
exclude: 0
- category: General
pkg: setools-gui
exclude: 0
- category: General
pkg: vim-enhanced
exclude: 0
- category: General
pkg: wget
command: wget -h
name: wget File downloader
exclude: 0
- category: General
pkg: curl
command: curl -h
name: curl File downloader
exclude: 0
- category: General
pkg: pwncat
command: pwncat -h
name: TCP/UDP communication suite
exclude: 0
- category: IntrusionDetection
command: aide -h
name: aide
pkg: aide
exclude: 1
- category: IntrusionDetection
command: nebula -h
pkg: nebula
name: nebula
exclude: 1
- category: IntrusionDetection
command: pads -h
name: Passive Asset Detection System
pkg: pads
exclude: 1
- category: IntrusionDetection
command: psad
name: psad
pkg: psad
exclude: 1
- category: IntrusionDetection
command: rkhunter
name: Root Kit Hunter
pkg: rkhunter
exclude: 1
- category: IntrusionDetection
command: tripwire
name: tripwire
pkg: tripwire
exclude: 1
- category: IntrusionDetection
pkg: chkrootkit
exclude: 0
- category: NetworkStatistics
command: bmon -h
pkg: bmon
name: bmon
exclude: 0
- category: NetworkStatistics
command: captcp -h
pkg:
name: captcp
exclude: 0
- category: NetworkStatistics
command: goaccess
name: A web log analyzer and viewer
pkg: goaccess
exclude: 1
- category: NetworkStatistics
command: httpress -h
name: HTTP stress & benchmark utility
pkg: httpress
exclude: 0
- category: NetworkStatistics
command: iftop
name: iftop
pkg: iftop
exclude: 0
- category: NetworkStatistics
command: iperf -h
name: iperf
pkg: iperf
exclude: 0
- category: NetworkStatistics
command: iptraf-ng
name: iptraf-ng
pkg: iptraf-ng
exclude: 0
- category: NetworkStatistics
command: lnav -h
name: A log viewer and analyzer
pkg: lnav
exclude: 1
- category: NetworkStatistics
command: netactview
name: netactview
pkg: netactview
exclude: 0
- category: NetworkStatistics
command: netdisco -h
pkg: netdisco
name: netdisco
exclude: 1
- category: NetworkStatistics
command: nethogs -h
name: nethogs
pkg: nethogs
exclude: 0
- category: NetworkStatistics
command: nfswatch -h
name: nfswatch
pkg: nfswatch
exclude: 0
- category: NetworkStatistics
command: nicstat
name: nicstat
pkg: nicstat
exclude: 0
- category: NetworkStatistics
command: nload -h
pkg: nload
name: nload
exclude: 0
- category: NetworkStatistics
command: ntop -h
pkg: ntop
name: ntop
exclude: 0
- category: NetworkStatistics
command: scamper
name: scamper
pkg: scamper
exclude: 0
- category: NetworkStatistics
command: sockperf -h
pkg: sockperf
name: sockperf
exclude: 0
- category: NetworkStatistics
command: tcptrack -h
name: tcptrack
pkg: tcptrack
exclude: 0
- category: NetworkStatistics
command: trafshow -h
name: Network traffic visualization
pkg: trafshow
exclude: 0
- category: NetworkStatistics
command: uperf
pkg: uperf
name: Network performance tool
exclude: 0
- category: NetworkStatistics
command: vnstat -h
name: Traffic monitor
pkg: vnstat
exclude: 0
- category: PasswordTools
command: hydra -h
name: Network log-on cracker
pkg: hydra
exclude: 0
- category: PasswordTools
command: john
name: Password cracker
pkg: john
exclude: 0
- category: PasswordTools
command: medusa -d
name: Medusa Brute Force
pkg: medusa
exclude: 0
- category: PasswordTools
command: ncrack -h
name: Network auth cracking tool
pkg: ncrack
exclude: 0
- category: PasswordTools
command: ophcrack
name: Objectif Securite ophcrack
pkg: ophcrack
exclude: 0
- category: PasswordTools
command: pwgen -h
name: Password generator
pkg: pwgen
exclude: 0
- category: PasswordTools
command: sucrack -h
name: sucrack
pkg: sucrack
exclude: 0
- category: PasswordTools
command: xortool -h
name: xortool
pkg: xortool
exclude: 0
- category: PasswordTools
command: hashcat -h
name: Advanced password recovery utility
pkg: hashcat
exclude: 1
- category: Reconnaissance
command: argus -h
name: argus
pkg: argus
exclude: 1
- category: Reconnaissance
command: arpon -h
name: arpon
pkg: ArpON
exclude: 1
- category: Reconnaissance
command: arp-scan -h
name: An ARP scanner
pkg: arp-scan
exclude: 0
- category: Reconnaissance
command: bannergrab -h
name: Banner grabbing
pkg: bannergrab
exclude: 0
- category: Reconnaissance
command: bkhive
pkg: bkhive
name: Recover Syskey bootkey
exclude: 1
- category: Reconnaissance
command: ciphertest -h
pkg: ciphertest
name: ciphertest
exclude: 0
- category: Reconnaissance
command: testssl -h
pkg: testssl
name: testssl
exclude: 0
- category: Reconnaissance
command: dnsenum -h
name: dnsenum
pkg: dnsenum
exclude: 0
- category: Reconnaissance
command: massdns -h
name: High-performance DNS stub resolver
pkg: massdns
exclude: 0
- category: Reconnaissance
command: shuffledns -h
name: Wrapper for massdns
pkg: shuffledns
exclude: 0
- category: Reconnaissance
command: dnsmap
pkg: dnsmap
name: Sub-domains bruteforcer
exclude: 0
- category: Reconnaissance
command: dnsprobe
pkg: dnsprobe
name: Tool to perform multiple DNS queries
exclude: 0
- category: Reconnaissance
command: dsniff -h
name: Network auditing
pkg: dsniff
exclude: 0
- category: Reconnaissance
command: ettercap -C
name: ettercap
pkg: ettercap
exclude: 0
- category: Reconnaissance
command: firewalk
name: Firewalk
pkg: firewalk
exclude: 0
- category: Reconnaissance
command: fpdns -h
name: Fingerprint DNS servers
pkg: fpdns
exclude: 0
- category: Reconnaissance
command: fping -h
name: Parallelized ping-like utility
pkg: fping
exclude: 0
- category: Reconnaissance
command: ldapdomaindump -h
name: AD information dumper
pkg: ldapdomaindump
exclude: 0
- category: Reconnaissance
command: ldeep -h
name: LDAP enumeration utility
pkg: ldeep
exclude: 0
- category: Reconnaissance
command: hping -h
name: hping
pkg: hping3
exclude: 0
- category: Reconnaissance
command: http -h
name: A Curl-like tool
pkg: httpie
exclude: 1
- category: Reconnaissance
command: httpry -h
name: httpry
pkg: httpry
exclude: 0
- category: Reconnaissance
command: mass3 -h
name: Buckets enumerator
pkg: mass3
exclude: 0
- category: Reconnaissance
command: httrack -h
name: HTTrack Website Copier
pkg: httrack
exclude: 1
- category: Reconnaissance
command: fuzza -h
name: TCP fuzzing tool
pkg: fuzza
exclude: 1
- category: Reconnaissance
command: wfuzz -h
name: Web fuzzing tool
pkg: wfuzz
exclude: 1
- category: Reconnaissance
command: goddi
name: Dumper for AD information
pkg: goddi
exclude: 0
- category: Reconnaissance
command: hunt
name: Hunt
pkg: hunt
exclude: 0
- category: Reconnaissance
command: ike-scan -h
pkg: ike-scan
name: ike-scan
exclude: 0
- category: Reconnaissance
command: netscanner -h
name: TCP/UDP scanner
pkg: netscanner
exclude: 0
- category: Reconnaissance
command: lynis -h
name: lynis
pkg: lynis
exclude: 0
- category: Reconnaissance
command: onionscan -h
name: Tool for investigating the Dark Web
pkg: onionscan
exclude: 0
- category: Reconnaissance
command: masscan -h
name: masscan
pkg: masscan
exclude: 0
- category: Reconnaissance
command: naabu -h
name: Fast port scanner
pkg: naabu
exclude: 0
- category: Reconnaissance
command: mausezahn -h
name: A packet generator
pkg: mausezahn
exclude: 0
- category: Reconnaissance
command: mtr -h
name: My traceroute
pkg: mtr
exclude: 0
- category: Reconnaissance
command: pypykatz -h
name: Python implementation of Mimikatz
pkg: pypykatz
exclude: 0
- category: Reconnaissance
command: nbtscan
name: nbtscan
pkg: nbtscan
exclude: 0
- category: Reconnaissance
command: netsniff-ng -h
name: netsniff-ng
pkg: netsniff-ng
exclude: 0
- category: Reconnaissance
command: ohmybackup -h
name: Scan for backup parts
pkg: ohmybackup
exclude: 0
- category: Reconnaissance
command: nmap -h
name: nmap
pkg: nmap
exclude: 0
- category: Reconnaissance
command: nmbscan
name: NMB/SMB network scanner
pkg: nmbscan
exclude: 0
- category: Reconnaissance
command: onesixtyone
name: SNMP scanner
pkg: onesixtyone
exclude: 1
- category: Reconnaissance
command: p0f -h
name: p0f
pkg: p0f
exclude: 0
- category: Reconnaissance
command: paris-traceroute -h
name: paris-traceroute
pkg: paris-traceroute
exclude: 0
- category: Reconnaissance
command: pyrit
name: pyrit
pkg: pyrit
exclude: 1
- category: Reconnaissance
command: raddump -h
name: raddump
pkg: raddump
exclude: 1
- category: Reconnaissance
command: scanssh -h
name: scanssh
pkg: sshscan
exclude: 1
- category: Reconnaissance
command: scapy -h
name: scapy
pkg: scapy
exclude: 0
- category: Reconnaissance
command: sing -h
name: sing
pkg: sing
exclude: 0
- category: Reconnaissance
command: slowhttptest -h
name: slowhttptest
pkg: slowhttptest
exclude: 0
- category: Reconnaissance
command: snmpcheck
pkg: snmpcheck
name: SNMP enumerator
exclude: 0
- category: Reconnaissance
command: socat
name: Socket cat
pkg: socat
exclude: 0
- category: Reconnaissance
command: ssldump -h
name: ssldump
pkg: ssldump
exclude: 0
- category: Reconnaissance
command: sslscan --help | more
pkg: sslscan
name: SSL port scanner
exclude: 0
- category: Reconnaissance
command: sslsplit -h
name: SSL/TLS interception
pkg: sslsplit
exclude: 0
- category: Reconnaissance
command: subnetcalc
name: An IPv4/IPv6 Subnet Calculator
pkg: subnetcalc
exclude: 1
- category: Reconnaissance
command: tcpcrypt -h
pkg: tcpcrypt
name: TCP connection encrypter
exclude: 0
- category: Reconnaissance
command: tcpdump -h
name: tcpdump
pkg: tcpdump
exclude: 0
- category: Reconnaissance
command: tcpflow -h
pkg: tcpflow
name: Network traffic recorder
exclude: 0
- category: Reconnaissance
command: tcpick --help
pkg: tcpick
name: TCP stream sniffer
exclude: 0
- category: Reconnaissance
command: tcpreen
name: tcpreen
pkg: tcpreen
exclude: 1
- category: Reconnaissance
command: tcpreplay
name: tcpreplay
pkg: tcpreplay
exclude: 1
- category: Reconnaissance
command: tcpxtract
name: tcpxtract
pkg: tcpxtract
exclude: 0
- category: Reconnaissance
command: thcsyn6
name: IPv6 pkg generator
pkg: thc-ipv6
exclude: 0
- category: Reconnaissance
command: tlssled -h
pkg: tlssled
name: TLSSLed
exclude: 0
- category: Reconnaissance
command: unicornscan -h
name: unicornscan
pkg: unicornscan
exclude: 0
- category: Reconnaissance
command: usbsniff -h
name: USB traffic capture and replay tool
pkg: usbsniff
exclude: 0
- category: Reconnaissance
command: whois -h
name: whois
pkg: whois
exclude: 0
- category: Reconnaissance
command: yersinia -G
name: Yersinia
pkg: yersinia
exclude: 0
- category: Reconnaissance
command: zmap -h
name: zmap
pkg: zmap
exclude: 0
- category: Reconnaissance
command: subfinder -h
name: subfinder
pkg: subfinder
exclude: 0
- category: Reconnaissance
pkg: argus-clients
exclude: 1
- category: Reconnaissance
pkg: etherape
exclude: 1
- category: Reconnaissance
pkg: packETH
exclude: 1
- category: Reconnaissance
pkg: wireshark
exclude: 0
- category: Reconnaissance
pkg: wireshark-gtk
exclude: 0
- category: Reconnanssance
command: dhcping
name: dhcping
pkg: dhcping
exclude: 0
- category: Reconnanssance
command: echoping -h
name: echoping
pkg: echoping
exclude: 0
- category: Reconnanssance
command: asnip -h
name: ASN detail retriever
pkg: asnip
exclude: 0
- category: Reconnanssance
command: swaks
name: SMTP transaction tester
pkg: swaks
exclude: 0
- category: Reconnanssance
command: wbox
name: wbox
pkg: wbox
exclude: 0
- category: Reconnanssance
command: socialscan
name: Scan for user names
pkg: socialscan
exclude: 0
- category: Reconnanssance
command: httprobe
name: Probing tool for working HTTP and HTTPS servers
pkg: httprobe
exclude: 0
- category: Reconnanssance
command: httpdump
name: Capture and parse HTTP traffic
pkg: httpdump
exclude: 0
- category: Reconnanssance
command: shodan
name: CLI tool for Shodan
pkg: shodan
exclude: 0
- category: Reconnanssance
command: nth
name: The Modern Hash Identification System
pkg: python-name-that-hash
exclude: 0
- category: StressTesting
command: ab -h
name: Apache Benchmark
pkg: httpd-tools
exclude: 0
- category: StressTesting
command: hulk -h
name: DoS tool
pkg: hulk
exclude: 0
- category: StressTesting
command: siege -h
name: siege
pkg: siege
exclude: 0
- category: SystemStatistics
command: glances -h
name: glances
pkg: glances
exclude: 0
- category: SystemStatistics
command: htop -h
name: htop
pkg: htop
exclude: 0
- category: SystemStatistics
command: mpstat -h
name: mpstat
pkg: sysstat
exclude: 0
- category: SystemStatistics
command: sar -h
name: sar
pkg: sar
exclude: 0
- category: VoIP
pkg: sipp
command: sipp
name: sipp
exclude: 0
- category: VoIP
pkg: sipsak
command: sipsak