This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
38fda53c4d91a2279a300e030f87bd9783d3640ba090bc3a74d049c2e3c5ae2b |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
f5229314179a5ff063b5ae32c9bd6bc14e831cc68089b2991ced784981483ac2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5ed0490eab435cd36c9d78a37dade38fe22862ad537aea1ffe66913d96058965 | |
513fd6c864717f1abd78e72704597c730280d55c312423c5661ca544a41643eb | |
2c4785278cc50d8b683a5d2e28ebdf29c386bbbda284fc162917fb6688031341 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
""" | |
plar_extract.py – Extract files from Geekbench *.plar* archives (Geekbench 6+) | |
========================================================================== | |
** Based on this 4 year old script: https://gist.github.com/HarukaMa/0772fc47311f6bbcb79ce3f84a7134d7 | |
Usage | |
----- | |
python plar_extract.py <archive.plar> [output_dir] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
COPYRIGHT Bill Demirkapi 2025 | |
Small utility I wrote with some help from Gemini Pro 2.5 to decrypt/encrypt BMC config backups from my ASUS ASMB11-iKVM AST2600 BMC. | |
Fed the model a bunch of decompiled code from BMC firmware libaries like libaes and libBackupConf. | |
Probably works with other Megarac-based BMCs too. | |
Expects an AESKey and AESIV file in script directory. This varies by OEM, often requires unpacking firmware/flash image. | |
For my ASUS BMC, however, the Key/IV for config are just NULL keys. AESKey file content is "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=", AESIV's is "AAAAAAAAAAAAAAAAAAAAAA==". | |
""" |
OlderNewer