
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
Space Bots API to post stats and more, work only on SBL server for join https://discord.gg/jkwDfC7
This is a helper for the SBL API endpoint docs, which can be found here
/api/bots/:idReturns information about a single bot whose user ID matches the id url param\
A JSON structures as:
{
id: string; // The bot's user ID
prefix: string; // The bot's prefix
owner: Array<string>; // An array of the bot's owners' IDs, can sometimes be more than one ID
library: string; // The library the bot uses
description: string; // The bot's short description
longDescription: string; // The bot's long description
certified: boolean; // Whether the bot is certified or not
pageURL: string; // The bot's page on SBL
website?: string; // A URL leading to the bot's website
support?: string; // The code for the invite to the bot's support server
github?: string; // The bot's GitHub repository
servers?: number; // The bot's server count, (sometimes doesn't exist)
users?: number; // The bot's user count, (sometimes doesn't exist)
votes: number; // The amount of users that voted for the bot on the website, can be 0
}
Status code: 404 Not Found
Response:
{
"error": {
"code": 404,
"message": "A client with the given ID does not exist!"
}
}
/api/bots/:idPosts stats for the bot whose user ID matches the id url param\
Authorization | The SBL API key of the botShould be a JSON structured as:
{
guilds: number; // Bot's server count (required, can be 0)
users?: number; // Bot's user count (optional, can't be 0)
}
A JSON structured as:
{
servers: number; // The newly-posted server count
users?: number; // The newly-posted / already stored user count, if exists
}
Status code: 404 Not Found
Response:
{
"error": {
"code": 404,
"message": "A client with the given ID does not exist!"
}
}
Authorization headerStatus code: 401 Unauthorized
Response:
{
"error": {
"code": 401,
"message": "No API key in headers!"
}
}
Authorization header doesn't match the bots API keyStatus code: 403 Forbidden
Response:
{
"error": {
"code": 403,
"message": "The provided API key is invalid!"
}
}
guilds field) in the requests bodyStatus code: 400 Bad Request
Response:
{
"error": {
"code": 400,
"message": "No guild count in the request's body!"
}
}
guilds field) in the requests body is not a numberStatus code: 400 Bad Request
Response:
{
"error": {
"code": 400,
"message": "Invallid guild count in the request's body!"
}
}
users field) in the requests body is present and is not a numberStatus code: 400 Bad Request
Response:
{
"error": {
"code": 400,
"message": "Invallid user count in the request's body!"
}
}
FAQs
Space Bots API to post stats and more, work only on SBL server for join https://discord.gg/jkwDfC7
We found that spacebots demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.