Sha256: cb2ffed65cc581f6adf1a41c05c91b3bacf3da474e7056183a7e472de48f74b1
Contents?: true
Size: 2 KB
Versions: 1
Compression:
Stored size: 2 KB
Contents
# #-- # Ronin - A ruby development platform designed for information security # and data exploration tasks. # # Copyright (c) 2006-2008 Hal Brodigan (postmodern.mod3 at gmail.com) # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA #++ # require 'ronin/sessions/session' require 'ronin/network/pop3' module Ronin module Sessions module POP3 include Session POP3_SESSION = proc do parameter :pop3_host, :description => 'POP3 host' parameter :pop3_port, :description => 'POP3 port' parameter :pop3_user, :description => 'POP3 user' parameter :pop3_password, :description => 'POP3 password' end def self.included(base) Session.setup_class(base,&POP3_SESSION) end def self.extended(obj) Session.setup_object(obj,&POP3_SESSION) end protected def pop3_connect(options={},&block) unless @pop3_host raise(ParamNotFound,"Missing parameter #{describe_param(:pop3_host).dump}",caller) end options[:port] ||= @pop3_port options[:user] ||= @pop3_user options[:password] ||= @pop3_password return ::Net.pop3_connect(@pop3_host,options,&block) end def pop3_session(options={},&block) pop3_connect(options) do |sess| block.call(sess) if block sess.finish end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ronin-0.0.9 | lib/ronin/sessions/pop3.rb |