LICENSE
MANIFEST.in
README.md
pyproject.toml
pof/__init__.py
pof/__main__.py
pof/cli.py
pof/cli_v2.py
pof/errors.py
pof/logger.py
pof/main.py
pof/evasion/__init__.py
pof/evasion/base.py
pof/evasion/multi.py
pof/evasion/utils.py
pof/evasion/debugger/__init__.py
pof/evasion/debugger/breakpoint_hook.py
pof/evasion/debugger/coverage.py
pof/evasion/debugger/cprofile.py
pof/evasion/debugger/debugger.py
pof/evasion/debugger/linux_debug_process.py
pof/evasion/debugger/tracemalloc_evasion.py
pof/evasion/debugger/win_debug_process.py
pof/evasion/debugger/win_debugger.py
pof/evasion/guardrails/__init__.py
pof/evasion/guardrails/argv.py
pof/evasion/guardrails/directory_exist.py
pof/evasion/guardrails/directory_list_exist.py
pof/evasion/guardrails/directory_list_missing.py
pof/evasion/guardrails/directory_missing.py
pof/evasion/guardrails/domain.py
pof/evasion/guardrails/env_var.py
pof/evasion/guardrails/expire.py
pof/evasion/guardrails/file_content.py
pof/evasion/guardrails/file_exist.py
pof/evasion/guardrails/file_list_exist.py
pof/evasion/guardrails/file_list_missing.py
pof/evasion/guardrails/file_missing.py
pof/evasion/guardrails/file_size.py
pof/evasion/guardrails/hostname.py
pof/evasion/guardrails/installed_software.py
pof/evasion/guardrails/integrity.py
pof/evasion/guardrails/ip_address.py
pof/evasion/guardrails/language_locale.py
pof/evasion/guardrails/mac_address.py
pof/evasion/guardrails/prompt_base.py
pof/evasion/guardrails/timezone.py
pof/evasion/guardrails/uid.py
pof/evasion/guardrails/username.py
pof/evasion/guardrails/win_ad_domain.py
pof/evasion/guardrails/win_privilege.py
pof/evasion/guardrails/win_prompt.py
pof/evasion/sandbox/__init__.py
pof/evasion/sandbox/cpu_count.py
pof/evasion/sandbox/disk_size.py
pof/evasion/sandbox/edr.py
pof/evasion/sandbox/exec_method.py
pof/evasion/sandbox/executable_path.py
pof/evasion/sandbox/linux_mouse.py
pof/evasion/sandbox/linux_process_list.py
pof/evasion/sandbox/linux_sandbox_artifacts.py
pof/evasion/sandbox/linux_screen_resolution.py
pof/evasion/sandbox/linux_tmp_count.py
pof/evasion/sandbox/proc_count.py
pof/evasion/sandbox/ram_count.py
pof/evasion/sandbox/sandbox_hostname.py
pof/evasion/sandbox/sandbox_username.py
pof/evasion/sandbox/tmp_count.py
pof/evasion/sandbox/uptime.py
pof/evasion/sandbox/utc.py
pof/evasion/sandbox/vm_hypervisor.py
pof/evasion/sandbox/win_mouse.py
pof/evasion/sandbox/win_proc_count.py
pof/evasion/sandbox/win_process_list.py
pof/evasion/sandbox/win_ram_count.py
pof/evasion/sandbox/win_registry_vm.py
pof/evasion/sandbox/win_sandbox_artifacts.py
pof/evasion/sandbox/win_screen_resolution.py
pof/evasion/sandbox/win_tmp_count.py
pof/evasion/sandbox/win_uptime.py
pof/evasion/special/__init__.py
pof/evasion/special/cicd.py
pof/evasion/special/jupyter.py
pof/evasion/special/linux_docker.py
pof/evasion/special/linux_kubernetes.py
pof/evasion/special/linux_wsl.py
pof/evasion/special/serverless.py
pof/evasion/special/win_container.py
pof/evasion/special/win_hyper_v.py
pof/evasion/special/win_sandbox_env.py
pof/obfuscator/__init__.py
pof/obfuscator/boolean.py
pof/obfuscator/builtins.py
pof/obfuscator/constants.py
pof/obfuscator/extract_variables.py
pof/obfuscator/names.py
pof/obfuscator/numbers.py
pof/obfuscator/restructure.py
pof/obfuscator/strings.py
pof/obfuscator/cipher/__init__.py
pof/obfuscator/cipher/deep_encryption.py
pof/obfuscator/cipher/rc4.py
pof/obfuscator/cipher/shift.py
pof/obfuscator/cipher/xor.py
pof/obfuscator/compression/__init__.py
pof/obfuscator/compression/bz2.py
pof/obfuscator/compression/gzip.py
pof/obfuscator/compression/lzma.py
pof/obfuscator/compression/zlib.py
pof/obfuscator/controlflow/__init__.py
pof/obfuscator/controlflow/control_flow_flatten.py
pof/obfuscator/encoding/__init__.py
pof/obfuscator/encoding/a85.py
pof/obfuscator/encoding/b16.py
pof/obfuscator/encoding/b32.py
pof/obfuscator/encoding/b32hex.py
pof/obfuscator/encoding/b64.py
pof/obfuscator/encoding/b85.py
pof/obfuscator/encoding/binascii.py
pof/obfuscator/encoding/snt.py
pof/obfuscator/encoding/whitespace.py
pof/obfuscator/esoteric/__init__.py
pof/obfuscator/esoteric/call.py
pof/obfuscator/esoteric/doc.py
pof/obfuscator/esoteric/globals.py
pof/obfuscator/esoteric/imports.py
pof/obfuscator/junk/__init__.py
pof/obfuscator/junk/add_comments.py
pof/obfuscator/junk/add_newlines.py
pof/obfuscator/junk/add_type_hints.py
pof/obfuscator/junk/dead_code.py
pof/obfuscator/other/__init__.py
pof/obfuscator/other/tokens.py
pof/obfuscator/remove/__init__.py
pof/obfuscator/remove/comments.py
pof/obfuscator/remove/exceptions.py
pof/obfuscator/remove/indents.py
pof/obfuscator/remove/loggings.py
pof/obfuscator/remove/loggings_old.py
pof/obfuscator/remove/newline.py
pof/obfuscator/remove/print.py
pof/obfuscator/remove/type_hints.py
pof/obfuscator/stegano/__init__.py
pof/obfuscator/stegano/docstrings.py
pof/obfuscator/stegano/ipv6encoding.py
pof/obfuscator/stegano/macencoding.py
pof/obfuscator/stegano/uuidencoding.py
pof/stager/__init__.py
pof/stager/download.py
pof/stager/image.py
pof/stager/quine.py
pof/stager/cipher/__init__.py
pof/stager/cipher/rc4.py
pof/stager/lots/__init__.py
pof/stager/lots/cl1pnet.py
pof/stager/lots/pastebin.py
pof/stager/lots/pasters.py
pof/utils/__init__.py
pof/utils/entropy.py
pof/utils/extract_names.py
pof/utils/format.py
pof/utils/tokens.py
pof/utils/cipher/__init__.py
pof/utils/cipher/rc4.py
pof/utils/cipher/shift.py
pof/utils/compression/__init__.py
pof/utils/compression/bz2.py
pof/utils/compression/gzip.py
pof/utils/compression/lzma.py
pof/utils/compression/zlib.py
pof/utils/encoding/__init__.py
pof/utils/encoding/a85.py
pof/utils/encoding/b16.py
pof/utils/encoding/b3.py
pof/utils/encoding/b32.py
pof/utils/encoding/b32hex.py
pof/utils/encoding/b64.py
pof/utils/encoding/b85.py
pof/utils/encoding/binascii.py
pof/utils/encoding/snt.py
pof/utils/encoding/whitespace.py
pof/utils/generator/__init__.py
pof/utils/generator/advanced.py
pof/utils/generator/base.py
pof/utils/generator/basic.py
pof/utils/generator/comments.py
pof/utils/generator/comments.txt
pof/utils/generator/names.txt
pof/utils/generator/unicode.py
pof/utils/se/__init__.py
pof/utils/se/homoglyphs.py
pof/utils/se/homoglyphs.txt
pof/utils/stegano/__init__.py
pof/utils/stegano/ipv6encoding.py
pof/utils/stegano/macencoding.py
pof/utils/stegano/uuidencoding.py
python_obfuscation_framework.egg-info/PKG-INFO
python_obfuscation_framework.egg-info/SOURCES.txt
python_obfuscation_framework.egg-info/dependency_links.txt
python_obfuscation_framework.egg-info/entry_points.txt
python_obfuscation_framework.egg-info/requires.txt
python_obfuscation_framework.egg-info/top_level.txt
tests/__init__.py
tests/pyproject.toml
tests/obfuscator/__init__.py
tests/obfuscator/conftest.py
tests/obfuscator/test_edge_cases.py
tests/obfuscator/test_integration.py
tests/obfuscator/utils.py
tests/obfuscator/fixtures/__init__.py
tests/obfuscator/fixtures/booleans.py
tests/obfuscator/fixtures/complex.py
tests/obfuscator/fixtures/compression.py
tests/obfuscator/fixtures/context_managers.py
tests/obfuscator/fixtures/decorators.py
tests/obfuscator/fixtures/deepenc.py
tests/obfuscator/fixtures/docs.py
tests/obfuscator/fixtures/encoding.py
tests/obfuscator/fixtures/esoteric.py
tests/obfuscator/fixtures/generators.py
tests/obfuscator/fixtures/getattr.py
tests/obfuscator/fixtures/import.py
tests/obfuscator/fixtures/inheritance.py
tests/obfuscator/fixtures/lambda.py
tests/obfuscator/fixtures/match_case.py
tests/obfuscator/fixtures/moderate.py
tests/obfuscator/fixtures/nonlocal.py
tests/obfuscator/fixtures/numbers.py
tests/obfuscator/fixtures/properties.py
tests/obfuscator/fixtures/quine.py
tests/obfuscator/fixtures/rc4.py
tests/obfuscator/fixtures/simple.py
tests/obfuscator/fixtures/strings.py
tests/obfuscator/fixtures/ternary.py
tests/obfuscator/fixtures/try.py
tests/obfuscator/fixtures/types.py
tests/utils/__init__.py
tests/utils/test_generator.py
tests/utils/se/__init__.py
tests/utils/se/test_homoglyphs.py