SQL Injection, CWE-89, CAPEC-66, www.bulletlink.com, DORK

CWE-89: Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection')

Report generated by XSS.CX at Thu Mar 17 08:55:23 CDT 2011.


XSS.CX Research investigates and reports on security vulnerabilities embedded in Web Applications and Products used in wide-scale deployment.

XSS.CX Home XSS.CX Research Blog
Loading

1. SQL injection

1.1. http://bulletlink.com/clients/bulletlink/Home_Client_Site_Flash.swf [REST URL parameter 1]

1.2. http://bulletlink.com/clients/bulletlink/Home_Client_Site_Flash.swf [REST URL parameter 2]

1.3. http://bulletlink.com/clients/bulletlink/Home_Client_Site_Flash.swf [REST URL parameter 3]

1.4. http://bulletlink.com/clients/bulletlink/Home_Header_Flash.swf [REST URL parameter 1]

1.5. http://bulletlink.com/clients/bulletlink/Home_Header_Flash.swf [REST URL parameter 2]

1.6. http://bulletlink.com/clients/bulletlink/Home_Header_Flash.swf [REST URL parameter 3]

1.7. http://bulletlink.com/clients/bulletlink/Home_Work_Flash.swf [REST URL parameter 1]

1.8. http://bulletlink.com/clients/bulletlink/Home_Work_Flash.swf [REST URL parameter 2]

1.9. http://bulletlink.com/clients/bulletlink/Home_Work_Flash.swf [REST URL parameter 3]

1.10. http://bulletlink.com/clients/bulletlink/Latest_Flash_Button_Flash.swf [REST URL parameter 1]

1.11. http://bulletlink.com/clients/bulletlink/Latest_Flash_Button_Flash.swf [REST URL parameter 2]

1.12. http://bulletlink.com/clients/bulletlink/Latest_Flash_Button_Flash.swf [REST URL parameter 3]

1.13. http://bulletlink.com/clients/bulletlink/favicon.ico [REST URL parameter 1]

1.14. http://bulletlink.com/clients/bulletlink/favicon.ico [REST URL parameter 2]

1.15. http://bulletlink.com/clients/bulletlink/favicon.ico [REST URL parameter 3]

1.16. http://bulletlink.com/clients/bulletlink/null [REST URL parameter 1]

1.17. http://bulletlink.com/clients/bulletlink/null [REST URL parameter 2]

1.18. http://bulletlink.com/clients/bulletlink/null [REST URL parameter 3]

1.19. http://bulletlink.com/clients/bulletlink/null [name of an arbitrarily supplied request parameter]

1.20. http://bulletlink.com/clients/bulletlink/thumbnails1/thumbnails.xml [REST URL parameter 1]

1.21. http://bulletlink.com/clients/bulletlink/thumbnails1/thumbnails.xml [REST URL parameter 2]

1.22. http://bulletlink.com/clients/bulletlink/thumbnails1/thumbnails.xml [REST URL parameter 3]

1.23. http://bulletlink.com/clients/bulletlink/thumbnails1/thumbnails.xml [REST URL parameter 4]

1.24. http://bulletlink.com/favicon.ico [REST URL parameter 1]

1.25. http://bulletlink.com/favicon.ico [name of an arbitrarily supplied request parameter]

2. Cookie without HttpOnly flag set

3. Cross-domain script include

3.1. http://bulletlink.com/

3.2. http://bulletlink.com/clients/bulletlink/bulletlink.js

4. Email addresses disclosed

5. HTML does not specify charset

5.1. http://bulletlink.com/

5.2. http://bulletlink.com/clients/bulletlink/null

5.3. http://bulletlink.com/favicon.ico

6. Content type incorrectly stated

6.1. http://bulletlink.com/clients/bulletlink/null

6.2. http://bulletlink.com/favicon.ico



1. SQL injection  next
There are 25 instances of this issue:

Issue background

SQL injection vulnerabilities arise when user-controllable data is incorporated into database SQL queries in an unsafe manner. An attacker can supply crafted input to break out of the data context in which their input appears and interfere with the structure of the surrounding query.

Various attacks can be delivered via SQL injection, including reading or modifying critical application data, interfering with application logic, escalating privileges within the database and executing operating system commands.

Remediation background

The most effective way to prevent SQL injection attacks is to use parameterised queries (also known as prepared statements) for all database access. This method uses two steps to incorporate potentially tainted data into SQL queries: first, the application specifies the structure of the query, leaving placeholders for each item of user input; second, the application specifies the contents of each placeholder. Because the structure of the query has already defined in the first step, it is not possible for malformed data in the second step to interfere with the query structure. You should review the documentation for your database and application platform to determine the appropriate APIs which you can use to perform parameterised queries. It is strongly recommended that you parameterise every variable data item that is incorporated into database queries, even if it is not obviously tainted, to prevent oversights occurring and avoid vulnerabilities being introduced by changes elsewhere within the code base of the application.

You should be aware that some commonly employed and recommended mitigations for SQL injection vulnerabilities are not always effective:



1.1. http://bulletlink.com/clients/bulletlink/Home_Client_Site_Flash.swf [REST URL parameter 1]  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://bulletlink.com
Path:   /clients/bulletlink/Home_Client_Site_Flash.swf

Issue detail

The REST URL parameter 1 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 1, and a database error message was returned. Two single quotes were then submitted and the error message disappeared. You should review the contents of the error message, and the application's handling of other input, to confirm whether a vulnerability is present.

The database appears to be Microsoft SQL Server.

Remediation detail

The application should handle errors gracefully and prevent SQL error messages from being returned in responses.

Request 1

GET /clients'/bulletlink/Home_Client_Site_Flash.swf HTTP/1.1
Host: bulletlink.com
Proxy-Connection: keep-alive
Referer: http://bulletlink.com/
Accept: */*
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: ASPSESSIONIDSSCSRDSS=EGOAHJDABBPMBGKEECBHFJFG

Response 1

HTTP/1.1 500 Internal Server Error
Date: Wed, 16 Mar 2011 19:08:30 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Content-Length: 315
Content-Type: text/html
Cache-control: private

<font face="Arial" size=2>
<p>Microsoft OLE DB Provider for SQL Server</font> <font face="Arial" size=2>error '80040e14'</font>
<p>
<font face="Arial" size=2>Unclosed quotation mark before the character string ''.</font>
...[SNIP]...

Request 2

GET /clients''/bulletlink/Home_Client_Site_Flash.swf HTTP/1.1
Host: bulletlink.com
Proxy-Connection: keep-alive
Referer: http://bulletlink.com/
Accept: */*
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: ASPSESSIONIDSSCSRDSS=EGOAHJDABBPMBGKEECBHFJFG

Response 2

HTTP/1.1 200 OK
Date: Wed, 16 Mar 2011 19:08:32 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Content-Length: 114
Content-Type: text/html
Cache-control: private

<center><h1>Page Not Found</h1><a href=http://bulletlink.com/logout.asp>Click here to visit home page</a></center>

1.2. http://bulletlink.com/clients/bulletlink/Home_Client_Site_Flash.swf [REST URL parameter 2]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://bulletlink.com
Path:   /clients/bulletlink/Home_Client_Site_Flash.swf

Issue detail

The REST URL parameter 2 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 2, and a database error message was returned. Two single quotes were then submitted and the error message disappeared. You should review the contents of the error message, and the application's handling of other input, to confirm whether a vulnerability is present.

The database appears to be Microsoft SQL Server.

Remediation detail

The application should handle errors gracefully and prevent SQL error messages from being returned in responses.

Request 1

GET /clients/bulletlink'/Home_Client_Site_Flash.swf HTTP/1.1
Host: bulletlink.com
Proxy-Connection: keep-alive
Referer: http://bulletlink.com/
Accept: */*
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: ASPSESSIONIDSSCSRDSS=EGOAHJDABBPMBGKEECBHFJFG

Response 1

HTTP/1.1 500 Internal Server Error
Date: Wed, 16 Mar 2011 19:08:33 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Content-Length: 315
Content-Type: text/html
Cache-control: private

<font face="Arial" size=2>
<p>Microsoft OLE DB Provider for SQL Server</font> <font face="Arial" size=2>error '80040e14'</font>
<p>
<font face="Arial" size=2>Unclosed quotation mark before the character string ''.</font>
...[SNIP]...

Request 2

GET /clients/bulletlink''/Home_Client_Site_Flash.swf HTTP/1.1
Host: bulletlink.com
Proxy-Connection: keep-alive
Referer: http://bulletlink.com/
Accept: */*
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: ASPSESSIONIDSSCSRDSS=EGOAHJDABBPMBGKEECBHFJFG

Response 2

HTTP/1.1 200 OK
Date: Wed, 16 Mar 2011 19:08:34 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Content-Length: 114
Content-Type: text/html
Cache-control: private

<center><h1>Page Not Found</h1><a href=http://bulletlink.com/logout.asp>Click here to visit home page</a></center>

1.3. http://bulletlink.com/clients/bulletlink/Home_Client_Site_Flash.swf [REST URL parameter 3]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://bulletlink.com
Path:   /clients/bulletlink/Home_Client_Site_Flash.swf

Issue detail

The REST URL parameter 3 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 3, and a database error message was returned. Two single quotes were then submitted and the error message disappeared. You should review the contents of the error message, and the application's handling of other input, to confirm whether a vulnerability is present.

The database appears to be Microsoft SQL Server.

Remediation detail

The application should handle errors gracefully and prevent SQL error messages from being returned in responses.

Request 1

GET /clients/bulletlink/Home_Client_Site_Flash.swf' HTTP/1.1
Host: bulletlink.com
Proxy-Connection: keep-alive
Referer: http://bulletlink.com/
Accept: */*
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: ASPSESSIONIDSSCSRDSS=EGOAHJDABBPMBGKEECBHFJFG

Response 1

HTTP/1.1 500 Internal Server Error
Date: Wed, 16 Mar 2011 19:08:36 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Content-Length: 383
Content-Type: text/html
Cache-control: private

<font face="Arial" size=2>
<p>Microsoft OLE DB Provider for SQL Server</font> <font face="Arial" size=2>error '80040e14'</font>
<p>
<font face="Arial" size=2>Unclosed quotation mark before the character string 'http://bulletlink.com/clients/bulletlink/home_client_site_flash.swf''.</font>
...[SNIP]...

Request 2

GET /clients/bulletlink/Home_Client_Site_Flash.swf'' HTTP/1.1
Host: bulletlink.com
Proxy-Connection: keep-alive
Referer: http://bulletlink.com/
Accept: */*
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: ASPSESSIONIDSSCSRDSS=EGOAHJDABBPMBGKEECBHFJFG

Response 2

HTTP/1.1 200 OK
Date: Wed, 16 Mar 2011 19:08:37 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Content-Length: 114
Content-Type: text/html
Cache-control: private

<center><h1>Page Not Found</h1><a href=http://bulletlink.com/logout.asp>Click here to visit home page</a></center>

1.4. http://bulletlink.com/clients/bulletlink/Home_Header_Flash.swf [REST URL parameter 1]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://bulletlink.com
Path:   /clients/bulletlink/Home_Header_Flash.swf

Issue detail

The REST URL parameter 1 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 1, and a database error message was returned. Two single quotes were then submitted and the error message disappeared. You should review the contents of the error message, and the application's handling of other input, to confirm whether a vulnerability is present.

The database appears to be Microsoft SQL Server.

Remediation detail

The application should handle errors gracefully and prevent SQL error messages from being returned in responses.

Request 1

GET /clients'/bulletlink/Home_Header_Flash.swf HTTP/1.1
Host: bulletlink.com
Proxy-Connection: keep-alive
Referer: http://bulletlink.com/
Accept: */*
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: ASPSESSIONIDSSCSRDSS=EGOAHJDABBPMBGKEECBHFJFG

Response 1

HTTP/1.1 500 Internal Server Error
Date: Wed, 16 Mar 2011 19:08:21 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Content-Length: 315
Content-Type: text/html
Cache-control: private

<font face="Arial" size=2>
<p>Microsoft OLE DB Provider for SQL Server</font> <font face="Arial" size=2>error '80040e14'</font>
<p>
<font face="Arial" size=2>Unclosed quotation mark before the character string ''.</font>
...[SNIP]...

Request 2

GET /clients''/bulletlink/Home_Header_Flash.swf HTTP/1.1
Host: bulletlink.com
Proxy-Connection: keep-alive
Referer: http://bulletlink.com/
Accept: */*
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: ASPSESSIONIDSSCSRDSS=EGOAHJDABBPMBGKEECBHFJFG

Response 2

HTTP/1.1 200 OK
Date: Wed, 16 Mar 2011 19:08:22 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Content-Length: 114
Content-Type: text/html
Cache-control: private

<center><h1>Page Not Found</h1><a href=http://bulletlink.com/logout.asp>Click here to visit home page</a></center>

1.5. http://bulletlink.com/clients/bulletlink/Home_Header_Flash.swf [REST URL parameter 2]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://bulletlink.com
Path:   /clients/bulletlink/Home_Header_Flash.swf

Issue detail

The REST URL parameter 2 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 2, and a database error message was returned. Two single quotes were then submitted and the error message disappeared. You should review the contents of the error message, and the application's handling of other input, to confirm whether a vulnerability is present.

The database appears to be Microsoft SQL Server.

Remediation detail

The application should handle errors gracefully and prevent SQL error messages from being returned in responses.

Request 1

GET /clients/bulletlink'/Home_Header_Flash.swf HTTP/1.1
Host: bulletlink.com
Proxy-Connection: keep-alive
Referer: http://bulletlink.com/
Accept: */*
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: ASPSESSIONIDSSCSRDSS=EGOAHJDABBPMBGKEECBHFJFG

Response 1

HTTP/1.1 500 Internal Server Error
Date: Wed, 16 Mar 2011 19:08:24 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Content-Length: 315
Content-Type: text/html
Cache-control: private

<font face="Arial" size=2>
<p>Microsoft OLE DB Provider for SQL Server</font> <font face="Arial" size=2>error '80040e14'</font>
<p>
<font face="Arial" size=2>Unclosed quotation mark before the character string ''.</font>
...[SNIP]...

Request 2

GET /clients/bulletlink''/Home_Header_Flash.swf HTTP/1.1
Host: bulletlink.com
Proxy-Connection: keep-alive
Referer: http://bulletlink.com/
Accept: */*
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: ASPSESSIONIDSSCSRDSS=EGOAHJDABBPMBGKEECBHFJFG

Response 2

HTTP/1.1 200 OK
Date: Wed, 16 Mar 2011 19:08:25 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Content-Length: 114
Content-Type: text/html
Cache-control: private

<center><h1>Page Not Found</h1><a href=http://bulletlink.com/logout.asp>Click here to visit home page</a></center>

1.6. http://bulletlink.com/clients/bulletlink/Home_Header_Flash.swf [REST URL parameter 3]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://bulletlink.com
Path:   /clients/bulletlink/Home_Header_Flash.swf

Issue detail

The REST URL parameter 3 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 3, and a database error message was returned. Two single quotes were then submitted and the error message disappeared. You should review the contents of the error message, and the application's handling of other input, to confirm whether a vulnerability is present.

The database appears to be Microsoft SQL Server.

Remediation detail

The application should handle errors gracefully and prevent SQL error messages from being returned in responses.

Request 1

GET /clients/bulletlink/Home_Header_Flash.swf' HTTP/1.1
Host: bulletlink.com
Proxy-Connection: keep-alive
Referer: http://bulletlink.com/
Accept: */*
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: ASPSESSIONIDSSCSRDSS=EGOAHJDABBPMBGKEECBHFJFG

Response 1

HTTP/1.1 500 Internal Server Error
Date: Wed, 16 Mar 2011 19:08:26 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Content-Length: 378
Content-Type: text/html
Cache-control: private

<font face="Arial" size=2>
<p>Microsoft OLE DB Provider for SQL Server</font> <font face="Arial" size=2>error '80040e14'</font>
<p>
<font face="Arial" size=2>Unclosed quotation mark before the character string 'http://bulletlink.com/clients/bulletlink/home_header_flash.swf''.</font>
...[SNIP]...

Request 2

GET /clients/bulletlink/Home_Header_Flash.swf'' HTTP/1.1
Host: bulletlink.com
Proxy-Connection: keep-alive
Referer: http://bulletlink.com/
Accept: */*
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: ASPSESSIONIDSSCSRDSS=EGOAHJDABBPMBGKEECBHFJFG

Response 2

HTTP/1.1 200 OK
Date: Wed, 16 Mar 2011 19:08:27 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Content-Length: 114
Content-Type: text/html
Cache-control: private

<center><h1>Page Not Found</h1><a href=http://bulletlink.com/logout.asp>Click here to visit home page</a></center>

1.7. http://bulletlink.com/clients/bulletlink/Home_Work_Flash.swf [REST URL parameter 1]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://bulletlink.com
Path:   /clients/bulletlink/Home_Work_Flash.swf

Issue detail

The REST URL parameter 1 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 1, and a database error message was returned. Two single quotes were then submitted and the error message disappeared. You should review the contents of the error message, and the application's handling of other input, to confirm whether a vulnerability is present.

The database appears to be Microsoft SQL Server.

Remediation detail

The application should handle errors gracefully and prevent SQL error messages from being returned in responses.

Request 1

GET /clients'/bulletlink/Home_Work_Flash.swf HTTP/1.1
Host: bulletlink.com
Proxy-Connection: keep-alive
Referer: http://bulletlink.com/
Accept: */*
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: ASPSESSIONIDSSCSRDSS=EGOAHJDABBPMBGKEECBHFJFG

Response 1

HTTP/1.1 500 Internal Server Error
Date: Wed, 16 Mar 2011 19:07:19 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Content-Length: 315
Content-Type: text/html
Cache-control: private

<font face="Arial" size=2>
<p>Microsoft OLE DB Provider for SQL Server</font> <font face="Arial" size=2>error '80040e14'</font>
<p>
<font face="Arial" size=2>Unclosed quotation mark before the character string ''.</font>
...[SNIP]...

Request 2

GET /clients''/bulletlink/Home_Work_Flash.swf HTTP/1.1
Host: bulletlink.com
Proxy-Connection: keep-alive
Referer: http://bulletlink.com/
Accept: */*
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: ASPSESSIONIDSSCSRDSS=EGOAHJDABBPMBGKEECBHFJFG

Response 2

HTTP/1.1 200 OK
Date: Wed, 16 Mar 2011 19:07:20 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Content-Length: 114
Content-Type: text/html
Cache-control: private

<center><h1>Page Not Found</h1><a href=http://bulletlink.com/logout.asp>Click here to visit home page</a></center>

1.8. http://bulletlink.com/clients/bulletlink/Home_Work_Flash.swf [REST URL parameter 2]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://bulletlink.com
Path:   /clients/bulletlink/Home_Work_Flash.swf

Issue detail

The REST URL parameter 2 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 2, and a database error message was returned. Two single quotes were then submitted and the error message disappeared. You should review the contents of the error message, and the application's handling of other input, to confirm whether a vulnerability is present.

The database appears to be Microsoft SQL Server.

Remediation detail

The application should handle errors gracefully and prevent SQL error messages from being returned in responses.

Request 1

GET /clients/bulletlink'/Home_Work_Flash.swf HTTP/1.1
Host: bulletlink.com
Proxy-Connection: keep-alive
Referer: http://bulletlink.com/
Accept: */*
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: ASPSESSIONIDSSCSRDSS=EGOAHJDABBPMBGKEECBHFJFG

Response 1

HTTP/1.1 500 Internal Server Error
Date: Wed, 16 Mar 2011 19:07:22 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Content-Length: 315
Content-Type: text/html
Cache-control: private

<font face="Arial" size=2>
<p>Microsoft OLE DB Provider for SQL Server</font> <font face="Arial" size=2>error '80040e14'</font>
<p>
<font face="Arial" size=2>Unclosed quotation mark before the character string ''.</font>
...[SNIP]...

Request 2

GET /clients/bulletlink''/Home_Work_Flash.swf HTTP/1.1
Host: bulletlink.com
Proxy-Connection: keep-alive
Referer: http://bulletlink.com/
Accept: */*
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: ASPSESSIONIDSSCSRDSS=EGOAHJDABBPMBGKEECBHFJFG

Response 2

HTTP/1.1 200 OK
Date: Wed, 16 Mar 2011 19:07:23 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Content-Length: 114
Content-Type: text/html
Cache-control: private

<center><h1>Page Not Found</h1><a href=http://bulletlink.com/logout.asp>Click here to visit home page</a></center>

1.9. http://bulletlink.com/clients/bulletlink/Home_Work_Flash.swf [REST URL parameter 3]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://bulletlink.com
Path:   /clients/bulletlink/Home_Work_Flash.swf

Issue detail

The REST URL parameter 3 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 3, and a database error message was returned. Two single quotes were then submitted and the error message disappeared. You should review the contents of the error message, and the application's handling of other input, to confirm whether a vulnerability is present.

The database appears to be Microsoft SQL Server.

Remediation detail

The application should handle errors gracefully and prevent SQL error messages from being returned in responses.

Request 1

GET /clients/bulletlink/Home_Work_Flash.swf' HTTP/1.1
Host: bulletlink.com
Proxy-Connection: keep-alive
Referer: http://bulletlink.com/
Accept: */*
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: ASPSESSIONIDSSCSRDSS=EGOAHJDABBPMBGKEECBHFJFG

Response 1

HTTP/1.1 500 Internal Server Error
Date: Wed, 16 Mar 2011 19:07:24 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Content-Length: 376
Content-Type: text/html
Cache-control: private

<font face="Arial" size=2>
<p>Microsoft OLE DB Provider for SQL Server</font> <font face="Arial" size=2>error '80040e14'</font>
<p>
<font face="Arial" size=2>Unclosed quotation mark before the character string 'http://bulletlink.com/clients/bulletlink/home_work_flash.swf''.</font>
...[SNIP]...

Request 2

GET /clients/bulletlink/Home_Work_Flash.swf'' HTTP/1.1
Host: bulletlink.com
Proxy-Connection: keep-alive
Referer: http://bulletlink.com/
Accept: */*
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: ASPSESSIONIDSSCSRDSS=EGOAHJDABBPMBGKEECBHFJFG

Response 2

HTTP/1.1 200 OK
Date: Wed, 16 Mar 2011 19:07:25 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Content-Length: 114
Content-Type: text/html
Cache-control: private

<center><h1>Page Not Found</h1><a href=http://bulletlink.com/logout.asp>Click here to visit home page</a></center>

1.10. http://bulletlink.com/clients/bulletlink/Latest_Flash_Button_Flash.swf [REST URL parameter 1]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://bulletlink.com
Path:   /clients/bulletlink/Latest_Flash_Button_Flash.swf

Issue detail

The REST URL parameter 1 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 1, and a database error message was returned. Two single quotes were then submitted and the error message disappeared. You should review the contents of the error message, and the application's handling of other input, to confirm whether a vulnerability is present.

The database appears to be Microsoft SQL Server.

Remediation detail

The application should handle errors gracefully and prevent SQL error messages from being returned in responses.

Request 1

GET /clients'/bulletlink/Latest_Flash_Button_Flash.swf HTTP/1.1
Host: bulletlink.com
Proxy-Connection: keep-alive
Referer: http://bulletlink.com/
Accept: */*
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: ASPSESSIONIDSSCSRDSS=EGOAHJDABBPMBGKEECBHFJFG

Response 1

HTTP/1.1 500 Internal Server Error
Date: Wed, 16 Mar 2011 19:07:07 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Content-Length: 315
Content-Type: text/html
Cache-control: private

<font face="Arial" size=2>
<p>Microsoft OLE DB Provider for SQL Server</font> <font face="Arial" size=2>error '80040e14'</font>
<p>
<font face="Arial" size=2>Unclosed quotation mark before the character string ''.</font>
...[SNIP]...

Request 2

GET /clients''/bulletlink/Latest_Flash_Button_Flash.swf HTTP/1.1
Host: bulletlink.com
Proxy-Connection: keep-alive
Referer: http://bulletlink.com/
Accept: */*
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: ASPSESSIONIDSSCSRDSS=EGOAHJDABBPMBGKEECBHFJFG

Response 2

HTTP/1.1 200 OK
Date: Wed, 16 Mar 2011 19:07:08 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Content-Length: 114
Content-Type: text/html
Cache-control: private

<center><h1>Page Not Found</h1><a href=http://bulletlink.com/logout.asp>Click here to visit home page</a></center>

1.11. http://bulletlink.com/clients/bulletlink/Latest_Flash_Button_Flash.swf [REST URL parameter 2]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://bulletlink.com
Path:   /clients/bulletlink/Latest_Flash_Button_Flash.swf

Issue detail

The REST URL parameter 2 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 2, and a database error message was returned. Two single quotes were then submitted and the error message disappeared. You should review the contents of the error message, and the application's handling of other input, to confirm whether a vulnerability is present.

The database appears to be Microsoft SQL Server.

Remediation detail

The application should handle errors gracefully and prevent SQL error messages from being returned in responses.

Request 1

GET /clients/bulletlink'/Latest_Flash_Button_Flash.swf HTTP/1.1
Host: bulletlink.com
Proxy-Connection: keep-alive
Referer: http://bulletlink.com/
Accept: */*
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: ASPSESSIONIDSSCSRDSS=EGOAHJDABBPMBGKEECBHFJFG

Response 1

HTTP/1.1 500 Internal Server Error
Date: Wed, 16 Mar 2011 19:07:10 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Content-Length: 315
Content-Type: text/html
Cache-control: private

<font face="Arial" size=2>
<p>Microsoft OLE DB Provider for SQL Server</font> <font face="Arial" size=2>error '80040e14'</font>
<p>
<font face="Arial" size=2>Unclosed quotation mark before the character string ''.</font>
...[SNIP]...

Request 2

GET /clients/bulletlink''/Latest_Flash_Button_Flash.swf HTTP/1.1
Host: bulletlink.com
Proxy-Connection: keep-alive
Referer: http://bulletlink.com/
Accept: */*
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: ASPSESSIONIDSSCSRDSS=EGOAHJDABBPMBGKEECBHFJFG

Response 2

HTTP/1.1 200 OK
Date: Wed, 16 Mar 2011 19:07:11 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Content-Length: 114
Content-Type: text/html
Cache-control: private

<center><h1>Page Not Found</h1><a href=http://bulletlink.com/logout.asp>Click here to visit home page</a></center>

1.12. http://bulletlink.com/clients/bulletlink/Latest_Flash_Button_Flash.swf [REST URL parameter 3]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://bulletlink.com
Path:   /clients/bulletlink/Latest_Flash_Button_Flash.swf

Issue detail

The REST URL parameter 3 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 3, and a database error message was returned. Two single quotes were then submitted and the error message disappeared. You should review the contents of the error message, and the application's handling of other input, to confirm whether a vulnerability is present.

The database appears to be Microsoft SQL Server.

Remediation detail

The application should handle errors gracefully and prevent SQL error messages from being returned in responses.

Request 1

GET /clients/bulletlink/Latest_Flash_Button_Flash.swf' HTTP/1.1
Host: bulletlink.com
Proxy-Connection: keep-alive
Referer: http://bulletlink.com/
Accept: */*
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: ASPSESSIONIDSSCSRDSS=EGOAHJDABBPMBGKEECBHFJFG

Response 1

HTTP/1.1 500 Internal Server Error
Date: Wed, 16 Mar 2011 19:07:12 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Content-Length: 386
Content-Type: text/html
Cache-control: private

<font face="Arial" size=2>
<p>Microsoft OLE DB Provider for SQL Server</font> <font face="Arial" size=2>error '80040e14'</font>
<p>
<font face="Arial" size=2>Unclosed quotation mark before the character string 'http://bulletlink.com/clients/bulletlink/latest_flash_button_flash.swf''.</font>
...[SNIP]...

Request 2

GET /clients/bulletlink/Latest_Flash_Button_Flash.swf'' HTTP/1.1
Host: bulletlink.com
Proxy-Connection: keep-alive
Referer: http://bulletlink.com/
Accept: */*
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: ASPSESSIONIDSSCSRDSS=EGOAHJDABBPMBGKEECBHFJFG

Response 2

HTTP/1.1 200 OK
Date: Wed, 16 Mar 2011 19:07:13 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Content-Length: 114
Content-Type: text/html
Cache-control: private

<center><h1>Page Not Found</h1><a href=http://bulletlink.com/logout.asp>Click here to visit home page</a></center>

1.13. http://bulletlink.com/clients/bulletlink/favicon.ico [REST URL parameter 1]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://bulletlink.com
Path:   /clients/bulletlink/favicon.ico

Issue detail

The REST URL parameter 1 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 1, and a database error message was returned. Two single quotes were then submitted and the error message disappeared. You should review the contents of the error message, and the application's handling of other input, to confirm whether a vulnerability is present.

The database appears to be Microsoft SQL Server.

Remediation detail

The application should handle errors gracefully and prevent SQL error messages from being returned in responses.

Request 1

GET /clients'/bulletlink/favicon.ico HTTP/1.1
Host: bulletlink.com
Proxy-Connection: keep-alive
Accept: */*
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: ASPSESSIONIDSSCSRDSS=EGOAHJDABBPMBGKEECBHFJFG; __utmz=199128764.1300302352.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=199128764.1582815803.1300302352.1300302352.1300302352.1; __utmc=199128764; __utmb=199128764.1.10.1300302352

Response 1

HTTP/1.1 500 Internal Server Error
Date: Wed, 16 Mar 2011 19:08:28 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Content-Length: 315
Content-Type: text/html
Cache-control: private

<font face="Arial" size=2>
<p>Microsoft OLE DB Provider for SQL Server</font> <font face="Arial" size=2>error '80040e14'</font>
<p>
<font face="Arial" size=2>Unclosed quotation mark before the character string ''.</font>
...[SNIP]...

Request 2

GET /clients''/bulletlink/favicon.ico HTTP/1.1
Host: bulletlink.com
Proxy-Connection: keep-alive
Accept: */*
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: ASPSESSIONIDSSCSRDSS=EGOAHJDABBPMBGKEECBHFJFG; __utmz=199128764.1300302352.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=199128764.1582815803.1300302352.1300302352.1300302352.1; __utmc=199128764; __utmb=199128764.1.10.1300302352

Response 2

HTTP/1.1 200 OK
Date: Wed, 16 Mar 2011 19:08:30 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Content-Length: 114
Content-Type: text/html
Cache-control: private

<center><h1>Page Not Found</h1><a href=http://bulletlink.com/logout.asp>Click here to visit home page</a></center>

1.14. http://bulletlink.com/clients/bulletlink/favicon.ico [REST URL parameter 2]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://bulletlink.com
Path:   /clients/bulletlink/favicon.ico

Issue detail

The REST URL parameter 2 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 2, and a database error message was returned. Two single quotes were then submitted and the error message disappeared. You should review the contents of the error message, and the application's handling of other input, to confirm whether a vulnerability is present.

The database appears to be Microsoft SQL Server.

Remediation detail

The application should handle errors gracefully and prevent SQL error messages from being returned in responses.

Request 1

GET /clients/bulletlink'/favicon.ico HTTP/1.1
Host: bulletlink.com
Proxy-Connection: keep-alive
Accept: */*
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: ASPSESSIONIDSSCSRDSS=EGOAHJDABBPMBGKEECBHFJFG; __utmz=199128764.1300302352.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=199128764.1582815803.1300302352.1300302352.1300302352.1; __utmc=199128764; __utmb=199128764.1.10.1300302352

Response 1

HTTP/1.1 500 Internal Server Error
Date: Wed, 16 Mar 2011 19:08:32 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Content-Length: 315
Content-Type: text/html
Cache-control: private

<font face="Arial" size=2>
<p>Microsoft OLE DB Provider for SQL Server</font> <font face="Arial" size=2>error '80040e14'</font>
<p>
<font face="Arial" size=2>Unclosed quotation mark before the character string ''.</font>
...[SNIP]...

Request 2

GET /clients/bulletlink''/favicon.ico HTTP/1.1
Host: bulletlink.com
Proxy-Connection: keep-alive
Accept: */*
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: ASPSESSIONIDSSCSRDSS=EGOAHJDABBPMBGKEECBHFJFG; __utmz=199128764.1300302352.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=199128764.1582815803.1300302352.1300302352.1300302352.1; __utmc=199128764; __utmb=199128764.1.10.1300302352

Response 2

HTTP/1.1 200 OK
Date: Wed, 16 Mar 2011 19:08:33 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Content-Length: 114
Content-Type: text/html
Cache-control: private

<center><h1>Page Not Found</h1><a href=http://bulletlink.com/logout.asp>Click here to visit home page</a></center>

1.15. http://bulletlink.com/clients/bulletlink/favicon.ico [REST URL parameter 3]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://bulletlink.com
Path:   /clients/bulletlink/favicon.ico

Issue detail

The REST URL parameter 3 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 3, and a database error message was returned. Two single quotes were then submitted and the error message disappeared. You should review the contents of the error message, and the application's handling of other input, to confirm whether a vulnerability is present.

The database appears to be Microsoft SQL Server.

Remediation detail

The application should handle errors gracefully and prevent SQL error messages from being returned in responses.

Request 1

GET /clients/bulletlink/favicon.ico' HTTP/1.1
Host: bulletlink.com
Proxy-Connection: keep-alive
Accept: */*
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: ASPSESSIONIDSSCSRDSS=EGOAHJDABBPMBGKEECBHFJFG; __utmz=199128764.1300302352.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=199128764.1582815803.1300302352.1300302352.1300302352.1; __utmc=199128764; __utmb=199128764.1.10.1300302352

Response 1

HTTP/1.1 500 Internal Server Error
Date: Wed, 16 Mar 2011 19:08:34 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Content-Length: 368
Content-Type: text/html
Cache-control: private

<font face="Arial" size=2>
<p>Microsoft OLE DB Provider for SQL Server</font> <font face="Arial" size=2>error '80040e14'</font>
<p>
<font face="Arial" size=2>Unclosed quotation mark before the character string 'http://bulletlink.com/clients/bulletlink/favicon.ico''.</font>
...[SNIP]...

Request 2

GET /clients/bulletlink/favicon.ico'' HTTP/1.1
Host: bulletlink.com
Proxy-Connection: keep-alive
Accept: */*
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: ASPSESSIONIDSSCSRDSS=EGOAHJDABBPMBGKEECBHFJFG; __utmz=199128764.1300302352.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=199128764.1582815803.1300302352.1300302352.1300302352.1; __utmc=199128764; __utmb=199128764.1.10.1300302352

Response 2

HTTP/1.1 200 OK
Date: Wed, 16 Mar 2011 19:08:35 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Content-Length: 114
Content-Type: text/html
Cache-control: private

<center><h1>Page Not Found</h1><a href=http://bulletlink.com/logout.asp>Click here to visit home page</a></center>

1.16. http://bulletlink.com/clients/bulletlink/null [REST URL parameter 1]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://bulletlink.com
Path:   /clients/bulletlink/null

Issue detail

The REST URL parameter 1 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 1, and a database error message was returned. Two single quotes were then submitted and the error message disappeared. You should review the contents of the error message, and the application's handling of other input, to confirm whether a vulnerability is present.

The database appears to be Microsoft SQL Server.

Remediation detail

The application should handle errors gracefully and prevent SQL error messages from being returned in responses.

Request 1

GET /clients'/bulletlink/null HTTP/1.1
Host: bulletlink.com
Proxy-Connection: keep-alive
Referer: http://bulletlink.com/
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept: */*
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: ASPSESSIONIDSSCSRDSS=EGOAHJDABBPMBGKEECBHFJFG

Response 1

HTTP/1.1 500 Internal Server Error
Date: Wed, 16 Mar 2011 19:07:20 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Content-Length: 315
Content-Type: text/html
Cache-control: private

<font face="Arial" size=2>
<p>Microsoft OLE DB Provider for SQL Server</font> <font face="Arial" size=2>error '80040e14'</font>
<p>
<font face="Arial" size=2>Unclosed quotation mark before the character string ''.</font>
...[SNIP]...

Request 2

GET /clients''/bulletlink/null HTTP/1.1
Host: bulletlink.com
Proxy-Connection: keep-alive
Referer: http://bulletlink.com/
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept: */*
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: ASPSESSIONIDSSCSRDSS=EGOAHJDABBPMBGKEECBHFJFG

Response 2

HTTP/1.1 200 OK
Date: Wed, 16 Mar 2011 19:07:22 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Content-Length: 114
Content-Type: text/html
Cache-control: private

<center><h1>Page Not Found</h1><a href=http://bulletlink.com/logout.asp>Click here to visit home page</a></center>

1.17. http://bulletlink.com/clients/bulletlink/null [REST URL parameter 2]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://bulletlink.com
Path:   /clients/bulletlink/null

Issue detail

The REST URL parameter 2 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 2, and a database error message was returned. Two single quotes were then submitted and the error message disappeared. You should review the contents of the error message, and the application's handling of other input, to confirm whether a vulnerability is present.

The database appears to be Microsoft SQL Server.

Remediation detail

The application should handle errors gracefully and prevent SQL error messages from being returned in responses.

Request 1

GET /clients/bulletlink'/null HTTP/1.1
Host: bulletlink.com
Proxy-Connection: keep-alive
Referer: http://bulletlink.com/
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept: */*
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: ASPSESSIONIDSSCSRDSS=EGOAHJDABBPMBGKEECBHFJFG

Response 1

HTTP/1.1 500 Internal Server Error
Date: Wed, 16 Mar 2011 19:07:23 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Content-Length: 315
Content-Type: text/html
Cache-control: private

<font face="Arial" size=2>
<p>Microsoft OLE DB Provider for SQL Server</font> <font face="Arial" size=2>error '80040e14'</font>
<p>
<font face="Arial" size=2>Unclosed quotation mark before the character string ''.</font>
...[SNIP]...

Request 2

GET /clients/bulletlink''/null HTTP/1.1
Host: bulletlink.com
Proxy-Connection: keep-alive
Referer: http://bulletlink.com/
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept: */*
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: ASPSESSIONIDSSCSRDSS=EGOAHJDABBPMBGKEECBHFJFG

Response 2

HTTP/1.1 200 OK
Date: Wed, 16 Mar 2011 19:07:24 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Content-Length: 114
Content-Type: text/html
Cache-control: private

<center><h1>Page Not Found</h1><a href=http://bulletlink.com/logout.asp>Click here to visit home page</a></center>

1.18. http://bulletlink.com/clients/bulletlink/null [REST URL parameter 3]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://bulletlink.com
Path:   /clients/bulletlink/null

Issue detail

The REST URL parameter 3 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 3, and a database error message was returned. Two single quotes were then submitted and the error message disappeared. You should review the contents of the error message, and the application's handling of other input, to confirm whether a vulnerability is present.

The database appears to be Microsoft SQL Server.

Remediation detail

The application should handle errors gracefully and prevent SQL error messages from being returned in responses.

Request 1

GET /clients/bulletlink/null' HTTP/1.1
Host: bulletlink.com
Proxy-Connection: keep-alive
Referer: http://bulletlink.com/
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept: */*
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: ASPSESSIONIDSSCSRDSS=EGOAHJDABBPMBGKEECBHFJFG

Response 1

HTTP/1.1 500 Internal Server Error
Date: Wed, 16 Mar 2011 19:07:25 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Content-Length: 361
Content-Type: text/html
Cache-control: private

<font face="Arial" size=2>
<p>Microsoft OLE DB Provider for SQL Server</font> <font face="Arial" size=2>error '80040e14'</font>
<p>
<font face="Arial" size=2>Unclosed quotation mark before the character string 'http://bulletlink.com/clients/bulletlink/null''.</font>
...[SNIP]...

Request 2

GET /clients/bulletlink/null'' HTTP/1.1
Host: bulletlink.com
Proxy-Connection: keep-alive
Referer: http://bulletlink.com/
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept: */*
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: ASPSESSIONIDSSCSRDSS=EGOAHJDABBPMBGKEECBHFJFG

Response 2

HTTP/1.1 200 OK
Date: Wed, 16 Mar 2011 19:07:26 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Content-Length: 114
Content-Type: text/html
Cache-control: private

<center><h1>Page Not Found</h1><a href=http://bulletlink.com/logout.asp>Click here to visit home page</a></center>

1.19. http://bulletlink.com/clients/bulletlink/null [name of an arbitrarily supplied request parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://bulletlink.com
Path:   /clients/bulletlink/null

Issue detail

The name of an arbitrarily supplied request parameter appears to be vulnerable to SQL injection attacks. A single quote was submitted in the name of an arbitrarily supplied request parameter, and a database error message was returned. Two single quotes were then submitted and the error message disappeared. You should review the contents of the error message, and the application's handling of other input, to confirm whether a vulnerability is present.

The database appears to be Microsoft SQL Server.

Remediation detail

The application should handle errors gracefully and prevent SQL error messages from being returned in responses.

Request 1

GET /clients/bulletlink/null?1'=1 HTTP/1.1
Host: bulletlink.com
Proxy-Connection: keep-alive
Referer: http://bulletlink.com/
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept: */*
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: ASPSESSIONIDSSCSRDSS=EGOAHJDABBPMBGKEECBHFJFG

Response 1

HTTP/1.1 500 Internal Server Error
Date: Wed, 16 Mar 2011 19:07:08 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Content-Length: 294
Content-Type: text/html
Cache-control: private

<font face="Arial" size=2>
<p>Microsoft OLE DB Provider for SQL Server</font> <font face="Arial" size=2>error '80040e14'</font>
<p>
<font face="Arial" size=2>Line 1: Incorrect syntax near '='.</font>
...[SNIP]...

Request 2

GET /clients/bulletlink/null?1''=1 HTTP/1.1
Host: bulletlink.com
Proxy-Connection: keep-alive
Referer: http://bulletlink.com/
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept: */*
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: ASPSESSIONIDSSCSRDSS=EGOAHJDABBPMBGKEECBHFJFG

Response 2

HTTP/1.1 200 OK
Date: Wed, 16 Mar 2011 19:07:10 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Content-Length: 114
Content-Type: text/html
Cache-control: private

<center><h1>Page Not Found</h1><a href=http://bulletlink.com/logout.asp>Click here to visit home page</a></center>

1.20. http://bulletlink.com/clients/bulletlink/thumbnails1/thumbnails.xml [REST URL parameter 1]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://bulletlink.com
Path:   /clients/bulletlink/thumbnails1/thumbnails.xml

Issue detail

The REST URL parameter 1 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 1, and a database error message was returned. Two single quotes were then submitted and the error message disappeared. You should review the contents of the error message, and the application's handling of other input, to confirm whether a vulnerability is present.

The database appears to be Microsoft SQL Server.

Remediation detail

The application should handle errors gracefully and prevent SQL error messages from being returned in responses.

Request 1

GET /clients'/bulletlink/thumbnails1/thumbnails.xml HTTP/1.1
Host: bulletlink.com
Proxy-Connection: keep-alive
Referer: http://bulletlink.com/clients/bulletlink/Home_Work_Flash.swf
Accept: */*
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: ASPSESSIONIDSSCSRDSS=EGOAHJDABBPMBGKEECBHFJFG; __utmz=199128764.1300302352.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=199128764.1582815803.1300302352.1300302352.1300302352.1; __utmc=199128764; __utmb=199128764.1.10.1300302352

Response 1

HTTP/1.1 500 Internal Server Error
Date: Wed, 16 Mar 2011 19:07:48 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Content-Length: 315
Content-Type: text/html
Cache-control: private

<font face="Arial" size=2>
<p>Microsoft OLE DB Provider for SQL Server</font> <font face="Arial" size=2>error '80040e14'</font>
<p>
<font face="Arial" size=2>Unclosed quotation mark before the character string ''.</font>
...[SNIP]...

Request 2

GET /clients''/bulletlink/thumbnails1/thumbnails.xml HTTP/1.1
Host: bulletlink.com
Proxy-Connection: keep-alive
Referer: http://bulletlink.com/clients/bulletlink/Home_Work_Flash.swf
Accept: */*
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: ASPSESSIONIDSSCSRDSS=EGOAHJDABBPMBGKEECBHFJFG; __utmz=199128764.1300302352.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=199128764.1582815803.1300302352.1300302352.1300302352.1; __utmc=199128764; __utmb=199128764.1.10.1300302352

Response 2

HTTP/1.1 200 OK
Date: Wed, 16 Mar 2011 19:07:49 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Content-Length: 114
Content-Type: text/html
Cache-control: private

<center><h1>Page Not Found</h1><a href=http://bulletlink.com/logout.asp>Click here to visit home page</a></center>

1.21. http://bulletlink.com/clients/bulletlink/thumbnails1/thumbnails.xml [REST URL parameter 2]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://bulletlink.com
Path:   /clients/bulletlink/thumbnails1/thumbnails.xml

Issue detail

The REST URL parameter 2 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 2, and a database error message was returned. Two single quotes were then submitted and the error message disappeared. You should review the contents of the error message, and the application's handling of other input, to confirm whether a vulnerability is present.

The database appears to be Microsoft SQL Server.

Remediation detail

The application should handle errors gracefully and prevent SQL error messages from being returned in responses.

Request 1

GET /clients/bulletlink'/thumbnails1/thumbnails.xml HTTP/1.1
Host: bulletlink.com
Proxy-Connection: keep-alive
Referer: http://bulletlink.com/clients/bulletlink/Home_Work_Flash.swf
Accept: */*
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: ASPSESSIONIDSSCSRDSS=EGOAHJDABBPMBGKEECBHFJFG; __utmz=199128764.1300302352.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=199128764.1582815803.1300302352.1300302352.1300302352.1; __utmc=199128764; __utmb=199128764.1.10.1300302352

Response 1

HTTP/1.1 500 Internal Server Error
Date: Wed, 16 Mar 2011 19:07:50 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Content-Length: 315
Content-Type: text/html
Cache-control: private

<font face="Arial" size=2>
<p>Microsoft OLE DB Provider for SQL Server</font> <font face="Arial" size=2>error '80040e14'</font>
<p>
<font face="Arial" size=2>Unclosed quotation mark before the character string ''.</font>
...[SNIP]...

Request 2

GET /clients/bulletlink''/thumbnails1/thumbnails.xml HTTP/1.1
Host: bulletlink.com
Proxy-Connection: keep-alive
Referer: http://bulletlink.com/clients/bulletlink/Home_Work_Flash.swf
Accept: */*
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: ASPSESSIONIDSSCSRDSS=EGOAHJDABBPMBGKEECBHFJFG; __utmz=199128764.1300302352.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=199128764.1582815803.1300302352.1300302352.1300302352.1; __utmc=199128764; __utmb=199128764.1.10.1300302352

Response 2

HTTP/1.1 200 OK
Date: Wed, 16 Mar 2011 19:07:51 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Content-Length: 114
Content-Type: text/html
Cache-control: private

<center><h1>Page Not Found</h1><a href=http://bulletlink.com/logout.asp>Click here to visit home page</a></center>

1.22. http://bulletlink.com/clients/bulletlink/thumbnails1/thumbnails.xml [REST URL parameter 3]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://bulletlink.com
Path:   /clients/bulletlink/thumbnails1/thumbnails.xml

Issue detail

The REST URL parameter 3 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 3, and a database error message was returned. Two single quotes were then submitted and the error message disappeared. You should review the contents of the error message, and the application's handling of other input, to confirm whether a vulnerability is present.

The database appears to be Microsoft SQL Server.

Remediation detail

The application should handle errors gracefully and prevent SQL error messages from being returned in responses.

Request 1

GET /clients/bulletlink/thumbnails1'/thumbnails.xml HTTP/1.1
Host: bulletlink.com
Proxy-Connection: keep-alive
Referer: http://bulletlink.com/clients/bulletlink/Home_Work_Flash.swf
Accept: */*
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: ASPSESSIONIDSSCSRDSS=EGOAHJDABBPMBGKEECBHFJFG; __utmz=199128764.1300302352.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=199128764.1582815803.1300302352.1300302352.1300302352.1; __utmc=199128764; __utmb=199128764.1.10.1300302352

Response 1

HTTP/1.1 500 Internal Server Error
Date: Wed, 16 Mar 2011 19:07:52 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Content-Length: 315
Content-Type: text/html
Cache-control: private

<font face="Arial" size=2>
<p>Microsoft OLE DB Provider for SQL Server</font> <font face="Arial" size=2>error '80040e14'</font>
<p>
<font face="Arial" size=2>Unclosed quotation mark before the character string ''.</font>
...[SNIP]...

Request 2

GET /clients/bulletlink/thumbnails1''/thumbnails.xml HTTP/1.1
Host: bulletlink.com
Proxy-Connection: keep-alive
Referer: http://bulletlink.com/clients/bulletlink/Home_Work_Flash.swf
Accept: */*
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: ASPSESSIONIDSSCSRDSS=EGOAHJDABBPMBGKEECBHFJFG; __utmz=199128764.1300302352.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=199128764.1582815803.1300302352.1300302352.1300302352.1; __utmc=199128764; __utmb=199128764.1.10.1300302352

Response 2

HTTP/1.1 200 OK
Date: Wed, 16 Mar 2011 19:07:54 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Content-Length: 114
Content-Type: text/html
Cache-control: private

<center><h1>Page Not Found</h1><a href=http://bulletlink.com/logout.asp>Click here to visit home page</a></center>

1.23. http://bulletlink.com/clients/bulletlink/thumbnails1/thumbnails.xml [REST URL parameter 4]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://bulletlink.com
Path:   /clients/bulletlink/thumbnails1/thumbnails.xml

Issue detail

The REST URL parameter 4 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 4, and a database error message was returned. Two single quotes were then submitted and the error message disappeared. You should review the contents of the error message, and the application's handling of other input, to confirm whether a vulnerability is present.

The database appears to be Microsoft SQL Server.

Remediation detail

The application should handle errors gracefully and prevent SQL error messages from being returned in responses.

Request 1

GET /clients/bulletlink/thumbnails1/thumbnails.xml' HTTP/1.1
Host: bulletlink.com
Proxy-Connection: keep-alive
Referer: http://bulletlink.com/clients/bulletlink/Home_Work_Flash.swf
Accept: */*
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: ASPSESSIONIDSSCSRDSS=EGOAHJDABBPMBGKEECBHFJFG; __utmz=199128764.1300302352.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=199128764.1582815803.1300302352.1300302352.1300302352.1; __utmc=199128764; __utmb=199128764.1.10.1300302352

Response 1

HTTP/1.1 500 Internal Server Error
Date: Wed, 16 Mar 2011 19:07:55 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Content-Length: 383
Content-Type: text/html
Cache-control: private

<font face="Arial" size=2>
<p>Microsoft OLE DB Provider for SQL Server</font> <font face="Arial" size=2>error '80040e14'</font>
<p>
<font face="Arial" size=2>Unclosed quotation mark before the character string 'http://bulletlink.com/clients/bulletlink/thumbnails1/thumbnails.xml''.</font>
...[SNIP]...

Request 2

GET /clients/bulletlink/thumbnails1/thumbnails.xml'' HTTP/1.1
Host: bulletlink.com
Proxy-Connection: keep-alive
Referer: http://bulletlink.com/clients/bulletlink/Home_Work_Flash.swf
Accept: */*
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: ASPSESSIONIDSSCSRDSS=EGOAHJDABBPMBGKEECBHFJFG; __utmz=199128764.1300302352.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=199128764.1582815803.1300302352.1300302352.1300302352.1; __utmc=199128764; __utmb=199128764.1.10.1300302352

Response 2

HTTP/1.1 200 OK
Date: Wed, 16 Mar 2011 19:07:56 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Content-Length: 114
Content-Type: text/html
Cache-control: private

<center><h1>Page Not Found</h1><a href=http://bulletlink.com/logout.asp>Click here to visit home page</a></center>

1.24. http://bulletlink.com/favicon.ico [REST URL parameter 1]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://bulletlink.com
Path:   /favicon.ico

Issue detail

The REST URL parameter 1 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 1, and a database error message was returned. Two single quotes were then submitted and the error message disappeared. You should review the contents of the error message, and the application's handling of other input, to confirm whether a vulnerability is present.

The database appears to be Microsoft SQL Server.

Remediation detail

The application should handle errors gracefully and prevent SQL error messages from being returned in responses.

Request 1

GET /favicon.ico' HTTP/1.1
Host: bulletlink.com
Proxy-Connection: keep-alive
Accept: */*
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: ASPSESSIONIDSSCSRDSS=EGOAHJDABBPMBGKEECBHFJFG; __utmz=199128764.1300302352.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=199128764.1582815803.1300302352.1300302352.1300302352.1; __utmc=199128764

Response 1

HTTP/1.1 500 Internal Server Error
Date: Wed, 16 Mar 2011 19:42:15 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Content-Length: 349
Content-Type: text/html
Cache-control: private

<font face="Arial" size=2>
<p>Microsoft OLE DB Provider for SQL Server</font> <font face="Arial" size=2>error '80040e14'</font>
<p>
<font face="Arial" size=2>Unclosed quotation mark before the character string 'http://bulletlink.com/favicon.ico''.</font>
...[SNIP]...

Request 2

GET /favicon.ico'' HTTP/1.1
Host: bulletlink.com
Proxy-Connection: keep-alive
Accept: */*
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: ASPSESSIONIDSSCSRDSS=EGOAHJDABBPMBGKEECBHFJFG; __utmz=199128764.1300302352.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=199128764.1582815803.1300302352.1300302352.1300302352.1; __utmc=199128764

Response 2

HTTP/1.1 200 OK
Date: Wed, 16 Mar 2011 19:42:16 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Content-Length: 114
Content-Type: text/html
Cache-control: private

<center><h1>Page Not Found</h1><a href=http://bulletlink.com/logout.asp>Click here to visit home page</a></center>

1.25. http://bulletlink.com/favicon.ico [name of an arbitrarily supplied request parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://bulletlink.com
Path:   /favicon.ico

Issue detail

The name of an arbitrarily supplied request parameter appears to be vulnerable to SQL injection attacks. A single quote was submitted in the name of an arbitrarily supplied request parameter, and a database error message was returned. Two single quotes were then submitted and the error message disappeared. You should review the contents of the error message, and the application's handling of other input, to confirm whether a vulnerability is present.

The database appears to be Microsoft SQL Server.

Remediation detail

The application should handle errors gracefully and prevent SQL error messages from being returned in responses.

Request 1

GET /favicon.ico?1'=1 HTTP/1.1
Host: bulletlink.com
Proxy-Connection: keep-alive
Accept: */*
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: ASPSESSIONIDSSCSRDSS=EGOAHJDABBPMBGKEECBHFJFG; __utmz=199128764.1300302352.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=199128764.1582815803.1300302352.1300302352.1300302352.1; __utmc=199128764

Response 1

HTTP/1.1 500 Internal Server Error
Date: Wed, 16 Mar 2011 19:42:03 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Content-Length: 294
Content-Type: text/html
Cache-control: private

<font face="Arial" size=2>
<p>Microsoft OLE DB Provider for SQL Server</font> <font face="Arial" size=2>error '80040e14'</font>
<p>
<font face="Arial" size=2>Line 1: Incorrect syntax near '='.</font>
...[SNIP]...

Request 2

GET /favicon.ico?1''=1 HTTP/1.1
Host: bulletlink.com
Proxy-Connection: keep-alive
Accept: */*
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: ASPSESSIONIDSSCSRDSS=EGOAHJDABBPMBGKEECBHFJFG; __utmz=199128764.1300302352.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=199128764.1582815803.1300302352.1300302352.1300302352.1; __utmc=199128764

Response 2

HTTP/1.1 200 OK
Date: Wed, 16 Mar 2011 19:42:04 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Content-Length: 114
Content-Type: text/html
Cache-control: private

<center><h1>Page Not Found</h1><a href=http://bulletlink.com/logout.asp>Click here to visit home page</a></center>

2. Cookie without HttpOnly flag set  previous  next

Summary

Severity:   Low
Confidence:   Firm
Host:   http://bulletlink.com
Path:   /

Issue detail

The following cookie was issued by the application and does not have the HttpOnly flag set:The cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookie to determine its function.

Issue background

If the HttpOnly attribute is set on a cookie, then the cookie's value cannot be read or set by client-side JavaScript. This measure can prevent certain client-side attacks, such as cross-site scripting, from trivially capturing the cookie's value via an injected script.

Issue remediation

There is usually no good reason not to set the HttpOnly flag on all cookies. Unless you specifically require legitimate client-side scripts within your application to read or set a cookie's value, you should set the HttpOnly flag by including this attribute within the relevant Set-cookie directive.

You should be aware that the restrictions imposed by the HttpOnly flag can potentially be circumvented in some circumstances, and that numerous other serious attacks can be delivered by client-side script injection, aside from simple cookie stealing.

Request

GET / HTTP/1.1
Host: bulletlink.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3

Response

HTTP/1.1 200 OK
Date: Wed, 16 Mar 2011 19:05:57 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
pragma: no-cache
cache-control: private
Content-Length: 71314
Content-Type: text/html
Expires: Tue, 15 Mar 2011 19:05:56 GMT
Set-Cookie: ASPSESSIONIDSSCSRDSS=GHOAHJDAKIGHKKPNBKBFPBBE; path=/
Cache-control: no-cache

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>newspaper template, newspaper website, news paper temp
...[SNIP]...

3. Cross-domain script include  previous  next
There are 2 instances of this issue:

Issue background

When an application includes a script from an external domain, this script is executed by the browser within the security context of the invoking application. The script can therefore do anything that the application's own scripts can do, such as accessing application data and performing actions within the context of the current user.

If you include a script from an external domain, then you are trusting that domain with the data and functionality of your application, and you are trusting the domain's own security to prevent an attacker from modifying the script to perform malicious actions within your application.

Issue remediation

Scripts should not be included from untrusted domains. If you have a requirement which a third-party script appears to fulfil, then you should ideally copy the contents of that script onto your own domain and include it from there. If that is not possible (e.g. for licensing reasons) then you should consider reimplementing the script's functionality within your own code.


3.1. http://bulletlink.com/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://bulletlink.com
Path:   /

Issue detail

The response dynamically includes the following script from another domain:

Request

GET / HTTP/1.1
Host: bulletlink.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3

Response

HTTP/1.1 200 OK
Date: Wed, 16 Mar 2011 19:05:57 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
pragma: no-cache
cache-control: private
Content-Length: 71314
Content-Type: text/html
Expires: Tue, 15 Mar 2011 19:05:56 GMT
Set-Cookie: ASPSESSIONIDSSCSRDSS=GHOAHJDAKIGHKKPNBKBFPBBE; path=/
Cache-control: no-cache

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>newspaper template, newspaper website, news paper temp
...[SNIP]...
</script>
<script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js?pub=xa-4a5593777887c4a4"></script>
...[SNIP]...

3.2. http://bulletlink.com/clients/bulletlink/bulletlink.js  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://bulletlink.com
Path:   /clients/bulletlink/bulletlink.js

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /clients/bulletlink/bulletlink.js HTTP/1.1
Host: bulletlink.com
Proxy-Connection: keep-alive
Referer: http://bulletlink.com/
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept: */*
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: ASPSESSIONIDSSCSRDSS=EGOAHJDABBPMBGKEECBHFJFG

Response

HTTP/1.1 200 OK
Content-Length: 19176
Content-Type: application/x-javascript
Last-Modified: Thu, 03 Mar 2011 10:36:24 GMT
Accept-Ranges: bytes
ETag: "322946d88ed9cb1:27a"
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Date: Wed, 16 Mar 2011 19:05:50 GMT

function start(){checkLoginStatus('No');}

function MenusDefault(){document.write('<div class="menubodydefault" style="BACKGROUND-COLOR: ; FONT-FAMILY: ; COLOR: ; FONT-WEIGHT: ; FONT-SIZE: ; FONT-ST
...[SNIP]...
</div><script type="text/javascript" src="http://s7.addthis.com/js/250/addthis_widget.js"></script>
...[SNIP]...

4. Email addresses disclosed  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://bulletlink.com
Path:   /AdsPeeler/pageear.js

Issue detail

The following email address was disclosed in the response:

Issue background

The presence of email addresses within application responses does not necessarily constitute a security vulnerability. Email addresses may appear intentionally within contact information, and many applications (such as web mail) include arbitrary third-party email addresses within their core content.

However, email addresses of developers and other individuals (whether appearing on-screen or hidden within page source) may disclose information that is useful to an attacker; for example, they may represent usernames that can be used at the application's login, and they may be used in social engineering attacks against the organisation's personnel. Unnecessary or excessive disclosure of email addresses may also lead to an increase in the volume of spam email received.

Issue remediation

You should review the email addresses being disclosed by the application, and consider removing any that are unnecessary, or replacing personal addresses with anonymous mailbox addresses (such as helpdesk@example.com).

Request

GET /AdsPeeler/pageear.js HTTP/1.1
Host: bulletlink.com
Proxy-Connection: keep-alive
Referer: http://bulletlink.com/
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept: */*
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: ASPSESSIONIDSSCSRDSS=EGOAHJDABBPMBGKEECBHFJFG

Response

HTTP/1.1 200 OK
Content-Length: 11915
Content-Type: application/x-javascript
Last-Modified: Tue, 31 Aug 2010 05:11:16 GMT
Accept-Ranges: bytes
ETag: "8487f0ca48cb1:27a"
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Date: Wed, 16 Mar 2011 19:05:52 GMT

/*
* Konfiguration / Configuration
*/

var pagearSmallImg = '';
var pagearSmallSwf = '/AdsPeeler/pageear_s.swf'; // pageear_s_v2_5_p.swf
var pagearBigImg = '';
var pagearBigSwf = '/AdsPee
...[SNIP]...
ashvars.host=escape(window.location.hostname);
//flashvars.license=escape('');
//flashvars.mail=escape('');
flashvars.license = escape('9e541e4e36fcdbbf41b8a8240224436a');
flashvars.mail = escape('sales@bulletlink.com');

function openPeel(){
//debugOutput("JS function openPeel");

   document.getElementById('bigDiv').style.top = '0px';
   document.getElementById('bigDiv').style[xPos] = '0px';
   do
...[SNIP]...

5. HTML does not specify charset  previous  next
There are 3 instances of this issue:

Issue description

If a web response states that it contains HTML content but does not specify a character set, then the browser may analyse the HTML and attempt to determine which character set it appears to be using. Even if the majority of the HTML actually employs a standard character set such as UTF-8, the presence of non-standard characters anywhere in the response may cause the browser to interpret the content using a different character set. This can have unexpected results, and can lead to cross-site scripting vulnerabilities in which non-standard encodings like UTF-7 can be used to bypass the application's defensive filters.

In most cases, the absence of a charset directive does not constitute a security flaw, particularly if the response contains static content. You should review the contents of the response and the context in which it appears to determine whether any vulnerability exists.

Issue remediation

For every response containing HTML content, the application should include within the Content-type header a directive specifying a standard recognised character set, for example charset=ISO-8859-1.


5.1. http://bulletlink.com/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://bulletlink.com
Path:   /

Request

GET / HTTP/1.1
Host: bulletlink.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3

Response

HTTP/1.1 200 OK
Date: Wed, 16 Mar 2011 19:05:57 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
pragma: no-cache
cache-control: private
Content-Length: 71314
Content-Type: text/html
Expires: Tue, 15 Mar 2011 19:05:56 GMT
Set-Cookie: ASPSESSIONIDSSCSRDSS=GHOAHJDAKIGHKKPNBKBFPBBE; path=/
Cache-control: no-cache

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>newspaper template, newspaper website, news paper temp
...[SNIP]...

5.2. http://bulletlink.com/clients/bulletlink/null  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://bulletlink.com
Path:   /clients/bulletlink/null

Request

GET /clients/bulletlink/null HTTP/1.1
Host: bulletlink.com
Proxy-Connection: keep-alive
Referer: http://bulletlink.com/
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept: */*
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: ASPSESSIONIDSSCSRDSS=EGOAHJDABBPMBGKEECBHFJFG

Response

HTTP/1.1 200 OK
Date: Wed, 16 Mar 2011 19:06:43 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Content-Length: 114
Content-Type: text/html
Cache-control: private

<center><h1>Page Not Found</h1><a href=http://bulletlink.com/logout.asp>Click here to visit home page</a></center>

5.3. http://bulletlink.com/favicon.ico  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://bulletlink.com
Path:   /favicon.ico

Request

GET /favicon.ico HTTP/1.1
Host: bulletlink.com
Proxy-Connection: keep-alive
Accept: */*
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: ASPSESSIONIDSSCSRDSS=EGOAHJDABBPMBGKEECBHFJFG; __utmz=199128764.1300302352.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=199128764.1582815803.1300302352.1300302352.1300302352.1; __utmc=199128764

Response

HTTP/1.1 200 OK
Date: Wed, 16 Mar 2011 19:41:25 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Content-Length: 114
Content-Type: text/html
Cache-control: private

<center><h1>Page Not Found</h1><a href=http://bulletlink.com/logout.asp>Click here to visit home page</a></center>

6. Content type incorrectly stated  previous
There are 2 instances of this issue:

Issue background

If a web response specifies an incorrect content type, then browsers may process the response in unexpected ways. If the specified content type is a renderable text-based format, then the browser will usually attempt to parse and render the response in that format. If the specified type is an image format, then the browser will usually detect the anomaly and will analyse the actual content and attempt to determine its MIME type. Either case can lead to unexpected results, and if the content contains any user-controllable data may lead to cross-site scripting or other client-side vulnerabilities.

In most cases, the presence of an incorrect content type statement does not constitute a security flaw, particularly if the response contains static content. You should review the contents of the response and the context in which it appears to determine whether any vulnerability exists.

Issue remediation

For every response containing a message body, the application should include a single Content-type header which correctly and unambiguously states the MIME type of the content in the response body.


6.1. http://bulletlink.com/clients/bulletlink/null  previous  next

Summary

Severity:   Information
Confidence:   Firm
Host:   http://bulletlink.com
Path:   /clients/bulletlink/null

Issue detail

The response contains the following Content-type statement:The response states that it contains HTML. However, it actually appears to contain XML.

Request

GET /clients/bulletlink/null HTTP/1.1
Host: bulletlink.com
Proxy-Connection: keep-alive
Referer: http://bulletlink.com/
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept: */*
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: ASPSESSIONIDSSCSRDSS=EGOAHJDABBPMBGKEECBHFJFG

Response

HTTP/1.1 200 OK
Date: Wed, 16 Mar 2011 19:06:43 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Content-Length: 114
Content-Type: text/html
Cache-control: private

<center><h1>Page Not Found</h1><a href=http://bulletlink.com/logout.asp>Click here to visit home page</a></center>

6.2. http://bulletlink.com/favicon.ico  previous

Summary

Severity:   Information
Confidence:   Firm
Host:   http://bulletlink.com
Path:   /favicon.ico

Issue detail

The response contains the following Content-type statement:The response states that it contains HTML. However, it actually appears to contain XML.

Request

GET /favicon.ico HTTP/1.1
Host: bulletlink.com
Proxy-Connection: keep-alive
Accept: */*
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.16 (KHTML, like Gecko) Chrome/10.0.648.133 Safari/534.16
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: ASPSESSIONIDSSCSRDSS=EGOAHJDABBPMBGKEECBHFJFG; __utmz=199128764.1300302352.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); __utma=199128764.1582815803.1300302352.1300302352.1300302352.1; __utmc=199128764

Response

HTTP/1.1 200 OK
Date: Wed, 16 Mar 2011 19:41:25 GMT
Server: Microsoft-IIS/6.0
X-Powered-By: ASP.NET
Content-Length: 114
Content-Type: text/html
Cache-control: private

<center><h1>Page Not Found</h1><a href=http://bulletlink.com/logout.asp>Click here to visit home page</a></center>

Report generated by XSS.CX at Thu Mar 17 08:55:23 CDT 2011.