Class: BetterCap::Context
- Inherits:
-
Object
- Object
- BetterCap::Context
- Defined in:
- lib/bettercap/context.rb
Overview
methods to manipulate the program behaviour.
Constant Summary collapse
- @@instance =
nil
Instance Attribute Summary collapse
-
#discovery ⇒ Object
Instance of BetterCap::Discovery::Thread class.
-
#dnsd ⇒ Object
Instance of BetterCap::Network::Servers::DNSD class.
-
#firewall ⇒ Object
Instance of the current BetterCap::Firewalls class.
-
#gateway ⇒ Object
Network gateway ( as an instance of BetterCap::Network::Target ).
-
#httpd ⇒ Object
Instance of BetterCap::Network::Servers::HTTPD class.
-
#iface ⇒ Object
Local interface ( as an instance of BetterCap::Network::Target ).
-
#memory ⇒ Object
readonly
Instance of BetterCap::Memory.
-
#options ⇒ Object
Instance of BetterCap::Options class.
-
#packets ⇒ Object
readonly
Instance of BetterCap::PacketQueue.
-
#running ⇒ Object
Set to true if the program is running, to false if a shutdown was scheduled by the user which pressed CTRL+C.
-
#spoofer ⇒ Object
A list of BetterCap::Spoofers class instances.
-
#targets ⇒ Object
A list of BetterCap::Target objects which is periodically updated.
-
#timeout ⇒ Object
readonly
Timeout for discovery operations.
Class Method Summary collapse
-
.get ⇒ Object
Return the global instance of the program Context, if the instance was not yet created it will be initialized and returned.
Instance Method Summary collapse
-
#finalize ⇒ Object
Stop every running daemon that was started and reset system state.
-
#find_target(ip, mac) ⇒ Object
Find a target given its
ip
andmac
addresses inside the #targets list, if not found return nil. -
#initialize ⇒ Context
constructor
Initialize the global context object.
-
#start! ⇒ Object
Start everything!.
-
#update! ⇒ Object
Update the Context state parsing network related informations.
Constructor Details
#initialize ⇒ Context
Initialize the global context object.
55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 |
# File 'lib/bettercap/context.rb', line 55 def initialize begin iface = PCAPRUB::Pcap.lookupdev rescue Exception => e iface = nil Logger.exception e end @running = true @timeout = 5 @options = Options.new iface @discovery = Discovery::Thread.new self @firewall = Firewalls::Base.get @memory = Memory.new @iface = nil @gateway = nil @targets = [] @spoofer = nil @httpd = nil @dnsd = nil @proxies = [] @redirections = [] @packets = nil end |
Instance Attribute Details
#discovery ⇒ Object
Instance of BetterCap::Discovery::Thread class.
29 30 31 |
# File 'lib/bettercap/context.rb', line 29 def discovery @discovery end |
#dnsd ⇒ Object
Instance of BetterCap::Network::Servers::DNSD class.
35 36 37 |
# File 'lib/bettercap/context.rb', line 35 def dnsd @dnsd end |
#firewall ⇒ Object
Instance of the current BetterCap::Firewalls class.
21 22 23 |
# File 'lib/bettercap/context.rb', line 21 def firewall @firewall end |
#gateway ⇒ Object
Network gateway ( as an instance of BetterCap::Network::Target ).
25 26 27 |
# File 'lib/bettercap/context.rb', line 25 def gateway @gateway end |
#httpd ⇒ Object
Instance of BetterCap::Network::Servers::HTTPD class.
33 34 35 |
# File 'lib/bettercap/context.rb', line 33 def httpd @httpd end |
#iface ⇒ Object
Local interface ( as an instance of BetterCap::Network::Target ).
23 24 25 |
# File 'lib/bettercap/context.rb', line 23 def iface @iface end |
#memory ⇒ Object (readonly)
Instance of BetterCap::Memory.
44 45 46 |
# File 'lib/bettercap/context.rb', line 44 def memory @memory end |
#options ⇒ Object
Instance of BetterCap::Options class.
19 20 21 |
# File 'lib/bettercap/context.rb', line 19 def @options end |
#packets ⇒ Object (readonly)
Instance of BetterCap::PacketQueue.
42 43 44 |
# File 'lib/bettercap/context.rb', line 42 def packets @packets end |
#running ⇒ Object
Set to true if the program is running, to false if a shutdown was scheduled by the user which pressed CTRL+C
38 39 40 |
# File 'lib/bettercap/context.rb', line 38 def running @running end |
#spoofer ⇒ Object
A list of BetterCap::Spoofers class instances.
31 32 33 |
# File 'lib/bettercap/context.rb', line 31 def spoofer @spoofer end |
#targets ⇒ Object
A list of BetterCap::Target objects which is periodically updated.
27 28 29 |
# File 'lib/bettercap/context.rb', line 27 def targets @targets end |
#timeout ⇒ Object (readonly)
Timeout for discovery operations.
40 41 42 |
# File 'lib/bettercap/context.rb', line 40 def timeout @timeout end |
Class Method Details
.get ⇒ Object
Return the global instance of the program Context, if the instance was not yet created it will be initialized and returned.
50 51 52 |
# File 'lib/bettercap/context.rb', line 50 def self.get @@instance ||= self.new end |
Instance Method Details
#finalize ⇒ Object
Stop every running daemon that was started and reset system state.
153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 |
# File 'lib/bettercap/context.rb', line 153 def finalize @running = false # Logger is silent if @running == false puts "\nShutting down, hang on ...\n" Logger.debug 'Stopping target discovery manager ...' @discovery.stop Logger.debug 'Stopping spoofers ...' @spoofer.each do |spoofer| spoofer.stop end # Spoofer might be sending some last packets to restore the targets, # the packet queue must be stopped here. @packets.stop Logger.debug 'Stopping proxies ...' @proxies.each do |proxy| proxy.stop end Logger.debug 'Disabling port redirections ...' @redirections.each do |r| @firewall.del_port_redirection( r ) end Logger.debug 'Restoring firewall state ...' @firewall.restore @dnsd.stop unless @dnsd.nil? @httpd.stop unless @httpd.nil? end |
#find_target(ip, mac) ⇒ Object
Find a target given its ip
and mac
addresses inside the #targets list, if not found return nil.
112 113 114 115 116 117 118 119 |
# File 'lib/bettercap/context.rb', line 112 def find_target ip, mac @targets.each do |target| if target.equals?(ip,mac) return target end end nil end |
#start! ⇒ Object
Start everything!
122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 |
# File 'lib/bettercap/context.rb', line 122 def start! # Start targets auto discovery. @discovery.start # Start network spoofers if any. @spoofer.each do |spoofer| spoofer.start end # Start proxies and setup port redirection. if @options.proxies.any? if ( @options.proxies.proxy or @options.proxies.proxy_https ) and @options.sniff.enabled?('URL') BetterCap::Logger.warn "WARNING: Both HTTP transparent proxy and URL parser are enabled, you're gonna see duplicated logs." end create_proxies! end enable_port_redirection! create_servers! # Start network sniffer. if @options.sniff.enabled? Sniffer.start self elsif @options.spoof.enabled? and !@options.proxies.any? Logger.warn 'WARNING: Sniffer module was NOT enabled ( -X argument ), this '\ 'will cause the MITM to run but no data to be collected.' end end |
#update! ⇒ Object
Update the Context state parsing network related informations.
81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 |
# File 'lib/bettercap/context.rb', line 81 def update! gw = @options.core.gateway || Network.get_gateway raise BetterCap::Error, "Could not detect the gateway address for interface #{@options.core.iface}, "\ 'make sure you\'ve specified the correct network interface to use and to have the '\ 'correct network configuration, this could also happen if bettercap '\ 'is launched from a virtual environment.' unless Network::Validator.is_ip?(gw) cfg = PacketFu::Utils.ifconfig @options.core.iface raise BetterCap::Error, "Could not determine IPv4 address of '#{@options.core.iface}', make sure this interface "\ 'is active and connected.' if cfg[:ip4_obj].nil? @gateway = Network::Target.new gw @targets = @options.core.targets unless @options.core.targets.nil? @iface = Network::Target.new( cfg[:ip_saddr], cfg[:eth_saddr], cfg[:ip4_obj], cfg[:iface] ) Logger.info "[#{@iface.name.green}] #{@iface.to_s(false)}" Logger.debug '----- NETWORK INFORMATIONS -----' Logger.debug " network = #{@iface.network} ( #{@iface.network.to_range.to_s.split('..').join( ' -> ')} )" Logger.debug " gateway = #{@gateway.ip}" Logger.debug " local_ip = #{@iface.ip}" Logger.debug "--------------------------------\n" @packets = Network::PacketQueue.new( @iface.name, @options.core.packet_throttle, 4 ) # Spoofers need the context network data to be initialized. @spoofer = @options.spoof.parse_spoofers end |