A powerful Kahoot bot flooder that allows you to join a Kahoot game with multiple bots. This script requires you to manually download and configure ChromeDriver for your system.
- Multi-bot Support: Add any number of bots to a Kahoot game.
- Custom ChromeDriver Setup: Use your own ChromeDriver installation.
- Headless Execution: Bots run entirely in the background.
- Name Validation: Automatically shortens bot names if they exceed Kahoot's character limit.
- Simple Command-Line Interface (CLI): Configure the game PIN, bot count, and base name directly from the terminal.
- Python: Version 3.8 or higher.
- Google Chrome: Latest version.
- ChromeDriver: Match the version of your Chrome browser.
git clone https://github.com/reversedcodes/EvilKahootFlood.git
cd EvilKahootFlood
Install the required Python libraries:
pip install -r requirements.txt
-
Check Your Chrome Version:
- Open Chrome and go to
chrome://settings/help
. - Note the version number (e.g.,
116.0.5845.96
).
- Open Chrome and go to
-
Download ChromeDriver:
- Visit ChromeDriver Downloads.
- Download the version that matches your Chrome browser.
-
Place ChromeDriver:
- Move the
chromedriver
executable to the same directory as themain.py
script.
- Move the
Run the script directly from the terminal:
python main.py -p <PIN> -c <Bot-Count> -n <Bot-Name>
-p
or--pin
: The game PIN for the Kahoot game.-c
or--count
: The number of bots to create.-n
or--name
: The base name for bots (e.g.,BotMaster
).
python main.py -p 1234567 -c 50 -n BotMaster
This will create 50 bots with names like BotMaster#0
, BotMaster#1
, ..., BotMaster#49
.
This project was built with:
- Python: Core programming language.
- Selenium: Browser automation.
- Colorama: Colored console outputs.
This project is licensed under the MIT License. See the LICENSE
file for details.
This script is for educational purposes only. Use it responsibly.