strix-agent 0.1.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- strix/__init__.py +0 -0
- strix/agents/StrixAgent/__init__.py +4 -0
- strix/agents/StrixAgent/strix_agent.py +60 -0
- strix/agents/StrixAgent/system_prompt.jinja +504 -0
- strix/agents/__init__.py +10 -0
- strix/agents/base_agent.py +394 -0
- strix/agents/state.py +139 -0
- strix/cli/__init__.py +4 -0
- strix/cli/app.py +1124 -0
- strix/cli/assets/cli.tcss +680 -0
- strix/cli/main.py +542 -0
- strix/cli/tool_components/__init__.py +39 -0
- strix/cli/tool_components/agents_graph_renderer.py +129 -0
- strix/cli/tool_components/base_renderer.py +61 -0
- strix/cli/tool_components/browser_renderer.py +107 -0
- strix/cli/tool_components/file_edit_renderer.py +95 -0
- strix/cli/tool_components/finish_renderer.py +32 -0
- strix/cli/tool_components/notes_renderer.py +108 -0
- strix/cli/tool_components/proxy_renderer.py +255 -0
- strix/cli/tool_components/python_renderer.py +34 -0
- strix/cli/tool_components/registry.py +72 -0
- strix/cli/tool_components/reporting_renderer.py +53 -0
- strix/cli/tool_components/scan_info_renderer.py +58 -0
- strix/cli/tool_components/terminal_renderer.py +99 -0
- strix/cli/tool_components/thinking_renderer.py +29 -0
- strix/cli/tool_components/user_message_renderer.py +43 -0
- strix/cli/tool_components/web_search_renderer.py +28 -0
- strix/cli/tracer.py +308 -0
- strix/llm/__init__.py +14 -0
- strix/llm/config.py +19 -0
- strix/llm/llm.py +310 -0
- strix/llm/memory_compressor.py +206 -0
- strix/llm/request_queue.py +63 -0
- strix/llm/utils.py +84 -0
- strix/prompts/__init__.py +113 -0
- strix/prompts/coordination/root_agent.jinja +41 -0
- strix/prompts/vulnerabilities/authentication_jwt.jinja +129 -0
- strix/prompts/vulnerabilities/business_logic.jinja +143 -0
- strix/prompts/vulnerabilities/csrf.jinja +168 -0
- strix/prompts/vulnerabilities/idor.jinja +164 -0
- strix/prompts/vulnerabilities/race_conditions.jinja +194 -0
- strix/prompts/vulnerabilities/rce.jinja +222 -0
- strix/prompts/vulnerabilities/sql_injection.jinja +216 -0
- strix/prompts/vulnerabilities/ssrf.jinja +168 -0
- strix/prompts/vulnerabilities/xss.jinja +221 -0
- strix/prompts/vulnerabilities/xxe.jinja +276 -0
- strix/runtime/__init__.py +19 -0
- strix/runtime/docker_runtime.py +298 -0
- strix/runtime/runtime.py +25 -0
- strix/runtime/tool_server.py +97 -0
- strix/tools/__init__.py +64 -0
- strix/tools/agents_graph/__init__.py +16 -0
- strix/tools/agents_graph/agents_graph_actions.py +610 -0
- strix/tools/agents_graph/agents_graph_actions_schema.xml +223 -0
- strix/tools/argument_parser.py +120 -0
- strix/tools/browser/__init__.py +4 -0
- strix/tools/browser/browser_actions.py +236 -0
- strix/tools/browser/browser_actions_schema.xml +183 -0
- strix/tools/browser/browser_instance.py +533 -0
- strix/tools/browser/tab_manager.py +342 -0
- strix/tools/executor.py +302 -0
- strix/tools/file_edit/__init__.py +4 -0
- strix/tools/file_edit/file_edit_actions.py +141 -0
- strix/tools/file_edit/file_edit_actions_schema.xml +128 -0
- strix/tools/finish/__init__.py +4 -0
- strix/tools/finish/finish_actions.py +167 -0
- strix/tools/finish/finish_actions_schema.xml +45 -0
- strix/tools/notes/__init__.py +14 -0
- strix/tools/notes/notes_actions.py +191 -0
- strix/tools/notes/notes_actions_schema.xml +150 -0
- strix/tools/proxy/__init__.py +20 -0
- strix/tools/proxy/proxy_actions.py +101 -0
- strix/tools/proxy/proxy_actions_schema.xml +267 -0
- strix/tools/proxy/proxy_manager.py +785 -0
- strix/tools/python/__init__.py +4 -0
- strix/tools/python/python_actions.py +47 -0
- strix/tools/python/python_actions_schema.xml +131 -0
- strix/tools/python/python_instance.py +172 -0
- strix/tools/python/python_manager.py +131 -0
- strix/tools/registry.py +196 -0
- strix/tools/reporting/__init__.py +6 -0
- strix/tools/reporting/reporting_actions.py +63 -0
- strix/tools/reporting/reporting_actions_schema.xml +30 -0
- strix/tools/terminal/__init__.py +4 -0
- strix/tools/terminal/terminal_actions.py +53 -0
- strix/tools/terminal/terminal_actions_schema.xml +114 -0
- strix/tools/terminal/terminal_instance.py +231 -0
- strix/tools/terminal/terminal_manager.py +191 -0
- strix/tools/thinking/__init__.py +4 -0
- strix/tools/thinking/thinking_actions.py +18 -0
- strix/tools/thinking/thinking_actions_schema.xml +52 -0
- strix/tools/web_search/__init__.py +4 -0
- strix/tools/web_search/web_search_actions.py +80 -0
- strix/tools/web_search/web_search_actions_schema.xml +83 -0
- strix_agent-0.1.1.dist-info/LICENSE +201 -0
- strix_agent-0.1.1.dist-info/METADATA +200 -0
- strix_agent-0.1.1.dist-info/RECORD +99 -0
- strix_agent-0.1.1.dist-info/WHEEL +4 -0
- strix_agent-0.1.1.dist-info/entry_points.txt +3 -0
@@ -0,0 +1,200 @@
|
|
1
|
+
Metadata-Version: 2.3
|
2
|
+
Name: strix-agent
|
3
|
+
Version: 0.1.1
|
4
|
+
Summary: Strix: Open-source AI Hackers for your apps
|
5
|
+
License: Apache-2.0
|
6
|
+
Keywords: cybersecurity,security,vulnerability,scanner,pentest,agent,ai,cli
|
7
|
+
Author: Strix
|
8
|
+
Author-email: hi@usestrix.com
|
9
|
+
Requires-Python: >=3.12,<4.0
|
10
|
+
Classifier: Development Status :: 3 - Alpha
|
11
|
+
Classifier: Environment :: Console
|
12
|
+
Classifier: Intended Audience :: Information Technology
|
13
|
+
Classifier: Intended Audience :: System Administrators
|
14
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
15
|
+
Classifier: Programming Language :: Python
|
16
|
+
Classifier: Programming Language :: Python :: 3
|
17
|
+
Classifier: Programming Language :: Python :: 3.12
|
18
|
+
Classifier: Programming Language :: Python :: 3.13
|
19
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
20
|
+
Classifier: Topic :: Security
|
21
|
+
Requires-Dist: boto3 (>=1.37.2,<1.38.0)
|
22
|
+
Requires-Dist: daytona (>=0.21.5,<0.22.0)
|
23
|
+
Requires-Dist: docker (>=7.1.0,<8.0.0)
|
24
|
+
Requires-Dist: fastapi (>=0.116.1,<0.117.0)
|
25
|
+
Requires-Dist: gql[requests] (>=3.5.3,<4.0.0)
|
26
|
+
Requires-Dist: ipython (>=9.3.0,<10.0.0)
|
27
|
+
Requires-Dist: litellm (>=1.72.1,<2.0.0)
|
28
|
+
Requires-Dist: numpydoc (>=1.8.0,<2.0.0)
|
29
|
+
Requires-Dist: openhands-aci (>=0.3.0,<0.4.0)
|
30
|
+
Requires-Dist: playwright (>=1.48.0,<2.0.0)
|
31
|
+
Requires-Dist: pydantic[email] (>=2.11.3,<3.0.0)
|
32
|
+
Requires-Dist: pyte (>=0.8.1,<0.9.0)
|
33
|
+
Requires-Dist: requests (>=2.32.0,<3.0.0)
|
34
|
+
Requires-Dist: rich (>=14.0.0,<15.0.0)
|
35
|
+
Requires-Dist: starlette (>=0.47.2,<0.48.0)
|
36
|
+
Requires-Dist: tenacity (>=9.0.0,<10.0.0)
|
37
|
+
Requires-Dist: textual (>=4.0.0,<5.0.0)
|
38
|
+
Requires-Dist: uvicorn (>=0.32.0,<0.33.0)
|
39
|
+
Requires-Dist: websockets (>=15.0.1,<16.0.0)
|
40
|
+
Requires-Dist: xmltodict (>=0.13.0,<0.14.0)
|
41
|
+
Description-Content-Type: text/markdown
|
42
|
+
|
43
|
+
<div align="center">
|
44
|
+
|
45
|
+
# Strix
|
46
|
+
|
47
|
+
### Open-source AI hackers for your apps
|
48
|
+
|
49
|
+
[](LICENSE)
|
50
|
+
[](https://vercel.com/ai-accelerator)
|
51
|
+
[](https://github.com/usestrix/strix)
|
52
|
+
[](https://discord.gg/yduEyduBsp)
|
53
|
+
|
54
|
+
**⚡ Use it to hack your apps before the bad guys do ⚡**
|
55
|
+
|
56
|
+
</div>
|
57
|
+
|
58
|
+
<div align="center">
|
59
|
+
<img src=".github/screenshot.png" alt="Strix Demo" width="800" style="border-radius: 16px; box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.2); transform: perspective(1000px) rotateX(2deg); transition: transform 0.3s ease;">
|
60
|
+
</div>
|
61
|
+
|
62
|
+
---
|
63
|
+
|
64
|
+
## 🚨 The AI Security Crisis
|
65
|
+
|
66
|
+
Everyone's shipping code faster than ever. Cursor, Windsurf, and Claude made coding easy - but QA and security testing are now the real bottlenecks.
|
67
|
+
|
68
|
+
> **Number of security vulnerabilities doubled post-AI.**
|
69
|
+
|
70
|
+
Traditional security tools weren't designed for this. SAST was a temporary fix when manual pentesting cost $10k+ and took weeks. Now, Strix delivers real security testing rapidly.
|
71
|
+
|
72
|
+
**The solution:** Enable developers to use AI coding at full speed, without compromising on security.
|
73
|
+
|
74
|
+
## 🦉 Strix Overview
|
75
|
+
|
76
|
+
Strix are autonomous AI agents that act just like real hackers - they run your code dynamically, find vulnerabilities, and validate them through actual exploitation. Built for developers and security teams who need fast, accurate security testing without the overhead of manual pentesting or the false positives of static analysis tools.
|
77
|
+
|
78
|
+
### 🚀 Quick Start
|
79
|
+
|
80
|
+
```bash
|
81
|
+
# Install
|
82
|
+
pipx install strix-agent
|
83
|
+
|
84
|
+
# Configure AI provider
|
85
|
+
export STRIX_LLM="anthropic/claude-sonnet-4-20250514"
|
86
|
+
export LLM_API_KEY="your-api-key"
|
87
|
+
|
88
|
+
# Run security assessment
|
89
|
+
strix --target https://your-app.com
|
90
|
+
```
|
91
|
+
|
92
|
+
## Why Use Strix
|
93
|
+
|
94
|
+
- **Full Hacker Arsenal** - All the tools a professional hacker needs, built into the agents
|
95
|
+
- **Real Validation** - Dynamic testing and actual exploitation, thus much fewer false positives
|
96
|
+
- **Developer-First** - Seamlessly integrates into existing development workflows
|
97
|
+
- **Auto-Fix & Reporting** - Automated patching with detailed remediation and security reports
|
98
|
+
|
99
|
+
## ✨ Features
|
100
|
+
|
101
|
+
### 🛠️ Agentic Security Tools
|
102
|
+
|
103
|
+
- **🔌 Full HTTP Proxy** - Full request/response manipulation and analysis
|
104
|
+
- **🌐 Browser Automation** - Multi-tab browser for testing of XSS, CSRF, auth flows
|
105
|
+
- **💻 Terminal Environments** - Interactive shells for command execution and testing
|
106
|
+
- **🐍 Python Runtime** - Custom exploit development and validation
|
107
|
+
- **🔍 Reconnaissance** - Automated OSINT and attack surface mapping
|
108
|
+
- **📁 Code Analysis** - Static and dynamic analysis capabilities
|
109
|
+
- **📝 Knowledge Management** - Structured findings and attack documentation
|
110
|
+
|
111
|
+
### 🎯 Comprehensive Vulnerability Detection
|
112
|
+
|
113
|
+
- **Access Control** - IDOR, privilege escalation, auth bypass
|
114
|
+
- **Injection Attacks** - SQL, NoSQL, command injection
|
115
|
+
- **Server-Side** - SSRF, XXE, deserialization flaws
|
116
|
+
- **Client-Side** - XSS, prototype pollution, DOM vulnerabilities
|
117
|
+
- **Business Logic** - Race conditions, workflow manipulation
|
118
|
+
- **Authentication** - JWT vulnerabilities, session management
|
119
|
+
- **Infrastructure** - Misconfigurations, exposed services
|
120
|
+
|
121
|
+
### 🕸️ Graph of Agents
|
122
|
+
|
123
|
+
- **Distributed Workflows** - Specialized agents for different attacks and assets
|
124
|
+
- **Scalable Testing** - Parallel execution for fast comprehensive coverage
|
125
|
+
- **Dynamic Coordination** - Agents collaborate and share discoveries
|
126
|
+
|
127
|
+
|
128
|
+
## 💻 Usage Examples
|
129
|
+
|
130
|
+
```bash
|
131
|
+
# Local codebase analysis
|
132
|
+
strix --target ./app-directory
|
133
|
+
|
134
|
+
# Repository security review
|
135
|
+
strix --target https://github.com/org/repo
|
136
|
+
|
137
|
+
# Web application assessment
|
138
|
+
strix --target https://your-app.com
|
139
|
+
|
140
|
+
# Focused testing
|
141
|
+
strix --target api.your-app.com --instruction "Prioritize authentication and authorization testing"
|
142
|
+
```
|
143
|
+
|
144
|
+
### ⚙️ Configuration
|
145
|
+
|
146
|
+
```bash
|
147
|
+
# Required
|
148
|
+
export STRIX_LLM="anthropic/claude-sonnet-4-20250514"
|
149
|
+
export LLM_API_KEY="your-api-key"
|
150
|
+
|
151
|
+
# Recommended
|
152
|
+
export PERPLEXITY_API_KEY="your-api-key"
|
153
|
+
```
|
154
|
+
|
155
|
+
[📚 View supported AI models](https://docs.litellm.ai/docs/providers)
|
156
|
+
|
157
|
+
## 🏆 Enterprise Platform
|
158
|
+
|
159
|
+
Our managed platform provides:
|
160
|
+
|
161
|
+
- **📈 Executive Dashboards**
|
162
|
+
- **🧠 Custom Fine-Tuned Models**
|
163
|
+
- **⚙️ CI/CD Integration**
|
164
|
+
- **🔍 Large-Scale Scanning**
|
165
|
+
- **🔌 Third-Party Integrations**
|
166
|
+
- **🎯 Enterprise Support**
|
167
|
+
|
168
|
+
[**Get Enterprise Demo →**](https://form.typeform.com/to/ljtvl6X0)
|
169
|
+
|
170
|
+
## 🔒 Security Architecture
|
171
|
+
|
172
|
+
- **Container Isolation** - All testing in sandboxed Docker environments
|
173
|
+
- **Local Processing** - Testing runs locally, no data sent to external services
|
174
|
+
|
175
|
+
> [!NOTE]
|
176
|
+
> Strix is currently in Alpha. Expect rapid updates and improvements.
|
177
|
+
|
178
|
+
> [!WARNING]
|
179
|
+
> Only test systems you own or have permission to test. You are responsible for using Strix ethically and legally.
|
180
|
+
|
181
|
+
## 🌟 Support the Project
|
182
|
+
|
183
|
+
**Love Strix?** Give us a ⭐ on GitHub!
|
184
|
+
|
185
|
+
## 👥 Join Our Community
|
186
|
+
|
187
|
+
Have questions? Found a bug? Want to contribute? **[Join our Discord!](https://discord.gg/yduEyduBsp)**
|
188
|
+
|
189
|
+
---
|
190
|
+
|
191
|
+
<div align="center">
|
192
|
+
|
193
|
+
### About • Links
|
194
|
+
|
195
|
+
**[OmniSecure Inc.](https://omnisecure.ai)** • Applied AI Research Lab
|
196
|
+
|
197
|
+
[Discord Community](https://discord.gg/yduEyduBsp) • [Enterprise Solutions](https://form.typeform.com/to/ljtvl6X0) • [Report Issues](https://github.com/usestrix/strix/issues)
|
198
|
+
|
199
|
+
</div>
|
200
|
+
|
@@ -0,0 +1,99 @@
|
|
1
|
+
strix/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
|
+
strix/agents/StrixAgent/__init__.py,sha256=VORJn9aPTJyNn2-QAv6DbTxO1P9wBQoSZlAw-YuTJhQ,63
|
3
|
+
strix/agents/StrixAgent/strix_agent.py,sha256=CZNhwr1jao6Y64_PS5or83KZJrM2RoZjfj7IgBy0ph0,2117
|
4
|
+
strix/agents/StrixAgent/system_prompt.jinja,sha256=9rGAL2cW_sdCXD2IdJZQJ5Q2bOXHqR2j0Y1XIDqGmCQ,25587
|
5
|
+
strix/agents/__init__.py,sha256=F64zhlv4XZIvYJSL9eSSuKUsIVGPLG3ycpQBhZwvE6A,168
|
6
|
+
strix/agents/base_agent.py,sha256=SnpVGft0SFKcUBYzsKyC0WCxYBS9232msw6yQJhK2tk,14329
|
7
|
+
strix/agents/state.py,sha256=ORN2VyLOcQrppiuGcelD0C-1-uhxc6TS4AEqdbK7LZg,4858
|
8
|
+
strix/cli/__init__.py,sha256=ww23sFOQhICEIrIo0MtwWv2qHW5qUprvPj8QVjv3SM0,44
|
9
|
+
strix/cli/app.py,sha256=us-fYBf-_JKgZInWsG3n9wAj1rfUWXD4361kD-0PreQ,40501
|
10
|
+
strix/cli/assets/cli.tcss,sha256=y7N_l8sJhDeflwqjmGz_Zm6xhVzpKUPJ6zcci-3qesE,11914
|
11
|
+
strix/cli/main.py,sha256=58Lj6qSJY-dXHQ0DGwQq2c5iie29OlE0Hxss4Qf5jzM,18050
|
12
|
+
strix/cli/tool_components/__init__.py,sha256=Dz5ci3VMzvhlPOwQ2x9Nd11cmFzx1OP7sdlpZPMTT4k,935
|
13
|
+
strix/cli/tool_components/agents_graph_renderer.py,sha256=PLXAxOuejCr6oYhe_Kms5A3dd9Ga3FYxKJdlyMOr9vI,4652
|
14
|
+
strix/cli/tool_components/base_renderer.py,sha256=e-xD2I3N8EDN-94tfMKAvVt0NGYC-5m2USNRGFMrEQc,1867
|
15
|
+
strix/cli/tool_components/browser_renderer.py,sha256=cpdoHnqDQiNgoNBWSOXrBsNFQS2NYW1dB9B0WVey04Q,3791
|
16
|
+
strix/cli/tool_components/file_edit_renderer.py,sha256=ZYIC6-HHxgBDikpR4MHV24O0PQAheZfRfiV_v8T5mGA,3419
|
17
|
+
strix/cli/tool_components/finish_renderer.py,sha256=4_KTYQYVeIFNrKn38eL-Hk4x0Drf9_hyh9Xnz0b-RIg,1079
|
18
|
+
strix/cli/tool_components/notes_renderer.py,sha256=ZykNe589yXR9D9mm5rSHfdppZs65STVr356EDh7GaT0,3736
|
19
|
+
strix/cli/tool_components/proxy_renderer.py,sha256=9qk1tnebZWiOpjcDIeCeuQxOBxvIuyXSvhNhMk7fBd8,10186
|
20
|
+
strix/cli/tool_components/python_renderer.py,sha256=uddPvUVpeCU3ihHfn3zpM-IaWC883A8lEsmDNJ4j6WQ,1208
|
21
|
+
strix/cli/tool_components/registry.py,sha256=faTEi5upl3Z9okx-PCHqHSsN9DBGnTh3IaWvBFm6LOg,2338
|
22
|
+
strix/cli/tool_components/reporting_renderer.py,sha256=Sa5vDKrXVICdwaExSMb5JYuOsuG3Yw8X_KDoVzji3r0,1818
|
23
|
+
strix/cli/tool_components/scan_info_renderer.py,sha256=qHB5l8wycJxfjttUAZ1EzsGbqmRVE0TUvLqvY1NFE0Q,2062
|
24
|
+
strix/cli/tool_components/terminal_renderer.py,sha256=fvicmKAZXU6_pefoewQe0y7CuKXjxLnLeVpElL32AEc,3036
|
25
|
+
strix/cli/tool_components/thinking_renderer.py,sha256=s8Y1V8lvDYv9sottCZPOWQmKLyvDP1wpHO22x7XMc_U,927
|
26
|
+
strix/cli/tool_components/user_message_renderer.py,sha256=6gHJ1hG-pwcTsxLM7JuYZuaDu8cZ2MeOuUDF3LGy-4I,1432
|
27
|
+
strix/cli/tool_components/web_search_renderer.py,sha256=JnJa22ACIcRksfxxdenesUo8Th9cHSxo-fej9YcuYHs,911
|
28
|
+
strix/cli/tracer.py,sha256=HwSLb5dB6OpudpELxZq1AXaRSdBVdW1XipWamcNA0Ms,11127
|
29
|
+
strix/llm/__init__.py,sha256=7Amh0SeU5A49-t5Mhv0_tgWstGSpup7-G_n5vYquRfc,202
|
30
|
+
strix/llm/config.py,sha256=z1up_3UqJZmBJwtgXA_4XgtwjDTG_-_a_1YjmLk2G14,625
|
31
|
+
strix/llm/llm.py,sha256=fJLmx0tLaUUVIqf1hdcrqHeZ2_-CUcFM8RXH1G9XqTs,11034
|
32
|
+
strix/llm/memory_compressor.py,sha256=OVTXfO_oQ8WzlY9YGucqH7OcVfX9DM3E22BzWpH-p0Y,6878
|
33
|
+
strix/llm/request_queue.py,sha256=hBjj8c_6_D30-j1FCz-fm2eHJA7XGE7rk52j_8QR_4s,2090
|
34
|
+
strix/llm/utils.py,sha256=M84mVstjWY3-fwc2KyVAcfpF3IMHWnbkjRpGUUQ1TcM,2474
|
35
|
+
strix/prompts/__init__.py,sha256=JGzGxp0J86mpmCcWurtikKh_xcd8PvVfjtFDOOh0NaQ,3621
|
36
|
+
strix/prompts/coordination/root_agent.jinja,sha256=Z34uffB-lIt6Oei307dtD7oyXSmX2DSApeoRcA3LcnM,1902
|
37
|
+
strix/prompts/vulnerabilities/authentication_jwt.jinja,sha256=o0mfundZ3OfTGHOJRuGb8W17XuoZDcUoegIKrmmMxqU,3827
|
38
|
+
strix/prompts/vulnerabilities/business_logic.jinja,sha256=pazAYPIduxcnTyn0rDJj7nQ2Gmr9Ww6EqtY1b-oKC_k,4036
|
39
|
+
strix/prompts/vulnerabilities/csrf.jinja,sha256=u5gxyUT44enHyG3fqBo4X-4Sd4STSDapGZyOBH6iZ3k,4430
|
40
|
+
strix/prompts/vulnerabilities/idor.jinja,sha256=1q_0BNqRyA6SjRCFmPAnWMqVpDy9qaAcVDJp-xnq8VM,4345
|
41
|
+
strix/prompts/vulnerabilities/race_conditions.jinja,sha256=31aKYDqL50v5SP2keS2Gj7cTBuF3WhKIs2DKsZNezSI,4869
|
42
|
+
strix/prompts/vulnerabilities/rce.jinja,sha256=PUUnIJqH5IXQm9qLV6rqIAarP_8NQo6QVhYh_55ZCOA,5792
|
43
|
+
strix/prompts/vulnerabilities/sql_injection.jinja,sha256=oFTaN5ZFQ5dJSDoTbLMRkTxEw6Q4pbvPtLUo7K3bSYM,5637
|
44
|
+
strix/prompts/vulnerabilities/ssrf.jinja,sha256=MfRs3MtvgAEauaOrCHpKIoRnS0YCZKyCDaIb_xm5EWA,4440
|
45
|
+
strix/prompts/vulnerabilities/xss.jinja,sha256=ozaEuV1X4QPRLYiUAfpQplzbovQU6QmtVF115-8_xrk,6139
|
46
|
+
strix/prompts/vulnerabilities/xxe.jinja,sha256=E8QUtIMQoEft7FRQzz7a2SgvrpqNecRVYvhaIWOco0w,7081
|
47
|
+
strix/runtime/__init__.py,sha256=v2oQ1JnfZXOTU8N3NOEI_MbxNp8BfNj8hTgvjCsNGvY,445
|
48
|
+
strix/runtime/docker_runtime.py,sha256=0lQo410s5RbXNTluKPqvx4lAUVS2bFBTj1uCa3F2lsM,11359
|
49
|
+
strix/runtime/runtime.py,sha256=cHn_LnK7yLZLncVdIflz97oqNvvvhc8cWG4zsqgaF70,670
|
50
|
+
strix/runtime/tool_server.py,sha256=7Swr4dgl6gEvDGzhSXsZk9__NEtmrwqg6Gnx-Ai8I5E,3466
|
51
|
+
strix/tools/__init__.py,sha256=_uTsOImNlJ-q5FFuQBTIYpIAgTETNI7Pm2hkaLE-Z5Y,1743
|
52
|
+
strix/tools/agents_graph/__init__.py,sha256=FLJ2kGxXICY2pRKrC0sgIc3w3KhZo7VID7hbwYcgBfM,278
|
53
|
+
strix/tools/agents_graph/agents_graph_actions.py,sha256=T0c68IQPL_SLLdUVGziZoKUZSnZeTIF599E1k-N0NfQ,20346
|
54
|
+
strix/tools/agents_graph/agents_graph_actions_schema.xml,sha256=nMUg_AiIjoBqhkQTO7rxWyhut0nPTWzDGHq3Sa5s6ag,12477
|
55
|
+
strix/tools/argument_parser.py,sha256=FpRFuXHrrMcLOthPkeKd2qmXk5IwFU_EMV1mL8RvPls,3835
|
56
|
+
strix/tools/browser/__init__.py,sha256=7azA1td3CfwCVqMYIIzT0vGM0-JUNq3sZBYB0QnwFDk,75
|
57
|
+
strix/tools/browser/browser_actions.py,sha256=ZmHdPoow9R-rkSjopYsY1-56fL7Tm-WDCaIPvs1_hys,7037
|
58
|
+
strix/tools/browser/browser_actions_schema.xml,sha256=zZQD8sZWsNnxxnlY3QYDrfKHFu0x6i1vtfSOlIGyiho,9573
|
59
|
+
strix/tools/browser/browser_instance.py,sha256=vgb-dJP20SLaBOhFExn-uwfjdISBrHJpG7ewfiKQkYU,18605
|
60
|
+
strix/tools/browser/tab_manager.py,sha256=SMkDFOgEr3ADK2rP5Ko2uK-A24-8p0VsbjoxEj5eU-Y,13011
|
61
|
+
strix/tools/executor.py,sha256=9a83t9nA2ktjRjMYEnqK9enwueItbpQhfiu4O_MyLyg,10112
|
62
|
+
strix/tools/file_edit/__init__.py,sha256=8f6VlEoGP627hGtcdLkr63vdrTmdb8uyPIqB0qVgZd8,141
|
63
|
+
strix/tools/file_edit/file_edit_actions.py,sha256=Aq-LwzmmfUJrBZWy5TeP9Pxz9TlmeqOSqemD4jBkt2s,3951
|
64
|
+
strix/tools/file_edit/file_edit_actions_schema.xml,sha256=tt0_QgSjOtTEy8ordsXUcEiVTePiybgn4aisZJ_qnbc,5477
|
65
|
+
strix/tools/finish/__init__.py,sha256=QIMaHYusly8YaFR3zjYsy_CFawwgtTZvOU7gsEumFrw,68
|
66
|
+
strix/tools/finish/finish_actions.py,sha256=c5QdHI-Kau_rKuVTHpanP0TtEBqurHeR8tp6sdhc_5s,5439
|
67
|
+
strix/tools/finish/finish_actions_schema.xml,sha256=CS6Vq3ByyNxv2spRWS4oJcmUzWQRB7jvUAOS8aiWd8o,2294
|
68
|
+
strix/tools/notes/__init__.py,sha256=DUpkZUWN21tb9AXCWfJLrKrgLz9YEBVU8KQy1J6cyxU,189
|
69
|
+
strix/tools/notes/notes_actions.py,sha256=Y4b7DYJzh7XwwlMTdwThOLuIuuj46m6KiMrMKekTMCE,5771
|
70
|
+
strix/tools/notes/notes_actions_schema.xml,sha256=nzirWDyzbPRxaG3jdSjmSCjfY-ggDy1kH7oxAuj-osw,6264
|
71
|
+
strix/tools/proxy/__init__.py,sha256=K3BFmT6QWw9heB7l7DnmI-Yj-DOI3BAow6g0GLWsA0c,329
|
72
|
+
strix/tools/proxy/proxy_actions.py,sha256=KM4m7pVpbkpx_Srgj9kUiAPZyfMpLI_p-_gCxq6Ojfg,2545
|
73
|
+
strix/tools/proxy/proxy_actions_schema.xml,sha256=d87SUKD2J16KQCCFpI5w2y-Ax1NgwOuGO3crr1bFPDw,11567
|
74
|
+
strix/tools/proxy/proxy_manager.py,sha256=rmy8c_7jcYl9WeeA3O2lcZBnN7hESpTYxoLCM24VhVE,28933
|
75
|
+
strix/tools/python/__init__.py,sha256=l5mFWKbtis61S8lOQY-gFn-vIlc13lu1K-pqqRywOCk,72
|
76
|
+
strix/tools/python/python_actions.py,sha256=pXnyvspsV3nh2qNWJTY7m4rzoXYfYQ7mpsVIXd7NC68,1432
|
77
|
+
strix/tools/python/python_actions_schema.xml,sha256=XcIUjz5uEoI7J3VFcby0O-0ovm9r9cIoADfpqDGJXlU,7122
|
78
|
+
strix/tools/python/python_instance.py,sha256=x8ARTRAmAjdotD3TbtN0O4Q3nKNjfOzxTMN7aGU99H8,5547
|
79
|
+
strix/tools/python/python_manager.py,sha256=C_k8C8uQ6ESpAgzhbf3km9jeFyI52SGd2m36mD1ErhM,4235
|
80
|
+
strix/tools/registry.py,sha256=zG8T-bsJQRBqn4S1IKIAZ2Yzu1pp8I9RaPrCg2axCjU,6025
|
81
|
+
strix/tools/reporting/__init__.py,sha256=_cYxb3OP0vZtCwO_ExLBjhAn1ECaG-SH1Z4wfGDyT1Y,110
|
82
|
+
strix/tools/reporting/reporting_actions.py,sha256=RIp3u3pmlRXx_uCr2Kc8R7yYiSe3pzPtVSUHw3cNM4s,2186
|
83
|
+
strix/tools/reporting/reporting_actions_schema.xml,sha256=y_g0iuyBuCh79fvA0ri8fOPlXY7uUd-P-mdzXLUyIJg,1629
|
84
|
+
strix/tools/terminal/__init__.py,sha256=yF9qWbC9tYXYbkQsX5p8NNKwxlpmlGrF8UU4r6y0qwI,78
|
85
|
+
strix/tools/terminal/terminal_actions.py,sha256=CMy3SzbMfIwDWVurOcRh28VBSoOexrUirF3kjCiHtq4,1706
|
86
|
+
strix/tools/terminal/terminal_actions_schema.xml,sha256=aBUt3hOcfudnmeX5_rQVqqqE6MGiLuuVWa-GklVzkmk,7280
|
87
|
+
strix/tools/terminal/terminal_instance.py,sha256=rnLtP54eswcpw-gjKzHPrrqytf2iHahpSH0Bc6Z6Xlo,7280
|
88
|
+
strix/tools/terminal/terminal_manager.py,sha256=xV4MPnaFn9yJQ8bZgptupYjBuSO_NlFUXXqqxb6gfVI,6601
|
89
|
+
strix/tools/thinking/__init__.py,sha256=-v4fG4fyFkqsTSWspDtCT6IRlyRM8zeUwEM-kscaxDE,58
|
90
|
+
strix/tools/thinking/thinking_actions.py,sha256=Ll96ZjlnOS5zSRSCmGzi7hcgyURBlCdq4xcstEhdRao,564
|
91
|
+
strix/tools/thinking/thinking_actions_schema.xml,sha256=otD4dOhQx4uyudLnjA_HIP6EmUS5NvKG4l3CVFrg8go,2756
|
92
|
+
strix/tools/web_search/__init__.py,sha256=m5PCHXqeNVraLRLNIbh54Z2N4Y_75d-ftqwyq3dbCd0,70
|
93
|
+
strix/tools/web_search/web_search_actions.py,sha256=LRS3AjGO4JLIyu_B6-ogfWOsnENwqrrCa8Rz0vxuuGQ,3107
|
94
|
+
strix/tools/web_search/web_search_actions_schema.xml,sha256=Ihc3Gv4LaPI_MzBbwZOt3y4pwg9xmtl8KfPNvFihEP4,4805
|
95
|
+
strix_agent-0.1.1.dist-info/LICENSE,sha256=fblpcTQlHjFL2NOSV_4XDJiz4q2bLtZ-l6yvlhPnueM,11345
|
96
|
+
strix_agent-0.1.1.dist-info/METADATA,sha256=YZqX_hi3lF2NW2KiQBb02047jpWE8VnWratWDZ8Oq7Y,7325
|
97
|
+
strix_agent-0.1.1.dist-info/WHEEL,sha256=RaoafKOydTQ7I_I3JTrPCg6kUmTgtm4BornzOqyEfJ8,88
|
98
|
+
strix_agent-0.1.1.dist-info/entry_points.txt,sha256=sswIgnkzSVSzQ3Rd046g7mhIPQaj_7RYlXgU_bQelF0,45
|
99
|
+
strix_agent-0.1.1.dist-info/RECORD,,
|