Skip to content
Snippets Groups Projects
Select Git revision
  • 94908a453c3276b31545eb440e6414d1eb24980b
  • main default protected
  • develop
  • ansible/update
4 results

tools.sh

Blame
  • tools.sh 1015 B
    #!/bin/bash
    
    # Nmap
    # John
    # Nikto
    # Dirb
    # XSStrike
    # SQLMap
    # Wfuzz
    # Fuff
    # Gobuster
    # Dirbuster
    # Exegol
    # Metasploit
    
    # Make a directory to store the tools
    mkdir /root/tools
    
    # Clone the XSStrike repository
    git clone https://github.com/s0md3v/XSStrike.git
    mv /XSStrike /root/tools
    
    # Pip install Wfuzz
    pip3 install wfuzz
    
    # Python3 pip install Exegol
    python3 -m pip install exegol
    
    # Make a directory to store the tools
    mkdir -p /root/tools
    
    # Clone the XSStrike repository
    git clone https://github.com/s0md3v/XSStrike.git /root/tools/XSStrike
    
    # Create a symbolic link to xsstrike.py and make it executable
    ln -s /root/tools/XSStrike/xsstrike.py /usr/local/bin/xsstrike
    chmod +x /usr/local/bin/xsstrike
    
    # Clone the metasploit repository
    curl https://raw.githubusercontent.com/rapid7/metasploit-omnibus/master/config/templates/metasploit-framework-wrappers/msfupdate.erb > msfinstall
    
    # Make the msfinstall script executable and install metasploit then clean up
    chmod 755 msfinstall
    ./msfinstall
    rm msfinstall