summaryrefslogtreecommitdiffstats
path: root/nselib/data/psexec/drives.lua
blob: 22728215c720a9bf57162d758a5d27cd5f8beadc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
---This configuration file pulls info about a given harddrive

-- 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

mod = {}
mod.upload           = false
mod.name             = "Drive type"
mod.program          = "fsutil"
mod.args             = "fsinfo drivetype $drive"
mod.req_args         = {"drive"}
mod.maxtime          = 1
table.insert(modules, mod)

mod = {}
mod.upload           = false
mod.name             = "Drive info"
mod.program          = "fsutil"
mod.args             = "fsinfo ntfsinfo $drive"
mod.req_args         = {"drive"}
mod.replace          = {{" :",":"}}
mod.maxtime          = 1
table.insert(modules, mod)

mod = {}
mod.upload           = false
mod.name             = "Drive type"
mod.program          = "fsutil"
mod.args             = "fsinfo statistics $drive"
mod.req_args         = {"drive"}
mod.replace          = {{" :",":"}}
mod.maxtime          = 1
table.insert(modules, mod)

mod = {}
mod.upload           = false
mod.name             = "Drive quota"
mod.program          = "fsutil"
mod.args             = "quota query $drive"
mod.req_args         = {"drive"}
mod.maxtime          = 1
table.insert(modules, mod)