Database mapping for crash dumps.
|
__tablename__ = ' crashes '
|
|
id = Column(Integer, Sequence(__tablename__+ '_seq'), primary_...
|
|
timestamp = Column(DateTime, nullable= False, index= True)
|
|
exploitable = Column(Integer, nullable= False)
|
|
exploitability_rule = Column(String(32), nullable= False)
|
|
exploitability_rating = Column(String(32), nullable= False)
|
|
exploitability_desc = Column(String, nullable= False)
|
|
os = Column(String(32), nullable= False)
|
|
arch = Column(String(16), nullable= False)
|
|
bits = Column(Integer, nullable= False)
|
|
event = Column(String, nullable= False)
|
|
pid = Column(Integer, nullable= False)
|
|
tid = Column(Integer, nullable= False)
|
|
pc = Column(BigInteger, nullable= False)
|
|
sp = Column(BigInteger, nullable= False)
|
|
fp = Column(BigInteger, nullable= False)
|
|
pc_label = Column(String, nullable= False)
|
|
exception = Column(String(64))
|
|
exception_text = Column(String(64))
|
|
exception_address = Column(BigInteger)
|
|
exception_label = Column(String)
|
|
first_chance = Column(Boolean)
|
|
fault_type = Column(Integer)
|
|
fault_address = Column(BigInteger)
|
|
fault_label = Column(String)
|
|
fault_disasm = Column(String)
|
|
stack_trace = Column(String)
|
|
command_line = Column(String)
|
|
environment = Column(String)
|
|
debug_string = Column(String)
|
|
notes = Column(String)
|
|
signature = Column(String, nullable= False)
|
|
data = deferred(Column(LargeBinary, nullable= False))
|
|
__mapper__ = <Mapper at 0x3e8e7d0; CrashDTO>
|
|
__table__ = Table('crashes', MetaData(bind=None), Column('id',...
|
|
_sa_class_manager = <ClassManager of <class 'winappdbg.sql.Cra...
|
Inherited from BaseDTO :
metadata
Inherited from BaseDTO (private):
_decl_class_registry
Inherited from unreachable.BaseDTO :
__table_args__
|