-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
..ye
- Loading branch information
Showing
1 changed file
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# ZoomWebcamFix | ||
|
||
A simple program to unblock webcams blocked by Zoom. | ||
|
||
## Usage | ||
|
||
This software has two modes of patching. | ||
|
||
**Default** - runtime code patching. Requires the software to be open in the background all the time while zoom is running, | ||
but is more effective when it comes to Zoom's updates. | ||
|
||
**File patch** - activates upon pressing *HOME* while waiting for Zoom. Will patch the dll locally, making a copy. | ||
This method *does not* require any more opening of the program. Once you patch the file, its done and you don't | ||
need to do anything else. It *will* reset though on Zoom's updates. | ||
|
||
## Screenshots | ||
|
||
![Before](https://i.ibb.co/878DXXt/before.png) ![After](https://i.ibb.co/ckYmyxc/after.png) | ||
|
||
## How it works | ||
|
||
**Default**: | ||
|
||
- Hooks the DLLMain of the DllSafeCheck.dll. | ||
In onAttach(), this dll registers an NTDLL callback to check for all dlls loaded by zoom.exe and scan them. | ||
We hook DLLMain and call onDetach() to unregister the callback and make zoom blind for any dlls, effectively disabling the scan. | ||
|
||
- Assembly patches the HackCheck() call in WinMain of Zoom.exe, but idk if it does anything anymore tbh. | ||
|
||
**File patch**: | ||
|
||
- Patches the HackCheck() function to be nop'd, effectively removing it and making zoom call nothing and return true :) |