Background
On my last internal penetration test, I compromised a server running OpenNMS. During post-exploitation, I recovered several password hashes for local OpenNMS users, but for the life of me could not figure out how they were hashed. Even though I had root access on the server, I still wanted to try to crack these hashes since I figured maybe the users were re-using their passwords elsewhere in the environment.
My Googling failed me and I didn’t find any good resources online about OpenNMS password hashes, so I decided to document what I found out and release a Python tool to hopefully help any future pentesters who compromise an OpenNMS server.
tl;dr. They’re base64 encoded strings with the first 16 bytes being the salt, and the remaining 32 bytes being 100,000 iterations of sha256(salt.password)
. Tool released here:
https://github.com/ropnop/opennms_hash_cracker
Initial Compromise
We discovered a server running an outdated version of OpenNMS with a known Java deserialization vulnerability. FoxGlove Security released an amazing writeup digging into this vulnerability here:
Exploitation couldn’t be easier with the Metasploit module. We pointed the module to the RMI interface on port 1099 and set the payload to be linux/x86/shell_reverse_tcp
and were quickly granted a shell running with root privileges:
OpenNMS was installed in /opt/opennms
so I used the shell to explore that directory and quickly found a file that defined local user accounts for OpenNMS. I recognized some of the usernames as privileged administrators of the organization, so I wanted to try to crack some of these hashes in the hope that the passwords were reused elsewhere.
The hashes were stored in /opt/opennms/etc/users.xml
and looked like this:
|
|
Obviously I was interested in the password hash, which according to the XML was salted:
L5j2hiVX4B+LTHnY3Mwq5m5dBZzNdHhiBpvBjyCerBsBqqJcxRUsRAxaDQtjRkcn
I quickly searched through both john
and hashcat
help pages to see if there was a mode for OpenNMS hashes, but found nothing. I then resorted to Google, but still found no hints on how the hash was salted and/or calculated.
At this point I realized I was going to have to figure it out on my own.
Hash Identification
Most password cracking programs use hex representations of hashes, so I converted the base64 value in the XML to hex:
|
|
Next I used the Python package hashID to see possible hashes:
So it’s potentially SHA-384, but that’s so rare I really doubt it. Time to dig deeper.
Plaintext Identification
Even if I correctly figured out the hashing algorithm used, I still wasn’t sure how the salt was implemented, let alone what the salt actually was. My first thought was that maybe the salt was stored in the PostgresSQL database used by OpenNMS. Since I had root on the server, I was able to connect to the database and explore the tables, but found nothing related to passwords or salts. So it had to be in the application somewhere.
OpenNMS is open source, so the first place I turned was to its Github page and just did a search for “salt”. That turned up some example users.xml
files used for test purposes.
Following the source code up from there, I finally ran across some assertion tests that used the salted password hashes:
|
|
Matching that up with the “rtc” user hash in the test users.xml
I now had a matching plaintext and hash:
- Plaintext:
rtc
- Salted Hash:
L5j2hiVX4B+LTHnY3Mwq5m5dBZzNdHhiBpvBjyCerBsBqqJcxRUsRAxaDQtjRkcn
It still didn’t tell me what the salt was or how it was used, but having a positive test case was important in figuring out the hashing scheme.
Hashing Algorithm Identification
Instead of focusing on the Github code, I turned back to my root shell on the server. I wasn’t sure how out of date or how different the code might be between Github and what I was dealing with, so I wanted to try to find the source code on the server where the hash was calculated.
From within the opennms
directory, I simply ran a search for the string “salt” to see where it was used:
|
|
Alright, so there’s some JAR libraries that have the word “salt” in them, in particular ./lib/jasypt-1.9.0.jar
According to their homepage:
Jasypt is a java library which allows the developer to add basic encryption capabilities to his/her projects with minimum effort, and without the need of having deep knowledge on how cryptography works.
Digging into the docs, I finally came across what looked pretty promising: a class called StrongPasswordEncryptor, which uses another class, called StandardStringDigester. According to the docs, StrongPasswordEncryptor is a:
Jasypt is also on Github, and I found the source code for both classes here and here. Looking in the comments of StandardStringDigester source code, I finally have my answer on how the digest is constructed:
I have all the pieces I need now (hopefully):
- Plaintext: “rtc”
- Digest: L5j2hiVX4B+LTHnY3Mwq5m5dBZzNdHhiBpvBjyCerBsBqqJcxRUsRAxaDQtjRkcn
- Salt Size: 16 bytes
- Digest Format: (salt.password)
- Algorithm: sha256
- Iterations: 100,000
Putting it all together
I really wanted to verify this was the correct algorithm and that I could in fact derive the digest from the plaintext
Now to test it, I needed to concatenate the bytes of the salt with the plaintext, then calculate a sha256 digest 100,000 times. I wrote a Python script to verify the plaintext and password:
And testing it with the known plaintext we have success with 100,000 iterations!
Cracking with a wordlist
Now that I had a PoC working, I wanted to throw a wordlist at the hashes I had compromised. Since it was just a sha256 hash with a salt, I thought I could use john
or hashcat
. I asked on Twitter if it was possible to specify number of rounds, but unfortunately found an answer that worked. @coffeetocode dug around in John’s source code and found that sha256crypt was probably the closest I could get. The problem is that that sha256crypt has a 16 character max for the salt, and these use 16 byte salts.
Looked like I was out of luck with using a cracking program. If anyone has any suggestions or workarounds though, please let me know!
Writing a cracker
Since I still wanted to run some plaintext passwords at the hashes, and I was totally nerd-sniped by this whole ordeal, I wrote a simple brute-forcer in Python.
It’s on my Github here:
https://github.com/ropnop/opennms_hash_cracker
The Python script ingests a users.xml
file, extracts the hashes, and then runs a cracking attack against the hashes using a supplied wordlist.
It also has some logic to parse and test unsalted hashes for OpenNMS as well (which are just MD5 digests).
Running it on the example users.xml
file from the OpenNMS test data with a simple wordlist shows it works:
It’s not very fast or efficient, but it should serve the purpose if you have a small wordlist or just want to try some common passwords. Would love some help in speeding it up or maybe even porting it to hashcat!
In the end, this didn’t actually help me at all on my pentest as I was low on time and had to pursue other avenues, but it was fun exercise nonetheless. Hopefully this blog and tool will help some future pentester down the line if he or she ever compromises an OpenNMS box.
Enjoy! -ropnop