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.
Game Kit is a toolbox to provide some features relative to game endpoint, game management and control in gaming platform.
Infrastructure features in game_kit is to provide game endpoint management currently.
Game endpoint is composed by gateway host(default: http://localhost, game ID and IDC environment(default: int). Currently, you can specify gateway host and IDC environment in environment valuables GW_HOST and IDC_ENV. Here is the example of default return game endpoint, such as game id is 10000
http://localhost/int_game10000_app
If you specify GW_HOST is 'http://my_gateway', so you can get the game endpoint as:
http://my_gateway/int_game10000_app
Similarly, setting IDC_ENV to 'stg', the game endpoint can be:
http://localhost/stg_game10000_app
gem install game_kit
require 'game_kit/infra'
GameKit::Infra.endpoint_for(10000) # http://localhost/int_game10000_app
# Specify gateway host in API call
GameKit::Infra.endpoint_for(10000,'http://my_gateway') # http://my_gateway/int_game10000_app
# Specify gateway host and idc environment in API call
GameKit::Infra.endpoint_for(10000,'http://my_gateway', 'stg') # http://my_gateway/stg_game10000_app
Ben Wu ben.wu@laxino.com
FAQs
Unknown package
We found that game_kit 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.
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.