{"id":37582326,"url":"https://github.com/gcastellov/rust-ripper-wasm","last_synced_at":"2026-01-16T09:40:39.953Z","repository":{"id":38179660,"uuid":"343056768","full_name":"gcastellov/rust-ripper-wasm","owner":"gcastellov","description":"Password cracker made in WASM Rust inspired by the popular John the Ripper","archived":false,"fork":false,"pushed_at":"2024-09-17T08:30:22.000Z","size":22470,"stargazers_count":14,"open_issues_count":0,"forks_count":1,"subscribers_count":4,"default_branch":"main","last_synced_at":"2024-09-17T10:59:58.752Z","etag":null,"topics":["brute-force","brute-force-attacks","bruteforce","bruteforce-password-cracker","cracking","digest","hashing","password-cracker","password-cracking","rust","rust-lang","webassembly"],"latest_commit_sha":null,"homepage":"http://rust-ripper-wasm.azurewebsites.net","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/gcastellov.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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":"2021-02-28T08:33:54.000Z","updated_at":"2024-09-17T08:30:23.000Z","dependencies_parsed_at":"2024-09-17T10:42:21.600Z","dependency_job_id":null,"html_url":"https://github.com/gcastellov/rust-ripper-wasm","commit_stats":null,"previous_names":[],"tags_count":16,"template":false,"template_full_name":null,"purl":"pkg:github/gcastellov/rust-ripper-wasm","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gcastellov%2Frust-ripper-wasm","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gcastellov%2Frust-ripper-wasm/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gcastellov%2Frust-ripper-wasm/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gcastellov%2Frust-ripper-wasm/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gcastellov","download_url":"https://codeload.github.com/gcastellov/rust-ripper-wasm/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gcastellov%2Frust-ripper-wasm/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28478049,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-16T06:30:42.265Z","status":"ssl_error","status_checked_at":"2026-01-16T06:30:16.248Z","response_time":107,"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":["brute-force","brute-force-attacks","bruteforce","bruteforce-password-cracker","cracking","digest","hashing","password-cracker","password-cracking","rust","rust-lang","webassembly"],"created_at":"2026-01-16T09:40:39.231Z","updated_at":"2026-01-16T09:40:39.910Z","avatar_url":"https://github.com/gcastellov.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![CI](https://github.com/gcastellov/rust-ripper-wasm/actions/workflows/ci.yml/badge.svg)](https://github.com/gcastellov/rust-ripper-wasm/actions/workflows/ci.yml)\n[![Docker](https://github.com/gcastellov/rust-ripper-wasm/actions/workflows/docker-publish.yml/badge.svg)](https://github.com/gcastellov/rust-ripper-wasm/actions/workflows/docker-publish.yml)\n\n[![](https://img.shields.io/badge/Rust-000000?style=for-the-badge\u0026logo=rust\u0026logoColor=white)](/src/ripper_wasm/src/lib.rs)\n[![](https://img.shields.io/badge/JavaScript-323330?style=for-the-badge\u0026logo=javascript\u0026logoColor=F7DF1E)](/src/site/js/index.js)\n\n# WASM rust the ripper \nPassword cracker made in WASM Rust, inspired by the popular John the Ripper.\nThe app uses a collection of password dictionaries or auto generated words combined with different algorithms to perform a brute force attack in order to get the ciphered password.\n\n## Available algorithms\nPlease, refer to each crate documentation and check its licensing.\n\n| Name        | Algorithm   | Crates.io |\n|-------------|-------------|-----------|\n| `md2`       | MD2         | [![crates.io](https://img.shields.io/crates/v/md2.svg)](https://crates.io/crates/md2)      |\n| `md4`       | MD4         | [![crates.io](https://img.shields.io/crates/v/md4.svg)](https://crates.io/crates/md4)      |\n| `md5`       | MD5         | [![crates.io](https://img.shields.io/crates/v/md5.svg)](https://crates.io/crates/md5)     |\n| `sha1`      | SHA-1       | [![crates.io](https://img.shields.io/crates/v/sha-1.svg)](https://crates.io/crates/sha-1)   |\n| `rs_sha256` | SHA-2 256   | [![crates.io](https://img.shields.io/crates/v/rs_sha256.svg)](https://crates.io/crates/rs_sha256)|\n| `base64`    | Base64      | [![crates.io](https://img.shields.io/crates/v/base64.svg)](https://crates.io/crates/base64)|\n|`ripemd128`  | RIPEMD128   | [![crates.io](https://img.shields.io/crates/v/ripemd128.svg)](https://crates.io/crates/ripemd128)|\n|`ripemd160`  | RIPEMD160   | [![crates.io](https://img.shields.io/crates/v/ripemd160.svg)](https://crates.io/crates/ripemd160)|\n|`ripemd320`  | RIPEMD320   | [![crates.io](https://img.shields.io/crates/v/ripemd320.svg)](https://crates.io/crates/ripemd320)|\n|`whirlpool`  | WHIRLPOOL   | [![crates.io](https://img.shields.io/crates/v/whirlpool.svg)](https://crates.io/crates/whirlpool)|\n|`Blake2b`    | BLAKE2B-512 | [![crates.io](https://img.shields.io/crates/v/blake2.svg)](https://crates.io/crates/blake2)|\n|`Blake2s`    | BLAKE2S-256 | [![crates.io](https://img.shields.io/crates/v/blake2.svg)](https://crates.io/crates/blake2)|\n|`Tiger`      | TIGER       | [![crates.io](https://img.shields.io/crates/v/tiger.svg)](https://crates.io/crates/tiger)|\n|`Shabal192`  | SHABAL-192  | [![crates.io](https://img.shields.io/crates/v/shabal.svg)](https://crates.io/crates/shabal)|\n|`Shabal224`  | SHABAL-224  | [![crates.io](https://img.shields.io/crates/v/shabal.svg)](https://crates.io/crates/shabal)|\n|`Shabal256`  | SHABAL-256  | [![crates.io](https://img.shields.io/crates/v/shabal.svg)](https://crates.io/crates/shabal)|\n|`Shabal384`  | SHABAL-384  | [![crates.io](https://img.shields.io/crates/v/shabal.svg)](https://crates.io/crates/shabal)|\n|`Shabal512`  | SHABAL-512  | [![crates.io](https://img.shields.io/crates/v/shabal.svg)](https://crates.io/crates/shabal)|\n\n\u003cbr/\u003e\n\n![UI Decipher](doc/ui-decipher.png)\n\n\u003cbr/\u003e\n\n![UI Cipher](doc/ui-cipher.png)\n\n\u003cbr/\u003e\n\n## Build and run in development environment\n\nDownload and install **wasm-pack** in case you don't have it.\n```\n# cd /src/ripper_wasm\n# cargo install wasm-pack\n```\n\nGenerate the WASM package\n```\n# cargo build\n# wasm-pack build\n```\n\nLink locally the NPM package\n```\n# cd pkg\n# npm link\n# cd /src/site\n# npm link rust_ripper_wasm\n```\n\nInstall NPM dependecies\n```\n# npm install\n```\n\nRun\n```\n# npm run serve\n```\n## Building and running docker\n```\n# docker build -f ./docker/Dockerfile  -t rust-ripper-wasm .\n# docker run -p 8080:80 rust-ripper-wasm\n```\n\n## Stage environment\nThe application is being deployed at\n[Stage](http://rust-ripper-wasm.azurewebsites.net)\n\n## License\nThis project is licensed under the terms of the MIT license. \nCheck the [LICENSE](LICENSE.md) file out for license rights and limitations.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgcastellov%2Frust-ripper-wasm","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgcastellov%2Frust-ripper-wasm","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgcastellov%2Frust-ripper-wasm/lists"}