sccm
misc::sccm
decrypts the password field in the SC_UserAccount
table in the SCCM database. According to Benjamin (gentilkiwi), the passwords are encrypted with the key embedded in the value (3DES if encounter 0x6603
**** at offset 0x0c
). This key is protected by the Microsoft Systems Management Server
RSA key but there are many other things like global secret
, exchange cert
, and some PFX sometimes. It has the following command line arguments:
keyuser
: the specific user to targetkeycontainer
: the exported private keyconnectionstring
: an example is __DRIVER={SQL Server};Trusted=true;DATABASE=CM_PRD;SERVER=myserver.fqdn\instancename;
.
The following image was borrowed from this tweet:
Last updated