Git Product home page Git Product logo

ztdriver's Introduction

๐Ÿ’พ ztdriver (Kernel)

Visitors License Python Version Python Version Github-sponsors

๐Ÿ’พ Kernel driver with associated user mode functionality

๐Ÿ“š Documentation

Kernel Driver ๐Ÿ’พ

Docs: https://learn.microsoft.com/en-us/windows-hardware/drivers/download-the-wdk

Requirements

Client usage ๐Ÿ’ป

To use it, copy this folder in you project lib .

Attach to process and Detach from process
#include "zdriver_client.hpp"

int main()
{
    if (!zdriver_client::attach_to_process(L"ac_client.exe"))
    {
        zdriver_client::detach_from_process();
        return 1;
    }
    zdriver_client::detach_from_process()
    return 0;
}
Get module
#include "zdriver_client.hpp"

int main()
{
	// ... first you need to Attach to process
    const uintptr_t client_module_base = zdriver_client::get_module_base(L"ac_client.exe");
    if (client_module_base == 0)
    {
        zdriver_client::detach_from_process()
        return 1;
    }
    zdriver_client::detach_from_process()
    return 0;
}
Read Memory
#include "zdriver_client.hpp"

int main()
{
	// ... first you need to Attach to process
    const uint32_t value = zdriver_client::read<uint32_t>(addr);
    zdriver_client::detach_from_process()
    return 0;
}
Write Memory
#include "zdriver_client.hpp"

int main()
{
	// ... first you need to Attach to process
    uint32_t value = 100;
    zdriver_client::write<uint32_t>(addr, value);
    zdriver_client::detach_from_process()
    return 0;
}
Find memory address
#include "zdriver_client.hpp"

int main()
{
	// ... first you need to Attach to process
    uint32_t addrs = zdriver_client::find_maaddy<uint32_t>(your_static, {0x0, 0x300, ...});
    zdriver_client::detach_from_process()
    return 0;
}

Contributing ๐Ÿค

We welcome contributions from the community. If you'd like to contribute to mytool, please follow these guidelines:

  • Fork the repository.
  • Make your changes.
  • Submit a pull request.

๐Ÿ’Œ Contact & Sponsor

If you have any questions, suggestions, or feedback, please don't hesitate to reach out to us at [email protected].

We hope PyPulse accelerates your desktop application development and simplifies the integration of web content into your Python projects. Happy coding! ๐Ÿ˜Ž๐Ÿš€

ztdriver's People

Contributors

zabbix-byte avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.