aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lualib/lua_content/pdf.lua10
1 files changed, 5 insertions, 5 deletions
diff --git a/lualib/lua_content/pdf.lua b/lualib/lua_content/pdf.lua
index 6676d6d36..04803f754 100644
--- a/lualib/lua_content/pdf.lua
+++ b/lualib/lua_content/pdf.lua
@@ -32,21 +32,21 @@ local pdf_patterns = {
},
javascript = {
patterns = {
- [[/JS(?:[\s/><])]],
- [[/JavaScript(?:[\s/><])]],
+ [[\/JS(?:[\s/><])]],
+ [[\/JavaScript(?:[\s/><])]],
}
},
openaction = {
patterns = {
- [[/OpenAction(?:[\s/><])]],
- [[/AA(?:[\s/><])]],
+ [[\/OpenAction(?:[\s/><])]],
+ [[\/AA(?:[\s/><])]],
}
},
suspicious = {
patterns = {
[[netsh\s]],
[[echo\s]],
- [[/[A-Za-z]*#\d\d(?:[#A-Za-z<>/\s])]], -- Hex encode obfuscation
+ [[\/[A-Za-z]*#\d\d(?:[#A-Za-z<>/\s])]], -- Hex encode obfuscation
}
}
}