Bare-bones MS-NRBF serializer written in Python.
pip install git+https://github.com/quae-dev/mini-nrbf.gitimport mini_nrbf
records = mini_nrbf.load_file("data.bin")
for record in records:
if isinstance(record, mini_nrbf.BinaryObjectString):
record.value = "new value"
mini_nrbf.dump_file(records, "data.bin")BSD 3-Clause — see LICENSE for full text.
This project is based off of netfleece by nago.
See THIRD_PARTY_LICENSES.md for full text and attribution.