├── .gitattributes ├── .gitignore ├── LICENSE.md ├── README.md ├── delete-exception.py ├── fix_fuzz_test.py ├── langfuzz-lib1-gpt3.db ├── langfuzz-lib1-gpt4.db ├── langfuzz-lib2-gpt3.db ├── langfuzz-lib2-gpt4.db ├── langfuzz-recon.ipynb ├── langfuzz.db ├── langfuzz.ipynb ├── langfuzz ├── __init__.py ├── langfuzz.py ├── langfuzzDB.py ├── langfuzz_recon.py ├── tools │ ├── base.py │ ├── hackernews.py │ ├── python_repl.py │ └── search.py └── utils.py ├── library_fuzzing ├── keras_serialization_fuzz.ipynb ├── numpy_fuzzing.ipynb └── twisted-fuzzing.ipynb ├── llm_agent ├── README.md ├── __init__.py ├── agent.py ├── llm.py ├── llm_agent.egg-info │ ├── PKG-INFO │ ├── SOURCES.txt │ ├── dependency_links.txt │ ├── requires.txt │ └── top_level.txt └── setup.py ├── prompts └── base-atheris-prompt.py ├── requirements.txt ├── retrive_data.py ├── test.py ├── testlangfuzz-lib1-gpt4.py ├── testlangfuzz-lib2-gpt4-2ndhalf.py ├── testlangfuzz-lib2-gpt4.py ├── testlangfuzz.py └── testlangfuzz2.py /.gitattributes: -------------------------------------------------------------------------------- 1 | *.ipynb linguist-detectable=false -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-wizard/fuzz-forest/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-wizard/fuzz-forest/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-wizard/fuzz-forest/HEAD/README.md -------------------------------------------------------------------------------- /delete-exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-wizard/fuzz-forest/HEAD/delete-exception.py -------------------------------------------------------------------------------- /fix_fuzz_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-wizard/fuzz-forest/HEAD/fix_fuzz_test.py -------------------------------------------------------------------------------- /langfuzz-lib1-gpt3.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-wizard/fuzz-forest/HEAD/langfuzz-lib1-gpt3.db -------------------------------------------------------------------------------- /langfuzz-lib1-gpt4.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-wizard/fuzz-forest/HEAD/langfuzz-lib1-gpt4.db -------------------------------------------------------------------------------- /langfuzz-lib2-gpt3.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-wizard/fuzz-forest/HEAD/langfuzz-lib2-gpt3.db -------------------------------------------------------------------------------- /langfuzz-lib2-gpt4.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-wizard/fuzz-forest/HEAD/langfuzz-lib2-gpt4.db -------------------------------------------------------------------------------- /langfuzz-recon.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-wizard/fuzz-forest/HEAD/langfuzz-recon.ipynb -------------------------------------------------------------------------------- /langfuzz.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-wizard/fuzz-forest/HEAD/langfuzz.db -------------------------------------------------------------------------------- /langfuzz.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-wizard/fuzz-forest/HEAD/langfuzz.ipynb -------------------------------------------------------------------------------- /langfuzz/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /langfuzz/langfuzz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-wizard/fuzz-forest/HEAD/langfuzz/langfuzz.py -------------------------------------------------------------------------------- /langfuzz/langfuzzDB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-wizard/fuzz-forest/HEAD/langfuzz/langfuzzDB.py -------------------------------------------------------------------------------- /langfuzz/langfuzz_recon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-wizard/fuzz-forest/HEAD/langfuzz/langfuzz_recon.py -------------------------------------------------------------------------------- /langfuzz/tools/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-wizard/fuzz-forest/HEAD/langfuzz/tools/base.py -------------------------------------------------------------------------------- /langfuzz/tools/hackernews.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-wizard/fuzz-forest/HEAD/langfuzz/tools/hackernews.py -------------------------------------------------------------------------------- /langfuzz/tools/python_repl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-wizard/fuzz-forest/HEAD/langfuzz/tools/python_repl.py -------------------------------------------------------------------------------- /langfuzz/tools/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-wizard/fuzz-forest/HEAD/langfuzz/tools/search.py -------------------------------------------------------------------------------- /langfuzz/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-wizard/fuzz-forest/HEAD/langfuzz/utils.py -------------------------------------------------------------------------------- /library_fuzzing/keras_serialization_fuzz.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-wizard/fuzz-forest/HEAD/library_fuzzing/keras_serialization_fuzz.ipynb -------------------------------------------------------------------------------- /library_fuzzing/numpy_fuzzing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-wizard/fuzz-forest/HEAD/library_fuzzing/numpy_fuzzing.ipynb -------------------------------------------------------------------------------- /library_fuzzing/twisted-fuzzing.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-wizard/fuzz-forest/HEAD/library_fuzzing/twisted-fuzzing.ipynb -------------------------------------------------------------------------------- /llm_agent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-wizard/fuzz-forest/HEAD/llm_agent/README.md -------------------------------------------------------------------------------- /llm_agent/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-wizard/fuzz-forest/HEAD/llm_agent/__init__.py -------------------------------------------------------------------------------- /llm_agent/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-wizard/fuzz-forest/HEAD/llm_agent/agent.py -------------------------------------------------------------------------------- /llm_agent/llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-wizard/fuzz-forest/HEAD/llm_agent/llm.py -------------------------------------------------------------------------------- /llm_agent/llm_agent.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-wizard/fuzz-forest/HEAD/llm_agent/llm_agent.egg-info/PKG-INFO -------------------------------------------------------------------------------- /llm_agent/llm_agent.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-wizard/fuzz-forest/HEAD/llm_agent/llm_agent.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /llm_agent/llm_agent.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /llm_agent/llm_agent.egg-info/requires.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-wizard/fuzz-forest/HEAD/llm_agent/llm_agent.egg-info/requires.txt -------------------------------------------------------------------------------- /llm_agent/llm_agent.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /llm_agent/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-wizard/fuzz-forest/HEAD/llm_agent/setup.py -------------------------------------------------------------------------------- /prompts/base-atheris-prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-wizard/fuzz-forest/HEAD/prompts/base-atheris-prompt.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-wizard/fuzz-forest/HEAD/requirements.txt -------------------------------------------------------------------------------- /retrive_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-wizard/fuzz-forest/HEAD/retrive_data.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-wizard/fuzz-forest/HEAD/test.py -------------------------------------------------------------------------------- /testlangfuzz-lib1-gpt4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-wizard/fuzz-forest/HEAD/testlangfuzz-lib1-gpt4.py -------------------------------------------------------------------------------- /testlangfuzz-lib2-gpt4-2ndhalf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-wizard/fuzz-forest/HEAD/testlangfuzz-lib2-gpt4-2ndhalf.py -------------------------------------------------------------------------------- /testlangfuzz-lib2-gpt4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-wizard/fuzz-forest/HEAD/testlangfuzz-lib2-gpt4.py -------------------------------------------------------------------------------- /testlangfuzz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-wizard/fuzz-forest/HEAD/testlangfuzz.py -------------------------------------------------------------------------------- /testlangfuzz2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tree-wizard/fuzz-forest/HEAD/testlangfuzz2.py --------------------------------------------------------------------------------