├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── app.py ├── env.list ├── model ├── DistilBERT_FineTuning_PromptInjectionDetection.ipynb └── cv-prompt-injection-dataset.csv ├── models.py ├── prompt_injection_utils.py ├── requirements.txt └── templates ├── admin_view.html ├── application_form.html ├── candidate_dashboard.html └── login.html /.gitignore: -------------------------------------------------------------------------------- 1 | env/ 2 | .env 3 | recruitment_demo.db 4 | *.pyc 5 | __pycache__ 6 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/llm-vulnerable-recruitment-app/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/llm-vulnerable-recruitment-app/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/llm-vulnerable-recruitment-app/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/llm-vulnerable-recruitment-app/HEAD/app.py -------------------------------------------------------------------------------- /env.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/llm-vulnerable-recruitment-app/HEAD/env.list -------------------------------------------------------------------------------- /model/DistilBERT_FineTuning_PromptInjectionDetection.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/llm-vulnerable-recruitment-app/HEAD/model/DistilBERT_FineTuning_PromptInjectionDetection.ipynb -------------------------------------------------------------------------------- /model/cv-prompt-injection-dataset.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/llm-vulnerable-recruitment-app/HEAD/model/cv-prompt-injection-dataset.csv -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/llm-vulnerable-recruitment-app/HEAD/models.py -------------------------------------------------------------------------------- /prompt_injection_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/llm-vulnerable-recruitment-app/HEAD/prompt_injection_utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Flask 2 | markdown 3 | SQLAlchemy 4 | torch==2.2.1 5 | transformers==4.38.2 6 | openai==1.13.3 -------------------------------------------------------------------------------- /templates/admin_view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/llm-vulnerable-recruitment-app/HEAD/templates/admin_view.html -------------------------------------------------------------------------------- /templates/application_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/llm-vulnerable-recruitment-app/HEAD/templates/application_form.html -------------------------------------------------------------------------------- /templates/candidate_dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/llm-vulnerable-recruitment-app/HEAD/templates/candidate_dashboard.html -------------------------------------------------------------------------------- /templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ReversecLabs/llm-vulnerable-recruitment-app/HEAD/templates/login.html --------------------------------------------------------------------------------