🚨 Shai-Hulud Strikes Again:834 Packages Compromised.Technical Analysis →
Socket
Book a DemoInstallSign in
Socket

zoraxy-rs

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

zoraxy-rs

Source
crates.io
Version
0.1.0
Version published
Maintainers
1
Created
Source

Zoraxy-rs

Zoraxy-rs is a Rust crate for building plugins for Zoraxy

The examples have been verified to work with Zoraxy v3.2.9

Oddities

If using docker, and you see something like [plugin-manager] [system:error] Failed to load plugin: ...: exit status 127 in the logs

Open a shell in the container, and run ldd on the plugin binary, e.g.

docker exec -it <container_id> /bin/sh -c 'ldd /opt/zoraxy/plugin/api_call_example/api_call_example'

you might see that some libraries are missing, this is because the plugin was built against glibc but the docker container uses musl.

Fixing this could be as easy as changing some feature flags to ensure openssl isn't being used, but could be more involved requiring you to build the plugin with the x86_64-unknown-linux-musl target, which is easiest to do using cargo-zigbuild.

rustup target add x86_64-unknown-linux-musl
cargo install cargo-zigbuild
cargo zigbuild --release --example api_call_example --target x86_64-unknown-linux-musl

You might need to do some additional setup to get the musl target working, see the Rust documentation for more details.

FAQs

Package last updated on 19 Nov 2025

Did you know?

Socket

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.

Install

Related posts