
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
@orbis-systems/new-account-api-client
Advanced tools
This library comes comes with ABSOLUTELY NO WARRANTY, to the extent permitted by applicable law.
This library comes comes with ABSOLUTELY NO WARRANTY, to the extent permitted by applicable law.
npm i -s @orbis-systems/new-account-api-js
require("babel-core/register");
require("babel-polyfill");
const APIClient = require("@orbis-systems/new-account-api-js");
or
require("babel-core/register");
require("babel-polyfill");
import APIClient from '@orbis-systems/new-account-api-js';
<script src="browser-bundle.js"></script>
const config = {
base_url: 'https://example.com/', // Obtained from Orbis
};
(async () =>
{
let client = new APIClient(config);
await client.login('email', 'password', true);
});
const config = {
base_url: 'https://example.com/', // Obtained from Orbis
};
var client = new APIClient(config)
client.login('email', 'password', true);
By default, the session store will use LocalStorage. In the browser, LocalStorage
will utilize localStorage
, and in NodeJS it will store them in ./session
.
You can create a custom session store by extending the SessionStore
class. To use it, pass it as the session_store
on the config like:
const config = {
...
session_store: CustomStore,
...
};
You must implement the methods:
get(key)
set(key, value, expiration_in_minutes)
has(key)
(Returns boolean. Should also return false if it has expired)FAQs
This library comes comes with ABSOLUTELY NO WARRANTY, to the extent permitted by applicable law.
We found that @orbis-systems/new-account-api-client demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.