Last active
August 9, 2018 02:25
-
-
Save opnchaudhary/3731935 to your computer and use it in GitHub Desktop.
This script will download the security tools needed for pentesting in fedora
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
#Reconnaissance | |
yum install dsniff hping3 nc6 nc ncrack ngrep nmap nmap-frontend p0f sing scanssh scapy socat tcpdump unicornscan wireshark-gnome xprobe2 nbtscan tcpxtract firewalk hunt dnsenum iftop argus ettercap ettercap-gtk packETH iptraf pcapdiff etherape lynis netsniff-ng tcpjunk ssldump yersinia net-snmp openvas-client openvas-scanner | |
#Forensics | |
yum install ddrescue gparted hexedit testdisk foremost sectool-gui scanmem sleuthkit unhide examiner dc3dd afftools srm firstaidkit-plugin-all ntfs-3g ntfsprogs | |
#Web Application Testing | |
yum install httping nikto ratproxy lbd skipfish | |
#Wireless | |
yum install aircrack-ng airsnort kismet weplab wavemon | |
#Code Analysis | |
yum install splint pscan flawfinder rats | |
#Intrusion Detection | |
yum install chkrootkit aide labrea honeyd pads nebula rkhunter | |
#Password Tools | |
yum install john ophcrack medusa | |
#httpd | |
yum install httpd ruby mod_perl mod_python MySQL-python php php-pear php-mysql mod_security openssl | |
#Install Menus | |
yum install security-menus |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you!