mirror of
https://github.com/ziirish/burp-ui.git
synced 2026-05-21 06:45:24 -06:00
22 lines
820 B
Python
22 lines
820 B
Python
# -*- coding: utf8 -*-
|
|
|
|
|
|
class BUIparser(object):
|
|
def __init__(self, app=None, conf=None):
|
|
self.app = app
|
|
self.conf = conf
|
|
|
|
def read_server_conf(self):
|
|
raise NotImplementedError("Sorry, the current Parser does not implement this method!")
|
|
|
|
def store_conf(self, data):
|
|
raise NotImplementedError("Sorry, the current Parser does not implement this method!")
|
|
|
|
def get_priv_attr(self, key):
|
|
raise NotImplementedError("Sorry, the current Parser does not implement this method!")
|
|
|
|
def path_expander(self, pattern=None):
|
|
raise NotImplementedError("Sorry, the current Parser does not implement this method!")
|
|
|
|
def read_client_conf(self, client=None, conf=None):
|
|
raise NotImplementedError("Sorry, the current Parser does not implement this method!")
|