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.
datapackage-query
Advanced tools
Opens datapackage.json and resource.csv files and performs simple queries on the contents
Opens datapackage.json
and contained resource.csv
files and performs various search queries on the contents.
npm install datapackage-query
Include package and perform a basic query with arguments. In this case the arguments are the type key
and search
var Query = require('datapackage-query')
var arguments = { country: 'SY', 'search': 'DarkCo' }
Query.Grow('/path/to/your/datapackage.json', function(schema) {
Query.Twirl('/path/to/datapackage/', schema.resources[0], arguments, function(csv_to_json_data) {
// use your data for good :)
})
})
search filters results by wild card search term specified
key filters results by "key" in a datapackage's schema to the specified value of query
Here is an example of datapackage-query
being used to power digitalfreedom.io website which creates a REST API using ConjurorAPI which exposes the data through the Hapi.js webserver.
Example: retrieve all surveillance vendors based in Germany:
curl "https://digitalfreedom.io/api/vendors?country=DE" | python -m json.tool
Example: retrieve all targeted attacks related to Syria that have employed the DarkComet RAT:
curl "https://digitalfreedom.io/api/targetedthreats?country=SY&family=DarkCo" | python -m json.tool
curl "https://digitalfreedom.io/api/vendors?country=DE&search=Trojan" | python -m json.tool
$ curl https://digitalfreedom.io/api/targetedthreats | python -m json.tool
{
"description": "Targeted attacks related to civil society",
"homepage": "",
"license": "PDDL-1.0",
"name": "data-targetedthreats",
"repository": "https://github.com/digitalfreedom/data-targetedthreats.git",
"result": [
{
"c2": "213.55.99.74",
"country": "ET",
"date": "2012-01-01",
"family": "FinSpy",
"md5": "8ae2febe04102450fdbc26a38037c82b",
"reference": "https://citizenlab.org/2013/03/you-only-click-twice-finfishers-global-proliferation-2/",
"target": "opposition"
},
{
"c2": "46.4.69.25",
"country": "ET",
"date": "2013-12-01",
"family": "RCS",
"md5": "53a9e1b59ff37cc2aeff0391cc546201",
"reference": "https://citizenlab.org/2014/02/hacking-team-targeting-ethiopian-journalists/",
"target": "journalist"
},
...
],
"status": "success",
"title": "Targeted Threats",
"version": "0.1.0"
}
FAQs
Opens datapackage.json and resource.csv files and performs simple queries on the contents
We found that datapackage-query 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.