Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
github.com/zyxar/chihaya
Chihaya is a high-performance BitTorrent tracker written in the Go
programming language. It is still heavily under development and the current
master
branch should probably not be used in production
(unless you know what you're doing).
Current features include:
Planned features include:
Chihaya is a eventually meant for every kind of BitTorrent tracker deployment. Chihaya has been used to replace instances of opentracker and also instances of ocelot. Chihaya handles torrent announces and scrapes in memory. However, using a backend driver, Chihaya can also asynchronously provide deltas to maintain a set of persistent data without throttling a database. This is particularly useful behavior for private tracker use-cases.
Copy example_config.json
to your choice of location, and update the values as required.
An explanation of the available keys can be found in CONFIGURATION.md.
# Download and edit the example config
curl -L https://raw.githubusercontent.com/chihaya/chihaya/release-v1.0/example_config.json -o config.json
vi config.json
# Run the container with the config file mounted
docker run -p 6880-6882:6880-6882 -v $PWD/config.json:/config.json:ro quay.io/jzelinskie/chihaya:v1.0.1 -v=5
Chihaya requires Go 1.5+ (preferrably the latest stable Go), Godep, and a Go environment previously set up.
$ export GOPATH=$PWD/chihaya
$ git clone https://github.com/chihaya/chihaya.git chihaya/src/github.com/chihaya/chihaya
$ cd chihaya/src/github.com/chihaya/chihaya/cmd/chihaya/
$ godep restore
$ go install github.com/chihaya/chihaya/cmd/chihaya
Chihaya has end-to-end test coverage for announces in addition to unit tests for isolated components. To run the tests, use:
$ cd $GOPATH/src/github.com/chihaya/chihaya
$ godep go test -v ./...
There is also a set of benchmarks for performance-critical sections of Chihaya. These can be run similarly:
$ cd $GOPATH/src/github.com/chihaya/chihaya
$ godep go test -v ./... -bench .
See CONTRIBUTING.md for guidelines to contributing to the project. Feel free to make issues or ask questions. Our maintainers are also always idle in #chihaya on freenode.
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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.