
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
kryptnostic-js
Advanced tools
kryptnostic.js is an SDK for secure search, sharing, and storage on the Kryptnostic platform. No private keys are sent to the server in plaintext, and all user data is encrypted with 256-bit AES. It uses state-of-the-art advancements in fully homomorphic encryption to provide searchable encryption over text data.
##Getting Started ###Installation To install the latest version:
npm install --save kryptnostic-js
###Loading To load the library:
var KJS = require('./node_modules/kryptnostic-js/dist/kryptnostic.umd.js');
###Configuration Currently, you must configure the library with valid URLs for 2 backend services. To run against our production services:
KJS.ConfigurationService.set({
servicesUrlV2 : 'https://kodex.im/services2/v2',
heraclesUrlV2 : 'https://kodex.im/heracles2/v2'
});
###Registration To register:
var registrationClient = new KJS.RegistrationClient();
registrationClient.register({ 'krypto@kryptnostic.com', 'krypto', 'mansbestfriend1^' })
.then(function() {
// confirm successful registration.
})
.catch(function() {
// registration failed :(
});
##API
interface KJS {
ConfigurationService ConfigurationService;
AuthenticationService AuthenticationService;
UserDirectoryApi UserDirectoryApi;
RegistrationClient RegistrationClient;
UserDirectoryApi UserDirectoryApi;
}
interface ConfigurationService {
void set(Config);
String get(ConfigKey);
}
enum ConfigKey = {'servicesUrlV2', 'heraclesUrlV2'}
dictionary Config {
String? ConfigKey;
...
}
interface RegistrationClient {
Promise<void> register: ( RegistrationRequest );
}
dictionary RegistrationRequest {
String email;
String name;
String password;
}
##Developing See docs/development.md
FAQs
JavaScript SDK for storing, sharing, and searching FHE-encrypted data.
We found that kryptnostic-js demonstrated a not healthy version release cadence and project activity because the last version was released 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.