Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/NetSPI/WebLogicPasswordDecryptor
PowerShell script and Java code to decrypt WebLogic passwords
https://github.com/NetSPI/WebLogicPasswordDecryptor
Last synced: about 2 months ago
JSON representation
PowerShell script and Java code to decrypt WebLogic passwords
- Host: GitHub
- URL: https://github.com/NetSPI/WebLogicPasswordDecryptor
- Owner: NetSPI
- License: mit
- Created: 2015-04-02T20:13:51.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-07-20T15:12:49.000Z (over 9 years ago)
- Last Synced: 2024-11-18T02:03:17.351Z (2 months ago)
- Language: Java
- Homepage: https://blog.netspi.com/decrypting-weblogic-passwords/
- Size: 635 KB
- Stars: 242
- Watchers: 40
- Forks: 78
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-hacking-lists - NetSPI/WebLogicPasswordDecryptor - PowerShell script and Java code to decrypt WebLogic passwords (Java)
README
WebLogic Password Decryptor
=========PowerShell script and Java code to decrypt WebLogic passwords
```
Import the moduleImport-Module .\Invoke-WebLogicPasswordDecryptor.psm1
``````
Decrypt AESInvoke-WebLogicPasswordDecryptor -SerializedSystemIni C:\SerializedSystemIni.dat -CipherText "{AES}8/rTjIuC4mwlrlZgJK++LKmAThcoJMHyigbcJGIztug="
``````
Decrypt 3DESInvoke-WebLogicPasswordDecryptor -SerializedSystemIni C:\SerializedSystemIni.dat -CipherText "{3DES}JMRazF/vClP1WAgy1czd2Q=="
``````
JavaWebLogicPasswordDecryptor "C:\SerializedSystemIni.dat" "{AES}8/rTjIuC4mwlrlZgJK++LKmAThcoJMHyigbcJGIztug="
WebLogicPasswordDecryptor "C:\SerializedSystemIni.dat" "{3DES}JMRazF/vClP1WAgy1czd2Q=="
```