GGUF
conversational
saki007ster commited on
Commit
16953f3
Β·
verified Β·
1 Parent(s): 1842e1c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +191 -34
README.md CHANGED
@@ -1,34 +1,191 @@
1
- ## πŸ›‘οΈ CybersecurityRiskAnalyst β€” Cybersecurity Risk Assessment LLM
2
-
3
- CybersecurityRiskAnalyst is a custom fine-tuned Large Language Model (LLM) designed to act as a senior cybersecurity risk assessor and strategist. It provides comprehensive and actionable risk assessments for organizations based on their current security posture, infrastructure, and strategic goals.
4
-
5
- ### πŸš€ Key Features
6
- - Risk Posture Evaluation: Assesses current cybersecurity maturity based on provided company data.
7
- - Framework Mapping: Aligns recommendations with NIST CSF, CIS Controls, MITRE ATT&CK, and ISO/IEC 27001.
8
- - Threat Intelligence Awareness: Updated knowledge of exploits, zero-day vulnerabilities, and adversarial tactics.
9
- - Gap Analysis: Identifies areas of weakness compared to industry best practices.
10
- - Prioritized Recommendations: Categorizes findings by risk level and provides short/long-term remediations.
11
- - Human-Centric Reports: Outputs are structured for both technical and executive audiences.
12
- - Explainability: Justifies each recommendation with clear rationale to support decision-making.
13
-
14
- ### πŸ“ How to Use
15
- Start by feeding the model a detailed company profile, including:
16
- - Type of industry, company size
17
- - Existing tech stack and infrastructure
18
- - Compliance mandates (e.g., HIPAA, GDPR, PCI-DSS)
19
- - Security policies and access controls
20
- - Any known incidents or concerns
21
-
22
- ##### Example prompt:
23
- We are a mid-sized fintech company with hybrid cloud architecture (AWS + Azure), using Okta for IAM, Kubernetes for deployment, and Office 365 for collaboration. No SIEM is currently in place. Data is encrypted at rest but not in transit. We are PCI-DSS compliant but not SOC2. What is our risk posture, and what should we aim for?
24
-
25
- ##### πŸ“„ Sample Output Structure
26
-
27
- The model will respond with :
28
- > Executive Summary, Current State Assessment, Risk Matrix (Low / Medium / High), Gap Analysis vs. Standards, Recommended Actions, Suggested Tools and Controls, Strategic Roadmap
29
-
30
- ### πŸ“š References
31
- - NIST Cybersecurity Framework (CSF)
32
- - MITRE ATT&CK
33
- - CIS Critical Security Controls
34
- - ISO/IEC 27001
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # CybersecurityRiskAnalyst
2
+
3
+ > ⭐ **Find this useful? Clone it, [star the repo](https://github.com/ravyg/cybersecurity-risk-analyst), and cite the paper.** If you use this model in academic or professional work, please cite [arXiv:2603.20131](https://arxiv.org/abs/2603.20131) (see [How to cite](#how-to-cite)). Model DOI: [`10.57967/hf/9777`](https://doi.org/10.57967/hf/9777).
4
+
5
+ **CybersecurityRiskAnalyst** is a custom fine-tuned Large Language Model (LLM) designed to act as a senior cybersecurity risk assessor and strategist. It is published on Ollama and has **1,400+ downloads**. This repository makes the model formally citable and links it to the research paper it accompanies.
6
+
7
+ - **Model:** [`saki007ster/CybersecurityRiskAnalyst`](https://ollama.com/saki007ster/CybersecurityRiskAnalyst) on Ollama
8
+ - **Base model:** Llama 3.1 8B (`llama` architecture, 8.03B parameters)
9
+ - **Quantization:** Q4_0 Β· **Size:** 4.7 GB Β· **Context window:** 128K
10
+ - **Tags:** text, cybersecurity, risk assessment
11
+
12
+ ### What it does
13
+
14
+ - **Risk Posture Evaluation** β€” assesses an organization's overall security posture
15
+ - **Framework Mapping** β€” NIST CSF, CIS Controls, MITRE ATT&CK, ISO/IEC 27001
16
+ - **Threat Intelligence Awareness**
17
+ - **Gap Analysis**
18
+ - **Prioritized Recommendations**
19
+ - **Human-Centric Reports** β€” clear, decision-ready output
20
+ - **Explainability** β€” reasoning you can follow and audit
21
+
22
+ ---
23
+
24
+ ## DOI
25
+
26
+ [![DOI](https://img.shields.io/badge/DOI-10.57967%2Fhf%2F9777-blue)](https://doi.org/10.57967/hf/9777)
27
+
28
+ **Model DOI (Hugging Face):** [`10.57967/hf/9777`](https://doi.org/10.57967/hf/9777)
29
+
30
+ ---
31
+
32
+ ## Install & Use
33
+
34
+ Requires [Ollama](https://ollama.com/download).
35
+
36
+ ```bash
37
+ # Pull the model
38
+ ollama pull saki007ster/CybersecurityRiskAnalyst
39
+
40
+ # Or pull-and-run in one step
41
+ ollama run saki007ster/CybersecurityRiskAnalyst
42
+ ```
43
+
44
+ ### Minimal usage example
45
+
46
+ ```bash
47
+ ollama run saki007ster/CybersecurityRiskAnalyst \
48
+ "We run a 200-person fintech on AWS with no formal incident response plan. \
49
+ Assess our top cyber risks and map them to NIST CSF."
50
+ ```
51
+
52
+ Or via the Ollama HTTP API:
53
+
54
+ ```bash
55
+ curl http://localhost:11434/api/generate -d '{
56
+ "model": "saki007ster/CybersecurityRiskAnalyst",
57
+ "prompt": "Perform a NIST CSF gap analysis for a small healthcare provider storing PHI in a single on-prem server.",
58
+ "stream": false
59
+ }'
60
+ ```
61
+
62
+ Python:
63
+
64
+ ```python
65
+ import ollama
66
+
67
+ response = ollama.chat(
68
+ model="saki007ster/CybersecurityRiskAnalyst",
69
+ messages=[{
70
+ "role": "user",
71
+ "content": "Prioritize remediation for an org with exposed RDP, no MFA, and unpatched VPN.",
72
+ }],
73
+ )
74
+ print(response["message"]["content"])
75
+ ```
76
+
77
+ ---
78
+
79
+ ## How to cite
80
+
81
+ This model accompanies the paper below β€” **if you use the model in academic or professional work, please cite the paper.**
82
+
83
+ > Gupta, Ravish; Kumar, Saket; Sharma, Shreeya; Dang, Maulik; and Aggarwal, Abhishek (2026).
84
+ > *An Agentic Multi-Agent Architecture for Cybersecurity Risk Management.* arXiv preprint arXiv:2603.20131.
85
+
86
+ <details open>
87
+ <summary><b>APA</b></summary>
88
+
89
+ ```
90
+ Gupta, R., Kumar, S., Sharma, S., Dang, M., & Aggarwal, A. (2026). An Agentic Multi-Agent Architecture for Cybersecurity Risk Management. arXiv preprint arXiv:2603.20131.
91
+ ```
92
+ </details>
93
+
94
+ <details>
95
+ <summary><b>MLA</b></summary>
96
+
97
+ ```
98
+ Gupta, Ravish, et al. "An Agentic Multi-Agent Architecture for Cybersecurity Risk Management." arXiv preprint arXiv:2603.20131 (2026).
99
+ ```
100
+ </details>
101
+
102
+ <details>
103
+ <summary><b>Chicago</b></summary>
104
+
105
+ ```
106
+ Gupta, Ravish, Saket Kumar, Shreeya Sharma, Maulik Dang, and Abhishek Aggarwal. "An Agentic Multi-Agent Architecture for Cybersecurity Risk Management." arXiv preprint arXiv:2603.20131 (2026).
107
+ ```
108
+ </details>
109
+
110
+ <details>
111
+ <summary><b>Harvard</b></summary>
112
+
113
+ ```
114
+ Gupta, R., Kumar, S., Sharma, S., Dang, M. and Aggarwal, A., 2026. An Agentic Multi-Agent Architecture for Cybersecurity Risk Management. arXiv preprint arXiv:2603.20131.
115
+ ```
116
+ </details>
117
+
118
+ <details>
119
+ <summary><b>Vancouver</b></summary>
120
+
121
+ ```
122
+ Gupta R, Kumar S, Sharma S, Dang M, Aggarwal A. An Agentic Multi-Agent Architecture for Cybersecurity Risk Management. arXiv preprint arXiv:2603.20131. 2026.
123
+ ```
124
+ </details>
125
+
126
+ <details>
127
+ <summary><b>BibTeX</b></summary>
128
+
129
+ ```bibtex
130
+ @article{gupta2026agentic,
131
+ title = {An Agentic Multi-Agent Architecture for Cybersecurity Risk Management},
132
+ author = {Gupta, Ravish and Kumar, Saket and Sharma, Shreeya and Dang, Maulik and Aggarwal, Abhishek},
133
+ journal = {arXiv preprint arXiv:2603.20131},
134
+ year = {2026}
135
+ }
136
+ ```
137
+ </details>
138
+
139
+ A machine-readable [`CITATION.cff`](CITATION.cff) is also provided β€” GitHub will render a "Cite this repository" button from it.
140
+
141
+ ### Citing the model artifact directly (Hugging Face DOI)
142
+
143
+ To cite the **model itself** (not the paper), use its Hugging Face DOI:
144
+
145
+ ```bibtex
146
+ @misc{kumar2026cybersecurityriskanalyst,
147
+ author = {Saket Kumar and Ravish Gupta},
148
+ title = {CybersecurityRiskAnalyst (Revision 1842e1c)},
149
+ year = {2026},
150
+ url = {https://huggingface.co/saki007ster/CybersecurityRiskAnalyst},
151
+ doi = {10.57967/hf/9777},
152
+ publisher = {Hugging Face}
153
+ }
154
+ ```
155
+
156
+ > **The model artifact was built by Saket Kumar and Ravish Gupta** (hence two authors on the model DOI). **The paper ([arXiv:2603.20131](https://arxiv.org/abs/2603.20131)) has five authors** β€” for academic/professional use, prefer the paper citation above; use the model DOI for reproducibility/data-availability statements.
157
+
158
+ ---
159
+
160
+ ## Authors & attribution
161
+
162
+ **Model** (the fine-tuned artifact β€” Ollama & Hugging Face, DOI `10.57967/hf/9777`):
163
+
164
+ - **Saket Kumar** β€” *model author / maintainer* ([`saki007ster`](https://huggingface.co/saki007ster))
165
+ - **Ravish Gupta**
166
+
167
+ **Paper** (*An Agentic Multi-Agent Architecture for Cybersecurity Risk Management*, arXiv:2603.20131):
168
+
169
+ - **Ravish Gupta**
170
+ - **Saket Kumar**
171
+ - **Shreeya Sharma**
172
+ - **Maulik Dang**
173
+ - **Abhishek Aggarwal**
174
+
175
+ ---
176
+
177
+ ## License
178
+
179
+ This model is a fine-tuned derivative of **Meta Llama 3.1 8B** and is therefore governed by the **[Llama 3.1 Community License Agreement](LICENSE)** (Version Release Date: July 23, 2024).
180
+
181
+ - Built with Llama. Use is subject to Meta's [Acceptable Use Policy](https://www.llama.com/llama3_1/use-policy/).
182
+ - The base-model license terms are inherited by this derivative; see [LICENSE](LICENSE) for the full text.
183
+
184
+ ---
185
+
186
+ ## Related
187
+
188
+ - πŸ“„ **Paper:** [An Agentic Multi-Agent Architecture for Cybersecurity Risk Management](https://arxiv.org/abs/2603.20131) (arXiv:2603.20131)
189
+ - πŸ€– **Model (Ollama):** [saki007ster/CybersecurityRiskAnalyst](https://ollama.com/saki007ster/CybersecurityRiskAnalyst)
190
+ - πŸ€— **Model (Hugging Face):** [saki007ster/CybersecurityRiskAnalyst](https://huggingface.co/saki007ster/CybersecurityRiskAnalyst) Β· DOI [`10.57967/hf/9777`](https://doi.org/10.57967/hf/9777)
191
+ - πŸ›  **Modelfile:** [Modelfile](Modelfile) in this repo