Module tenlib.config

Holds the general configuration.

Classes

class Configuration
Expand source code
class Configuration:
    burp_proxy: str = "http://localhost:8080"
    message_formatter: str = "OtherOldschoolMessageFormatter"
    create_script_command: tuple[str, ...] = ("code", "--")

    def __setattribute__(self):
        raise AttributeError(
            "Configuration attributes cannot be changed programmatically"
        )

Class variables

var burp_proxy : str
var message_formatter : str
var create_script_command : tuple[str, ...]