Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@heathmont/ih-ngiw
Advanced tools
Hub88 Next Generation Integration Wrapper
First of all you need to install package:
npm install --save @heathmont/ih-ngiw
Then you can include your it in your own script:
const Ngiw = require("@heathmont/ih-ngiw");
You should already have public and private key for checking requests from Hub88, in case you don't read about it here: https://github.com/coingaming/Hub88-Examples.
Constructor accepts port
and publicKey
, privateKey
params:
const path = require("path");
const w = new Ngiw({
port: 3000,
publicKey: path.resolve(__dirname, "priv/demo_pub.pem"),
privateKey: path.resolve(__dirname, "priv/demo_priv.pem")
});
You need to implement 4 callbacks, for example:
const balance = req => {
const user = db.findUserBySession(req.token);
return { user: user.name, balance: user.balance, currency: "EUR" };
}
const win = req => {
const game = db.winGame(req.transaction_uuid);
return { user: game.user, balance: game.balance, currency: "EUR" };
}
const rollback = req => {
const transaction = db.rollbackTransaction(req.transaction_uuid);
return {
user: transaction.user,
balance: transaction.balance,
currency: "EUR"
};
}
const bet = req => {
const transaction = db.betTransaction(req.transaction_uuid);
return {
user: transaction.user,
balance: transaction.balance,
currency: "EUR"
};
}
w.balance(balance);
w.win(win);
w.rollback(rollback);
w.bet(bet);
w.start();
Every callback called with different params, you can find description here in body
section: https://app.swaggerhub.com/apis/hub88/hub88/2.0#/Wallet%20API. For example balance
callback called with token
and game_id
(you should not care about request_uuid
, it handled internally).
In every callback you should return user
, balance
, and currency
fields. Or if something goes wrong your can return status
field, you can grab all statuses from Ngiw.STATUS_CODES
. For example:
const { RS_ERROR_USER_DISABLED } = Ngiw.STATUS_CODES;
w.balance(res => {
return { status: RS_ERROR_USER_DISABLED };
})
More compilcated example can be found in example/
folder.
FAQs
Hub88 Next Generation Integration Wrapper
The npm package @heathmont/ih-ngiw receives a total of 0 weekly downloads. As such, @heathmont/ih-ngiw popularity was classified as not popular.
We found that @heathmont/ih-ngiw demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 54 open source maintainers 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’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.