When storing connection passwords, MS RDP provides the ability to store the password as either clear text or to encrypt it.
Thr resulting node in the file looks like
<logonCredentials inherit="None">
<userName>USER</userName>
<domain>DOMAIN</domain>
<password storeAsClearText="False">AQAdERjHoAwE/Cl+sBAAAA(...)zh</password>
</logonCredentials>
I'm wondering how secure is that encryption, and if the file can be shared among coworkers without someone being able to easily guess the password.
I'm guessing "not much" but I couldn't find exactly how that encrypted chain is generated.
Any idea? Thanks!