Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
github.com/gdscwce/game-facts-api
Venv is a tool that creates an isolated environment separate from other projects. Creating a virtual environment allows us to work on a Python project without affecting other projects that also use Python and their dependencies.
Install pip first
sudo apt-get install python3-pip
Then install venv
sudo apt install python3-venv
Now create a virtual environment
python3 -m venv {name_of_virtual_environment}
Activate your virtual environment:
source {name_of_virtual_environment}/bin/activate
Install all dependencies from requirements.txt
pip3 install -r requirements.txt
To deactivate:
deactivate
Run the project using uvicorn
by executing the following command
uvicorn main:app --reload
Contributions are always welcome!
See CONTRIBUTING.md for ways to get started.
Please adhere to this project's CODE OF CONDUCT.
Method | Path | Description |
---|---|---|
GET | /fact/game={games}?limit={limit} | Fetch facts about one or multiple games. |
GET | /fact/random?limit={limit} | Fetch facts(s) about a random game. |
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.
Research
Security News
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.