Пример #1
0
class RawProbeRequestViewer:
    """
    Displays the raw probe requests passing nearby the Wi-Fi interface.
    """
    def __init__(self, config):
        self.output = config.output_file
        self.threshold = config.threshold
        self.alert_macs = config.alert_macs

        if self.output is not None:
            from csv import writer

            outfile = writer(self.output, delimiter=";")

            def write_csv(probe_req):
                outfile.writerow([
                    # probe_req.timestamp,
                    strftime("%a, %d %b %Y %H:%M:%S %Z",
                             localtime(probe_req.timestamp)),
                    probe_req.s_mac,
                    probe_req.s_mac_oui,
                    probe_req.dbm,
                    probe_req.essid
                ])
        else:
            write_csv = lambda *args: None  # noqa: E731

        def display_probe_req(probe_req):
            if (probe_req.s_mac in self.alert_macs):
                print("*** Alert *** ", probe_req)
            else:
                if (self.threshold != -99):
                    if (probe_req.dbm <= self.threshold):
                        print("--- Close --- ", probe_req)
                else:
                    print(probe_req)

        config.display_func = display_probe_req
        config.storage_func = write_csv

        self.sniffer = ProbeRequestSniffer(config)

    def start(self):
        """
        Starts the probe request sniffer.
        """

        self.sniffer.start()

    def stop(self):
        """
        Stops the probe request sniffer.
        """

        self.sniffer.stop()

        if self.output is not None:
            self.output.close()
Пример #2
0
    def __init__(self, config):
        self.config = config

        self.stations = dict()
        self.loop = None

        self.config.display_func = self.new_probe_req
        self.sniffer = ProbeRequestSniffer(config)

        self.view = self.setup_view()
Пример #3
0
    def __init__(self, interface, **kwargs):
        self.interface = interface
        self.stations = dict()

        self.sniffer = ProbeRequestSniffer(
            self.interface,
            display_func=self.new_probe_req,
            **kwargs
        )

        self.view = self.setup_view()
    def test_stop_before_start(self):
        """
        Creates a 'ProbeRequestSniffer' object and stops the sniffer before
        starting it.
        """

        # pylint: disable=no-self-use

        config = Config()
        sniffer = ProbeRequestSniffer(config)
        sniffer.stop()
    def test_create_sniffer(self):
        """
        Creates a 'ProbeRequestSniffer' object with the correct parameter.
        """

        # pylint: disable=no-self-use

        config = Config()
        sniffer = ProbeRequestSniffer(config)  # noqa: F841
    def test_bad_parameter(self):
        """
        Initialises a 'ProbeRequestSniffer' object with a bad parameter.
        """

        # pylint: disable=no-value-for-parameter

        with self.assertRaises(AttributeError):
            sniffer = ProbeRequestSniffer("test")  # noqa: F841
    def test_without_parameters(self):
        """
        Initialises a 'ProbeRequestSniffer' object without parameters.
        """

        # pylint: disable=no-value-for-parameter

        with self.assertRaises(TypeError):
            sniffer = ProbeRequestSniffer()  # noqa: F841
Пример #8
0
class RawProbeRequestViewer:
    """
    Displays the raw probe requests passing nearby the Wi-Fi interface.
    """
    def __init__(self, config):
        self.output = config.output_file

        if self.output is not None:
            from csv import writer

            outfile = writer(self.output, delimiter=";")

            def write_csv(probe_req):
                outfile.writerow([
                    probe_req.timestamp, probe_req.s_mac, probe_req.s_mac_oui,
                    probe_req.essid
                ])
        else:
            write_csv = lambda *args: None  # noqa: E731

        def display_probe_req(probe_req):
            print(probe_req)

        config.display_func = display_probe_req
        config.storage_func = write_csv

        self.sniffer = ProbeRequestSniffer(config)

    def start(self):
        """
        Starts the probe request sniffer.
        """

        self.sniffer.start()

    def stop(self):
        """
        Stops the probe request sniffer.
        """

        self.sniffer.stop()

        if self.output is not None:
            self.output.close()
Пример #9
0
    def __init__(self, interface, **kwargs):
        self.output = kwargs.get("output", None)

        if self.output is not None:
            from csv import writer

            outfile = writer(self.output, delimiter=";")

            def write_csv(probe_req):
                outfile.writerow([
                    probe_req.timestamp, probe_req.s_mac, probe_req.s_mac_oui,
                    probe_req.essid
                ])

            kwargs["storage_func"] = write_csv

        def display_probe_req(probe_req):
            print(probe_req)

        kwargs["display_func"] = display_probe_req

        self.sniffer = ProbeRequestSniffer(interface, **kwargs)
Пример #10
0
    def __init__(self, config):
        self.output = config.output_file

        if self.output is not None:
            from csv import writer

            outfile = writer(self.output, delimiter=";")

            def write_csv(probe_req):
                outfile.writerow([
                    probe_req.timestamp, probe_req.s_mac, probe_req.s_mac_oui,
                    probe_req.essid
                ])
        else:
            write_csv = lambda *args: None  # noqa: E731

        def display_probe_req(probe_req):
            print(probe_req)

        config.display_func = display_probe_req
        config.storage_func = write_csv

        self.sniffer = ProbeRequestSniffer(config)
Пример #11
0
    def __init__(self, config):
        self.output = config.output_file
        self.threshold = config.threshold
        self.alert_macs = config.alert_macs

        if self.output is not None:
            from csv import writer

            outfile = writer(self.output, delimiter=";")

            def write_csv(probe_req):
                outfile.writerow([
                    # probe_req.timestamp,
                    strftime("%a, %d %b %Y %H:%M:%S %Z",
                             localtime(probe_req.timestamp)),
                    probe_req.s_mac,
                    probe_req.s_mac_oui,
                    probe_req.dbm,
                    probe_req.essid
                ])
        else:
            write_csv = lambda *args: None  # noqa: E731

        def display_probe_req(probe_req):
            if (probe_req.s_mac in self.alert_macs):
                print("*** Alert *** ", probe_req)
            else:
                if (self.threshold != -99):
                    if (probe_req.dbm <= self.threshold):
                        print("--- Close --- ", probe_req)
                else:
                    print(probe_req)

        config.display_func = display_probe_req
        config.storage_func = write_csv

        self.sniffer = ProbeRequestSniffer(config)
Пример #12
0
class RawProbeRequestViewer:
    """
    Displays the raw probe requests passing near the Wi-Fi interface.
    """
    def __init__(self, interface, **kwargs):
        self.output = kwargs.get("output", None)

        if self.output is not None:
            from csv import writer

            outfile = writer(self.output, delimiter=";")

            def write_csv(probe_req):
                outfile.writerow([
                    probe_req.timestamp, probe_req.s_mac, probe_req.s_mac_oui,
                    probe_req.essid
                ])
        else:
            write_csv = lambda p: None

        def display_probe_req(probe_req):
            print(probe_req)

        self.sniffer = ProbeRequestSniffer(interface,
                                           display_func=display_probe_req,
                                           storage_func=write_csv,
                                           **kwargs)

    def start(self):
        self.sniffer.start()

    def stop(self):
        self.sniffer.stop()

        if self.output is not None:
            self.output.close()
Пример #13
0
 def test_stop_before_start(self):
     sniffer = ProbeRequestSniffer("wlan0")
     sniffer.stop()
Пример #14
0
 def test_create_sniffer(self):
     sniffer = ProbeRequestSniffer("wlan0")
Пример #15
0
 def test_bad_storage_function(self):
     with self.assertRaises(TypeError):
         sniffer = ProbeRequestSniffer("wlan0", storage_func="Test")
Пример #16
0
 def test_without_parameters(self):
     with self.assertRaises(TypeError):
         sniffer = ProbeRequestSniffer()
Пример #17
0
class PNLViewer:
    """
    TUI used to display the PNL of the nearby devices sending
    probe requests.
    """

    palette = [
        ("header_running", "white", "dark green", "bold"),
        ("header_stopped", "white", "dark red", "bold"),
        ("footer", "dark cyan", "dark blue", "bold"),
        ("key", "light cyan", "dark blue", "underline"),
        ("selected", "black", "light green"),
    ]

    footer_text = ("footer", [
        "    ",
        ("key", "P"), " play/pause  ",
        ("key", "Q"), " quit",
    ])

    def __init__(self, interface, **kwargs):
        self.interface = interface
        self.stations = dict()

        self.sniffer = ProbeRequestSniffer(
            self.interface,
            display_func=self.new_probe_req,
            **kwargs
        )

        self.view = self.setup_view()

    def setup_view(self):
        """
        Returns the root widget.
        """

        self.interface_text = urwid.Text(self.interface)
        self.sniffer_state_text = urwid.Text("Stopped")

        self.header = urwid.AttrWrap(urwid.Columns([
            urwid.Text("Sniffer's state: "),
            self.sniffer_state_text,
            urwid.Text(" Interface: "),
            self.interface_text,
        ]), "header_stopped")
        footer = urwid.AttrWrap(urwid.Text(self.footer_text), "footer")
        vline = urwid.AttrWrap(urwid.SolidFill(u"\u2502"), "line")

        station_panel = urwid.Padding(self.setup_menu("List of Stations", self.stations.keys()), align="center", width=("relative", 90))
        pnl_panel = urwid.Padding(urwid.ListBox(urwid.SimpleListWalker([])), align="center", width=("relative", 90))

        self.station_list = station_panel.base_widget
        self.pnl_list = pnl_panel.base_widget

        body = urwid.Columns([
            station_panel,
            ("fixed", 1, vline),
            pnl_panel,
        ], focus_column=0)

        top = urwid.Frame(
            header=self.header,
            body=body,
            footer=footer,
            focus_part = "body"
        )

        return top

    def setup_menu(self, title, choices):
        """
        Creates and returns a dynamic ListBox object containing
        a title and the choices given as parameters.
        """

        body = [urwid.Text(title), urwid.Divider()]

        for c in choices:
            button = urwid.Button(c)
            urwid.connect_signal(button, "click", self.station_chosen, c)
            body.append(urwid.AttrMap(button, None, focus_map="selected"))

        return urwid.ListBox(urwid.SimpleFocusListWalker(body))

    def new_probe_req(self, probe_req):
        """
        Callback method called on each new probe request.
        """

        if probe_req.s_mac not in self.stations:
            self.stations[probe_req.s_mac] = []
            self.add_station(probe_req.s_mac)

        if not any(essid.text == probe_req.essid for essid in self.stations[probe_req.s_mac]):
            self.stations[probe_req.s_mac].append(urwid.Text(probe_req.essid))

        if len(self.stations.keys()) == 1:
            self.station_list.set_focus(2);
            self.station_chosen(None, probe_req.s_mac)

        self.loop.draw_screen()

    def add_station(self, name):
        """
        Adds a new station to the stations list.
        """

        button = urwid.Button(name)
        urwid.connect_signal(button, "click", self.station_chosen, name)
        self.station_list.body.append(urwid.AttrMap(button, None, focus_map="selected"))

    def station_chosen(self, button, choice):
        """
        Callback method called when a station is selected
        in the stations list.
        """

        self.pnl_list.body = self.stations[choice]

    def start_sniffer(self):
        """
        Starts the sniffer.
        """

        self.sniffer.start()
        self.sniffer_state_text.set_text("Running")
        self.header.set_attr("header_running");

    def stop_sniffer(self):
        """
        Stops the sniffer.
        """

        self.sniffer.stop()
        self.sniffer_state_text.set_text("Stopped")
        self.header.set_attr("header_stopped");

    def toggle_sniffer_state(self):
        """
        Toggles the sniffer's state.
        """

        if self.sniffer.is_running():
            self.stop_sniffer()
        else:
            self.start_sniffer()

    def main(self):
        """
        Starts the TUI.
        """

        self.loop = urwid.MainLoop(self.view, self.palette, unhandled_input=self.unhandled_keypress)
        self.loop.run()

    def exit_program(self):
        """
        Stops and exits the TUI.
        """

        self.sniffer.stop()
        raise urwid.ExitMainLoop()

    def unhandled_keypress(self, key):
        """
        Contains handlers for each keypress that is not handled
        by the widgets being displayed.
        """

        if key in ("q", "Q"):
            self.exit_program()
        elif key in ("p", "P"):
            self.toggle_sniffer_state()
        else:
            return

        return True