update readme and scirpts

This commit is contained in:
Cooper Quintin
2024-01-05 16:44:19 -08:00
parent 7a6a61744b
commit 1b07e3bfeb
3 changed files with 33 additions and 7 deletions
+29 -6
View File
@@ -1,11 +1,21 @@
# Wave Hunter
# Orca
```
@@@ @@@ @@@ @@@@@@ @@@ @@@ @@@@@@@@ @@@ @@@ @@@ @@@ @@@ @@@ @@@@@@@ @@@@@@@@ @@@@@@@
@@! @@! @@! @@! @@@ @@! @@@ @@! @@! @@@ @@! @@@ @@!@!@@@ @!! @@! @@! @@@
@!! !!@ @!@ @!@!@!@! @!@ !@! @!!!:! @!@!@!@! @!@ !@! @!@@!!@! @!! @!!!:! @!@!!@!
!: !!: !! !!: !!! !: .:! !!: !!: !!! !!: !!! !!: !!! !!: !!: !!: :!!
::.: ::: : : : :: : :: :: : : : :.:: : :: : : : :: :: : : :
u. .u .
...ue888b .d88B :@8c . u
888R Y888r ="8888f8888r .udR88N us888u.
888R I888> 4888>'88" <888'888k .@88 "8888"
888R I888> 4888> ' 9888 'Y" 9888 9888
888R I888> 4888> 9888 9888 9888
u8888cJ888 .d888L .+ 9888 9888 9888
"*888*P" ^"8888*" ?8888u../ 9888 9888
'Y" "Y" "8888P' "888*""888"
"P' ^Y" ^Y'
Orca Realtime Cellular Analysis
_ _ _ _ _ _ _ _
)`'-.,_)`'-.,_)`'-.,_)`'-.,_)`'-.,_)`'-.,_)`'-.,_)`'-.,_
@@ -25,3 +35,16 @@ _ _ _ _ _ _ _ _
```
diag helper binary for the Orbic mobile hotspot. Based on code from [QCSuper](https://github.com/P1sec/QCSuper)
Build for arm using `cargo build` or just use the makefile
Run tests using `cargo test_pc`
## Setup
Root your device using the instructions here: https://xdaforums.com/t/resetting-verizon-orbic-speed-rc400l-firmware-flash-kajeet.4334899/#post-87855183
Push the scripts in `scripts/` to /etc/init.d on device and make a directory called /data/wavehunter using `adb shell` (and sshell for your root shell if you followed the steps above)
you also need to copy `config.toml.example` to /data/wavehunter/config.toml
Then run ./make.sh this will build the binary and push it over adb. Restart your device or run `/etc/init.d wavehunter_daemon start` on the device and you are good to go.
+3
View File
@@ -0,0 +1,3 @@
# cat config.toml
port = 8080
qmdl_path = "wavehunter.qmdl"
+1 -1
View File
@@ -6,7 +6,7 @@ case "$1" in
start)
echo -n "Starting wavehunter: "
start-stop-daemon -S -b --make-pidfile --pidfile /tmp/wavehunter.pid \
--startas /bin/bash -- -c "exec /data/wavehunter/wavehunter > /data/wavehunter/wavehunter.log 2>&1"
--startas /bin/bash -- -c "exec /data/wavehunter/wavehunter /data/wavehunter/config.toml > /data/wavehunter/wavehunter.log 2>&1"
echo "done"
;;
stop)