This commit is contained in:
Cooper Quintin
2024-02-28 16:05:46 -08:00
parent 958e67059d
commit 6be208698b
2 changed files with 7 additions and 2 deletions
+5
View File
@@ -4,6 +4,11 @@ version = "0.1.0"
edition = "2021"
description = "Realtime cellular data decoding and analysis for IMSI catcher detection"
[lib]
name = "rayhunter"
path = "src/lib.rs"
[dependencies]
bytes = "1.5.0"
chrono = "0.4.31"
+2 -2
View File
@@ -1,4 +1,4 @@
#!/bin/sh
cargo build --release --target="armv7-unknown-linux-gnueabihf" --bin rayhunter-daemon
adb push target/armv7-unknown-linux-gnueabihf/release/rayhunter-daemon /data/rayhunter/
cargo build --release --target="armv7-unknown-linux-gnueabihf"
adb push target/armv7-unknown-linux-gnueabihf/release/rayhunter-daemon /data/rayhunter/rayhunter
adb shell '/bin/rootshell -c "/etc/init.d/rayhunter_daemon restart"'