Invicti identified a stack trace disclosure (ASP.NET) in the target web server's HTTP response.
An attacker can obtain information such as:
This information might help an attacker gain more information and potentially focus on the development of further attacks for the target system.
Apply following changes on your web.config
file to prevent information leakage by applying custom error pages. <System.Web> <customErrors mode="On" defaultRedirect="~/error/GeneralError.aspx"> <error statusCode="403" redirect="~/error/Forbidden.aspx" /> <error statusCode="404" redirect="~/error/PageNotFound.aspx" /> <error statusCode="500" redirect="~/error/InternalError.aspx" /> </customErrors></System.Web>
You can search and find all vulnerabilities