├── LICENSE ├── NOTICE.txt ├── README.md ├── version_1.0 ├── README.md ├── devaic.sh ├── generated_file │ ├── INPUT_[2024-02-23_19-34-33]_google_gemini.txt │ ├── INPUT_[2024-02-23_19-35-09]_microsoft_copilot.txt │ ├── INPUT_[2024-02-23_19-35-44]_openai_chatgpt.txt │ └── INPUT_[2024-02-23_19-36-29]_github_copilot.txt ├── input │ ├── github_copilot.txt │ ├── google_gemini.txt │ ├── microsoft_copilot.txt │ └── openai_chatgpt.txt ├── materials │ ├── README.md │ ├── code_test │ │ ├── 01_code.py │ │ ├── 02_code.py │ │ └── my-directory-list.txt │ ├── create_snippet.py │ ├── file_snippet │ │ └── snippets.txt │ └── manual_analysis.xlsx ├── results │ └── detection │ │ ├── DET_[2024-02-23_19-34-33]_google_gemini.txt │ │ ├── DET_[2024-02-23_19-35-09]_microsoft_copilot.txt │ │ ├── DET_[2024-02-23_19-35-44]_openai_chatgpt.txt │ │ └── DET_[2024-02-23_19-36-29]_github_copilot.txt ├── script_py │ ├── convert_json_to_txt.py │ ├── convert_json_wo_keys.py │ ├── preprocessing.py │ └── preprocessing_macos.py ├── tool_derem.sh └── utils │ └── convert_to_LF.py └── version_2.0 ├── README.md ├── devaic.sh ├── input ├── test_multi.txt └── test_source.py ├── modules ├── config.sh ├── detector.sh ├── helper.sh ├── loader.sh ├── owasp.sh ├── preprocess.sh └── writer.sh ├── results ├── [20250612_121125]_test_multi.json └── [20250612_121311]_test_source.json ├── ruleset ├── builtin.json ├── crypto.json ├── file.json ├── flask.json ├── git.json ├── html.json ├── img.json ├── jwe.json ├── jwt.json ├── log.json ├── misc.json ├── os.json ├── protocols.json ├── socket.json ├── sql.json ├── ssl.json ├── version.json ├── websockets.json └── xml.json ├── script_py ├── convertInline.py ├── preprocessing.py ├── preprocessing_macos.py └── remove_comments.py └── utils └── convert_to_LF.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessertlab/DeVAIC/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessertlab/DeVAIC/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessertlab/DeVAIC/HEAD/README.md -------------------------------------------------------------------------------- /version_1.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessertlab/DeVAIC/HEAD/version_1.0/README.md -------------------------------------------------------------------------------- /version_1.0/devaic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessertlab/DeVAIC/HEAD/version_1.0/devaic.sh -------------------------------------------------------------------------------- /version_1.0/generated_file/INPUT_[2024-02-23_19-34-33]_google_gemini.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessertlab/DeVAIC/HEAD/version_1.0/generated_file/INPUT_[2024-02-23_19-34-33]_google_gemini.txt -------------------------------------------------------------------------------- /version_1.0/generated_file/INPUT_[2024-02-23_19-35-09]_microsoft_copilot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessertlab/DeVAIC/HEAD/version_1.0/generated_file/INPUT_[2024-02-23_19-35-09]_microsoft_copilot.txt -------------------------------------------------------------------------------- /version_1.0/generated_file/INPUT_[2024-02-23_19-35-44]_openai_chatgpt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessertlab/DeVAIC/HEAD/version_1.0/generated_file/INPUT_[2024-02-23_19-35-44]_openai_chatgpt.txt -------------------------------------------------------------------------------- /version_1.0/generated_file/INPUT_[2024-02-23_19-36-29]_github_copilot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessertlab/DeVAIC/HEAD/version_1.0/generated_file/INPUT_[2024-02-23_19-36-29]_github_copilot.txt -------------------------------------------------------------------------------- /version_1.0/input/github_copilot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessertlab/DeVAIC/HEAD/version_1.0/input/github_copilot.txt -------------------------------------------------------------------------------- /version_1.0/input/google_gemini.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessertlab/DeVAIC/HEAD/version_1.0/input/google_gemini.txt -------------------------------------------------------------------------------- /version_1.0/input/microsoft_copilot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessertlab/DeVAIC/HEAD/version_1.0/input/microsoft_copilot.txt -------------------------------------------------------------------------------- /version_1.0/input/openai_chatgpt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessertlab/DeVAIC/HEAD/version_1.0/input/openai_chatgpt.txt -------------------------------------------------------------------------------- /version_1.0/materials/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessertlab/DeVAIC/HEAD/version_1.0/materials/README.md -------------------------------------------------------------------------------- /version_1.0/materials/code_test/01_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessertlab/DeVAIC/HEAD/version_1.0/materials/code_test/01_code.py -------------------------------------------------------------------------------- /version_1.0/materials/code_test/02_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessertlab/DeVAIC/HEAD/version_1.0/materials/code_test/02_code.py -------------------------------------------------------------------------------- /version_1.0/materials/code_test/my-directory-list.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /version_1.0/materials/create_snippet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessertlab/DeVAIC/HEAD/version_1.0/materials/create_snippet.py -------------------------------------------------------------------------------- /version_1.0/materials/file_snippet/snippets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessertlab/DeVAIC/HEAD/version_1.0/materials/file_snippet/snippets.txt -------------------------------------------------------------------------------- /version_1.0/materials/manual_analysis.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessertlab/DeVAIC/HEAD/version_1.0/materials/manual_analysis.xlsx -------------------------------------------------------------------------------- /version_1.0/results/detection/DET_[2024-02-23_19-34-33]_google_gemini.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessertlab/DeVAIC/HEAD/version_1.0/results/detection/DET_[2024-02-23_19-34-33]_google_gemini.txt -------------------------------------------------------------------------------- /version_1.0/results/detection/DET_[2024-02-23_19-35-09]_microsoft_copilot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessertlab/DeVAIC/HEAD/version_1.0/results/detection/DET_[2024-02-23_19-35-09]_microsoft_copilot.txt -------------------------------------------------------------------------------- /version_1.0/results/detection/DET_[2024-02-23_19-35-44]_openai_chatgpt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessertlab/DeVAIC/HEAD/version_1.0/results/detection/DET_[2024-02-23_19-35-44]_openai_chatgpt.txt -------------------------------------------------------------------------------- /version_1.0/results/detection/DET_[2024-02-23_19-36-29]_github_copilot.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessertlab/DeVAIC/HEAD/version_1.0/results/detection/DET_[2024-02-23_19-36-29]_github_copilot.txt -------------------------------------------------------------------------------- /version_1.0/script_py/convert_json_to_txt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessertlab/DeVAIC/HEAD/version_1.0/script_py/convert_json_to_txt.py -------------------------------------------------------------------------------- /version_1.0/script_py/convert_json_wo_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessertlab/DeVAIC/HEAD/version_1.0/script_py/convert_json_wo_keys.py -------------------------------------------------------------------------------- /version_1.0/script_py/preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessertlab/DeVAIC/HEAD/version_1.0/script_py/preprocessing.py -------------------------------------------------------------------------------- /version_1.0/script_py/preprocessing_macos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessertlab/DeVAIC/HEAD/version_1.0/script_py/preprocessing_macos.py -------------------------------------------------------------------------------- /version_1.0/tool_derem.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessertlab/DeVAIC/HEAD/version_1.0/tool_derem.sh -------------------------------------------------------------------------------- /version_1.0/utils/convert_to_LF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessertlab/DeVAIC/HEAD/version_1.0/utils/convert_to_LF.py -------------------------------------------------------------------------------- /version_2.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessertlab/DeVAIC/HEAD/version_2.0/README.md -------------------------------------------------------------------------------- /version_2.0/devaic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessertlab/DeVAIC/HEAD/version_2.0/devaic.sh -------------------------------------------------------------------------------- /version_2.0/input/test_multi.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessertlab/DeVAIC/HEAD/version_2.0/input/test_multi.txt -------------------------------------------------------------------------------- /version_2.0/input/test_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessertlab/DeVAIC/HEAD/version_2.0/input/test_source.py -------------------------------------------------------------------------------- /version_2.0/modules/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessertlab/DeVAIC/HEAD/version_2.0/modules/config.sh -------------------------------------------------------------------------------- /version_2.0/modules/detector.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessertlab/DeVAIC/HEAD/version_2.0/modules/detector.sh -------------------------------------------------------------------------------- /version_2.0/modules/helper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessertlab/DeVAIC/HEAD/version_2.0/modules/helper.sh -------------------------------------------------------------------------------- /version_2.0/modules/loader.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessertlab/DeVAIC/HEAD/version_2.0/modules/loader.sh -------------------------------------------------------------------------------- /version_2.0/modules/owasp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessertlab/DeVAIC/HEAD/version_2.0/modules/owasp.sh -------------------------------------------------------------------------------- /version_2.0/modules/preprocess.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessertlab/DeVAIC/HEAD/version_2.0/modules/preprocess.sh -------------------------------------------------------------------------------- /version_2.0/modules/writer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessertlab/DeVAIC/HEAD/version_2.0/modules/writer.sh -------------------------------------------------------------------------------- /version_2.0/results/[20250612_121125]_test_multi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessertlab/DeVAIC/HEAD/version_2.0/results/[20250612_121125]_test_multi.json -------------------------------------------------------------------------------- /version_2.0/results/[20250612_121311]_test_source.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessertlab/DeVAIC/HEAD/version_2.0/results/[20250612_121311]_test_source.json -------------------------------------------------------------------------------- /version_2.0/ruleset/builtin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessertlab/DeVAIC/HEAD/version_2.0/ruleset/builtin.json -------------------------------------------------------------------------------- /version_2.0/ruleset/crypto.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessertlab/DeVAIC/HEAD/version_2.0/ruleset/crypto.json -------------------------------------------------------------------------------- /version_2.0/ruleset/file.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessertlab/DeVAIC/HEAD/version_2.0/ruleset/file.json -------------------------------------------------------------------------------- /version_2.0/ruleset/flask.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessertlab/DeVAIC/HEAD/version_2.0/ruleset/flask.json -------------------------------------------------------------------------------- /version_2.0/ruleset/git.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessertlab/DeVAIC/HEAD/version_2.0/ruleset/git.json -------------------------------------------------------------------------------- /version_2.0/ruleset/html.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessertlab/DeVAIC/HEAD/version_2.0/ruleset/html.json -------------------------------------------------------------------------------- /version_2.0/ruleset/img.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessertlab/DeVAIC/HEAD/version_2.0/ruleset/img.json -------------------------------------------------------------------------------- /version_2.0/ruleset/jwe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessertlab/DeVAIC/HEAD/version_2.0/ruleset/jwe.json -------------------------------------------------------------------------------- /version_2.0/ruleset/jwt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessertlab/DeVAIC/HEAD/version_2.0/ruleset/jwt.json -------------------------------------------------------------------------------- /version_2.0/ruleset/log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessertlab/DeVAIC/HEAD/version_2.0/ruleset/log.json -------------------------------------------------------------------------------- /version_2.0/ruleset/misc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessertlab/DeVAIC/HEAD/version_2.0/ruleset/misc.json -------------------------------------------------------------------------------- /version_2.0/ruleset/os.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessertlab/DeVAIC/HEAD/version_2.0/ruleset/os.json -------------------------------------------------------------------------------- /version_2.0/ruleset/protocols.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessertlab/DeVAIC/HEAD/version_2.0/ruleset/protocols.json -------------------------------------------------------------------------------- /version_2.0/ruleset/socket.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessertlab/DeVAIC/HEAD/version_2.0/ruleset/socket.json -------------------------------------------------------------------------------- /version_2.0/ruleset/sql.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessertlab/DeVAIC/HEAD/version_2.0/ruleset/sql.json -------------------------------------------------------------------------------- /version_2.0/ruleset/ssl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessertlab/DeVAIC/HEAD/version_2.0/ruleset/ssl.json -------------------------------------------------------------------------------- /version_2.0/ruleset/version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessertlab/DeVAIC/HEAD/version_2.0/ruleset/version.json -------------------------------------------------------------------------------- /version_2.0/ruleset/websockets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessertlab/DeVAIC/HEAD/version_2.0/ruleset/websockets.json -------------------------------------------------------------------------------- /version_2.0/ruleset/xml.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessertlab/DeVAIC/HEAD/version_2.0/ruleset/xml.json -------------------------------------------------------------------------------- /version_2.0/script_py/convertInline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessertlab/DeVAIC/HEAD/version_2.0/script_py/convertInline.py -------------------------------------------------------------------------------- /version_2.0/script_py/preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessertlab/DeVAIC/HEAD/version_2.0/script_py/preprocessing.py -------------------------------------------------------------------------------- /version_2.0/script_py/preprocessing_macos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessertlab/DeVAIC/HEAD/version_2.0/script_py/preprocessing_macos.py -------------------------------------------------------------------------------- /version_2.0/script_py/remove_comments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessertlab/DeVAIC/HEAD/version_2.0/script_py/remove_comments.py -------------------------------------------------------------------------------- /version_2.0/utils/convert_to_LF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dessertlab/DeVAIC/HEAD/version_2.0/utils/convert_to_LF.py --------------------------------------------------------------------------------