Skip to content

Instantly share code, notes, and snippets.

View mapyJJJ's full-sized avatar
😇
radiance

mapyJJJ

😇
radiance
View GitHub Profile
@felipou
felipou / decrypt_dbeaver.py
Last active June 19, 2024 10:16
DBeaver password decryption script - for newer versions of DBeaver
# https://stackoverflow.com/questions/39928401/recover-db-password-stored-in-my-dbeaver-connection
# requires pycryptodome lib (pip install pycryptodome)
import sys
import base64
import os
import json
from Crypto.Cipher import AES