Add in missing command parameter to exploit.py, should be good to land now

This commit is contained in:
Grant Willcox 2021-01-22 12:33:03 -06:00
parent 7b7bdff1cc
commit 7473d0ca56
No known key found for this signature in database
GPG Key ID: D35E05C0F2B81E83
1 changed files with 2 additions and 1 deletions

View File

@ -37,7 +37,8 @@ metadata = {
},
'options': {
'targeturi': {'type': 'string', 'description': 'The base path', 'required': True, 'default': '/'},
'rhost': {'type': 'address', 'description': 'Target address', 'required': True, 'default': None}
'rhost': {'type': 'address', 'description': 'Target address', 'required': True, 'default': None},
'command': {'type': 'string', 'description': 'The command to execute via the q GET parameter', 'required': True}
}
}