0day.today - Biggest Exploit Database in the World.
Things you should know about 0day.today:
Administration of this site uses the official contacts. Beware of impostors!
- We use one main domain: http://0day.today
- Most of the materials is completely FREE
- If you want to purchase the exploit / get V.I.P. access or pay for any other service,
you need to buy or earn GOLD
Administration of this site uses the official contacts. Beware of impostors!
We DO NOT use Telegram or any messengers / social networks!
Please, beware of scammers!
Please, beware of scammers!
- Read the [ agreement ]
- Read the [ Submit ] rules
- Visit the [ faq ] page
- [ Register ] profile
- Get [ GOLD ]
- If you want to [ sell ]
- If you want to [ buy ]
- If you lost [ Account ]
- Any questions [ admin@0day.today ]
- Authorisation page
- Registration page
- Restore account page
- FAQ page
- Contacts page
- Publishing rules
- Agreement page
Mail:
Facebook:
Twitter:
Telegram:
We DO NOT use Telegram or any messengers / social networks!
You can contact us by:
Mail:
Facebook:
Twitter:
Telegram:
We DO NOT use Telegram or any messengers / social networks!
Web Wiz Forums <= 9.07 (sub) Remote Directory Traversal Vulnerability
===================================================================== Web Wiz Forums <= 9.07 (sub) Remote Directory Traversal Vulnerability ===================================================================== ########################## WwW.BugReport.ir ########################################### # # AmnPardaz Security Research Team # # Title: Web Wiz Forums(TM) # Vendor: http://www.webwizguide.com/ # Bug: Directory traversal # Vulnerable Version: 9.07 # Exploit: Available # Fix Available: No! Fast Solution is available. ################################################################################### #################### - Description: #################### Web Wiz Forums bulletin board system is the ideal forum package for your website's community. #################### - Vulnerability: #################### Input passed to the FolderName parameter in "RTE_file_browser.asp" and "file_browser.asp" are not properly sanitised before being used. This can be exploited to list directories, list txt and list zip files through directory traversal attacks. Also, "RTE_file_browser.asp" does not check user's session and an unauthenticated attacker can perform this attack. -POC: http://[WebWiz Forum]/RTE_file_browser.asp?look=&sub=\.....\\\.....\\\.....\\\ #################### - Fast Solution : #################### You can see below lines in "RTE_file_browser.asp" and "file_browser.asp" 'Stip path tampering for security reasons strSubFolderName = Replace(strSubFolderName, "../", "", 1, -1, 1) strSubFolderName = Replace(strSubFolderName, "..\", "", 1, -1, 1) strSubFolderName = Replace(strSubFolderName, "./", "", 1, -1, 1) strSubFolderName = Replace(strSubFolderName, ".\", "", 1, -1, 1) Only add this to them: strSubFolderName = Replace(strSubFolderName, "/", "\", 1, -1, 1) strSubFolderName = Replace(strSubFolderName, "\\", "\", 1, -1, 1) strSubFolderName = Replace(strSubFolderName, "..", "", 1, -1, 1) # 0day.today [2024-11-15] #