Merge pull request #48 from hlst2/main

Main
This commit is contained in:
l0nia 2025-02-24 08:24:32 +01:00 committed by GitHub
commit d3aa7ae988
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 9 additions and 5 deletions

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