Link to home
Start Free TrialLog in
Avatar of southwestsixteen
southwestsixteenFlag for United Kingdom of Great Britain and Northern Ireland

asked on

Customise block page on Sonicwall content filter

Hi,

My knowledge of HTML is rubbish. We have just implemented the Sonicwall content Filter on our firewall and I need to customise the block page. The default block page just displays the URL and the code is here:


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
$#NO_CACHE_PAGE#$
<meta http-equiv="Content-Type" content="text/html">
<title>SonicWALL - Web Site Blocked</title>
<meta name="id" content="siteBlocked" >
<style type="text/css">
</style>
</head>
<body bgcolor=#ffffff text=#000000>
<br><br><br><br><br>
<table align=center cellpadding=5 border=2 width=500 bgcolor=#eeeeee><tr><td align=center nowrap>
             <table align=center cellpadding=5 width=100%>
            <tr><td align=center nowrap><br><br><font face=arial size=4><b>$#STR_WEBBLOCKMSG#$</b></font></td></tr>
            <tr><td align=center nowrap><font face=arial size=4>
                        <br>
                        <script>
                        <!--
                        var blockedURL = new String(document.URL);
                        blockedURL = blockedURL.replace(/</g, "&lt;").replace(/>/g, "&gt;");
                        if (blockedURL.length < 100) document.write('<b>URL:</b> ' + blockedURL);
                        else document.write('<b>URL:</b> ' + blockedURL.substring(0,100) + '...');
                        //-->
                        </script>
            </font></td></tr>
            <tr><td align=center nowrap><font face=arial size=4>
                        <br><!-- !!!webcfsDoNotTouchThisMarker!!! -->
            </font></td></tr>
            </table>
            <br><input type="button" class="button" name="Go Back" value="Go Back" onclick="history.back();"><br><br>
</td></tr></table>
</body>
</html>

I need the block page to display the following writing:

This site has been blocked by the **** content filtering system as it has been deemed inappropriate according to the ***** e-safety guidelines. If you feel that this site has been inaccurately blocked or would like more information about the content filtering policy, please contact ****** e-safety coordinator, ******.

Any help would be greatly appreciated. Thanks
Avatar of dmeeren
dmeeren
Flag of Netherlands image

This is the simplest display

<html>
<head><title>This site has been blocked </title>
<meta name="id" content="siteBlocked" >
</head>
<body>
This site has been blocked by the **** content filtering system as it has been deemed inappropriate according to the ***** e-safety guidelines. If you feel that this site has been inaccurately blocked or would like more information about the content filtering policy, please contact ****** e-safety coordinator, ******. 
</body>
</html>

Open in new window

Avatar of southwestsixteen

ASKER

Hi dmeeren, thanks for the reply.

I tried your solution and while it works and displays the message on a white background, the client feel that it is a bit too simple and quite liked the Sonicwall layout of the blocked page. They also like the GO BACK button that is displayed after the wording. Is there no way to incorporate the wording i provided in place of the current 'URL: www.website.com' wording?

Please see the attached screenshot which shows how it looks at the moment. User generated image
Give a screenshot of sonicwalll layout and it's code if possible
If you just want to add text to the default block page, review the link below. It will tell you how to do that.

https://www.fuzeqna.com/sonicwallkb/consumer/kbdetail.asp?kbid=7581
Hi guys,

user_n - please see my 2 comments above. They have the code and a screenshot of the layout

digitap - that link seems to be for an older build of the CFS and looks nothing like the new one? I tried to find matching elements but the older one is waaay different (and better in my opinion).
Are you sure? I'm running an NSA 2400 with the latest (Early Release) firmware and the code looks the same as the article. If I go to Security Services > Content Filter, then scroll to the bottom on the left, I can view the code of the displayed paged. Scroll down wtihin that window and you'll see the area where you can add your test. I attached a screen shot.
SonicWALL-CFS.jpg
That is weird. I installed this Sonicwall NSA240 last week. I'll double check that the firmware i'm running is the latest and get back to you.
I have missed something. My fault. Please excuse me
ASKER CERTIFIED SOLUTION
Avatar of user_n
user_n
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
The back button is no problem at all:

<html>
<head><title>This site has been blocked </title>
<meta name="id" content="siteBlocked" >
</head>
<body>
This site has been blocked by the **** content filtering system as it has been deemed inappropriate according to the ***** e-safety guidelines. If you feel that this site has been inaccurately blocked or would like more information about the content filtering policy, please contact ****** e-safety coordinator, ******. 
<br />
<input type="button" class="button" name="Go Back" value="Go Back" onclick="history.back();">
</body>
</html>

Open in new window

Oops, I meant, "...scroll to the bottom on the right..." not on the left re: http:#a36549969.
      
Thanks mate. That worked perfectly.
So, in the solution you accepted, is the code custom? Realize that an update may revert this back to the default.
It is custom in the sense that the code $#STR_WEBBLOCKMSG#$ was replaced by the client's e-safety message. I have copied the code to a Word document so if it ever reverts back to default I can easily change it back.

I actually added some line breaks so this is what the final article looks like. User generated image
What was the final code that you pasted into the sonicwall?