CuteEditor can display a stack trace in error information that might pose a security risk. To stop this possible security leak, you must edit the web.config files as explained in the following sections.
To generate the error, open eWeb, then paste the following example into the browser address box:
http://mywebsite/eweb/CuteSoft_Client/CuteEditor/Load.ashx?type=style&file=<%25%20whs=21705%20%25>whscheck<%25=%20whs.to_s%20%25>&=SyntaxHighlighter.css
Where mywebsite is the address of your organization's specific eWeb site.
You should see a detailed error with the stack trace.
To replace this error with a less verbose, security-neutral error message, use the following steps:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.web>
<globalization requestEncoding="utf-8" responseEncoding="utf-8" />
<compilation debug="true"/>
<customErrors mode="Off"/>
</system.web>
</configuration>
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.web>
<globalization requestEncoding="utf-8" responseEncoding="utf-8" />
<compilation debug="true"/>
<customErrors mode="Off"/>
</system.web>
</configuration>