Vega strike Python Modules doc
0.5.1
Documentation of the " Modules " folder of Vega strike
|
Data Structures | |
class | CGIHTTPRequestHandler |
Functions | |
def | nobody_uid |
def | executable |
def | test |
Variables | |
string | __version__ = "0.4" |
list | __all__ = ["CGIHTTPRequestHandler"] |
nobody = None | |
CGI-savvy HTTP Server. This module builds on SimpleHTTPServer by implementing GET and POST requests to cgi-bin scripts. If the os.fork() function is not present (e.g. on Windows), os.popen2() is used as a fallback, with slightly altered semantics; if that function is not present either (e.g. on Macintosh), only Python scripts are supported, and they are executed by the current process. In all cases, the implementation is intentionally naive -- all requests are executed sychronously. SECURITY WARNING: DON'T USE THIS CODE UNLESS YOU ARE INSIDE A FIREWALL -- it may execute arbitrary Python code or external programs.
def CGIHTTPServer.executable | ( | path) |
def CGIHTTPServer.nobody_uid | ( | ) |
Internal routine to get nobody's uid
Definition at line 289 of file CGIHTTPServer.py.
References sre_parse.max.
def CGIHTTPServer.test | ( | HandlerClass = CGIHTTPRequestHandler , |
|
ServerClass = BaseHTTPServer.HTTPServer |
|||
) |
list __all__ = ["CGIHTTPRequestHandler"] |
Definition at line 22 of file CGIHTTPServer.py.
string __version__ = "0.4" |
Definition at line 20 of file CGIHTTPServer.py.
nobody = None |
Definition at line 287 of file CGIHTTPServer.py.