From 1e47f6e73d57c4064e63de0fba320787e56b01a9 Mon Sep 17 00:00:00 2001 From: Ben Date: Wed, 20 Sep 2023 05:17:19 +0000 Subject: [PATCH] first commit --- Makefile | 36 +++++++++++ README.md | 0 src/imei_generator.c | 147 +++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 183 insertions(+) create mode 100644 Makefile create mode 100644 README.md create mode 100644 src/imei_generator.c diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..e8c9663 --- /dev/null +++ b/Makefile @@ -0,0 +1,36 @@ +# +# Copyright (C) 2011-2014 OpenWrt.org +# +# This is free software, licensed under the GNU General Public License v2. +# See /LICENSE for more information. +# + +include $(TOPDIR)/rules.mk + +PKG_NAME:=imei_generator +PKG_RELEASE:=1 + +include $(INCLUDE_DIR)/package.mk + +define Package/$(PKG_NAME) + SECTION:=utils + CATEGORY:=Utilities + TITLE:=Utility to generate randomly IMEI + MAINTAINER:=Egor Grushko +endef + +define Package/$(PKG_NAME)/description + This package contains generate custom IMEI +endef + +define Build/Compile + $(TARGET_CC) $(TARGET_CFLAGS) -Wall \ + -o $(PKG_BUILD_DIR)/$(PKG_NAME) $(PKG_BUILD_DIR)/$(PKG_NAME).c +endef + +define Package/$(PKG_NAME)/install + $(INSTALL_DIR) $(1)/usr/bin + $(INSTALL_BIN) $(PKG_BUILD_DIR)/$(PKG_NAME) $(1)/usr/bin/ +endef + +$(eval $(call BuildPackage,$(PKG_NAME))) diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69de29 diff --git a/src/imei_generator.c b/src/imei_generator.c new file mode 100644 index 0000000..1a7b025 --- /dev/null +++ b/src/imei_generator.c @@ -0,0 +1,147 @@ +/*-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------\ +* | +* Copyright (C) 2016 Egor Grushko | +* | +* Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: | +* | +* The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. | +* | +* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. | +* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | +* | +* ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/ + +#include +#include +#include +#include +#include + +void gen_imei(int imei[]) { + int pos; + int len = 15; + + srand(time(NULL)); + + static const char *rbi[] = { "01", "10", "30", "33", "35", "44", "45", "49", "50", "51", "52", "53", "54", "86", "91", "98", "99" }; + static size_t rbi_count = sizeof(rbi) / sizeof(const char*); + + const char *arr = rbi[rand() % rbi_count]; + + imei[0] = arr[0] - '0'; + imei[1] = arr[1] - '0'; + + pos = 2; + + while (pos < len - 1) + { + imei[pos++] = rand() % 10; + } + + +} + +void calc_check(int imei[]) { + int pos; + int len_offset = 0; + int len = 15; + int sum = 0; + int t = 0; + int final_digit; + + len_offset = (len + 1) % 2; + + for (pos = 0; pos < len - 1; pos++) + { + if (((pos + len_offset) % 2) == 1) + { + t = imei[pos] * 2; + if (t > 9) + { + t -= 9; + } + sum += t; + } + else + { + sum += imei[pos]; + } + } + + final_digit = (10 - (sum % 10)) % 10; + imei[len - 1] = final_digit; +} + +void printUsage() { + printf("Usage: imei_generator [-n] [-m XXXXXXXX]"); +} + +int main(int argc, const char *argv[]) { + int nvitem = 0; + int manual = 0; + int i; + int imei[] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }; + const size_t imei_length = sizeof(imei) / sizeof(int); + + for (i = 1; i < argc; i++) + { + if (strcmp(argv[i], "-n") == 0) + { + nvitem = 1; + } + else if (strcmp(argv[i], "-m") == 0) + { + manual = 1; + i++; + + if (strlen(argv[i]) == 8) + { + manual = i; + } + } + else + { + printUsage(); + return -1; + } + } + + gen_imei(imei); + + if (manual) + { + for (i = 0; i < 8; i++) + { + if (isdigit(argv[manual][i])) + { + imei[i] = argv[manual][i] - '0'; + } + else + { + printUsage(); + return -1; + } + } + } + + calc_check(imei); + + for (i = 0; i < imei_length; i++) + { + if (nvitem) + { + printf("0%i ", imei[i]); + } + else + { + printf("%i", imei[i]); + } + } + + if (nvitem) + { + printf("00"); + } + + return 0; +}