{"id":14638158,"url":"https://github.com/ImpostorKeanu/BruteLoops","last_synced_at":"2025-09-07T06:32:41.993Z","repository":{"id":49812518,"uuid":"178752942","full_name":"ImpostorKeanu/BruteLoops","owner":"ImpostorKeanu","description":"Protocol agnostic online password guessing API.","archived":false,"fork":false,"pushed_at":"2023-03-08T22:03:14.000Z","size":980,"stargazers_count":84,"open_issues_count":1,"forks_count":13,"subscribers_count":6,"default_branch":"master","last_synced_at":"2025-08-31T09:48:27.020Z","etag":null,"topics":["attacks","brute-force-attacks","bruteforce-attacks","pentesting","sqlite-database"],"latest_commit_sha":null,"homepage":"","language":"Python","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/ImpostorKeanu.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}},"created_at":"2019-03-31T23:19:47.000Z","updated_at":"2025-08-20T15:37:12.000Z","dependencies_parsed_at":"2023-07-18T06:48:57.383Z","dependency_job_id":null,"html_url":"https://github.com/ImpostorKeanu/BruteLoops","commit_stats":null,"previous_names":["arch4ngel/bruteloops"],"tags_count":12,"template":false,"template_full_name":null,"purl":"pkg:github/ImpostorKeanu/BruteLoops","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ImpostorKeanu%2FBruteLoops","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ImpostorKeanu%2FBruteLoops/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ImpostorKeanu%2FBruteLoops/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ImpostorKeanu%2FBruteLoops/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ImpostorKeanu","download_url":"https://codeload.github.com/ImpostorKeanu/BruteLoops/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ImpostorKeanu%2FBruteLoops/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":274005341,"owners_count":25205934,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-07T02:00:09.463Z","response_time":67,"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":["attacks","brute-force-attacks","bruteforce-attacks","pentesting","sqlite-database"],"created_at":"2024-09-10T02:01:46.455Z","updated_at":"2025-09-07T06:32:41.680Z","avatar_url":"https://github.com/ImpostorKeanu.png","language":"Python","funding_links":[],"categories":["Python"],"sub_categories":[],"readme":"# BruteLoops\n\nA dead simple library providing the foundational logic for\nefficient password brute force attacks against authentication\ninterfaces.\n\n# Documentation\n\nDocumentation can be found [*here*](https://arch4ngel.github.io/BruteLoops/).\n\n# If you're looking for the old example modules...\n\nSee [BFG](https://github.com/arch4ngel/bl-bfg).\n\nThe examples have been offloaded to a distinct project to\nminimize code and packaging issues. Database and attack\ncapabilities have also been merged into a single binary.\n\n# Key Features\n\n- **Protocol agnostic** - If a callback can be written in Python,\nBruteLoops can be used to attack it\n- **SQLite support** - All usernames, passwords, and credentials\nare maintained in an SQLite database.\n  - A companion utility (`dbmanager.py`) that creates and manages\n  input databases accompanies BruteLoops\n- **Spray and Stuffing Attacks in One Tool** - BruteLoops supports both\nspray and stuffing attacks in the same attack logic and database, meaning\nthat you can configure a single database and run the attack without heavy\nreconfiguration and confusion.\n- **Guess scheduling** - Each username in the SQLite database is configured\n  with a timestamp that is updated after each authentication event. This\n  means we can significantly reduce likelihood of locking accounts by\n  scheduling each authentication event with precision.\n- **Fine-grained configurability to avoid lockout events** - Microsoft's\nlockout policies can be matched 1-to-1 using BruteLoop's parameters:\n  - `auth_threshold` = Lockout Threshold\n  - `max_auth_jitter` = Lockout Observation Window\n  - Timestampes associated with each authentication event are tracked\n  in BruteLoops' SQLite database. Each username receives a distinct\n  timestamp to assure that authentication events are highly controlled.\n- **Attack resumption** - Stopping and resuming an attack is possible\n  without worrying about losing your place in the attack or locking accounts.\n- **Multiprocessing** - Speed up attacks using multiprocessing! By configuring\n  the parallel guess count, you're effectively telling BruteLoops how many\n  usernames to guess in parallel.\n- **Logging** - Each authentication event can optionally logged to disk.\n  This information can be useful during red teams by providing customers\n  with a detailed attack timeline that can be mapped back to logged events.\n- **Breakers** - Breakers behave like circuit breakers. An exception can\n  be raised *x* number of times before ending the attack loop. They can\n  reset after a given period of time as well, allowing for configurations\n  like \"Exit after 6 ConnectionErrors occur\".\n\n# Dependencies\n\nBruteLoops requires __Python3.7 or newer__ and\n[SQLAlchemy 1.3.0](https://www.sqlalchemy.org/), the latter of\nwhich can be obtained via pip and the requirements.txt file in\nthis repository: `python3.7 -m pip install -r requirements.txt`\n\n# Installation\n\n```\ngit clone https://github.com/arch4ngel/bruteloops\ncd bruteloops\npython3 -m pip install -r requirements.txt\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FImpostorKeanu%2FBruteLoops","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FImpostorKeanu%2FBruteLoops","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FImpostorKeanu%2FBruteLoops/lists"}