1
0
mirror of https://github.com/momo5502/hypervisor.git synced 2025-12-24 19:31:48 +00:00

10 Commits

Author SHA1 Message Date
dependabot[bot]
ccf5f0260b Bump actions/checkout from 5 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v5...v6)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: '6'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-12-01 11:17:28 +00:00
Maurice Heumann
2b6e78beb2 Merge pull request #18 from momo5502/dependabot/github_actions/actions/upload-artifact-5
Bump actions/upload-artifact from 4 to 5
2025-11-01 10:20:55 +01:00
dependabot[bot]
6e8dd2f3ad Bump actions/upload-artifact from 4 to 5
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 5.
- [Release notes](https://github.com/actions/upload-artifact/releases)
- [Commits](https://github.com/actions/upload-artifact/compare/v4...v5)

---
updated-dependencies:
- dependency-name: actions/upload-artifact
  dependency-version: '5'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-11-01 09:09:26 +00:00
Maurice Heumann
0711ac02b1 Merge pull request #17 from momo5502/dependabot/github_actions/actions/checkout-5
Bump actions/checkout from 4 to 5
2025-10-20 10:54:15 +02:00
dependabot[bot]
6335b452fe Bump actions/checkout from 4 to 5
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](https://github.com/actions/checkout/compare/v4...v5)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: '5'
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-10-01 09:14:26 +00:00
Maurice Heumann
ff66fce225 Merge pull request #16 from momo5502/dependabot/submodules/external/FindWDK-1e41c97
Bump external/FindWDK from `04b4151` to `1e41c97`
2025-08-03 14:56:27 +02:00
dependabot[bot]
dbd0cc23c8 Bump external/FindWDK from 04b4151 to 1e41c97
Bumps [external/FindWDK](https://github.com/SergiusTheBest/FindWDK) from `04b4151` to `1e41c97`.
- [Commits](04b4151f6d...1e41c97ed8)

---
updated-dependencies:
- dependency-name: external/FindWDK
  dependency-version: 1e41c97ed8511bd1085eb707e2c357d9f159963f
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-08-01 09:27:11 +00:00
Maurice Heumann
051dee0214 Update README.md 2025-07-29 10:59:28 +02:00
Maurice Heumann
aab19ccb34 Merge pull request #13 from momo5502/dependabot/submodules/external/FindWDK-04b4151
Bump external/FindWDK from `6aaaaf4` to `04b4151`
2025-07-01 13:38:26 +02:00
dependabot[bot]
4051223045 Bump external/FindWDK from 6aaaaf4 to 04b4151
Bumps [external/FindWDK](https://github.com/SergiusTheBest/FindWDK) from `6aaaaf4` to `04b4151`.
- [Commits](6aaaaf423a...04b4151f6d)

---
updated-dependencies:
- dependency-name: external/FindWDK
  dependency-version: 04b4151f6d6257554f2467edc0ff7f0c77074c7e
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-07-01 10:24:21 +00:00
3 changed files with 10 additions and 6 deletions

View File

@@ -20,7 +20,7 @@ jobs:
- release
steps:
- name: Check out files
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
submodules: true
fetch-depth: 0
@@ -49,7 +49,7 @@ jobs:
run: cmake --build --preset=${{matrix.configuration}}
- name: Upload ${{matrix.configuration}} binaries
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: ${{matrix.configuration}} binaries
path: |

View File

@@ -1,11 +1,15 @@
# 🧪 Hypervisor with EPT Hooking Support
![license](https://img.shields.io/github/license/momo5502/hypervisor.svg)
[![build](https://github.com/momo5502/hypervisor/workflows/Build/badge.svg)](https://github.com/momo5502/hypervisor/actions)
[![paypal](https://img.shields.io/badge/PayPal-support-blue.svg?logo=paypal)](https://paypal.me/momo5502)
# Hypervisor
A lightweight experimental hypervisor that leverages Intel's VT-x virtualization technology to create stealthy memory hooks using EPT (Extended Page Tables). By manipulating second-level address translation, it enables invisible code execution interception that bypasses traditional memory integrity checks.
Experimental VT-X type 2 hypervisor with EPT hooking/analysis support.
Basically just a tool I use for reverse engineering and stuff. Nothing too serious.
## Safety Warnings
- **System Instability**: Improper hypervisor implementation can cause BSODs
- **Data Loss Risk**: Always backup important data before testing
- **Ethical Usage**: Only use for legitimate research and educational purposes
## Credits