-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmethods.go
More file actions
103 lines (101 loc) · 6.76 KB
/
methods.go
File metadata and controls
103 lines (101 loc) · 6.76 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
package gomsf
type MsfRpcMethod string
const (
AuthLogin MsfRpcMethod = "auth.login"
AuthLogout MsfRpcMethod = "auth.logout"
AuthTokenList MsfRpcMethod = "auth.token_list"
AuthTokenAdd MsfRpcMethod = "auth.token_add"
AuthTokenGenerate MsfRpcMethod = "auth.token_generate"
AuthTokenRemove MsfRpcMethod = "auth.token_remove"
ConsoleCreate MsfRpcMethod = "console.create"
ConsoleList MsfRpcMethod = "console.list"
ConsoleDestroy MsfRpcMethod = "console.destroy"
ConsoleRead MsfRpcMethod = "console.read"
ConsoleWrite MsfRpcMethod = "console.write"
ConsoleTabs MsfRpcMethod = "console.tabs"
ConsoleSessionKill MsfRpcMethod = "console.session_kill"
ConsoleSessionDetach MsfRpcMethod = "console.session_detach"
CoreVersion MsfRpcMethod = "core.version"
CoreStop MsfRpcMethod = "core.stop"
CoreSetG MsfRpcMethod = "core.setg"
CoreUnsetG MsfRpcMethod = "core.unsetg"
CoreSave MsfRpcMethod = "core.save"
CoreReloadModules MsfRpcMethod = "core.reload_modules"
CoreModuleStats MsfRpcMethod = "core.module_stats"
CoreAddModulePath MsfRpcMethod = "core.add_module_path"
CoreThreadList MsfRpcMethod = "core.thread_list"
CoreThreadKill MsfRpcMethod = "core.thread_kill"
DbHosts MsfRpcMethod = "db.hosts"
DbServices MsfRpcMethod = "db.services"
DbVulns MsfRpcMethod = "db.vulns"
DbWorkspaces MsfRpcMethod = "db.workspaces"
DbCurrentWorkspace MsfRpcMethod = "db.current_workspace"
DbGetWorkspace MsfRpcMethod = "db.get_workspace"
DbSetWorkspace MsfRpcMethod = "db.set_workspace"
DbDelWorkspace MsfRpcMethod = "db.del_workspace"
DbAddWorkspace MsfRpcMethod = "db.add_workspace"
DbGetHost MsfRpcMethod = "db.get_host"
DbReportHost MsfRpcMethod = "db.report_host"
DbReportService MsfRpcMethod = "db.report_service"
DbGetService MsfRpcMethod = "db.get_service"
DbGetNote MsfRpcMethod = "db.get_note"
DbGetClient MsfRpcMethod = "db.get_client"
DbReportClient MsfRpcMethod = "db.report_client"
DbReportNote MsfRpcMethod = "db.report_note"
DbNotes MsfRpcMethod = "db.notes"
DbGetRef MsfRpcMethod = "db.get_ref"
DbDelVuln MsfRpcMethod = "db.del_vuln"
DbDelNote MsfRpcMethod = "db.del_note"
DbDelService MsfRpcMethod = "db.del_service"
DbDelHost MsfRpcMethod = "db.del_host"
DbReportVuln MsfRpcMethod = "db.report_vuln"
DbEvents MsfRpcMethod = "db.events"
DbReportEvent MsfRpcMethod = "db.report_event"
DbReportLoot MsfRpcMethod = "db.report_loot"
DbLoots MsfRpcMethod = "db.loots"
DbReportCred MsfRpcMethod = "db.report_cred"
DbCreds MsfRpcMethod = "db.creds"
DbImportData MsfRpcMethod = "db.import_data"
DbGetVuln MsfRpcMethod = "db.get_vuln"
DbClients MsfRpcMethod = "db.clients"
DbDelClient MsfRpcMethod = "db.del_client"
DbDriver MsfRpcMethod = "db.driver"
DbConnect MsfRpcMethod = "db.connect"
DbStatus MsfRpcMethod = "db.status"
DbDisconnect MsfRpcMethod = "db.disconnect"
JobList MsfRpcMethod = "job.list"
JobStop MsfRpcMethod = "job.stop"
JobInfo MsfRpcMethod = "job.info"
ModuleExploits MsfRpcMethod = "module.exploits"
ModuleEvasion MsfRpcMethod = "module.evasion"
ModuleAuxiliary MsfRpcMethod = "module.auxiliary"
ModulePayloads MsfRpcMethod = "module.payloads"
ModuleEncoders MsfRpcMethod = "module.encoders"
ModuleNops MsfRpcMethod = "module.nops"
ModulePost MsfRpcMethod = "module.post"
ModuleOptions MsfRpcMethod = "module.options"
ModuleExecute MsfRpcMethod = "module.execute"
ModuleEncodeFormats MsfRpcMethod = "module.encode_formats"
ModuleEncode MsfRpcMethod = "module.encode"
PluginLoad MsfRpcMethod = "plugin.load"
PluginUnload MsfRpcMethod = "plugin.unload"
PluginLoaded MsfRpcMethod = "plugin.loaded"
SessionList MsfRpcMethod = "session.list"
SessionStop MsfRpcMethod = "session.stop"
SessionShellRead MsfRpcMethod = "session.shell_read"
SessionShellWrite MsfRpcMethod = "session.shell_write"
SessionShellUpgrade MsfRpcMethod = "session.shell_upgrade"
SessionMeterpreterRead MsfRpcMethod = "session.meterpreter_read"
SessionRingRead MsfRpcMethod = "session.ring_read"
SessionRingPut MsfRpcMethod = "session.ring_put"
SessionRingLast MsfRpcMethod = "session.ring_last"
SessionRingClear MsfRpcMethod = "session.ring_clear"
SessionMeterpreterWrite MsfRpcMethod = "session.meterpreter_write"
SessionMeterpreterSessionDetach MsfRpcMethod = "session.meterpreter_session_detach"
SessionMeterpreterSessionKill MsfRpcMethod = "session.meterpreter_session_kill"
SessionMeterpreterTabs MsfRpcMethod = "session.meterpreter_tabs"
SessionMeterpreterRunSingle MsfRpcMethod = "session.meterpreter_run_single"
SessionMeterpreterScript MsfRpcMethod = "session.meterpreter_script"
SessionMeterpreterDirectorySeparator MsfRpcMethod = "session.meterpreter_directory_separator"
SessionCompatibleModules MsfRpcMethod = "session.compatible_modules"
)