Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
Tools/GitHubGitHub/jas502n/openfire_decrypt
Encryption/Decryption ToolsPassword AttacksPost-ExploitationDatabase Security
GitHubjas502n/openfire_decrypt

OpenFire_Decrypt

OpenFire 管理后台账号密码解密

View Repository
3065 years agoReviewed by Kitploit

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

OpenFire_Decrypt

Decrypt the admin console account password of OpenFire

install openfire

https://hub.docker.com/r/sameersbn/openfire

docker pull sameersbn/openfire:3.10.3-19

root@kitploit:~
docker run --name openfire -d --restart=always \
  --publish 9090:9090 --publish 5222:5222 --publish 7777:7777 \
  --volume /srv/docker/openfire:/var/lib/openfire \
  sameersbn/openfire:3.10.3-19

Blowfish.java

openfire.jar/org/jivesoftware/util/Blowfish.java

Interface Display

/usr/share/openfire/embedded-db/openfire.log

root@kitploit:~
/*C3*/INSERT INTO OFPROPERTY VALUES('passwordKey','QWMRc9f3X9t2BN0')
/*C1*/DELETE FROM OFUSER WHERE USERNAME='admin'
INSERT INTO OFUSER VALUES('admin',NULL,'cef7d1faf10db55cdd43847c9869da627674cda780275756','Administrator','[email protected]','0','0')

select encryptedPassword from OFUSER where username='admin';

select * from ofproperty where propValue='passwordKey'

encryptedPassword passwordKey

root@kitploit:~
String encryptedPassword = "cef7d1faf10db55cdd43847c9869da627674cda780275756";
String passwordKey = "QWMRc9f3X9t2BN0";

Decrypt

mvn clean package -DskipTests

Reference Links:

https://www.ch1ng.com/blog/199.html

Download Tool