{"id":42682042,"url":"https://github.com/technologiespro/brute_rust","last_synced_at":"2026-05-22T23:00:45.238Z","repository":{"id":327653826,"uuid":"1110238340","full_name":"technologiespro/brute_rust","owner":"technologiespro","description":"Example CPU BTC Brute force","archived":false,"fork":false,"pushed_at":"2025-12-04T22:55:51.000Z","size":6,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-01-30T01:19:05.083Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/technologiespro.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-12-04T22:53:00.000Z","updated_at":"2025-12-20T23:50:25.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/technologiespro/brute_rust","commit_stats":null,"previous_names":["technologiespro/brute_rust"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/technologiespro/brute_rust","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/technologiespro%2Fbrute_rust","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/technologiespro%2Fbrute_rust/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/technologiespro%2Fbrute_rust/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/technologiespro%2Fbrute_rust/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/technologiespro","download_url":"https://codeload.github.com/technologiespro/brute_rust/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/technologiespro%2Fbrute_rust/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33376007,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-22T21:56:13.512Z","status":"ssl_error","status_checked_at":"2026-05-22T21:56:10.769Z","response_time":265,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":[],"created_at":"2026-01-29T11:54:16.104Z","updated_at":"2026-05-22T23:00:45.231Z","avatar_url":"https://github.com/technologiespro.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Крипто-брутфорсер на Rust\n\nЭто утилита для высокоскоростного перебора приватных ключей Bitcoin и поиска совпадений с базой данных адресов.\n\u003cimg width=\"499\" height=\"324\" alt=\"photo_2026-03-25_19-29-30\" src=\"https://github.com/user-attachments/assets/d5e7af3e-ee3f-4c34-96c3-7ebe00046632\" /\u003e\n\n## Особенности\n\n- **Высокая производительность:** Написан на Rust, использует `rayon` для распараллеливания вычислений на все доступные ядра CPU.\n- **Быстрый поиск:** Использует `HashSet` для хранения базы адресов в памяти, что обеспечивает практически мгновенную проверку (`O(1)`).\n- **Поддержка всех типов адресов:** Генерирует и проверяет все три основных типа BTC-адресов из одного приватного ключа:\n  - P2PKH (Legacy, начинаются с `1...`)\n  - P2SH-P2WPKH (Compatibility, начинаются с `3...`)\n  - P2WPKH (Native SegWit, начинаются с `bc1q...`)\n\n---\n\n## Сборка\n\nДля сборки проекта вам понадобится [Rust](https://www.rust-lang.org/tools/install).\n\n1.  Перейдите в директорию проекта:\n    ```sh\n    cd brute_rust\n    ```\n2.  Соберите релизную (оптимизированную) версию:\n    ```sh\n    cargo build --release\n    ```\n3.  Исполняемый файл будет находиться в `target/release/brute_rust.exe`.\n\n---\n\n## Использование\n\nЗапускайте исполняемый файл из корневой директории проекта (`brute_rust`).\n\n### Пример запуска\n\n- **Использовать все доступные ядра CPU и путь по умолчанию к базам (`../addrs/`):**\n  ```sh\n  target\\release\\brute_rust.exe --cpu 0\n  ```\n\n- **Использовать 4 ядра и указать конкретный путь к папке с базами:**\n  ```sh\n  target\\release\\brute_rust.exe --cpu 4 --path D:\\crypto\\databases\\\n  ```\n\n### Аргументы командной строки\n\n- `--cpu \u003cЧИСЛО\u003e`: Указывает количество потоков CPU для использования.\n  - `--cpu 0` (по умолчанию): Использовать все доступные ядра.\n- `--path \u003cПУТЬ\u003e`: Указывает путь к директории, в которой находится файл с базой адресов (`btc.tsv`).\n  - По умолчанию: `../addrs/`.\n\n---\n\n## Найденные ключи\n\nВ случае нахождения совпадения, программа автоматически создаст файл `found.json` в той же директории, откуда был запущен исполняемый файл.\nЭтот файл будет содержать следующую информацию:\n- Приватный ключ в HEX и WIF форматах.\n- Найденный адрес.\n- Тип монеты (на данный момент всегда \"BTC\").\n- Все сгенерированные типы адресов для данного ключа.\n\nПосле нахождения ключа программа завершит свою работу.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftechnologiespro%2Fbrute_rust","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftechnologiespro%2Fbrute_rust","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftechnologiespro%2Fbrute_rust/lists"}