Skip to content

Utilities to dump and process .NET binary-serialized data streams.

License

Notifications You must be signed in to change notification settings

Kassy2048/net-nrbf

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 

Repository files navigation

This Python 3 library parses .NET Remoting Binary Format (NRBF) contents and converts them to Python data structures. Not all data types are supported. NRBF is what the BinaryFormatter class produces.

A typical example to use it is:

from net_nrbf import File as NrfbFile

with NrfbFile(file_path) as nrfb:
    data = nrfb.convert()

The first argument to File can be a file path or a file-like object. Use File.from_bytes() to convert from bytes objects.

About

Utilities to dump and process .NET binary-serialized data streams.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%