From 009241dad0ea25a9ad64e0c90eda9ad8e2c77032 Mon Sep 17 00:00:00 2001 From: Eduardo Novella Date: Sun, 30 Jul 2023 17:43:03 +0200 Subject: [PATCH] Bump PyPI version to v2.1.5 --- apkid/__init__.py | 6 +++--- apkid/apkid.py | 2 +- apkid/main.py | 2 +- apkid/output.py | 2 +- apkid/rules.py | 2 +- apkid/rules/apk/common.yara | 2 +- apkid/rules/dex/abnormal.yara | 2 +- apkid/rules/dex/anti-vm.yara | 2 +- apkid/rules/dex/common.yara | 2 +- apkid/rules/dex/compilers.yara | 2 +- apkid/rules/dex/obfuscators.yara | 2 +- apkid/rules/dex/packers.yara | 6 +++--- apkid/rules/elf/anti-vm.yara | 2 +- apkid/rules/elf/common.yara | 2 +- prep-release.py | 2 +- setup.py | 2 +- tests/conftest.py | 2 +- tests/factories.py | 2 +- tests/test_rules.py | 2 +- tests/test_scanner.py | 2 +- 20 files changed, 24 insertions(+), 24 deletions(-) diff --git a/apkid/__init__.py b/apkid/__init__.py index 90835977..b463325b 100644 --- a/apkid/__init__.py +++ b/apkid/__init__.py @@ -1,6 +1,6 @@ #!/usr/bin/env python """ - Copyright (C) 2022 RedNaga. https://rednaga.io + Copyright (C) 2023 RedNaga. https://rednaga.io All rights reserved. Contact: rednaga@protonmail.com @@ -26,7 +26,7 @@ """ __title__ = 'apkid' -__version__ = '2.1.4' +__version__ = '2.1.5' __author__ = 'Caleb Fenton & Tim Strazzere' __license__ = 'GPL & Commercial' -__copyright__ = 'Copyright (C) 2022 RedNaga' +__copyright__ = 'Copyright (C) 2023 RedNaga' diff --git a/apkid/apkid.py b/apkid/apkid.py index a283e0a3..d30f7a96 100644 --- a/apkid/apkid.py +++ b/apkid/apkid.py @@ -1,5 +1,5 @@ """ - Copyright (C) 2022 RedNaga. https://rednaga.io + Copyright (C) 2023 RedNaga. https://rednaga.io All rights reserved. Contact: rednaga@protonmail.com diff --git a/apkid/main.py b/apkid/main.py index c09e39c9..6d6ceda1 100644 --- a/apkid/main.py +++ b/apkid/main.py @@ -1,5 +1,5 @@ """ - Copyright (C) 2022 RedNaga. https://rednaga.io + Copyright (C) 2023 RedNaga. https://rednaga.io All rights reserved. Contact: rednaga@protonmail.com diff --git a/apkid/output.py b/apkid/output.py index bf275c31..b3d0a61d 100644 --- a/apkid/output.py +++ b/apkid/output.py @@ -1,5 +1,5 @@ """ - Copyright (C) 2022 RedNaga. https://rednaga.io + Copyright (C) 2023 RedNaga. https://rednaga.io All rights reserved. Contact: rednaga@protonmail.com diff --git a/apkid/rules.py b/apkid/rules.py index f71ab7a5..974e18fa 100644 --- a/apkid/rules.py +++ b/apkid/rules.py @@ -1,5 +1,5 @@ """ - Copyright (C) 2022 RedNaga. https://rednaga.io + Copyright (C) 2023 RedNaga. https://rednaga.io All rights reserved. Contact: rednaga@protonmail.com diff --git a/apkid/rules/apk/common.yara b/apkid/rules/apk/common.yara index b2e17684..3c71b694 100644 --- a/apkid/rules/apk/common.yara +++ b/apkid/rules/apk/common.yara @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022 RedNaga. https://rednaga.io + * Copyright (C) 2023 RedNaga. https://rednaga.io * All rights reserved. Contact: rednaga@protonmail.com * * diff --git a/apkid/rules/dex/abnormal.yara b/apkid/rules/dex/abnormal.yara index dd10822d..67174cee 100644 --- a/apkid/rules/dex/abnormal.yara +++ b/apkid/rules/dex/abnormal.yara @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022 RedNaga. https://rednaga.io + * Copyright (C) 2023 RedNaga. https://rednaga.io * All rights reserved. Contact: rednaga@protonmail.com * * diff --git a/apkid/rules/dex/anti-vm.yara b/apkid/rules/dex/anti-vm.yara index 46312d58..9fe5f4a7 100644 --- a/apkid/rules/dex/anti-vm.yara +++ b/apkid/rules/dex/anti-vm.yara @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022 RedNaga. https://rednaga.io + * Copyright (C) 2023 RedNaga. https://rednaga.io * All rights reserved. Contact: rednaga@protonmail.com * * diff --git a/apkid/rules/dex/common.yara b/apkid/rules/dex/common.yara index 839152b0..f50539ca 100644 --- a/apkid/rules/dex/common.yara +++ b/apkid/rules/dex/common.yara @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022 RedNaga. https://rednaga.io + * Copyright (C) 2023 RedNaga. https://rednaga.io * All rights reserved. Contact: rednaga@protonmail.com * * diff --git a/apkid/rules/dex/compilers.yara b/apkid/rules/dex/compilers.yara index 6d2f6de4..76400c4c 100644 --- a/apkid/rules/dex/compilers.yara +++ b/apkid/rules/dex/compilers.yara @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022 RedNaga. https://rednaga.io + * Copyright (C) 2023 RedNaga. https://rednaga.io * All rights reserved. Contact: rednaga@protonmail.com * * diff --git a/apkid/rules/dex/obfuscators.yara b/apkid/rules/dex/obfuscators.yara index 53333249..5b0ee52d 100644 --- a/apkid/rules/dex/obfuscators.yara +++ b/apkid/rules/dex/obfuscators.yara @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022 RedNaga. https://rednaga.io + * Copyright (C) 2023 RedNaga. https://rednaga.io * All rights reserved. Contact: rednaga@protonmail.com * * diff --git a/apkid/rules/dex/packers.yara b/apkid/rules/dex/packers.yara index d331d458..a611ccca 100644 --- a/apkid/rules/dex/packers.yara +++ b/apkid/rules/dex/packers.yara @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022 RedNaga. https://rednaga.io + * Copyright (C) 2023 RedNaga. https://rednaga.io * All rights reserved. Contact: rednaga@protonmail.com * * @@ -436,7 +436,7 @@ rule jsonpacker : packer $dexclass = { 6e 20 ?? ?? 10 00 // invoke-virtual {v0, v1}, Ljava/lang/reflect/Constructor;->newInstance([Ljava/lang/Object;)Ljava/lang/Object; 0c ?? // move-result-object p1 - 1f 0? // check-cast p1, Ldalvik/system/DexClassLoader; + 1f 0? // check-cast p1, Ldalvik/system/DexClassLoader; } condition: @@ -486,5 +486,5 @@ rule multidexpacker : packer condition: is_dex and $multidex_deobfuscation - and $decrypt_dex + and $decrypt_dex } \ No newline at end of file diff --git a/apkid/rules/elf/anti-vm.yara b/apkid/rules/elf/anti-vm.yara index 833f4ecb..5dfacbbf 100644 --- a/apkid/rules/elf/anti-vm.yara +++ b/apkid/rules/elf/anti-vm.yara @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022 RedNaga. https://rednaga.io + * Copyright (C) 2023 RedNaga. https://rednaga.io * All rights reserved. Contact: rednaga@protonmail.com * * diff --git a/apkid/rules/elf/common.yara b/apkid/rules/elf/common.yara index 3a66b7b6..bfbb2cde 100644 --- a/apkid/rules/elf/common.yara +++ b/apkid/rules/elf/common.yara @@ -1,5 +1,5 @@ /* - * Copyright (C) 2022 RedNaga. https://rednaga.io + * Copyright (C) 2023 RedNaga. https://rednaga.io * All rights reserved. Contact: rednaga@protonmail.com * * diff --git a/prep-release.py b/prep-release.py index 645a152e..c1a380f4 100755 --- a/prep-release.py +++ b/prep-release.py @@ -1,6 +1,6 @@ #!/usr/bin/env python """ - Copyright (C) 2022 RedNaga. https://rednaga.io + Copyright (C) 2023 RedNaga. https://rednaga.io All rights reserved. Contact: rednaga@protonmail.com diff --git a/setup.py b/setup.py index 4eaf9f18..ee8156e1 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ #!/usr/bin/env python """ - Copyright (C) 2022 RedNaga. https://rednaga.io + Copyright (C) 2023 RedNaga. https://rednaga.io All rights reserved. Contact: rednaga@protonmail.com diff --git a/tests/conftest.py b/tests/conftest.py index 4d38a86b..c20d9616 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -1,5 +1,5 @@ """ - Copyright (C) 2022 RedNaga. https://rednaga.io + Copyright (C) 2023 RedNaga. https://rednaga.io All rights reserved. Contact: rednaga@protonmail.com diff --git a/tests/factories.py b/tests/factories.py index d3e99a27..d6c3188b 100644 --- a/tests/factories.py +++ b/tests/factories.py @@ -1,5 +1,5 @@ """ - Copyright (C) 2022 RedNaga. https://rednaga.io + Copyright (C) 2023 RedNaga. https://rednaga.io All rights reserved. Contact: rednaga@protonmail.com diff --git a/tests/test_rules.py b/tests/test_rules.py index 6ab72f6f..c8f6b625 100644 --- a/tests/test_rules.py +++ b/tests/test_rules.py @@ -1,5 +1,5 @@ """ - Copyright (C) 2022 RedNaga. https://rednaga.io + Copyright (C) 2023 RedNaga. https://rednaga.io All rights reserved. Contact: rednaga@protonmail.com diff --git a/tests/test_scanner.py b/tests/test_scanner.py index c9fb6c46..ad8427c9 100644 --- a/tests/test_scanner.py +++ b/tests/test_scanner.py @@ -1,5 +1,5 @@ """ - Copyright (C) 2022 RedNaga. https://rednaga.io + Copyright (C) 2023 RedNaga. https://rednaga.io All rights reserved. Contact: rednaga@protonmail.com