From 890947af498e8407a9204c1a4943de4e2cea7343 Mon Sep 17 00:00:00 2001 From: de4dot Date: Fri, 30 May 2014 00:38:13 +0200 Subject: [PATCH] Also catch SecurityException --- de4dot.cui/FilesDeobfuscator.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/de4dot.cui/FilesDeobfuscator.cs b/de4dot.cui/FilesDeobfuscator.cs index 40677985..abed4ae0 100644 --- a/de4dot.cui/FilesDeobfuscator.cs +++ b/de4dot.cui/FilesDeobfuscator.cs @@ -309,6 +309,9 @@ namespace de4dot.cui { catch (IOException) { return new List(); } + catch (System.Security.SecurityException) { + return new List(); + } return RecursiveAdd(searchDir, fsinfos); }