LICENSE
MANIFEST.in
README.md
VERSION
opendoor.conf
opendoor.py
pyproject.toml
requirements-dev.txt
requirements.txt
setup.py
data/directories.dat
data/ignored.dat
data/proxies.dat
data/shadow-suffixes.dat
data/subdomains.dat
data/useragents.dat
data/openvpn-profiles/example.ovpn
data/wireguard-profiles/example.conf
opendoor.egg-info/PKG-INFO
opendoor.egg-info/SOURCES.txt
opendoor.egg-info/dependency_links.txt
opendoor.egg-info/entry_points.txt
opendoor.egg-info/not-zip-safe
opendoor.egg-info/requires.txt
opendoor.egg-info/top_level.txt
src/__init__.py
src/controller.py
src/exceptions.py
src/core/__init__.py
src/core/core.py
src/core/color/__init__.py
src/core/color/color.py
src/core/decorators/__init__.py
src/core/decorators/timer.py
src/core/filesystem/__init__.py
src/core/filesystem/exceptions.py
src/core/filesystem/filesystem.py
src/core/helper/__init__.py
src/core/helper/helper.py
src/core/http/__init__.py
src/core/http/exceptions.py
src/core/http/http.py
src/core/http/https.py
src/core/http/proxy.py
src/core/http/response.py
src/core/http/socks.py
src/core/http/tls.py
src/core/http/plugins/__init__.py
src/core/http/plugins/exceptions.py
src/core/http/plugins/response_plugin.py
src/core/http/plugins/response/__init__.py
src/core/http/plugins/response/collation.py
src/core/http/plugins/response/file.py
src/core/http/plugins/response/indexof.py
src/core/http/plugins/response/malware.py
src/core/http/plugins/response/openredirect.py
src/core/http/plugins/response/secret.py
src/core/http/plugins/response/shadow.py
src/core/http/plugins/response/skipempty.py
src/core/http/plugins/response/skipsizes.py
src/core/http/plugins/response/stacktrace.py
src/core/http/plugins/response/provider/__init__.py
src/core/http/plugins/response/provider/provider.py
src/core/http/providers/__init__.py
src/core/http/providers/accept.py
src/core/http/providers/cache.py
src/core/http/providers/connection.py
src/core/http/providers/cookies.py
src/core/http/providers/debug.py
src/core/http/providers/header.py
src/core/http/providers/request.py
src/core/http/providers/response.py
src/core/http/providers/user_agent.py
src/core/logger/__init__.py
src/core/logger/colorize.py
src/core/logger/config.py
src/core/logger/exception.py
src/core/logger/logger.py
src/core/logger/rainbow.py
src/core/network/__init__.py
src/core/network/exceptions.py
src/core/network/process.py
src/core/network/transport.py
src/core/network/adapters/__init__.py
src/core/network/adapters/base.py
src/core/network/adapters/direct.py
src/core/network/adapters/openvpn.py
src/core/network/adapters/proxy.py
src/core/network/adapters/wireguard.py
src/core/options/__init__.py
src/core/options/exceptions.py
src/core/options/filter.py
src/core/options/options.py
src/core/system/__init__.py
src/core/system/exceptions.py
src/core/system/output.py
src/core/system/process.py
src/core/system/terminal.py
src/lib/__init__.py
src/lib/browser/__init__.py
src/lib/browser/browser.py
src/lib/browser/calibration.py
src/lib/browser/config.py
src/lib/browser/debug.py
src/lib/browser/exceptions.py
src/lib/browser/filter.py
src/lib/browser/fingerprint.py
src/lib/browser/header_bypass.py
src/lib/browser/open_redirect.py
src/lib/browser/session.py
src/lib/browser/shadow.py
src/lib/browser/threadpool.py
src/lib/browser/worker.py
src/lib/browser/workspace.py
src/lib/browser/sniffers/__init__.py
src/lib/browser/sniffers/catalog.py
src/lib/browser/sniffers/context.py
src/lib/browser/sniffers/descriptor.py
src/lib/browser/sniffers/engine.py
src/lib/browser/sniffers/result.py
src/lib/diff/__init__.py
src/lib/diff/engine.py
src/lib/diff/exceptions.py
src/lib/diff/output.py
src/lib/diff/reader.py
src/lib/diff/records.py
src/lib/events/__init__.py
src/lib/events/events.py
src/lib/io/__init__.py
src/lib/io/arguments.py
src/lib/io/exceptions.py
src/lib/package/__init__.py
src/lib/package/exceptions.py
src/lib/package/package.py
src/lib/reader/__init__.py
src/lib/reader/config.py
src/lib/reader/exceptions.py
src/lib/reader/reader.py
src/lib/reporter/__init__.py
src/lib/reporter/exceptions.py
src/lib/reporter/reporter.py
src/lib/reporter/plugins/__init__.py
src/lib/reporter/plugins/csv.py
src/lib/reporter/plugins/html.py
src/lib/reporter/plugins/json.py
src/lib/reporter/plugins/sarif.py
src/lib/reporter/plugins/sqlite.py
src/lib/reporter/plugins/std.py
src/lib/reporter/plugins/txt.py
src/lib/reporter/plugins/provider/__init__.py
src/lib/reporter/plugins/provider/provider.py
src/lib/tpl/__init__.py
src/lib/tpl/config.py
src/lib/tpl/exceptions.py
src/lib/tpl/tpl.py
tests/__init__.py
tests/test_controller.py
tests/test_controller_fingerprint_extra.py
tests/test_controller_session_extra.py
tests/test_core_color_extra.py
tests/test_core_core_extra.py
tests/test_core_filesystem.py
tests/test_core_filesystem_extra.py
tests/test_core_filesystem_streaming.py
tests/test_core_filter.py
tests/test_core_helper.py
tests/test_core_helper_extra.py
tests/test_core_http_browser_headers.py
tests/test_core_http_debug_provider_coverage.py
tests/test_core_http_extra_headers.py
tests/test_core_http_plugins_low_coverage.py
tests/test_core_http_plugins_response_branch_coverage.py
tests/test_core_http_plugins_response_collation.py
tests/test_core_http_plugins_response_file.py
tests/test_core_http_plugins_response_indexof.py
tests/test_core_http_plugins_response_malware.py
tests/test_core_http_plugins_response_secret.py
tests/test_core_http_plugins_response_skipempty.py
tests/test_core_http_plugins_response_skipsizes.py
tests/test_core_http_plugins_response_stacktrace.py
tests/test_core_http_providers.py
tests/test_core_http_proxy_extra.py
tests/test_core_http_request_provider_socks_extra.py
tests/test_core_http_requests.py
tests/test_core_http_requests_low_coverage.py
tests/test_core_http_response.py
tests/test_core_http_response_flow_extra.py
tests/test_core_http_response_indexof_extra.py
tests/test_core_http_response_plugins_extra.py
tests/test_core_http_response_provider_cov_extra.py
tests/test_core_http_tls.py
tests/test_core_http_waf_recognition.py
tests/test_core_logger_colorize.py
tests/test_core_logger_exception_extra.py
tests/test_core_logger_rainbow_extra.py
tests/test_core_network_transport.py
tests/test_core_options.py
tests/test_core_options_fingerprint_extra.py
tests/test_core_options_header_bypass.py
tests/test_core_options_waf_safe_mode_extra.py
tests/test_core_output.py
tests/test_core_process.py
tests/test_core_terminal.py
tests/test_core_terminal_extra.py
tests/test_core_terminal_windows.py
tests/test_lib_browser.py
tests/test_lib_browser_calibration.py
tests/test_lib_browser_config.py
tests/test_lib_browser_config_header_bypass.py
tests/test_lib_browser_config_waf_safe_mode_extra.py
tests/test_lib_browser_debug.py
tests/test_lib_browser_debug_extra.py
tests/test_lib_browser_dns_wildcard_calibration.py
tests/test_lib_browser_exceptions.py
tests/test_lib_browser_extra.py
tests/test_lib_browser_filter.py
tests/test_lib_browser_filtered_progress.py
tests/test_lib_browser_final_extra.py
tests/test_lib_browser_fingerprint.py
tests/test_lib_browser_fingerprint_full_coverage.py
tests/test_lib_browser_fingerprint_privacy.py
tests/test_lib_browser_fingerprint_runtime_extra.py
tests/test_lib_browser_header_bypass.py
tests/test_lib_browser_header_bypass_runtime.py
tests/test_lib_browser_malware_sniffer.py
tests/test_lib_browser_open_redirect.py
tests/test_lib_browser_session.py
tests/test_lib_browser_session_runtime_extra.py
tests/test_lib_browser_shadow.py
tests/test_lib_browser_sniffer_architecture_baseline.py
tests/test_lib_browser_sniffer_coverage_extra.py
tests/test_lib_browser_sniffer_engine.py
tests/test_lib_browser_sniffer_runtime.py
tests/test_lib_browser_threadpool.py
tests/test_lib_browser_threadpool_worker.py
tests/test_lib_browser_waf_guard.py
tests/test_lib_browser_waf_safe_mode_extra.py
tests/test_lib_browser_worker.py
tests/test_lib_browser_workspace.py
tests/test_lib_diff_cli.py
tests/test_lib_diff_engine.py
tests/test_lib_diff_output.py
tests/test_lib_diff_reader.py
tests/test_lib_events.py
tests/test_lib_io_arguments.py
tests/test_lib_io_exceptions_extra.py
tests/test_lib_package.py
tests/test_lib_reader.py
tests/test_lib_reader_extra.py
tests/test_lib_reporter.py
tests/test_lib_reporter_csv.py
tests/test_lib_reporter_malware_sniffer.py
tests/test_lib_reporter_open_redirect.py
tests/test_lib_reporter_plugins_extra.py
tests/test_lib_reporter_plugins_full_coverage.py
tests/test_lib_reporter_privacy_risks.py
tests/test_lib_reporter_provider_coverage_extra.py
tests/test_lib_reporter_sarif.py
tests/test_lib_reporter_secret_sniffer.py
tests/test_lib_reporter_shadow_sniffer.py
tests/test_lib_reporter_sqlite.py
tests/test_lib_reporter_sqlite_std_extra.py
tests/test_lib_reporter_stacktrace_debug.py
tests/test_lib_reporter_std_fingerprint_extra.py
tests/test_lib_reporter_txt_coverage.py
tests/test_lib_reporter_txt_direct_module_coverage.py
tests/test_lib_tpl.py
tests/test_packaging_shadow_assets.py
tests/test_release_coverage_gaps.py
tests/test_report_sizes.py
tests/test_response_codes.py
tests/test_targeted_coverage_gaps.py