
Research
/Security News
Weaponizing Discord for Command and Control Across npm, PyPI, and RubyGems.org
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
@prsm/arc-server
Advanced tools
[](https://www.npmjs.com/package/@prsm/arc-server)
arc-server uses @prsm/duplex
to create a server that @prsm/arc-client
clients can connect to and communicate with.
import { ArcServer } from "@prsm/arc-server";
ArcServer.init({ host: "0.0.0.0", port: 3351, secure: false });
By default, the server creates a root user with username "root" and password "root". You can customize this:
// Custom root user credentials
ArcServer.init({
host: "0.0.0.0",
port: 3351,
secure: false,
rootUser: {
username: "admin",
password: "secure-password"
}
});
// Disable root user creation entirely
ArcServer.init({
host: "0.0.0.0",
port: 3351,
secure: false,
rootUser: {
disabled: true
}
});
You can create additional users programmatically:
// Create a new user
ArcServer.createUser("username", "password");
// Remove a user
ArcServer.removeUser("username");
You can listen to command events.
ArcServer.emitter.on("auth", ({ payload }) => { });
ArcServer.emitter.on("query", ({ payload }) => { });
ArcServer.emitter.on("createUser", ({ payload }) => { });
ArcServer.emitter.on("removeUser", ({ payload }) => { });
You can query directly from the server instance.
ArcServer.query({
collection: "planets",
operation: "find",
data: {
query: { name: { $includes: "M" } },
},
});
Normally, when you query for a collection, the server will create a standard Collection
instance for you.
If you want to have a ShardedCollection
instance instead, you can define a ShardedCollectionDefinition[]
and pass it to the server during init
.
const shardedCollections = [
{
// Collection name
name: "planets",
// The key to shard on
shardKey: "planet_name",
// How many shards to create
shardCount: 3,
// The adapter to use (not instantiated, just the class)
adapter: FSAdapter,
// The options to pass to the adapter when a shard Collection is created
adapterOptions: {
storagePath: ".data", // where to store the shards
name: "planets", // this is the name of the shard files (planets_shard0, etc)
},
},
];
ArcServer.init({ ..., shardedCollections });
For an explanation of the above options, see ShardedCollectionDefinition
FAQs
[](https://www.npmjs.com/package/@prsm/arc-server)
We found that @prsm/arc-server 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.
Research
/Security News
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
Security News
Socket now integrates with Bun 1.3’s Security Scanner API to block risky packages at install time and enforce your organization’s policies in local dev and CI.
Research
The Socket Threat Research Team is tracking weekly intrusions into the npm registry that follow a repeatable adversarial playbook used by North Korean state-sponsored actors.