Trello Database - Leaked, Download!
by emo - Tuesday July 16, 2024 at 12:07 AM
#11
I'm using notepad++ so i will be here all day trying to decipher this database :3
Lets All Love Feds :p 
[Image: RYcWDtn.jpeg] [Image: yio5SDt.jpeg]
#12
<3 thxx u are tha bestest
#13
why it is shared for free
or has it been shared before?
#14
is it new?
great dump then
#15
nicewell good job

thanks for share
#16
I guess i am too much a moron to read the fucking password in the video. Help wanted..
#17
Insane! Thanks emo Big Grin
#18
Thank you brother! you are the real GOAT
#19
(07-16-2024, 02:41 AM)fjfj3 Wrote: For anyone who has difficulty reading it because it's a 21GB file. Use this to convert it to a readable database, you can query it much faster.

if you want more than uid, email, user and name, then change table structure and just read the other keys from the entry and insert them. if u cant figure out ask someone
import json
import sqlite3
from tqdm import tqdm

conn = sqlite3.connect('trello.db')
cursor = conn.cursor()
cursor.execute('''
    CREATE TABLE IF NOT EXISTS trello_users (
        id TEXT PRIMARY KEY,
        fullName TEXT,
        username TEXT,
        email TEXT
    )
''')

conn.commit()
conn.close()


def parse(json_file):
    conn = sqlite3.connect('trello.db')
    cursor = conn.cursor()

    with open(json_file, 'r') as f:
        for line in f:
            try:
                entry = json.loads(line.strip())
                id = entry.get('id', '')
                fullName = entry.get('fullName', '')
                username = entry.get('username', '')
                email = entry.get('email', '')



                cursor.execute('''
                    INSERT OR IGNORE INTO trello_users (id, fullName, username, email)
                    VALUES (?, ?, ?, ?)
                ''', (id, fullName, username, email))

            except json.JSONDecodeError as e:
                print(f"Shit broke: {e}")
                continue

    conn.commit()
    conn.close()

if __name__ == '__main__':
    parse('trellfull.json')
what's the password?
#20
great data thanks!
This forum account is currently banned. Ban Length: (Permanent)
Ban Reason: Multi-Accounting @I_ReallyLikeThis | http://breachddyfwvcp4kzccos5oxtdbssmfbp...an-Appeals if you feel this is incorrect.


Possibly Related Threads…
Thread Author Replies Views Last Post
  Facebook Database - Leaked, Download! Automation 437 119,543 03-28-2026, 06:53 PM
Last Post: Kiyora
  ProxyScrape Database - Leaked, Download! Automation 40 7,518 03-28-2026, 06:50 PM
Last Post: spaghetoes
  Avito Database - Leaked, Download! Automation 44 7,112 03-28-2026, 06:41 PM
Last Post: jokerforsys
  QuestApp.in Database - Leaked, Download! Dev 47 9,579 03-28-2026, 06:37 PM
Last Post: dtasfar
  SHEIN Database - Leaked, Download! Automation 115 34,604 03-28-2026, 06:36 PM
Last Post: dtasfar



 Users browsing this thread: