strix-agent 0.1.19__py3-none-any.whl → 0.3.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.
Potentially problematic release.
This version of strix-agent might be problematic. Click here for more details.
- strix/agents/StrixAgent/strix_agent.py +49 -40
- strix/agents/StrixAgent/system_prompt.jinja +15 -0
- strix/agents/base_agent.py +71 -11
- strix/agents/state.py +5 -1
- strix/interface/cli.py +171 -0
- strix/interface/main.py +482 -0
- strix/{cli → interface}/tool_components/scan_info_renderer.py +17 -12
- strix/{cli/app.py → interface/tui.py} +15 -16
- strix/interface/utils.py +435 -0
- strix/runtime/docker_runtime.py +28 -7
- strix/runtime/runtime.py +4 -1
- strix/telemetry/__init__.py +4 -0
- strix/{cli → telemetry}/tracer.py +21 -9
- strix/tools/agents_graph/agents_graph_actions.py +13 -9
- strix/tools/executor.py +1 -1
- strix/tools/finish/finish_actions.py +1 -1
- strix/tools/reporting/reporting_actions.py +1 -1
- {strix_agent-0.1.19.dist-info → strix_agent-0.3.1.dist-info}/METADATA +45 -4
- {strix_agent-0.1.19.dist-info → strix_agent-0.3.1.dist-info}/RECORD +39 -36
- strix_agent-0.3.1.dist-info/entry_points.txt +3 -0
- strix/cli/main.py +0 -703
- strix_agent-0.1.19.dist-info/entry_points.txt +0 -3
- /strix/{cli → interface}/__init__.py +0 -0
- /strix/{cli/assets/cli.tcss → interface/assets/tui_styles.tcss} +0 -0
- /strix/{cli → interface}/tool_components/__init__.py +0 -0
- /strix/{cli → interface}/tool_components/agents_graph_renderer.py +0 -0
- /strix/{cli → interface}/tool_components/base_renderer.py +0 -0
- /strix/{cli → interface}/tool_components/browser_renderer.py +0 -0
- /strix/{cli → interface}/tool_components/file_edit_renderer.py +0 -0
- /strix/{cli → interface}/tool_components/finish_renderer.py +0 -0
- /strix/{cli → interface}/tool_components/notes_renderer.py +0 -0
- /strix/{cli → interface}/tool_components/proxy_renderer.py +0 -0
- /strix/{cli → interface}/tool_components/python_renderer.py +0 -0
- /strix/{cli → interface}/tool_components/registry.py +0 -0
- /strix/{cli → interface}/tool_components/reporting_renderer.py +0 -0
- /strix/{cli → interface}/tool_components/terminal_renderer.py +0 -0
- /strix/{cli → interface}/tool_components/thinking_renderer.py +0 -0
- /strix/{cli → interface}/tool_components/user_message_renderer.py +0 -0
- /strix/{cli → interface}/tool_components/web_search_renderer.py +0 -0
- {strix_agent-0.1.19.dist-info → strix_agent-0.3.1.dist-info}/LICENSE +0 -0
- {strix_agent-0.1.19.dist-info → strix_agent-0.3.1.dist-info}/WHEEL +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: strix-agent
|
|
3
|
-
Version: 0.1
|
|
3
|
+
Version: 0.3.1
|
|
4
4
|
Summary: Open-source AI Hackers for your apps
|
|
5
5
|
License: Apache-2.0
|
|
6
6
|
Keywords: cybersecurity,security,vulnerability,scanner,pentest,agent,ai,cli
|
|
@@ -46,7 +46,7 @@ Description-Content-Type: text/markdown
|
|
|
46
46
|
|
|
47
47
|
[](https://usestrix.com)
|
|
48
48
|
[](LICENSE)
|
|
49
|
-
[](https://discord.gg/
|
|
49
|
+
[](https://discord.gg/J48Fzuh7)
|
|
50
50
|
[](https://pepy.tech/projects/strix-agent)
|
|
51
51
|
[](https://github.com/usestrix/strix)
|
|
52
52
|
</div>
|
|
@@ -144,7 +144,13 @@ strix --target https://github.com/org/repo
|
|
|
144
144
|
# Web application assessment
|
|
145
145
|
strix --target https://your-app.com
|
|
146
146
|
|
|
147
|
-
#
|
|
147
|
+
# Multi-target white-box testing (source code + deployed app)
|
|
148
|
+
strix -t https://github.com/org/app -t https://your-app.com
|
|
149
|
+
|
|
150
|
+
# Test multiple environments simultaneously
|
|
151
|
+
strix -t https://dev.your-app.com -t https://staging.your-app.com -t https://prod.your-app.com
|
|
152
|
+
|
|
153
|
+
# Focused testing with instructions
|
|
148
154
|
strix --target api.your-app.com --instruction "Prioritize authentication and authorization testing"
|
|
149
155
|
|
|
150
156
|
# Testing with credentials
|
|
@@ -164,6 +170,41 @@ export PERPLEXITY_API_KEY="your-api-key" # for search capabilities
|
|
|
164
170
|
|
|
165
171
|
[📚 View supported AI models](https://docs.litellm.ai/docs/providers)
|
|
166
172
|
|
|
173
|
+
### 🤖 Headless Mode
|
|
174
|
+
|
|
175
|
+
Run Strix programmatically without interactive UI using the `-n/--non-interactive` flag—perfect for servers and automated jobs. The CLI prints real-time vulnerability findings, and the final report before exiting. Exits with non-zero code when vulnerabilities are found.
|
|
176
|
+
|
|
177
|
+
```bash
|
|
178
|
+
strix -n --target https://your-app.com --instruction "Focus on authentication and authorization vulnerabilities"
|
|
179
|
+
```
|
|
180
|
+
|
|
181
|
+
### 🔄 CI/CD (GitHub Actions)
|
|
182
|
+
|
|
183
|
+
Strix can be added to your pipeline to run a security test on pull requests with a lightweight GitHub Actions workflow:
|
|
184
|
+
|
|
185
|
+
```yaml
|
|
186
|
+
name: strix-penetration-test
|
|
187
|
+
|
|
188
|
+
on:
|
|
189
|
+
pull_request:
|
|
190
|
+
|
|
191
|
+
jobs:
|
|
192
|
+
security-scan:
|
|
193
|
+
runs-on: ubuntu-latest
|
|
194
|
+
steps:
|
|
195
|
+
- uses: actions/checkout@v4
|
|
196
|
+
|
|
197
|
+
- name: Install Strix
|
|
198
|
+
run: pipx install strix-agent
|
|
199
|
+
|
|
200
|
+
- name: Run Strix
|
|
201
|
+
env:
|
|
202
|
+
STRIX_LLM: ${{ secrets.STRIX_LLM }}
|
|
203
|
+
LLM_API_KEY: ${{ secrets.LLM_API_KEY }}
|
|
204
|
+
|
|
205
|
+
run: strix -n -t ./
|
|
206
|
+
```
|
|
207
|
+
|
|
167
208
|
## 🏆 Enterprise Platform
|
|
168
209
|
|
|
169
210
|
Our managed platform provides:
|
|
@@ -208,7 +249,7 @@ Help expand our collection of specialized prompt modules for AI agents:
|
|
|
208
249
|
|
|
209
250
|
## 👥 Join Our Community
|
|
210
251
|
|
|
211
|
-
Have questions? Found a bug? Want to contribute? **[Join our Discord!](https://discord.gg/
|
|
252
|
+
Have questions? Found a bug? Want to contribute? **[Join our Discord!](https://discord.gg/J48Fzuh7)**
|
|
212
253
|
|
|
213
254
|
</div>
|
|
214
255
|
|
|
@@ -1,31 +1,32 @@
|
|
|
1
1
|
strix/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
2
|
strix/agents/StrixAgent/__init__.py,sha256=VORJn9aPTJyNn2-QAv6DbTxO1P9wBQoSZlAw-YuTJhQ,63
|
|
3
|
-
strix/agents/StrixAgent/strix_agent.py,sha256=
|
|
4
|
-
strix/agents/StrixAgent/system_prompt.jinja,sha256=
|
|
3
|
+
strix/agents/StrixAgent/strix_agent.py,sha256=2_A8vLzIOB7WC8svNVVzij4isw09LNcAslvAgd9EiHo,2796
|
|
4
|
+
strix/agents/StrixAgent/system_prompt.jinja,sha256=W48gWtCalN7fu_SURJEpbX4YVbKP8iEj7YN2qwHfa8c,20088
|
|
5
5
|
strix/agents/__init__.py,sha256=F64zhlv4XZIvYJSL9eSSuKUsIVGPLG3ycpQBhZwvE6A,168
|
|
6
|
-
strix/agents/base_agent.py,sha256=
|
|
7
|
-
strix/agents/state.py,sha256=
|
|
8
|
-
strix/
|
|
9
|
-
strix/
|
|
10
|
-
strix/
|
|
11
|
-
strix/
|
|
12
|
-
strix/
|
|
13
|
-
strix/
|
|
14
|
-
strix/
|
|
15
|
-
strix/
|
|
16
|
-
strix/
|
|
17
|
-
strix/
|
|
18
|
-
strix/
|
|
19
|
-
strix/
|
|
20
|
-
strix/
|
|
21
|
-
strix/
|
|
22
|
-
strix/
|
|
23
|
-
strix/
|
|
24
|
-
strix/
|
|
25
|
-
strix/
|
|
26
|
-
strix/
|
|
27
|
-
strix/
|
|
28
|
-
strix/
|
|
6
|
+
strix/agents/base_agent.py,sha256=0oWy779P3ZzqCP_kuN9Okq0UQNzFf9oS0zYhXIDawtc,20220
|
|
7
|
+
strix/agents/state.py,sha256=3A4wOewNYyzqnCCBbzpSc35OrgTfObzxIwZpJDW_rag,5720
|
|
8
|
+
strix/interface/__init__.py,sha256=ww23sFOQhICEIrIo0MtwWv2qHW5qUprvPj8QVjv3SM0,44
|
|
9
|
+
strix/interface/assets/tui_styles.tcss,sha256=y7N_l8sJhDeflwqjmGz_Zm6xhVzpKUPJ6zcci-3qesE,11914
|
|
10
|
+
strix/interface/cli.py,sha256=9-kcS_x-15sXL3jUCz5Fi2s1RLNXdMh82okEb2eTD7M,5485
|
|
11
|
+
strix/interface/main.py,sha256=712U3e49vj02YleqNr-QIm1Vjj9uNVA7T1sOkOz1SVg,16431
|
|
12
|
+
strix/interface/tool_components/__init__.py,sha256=Dz5ci3VMzvhlPOwQ2x9Nd11cmFzx1OP7sdlpZPMTT4k,935
|
|
13
|
+
strix/interface/tool_components/agents_graph_renderer.py,sha256=eVFRqmJ-TxyxZ-hssLTweDAio4UvsZZgxo2dKky0N1U,4399
|
|
14
|
+
strix/interface/tool_components/base_renderer.py,sha256=P0zYeRnbkr2NYoE8KDQmj1TzrAGX6r7qLMb4Sw7AoTI,1905
|
|
15
|
+
strix/interface/tool_components/browser_renderer.py,sha256=_dj5VSNtuyJSH24SyORB466H8bpa7aD4_hNiFmqxtFs,4526
|
|
16
|
+
strix/interface/tool_components/file_edit_renderer.py,sha256=DfV8l4o3ssipXO_-uIrTS674h_9kALFLkuCb3ry0T0s,3612
|
|
17
|
+
strix/interface/tool_components/finish_renderer.py,sha256=Q5Jp-irOqh0rfdoG_wzEiNhDqLDkdP-NwhYoag4N_Kw,984
|
|
18
|
+
strix/interface/tool_components/notes_renderer.py,sha256=ZykNe589yXR9D9mm5rSHfdppZs65STVr356EDh7GaT0,3736
|
|
19
|
+
strix/interface/tool_components/proxy_renderer.py,sha256=cK1mG3r0QhlVd_jbdKGiWuw5MJNLs0sTZCkOMZRRbJw,10224
|
|
20
|
+
strix/interface/tool_components/python_renderer.py,sha256=2jlD6J9PpL-rOUq8uQiny54KLr45yVPO24Q-Tn_6VxM,1208
|
|
21
|
+
strix/interface/tool_components/registry.py,sha256=o7KnSfuIR4NYAZ5EGk11YThrTdCmbb7pMBhxr1o6Fec,2370
|
|
22
|
+
strix/interface/tool_components/reporting_renderer.py,sha256=mfVadTe5IbWBc9lV-rCJ29BxwXcFhaY1aON4_0qzglM,1762
|
|
23
|
+
strix/interface/tool_components/scan_info_renderer.py,sha256=BWeWJ-Whm-MOM_CKSR59SKTq1tKbUh2kqi1cdOkUorQ,2223
|
|
24
|
+
strix/interface/tool_components/terminal_renderer.py,sha256=-ORL2vBH5XImUZrIfk_K3fij3QQks2ejiJgcU11OB0E,3349
|
|
25
|
+
strix/interface/tool_components/thinking_renderer.py,sha256=-MQLkKCgOJksrustULFf2jhAjJrP5bbfS2BQ6zgNKCc,927
|
|
26
|
+
strix/interface/tool_components/user_message_renderer.py,sha256=6gHJ1hG-pwcTsxLM7JuYZuaDu8cZ2MeOuUDF3LGy-4I,1432
|
|
27
|
+
strix/interface/tool_components/web_search_renderer.py,sha256=JnJa22ACIcRksfxxdenesUo8Th9cHSxo-fej9YcuYHs,911
|
|
28
|
+
strix/interface/tui.py,sha256=xCwmRqdIg8KOcrqijcMoacKx-O2XHCKJhuwLMo4P3l4,43872
|
|
29
|
+
strix/interface/utils.py,sha256=oEGc5WyXiV65OBEpUKMub0w7lOqSk_UPvNL_MKdf3jw,14899
|
|
29
30
|
strix/llm/__init__.py,sha256=WqYE3Xc2e1D3z4QyjwN_jZPTdqsSDX6ODYsu-dcufSk,230
|
|
30
31
|
strix/llm/config.py,sha256=iBv1tuUOUDcP2gVQWhjtN8wtO5lWOipsER7Rnc3p6k4,603
|
|
31
32
|
strix/llm/llm.py,sha256=lsjNAXDGikhI2EGrtQHolqRtr5KC4Zi4-2sCUF3n9ZE,15604
|
|
@@ -58,12 +59,14 @@ strix/prompts/vulnerabilities/ssrf.jinja,sha256=XMRAclYIyq0JhVSXopTsbZAm-wRxz-zZ
|
|
|
58
59
|
strix/prompts/vulnerabilities/xss.jinja,sha256=GG1egKjGw9onilu1azEhU2Hfxu9XjQfBA2j4P4KQRzE,8675
|
|
59
60
|
strix/prompts/vulnerabilities/xxe.jinja,sha256=yyWl5i74YiFZIhQknMPWXLKL0C5gwL6Ra_YB4xddJsc,7841
|
|
60
61
|
strix/runtime/__init__.py,sha256=v2oQ1JnfZXOTU8N3NOEI_MbxNp8BfNj8hTgvjCsNGvY,445
|
|
61
|
-
strix/runtime/docker_runtime.py,sha256=
|
|
62
|
-
strix/runtime/runtime.py,sha256=
|
|
62
|
+
strix/runtime/docker_runtime.py,sha256=cUkx2S3h7d9lOXGHBb5Sz0tjY178QuVZB6dGcxSwBMY,15595
|
|
63
|
+
strix/runtime/runtime.py,sha256=PRYByipRG9OhtIphIruGBSe4k-glVnYAXH68mikqt78,730
|
|
63
64
|
strix/runtime/tool_server.py,sha256=pKI_cL1aSEFC8b6Dqaz9bRfh0LvcCKwb6ZCN-v6OYls,6618
|
|
65
|
+
strix/telemetry/__init__.py,sha256=8QLHMvrVNLlGKezWTf3mTSmTOLIvDS5xVciry1KVS1Y,130
|
|
66
|
+
strix/telemetry/tracer.py,sha256=DkCD3m3dqely_of6EcYKko3hJDZKgfFE_O4towdqzWA,11586
|
|
64
67
|
strix/tools/__init__.py,sha256=_uTsOImNlJ-q5FFuQBTIYpIAgTETNI7Pm2hkaLE-Z5Y,1743
|
|
65
68
|
strix/tools/agents_graph/__init__.py,sha256=FLJ2kGxXICY2pRKrC0sgIc3w3KhZo7VID7hbwYcgBfM,278
|
|
66
|
-
strix/tools/agents_graph/agents_graph_actions.py,sha256=
|
|
69
|
+
strix/tools/agents_graph/agents_graph_actions.py,sha256=vftFb1haz3ZZMVBVR8N99aGqhBSPfLEAQCR4L9PLkpQ,20818
|
|
67
70
|
strix/tools/agents_graph/agents_graph_actions_schema.xml,sha256=lgnjltVyDog5T-uW4oFll1RksRfXdLmQyjUVVtFBXoE,12511
|
|
68
71
|
strix/tools/argument_parser.py,sha256=FA9LY0UBtMqDRJ9yHHUzQCbGmpTQvo4xTtLiNRYG2FU,3861
|
|
69
72
|
strix/tools/browser/__init__.py,sha256=7azA1td3CfwCVqMYIIzT0vGM0-JUNq3sZBYB0QnwFDk,75
|
|
@@ -71,12 +74,12 @@ strix/tools/browser/browser_actions.py,sha256=ZmHdPoow9R-rkSjopYsY1-56fL7Tm-WDCa
|
|
|
71
74
|
strix/tools/browser/browser_actions_schema.xml,sha256=zZQD8sZWsNnxxnlY3QYDrfKHFu0x6i1vtfSOlIGyiho,9573
|
|
72
75
|
strix/tools/browser/browser_instance.py,sha256=vgb-dJP20SLaBOhFExn-uwfjdISBrHJpG7ewfiKQkYU,18605
|
|
73
76
|
strix/tools/browser/tab_manager.py,sha256=SMkDFOgEr3ADK2rP5Ko2uK-A24-8p0VsbjoxEj5eU-Y,13011
|
|
74
|
-
strix/tools/executor.py,sha256=
|
|
77
|
+
strix/tools/executor.py,sha256=ED7P7LLCuZk12jO4t8UvB6Ms-xm4kVeu6F4WHetETnM,10223
|
|
75
78
|
strix/tools/file_edit/__init__.py,sha256=8f6VlEoGP627hGtcdLkr63vdrTmdb8uyPIqB0qVgZd8,141
|
|
76
79
|
strix/tools/file_edit/file_edit_actions.py,sha256=Aq-LwzmmfUJrBZWy5TeP9Pxz9TlmeqOSqemD4jBkt2s,3951
|
|
77
80
|
strix/tools/file_edit/file_edit_actions_schema.xml,sha256=tt0_QgSjOtTEy8ordsXUcEiVTePiybgn4aisZJ_qnbc,5477
|
|
78
81
|
strix/tools/finish/__init__.py,sha256=QIMaHYusly8YaFR3zjYsy_CFawwgtTZvOU7gsEumFrw,68
|
|
79
|
-
strix/tools/finish/finish_actions.py,sha256=
|
|
82
|
+
strix/tools/finish/finish_actions.py,sha256=_M8mmJzPAwSJCG0NOGAhhON24OQMJV16dqZEa_s8HuM,5702
|
|
80
83
|
strix/tools/finish/finish_actions_schema.xml,sha256=CS6Vq3ByyNxv2spRWS4oJcmUzWQRB7jvUAOS8aiWd8o,2294
|
|
81
84
|
strix/tools/notes/__init__.py,sha256=DUpkZUWN21tb9AXCWfJLrKrgLz9YEBVU8KQy1J6cyxU,189
|
|
82
85
|
strix/tools/notes/notes_actions.py,sha256=Y4b7DYJzh7XwwlMTdwThOLuIuuj46m6KiMrMKekTMCE,5771
|
|
@@ -92,7 +95,7 @@ strix/tools/python/python_instance.py,sha256=x8ARTRAmAjdotD3TbtN0O4Q3nKNjfOzxTMN
|
|
|
92
95
|
strix/tools/python/python_manager.py,sha256=C_k8C8uQ6ESpAgzhbf3km9jeFyI52SGd2m36mD1ErhM,4235
|
|
93
96
|
strix/tools/registry.py,sha256=LhByebT-OiIfc2g-hxlSopzHoNIPiKfPJRvTAK37TOQ,6025
|
|
94
97
|
strix/tools/reporting/__init__.py,sha256=_cYxb3OP0vZtCwO_ExLBjhAn1ECaG-SH1Z4wfGDyT1Y,110
|
|
95
|
-
strix/tools/reporting/reporting_actions.py,sha256=
|
|
98
|
+
strix/tools/reporting/reporting_actions.py,sha256=1d0QfWWqjaamErfQk5Fms3FxdSJoi3vuZ0e17V2Nh_Y,2192
|
|
96
99
|
strix/tools/reporting/reporting_actions_schema.xml,sha256=y_g0iuyBuCh79fvA0ri8fOPlXY7uUd-P-mdzXLUyIJg,1629
|
|
97
100
|
strix/tools/terminal/__init__.py,sha256=xvflcrbLQ31o_K3cWFsIhTm7gxY5JF0nVnhOIadwFV0,80
|
|
98
101
|
strix/tools/terminal/terminal_actions.py,sha256=9BGsK7Io7PyW8YGpJfXHeJTP3AVqBAgaKZl-1YziF8Y,888
|
|
@@ -105,8 +108,8 @@ strix/tools/thinking/thinking_actions_schema.xml,sha256=otD4dOhQx4uyudLnjA_HIP6E
|
|
|
105
108
|
strix/tools/web_search/__init__.py,sha256=m5PCHXqeNVraLRLNIbh54Z2N4Y_75d-ftqwyq3dbCd0,70
|
|
106
109
|
strix/tools/web_search/web_search_actions.py,sha256=LRS3AjGO4JLIyu_B6-ogfWOsnENwqrrCa8Rz0vxuuGQ,3107
|
|
107
110
|
strix/tools/web_search/web_search_actions_schema.xml,sha256=Ihc3Gv4LaPI_MzBbwZOt3y4pwg9xmtl8KfPNvFihEP4,4805
|
|
108
|
-
strix_agent-0.1.
|
|
109
|
-
strix_agent-0.1.
|
|
110
|
-
strix_agent-0.1.
|
|
111
|
-
strix_agent-0.1.
|
|
112
|
-
strix_agent-0.1.
|
|
111
|
+
strix_agent-0.3.1.dist-info/LICENSE,sha256=fblpcTQlHjFL2NOSV_4XDJiz4q2bLtZ-l6yvlhPnueM,11345
|
|
112
|
+
strix_agent-0.3.1.dist-info/METADATA,sha256=NwABK0FvzSF3eysmrNZXF1CHymAOOjddgVQXYMtLSLM,9066
|
|
113
|
+
strix_agent-0.3.1.dist-info/WHEEL,sha256=RaoafKOydTQ7I_I3JTrPCg6kUmTgtm4BornzOqyEfJ8,88
|
|
114
|
+
strix_agent-0.3.1.dist-info/entry_points.txt,sha256=F_Uflti5ggiBHZ9wUHTqacARQavQDiditz0mRN0qnAA,51
|
|
115
|
+
strix_agent-0.3.1.dist-info/RECORD,,
|