mirror of
https://github.com/criyle/go-sandbox.git
synced 2025-09-26 23:19:11 +08:00
27 lines
369 B
Go
27 lines
369 B
Go
package config
|
|
|
|
// This file includes configs for the run program settings
|
|
|
|
var (
|
|
archReadableFiles = []string{
|
|
"/lib/x86_64-linux-gnu/",
|
|
"/usr/lib/x86_64-linux-gnu/",
|
|
}
|
|
|
|
archSyscallAllows = []string{
|
|
"dup2",
|
|
"time",
|
|
"arch_prctl",
|
|
}
|
|
|
|
archSyscallTraces = []string{
|
|
"open",
|
|
"unlink",
|
|
"readlink",
|
|
"lstat",
|
|
"stat",
|
|
"access",
|
|
"newfstatat",
|
|
}
|
|
)
|