Internal service information should not be stored in the source code, especially AD configurations, as it is obtained from the admon-chanel configuration file.
Use these insecure service configurations to gain access to the AD and collect all kinds of information that will be useful in later attacks, such as internal network architecture recognition or employee information.
Service configurations and credentials must be in protected environments.
Internal attacker with access to service configurations.
⌚ 60 minutes.
Default score using CVSS 3.1. It may change depending on the context of the src.
Default score using CVSS 4.0. It may change depending on the context of the src.
Sensitive resources do not have their credentials stored in the source code
using System;
class cipher{
public void Encrypt() {
DirectoryEntry thrdDirectoryEntry = new DirectoryEntry(adPath, "u", "p", AuthenticationTypes.Secure);
}
}
There is sensitive information store as plain text
using System;
class cipher{
public void Encrypt() {
DirectoryEntry myDirectoryEntry = new DirectoryEntry(adPath);
myDirectoryEntry.AuthenticationType = AuthenticationTypes.None;
DirectoryEntry sndDirectoryEntry = new DirectoryEntry(adPath, "u", "p", AuthenticationTypes.None);
}
}