
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
soc-executor
Advanced tools
SOC工具执行器 - 执行本地Python文件并通过HTTP API提交到SOC平台
pip install soc-executor
# 执行Python文件
soc-executor script.py
# 使用 --file 参数
soc-executor --file /path/to/script.py
# 传递参数
soc-executor script.py --params '{"key": "value"}'
export HTTP_BASE_URL="http://your-soc-server:port"
export HTTP_TOKEN="your-api-token"
创建一个测试脚本 test_script.py:
def test_function():
print("Hello from SOC executor!")
return {"status": "success", "message": "Test completed"}
if __name__ == "__main__":
result = test_function()
print(result)
执行脚本:
soc-executor test_script.py
使用 uv 进行开发环境管理:
# 安装开发依赖
uv sync --dev
# 运行测试
uv run pytest
# 构建包
uv run python -m build
MIT License
FAQs
SOC工具执行器 - 执行本地Python文件并通过HTTP API提交
We found that soc-executor demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.