Files
OpenCanary_Tinkerboard/README.md
T
2022-10-06 19:40:23 +02:00

898 B

OpenCanary

Device preparation

  1. Install OS Armbian 11 Bullseye

  2. Update and upgrade

sudo apt update && sudo apt upgrade -y
  1. Download OpenCanary config file
wget https://download.csec.ba/tinkerboard/opencanary.conf
  1. Install Python3
sudo apt install -y python3-dev python3-pip python3-venv
  1. Install prerequisites
sudo apt install -y build-essential libssl-dev libffi-dev libpcap-dev net-tools
  1. Install Rust
sudo apt install rustc -y
  1. Instal Cargo
sudo apt install cargo -y
  1. Disable build Rust
export CRYPTOGRAPHY_DONT_BUILD_RUST=
  1. Install dependencies
mkdir ~/opencanary
cd ~/opencanary
python3 -m venv env
source env/bin/activate
pip install wheel
pip install rdpy
pip install opencanary
pip install scapy pcapy