iCULeak : Tool To Find & Extract Credentials From Phone Configuration Files Hosted On CUCM

iCULeak (iCULeak.py) is a tool to find and extract credentials from phone configuration files in environments managed by Cisco’s CUCM (Call Manager).

When using Cisco’s CUCM (Call Manager), phone configuration files are stored on a TFTP server. These VoIP phone configuration files quite frequently contain sensitive data, including phone SSH/admin credentials.

There is also an issue with how some browsers autofill fields such as the SSH Username & Password fields with their CUCM credentials (commonly their AD credentials), if the administrator has saved the credentials in their browser.

This issue has also been faced by administrators using password managers that automatically plug in credentials, where they found that their credentials were being automatically inputted into the SSH Username & Password fields, and then being saved (and stored in plaintext in the configuration files).

While the issue was fixed in CUCM 12.0, credentials stored in the past may still be discoverable. The issue can be somewhat mitigated by the following actions:

  • Regularly purging existing configuration files from leaked credentials.
  • Blocking autosave/autofill on CUCM.
  • Enabling encryption of phone configuration files. Read more on that here. Note that this doesn’t completely mitigate the issue, as the encryption password could be obtained from the phones’ memory or through administrative access of CUCM – but it reduces the impact of a hacker/pentester dumping the configuraiton files.

This tool utilises a lot of code from Dirk-jan’s tool adidnsdump to extract a list of phone hostnames from ADIDNS over LDAP.

To read more aboout the technique and tool, you can read the associated blog post. So credit goes to him for a lot of the code.

Also Read – 10minutemail : Python Temporary Email

Installation

To install the tool:

git clone https://github.com/llt4l/iCULeak.py
cd iCULeak.py
pip install -r requirements.txt

Usage

Run iCULeak.py against phones with hostnames found in the DNS zone

python iCULeak.py -u domain\llt4l -c 10.100.1.29 10.100.1.1

Run iCULeak.py against a list of phones provided in a file

python iCULeak.py -l phones_hostnames -c 10.100.1.29 10.100.1.1

Flags

  • View the help page with -h or --help
  • Pass the username of the user that will authenticate to ADIDNS with the -u or --user flags. The user should be preceded by the user’s domain, so it should look something like this: domain\\llt4l. This flag is optional if a list is passed instead.
  • Pass the password to the program with the -p or --password flag. If you do not pass it as an argument, but do pass a username, then the program will prompt for a password when run .
  • The IP address or hostname of the CUCM server should be passed to the program with either the -c or --cucm-server flag. If, for any reason, the TFTP server being used by CUCM to store phone configuration files is found on another host, please provide that address.
  • Provide a file that contains a list of phone hostnames with the -l or --list flag. The file should just be a list of phone hostnames, such that each line would look something like SEP112233445566.
  • If you’d like to save the results to a CSV file, pass the -s or --save flag along with the filename to be saved to.
  • By default iCULeak.py checks credentials leaked for validity in the AD. To disable authentication attempts being made to verify the leaked credentials, pass the -nA or --no-authentication flag.
  • To save all the phone configuration files dumped to a directory, pass the -O or --out-dir flag, along with the name of the folder you want to save it to.
  • For increased verbosity, you can pass the -v or --verbose flag.
  • If the DNS entries for the phones are in a different DNS zone to the default zone of the domain you are authenticating against, you can pass the zone along with the -z or --zone flag.
R K

Recent Posts

Install VirtualBox on Ubuntu 18.04 from the Oracle Repository

VirtualBox is a free, open-source, cross-platform virtualization application maintained by Oracle. It lets you run multiple…

13 hours ago

Install PostgreSQL on Ubuntu 18.04 with Remote Access Setup

PostgreSQL (also called Postgres) is a free, open-source, object-relational database management system with a strong reputation…

13 hours ago

Install VMware on Ubuntu 18.04: Workstation Player Setup Guide

VMware Workstation Player is a mature, stable virtualization platform that lets you run multiple isolated operating…

13 hours ago

Set Up a UFW Firewall on Ubuntu 18.04: Allow, Deny, and Manage

A properly configured firewall is one of the most important layers of security for any internet-facing server. UFW (Uncomplicated Firewall) is a user-friendly front-end for managing iptables rules that ships pre-installed on Ubuntu. Its defaults are sensible: block all incoming connections, allow all outgoing connections. No outside traffic reaches your server unless you explicitly open a port. This guide covers how to configure a UFW firewall on Ubuntu 18.04, from setting default policies and application profiles to writing allow and deny rules for specific ports, IPs, and subnets. <strong>Prerequisite:</strong>&nbsp;You&nbsp;need&nbsp;sudo&nbsp;access. Configure UFW Firewall on Ubuntu: Defaults, SSH, and Application Profiles If UFW is not installed, add it with: bashsudo…

13 hours ago

Disable UFW Firewall on Ubuntu 18.04: Stop, Reset, and Re-enable

UFW (Uncomplicated Firewall) is a user-friendly front-end for managing iptables rules on Ubuntu. It ships pre-installed…

13 hours ago

Install Apache Cassandra on Ubuntu 18.04: NoSQL Setup Guide

Apache Cassandra is a free, open-source NoSQL database designed for high availability and linear scalability with…

2 days ago