From 1cc5eb4c4c6f486dfeaab4be31f32a13a3897c95 Mon Sep 17 00:00:00 2001 From: Markus Unterwaditzer Date: Mon, 14 Apr 2025 23:28:21 +0200 Subject: [PATCH 1/6] README: Do not mention SD card Apparently SD card is not a thing on Orbic, only on TP-Link. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bd9bc1a..fac07cc 100644 --- a/README.md +++ b/README.md @@ -54,7 +54,7 @@ Great news: if you've successfully installed rayhunter, you already know how to ## Usage (viewing the web UI) -Once installed, Rayhunter will run automatically whenever your Orbic device is running. You'll see a green line on top of the device's display to indicate that it's running and recording to the SD-card. [The line will turn red](#red) once a potential IMSI catcher has been found, until the device is rebooted or a new recording is started through the web UI. +Once installed, Rayhunter will run automatically whenever your Orbic device is running. You'll see a green line on top of the device's display to indicate that it's running and recording. [The line will turn red](#red) once a potential IMSI catcher has been found, until the device is rebooted or a new recording is started through the web UI. It also serves a web UI that provides some basic controls, such as being able to start/stop recordings, download captures, and view heuristic analyses of captures. From 6ea2b0a4e6686869695e8f9c5cf8b94b01d96019 Mon Sep 17 00:00:00 2001 From: Markus Unterwaditzer Date: Wed, 16 Apr 2025 20:20:35 +0200 Subject: [PATCH 2/6] Remove outdated instructions from README `cargo test_pc` is not a thing, remove these instructions although there currently is no replacement. --- README.md | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/README.md b/README.md index fac07cc..c606215 100644 --- a/README.md +++ b/README.md @@ -122,28 +122,6 @@ rustup target add armv7-unknown-linux-gnueabihf Now you can root your device and install Rayhunter by running `./tools/install-dev.sh` -### If you're on Windows or can't run the install scripts - -* Root your device on Windows using the instructions here: - -* Build for arm using `cargo build` - -* Run tests using `cargo test_pc` - -* Push the scripts in `scripts/` to `/etc/init.d` on device and make a directory called `/data/rayhunter` 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/rayhunter/config.toml` - -* Then run `./make.sh` this will build the binary and push it over adb. Restart your device or run `/etc/init.d/rayhunter_daemon start` on the device and you are good to go. - -* Write your code and write tests - -* Build for arm using `cargo build` - -* Run tests using `cargo test_pc` - -* push to the device with `./make.sh` - ## Support and Discussion If you're having issues installing or using Rayhunter, please open an issue in this repo. Join us in the `#rayhunter` channel of [EFF's Mattermost](https://opensource.eff.org/signup_user_complete/?id=6iqur37ucfrctfswrs14iscobw&md=link&sbr=su) instance to chat! From 056cdac54609a84649d42051f8efad6d7bb5a090 Mon Sep 17 00:00:00 2001 From: Markus Unterwaditzer Date: Wed, 16 Apr 2025 20:31:31 +0200 Subject: [PATCH 3/6] remove Silicon from Mac, we do support intel --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c606215..5e55201 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ Linux/Qualcom devices, but this is the only one we have tested on. You can buy the orbic [using bezos bucks](https://www.amazon.com/Orbic-Verizon-Hotspot-Connect-Enabled/dp/B08N3CHC4Y), or on [eBay](https://www.ebay.com/sch/i.html?_nkw=orbic+rc400l). -## Setup (Silicon Mac, Linux) +## Setup (Mac, Linux) 1. Download the latest `release.tar` from the [Rayhunter releases page](https://github.com/EFForg/rayhunter/releases) 2. Unzip the `release.tar`. Open the terminal and navigate to the folder From 833d0e41b413bf399f6f9a704308d8f2d7c49d91 Mon Sep 17 00:00:00 2001 From: Markus Unterwaditzer Date: Wed, 16 Apr 2025 20:56:38 +0200 Subject: [PATCH 4/6] more cleanup --- README.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5e55201..8510247 100644 --- a/README.md +++ b/README.md @@ -43,10 +43,9 @@ or on [eBay](https://www.ebay.com/sch/i.html?_nkw=orbic+rc400l). * The install script has only been tested for Linux on the latest version of Ubuntu. If it fails you will need to follow the install steps outlined in **Development** below. * On macOS if you encounter an error that says "No Orbic device found," it may because you the "Allow accessories to connect" security setting set to "Ask for approval." You may need to temporarily change it to "Always" for the script to run. Make sure to change it back to a more secure setting when you're done. -## Setup (Intel Mac, Windows) +## Setup (Windows) -* **Intel Mac:** The install script also won't work on older Macs with Intel chips, for those Macs you will need to follow the [instructions for installing Rayhunter on Intel Macs](https://github.com/EFForg/rayhunter/wiki/Install-Rayhunter-on-Mac-Intel-devices) -* **Windows:** We don't currently support automated installs on Windows, you will have to follow the instructions in the **Development** section below. +We don't currently support automated installs on Windows. ## Updating From 531e9aa6fb6a5f42902d1e8ae34358004b9458c6 Mon Sep 17 00:00:00 2001 From: Markus Unterwaditzer Date: Thu, 17 Apr 2025 14:12:24 +0200 Subject: [PATCH 5/6] this documentation is also not useful to end users --- README.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/README.md b/README.md index 8510247..7627fa8 100644 --- a/README.md +++ b/README.md @@ -125,10 +125,6 @@ Now you can root your device and install Rayhunter by running `./tools/install-d If you're having issues installing or using Rayhunter, please open an issue in this repo. Join us in the `#rayhunter` channel of [EFF's Mattermost](https://opensource.eff.org/signup_user_complete/?id=6iqur37ucfrctfswrs14iscobw&md=link&sbr=su) instance to chat! -## Documentation - -* Build docs locally using `RUSTDOCFLAGS="--cfg docsrs" cargo doc --no-deps --all-features --open` - **LEGAL DISCLAIMER:** Use this program at your own risk. We believe running this program does not currently violate any laws or regulations in the United States. However, we are not responsible for civil or criminal liability resulting from the use of this software. If you are located outside of the US please consult with an attorney in your country to help you assess the legal risks of running this program. *Good Hunting!* From a7ce1ad4d31c0ed48b0448f54c958a9709cb8def Mon Sep 17 00:00:00 2001 From: Cooper Quintin Date: Fri, 18 Apr 2025 12:34:53 -0700 Subject: [PATCH 6/6] update mm invite --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7627fa8..3bba41f 100644 --- a/README.md +++ b/README.md @@ -123,7 +123,7 @@ Now you can root your device and install Rayhunter by running `./tools/install-d ## Support and Discussion -If you're having issues installing or using Rayhunter, please open an issue in this repo. Join us in the `#rayhunter` channel of [EFF's Mattermost](https://opensource.eff.org/signup_user_complete/?id=6iqur37ucfrctfswrs14iscobw&md=link&sbr=su) instance to chat! +If you're having issues installing or using Rayhunter, please open an issue in this repo. Join us in the `#rayhunter` channel of [EFF's Mattermost](https://opensource.eff.org/signup_user_complete/?id=r1b6cnta9bysxk6im3kuabiu1y&md=link&sbr=su) instance to chat! **LEGAL DISCLAIMER:** Use this program at your own risk. We believe running this program does not currently violate any laws or regulations in the United States. However, we are not responsible for civil or criminal liability resulting from the use of this software. If you are located outside of the US please consult with an attorney in your country to help you assess the legal risks of running this program.