Class: BetterCap::Parsers::Mpd
- Defined in:
- lib/bettercap/sniffer/parsers/mpd.rb
Overview
Music Player Daemon (MPD) authentication parser.
Instance Method Summary collapse
-
#initialize ⇒ Mpd
constructor
A new instance of Mpd.
- #on_packet(pkt) ⇒ Object
Methods inherited from Base
available, from_cmdline, from_exclusion_list, inherited, load_by_names, load_custom, #match_port?
Constructor Details
#initialize ⇒ Mpd
Returns a new instance of Mpd.
21 22 23 |
# File 'lib/bettercap/sniffer/parsers/mpd.rb', line 21 def initialize @name = 'MPD' end |
Instance Method Details
#on_packet(pkt) ⇒ Object
24 25 26 27 28 29 30 31 32 33 34 35 |
# File 'lib/bettercap/sniffer/parsers/mpd.rb', line 24 def on_packet( pkt ) return unless pkt.tcp_dst == 6600 lines = pkt.to_s.split(/\r?\n/) lines.each do |line| if line =~ /password\s+(.+)$/ pass = $1 StreamLogger.log_raw( pkt, @name, "password=#{pass}" ) end end rescue end |