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.
@porch/gatsby-source-gitlab-projects
Advanced tools
Gatsby source plugin for getting all project metadata from Gitlab
Gatsby source plugin for fetching project metadata for projects in Gitlab.
npm install @porch/gatsby-source-gitlab-projects
Add the following to your gatsby-config.js
:
module.exports = {
plugins: [
{
resolve: '@porch/gatsby-source-gitlab-projects',
options: {
gitlab: {
domain: 'your-gitlab-domain',
privateToken: 'your-private-token',
},
includeReadme: true,
searchParams: {
// See https://docs.gitlab.com/ee/api/projects.html#list-all-projects
},
groupId: 1 // If provided, will fetch all projects for the given group, see https://docs.gitlab.com/ee/api/groups.html#list-a-groups-projects
}
}
};
Sample Gatsbys GraphQL query:
{
allGitLabProject {
edges {
node {
id
project {
name
name_with_namespace
description
path
web_url
namespace {
id
name
}
}
}
}
}
}
Read the Gatsby documentation for help on using GraphQL.
FAQs
Gatsby source plugin for getting all project metadata from Gitlab
We found that @porch/gatsby-source-gitlab-projects demonstrated a not healthy version release cadence and project activity because the last version was released 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.
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.