Home | Trees | Indices | Help |
|
---|
|
Database mapping for memory dumps.
|
|||
|
|||
|
|||
win32.MemoryBasicInformation |
|
||
Inherited from |
|
|||
|
|||
|
|||
|
|
|||
__tablename__ =
|
|||
id = Column(Integer, Sequence(__tablename__+ '_seq'), primary_
|
|||
crash_id = Column(Integer, ForeignKey('crashes.id', ondelete=
|
|||
address = Column(BigInteger, nullable= False, index= True)
|
|||
size = Column(BigInteger, nullable= False)
|
|||
state = Column(MEM_STATE_ENUM, nullable= False)
|
|||
access = Column(MEM_ACCESS_ENUM)
|
|||
type = Column(MEM_TYPE_ENUM)
|
|||
alloc_base = Column(BigInteger)
|
|||
alloc_access = Column(MEM_ALLOC_ACCESS_ENUM)
|
|||
filename = Column(String)
|
|||
content = deferred(Column(LargeBinary))
|
|||
__mapper__ = <Mapper at 0x3e51550; MemoryDTO>
|
|||
__table__ = Table('memory', MetaData(bind=None), Column('id',
|
|||
_sa_class_manager = <ClassManager of <class 'winappdbg.sql.Mem
|
|||
Inherited from Inherited from Inherited from |
|
|||
Inherited from |
|
Process a win32.MemoryBasicInformation object for database storage.
|
Returns a win32.MemoryBasicInformation object using the data retrieved from the database.
|
|
id
|
crash_id
|
__table__
|
_sa_class_manager
|
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Fri Dec 20 17:54:55 2013 | http://epydoc.sourceforge.net |