diff --git a/README.md b/README.md index 34a6ca86..515156b8 100644 --- a/README.md +++ b/README.md @@ -98,54 +98,3 @@ For more information on each function supported by Bruce, [read our wiki here](h # Disclaimer Bruce is a tool for cyber offensive and red team operations, distributed under the terms of the Affero General Public License (AGPL). It is intended for legal and authorized security testing purposes only. Use of this software for any malicious or unauthorized activities is strictly prohibited. By downloading, installing, or using Bruce, you agree to comply with all applicable laws and regulations. This software is provided free of charge, and we do not accept payments for copies or modifications. The developers of Bruce assume no liability for any misuse of the software. Use at your own risk. - -# LINUX BUILD -Requirements -```sh -sudo apt update -sudo apt install python3-pip -pip3 install esptool --user -sudo apt install dos2unix -pip3 install platformio -export PATH=$PATH:~/.local/bin -source ~/.bashrc -echo 'export PATH=$PATH:~/.local/bin' >> ~/.bashrc -source ~/.bashrc -``` -Fedora based just change to -```sh -sudo dnf update -sudo dnf install python3-pip -sudo dnf install dos2unix -``` - -After running the first time, a compilation error will occur. -```sh -pio run --target clean -pio run -e m5stack-cardputer -pio run -e m5stack-cplus2 -pio run -e m5stack-cplus1_1 -``` - -To bypass the error we need to run only once -```sh -chmod +x deauth_setup.sh -dos2unix deauth_setup.sh -./deauth_setup.sh -``` -(dos2unix fix common error: "./deauth_setup.sh -bash: ./deauth_setup.sh: /bin/bash^M: bad interpreter: No such file or directory" ) - -Step by Step to build the project - -```sh -chmod +x clean.sh -./clean.sh -pio run --target clean -pio run -e m5stack-cardputer -pio run -e m5stack-cplus2 -pio run -e m5stack-cplus1_1 -dos2unix build.sh -chmod +x build.sh -./build.sh -``` -(dos2unix fix common error: "./build.sh -bash: ./build.sh: /bin/bash^M: bad interpreter: No such file or directory" )