#!/usr/bin/env python # Copyright 2014 Roland Knall # # Wireshark - Network traffic analyzer # By Gerald Combs # Copyright 1998 Gerald Combs # # 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 Street, Fifth Floor, Boston, MA 02110-1301 USA. """ This is a generic example, which produces pcap packages every n seconds, and is configurable via extcap options. @note { To use this script on Windows, please generate an extcap_example.bat inside the extcap folder, with the following content: ------- @echo off %* ------- Windows is not able to execute Python scripts directly, which also goes for all other script-based formates beside VBScript } """ from __future__ import print_function import os import sys import signal import re import argparse import time import struct import binascii from threading import Thread ERROR_USAGE = 0 ERROR_ARG = 1 ERROR_INTERFACE = 2 ERROR_FIFO = 3 ERROR_DELAY = 4 globalinterface = 0 """ This code has been taken from http://stackoverflow.com/questions/5943249/python-argparse-and-controlling-overriding-the-exit-status-code - originally developed by Rob Cowie http://stackoverflow.com/users/46690/rob-cowie """ class ArgumentParser(argparse.ArgumentParser): def _get_action_from_name(self, name): """Given a name, get the Action instance registered with this parser. If only it were made available in the ArgumentError object. It is passed as it's first arg... """ container = self._actions if name is None: return None for action in container: if '/'.join(action.option_strings) == name: return action elif action.metavar == name: return action elif action.dest == name: return action def error(self, message): exc = sys.exc_info()[1] if exc: exc.argument = self._get_action_from_name(exc.argument_name) raise exc super(ArgumentParser, self).error(message) #### EXTCAP FUNCTIONALITY """@brief Extcap configuration This method prints the extcap configuration, which will be picked up by the interface in Wireshark to present a interface specific configuration for this extcap plugin """ def extcap_config(interface): args = [] values = [] args.append ( (0, '--delay', 'Time delay', 'Time delay between packages', 'integer', '{range=1,15}{default=5}') ) args.append ( (1, '--message', 'Message', 'Package message content', 'string', '{required=true}{placeholder=Please enter a message here ...}') ) args.append ( (2, '--verify', 'Verify', 'Verify package content', 'boolflag', '{default=yes}') ) args.append ( (3, '--remote', 'Remote Channel', 'Remote Channel Selector', 'selector', '')) args.append ( (4, '--fake_ip', 'Fake IP Address', 'Use this ip address as sender', 'string', '{save=false}{validation=\\b(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\b}')) args.append ( (5, '--ltest', 'Long Test', 'Long Test Value', 'long', '{default=123123123123123123}')) args.append ( (6, '--d1test', 'Double 1 Test', 'Long Test Value', 'double', '{default=123.456}')) args.append ( (7, '--d2test', 'Double 2 Test', 'Long Test Value', 'double', '{default= 123,456}')) args.append ( (8, '--password', 'Password', 'Package message password', 'password', '') ) args.append ( (9, '--ts', 'Start Time', 'Capture start time', 'timestamp', '') ) args.append ( (10, '--logfile', 'Log File Test', 'The Log File Test', 'fileselect', '') ) args.append ( (11, '--radio', 'Radio Test', 'Radio Test Value', 'radio', '') ) args.append ( (12, '--multi', 'MultiCheck Test', 'MultiCheck Test Value', 'multicheck', '') ) values.append ( (3, "if1", "Remote1", "true" ) ) values.append ( (3, "if2", "Remote2", "false" ) ) values.append ( (11, "r1", "Radio1", "false" ) ) values.append ( (11, "r2", "Radio2", "true" ) ) values.append ( (12, "m1", "MultiCheck1", "false" ) ) values.append ( (12, "m2", "MultiCheck2", "false" ) ) for arg in args: print ("arg {number=%d}{call=%s}{display=%s}{tooltip=%s}{type=%s}%s" % arg) for value in values: print ("value {arg=%d}{value=%s}{display=%s}{default=%s}" % value) def extcap_interfaces(): print ("extcap {version=1.0}{help=http://www.wireshark.org}") print ("interface {value=example1}{display=Example interface usage for extcap}") def extcap_dlts(interface): if ( interface == '1' ): print ("dlt {number=147}{name=USER0}{display=Demo Implementation for Extcap}") """ ### FAKE DATA GENERATOR Extcap capture routine This routine simulates a capture by any kind of user defined device. The parameters are user specified and must be handled by the extcap. The data captured inside this routine is fake, so change this routine to present your own input data, or call your own capture program via Popen for example. See for more details. """ def unsigned(n): return int(n) & 0xFFFFFFFF def pcap_fake_header(): header = bytearray() header += struct.pack('> 16) csum = csum & 0xFFFF ^ 0xFFFF return csum def pcap_fake_package ( message, fake_ip ): pcap = bytearray() #length = 14 bytes [ eth ] + 20 bytes [ ip ] + messagelength caplength = len(message) + 14 + 20 timestamp = int(time.time()) pcap += struct.pack('H', unsigned(len(message)+20) ) # length of data + payload pcap += struct.pack('L', ipadr ) # Source IP pcap += struct.pack('>L', int ( '7F000001', 16 )) # Dest IP pcap += message return pcap def extcap_capture(interface, fifo, delay, verify, message, remote, fake_ip): tdelay = delay if delay != 0 else 5 if not os.path.exists(fifo): print ( "Fifo does not exist, exiting!", file=sys.stderr ) sys.exit(1) with open(fifo, 'wb', 0 ) as fh: fh.write (pcap_fake_header()) while True: out = ("%s|%04X%s|%s" % ( remote.strip(), len(message), message, verify )).encode("utf8") fh.write (pcap_fake_package(out, fake_ip)) time.sleep(tdelay) def extcap_close_fifo(fifo): if not os.path.exists(fifo): print ( "Fifo does not exist!", file=sys.stderr ) return # This is apparently needed to workaround an issue on Windows/macOS # where the message cannot be read. (really?) fh = open(fifo, 'wb', 0 ) fh.close() #### def usage(): print ( "Usage: %s <--extcap-interfaces | --extcap-dlts | --extcap-interface | --extcap-config | --capture | --extcap-capture-filter | --fifo>" % sys.argv[0] ) if __name__ == '__main__': interface = "" # Capture options delay = 0 message = "" fake_ip = "" ts = 0 parser = ArgumentParser( prog="Extcap Example", description="Extcap example program for python" ) # Extcap Arguments parser.add_argument("--capture", help="Start the capture routine", action="store_true" ) parser.add_argument("--extcap-interfaces", help="Provide a list of interfaces to capture from", action="store_true") parser.add_argument("--extcap-interface", help="Provide the interface to capture from") parser.add_argument("--extcap-dlts", help="Provide a list of dlts for the given interface", action="store_true") parser.add_argument("--extcap-config", help="Provide a list of configurations for the given interface", action="store_true") parser.add_argument("--extcap-capture-filter", help="Used together with capture to provide a capture filter") parser.add_argument("--fifo", help="Use together with capture to provide the fifo to dump data to") # Interface Arguments parser.add_argument("--verify", help="Demonstrates a verification bool flag", action="store_true" ) parser.add_argument("--delay", help="Demonstrates an integer variable", type=int, default=0, choices=[0, 1, 2, 3, 4, 5, 6] ) parser.add_argument("--remote", help="Demonstrates a selector choice", default="if1", choices=["if1", "if2"] ) parser.add_argument("--message", help="Demonstrates string variable", nargs='?', default="" ) parser.add_argument("--fake_ip", help="Add a fake sender IP adress", nargs='?', default="127.0.0.1" ) parser.add_argument("--ts", help="Capture start time", action="store_true" ) try: args, unknown = parser.parse_known_args() except argparse.ArgumentError as exc: print( "%s: %s" % ( exc.argument.dest, exc.message ), file=sys.stderr) fifo_found = 0 fifo = "" for arg in sys.argv: if (arg == "--fifo" or arg == "--extcap-fifo") : fifo_found = 1 elif ( fifo_found == 1 ): fifo = arg break extcap_close_fifo(fifo) sys.exit(ERROR_ARG) if ( len(sys.argv) <= 1 ): parser.exit("No arguments given!") if ( args.extcap_interfaces == False and args.extcap_interface == None ): parser.exit("An interface must be provided or the selection must be displayed") if ( args.extcap_interfaces == True or args.extcap_interface == None ): extcap_interfaces() sys.exit(0) if ( len(unknown) > 1 ): print("Extcap Example %d unknown arguments given" % len(unknown) ) m = re.match ( 'example(\d+)', args.extcap_interface ) if not m: sys.exit(ERROR_INTERFACE) interface = m.group(1) message = args.message if ( args.message == None or len(args.message) == 0 ): message = "Extcap Test" fake_ip = args.fake_ip if ( args.fake_ip == None or len(args.fake_ip) < 7 or len(args.fake_ip.split('.')) != 4 ): fake_ip = "127.0.0.1" ts = args.ts if args.extcap_config: extcap_config(interface) elif args.extcap_dlts: extcap_dlts(interface) elif args.capture: if args.fifo is None: sys.exit(ERROR_FIFO) # The following code demonstrates error management with extcap if args.delay > 5: print("Value for delay [%d] too high" % args.delay, file=sys.stderr) extcap_close_fifo(args.fifo) sys.exit(ERROR_DELAY) try: extcap_capture(interface, args.fifo, args.delay, args.verify, message, args.remote, fake_ip) except KeyboardInterrupt: pass else: usage() sys.exit(ERROR_USAGE)