Skip to content

Commit 9d38a93

Browse files
notr1chRytoEX
authored andcommitted
frontend: Add Image SAFER to DLL blocklist
More useless "security" software to try to prevent screenshots that installs global hooks and kernel drivers. Crash reports indicate that their hook attaches to and subsequently crashes OBS.
1 parent f7e4fba commit 9d38a93

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

frontend/utility/win-dll-blocklist.c

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,11 @@ static blocked_module_t blocked_modules[] = {
196196
// The app is defunct as of July 2023 and the plugin no longer has a purpose.
197197
// Reference: https://github.com/obsproject/obs-studio/issues/13636
198198
{L"\\soundtrack-plugin.dll", 0, 0, TS_IGNORE},
199+
200+
// More Korean banking anti-screenshot "security" software that injects and crashes OBS.
201+
// Found via internal crash reports. Classified as malware by some vendors.
202+
// Reference: https://vms.drweb.com/virus/?i=32005995
203+
{L"\\imgsf50dxfilter_x64.dll", 0, 0, TS_IGNORE},
199204
};
200205

201206
static bool is_module_blocked(wchar_t *dll, uint32_t timestamp)

0 commit comments

Comments
 (0)