├── .DS_Store ├── .gitiginore ├── .gitignore ├── GenAI ├── .gitignore ├── ars │ ├── README.md │ ├── file_by_file_examples.py │ ├── requirements.txt │ └── vector_db_example.py ├── find_routes_express.py ├── list_authz_decorators.py ├── readme_ingestion.py ├── requirements.txt ├── security_analysis_of_repo.py ├── v2 │ ├── .gitignore │ ├── agent.py │ ├── few_shot_prompt.py │ ├── find_routes_express.py │ ├── list_authz_decorators.py │ ├── profile_app.py │ ├── readme_ingestion.py │ └── requirements.txt └── v3 │ ├── .gitignore │ ├── agent.py │ ├── ai_editor_prompt.md │ ├── few_shot_prompt.py │ ├── find_routes_express.py │ ├── list_authz_decorators.py │ ├── profile_app.py │ ├── readme_ingestion.py │ └── requirements.txt ├── Practical Secure Code Review - 2024.pdf ├── Practical Secure Code Review - Whitepaper.pdf ├── README.md ├── bt_routes.txt ├── common_web_frameworks_by_language.md ├── example_template.md ├── findings_template.md ├── generic_checks.md ├── materials.md ├── node_js_generic_checks.md ├── oss_apps.md └── repositories_necessary_for_course.md /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absoluteappsec/handouts/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitiginore: -------------------------------------------------------------------------------- 1 | venv/ 2 | repo/ 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absoluteappsec/handouts/HEAD/.gitignore -------------------------------------------------------------------------------- /GenAI/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absoluteappsec/handouts/HEAD/GenAI/.gitignore -------------------------------------------------------------------------------- /GenAI/ars/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absoluteappsec/handouts/HEAD/GenAI/ars/README.md -------------------------------------------------------------------------------- /GenAI/ars/file_by_file_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absoluteappsec/handouts/HEAD/GenAI/ars/file_by_file_examples.py -------------------------------------------------------------------------------- /GenAI/ars/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absoluteappsec/handouts/HEAD/GenAI/ars/requirements.txt -------------------------------------------------------------------------------- /GenAI/ars/vector_db_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absoluteappsec/handouts/HEAD/GenAI/ars/vector_db_example.py -------------------------------------------------------------------------------- /GenAI/find_routes_express.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absoluteappsec/handouts/HEAD/GenAI/find_routes_express.py -------------------------------------------------------------------------------- /GenAI/list_authz_decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absoluteappsec/handouts/HEAD/GenAI/list_authz_decorators.py -------------------------------------------------------------------------------- /GenAI/readme_ingestion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absoluteappsec/handouts/HEAD/GenAI/readme_ingestion.py -------------------------------------------------------------------------------- /GenAI/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absoluteappsec/handouts/HEAD/GenAI/requirements.txt -------------------------------------------------------------------------------- /GenAI/security_analysis_of_repo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absoluteappsec/handouts/HEAD/GenAI/security_analysis_of_repo.py -------------------------------------------------------------------------------- /GenAI/v2/.gitignore: -------------------------------------------------------------------------------- 1 | repo/ 2 | venv/ 3 | .env 4 | -------------------------------------------------------------------------------- /GenAI/v2/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absoluteappsec/handouts/HEAD/GenAI/v2/agent.py -------------------------------------------------------------------------------- /GenAI/v2/few_shot_prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absoluteappsec/handouts/HEAD/GenAI/v2/few_shot_prompt.py -------------------------------------------------------------------------------- /GenAI/v2/find_routes_express.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absoluteappsec/handouts/HEAD/GenAI/v2/find_routes_express.py -------------------------------------------------------------------------------- /GenAI/v2/list_authz_decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absoluteappsec/handouts/HEAD/GenAI/v2/list_authz_decorators.py -------------------------------------------------------------------------------- /GenAI/v2/profile_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absoluteappsec/handouts/HEAD/GenAI/v2/profile_app.py -------------------------------------------------------------------------------- /GenAI/v2/readme_ingestion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absoluteappsec/handouts/HEAD/GenAI/v2/readme_ingestion.py -------------------------------------------------------------------------------- /GenAI/v2/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absoluteappsec/handouts/HEAD/GenAI/v2/requirements.txt -------------------------------------------------------------------------------- /GenAI/v3/.gitignore: -------------------------------------------------------------------------------- 1 | repo/ 2 | venv/ 3 | .env 4 | -------------------------------------------------------------------------------- /GenAI/v3/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absoluteappsec/handouts/HEAD/GenAI/v3/agent.py -------------------------------------------------------------------------------- /GenAI/v3/ai_editor_prompt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absoluteappsec/handouts/HEAD/GenAI/v3/ai_editor_prompt.md -------------------------------------------------------------------------------- /GenAI/v3/few_shot_prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absoluteappsec/handouts/HEAD/GenAI/v3/few_shot_prompt.py -------------------------------------------------------------------------------- /GenAI/v3/find_routes_express.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absoluteappsec/handouts/HEAD/GenAI/v3/find_routes_express.py -------------------------------------------------------------------------------- /GenAI/v3/list_authz_decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absoluteappsec/handouts/HEAD/GenAI/v3/list_authz_decorators.py -------------------------------------------------------------------------------- /GenAI/v3/profile_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absoluteappsec/handouts/HEAD/GenAI/v3/profile_app.py -------------------------------------------------------------------------------- /GenAI/v3/readme_ingestion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absoluteappsec/handouts/HEAD/GenAI/v3/readme_ingestion.py -------------------------------------------------------------------------------- /GenAI/v3/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absoluteappsec/handouts/HEAD/GenAI/v3/requirements.txt -------------------------------------------------------------------------------- /Practical Secure Code Review - 2024.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absoluteappsec/handouts/HEAD/Practical Secure Code Review - 2024.pdf -------------------------------------------------------------------------------- /Practical Secure Code Review - Whitepaper.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absoluteappsec/handouts/HEAD/Practical Secure Code Review - Whitepaper.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absoluteappsec/handouts/HEAD/README.md -------------------------------------------------------------------------------- /bt_routes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absoluteappsec/handouts/HEAD/bt_routes.txt -------------------------------------------------------------------------------- /common_web_frameworks_by_language.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absoluteappsec/handouts/HEAD/common_web_frameworks_by_language.md -------------------------------------------------------------------------------- /example_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absoluteappsec/handouts/HEAD/example_template.md -------------------------------------------------------------------------------- /findings_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absoluteappsec/handouts/HEAD/findings_template.md -------------------------------------------------------------------------------- /generic_checks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absoluteappsec/handouts/HEAD/generic_checks.md -------------------------------------------------------------------------------- /materials.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absoluteappsec/handouts/HEAD/materials.md -------------------------------------------------------------------------------- /node_js_generic_checks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absoluteappsec/handouts/HEAD/node_js_generic_checks.md -------------------------------------------------------------------------------- /oss_apps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absoluteappsec/handouts/HEAD/oss_apps.md -------------------------------------------------------------------------------- /repositories_necessary_for_course.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/absoluteappsec/handouts/HEAD/repositories_necessary_for_course.md --------------------------------------------------------------------------------