From 8082e013f4c369d73fccbad4add1e24fe6a06a4c Mon Sep 17 00:00:00 2001 From: Cooper Quintin Date: Tue, 22 Apr 2025 10:17:23 -0700 Subject: [PATCH 1/3] bump version --- Cargo.lock | 4 ++-- bin/Cargo.toml | 2 +- lib/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index db5c041..f329420 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1239,7 +1239,7 @@ checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09" [[package]] name = "rayhunter" -version = "0.2.6" +version = "0.2.8" dependencies = [ "bytes", "chrono", @@ -1260,7 +1260,7 @@ dependencies = [ [[package]] name = "rayhunter-daemon" -version = "0.2.6" +version = "0.2.8" dependencies = [ "axum", "chrono", diff --git a/bin/Cargo.toml b/bin/Cargo.toml index 580e52b..855a3ec 100644 --- a/bin/Cargo.toml +++ b/bin/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rayhunter-daemon" -version = "0.2.6" +version = "0.2.8" edition = "2021" [features] diff --git a/lib/Cargo.toml b/lib/Cargo.toml index d40b001..ba6af3f 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rayhunter" -version = "0.2.6" +version = "0.2.8" edition = "2021" description = "Realtime cellular data decoding and analysis for IMSI catcher detection" From 941ea59e1111e37b76dc7d7fec0e0eb346a20bd2 Mon Sep 17 00:00:00 2001 From: Cooper Quintin Date: Tue, 22 Apr 2025 10:57:49 -0700 Subject: [PATCH 2/3] I forgot rootshell and telecom parser --- Cargo.lock | 4 ++-- rootshell/Cargo.toml | 2 +- telcom-parser/Cargo.toml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f329420..b52f96c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1326,7 +1326,7 @@ checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f" [[package]] name = "rootshell" -version = "0.2.6" +version = "0.2.8" dependencies = [ "nix", ] @@ -1539,7 +1539,7 @@ checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" [[package]] name = "telcom-parser" -version = "0.2.6" +version = "0.2.8" dependencies = [ "asn1-codecs", "asn1-compiler", diff --git a/rootshell/Cargo.toml b/rootshell/Cargo.toml index 5d30b52..29b942a 100644 --- a/rootshell/Cargo.toml +++ b/rootshell/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rootshell" -version = "0.2.6" +version = "0.2.8" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/telcom-parser/Cargo.toml b/telcom-parser/Cargo.toml index e1b1577..280e5ad 100644 --- a/telcom-parser/Cargo.toml +++ b/telcom-parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "telcom-parser" -version = "0.2.6" +version = "0.2.8" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html From d95da9b382497ef98cbf3c297002302b964f9dba Mon Sep 17 00:00:00 2001 From: Tyler Cipriani Date: Sat, 19 Apr 2025 14:27:19 -0600 Subject: [PATCH 3/3] README: clarify "unzip" instructions The current `release.tar` (v0.2.7) lacks a `release` directory -- all files live at the root of the tar archive. But the README's Unzip instructions mention `cd`ing to `~/Downloads/release`, which implies that there is a `release` directory inside the tar. Rather than verify with `tar --list --file ~/Downloads/release.tar` I made a bad assumption, ran `tar xvf ./release.tar` in my `~/Downloads`, and then had to clean up my `~/Downloads` directory. This update clarifies that users should create the directory and extract the tar into that directory. --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 3bba41f..021262c 100644 --- a/README.md +++ b/README.md @@ -21,6 +21,8 @@ or on [eBay](https://www.ebay.com/sch/i.html?_nkw=orbic+rc400l). 2. Unzip the `release.tar`. Open the terminal and navigate to the folder ```bash + mkdir ~/Downloads/release + tar -xvf ~/Downloads/release.tar -C ~/Downloads/release cd ~/Downloads/release ```