Lucene search
K

Pcap Replay Utility

🗓️ 22 Apr 2011 18:25:19Reported by amaloteaux <[email protected]>Type 
metasploit
 metasploit
🔗 www.rapid7.com👁 13 Views

Pcap Replay Utility to Send and Replay Pcap Capture Fil

Code
##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##

class MetasploitModule < Msf::Auxiliary
  include Msf::Exploit::Remote::Capture

  def initialize
    super(
      'Name'        => 'Pcap Replay Utility',
      'Description' => %q{
        Replay a pcap capture file
      },
      'Author'      => 'amaloteaux',
      'License'     => MSF_LICENSE
    )

    register_options([
      OptPath.new('FILENAME', [true, "The local pcap file to process"]),
      OptString.new('FILE_FILTER', [false, "The filter string to apply on the file"]),
      OptInt.new('LOOP', [true, "The number of times to loop through the file",1]),
      OptInt.new('DELAY', [true, "the delay in millisecond between each loop",0]),
      OptInt.new('PKT_DELAY', [true, "the delay in millisecond between each packet",0]),
    ])

    deregister_options('SNAPLEN','FILTER','PCAPFILE','RHOST','TIMEOUT','SECRET','GATEWAY_PROBE_HOST','GATEWAY_PROBE_PORT')
  end

  def run
    check_pcaprub_loaded # Check first
    pkt_delay = datastore['PKT_DELAY']
    delay = datastore['DELAY']
    loop = datastore['LOOP']
    infinity = true if loop <= 0
    file_filter = datastore['FILE_FILTER']
    filename = datastore['FILENAME']
    verbose = datastore['VERBOSE']
    count = 0
    unless File.exist? filename and File.file? filename
      print_error("Pcap File does not exist")
      return
    end
    open_pcap
    print_status("Sending file...") unless verbose
    while (loop > 0 or infinity) do
      vprint_status("Sending file (loop: #{count = count + 1})")
      inject_pcap(filename, file_filter, pkt_delay )
      loop -= 1 unless infinity
      Kernel.select(nil, nil, nil, (delay * 1.0)/1000) if loop > 0 or infinity
    end
    close_pcap
  end
end

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation

24 Jul 2017 13:26Current
7High risk
Vulners AI Score7
13