Land #10816, Add a `bg` alias for `background` command
parent
7d04ebcf5f
commit
a4d2bf30c1
|
@ -50,6 +50,7 @@ class Console::CommandDispatcher::Core
|
||||||
c = {
|
c = {
|
||||||
'?' => 'Help menu',
|
'?' => 'Help menu',
|
||||||
'background' => 'Backgrounds the current session',
|
'background' => 'Backgrounds the current session',
|
||||||
|
'bg' => 'Alias for background',
|
||||||
'close' => 'Closes a channel',
|
'close' => 'Closes a channel',
|
||||||
'channel' => 'Displays information or control active channels',
|
'channel' => 'Displays information or control active channels',
|
||||||
'exit' => 'Terminate the meterpreter session',
|
'exit' => 'Terminate the meterpreter session',
|
||||||
|
@ -330,6 +331,9 @@ class Console::CommandDispatcher::Core
|
||||||
client.interacting = false
|
client.interacting = false
|
||||||
end
|
end
|
||||||
|
|
||||||
|
alias cmd_bg cmd_background
|
||||||
|
alias cmd_bg_help cmd_background_help
|
||||||
|
|
||||||
#
|
#
|
||||||
# Displays information about active channels
|
# Displays information about active channels
|
||||||
#
|
#
|
||||||
|
|
Loading…
Reference in New Issue