Downloads · 30 days
25
11% of all-time downloads
pyToshka/aws-security-analyst
aws-security-analyst is a text generation model from pyToshka. Use it when you need the model to write or continue text. It is set up for transformers. The card lists the license as llama3.1.
- Model Name: aws-security-analyst - Base Model: OpenNix base model(LLaMA 3.1 8B based) - License: llama3.1 - Model Type: Causal Language Model (Fine-tuned with LoRA for AWS Security) - Architecture: 8B parameters - S…
Downloads · 30 days
25
11% of all-time downloads
All-time downloads
224
Public
Parameters
8B
32.1 GB on disk
Likes
3
Public
Click a slice to open those files.
.safetensors16.1 GB · 100%
From the Hugging Face model README
LLaMA 3.1 8B Instruct model fine-tuned for AWS cloud security event analysis.
Analyzes events from 20+ AWS security sources including CloudTrail, GuardDuty, Security Hub, Macie, Inspector, Config, VPC Flow Logs, WAF, and more.
Distribution:
# Example usage
from transformers import AutoModelForCausalLM, AutoTokenizer
model = AutoModelForCausalLM.from_pretrained("pyToshka/aws-security-analyst")
tokenizer = AutoTokenizer.from_pretrained("pyToshka/aws-security-analyst")
# Analyze AWS GuardDuty finding
prompt = """Analyze this AWS security event:
Event Source: GuardDuty
Finding Type: UnauthorizedAccess:EC2/SSHBruteForce
Severity: 8.0
Resource: EC2 instance i-1234567890abcdef0
Source IP: 45.142.120.10
Provide:
1. Threat assessment
2. MITRE ATT&CK techniques
3. Compliance impact
4. Recommended actions
"""
inputs = tokenizer(prompt, return_tensors="pt")
outputs = model.generate(**inputs, max_new_tokens=512)
response = tokenizer.decode(outputs[0])
If you use this model in your research or application, please cite:
@misc{{wazuh_aws_security_llama_aws_security_analyst,
title={{Wazuh AWS Security Analyst based on LLaMA 3.1 8B}},
author={{pyToshka}},
year={{2025}},
publisher={{HuggingFace}},
url={{https://huggingface.co/pyToshka/aws-security-analyst}}
}}
Built with:
This model inherits the LLaMA 3.1 Community License from the base model.
Issues: Please open an issue on the repository
This model is provided for research and educational purposes. Always validate outputs with human security expertise before taking action on security incidents.