mirror of
https://github.com/ziirish/burp-ui.git
synced 2026-05-21 06:45:24 -06:00
fix tests
This commit is contained in:
parent
5b5f5960a1
commit
d8fd5730dd
4 changed files with 29 additions and 15 deletions
|
|
@ -188,6 +188,20 @@ class BUIparser(object):
|
|||
"Sorry, the current Parser does not implement this method!"
|
||||
) # pragma: no cover
|
||||
|
||||
@abstractmethod
|
||||
def is_client_revoked(self, client=None):
|
||||
""":func:`burpui.misc.parser.interface.BUIparser.is_client_revoked` is
|
||||
used to check if a given client has it's certificate revoked or not.
|
||||
|
||||
:param client: The name of the client to check
|
||||
:type client: str
|
||||
|
||||
:returns: True or False
|
||||
"""
|
||||
raise NotImplementedError(
|
||||
"Sorry, the current Parser does not implement this method!"
|
||||
) # pragma: no cover
|
||||
|
||||
@abstractmethod
|
||||
def remove_client(self, client=None, delcert=False, revoke=False):
|
||||
""":func:`burpui.misc.parser.interface.BUIparser.remove_client` is used
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue