Skip to content

SmartTracker is a Python-based application designed to analyze memory dumps, manage databases, and efficiently monitor system performance

Notifications You must be signed in to change notification settings

needitem/SmartTracker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SmartTracker

SmartTracker is a Python-based application designed to analyze memory dumps and efficiently monitor system performance. It leverages powerful libraries to provide insightful diagnostics and logging capabilities, making it an essential tool for developers and system administrators.

Features

  • Memory Analysis: Analyze memory dumps to identify potential issues and optimize performance.
  • System Monitoring: Utilize psutil to monitor system resources and performance metrics.
  • Logging: Comprehensive logging for tracking application behavior and troubleshooting.
  • Cheat Engine-like Functionality: Inject Python scripts into target processes for dynamic memory manipulation.

Installation

  1. Clone the Repository

    git clone https://github.com/needitem/SmartTracker.git
  2. Navigate to the Project Directory

    cd SmartTracker
  3. Create a Virtual Environment (Optional but Recommended)

    python -m venv venv
    source venv/bin/activate  # On Windows: venv\Scripts\activate
  4. Install Dependencies

    pip install -r requirements.txt

Usage

To execute the memory dump analyzer, run the following command:

python main.py

SmartTracker/
├── dump/
│ ├── analyzer/
│ │ ├── memory_analyzer.py
│ ├── base/
│ │ ├── memory_dumper.py
│ ├── memory/
│ │ ├── memory_entry.py
│ ├── utils/
│ │ ├── pointers.py
│ ├── logging/
│ │ ├── logging_config.py
│ └── init.py
├── gui/
│ ├── analyze_process/
│ │ ├── controllers/
│ │ │ ├── search_controller.py
│ │ ├── analysis_tab.py
│ │ ├── main_window.py
│ ├── process_selector/
│ │ ├── controllers/
│ │ │ ├── process_controller.py
│ │ │ ├── module_controller.py
│ │ ├── main_frame.py
│ └── init.py
├── .gitignore
├── requirements.txt
└── README.md

  • drop/: Contains modules related to memory analysis.
    • analyzer/:
      • memory_analyzer.py: Handles memory analysis tasks.
    • base/:
      • memory_dumper.py: Responsible for dumping memory from processes.
    • memory/:
      • memory_entry.py: Dataclass representing a memory entry.
    • utils/:
      • pointers.py: Utilities for pointer operations.
    • logging/:
      • logging_config.py: Configures logging settings.
    • init.py: Initializes the dump package.
  • gui/: Contains graphical user interface components.
    • analyze_process/:
      • controllers/:
        • search_controller.py: Handles search functionalities.
      • analysis_tab.py: GUI tab for displaying analysis results.
      • main_window.py: Main analysis window.
    • process_selector/:
      • controllers/:
        • process_controller.py: Manages process dumping.
        • module_controller.py: Manages module listings.
      • main_frame.py: Main frame for the process selector.
    • init.py: Initializes the GUI package.
  • .gitignore: Specifies files and directories to be ignored by Git.
  • requirements.txt: Lists Python dependencies required for the project.
  • README.md: Documentation and instructions for the project.

Description:
The ProcessSelector class provides a GUI component for selecting and dumping memory from running processes. It includes functionality to refresh the list of active processes, handle user selections, and initiate memory dumps in separate threads to keep the GUI responsive. Comprehensive logging ensures that all actions and potential errors are appropriately recorded.

Contributing

Contributions are welcome! Please fork the repository and submit a pull request with your enhancements.

License

This project is licensed under the MIT License. See the LICENSE file for details.

Contact

For any questions or support, please reach out to th07290828@gmail.com.

About

SmartTracker is a Python-based application designed to analyze memory dumps, manage databases, and efficiently monitor system performance

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages