Lucene search
K

DECT Call Scanner

🗓️ 12 Sep 2009 15:40:33Reported by DK <[email protected]>Type 
metasploit
 metasploit
🔗 www.rapid7.com👁 9 Views

This module scans for active DECT calls, opens interface, changes to call scan mode, and scans for active DECT calls

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

class MetasploitModule < Msf::Auxiliary
  include Msf::Exploit::DECT_COA

  def initialize
    super(
      'Name'           => 'DECT Call Scanner',
      'Description'    => 'This module scans for active DECT calls',
      'Author'         => [ 'DK <privilegedmode[at]gmail.com>' ],
      'License'        => MSF_LICENSE
    )
  end

  def print_results
    print_line("Time\t\t\t\tRFPI\t\tChannel")
    @calls.each do |rfpi, data|
      print_line("#{data['time']}\t#{data['rfpi']}\t#{data['channel']}")
    end
  end


=begin
  def record_call(data)
    print_status("Synchronizing..")
    pp_scan_mode(data['rfpi_raw'])
    while(true)
      data = poll_coa()
      puts data
    end
  end
=end

  def run
    @calls = {}

    print_status("Opening interface: #{datastore['INTERFACE']}")
    print_status("Using band: #{datastore['BAND']}")

    open_coa

    begin

      print_status("Changing to call scan mode.")
      call_scan_mode
      print_status("Scanning...")

      while (true)
        data = poll_coa()
        if (data)
          parsed_data = parse_call(data)
          parsed_data['time'] = Time.now
          print_good("Found active call on: #{parsed_data['rfpi']}")
          @calls[parsed_data['time']] = parsed_data
        end

        next_channel

        vprint_status("Switching to channel: #{channel}")
        select(nil,nil,nil,1)
      end
    ensure
      print_status("Closing interface")
      stop_coa()
      close_coa()
    end

    print_results
  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
7.4High risk
Vulners AI Score7.4
9