
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
0xacab.org/leap/ooni-exporter
OONI-Exporter fetches RiseupVPN OONI test results from AWS, parses and provides them for Prometheus.
To fetch data directly from AWS, you have to install the aws client, this is not mandatory:
$ curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"
unzip awscliv2.zip
sudo ./aws/install
go build
... during development
help:
go run main.go -h
this example command will fetch test results between Oct. 30th 2020 and Nov. 2nd 2020
go run main.go -s 20201030 -e 20201102
It is recommended to use the ooni API instead of AWS, because the structure of the AWS buckets may change whereas the API (hopefully) won't have breaking changes. The API is also faster than AWS queries. If you need to fetch data from AWS (e.g. to store all data locally) add -a
go run main.go -a
Fetches yesterday's today's test results from AWS.
docker build .
docker images | head -2 | tail -1 | awk '{print $3}'
docker run --rm --network="host" <IMAGEID>
FAQs
Unknown package
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 Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.