diff --git a/.cargo/config.toml b/.cargo/config.toml index 69ddfd6..5798c45 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -4,7 +4,7 @@ rustflags = ["-C", "target-feature=+crt-static"] [alias] test_pc = "test --target=x86_64-unknown-linux-gnu" -debug_pc = "build --target=x86_64-unknown-linux-gnu" +build_pc = "build --target=x86_64-unknown-linux-gnu" [target.armv7-unknown-linux-gnueabihf] diff --git a/README.md b/README.md index 12251c7..c0cf67a 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ _ _ _ _ _ _ _ _ \__; ``` -Ray Hunter is an IMSI Catcher Catcher for the Orbic mobile hotspot. Based on code from [QCSuper](https://github.com/P1sec/QCSuper) +Rayhunter is an IMSI Catcher Catcher for the Orbic mobile hotspot. Based on code from [QCSuper](https://github.com/P1sec/QCSuper) **THIS CODE IS PROOF OF CONCEPT AND SHOULD NOT BE RELIED UPON IN HIGH RISK SITUATIONS** diff --git a/config.toml.example b/config.toml.example index 7efaea2..cd911e4 100644 --- a/config.toml.example +++ b/config.toml.example @@ -1,4 +1,4 @@ # cat config.toml -qmdl_store_path = "/data/wavehunter/qmdl" +qmdl_store_path = "/data/rayhunter/qmdl" port = 8080 readonly_mode = false diff --git a/make.sh b/make.sh index 4f5682e..e343dde 100755 --- a/make.sh +++ b/make.sh @@ -1,2 +1,2 @@ -cargo build -adb push target/armv7-unknown-linux-gnueabihf/debug/rayhunter /data/rayhunter/rayhunter +cargo build --release +adb push target/armv7-unknown-linux-gnueabihf/release/rayhunter /data/rayhunter/rayhunter diff --git a/scripts/rayhunter_daemon b/scripts/rayhunter_daemon index 32f0573..d190b73 100644 --- a/scripts/rayhunter_daemon +++ b/scripts/rayhunter_daemon @@ -19,7 +19,7 @@ start) $0 start ;; *) - echo "Usage atfwd_daemon{ start | stop | restart }" >&2 + echo "Usage rayhunter_daemon { start | stop | restart }" >&2 exit 1 ;; esac diff --git a/wavehunter/src/config.rs b/wavehunter/src/config.rs index 1e6ae39..ad7102c 100644 --- a/wavehunter/src/config.rs +++ b/wavehunter/src/config.rs @@ -19,7 +19,7 @@ pub struct Config { impl Default for Config { fn default() -> Self { Config { - qmdl_store_path: "/data/wavehunter/qmdl".to_string(), + qmdl_store_path: "/data/rayhunter/qmdl".to_string(), port: 8080, readonly_mode: false, }