One Day Sec

Where are the encrypted passwords stored in the ADAudit Plus database, and how can they be queried?

Encrypted passwords are stored in the `public.aaapassword` table. They can be queried using PostgreSQL with a command like: `SELECT * FROM public.aaapassword ORDER BY password_id ASC;`. The table includes columns for `password`, `algorithm` (set to bcrypt), `salt`, and `factor`. More details are in the ADAudit Plus Analysis - Data Encryption Analysis article.
database storageaaapassword tablePostgreSQL queryencrypted passwordsbcrypt

Browse all Q&A →