{"id":25810074,"url":"https://github.com/usethisname1419/base64-hash","last_synced_at":"2026-05-15T03:34:46.181Z","repository":{"id":279711638,"uuid":"939702184","full_name":"usethisname1419/Base64-hash","owner":"usethisname1419","description":"tool for helping testing IDOR with base64 numbers hashed","archived":false,"fork":false,"pushed_at":"2025-02-27T00:57:10.000Z","size":0,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-27T01:50:40.081Z","etag":null,"topics":["base64","hacking","hashing","idor","pen-testing"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/usethisname1419.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-02-27T00:54:50.000Z","updated_at":"2025-02-27T00:57:51.000Z","dependencies_parsed_at":"2025-02-27T01:50:41.433Z","dependency_job_id":"3a7cee69-d006-4a89-9f65-3f25bc32638e","html_url":"https://github.com/usethisname1419/Base64-hash","commit_stats":null,"previous_names":["usethisname1419/base64-hash"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/usethisname1419/Base64-hash","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/usethisname1419%2FBase64-hash","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/usethisname1419%2FBase64-hash/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/usethisname1419%2FBase64-hash/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/usethisname1419%2FBase64-hash/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/usethisname1419","download_url":"https://codeload.github.com/usethisname1419/Base64-hash/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/usethisname1419%2FBase64-hash/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33052703,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-13T13:14:54.681Z","status":"online","status_checked_at":"2026-05-15T02:00:06.351Z","response_time":103,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["base64","hacking","hashing","idor","pen-testing"],"created_at":"2025-02-27T23:35:22.892Z","updated_at":"2026-05-15T03:34:46.165Z","avatar_url":"https://github.com/usethisname1419.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"Hash Reverser \u0026 Generator for Base64 Encoded Numbers\n\nThis Python script is designed for penetration testing, particularly focusing on reversing and generating hashes of base64 encoded numbers. It supports multiple hash algorithms (MD5, SHA1, SHA256, SHA512) and allows you to either generate hashes for a range of numbers or attempt to reverse a given hash by checking a range of base64 encoded numbers.\nFeatures\n\n    Reverse Hashing: Given a hash and a hash type, the script attempts to reverse it by testing base64 encoded numbers and comparing the resulting hash to the target.\n    Hash Generation: Generates hashes for base64 encoded numbers within a specified range, for different hash algorithms.\n    Multithreading: The script uses a thread pool executor to parallelize hash comparisons for faster results.\n\nSupported Hash Types\n\n    MD5\n    SHA1\n    SHA256\n    SHA512\n\nUsage\nReverse Hash Mode\n\nTo reverse a hash, use the -R flag and provide the hash value and the desired hash type. The script will try to find the number that corresponds to the given hash.\n\npython script.py -R \u003chash_value\u003e \u003chash_type\u003e\n\n    \u003chash_value\u003e: The hash you want to reverse.\n    \u003chash_type\u003e: The hash algorithm used to generate the hash. Options: md5, sha1, sha256, sha512.\n\nExample:\n\npython script.py -R e99a18c428cb38d5f260853678922e03 md5\n\nThis will attempt to reverse the MD5 hash e99a18c428cb38d5f260853678922e03 and find the base64 encoded number that matches it.\nGenerate Hashes Mode\n\nTo generate hashes for a range of base64 encoded numbers, provide the start and end numbers, and specify the hash type. The script will output the generated hashes for each number in the range.\n\npython script.py \u003chash_type\u003e \u003cstart_num\u003e \u003cend_num\u003e\n\n    \u003chash_type\u003e: The hash algorithm to use. Options: md5, sha1, sha256, sha512.\n    \u003cstart_num\u003e: The start of the range (inclusive).\n    \u003cend_num\u003e: The end of the range (inclusive).\n\nExample:\n\npython script.py sha256 1 10\n\nThis will generate the SHA256 hashes for base64 encoded numbers from 1 to 10.\nExample Workflow\n\n    Generate hashes for numbers 1 to 1000 with SHA256:\n\npython script.py sha256 1 1000\n\nReverse a hash:\n\n    python script.py -R \u003ctarget_hash\u003e sha256\n\n    Where \u003ctarget_hash\u003e is the hash you want to reverse.\n\nNotes\n\n    The script uses a ThreadPoolExecutor for parallel processing, which allows for faster hash comparison in reverse mode.\n    The script assumes that the hash was generated from a base64 encoded number within the provided range.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fusethisname1419%2Fbase64-hash","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fusethisname1419%2Fbase64-hash","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fusethisname1419%2Fbase64-hash/lists"}