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.
@cepharum/ipp
Advanced tools
(c) cepharum GmbH, http://cepharum.de
MIT
This library provides parsing and generation of RFC8011 IPP messages. In addition it contains code for parsing IPP message from stream forwarding all body data following parsed IPP message to be processed separately, e.g. for storing or instantly processing it. Eventually, there is a middleware for use with express or compatible server applications to conveniently discover IPP messages in incoming requests.
npm i @cepharum/ipp
const { IPPMessage } = require( "@cepharum/ipp" );
const parsed = new IPPMessage( rawMessage );
const response = parsed.deriveResponse();
const encoded = response.toBuffer();
It comes with a middleware generator suitable for use with Express server-side framework:
const IPP = require( "@cepharum/ipp" );
app.use( IPP.middleware() );
app.post( ( req, res ) => {
// req.body.message is instance of IPPMessage here
// req.body.data is a Readable stream providing payload of IPP message
} );
The same middleware generator is suitable for injecting into Hitchy server-side framework as well:
const IPP = require( "@cepharum/ipp" );
exports.policies = {
"POST /": IPP.middleware(),
};
exports.routes = {
"POST /"( req, res ) {
// this.local.ipp.message is instance of IPPMessage here
// this.local.ipp.data is a Readable stream providing payload of IPP message
}
};
When implementing IPP services there are some situations when RFC 8011 is contradictory in itself, when it comes to enforcing syntax rules on keywords in section. By supporting global options you can put this library into relaxed mode:
const IPP = require( "@cepharum/ipp" );
IPP.setGlobalOption( "relaxKeywordSyntax", true );
...
FAQs
parsing and creating IPP messages
The npm package @cepharum/ipp receives a total of 0 weekly downloads. As such, @cepharum/ipp popularity was classified as not popular.
We found that @cepharum/ipp 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.
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.