Automatically crawling stealer/c2 messages from its chat group with api key + chat id (both is required obviously :D)
-
First, create
token_list.json
inutils/
directory or you can modify the code to read it from any path you want, any name you love. -
Add token and chat id with
/api/update_token
endpoint or you can manually do it with this format:
{
"bots": [
{
"token": "1234567890:AAAbbbb-ccCCddEEEEE",
"chat_id": -3219874560,
"status": "False",
"family": "Example"
},
{
"token": "1234567890:AAAbbbb-ccCCddEEEEE",
"chat_id": -3219874560,
"status": "False",
"family": "Braodo"
},
{
"token": "1234567890:AAAbbbb-ccCCddEEEEE",
"chat_id": -3219874560,
"status": "False",
"family": "None"
},
]
}
-
Update the profile parser you need if it not in the
utils/parser.py
code. -
Run the code by building up the docker:
$ docker compose up --build -d
- You can modify the endpoint's port in the yaml config. By default, you can access the endpoint at
127.0.0.1:5000