Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
@amanda-mitchell/biblia-api
Advanced tools
This is a Javascript client for the Biblia API.
yarn add @amanda-mitchell/biblia-api
const bibliaApi = require('@amanda-mitchell/biblia-api');
// This can be any method that is compatible with the Fetch interface.
const fetch = require('node-fetch');
const apiKey =
'Go to https://bibliaapi.com/docs/API_Keys to generate an API key.';
const client = bibliaApi.createBibliaApiClient({ apiKey, fetch });
client
.content({
passage: 'Genesis 1:1',
format: 'txt',
bible: 'leb',
})
.then(console.log)
.catch(console.error);
Each of these methods takes an options
object containing the keys that are described in the official API docs.
Endpoints that return JSON are parsed into Javascript objects, plain text and html responses are returned as strings, and anything else is returned as a binary blob object.
content
: returns Bible content.tableOfContents
: returns books and chapters of a given version.search
: searches the text of a Bible version.findBible
: return information about a specific version.find
: return information about versions that match a query (or all available versions).image
: return an image binary for the cover of a version.parse
: parse text into one or more Bible references.scan
: find Bible references contained within a larger block of text.tag
: add html tags around Bible references contained within a larger block of text.compare
: compare two Bible references.FAQs
A Javascript wrapper for the Biblia API.
We found that @amanda-mitchell/biblia-api 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.