[*] This stupid fuck regression should've been caught earlier (AuProcesses unable to open files due to attack mitigations determining every file as being blocked)
This commit is contained in:
parent
acbd62666f
commit
648fbea6c1
@ -34,7 +34,7 @@ namespace Aurora::Processes
|
||||
|
||||
if (bFileExists)
|
||||
{
|
||||
if (!AuFS::IsFileBlocked(uri))
|
||||
if (AuFS::IsFileBlocked(uri))
|
||||
{
|
||||
SysPushErrorGeneric("Exploit attempt? Attempted to open untrusted file/directory. (request: {})", uri);
|
||||
return;
|
||||
|
@ -59,7 +59,7 @@ namespace Aurora::Processes
|
||||
|
||||
if (bFileExists)
|
||||
{
|
||||
if (!AuFS::IsFileBlocked(uri))
|
||||
if (AuFS::IsFileBlocked(uri))
|
||||
{
|
||||
SysPushErrorGeneric("Exploit attempt? Attempted to open untrusted file/directory. (request: {})", uri);
|
||||
continue;
|
||||
|
Loading…
Reference in New Issue
Block a user