Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
pr3y authored Jun 10, 2024
1 parent 70e7ed0 commit 9a05673
Showing 1 changed file with 0 additions and 51 deletions.
51 changes: 0 additions & 51 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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" )

0 comments on commit 9a05673

Please sign in to comment.