Plain text
The MS-ISAC provides information about our Alert Level, Advisories and Daily Cyber Security Tip in plain text format:
RSS and XML
RSS feeds are available for both our current threat level and our advisory listing and our Daily Cyber Security Tip.
- http://msisac.cisecurity.org/xml/rss-msisac-alert-level.xml
- http://msisac.cisecurity.org/xml/rss-msisac-advisories.xml
- http://msisac.cisecurity.org/daily-tips/rss-tip.xml
Using the MS-ISAC Cyber Alert Level Graphic on your website
You can easily incorporate the MS-ISAC Alert Level Graphic into your website by cutting and pasting the code below into your page.
The code above results in the following output on your page:
- CSS presentation rules for the container can be assigned to the div selector #msisac_graphic_icon
Customizing the MS-ISAC Cyber Alert Level Graphic on your website
By adding some simple javascript commands to the scripts above, you can customize the look and feel of the MS-ISAC Cyber Alert Level Graphic for your website.
Example 1: specifying the name of the div that is to contain the graphic.
<div id="ex1_div"> </div>
<script type="text/javascript" src="http://www.msisac.org/scripts/flash/swfobject.js"></script>
<script type="text/javascript">
msisac_graphic_divid = "ex1_div";
</script>
<script type="text/javascript" src="http://www.msisac.org/scripts/alertlevel.js"></script>
The code above results in the following output on your page:
- Place the script code anywhere in your page AFTER your div
- Its a good idea to place a static text link to the msisac digital dashboard inside your div in case the user doesnt have javascript enabled. in that case, the user will still get a link to the dashboard.
Example 2: specifying the size of the graphic.
<div id="ex2_div"> </div>
<script type="text/javascript" src="http://www.msisac.org/scripts/flash/swfobject.js"></script>
<script type="text/javascript">
msisac_graphic_divid = "ex2_div";
msisac_graphic_size = "120x90";
</script>
<script type="text/javascript" src="http://www.msisac.org/scripts/alertlevel.js"></script>
The code above results in the following output on your page:
- Place the script code anywhere in your page AFTER your div
- The following sizes are supported:
- 120x90
- 150x50
- 180x150
Example 3: changing font colors
<script type="text/javascript" src="http://www.msisac.org/scripts/flash/swfobject.js"></script>
<script type="text/javascript">
msisac_graphic_divid = "ex3_div";
msisac_graphic_size = "180x150";
msisac_graphic_fontColor = "0xD5EDB3";
</script>
<script type="text/javascript" src="http://www.msisac.org/scripts/alertlevel.js"></script>
The code above results in the following output on your page:
- Place the script code above anywhere in your page AFTER your div
- The MSISAC Graphic has a transparent background - so the background color of your webpage (or in this case of the div #ex2_div) comes through, which may mean you need to customize the font color to match
- Becareful with colors - the threat level map will display in one of the (5) appropriate color codes, so stay away from these with your background colors:
- Low (Green) #336600
- Guarded (Blue) #000066
- Elevated (Yellow) #ffff33
- High (Orange) #ff9900
- Severe (Red) #ff0000




