Python script to flood matrix rooms. https://willys.zone
Go to file
Willy c3e6c6a9d0 new image 2023-10-24 02:39:23 -04:00
images new image 2023-10-24 02:39:23 -04:00
.gitignore Initial commit 2023-09-17 23:40:51 -04:00
LICENSE Initial commit 2023-09-17 23:40:51 -04:00
README.md Updated Readme for new features 2023-09-28 01:18:12 -04:00
matrix_nuker.py Added custom paths for tokens/message files. 2023-09-25 18:36:23 -04:00
messages.txt Added Sample message & Sample token file 2023-09-24 01:14:39 -04:00
requirements.txt Added requirements.txt 2023-09-23 03:11:14 -04:00
tokens.txt Added Sample message & Sample token file 2023-09-24 01:14:39 -04:00

README.md

matrix_nuker

Simple Python script to flood Matrix rooms using the matrix-client SDK. Useful to stress test moderation bots. The author is not liable for misuse, use at your own risk.

Usage

git clone https://git.willys.zone/Willy/matrix_nuker.git
cd matrix_nuker
pip install -r requirements.txt
python .\matrix_nuker.py --help

Add your tokens and messages to a txt file; every token and message should be separated by a comma. An example is included in messages.txt and tokens.txt.

Examples

For a normal attack without countermeasures:

python matrix_nuker.py -hs https://matrix.org -id !XXXXXXX:matrix.org -tf tokens.txt -mf messages.txt

A flood attack alongside a mass ping attack with wordlist countermeasures:

python matrix_nuker.py -hs https://matrix.org -id !XXXXXXX:matrix.org -tf /home/user/tokens.txt -mf /home/user/messages.txt --ping-attack --counter-wordlists

Features

  • Custom speed for attacks to avoid API rate limits.
  • Mass ping attack with unicode character countermeasures to evade spam protection.
  • Countermeasure against wordlists used by moderation bots. Changes all texts to use unicode lettering randomly to evade wordlists and spam detection.