Compare commits

...

16 Commits
v2.0 ... main

Author SHA1 Message Date
l0nia
d3aa7ae988
Merge pull request #48 from hlst2/main
Main
2025-02-24 08:24:32 +01:00
l0nia
5e0f652e40
Add steps to upgrade blue-merle to README.md 2025-02-08 20:19:34 +01:00
l0nia
39cda00dbf
Merge pull request #54 from yannis-srl/fix-gh-actions-deprecation-notice
Fix: GH actions artifact actions deprecation warning
2025-01-30 08:05:19 +01:00
yannis-srl
822bca6f4f
Bumping upload to v4 2025-01-10 14:42:18 +01:00
muelli
f3ef189b26
Firmeware Version 4.3.19 Compatible 2024-10-01 08:16:51 +02:00
hlst2
770072b531 Merge branch 'main' of https://github.com/hlst2/blue-merle 2024-09-30 21:52:31 -04:00
muelli
037ef9f306 added full tac list from osmocom 2024-09-30 21:51:41 -04:00
nestire
6d61722bf2
change version to 2.0.4 2024-09-23 11:50:27 +02:00
nestire
bc67b8107c
support fw 4.3.19 2024-09-23 11:48:53 +02:00
muelli
53d8f3afe7
Merge pull request #41 from nestire/main
bump for version 4.3.17 of mudi firmware
2024-07-01 10:50:43 +02:00
nestire
c31b0b1779
change version to 2.0.3 2024-06-24 12:11:36 +02:00
nestire
8a20a370c8
support fw 4.3.17 2024-06-24 12:02:36 +02:00
nestire
76c0fe482b
bump for version 4.3.12 of mudi firmware 2024-05-21 14:35:48 +02:00
muelli
1aa741ffd8
Merge pull request #28 from nestire/main
mcu msg stage2 made more clear, add new + old IMEI shown in the end to visualy check + Firmware 4.3.9 check
2024-04-25 13:01:47 +02:00
nestire
8f33aeac76
add firmware 4.3.9 to supported firmware 2024-02-27 17:11:35 +01:00
nestire
68e15a863c
mcu messages stage2 made more clear, add new + old IMEI shown in the end to visualy check 2024-01-30 16:23:58 +01:00
6 changed files with 30 additions and 17 deletions

View File

@ -57,7 +57,7 @@ jobs:
run: |
mkdir package-output
rsync -av sdk/"${SDK_FILENAME%.tar.xz}"/bin/packages/mips_24kc/base/"${{ env.owrt-package }}"*.ipk package-output/
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: ${{ steps.generate-name.outputs.artifact-name }}
path: package-output/

View File

@ -1,7 +1,7 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=blue-merle
PKG_VERSION:=2.0.0
PKG_VERSION:=2.0.4
PKG_RELEASE:=$(AUTORELEASE)
PKG_MAINTAINER:=Matthias <matthias@srlabs.de>
@ -44,7 +44,7 @@ define Package/blue-merle/preinst
if [ -f "/tmp/sysinfo/model" ] && [ -f "/etc/glversion" ]; then
echo "You have a `cat /tmp/sysinfo/model`, running firmware version `cat /etc/glversion`."
fi
echo "blue-merle has only been tested with GL-E750 Mudi Version 4.3.8."
echo "blue-merle has only been tested with GL-E750 Mudi Versions up to 4.3.19"
echo "The device or firmware version you are using have not been verified to work with blue-merle."
echo -n "Would you like to continue on your own risk? (y/N): "
read answer
@ -63,11 +63,11 @@ define Package/blue-merle/preinst
if grep -q "GL.iNet GL-E750" /proc/cpuinfo; then
GL_VERSION=$$(cat /etc/glversion)
case $$GL_VERSION in
4.3.8)
echo Version $$GL_VERSION is supported
exit 0
;;
4.*)
4.3.19)
echo Version $$GL_VERSION is supported
exit 0
;;
4.*)
echo Version $$GL_VERSION is *probably* supported
ABORT_GLVERSION
;;

View File

@ -11,14 +11,14 @@ The *blue-merle* software package enhances anonymity and reduces forensic tracea
## Compatibility
**This README covers the v2.0 release**, which has been verified to work with GL-E750 Mudi version 4.3.8.
**This README covers the v2.0 release**, which has been verified to work with GL-E750 Mudi version 4.3.8 - 4.3.12 .
Refer back to the [v1.0 README file](https://github.com/srlabs/blue-merle/tree/cb4d73731fe432e0f101284307101c250ca4b845) for information about the first release, which works on older firmware releases.
A MCU version >= 1.0.7 is required. The MCU may be updated through the *blue-merle* package installer or [manually](https://github.com/gl-inet/GL-E750-MCU-instruction). SRLabs cannot guarantee that the project assets within this Git repository will be compatible with future firmware updates.
## Installation
### Online install
### Online install & upgrade
The online install method requires an **active Internet connection** on your Mudi device to **download up-to-date dependencies**.
@ -28,6 +28,10 @@ Download the [prebuilt v2.0 release package](https://github.com/srlabs/blue-merl
opkg update
opkg install blue-merle*.ipk
```
To uprade blue-merle, download the newest blue-merle*.ipk, copy it to your Mudi and reinstall with:
```sh
opkg install --force-reinstall blue-merle*.ipk
```
### Offline install

View File

@ -6,6 +6,7 @@ import serial
import re
from functools import reduce
from enum import Enum
from tacs import tacs
class Modes(Enum):
@ -29,11 +30,11 @@ modes.add_argument("-r", "--random", help="Sets random IMEI",
# Example IMEI: 490154203237518
imei_length = 14 # without validation digit
# IDEA: make prefix configurable via CLI option
imei_prefix = ["35674108", "35290611", "35397710", "35323210", "35384110",
"35982748", "35672011", "35759049", "35266891", "35407115",
"35538025", "35480910", "35324590", "35901183", "35139729",
"35479164"]
# imei_prefix = ["35674108", "35290611", "35397710", "35323210", "35384110",
# "35982748", "35672011", "35759049", "35266891", "35407115",
# "35538025", "35480910", "35324590", "35901183", "35139729",
# "35479164"]
imei_prefix = tacs
verbose = False
mode = None

File diff suppressed because one or more lines are too long

View File

@ -34,19 +34,24 @@ sleep 1
new_imsi=$(READ_IMSI)
if [[ "$old_imsi" == "$new_imsi" ]]; then
mcu_send_message "WARNING: Old IMSI equals new IMSI."
mcu_send_message "WARNING: Old IMSI equals new IMSI. Did you swap the SIM?"
sleep 3
fi
old_imei=$(READ_IMEI)
mcu_send_message "Setting random IMEI"
timeout 15 python3 /lib/blue-merle/imei_generate.py -r
new_imei=$(READ_IMEI)
if [[ "$old_imei" == "$new_imei" ]]; then
mcu_send_message "WARNING: Old IMEI equals new IMEI."
sleep 3
else
#FIXME old_imei is not the real old imei because in stage1 its already generated a new one
# so this is a bit missleading but for the prupose of visualy see the change it works
mcu_send_message "IMEI Old:...... ${old_imei}IMEI New:...... ${new_imei}"
sleep 5
mkdir -p /tmp/modem.1-1.2
echo "$new_imei" > /tmp/modem.1-1.2/modem-imei
fi