Change arbo and create config file
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
#!/usr/bin/env python3
|
||||
|
||||
def calls() -> list:
|
||||
calls = list()
|
||||
# https://cwe.mitre.org/data/definitions/78.html
|
||||
# For commoand injections
|
||||
calls.append({
|
||||
"call": "exec",
|
||||
"description": "",
|
||||
"level": "high"
|
||||
})
|
||||
calls.append({
|
||||
"call": "chown",
|
||||
"description": "",
|
||||
"level": "high"
|
||||
})
|
||||
calls.append({
|
||||
"call": "chmod",
|
||||
"description": "",
|
||||
"level": "high"
|
||||
})
|
||||
calls.append({
|
||||
"call": "rsync",
|
||||
"description": "",
|
||||
"level": "high"
|
||||
})
|
||||
calls.append({
|
||||
"call": "wrap_socket",
|
||||
"description": "This functions is deprecated. You must use SSLContext.wrap_context",
|
||||
"level": "high"
|
||||
})
|
||||
return calls
|
||||
|
||||
Reference in New Issue
Block a user