A Pen by Guillaume Chabot on CodePen.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Exploit Title: Mobile Mouse 3.6.0.4 Remote Code Execution | |
| # Date: May 28, 2024 | |
| # Exploit Edited: Halim Jabbes | |
| # Exploit Author: Chokri Hammedi | |
| # Vendor Homepage: https://mobilemouse.com/ | |
| # Software Link: https://www.mobilemouse.com/downloads/setup.exe | |
| # Version: 3.6.0.4 | |
| # Tested on: Microsoft Windows NT 10.0.19045.0 | |
| #!/usr/bin/env python3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <windows.h> | |
| #include <stdio.h> | |
| #define BOOT_KEY_SIZE 16 | |
| #pragma warning(disable: 4996) | |
| void getRegistryClassValue(HKEY rootKey, const char* subKey, char* classValue, DWORD classValueSize) { | |
| HKEY hKey; | |
| LONG result = RegOpenKeyExA(rootKey, subKey, 0, KEY_READ, &hKey); | |
| if (result != ERROR_SUCCESS) { | |
| fprintf(stderr, "Error opening registry key: %ld\n", result); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| from lib.core.enums import PRIORITY | |
| __priority__ = PRIORITY.NORMAL | |
| def dependencies(): | |
| pass | |
| def tamper(payload, **kwargs): | |
| if payload: |
OlderNewer