diff --git a/plugins/Spoof.py b/plugins/Spoof.py index 4b6d72e..ecf5fbe 100644 --- a/plugins/Spoof.py +++ b/plugins/Spoof.py @@ -120,7 +120,8 @@ class Spoof(Plugin): def finish(self): for protocol in self.protocolInstances: - protocol.stop() + if hasattr(protocol, 'stop'): + protocol.stop() if not self.manualiptables: IpTables.getInstance().Flush()