Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions frontend/utility/win-dll-blocklist.c
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,11 @@ static blocked_module_t blocked_modules[] = {
// The app is defunct as of July 2023 and the plugin no longer has a purpose.
// Reference: https://github.com/obsproject/obs-studio/issues/13636
{L"\\soundtrack-plugin.dll", 0, 0, TS_IGNORE},

// More Korean banking anti-screenshot "security" software that injects and crashes OBS.
// Found via internal crash reports. Classified as malware by some vendors.
// Reference: https://vms.drweb.com/virus/?i=32005995
{L"\\imgsf50dxfilter_x64.dll", 0, 0, TS_IGNORE},
};

static bool is_module_blocked(wchar_t *dll, uint32_t timestamp)
Expand Down
Loading