{"id":22356530,"url":"https://github.com/vsaint1/kernel-mouse","last_synced_at":"2025-07-30T05:32:53.715Z","repository":{"id":210925078,"uuid":"727780405","full_name":"vsaint1/kernel-mouse","owner":"vsaint1","description":"Kernel driver with mouse and keyboard input ","archived":false,"fork":false,"pushed_at":"2023-12-05T21:48:28.000Z","size":2183,"stargazers_count":95,"open_issues_count":0,"forks_count":16,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-07T14:51:26.708Z","etag":null,"topics":["asm","cpp","kernel","windows"],"latest_commit_sha":null,"homepage":"","language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/vsaint1.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-12-05T15:02:13.000Z","updated_at":"2025-04-07T03:12:10.000Z","dependencies_parsed_at":"2024-12-04T14:11:05.450Z","dependency_job_id":"dc5d39f5-78ae-48ad-ab34-9bf235099795","html_url":"https://github.com/vsaint1/kernel-mouse","commit_stats":null,"previous_names":["vsaint1/kernel-mouse"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/vsaint1/kernel-mouse","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vsaint1%2Fkernel-mouse","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vsaint1%2Fkernel-mouse/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vsaint1%2Fkernel-mouse/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vsaint1%2Fkernel-mouse/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vsaint1","download_url":"https://codeload.github.com/vsaint1/kernel-mouse/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vsaint1%2Fkernel-mouse/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267815187,"owners_count":24148356,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-30T02:00:09.044Z","response_time":70,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["asm","cpp","kernel","windows"],"created_at":"2024-12-04T14:11:03.315Z","updated_at":"2025-07-30T05:32:53.633Z","avatar_url":"https://github.com/vsaint1.png","language":"C","readme":"﻿# Infestation\r\n\r\n\r\n### Usermode\r\n\r\nI've made simple usermode for testing, but i wont release, there are many sources available to copy and use.\r\n\r\n### Kernelmode\r\n\r\n\u003cimg src=\"./examples/test.png\"\u003e\r\n\u003ca target=\"_blank\" href=\"https://streamable.com/g937bg\"\u003eWatch the demo\u003c/a\u003e\r\n\r\nThe driver can be used in any windows 10/11 versions.\r\n\r\n**Available**\r\n- [x] Kernel driver with extra addons\r\n- [x] kernel **mouse_movement** \r\n- [x] Kernel **mouse_down** and **mouse_up** \r\n- [x] Read virtual memory (**mmcopy**)\r\n- [x] Write virtual memory (**mmcopy/mdl**)\r\n- [x] Kernel driver ready to be manually mapped **tested** (kdmapper/lenovo)\r\n\r\n**Planning**\r\n- [ ] TODO: Kernel Dispatch **Write Memory** \r\n- [ ] TODO: Protect usermode process\r\n- [ ] TODO: Clear MmUnloadedDrivers\r\n- [ ] TODO: Clear PiDDBCacheTable\r\n\r\n## How to use ?\r\n\r\n\r\n### 1.1 Manually mapping\r\n\r\n- Clone the repository\r\n- Open the solution in Visual Studio 2022 v143\r\n- **DISABLE** `Security Check` if loading driver with driver mapper\r\n\r\n\u003cimg src=\"./examples/security_check.png\"\u003e\r\n\r\n- Build the project\r\n- Copy the driver to the same folder as the executable\r\n- Load the driver with the driver mapper\r\n\r\n### 1.2 Loading via service `SC`\r\n\r\n- Clone the repository\r\n- Open the solution in Visual Studio 2022 v143\r\n\r\n- Build the project\r\n- To load the driver **MUST HAVE**: driver certificate, using [DSE](https://github.com/hfiref0x/UPGDSED) or with [Windows Testmode](https://linuxhint.com/enable-disable-test-mode-windows-10-11/)\r\n\r\n\u003ecreate driver\r\nsc create [service name] binPath= [path to your .sys file] type= kernel\r\n\r\n\u003eload driver\r\nsc start [service name]\r\n\r\n\u003e stop driver\r\nsc stop [service name]\r\n\r\n\u003e delete driver\r\nsc delete [service name]\r\n\r\n### Disclaimer ⚠\r\n\r\n\u003eI wont support or provide any binaries for this project, you are free to use it as you wish, this is a free project.\r\n\r\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvsaint1%2Fkernel-mouse","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvsaint1%2Fkernel-mouse","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvsaint1%2Fkernel-mouse/lists"}