analyzeMFT | exploring digital forensics for many years | Cybersecurity library
kandi X-RAY | analyzeMFT Summary
kandi X-RAY | analyzeMFT Summary
This project was my passion and my vehicle for exploring digital forensics for many years as well as a means for giving back to a community that gave me so much. Unfortunately, I am no doing forensics on Windows filesystems and am not contributing to this project anymore. If someone else wishes to adopt it, please let me know.
Support
Quality
Security
License
Reuse
Top functions reviewed by kandi - BETA
- Parse a MFT record
- Parse datarun string into a list of dataruns
- Detect anomaly times
- Decode an ATR header
- Convert a MFT record to CSV format
- Decode MFT record to Active flag
- Decode MFT record
- Decode the MFT Magic record
- Process a MFT file
- Calculate filepaths
- Return the folder name for a record
- Build filepaths
- Parse little endian signed from a buffer
- Parse a little endian negative signed integer
- Parse the little endian signed by the buffer
- Open files
- Return options for MFT files
- Process the MFT file
- Print a hexdump of characters
analyzeMFT Key Features
analyzeMFT Examples and Code Snippets
Community Discussions
Trending Discussions on analyzeMFT
QUESTION
Before you say this is a duplicate or downvote, please read through.
I have a class called app.py within that class there's a method called print_raw_records_screen
here's the part of the class and the method
ANSWER
Answered 2017-Jul-24 at 19:36From what I can see here you have a few issues causing problems.
you are importing
app.py
onmftsession.py
instead importingmftsession.py
onapp.py
.You are trying to use
appi.print_raw_records_screen(raw_record)
on a completely different instance of theExample()
class withappi = app.Example(root)
remove that part all together.It is bad practice to importing inside a function. Import at the start of each py file.
There is so many things going on in your code I had to create a Minimal, Complete, and Verifiable example example of my own to illustrate the relation between files.
Here is a simple example of how the 2 files can interact and the way I think you are trying to do things.
Here I have created a main file called app.py
:
QUESTION
I am trying to create a GUI for the analyzeMFT python program. So far this is what i have
...ANSWER
Answered 2017-Jul-24 at 12:05Instead of using print like you would normally use to display results to the console you can use insert()
on your text box.
EDIT:
First change:
Community Discussions, Code Snippets contain sources that include Stack Exchange Network
Vulnerabilities
No vulnerabilities reported
Install analyzeMFT
Support
Reuse Trending Solutions
Find, review, and download reusable Libraries, Code Snippets, Cloud APIs from over 650 million Knowledge Items
Find more librariesStay Updated
Subscribe to our newsletter for trending solutions and developer bootcamps
Share this Page