
Research
/Security News
9 Malicious NuGet Packages Deliver Time-Delayed Destructive Payloads
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.
steam-openid
Advanced tools
steam-openid provides a straightforward implementation for integrating Steam OpenID authentication into applications.
You can install the required dependencies with:
pip install -r requirements.txt
from steam_openid import SteamOpenID
steam = SteamOpenID(
realm="http://localhost:8080/steam/login",
return_to="http://localhost:8080/steam/callback"
)
@app.route("/steam/login")
def login():
redirect_url = steam.get_redirect_url()
return redirect(redirect_url)
@app.route("/steam/callback")
def callback(request):
steam_id = steam.validate_results(request.query_params)
if steam_id:
return 200, f"Your steam id is: {steam_id}"
else:
return 403, "Failed to authenticate"
Pull requests are welcome! If you find a bug or have a feature request, please open an issue or submit a pull request.
This project is licensed under the MIT License.
FAQs
A simple package for integrating Steam OpenID authentication in applications.
We found that steam-openid 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.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.

Security News
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.