Views
No views yet
| # | Capability | Supported |
|---|---|---|
| 1 | SQL Injection Analysis | ✅ |
| 2 | SSRF Detection | ✅ |
| 3 | XSS Analysis | ✅ |
| 4 | RCE Exploitation | ✅ |
| 5 | IDOR Detection | ✅ |
| 6 | CSRF Analysis | ✅ |
| 7 | LFI Detection | ✅ |
| 8 | Open Redirect | ✅ |
| 9 | CORS Misconfig | ✅ |
| 10 | Auth Bypass | ✅ |
| 11 | Business Logic | ✅ |
| 12 | Race Conditions | ✅ |
| 13 | LLM Prompt Inject | ✅ |
1from mlx_lm import load, generate
2
3model, tokenizer = load("BinSaqban/SAIF-v2-Pro")
4prompt = "Analyze this SSRF vulnerability: ..."
5messages = [{"role": "user", "content": prompt}]
6prompt_text = tokenizer.apply_chat_template(messages, tokenize=False)
7response = generate(model, tokenizer, prompt=prompt_text, max_tokens=512)
8print(response)mlx_lm.server --model BinSaqban/SAIF-v2-Pro --port 8452