2025-01-03 15:27:05 +01:00
|
|
|
"""
|
|
|
|
Sample file for debugging purposes and examples
|
|
|
|
"""
|
|
|
|
|
|
|
|
import pandas as pd
|
|
|
|
|
2024-09-07 21:41:17 +02:00
|
|
|
#from herrewebpy.bioinformatics import sequence_alignment
|
|
|
|
#sequence_alignment.SequenceAlignment(['aa', 'bb', 'cc'],['bb','aa','cc'], ['1','2','3'], ['1','2','3'])
|
|
|
|
|
2024-09-08 23:13:28 +02:00
|
|
|
#from herrewebpy.firmware_forensics import function_extractor
|
|
|
|
#function_extractor.FunctionExtractor('', 'ARM_AARCH64')
|
|
|
|
|
2025-01-03 15:27:05 +01:00
|
|
|
# from herrewebpy.christianity import readplan_generator
|
|
|
|
# readplan_generator.generate_readplan()
|
2024-09-13 22:39:23 +02:00
|
|
|
|
2025-01-03 15:27:05 +01:00
|
|
|
from herrewebpy.firmware_forensics.memory_drawer import MemoryDrawer
|
|
|
|
df = pd.read_csv('sample_data/csv/stack_and_functions.csv')
|
|
|
|
MemoryDrawer(df)
|