https://github.com/root4loot/cognito-brute-force
Amazon Cognito Login Bruteforce
https://github.com/root4loot/cognito-brute-force
Last synced: about 1 year ago
JSON representation
Amazon Cognito Login Bruteforce
- Host: GitHub
- URL: https://github.com/root4loot/cognito-brute-force
- Owner: root4loot
- Created: 2024-05-07T17:30:16.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-07T21:00:35.000Z (about 2 years ago)
- Last Synced: 2025-02-17T12:45:36.708Z (over 1 year ago)
- Language: Python
- Size: 6.84 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Amazon Cognito Bruteforce Tool
## Installation
Clone the Repository:
```
git clone https://github.com/yourusername/cognito-brute-force.git
cd cognito-brute-force
```
Setup Python Environment:
```
python -m venv venv
source venv/bin/activate # On Windows use venv\Scripts\activate
```
Install Dependencies:
```
pip install -r requirements.txt
```
Run the Script:
```
python cognitobrute.py [options]
```
## Usage
```
usage: cognito-brute-force.py [-h] [--proxy PROXY] url username_file password_file
Amazon Cognito Bruteforce Tool
https://github.com/root4loot/cognito-brute-force
positional arguments:
url Base URL for login
username_file File containing usernames
password_file File containing passwords
options:
-h, --help show this help message and exit
--proxy PROXY Proxy address (optional)
```
## Example Running
```
python cognitobrute.py example.com/login usernames.txt passwords.txt --proxy 127.0.0.1:8080
Login failed for foo@example.com with password Pass1! Incorrect username or password.
Login failed for foo@example.com with password Pass12: Incorrect username or password.
Login failed for foo@example.com with password Pass123: Incorrect username or password.
```