SYMBOL INDEX (74 symbols across 7 files) FILE: shellfire/__init__.py function draw_prompt (line 55) | def draw_prompt(): function sigint_handler (line 59) | def sigint_handler(signum, frame): function cli (line 67) | def cli(): FILE: shellfire/commands.py function payload_aspnet (line 21) | def payload_aspnet(): function payload_php (line 27) | def payload_php(): function payload_fuzzfile (line 33) | def payload_fuzzfile(): function show_help (line 75) | def show_help(cmd=None): function http_server (line 89) | def http_server(port): function rev_shell (line 119) | def rev_shell(addr, port): function parse_to_dict (line 156) | def parse_to_dict(data): function cmd_auth (line 180) | def cmd_auth(cmd): function cmd_config (line 190) | def cmd_config(cmd): function cmd_cookies (line 221) | def cmd_cookies(cmd): function cmd_encode (line 236) | def cmd_encode(cmd): function cmd_exit (line 261) | def cmd_exit(cmd): function cmd_files (line 272) | def cmd_files(cmd): function cmd_find (line 298) | def cmd_find(cmd): function cmd_fuzz (line 314) | def cmd_fuzz(cmd): function cmd_headers (line 332) | def cmd_headers(cmd): function cmd_help (line 365) | def cmd_help(cmd): function cmd_history (line 373) | def cmd_history(cmd): function cmd_http (line 394) | def cmd_http(cmd): function cmd_marker (line 435) | def cmd_marker(cmd): function cmd_method (line 467) | def cmd_method(cmd): function cmd_phpinfo (line 484) | def cmd_phpinfo(cmd): function cmd_plugins (line 491) | def cmd_plugins(cmd): function cmd_post (line 497) | def cmd_post(cmd): function cmd_referer (line 511) | def cmd_referer(cmd): function cmd_revshell (line 520) | def cmd_revshell(cmd): function cmd_shell (line 542) | def cmd_shell(cmd): function cmd_url (line 548) | def cmd_url(cmd): function cmd_useragent (line 556) | def cmd_useragent(cmd): function expand_payload (line 563) | def expand_payload(my_list, data): function send_payload (line 583) | def send_payload(): FILE: shellfire/config.py class Mode (line 10) | class Mode(Enum): class Configs (line 18) | class Configs(): method __init__ (line 39) | def __init__(self): method dump (line 72) | def dump(self): method load (line 75) | def load(self, json_cfg): class state (line 85) | class state(): FILE: shellfire/default_plugins/default.py class Base64 (line 6) | class Base64(Plugin): method __init__ (line 9) | def __init__(self): method run (line 13) | def run(self, argument): class urlencode (line 16) | class urlencode(Plugin): method __init__ (line 19) | def __init__(self): method run (line 23) | def run(self, argument): FILE: shellfire/payloads.py function get_aspnet_payload (line 2) | def get_aspnet_payload(marker) -> str: function get_php_payload (line 15) | def get_php_payload(marker) -> str: FILE: shellfire/plugin_collection.py class Plugin (line 7) | class Plugin(object): method __init__ (line 12) | def __init__(self): method run (line 15) | def run(self, argument): class PluginCollection (line 22) | class PluginCollection(object): method __init__ (line 29) | def __init__(self, plugin_package, debug=False): method reload_plugins (line 38) | def reload_plugins(self): method apply (line 56) | def apply(self, name, argument): method apply_all (line 68) | def apply_all(self, argument): method walk_package (line 82) | def walk_package(self, package): FILE: shellfire/tab_completion.py class ShellfireCompleter (line 13) | class ShellfireCompleter: method __init__ (line 16) | def __init__(self): method complete (line 64) | def complete(self, text: str, state: int) -> Optional[str]: method _get_completions (line 87) | def _get_completions(self, text: str) -> List[str]: method _complete_config_subcommand (line 161) | def _complete_config_subcommand(self, text: str) -> List[str]: method _complete_http_subcommand (line 166) | def _complete_http_subcommand(self, text: str) -> List[str]: method _complete_method_subcommand (line 171) | def _complete_method_subcommand(self, text: str) -> List[str]: method _complete_marker_subcommand (line 176) | def _complete_marker_subcommand(self, text: str) -> List[str]: method _complete_history_subcommand (line 181) | def _complete_history_subcommand(self, text: str) -> List[str]: method _complete_fuzz_subcommand (line 186) | def _complete_fuzz_subcommand(self, text: str) -> List[str]: method _complete_find_subcommand (line 191) | def _complete_find_subcommand(self, text: str) -> List[str]: method _complete_help_subcommand (line 196) | def _complete_help_subcommand(self, text: str) -> List[str]: method _complete_file_path (line 201) | def _complete_file_path(self, text: str) -> List[str]: method _complete_http_header (line 234) | def _complete_http_header(self, text: str) -> List[str]: method _complete_user_agent (line 238) | def _complete_user_agent(self, text: str) -> List[str]: method _complete_url (line 242) | def _complete_url(self, text: str) -> List[str]: function setup_tab_completion (line 247) | def setup_tab_completion():