├── .gitbook.yaml ├── DEPLOYMENT.md ├── LICENSE ├── README.md ├── _config.yml ├── assets └── banner.svg ├── book.json ├── docs ├── AI LLM Red Team Handbook.md ├── AI_LLM Red Team Field Manual.md ├── Building a World-Class AI Red Team.md ├── Chapter_01_Introduction_to_AI_Red_Teaming.md ├── Chapter_02_Ethics_Legal_and_Stakeholder_Communication.md ├── Chapter_03_The_Red_Teamers_Mindset.md ├── Chapter_04_SOW_Rules_of_Engagement_and_Client_Onboarding.md ├── Chapter_05_Threat_Modeling_and_Risk_Analysis.md ├── Chapter_06_Scoping_an_Engagement.md ├── Chapter_07_Lab_Setup_and_Environmental_Safety.md ├── Chapter_08_Evidence_Documentation_and_Chain_of_Custody.md ├── Chapter_09_Writing_Effective_Reports_and_Deliverables.md ├── Chapter_10_Presenting_Results_and_Remediation_Guidance.md ├── Chapter_11_Lessons_Learned_and_Building_Future_Readiness.md ├── Chapter_12_Retrieval_Augmented_Generation_RAG_Pipelines.md ├── Chapter_13_Data_Provenance_and_Supply_Chain_Security.md ├── Chapter_14_Prompt_Injection.md ├── Chapter_15_Data_Leakage_and_Extraction.md ├── Chapter_16_Jailbreaks_and_Bypass_Techniques.md ├── Chapter_17_Plugin_and_API_Exploitation.md ├── Chapter_18_Evasion_Obfuscation_and_Adversarial_Inputs.md ├── Chapter_19_Training_Data_Poisoning.md ├── Chapter_20_Model_Theft_and_Membership_Inference.md ├── Chapter_21_Model_DoS_Resource_Exhaustion.md ├── Chapter_22_Cross_Modal_Multimodal_Attacks.md ├── Chapter_23_Advanced_Persistence_Chaining.md ├── Chapter_24_Social_Engineering_LLMs.md ├── Chapter_25_Advanced_Adversarial_ML.md ├── Chapter_26_Supply_Chain_Attacks_on_AI.md ├── Chapter_27_Federated_Learning_Attacks.md ├── Chapter_28_AI_Privacy_Attacks.md ├── Chapter_29_Model_Inversion_Attacks.md ├── Chapter_30_Backdoor_Attacks.md ├── Chapter_31_AI_System_Reconnaissance.md ├── Chapter_32_Automated_Attack_Frameworks.md ├── Chapter_33_Red_Team_Automation.md ├── Chapter_34_Defense_Evasion_Techniques.md ├── Chapter_35_Post-Exploitation_in_AI_Systems.md ├── Chapter_36_Reporting_and_Communication.md ├── Chapter_37_Remediation_Strategies.md ├── Chapter_38_Continuous_Red_Teaming.md ├── Chapter_39_AI_Bug_Bounty_Programs.md ├── Chapter_40_Compliance_and_Standards.md ├── Chapter_41_Industry_Best_Practices.md ├── Chapter_42_Case_Studies_and_War_Stories.md ├── Chapter_43_Future_of_AI_Red_Teaming.md ├── Chapter_44_Emerging_Threats.md ├── Chapter_45_Building_an_AI_Red_Team_Program.md ├── Chapter_46_Conclusion_and_Next_Steps.md ├── Configuration.md ├── Field_Manual_00_Index.md ├── SUMMARY.md ├── archive │ ├── AI_LLM Red Team Field Manual.docx │ └── AI_LLM Red Team Field Manual.pdf ├── field_manuals │ ├── Field_Manual_01_Prompt_Injection_Playbook.md │ ├── Field_Manual_02_Data_Leakage_Playbook.md │ ├── Field_Manual_03_Jailbreak_Playbook.md │ ├── Field_Manual_04_Plugin_Exploitation_Playbook.md │ ├── Field_Manual_05_Evasion_Playbook.md │ ├── Field_Manual_06_Data_Poisoning_Playbook.md │ ├── Field_Manual_07_Model_Theft_Playbook.md │ ├── Field_Manual_08_DoS_Playbook.md │ ├── Field_Manual_09_Multimodal_Playbook.md │ ├── Field_Manual_10_Persistence_Playbook.md │ ├── Field_Manual_11_Social_Engineering_Playbook.md │ └── Field_Manual_Quick_Reference.md ├── fix_markdown.py └── templates │ └── Full_LLM_RedTeam_Report_Template.docx └── scripts ├── c2_server_elite.py ├── models.py ├── runner.py └── tests ├── __init__.py ├── test_data_exposure.py ├── test_fuzzing.py ├── test_integrity.py ├── test_prompt_injection.py ├── test_safety_bypass.py └── test_tool_misuse.py /.gitbook.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/.gitbook.yaml -------------------------------------------------------------------------------- /DEPLOYMENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/DEPLOYMENT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/_config.yml -------------------------------------------------------------------------------- /assets/banner.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/assets/banner.svg -------------------------------------------------------------------------------- /book.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/book.json -------------------------------------------------------------------------------- /docs/AI LLM Red Team Handbook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/docs/AI LLM Red Team Handbook.md -------------------------------------------------------------------------------- /docs/AI_LLM Red Team Field Manual.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/docs/AI_LLM Red Team Field Manual.md -------------------------------------------------------------------------------- /docs/Building a World-Class AI Red Team.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/docs/Building a World-Class AI Red Team.md -------------------------------------------------------------------------------- /docs/Chapter_01_Introduction_to_AI_Red_Teaming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/docs/Chapter_01_Introduction_to_AI_Red_Teaming.md -------------------------------------------------------------------------------- /docs/Chapter_02_Ethics_Legal_and_Stakeholder_Communication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/docs/Chapter_02_Ethics_Legal_and_Stakeholder_Communication.md -------------------------------------------------------------------------------- /docs/Chapter_03_The_Red_Teamers_Mindset.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/docs/Chapter_03_The_Red_Teamers_Mindset.md -------------------------------------------------------------------------------- /docs/Chapter_04_SOW_Rules_of_Engagement_and_Client_Onboarding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/docs/Chapter_04_SOW_Rules_of_Engagement_and_Client_Onboarding.md -------------------------------------------------------------------------------- /docs/Chapter_05_Threat_Modeling_and_Risk_Analysis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/docs/Chapter_05_Threat_Modeling_and_Risk_Analysis.md -------------------------------------------------------------------------------- /docs/Chapter_06_Scoping_an_Engagement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/docs/Chapter_06_Scoping_an_Engagement.md -------------------------------------------------------------------------------- /docs/Chapter_07_Lab_Setup_and_Environmental_Safety.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/docs/Chapter_07_Lab_Setup_and_Environmental_Safety.md -------------------------------------------------------------------------------- /docs/Chapter_08_Evidence_Documentation_and_Chain_of_Custody.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/docs/Chapter_08_Evidence_Documentation_and_Chain_of_Custody.md -------------------------------------------------------------------------------- /docs/Chapter_09_Writing_Effective_Reports_and_Deliverables.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/docs/Chapter_09_Writing_Effective_Reports_and_Deliverables.md -------------------------------------------------------------------------------- /docs/Chapter_10_Presenting_Results_and_Remediation_Guidance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/docs/Chapter_10_Presenting_Results_and_Remediation_Guidance.md -------------------------------------------------------------------------------- /docs/Chapter_11_Lessons_Learned_and_Building_Future_Readiness.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/docs/Chapter_11_Lessons_Learned_and_Building_Future_Readiness.md -------------------------------------------------------------------------------- /docs/Chapter_12_Retrieval_Augmented_Generation_RAG_Pipelines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/docs/Chapter_12_Retrieval_Augmented_Generation_RAG_Pipelines.md -------------------------------------------------------------------------------- /docs/Chapter_13_Data_Provenance_and_Supply_Chain_Security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/docs/Chapter_13_Data_Provenance_and_Supply_Chain_Security.md -------------------------------------------------------------------------------- /docs/Chapter_14_Prompt_Injection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/docs/Chapter_14_Prompt_Injection.md -------------------------------------------------------------------------------- /docs/Chapter_15_Data_Leakage_and_Extraction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/docs/Chapter_15_Data_Leakage_and_Extraction.md -------------------------------------------------------------------------------- /docs/Chapter_16_Jailbreaks_and_Bypass_Techniques.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/docs/Chapter_16_Jailbreaks_and_Bypass_Techniques.md -------------------------------------------------------------------------------- /docs/Chapter_17_Plugin_and_API_Exploitation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/docs/Chapter_17_Plugin_and_API_Exploitation.md -------------------------------------------------------------------------------- /docs/Chapter_18_Evasion_Obfuscation_and_Adversarial_Inputs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/docs/Chapter_18_Evasion_Obfuscation_and_Adversarial_Inputs.md -------------------------------------------------------------------------------- /docs/Chapter_19_Training_Data_Poisoning.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/docs/Chapter_19_Training_Data_Poisoning.md -------------------------------------------------------------------------------- /docs/Chapter_20_Model_Theft_and_Membership_Inference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/docs/Chapter_20_Model_Theft_and_Membership_Inference.md -------------------------------------------------------------------------------- /docs/Chapter_21_Model_DoS_Resource_Exhaustion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/docs/Chapter_21_Model_DoS_Resource_Exhaustion.md -------------------------------------------------------------------------------- /docs/Chapter_22_Cross_Modal_Multimodal_Attacks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/docs/Chapter_22_Cross_Modal_Multimodal_Attacks.md -------------------------------------------------------------------------------- /docs/Chapter_23_Advanced_Persistence_Chaining.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/docs/Chapter_23_Advanced_Persistence_Chaining.md -------------------------------------------------------------------------------- /docs/Chapter_24_Social_Engineering_LLMs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/docs/Chapter_24_Social_Engineering_LLMs.md -------------------------------------------------------------------------------- /docs/Chapter_25_Advanced_Adversarial_ML.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/docs/Chapter_25_Advanced_Adversarial_ML.md -------------------------------------------------------------------------------- /docs/Chapter_26_Supply_Chain_Attacks_on_AI.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/docs/Chapter_26_Supply_Chain_Attacks_on_AI.md -------------------------------------------------------------------------------- /docs/Chapter_27_Federated_Learning_Attacks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/docs/Chapter_27_Federated_Learning_Attacks.md -------------------------------------------------------------------------------- /docs/Chapter_28_AI_Privacy_Attacks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/docs/Chapter_28_AI_Privacy_Attacks.md -------------------------------------------------------------------------------- /docs/Chapter_29_Model_Inversion_Attacks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/docs/Chapter_29_Model_Inversion_Attacks.md -------------------------------------------------------------------------------- /docs/Chapter_30_Backdoor_Attacks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/docs/Chapter_30_Backdoor_Attacks.md -------------------------------------------------------------------------------- /docs/Chapter_31_AI_System_Reconnaissance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/docs/Chapter_31_AI_System_Reconnaissance.md -------------------------------------------------------------------------------- /docs/Chapter_32_Automated_Attack_Frameworks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/docs/Chapter_32_Automated_Attack_Frameworks.md -------------------------------------------------------------------------------- /docs/Chapter_33_Red_Team_Automation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/docs/Chapter_33_Red_Team_Automation.md -------------------------------------------------------------------------------- /docs/Chapter_34_Defense_Evasion_Techniques.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/docs/Chapter_34_Defense_Evasion_Techniques.md -------------------------------------------------------------------------------- /docs/Chapter_35_Post-Exploitation_in_AI_Systems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/docs/Chapter_35_Post-Exploitation_in_AI_Systems.md -------------------------------------------------------------------------------- /docs/Chapter_36_Reporting_and_Communication.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/docs/Chapter_36_Reporting_and_Communication.md -------------------------------------------------------------------------------- /docs/Chapter_37_Remediation_Strategies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/docs/Chapter_37_Remediation_Strategies.md -------------------------------------------------------------------------------- /docs/Chapter_38_Continuous_Red_Teaming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/docs/Chapter_38_Continuous_Red_Teaming.md -------------------------------------------------------------------------------- /docs/Chapter_39_AI_Bug_Bounty_Programs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/docs/Chapter_39_AI_Bug_Bounty_Programs.md -------------------------------------------------------------------------------- /docs/Chapter_40_Compliance_and_Standards.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/docs/Chapter_40_Compliance_and_Standards.md -------------------------------------------------------------------------------- /docs/Chapter_41_Industry_Best_Practices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/docs/Chapter_41_Industry_Best_Practices.md -------------------------------------------------------------------------------- /docs/Chapter_42_Case_Studies_and_War_Stories.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/docs/Chapter_42_Case_Studies_and_War_Stories.md -------------------------------------------------------------------------------- /docs/Chapter_43_Future_of_AI_Red_Teaming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/docs/Chapter_43_Future_of_AI_Red_Teaming.md -------------------------------------------------------------------------------- /docs/Chapter_44_Emerging_Threats.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/docs/Chapter_44_Emerging_Threats.md -------------------------------------------------------------------------------- /docs/Chapter_45_Building_an_AI_Red_Team_Program.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/docs/Chapter_45_Building_an_AI_Red_Team_Program.md -------------------------------------------------------------------------------- /docs/Chapter_46_Conclusion_and_Next_Steps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/docs/Chapter_46_Conclusion_and_Next_Steps.md -------------------------------------------------------------------------------- /docs/Configuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/docs/Configuration.md -------------------------------------------------------------------------------- /docs/Field_Manual_00_Index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/docs/Field_Manual_00_Index.md -------------------------------------------------------------------------------- /docs/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/docs/SUMMARY.md -------------------------------------------------------------------------------- /docs/archive/AI_LLM Red Team Field Manual.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/docs/archive/AI_LLM Red Team Field Manual.docx -------------------------------------------------------------------------------- /docs/archive/AI_LLM Red Team Field Manual.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/docs/archive/AI_LLM Red Team Field Manual.pdf -------------------------------------------------------------------------------- /docs/field_manuals/Field_Manual_01_Prompt_Injection_Playbook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/docs/field_manuals/Field_Manual_01_Prompt_Injection_Playbook.md -------------------------------------------------------------------------------- /docs/field_manuals/Field_Manual_02_Data_Leakage_Playbook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/docs/field_manuals/Field_Manual_02_Data_Leakage_Playbook.md -------------------------------------------------------------------------------- /docs/field_manuals/Field_Manual_03_Jailbreak_Playbook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/docs/field_manuals/Field_Manual_03_Jailbreak_Playbook.md -------------------------------------------------------------------------------- /docs/field_manuals/Field_Manual_04_Plugin_Exploitation_Playbook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/docs/field_manuals/Field_Manual_04_Plugin_Exploitation_Playbook.md -------------------------------------------------------------------------------- /docs/field_manuals/Field_Manual_05_Evasion_Playbook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/docs/field_manuals/Field_Manual_05_Evasion_Playbook.md -------------------------------------------------------------------------------- /docs/field_manuals/Field_Manual_06_Data_Poisoning_Playbook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/docs/field_manuals/Field_Manual_06_Data_Poisoning_Playbook.md -------------------------------------------------------------------------------- /docs/field_manuals/Field_Manual_07_Model_Theft_Playbook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/docs/field_manuals/Field_Manual_07_Model_Theft_Playbook.md -------------------------------------------------------------------------------- /docs/field_manuals/Field_Manual_08_DoS_Playbook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/docs/field_manuals/Field_Manual_08_DoS_Playbook.md -------------------------------------------------------------------------------- /docs/field_manuals/Field_Manual_09_Multimodal_Playbook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/docs/field_manuals/Field_Manual_09_Multimodal_Playbook.md -------------------------------------------------------------------------------- /docs/field_manuals/Field_Manual_10_Persistence_Playbook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/docs/field_manuals/Field_Manual_10_Persistence_Playbook.md -------------------------------------------------------------------------------- /docs/field_manuals/Field_Manual_11_Social_Engineering_Playbook.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/docs/field_manuals/Field_Manual_11_Social_Engineering_Playbook.md -------------------------------------------------------------------------------- /docs/field_manuals/Field_Manual_Quick_Reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/docs/field_manuals/Field_Manual_Quick_Reference.md -------------------------------------------------------------------------------- /docs/fix_markdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/docs/fix_markdown.py -------------------------------------------------------------------------------- /docs/templates/Full_LLM_RedTeam_Report_Template.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/docs/templates/Full_LLM_RedTeam_Report_Template.docx -------------------------------------------------------------------------------- /scripts/c2_server_elite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/scripts/c2_server_elite.py -------------------------------------------------------------------------------- /scripts/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/scripts/models.py -------------------------------------------------------------------------------- /scripts/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/scripts/runner.py -------------------------------------------------------------------------------- /scripts/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/scripts/tests/__init__.py -------------------------------------------------------------------------------- /scripts/tests/test_data_exposure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/scripts/tests/test_data_exposure.py -------------------------------------------------------------------------------- /scripts/tests/test_fuzzing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/scripts/tests/test_fuzzing.py -------------------------------------------------------------------------------- /scripts/tests/test_integrity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/scripts/tests/test_integrity.py -------------------------------------------------------------------------------- /scripts/tests/test_prompt_injection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/scripts/tests/test_prompt_injection.py -------------------------------------------------------------------------------- /scripts/tests/test_safety_bypass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/scripts/tests/test_safety_bypass.py -------------------------------------------------------------------------------- /scripts/tests/test_tool_misuse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Shiva108/ai-llm-red-team-handbook/HEAD/scripts/tests/test_tool_misuse.py --------------------------------------------------------------------------------