├── .github ├── FUNDING.yml └── workflows │ ├── deploy.yml │ └── pull.yml ├── .gitignore ├── LICENSE ├── README.md ├── algorithms ├── DJB2_Upper_3698.py ├── __init__.py ├── add1501_shl5.py ├── add_65599.py ├── add_hiword_add_lowword.py ├── add_rol5_hash_again.py ├── add_ror13.py ├── add_ror13_hash_again.py ├── add_ror4.py ├── adler32_666.py ├── babbleloader.py ├── babbleloader_0125.py ├── blister2.py ├── brc4_1_4_5.py ├── brc4_joaat.py ├── carbanak.py ├── ch_add_rol8.py ├── conti.py ├── conti_5b2d.py ├── conti_b801fcda.py ├── conti_e9ff0077.py ├── conti_mm3.py ├── crc32.py ├── crc32_bzip2.py ├── crc32_mpeg_2.py ├── crc64_ecma_182.py ├── cryptbot_ror13_add_10.py ├── custom_shift_add.py ├── d0nut.py ├── danabot.py ├── deedrat.py ├── deedrat_export_name.py ├── djb2_lowercase.py ├── djb2_nokoyawa.py ├── djb2_seed5385_upper.py ├── djb2_uppercase.py ├── djb2_vohuk_ransomware_dec_2022.py ├── dualacc_modfff1.py ├── emotet.py ├── emotet_mul_65599_xor_19ad760.py ├── fnv1.py ├── fnv1_64.py ├── fnv1_xor67f.py ├── fnv1a.py ├── fnv1a_64.py ├── guloader_3C389ABC.py ├── lockbit3_C8B32494_s0.py ├── lockbit3_C8B32494_string.py ├── lockbit4_0225.py ├── lokibot.py ├── lumma_fnv1a.py ├── mamon_hash.py ├── metasploit.py ├── mul21_add.py ├── mul21_add_seed_8952.py ├── mul7_add.py ├── mul83_add.py ├── mult21_add.py ├── mult21_add_170f.py ├── mult3_add_init_9C.py ├── murmur2_lummas_v3.py ├── murmur3_4CDC03.py ├── mythic_unknown.py ├── or20_xor_rol19.py ├── or21_xor_rol11.py ├── or23_xor_rol17.py ├── paradise_murmurhash3.py ├── permutations_82f63b78.py ├── permutations_e8677835.py ├── revil_010F.py ├── rol3_xor.py ├── rol3_xor_eax.py ├── rol5_add.py ├── rol5_xor.py ├── rol7_add.py ├── rol7_add_xor2.py ├── rol7_xor.py ├── rol8_xor_b0d4d06.py ├── rol9_add.py ├── rol9_xor.py ├── ror11_add.py ├── ror13_add.py ├── ror13_add_negative_seed.py ├── ror13_add_sub1.py ├── ror13_add_sub20.py ├── ror7_add.py ├── ror8_add_xor_ab832e83.py ├── ror9_add.py ├── sdbm_65599_x64.py ├── shl1_add.py ├── shl7_shr19_xor.py ├── shl7_sub.py ├── shr1_shl7_2326.py ├── shr2_shl5_xor.py ├── shr2_shl5_xor_init_c4d5a97a_stealbit.py ├── single_camper_hash.py ├── smokeloader_rol8_xor.py ├── smt_api_hashing.py ├── tonepipeshell.py ├── tonepipeshell_1313.py ├── tonepipeshell_alt.py ├── tonepipeshell_feb_2025.py ├── xor_rol9.py ├── xor_shr8.py └── zloader_bot.py ├── hashdb.py └── tests └── test_algorithms.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | patreon: oalabs 2 | 3 | -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/pull.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/.github/workflows/pull.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/README.md -------------------------------------------------------------------------------- /algorithms/DJB2_Upper_3698.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/DJB2_Upper_3698.py -------------------------------------------------------------------------------- /algorithms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/__init__.py -------------------------------------------------------------------------------- /algorithms/add1501_shl5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/add1501_shl5.py -------------------------------------------------------------------------------- /algorithms/add_65599.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/add_65599.py -------------------------------------------------------------------------------- /algorithms/add_hiword_add_lowword.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/add_hiword_add_lowword.py -------------------------------------------------------------------------------- /algorithms/add_rol5_hash_again.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/add_rol5_hash_again.py -------------------------------------------------------------------------------- /algorithms/add_ror13.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/add_ror13.py -------------------------------------------------------------------------------- /algorithms/add_ror13_hash_again.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/add_ror13_hash_again.py -------------------------------------------------------------------------------- /algorithms/add_ror4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/add_ror4.py -------------------------------------------------------------------------------- /algorithms/adler32_666.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/adler32_666.py -------------------------------------------------------------------------------- /algorithms/babbleloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/babbleloader.py -------------------------------------------------------------------------------- /algorithms/babbleloader_0125.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/babbleloader_0125.py -------------------------------------------------------------------------------- /algorithms/blister2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/blister2.py -------------------------------------------------------------------------------- /algorithms/brc4_1_4_5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/brc4_1_4_5.py -------------------------------------------------------------------------------- /algorithms/brc4_joaat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/brc4_joaat.py -------------------------------------------------------------------------------- /algorithms/carbanak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/carbanak.py -------------------------------------------------------------------------------- /algorithms/ch_add_rol8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/ch_add_rol8.py -------------------------------------------------------------------------------- /algorithms/conti.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/conti.py -------------------------------------------------------------------------------- /algorithms/conti_5b2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/conti_5b2d.py -------------------------------------------------------------------------------- /algorithms/conti_b801fcda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/conti_b801fcda.py -------------------------------------------------------------------------------- /algorithms/conti_e9ff0077.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/conti_e9ff0077.py -------------------------------------------------------------------------------- /algorithms/conti_mm3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/conti_mm3.py -------------------------------------------------------------------------------- /algorithms/crc32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/crc32.py -------------------------------------------------------------------------------- /algorithms/crc32_bzip2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/crc32_bzip2.py -------------------------------------------------------------------------------- /algorithms/crc32_mpeg_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/crc32_mpeg_2.py -------------------------------------------------------------------------------- /algorithms/crc64_ecma_182.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/crc64_ecma_182.py -------------------------------------------------------------------------------- /algorithms/cryptbot_ror13_add_10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/cryptbot_ror13_add_10.py -------------------------------------------------------------------------------- /algorithms/custom_shift_add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/custom_shift_add.py -------------------------------------------------------------------------------- /algorithms/d0nut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/d0nut.py -------------------------------------------------------------------------------- /algorithms/danabot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/danabot.py -------------------------------------------------------------------------------- /algorithms/deedrat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/deedrat.py -------------------------------------------------------------------------------- /algorithms/deedrat_export_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/deedrat_export_name.py -------------------------------------------------------------------------------- /algorithms/djb2_lowercase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/djb2_lowercase.py -------------------------------------------------------------------------------- /algorithms/djb2_nokoyawa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/djb2_nokoyawa.py -------------------------------------------------------------------------------- /algorithms/djb2_seed5385_upper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/djb2_seed5385_upper.py -------------------------------------------------------------------------------- /algorithms/djb2_uppercase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/djb2_uppercase.py -------------------------------------------------------------------------------- /algorithms/djb2_vohuk_ransomware_dec_2022.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/djb2_vohuk_ransomware_dec_2022.py -------------------------------------------------------------------------------- /algorithms/dualacc_modfff1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/dualacc_modfff1.py -------------------------------------------------------------------------------- /algorithms/emotet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/emotet.py -------------------------------------------------------------------------------- /algorithms/emotet_mul_65599_xor_19ad760.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/emotet_mul_65599_xor_19ad760.py -------------------------------------------------------------------------------- /algorithms/fnv1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/fnv1.py -------------------------------------------------------------------------------- /algorithms/fnv1_64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/fnv1_64.py -------------------------------------------------------------------------------- /algorithms/fnv1_xor67f.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/fnv1_xor67f.py -------------------------------------------------------------------------------- /algorithms/fnv1a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/fnv1a.py -------------------------------------------------------------------------------- /algorithms/fnv1a_64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/fnv1a_64.py -------------------------------------------------------------------------------- /algorithms/guloader_3C389ABC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/guloader_3C389ABC.py -------------------------------------------------------------------------------- /algorithms/lockbit3_C8B32494_s0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/lockbit3_C8B32494_s0.py -------------------------------------------------------------------------------- /algorithms/lockbit3_C8B32494_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/lockbit3_C8B32494_string.py -------------------------------------------------------------------------------- /algorithms/lockbit4_0225.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/lockbit4_0225.py -------------------------------------------------------------------------------- /algorithms/lokibot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/lokibot.py -------------------------------------------------------------------------------- /algorithms/lumma_fnv1a.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/lumma_fnv1a.py -------------------------------------------------------------------------------- /algorithms/mamon_hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/mamon_hash.py -------------------------------------------------------------------------------- /algorithms/metasploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/metasploit.py -------------------------------------------------------------------------------- /algorithms/mul21_add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/mul21_add.py -------------------------------------------------------------------------------- /algorithms/mul21_add_seed_8952.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/mul21_add_seed_8952.py -------------------------------------------------------------------------------- /algorithms/mul7_add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/mul7_add.py -------------------------------------------------------------------------------- /algorithms/mul83_add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/mul83_add.py -------------------------------------------------------------------------------- /algorithms/mult21_add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/mult21_add.py -------------------------------------------------------------------------------- /algorithms/mult21_add_170f.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/mult21_add_170f.py -------------------------------------------------------------------------------- /algorithms/mult3_add_init_9C.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/mult3_add_init_9C.py -------------------------------------------------------------------------------- /algorithms/murmur2_lummas_v3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/murmur2_lummas_v3.py -------------------------------------------------------------------------------- /algorithms/murmur3_4CDC03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/murmur3_4CDC03.py -------------------------------------------------------------------------------- /algorithms/mythic_unknown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/mythic_unknown.py -------------------------------------------------------------------------------- /algorithms/or20_xor_rol19.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/or20_xor_rol19.py -------------------------------------------------------------------------------- /algorithms/or21_xor_rol11.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/or21_xor_rol11.py -------------------------------------------------------------------------------- /algorithms/or23_xor_rol17.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/or23_xor_rol17.py -------------------------------------------------------------------------------- /algorithms/paradise_murmurhash3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/paradise_murmurhash3.py -------------------------------------------------------------------------------- /algorithms/permutations_82f63b78.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/permutations_82f63b78.py -------------------------------------------------------------------------------- /algorithms/permutations_e8677835.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/permutations_e8677835.py -------------------------------------------------------------------------------- /algorithms/revil_010F.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/revil_010F.py -------------------------------------------------------------------------------- /algorithms/rol3_xor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/rol3_xor.py -------------------------------------------------------------------------------- /algorithms/rol3_xor_eax.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/rol3_xor_eax.py -------------------------------------------------------------------------------- /algorithms/rol5_add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/rol5_add.py -------------------------------------------------------------------------------- /algorithms/rol5_xor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/rol5_xor.py -------------------------------------------------------------------------------- /algorithms/rol7_add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/rol7_add.py -------------------------------------------------------------------------------- /algorithms/rol7_add_xor2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/rol7_add_xor2.py -------------------------------------------------------------------------------- /algorithms/rol7_xor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/rol7_xor.py -------------------------------------------------------------------------------- /algorithms/rol8_xor_b0d4d06.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/rol8_xor_b0d4d06.py -------------------------------------------------------------------------------- /algorithms/rol9_add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/rol9_add.py -------------------------------------------------------------------------------- /algorithms/rol9_xor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/rol9_xor.py -------------------------------------------------------------------------------- /algorithms/ror11_add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/ror11_add.py -------------------------------------------------------------------------------- /algorithms/ror13_add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/ror13_add.py -------------------------------------------------------------------------------- /algorithms/ror13_add_negative_seed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/ror13_add_negative_seed.py -------------------------------------------------------------------------------- /algorithms/ror13_add_sub1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/ror13_add_sub1.py -------------------------------------------------------------------------------- /algorithms/ror13_add_sub20.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/ror13_add_sub20.py -------------------------------------------------------------------------------- /algorithms/ror7_add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/ror7_add.py -------------------------------------------------------------------------------- /algorithms/ror8_add_xor_ab832e83.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/ror8_add_xor_ab832e83.py -------------------------------------------------------------------------------- /algorithms/ror9_add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/ror9_add.py -------------------------------------------------------------------------------- /algorithms/sdbm_65599_x64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/sdbm_65599_x64.py -------------------------------------------------------------------------------- /algorithms/shl1_add.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/shl1_add.py -------------------------------------------------------------------------------- /algorithms/shl7_shr19_xor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/shl7_shr19_xor.py -------------------------------------------------------------------------------- /algorithms/shl7_sub.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/shl7_sub.py -------------------------------------------------------------------------------- /algorithms/shr1_shl7_2326.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/shr1_shl7_2326.py -------------------------------------------------------------------------------- /algorithms/shr2_shl5_xor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/shr2_shl5_xor.py -------------------------------------------------------------------------------- /algorithms/shr2_shl5_xor_init_c4d5a97a_stealbit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/shr2_shl5_xor_init_c4d5a97a_stealbit.py -------------------------------------------------------------------------------- /algorithms/single_camper_hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/single_camper_hash.py -------------------------------------------------------------------------------- /algorithms/smokeloader_rol8_xor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/smokeloader_rol8_xor.py -------------------------------------------------------------------------------- /algorithms/smt_api_hashing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/smt_api_hashing.py -------------------------------------------------------------------------------- /algorithms/tonepipeshell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/tonepipeshell.py -------------------------------------------------------------------------------- /algorithms/tonepipeshell_1313.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/tonepipeshell_1313.py -------------------------------------------------------------------------------- /algorithms/tonepipeshell_alt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/tonepipeshell_alt.py -------------------------------------------------------------------------------- /algorithms/tonepipeshell_feb_2025.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/tonepipeshell_feb_2025.py -------------------------------------------------------------------------------- /algorithms/xor_rol9.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/xor_rol9.py -------------------------------------------------------------------------------- /algorithms/xor_shr8.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/xor_shr8.py -------------------------------------------------------------------------------- /algorithms/zloader_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/algorithms/zloader_bot.py -------------------------------------------------------------------------------- /hashdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/hashdb.py -------------------------------------------------------------------------------- /tests/test_algorithms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OALabs/hashdb/HEAD/tests/test_algorithms.py --------------------------------------------------------------------------------