From 5c4e7d56ff315745ee7d3d8806048460343ee042 Mon Sep 17 00:00:00 2001 From: jbanic Date: Thu, 6 Oct 2022 19:40:23 +0200 Subject: [PATCH] Update 'README.md' --- README.md | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) diff --git a/README.md b/README.md index 85c6d4c..909b03e 100644 --- a/README.md +++ b/README.md @@ -9,3 +9,46 @@ sudo apt update && sudo apt upgrade -y ``` +3. Download OpenCanary config file +```bash +wget https://download.csec.ba/tinkerboard/opencanary.conf +``` + +4. Install Python3 +```bash +sudo apt install -y python3-dev python3-pip python3-venv +``` + +5. Install prerequisites +```bash +sudo apt install -y build-essential libssl-dev libffi-dev libpcap-dev net-tools +``` + +6. Install Rust +```bash +sudo apt install rustc -y +``` + +7. Instal Cargo +```bash +sudo apt install cargo -y +``` + +8. Disable build Rust +```bash +export CRYPTOGRAPHY_DONT_BUILD_RUST= +``` + +9. Install dependencies +```bash +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 + +``` +