Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
rapid7
GitHub Repository: rapid7/metasploit-framework
Path: blob/master/lib/rex/ui/text/pseudo_shell.rb
21558 views
1
2
module Rex
3
module Ui
4
module Text
5
###
6
#
7
# Pseudo-shell interface that simply includes the Shell mixin.
8
#
9
###
10
class PseudoShell
11
include Shell
12
end
13
end
14
end
15
end
16
17