
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
@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.
The npm package @orbis-systems/new-account-api-client receives a total of 0 weekly downloads. As such, @orbis-systems/new-account-api-client popularity was classified as not popular.
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
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
Research
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.