appease clippy

This commit is contained in:
Cooper Quintin
2024-01-29 16:44:03 -08:00
parent 6086a9962c
commit 50c7a66254
6 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -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]
+1 -1
View File
@@ -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**
+1 -1
View File
@@ -1,4 +1,4 @@
# cat config.toml
qmdl_store_path = "/data/wavehunter/qmdl"
qmdl_store_path = "/data/rayhunter/qmdl"
port = 8080
readonly_mode = false
+2 -2
View File
@@ -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
+1 -1
View File
@@ -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
+1 -1
View File
@@ -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,
}