mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-15 03:13:45 +00:00
fix: Add additional classes to Polymod Blacklist
This commit is contained in:
parent
5141ac13df
commit
b0b73c8399
|
@ -282,6 +282,13 @@ class PolymodHandler
|
||||||
// System.load() can load malicious DLLs
|
// System.load() can load malicious DLLs
|
||||||
Polymod.blacklistImport('lime.system.System');
|
Polymod.blacklistImport('lime.system.System');
|
||||||
|
|
||||||
|
// `lime.utils.Assets`
|
||||||
|
// Literally just has a private `resolveClass` function for some reason?
|
||||||
|
Polymod.blacklistImport('lime.utils.Assets');
|
||||||
|
Polymod.blacklistImport('openfl.utils.Assets');
|
||||||
|
Polymod.blacklistImport('openfl.Lib');
|
||||||
|
Polymod.blacklistImport('openfl.system.ApplicationDomain');
|
||||||
|
|
||||||
// `openfl.desktop.NativeProcess`
|
// `openfl.desktop.NativeProcess`
|
||||||
// Can load native processes on the host operating system.
|
// Can load native processes on the host operating system.
|
||||||
Polymod.blacklistImport('openfl.desktop.NativeProcess');
|
Polymod.blacklistImport('openfl.desktop.NativeProcess');
|
||||||
|
|
Loading…
Reference in a new issue