
Research
Malicious fezbox npm Package Steals Browser Passwords from Cookies via Innovative QR Code Steganographic Technique
A malicious package uses a QR code as steganography in an innovative technique.
parse-server-migrating-adapter
Advanced tools
Parse Server file adapter for migrating between different adapters.
$ npm install parse-server-migrating-adapter --save
In your parse server index:
var ParseServer = require('parse-server').ParseServer;
var MigratingAdapter = require('parse-server-migrating-adapter')
var GridStoreAdapter = require('parse-server/lib/Adapters/Files/GridStoreAdapter').GridStoreAdapter
var S3Adapter = require('parse-server-s3-adapter')
var s3Adapter = new S3Adapter({
bucket: process.env.S3_BUCKET_NAME,
accessKey: process.env.AWS_ACCESS_KEY,
secretKey: process.env.AWS_SECRET,
region: 'us-east-1'
})
var fileAdapter = new MigratingAdapter(s3Adapter, [new GridStoreAdapter(process.env.DATABASE_URI)])
var api = new new ParseServer({
filesAdapter: fileAdapter
})
The adapter takes a main adapter, which is what is used to create any new files. It also takes a list of old adapters. When requesting a file, the main adapter is searched first, and then the old adapters are searched. If the file is found in an old adapter, it is stored on the main adapter.
This projects follows standardjs. We also try to maintain 100% real test coverage. When submitting a PR, make sure that there is an accompanying test, and that npm run build
is clean.
FAQs
Parse Server file adapter to migrate between adapters
We found that parse-server-migrating-adapter 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
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.
Application Security
/Research
/Security News
Socket detected multiple compromised CrowdStrike npm packages, continuing the "Shai-Hulud" supply chain attack that has now impacted nearly 500 packages.