Security News
Research
Data Theft Repackaged: A Case Study in Malicious Wrapper Packages on npm
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
contentful-export
Advanced tools
Contentful is a content management platform for web applications, mobile apps and connected devices. It allows you to create, edit & manage content in the cloud and publish it anywhere via powerful API. Contentful offers tools for managing editorial teams and enabling cooperation between organizations.
this tool allows you to export a space to a JSON dump
this tool does one simple thing which is exporting all your space data to a json file that can be used later to import to another space or save as a backup.
This is an overview of what gets exported.
{
"contentTypes": [],
"entries": [],
"locales":[],
"assets":[]
}
Check out the releases page.
npm install -g contentful-export
Usage: contentful-export [options]
Options:
--version Show version number
--space-id ID of Space with source data
[string] [required]
--management-token Management API token for the space to be exported.
[string] [required]
--export-dir Defines the path for storing the export json file
(defaultpath is the current directory) [string]
--config Configuration file with required values
The --management-token
parameter allows you to specify a token which will be used for both spaces. If you get a token from https://www.contentful.com/developers/docs/references/authentication/ and your user account has access to both spaces, this should be enough.
Check the example-config.json
file for an example of what a configuration file would look like. If you use the config file, you don't need to specify the other options for tokens and space ids.
contentful-export \
--space-id spaceID \
--management-token managementToken
or
contentful-export --config example-config.json
You can create your own config file based on the example-config.json
file.
While this tool is mostly intended to be used as a command line tool, it can also be used as a Node library:
var spaceExport = require('contentful-export')
spaceExport(options)
.then((output) => {
console.log('space data', output)
})
.catch((err) => {
console.log('oh no! errors occurred!', err)
})
The options object can contain any of the CLI options but written with a camelCase pattern instead, and no dashes. So --space-id
would become spaceId
.
Apart from those options, there are an additional ones that can be passed to it:
errorLogFile
- File to where any errors will be written.FAQs
this tool allows you to export a space to a JSON dump
We found that contentful-export demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 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
Research
The Socket Research Team breaks down a malicious wrapper package that uses obfuscation to harvest credentials and exfiltrate sensitive data.
Research
Security News
Attackers used a malicious npm package typosquatting a popular ESLint plugin to steal sensitive data, execute commands, and exploit developer systems.
Security News
The Ultralytics' PyPI Package was compromised four times in one weekend through GitHub Actions cache poisoning and failure to rotate previously compromised API tokens.