pombredanne / vstruct

Vivisect Structure Definition/Parsing Library

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

vstruct ( Mark II )

Vivisect Structure Definition/Parsing Library Build Status

Installing

python3.4 -m pip install vstruct

vstruct (version 2) can now be installed via pip!

Additionally, a repository of existing structure definitions is available as a seperate package named fracture.

Examples

Basic Parsing

Simple vstruct byte parsing:

from vstruct.types import *

class Foo(VStruct):

    def __init__(self):
        VStruct.__init__(self)
        self.bar    = uint32()
        self.baz    = vbytes(20)


foo = Foo()

# read in byts from somewhere...
foo.vsParse(byts)

# access struct fields by name
if foo.bar == 30:
    print('bar == 30!')

# assign fields by name
foo.bar = 90

# emit modified bytes back out
byts = bytes(foo) # same as foo.vsEmit()

Parser Callbacks

WriteBack Bytes/Files

vstruct supports "writeback" functionality for both files and mutable bytearray types, allowing field assignments to change the underlying file or bytearray immediately.

class Foo(VStruct):

    def __init__(self):
        VStruct.__init__(self)
        self.bar    = uint32()
        self.baz    = uint32()


foo = Foo()

# ba is a bytearray
foo.vsParse(ba, writeback=True)

# if bar is 30, set baz to 99
if foo.bar == 30:
    foo.baz = 99

# ba bytearray has now been modified

Enum Types

Builds

Travis-Ci ( Linux: py-2.7 / py-3.4 )

Build Status

AppVeyor ( Windows: py-2.7 / py-3.4 )

Build Status

About

Vivisect Structure Definition/Parsing Library

License:Apache License 2.0


Languages

Language:Python 100.0%