Skip to content

Commit 1e06087

Browse files
authored
Merge pull request #51 from woodruffw-forks/ww/pip-audit
[feat] add pip-audit
2 parents cea1e73 + 1fab997 commit 1e06087

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed

backend/githubData.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,10 @@ const tools = [
131131
name: "pyodide",
132132
owner: "pyodide",
133133
},
134+
{
135+
name: "pip-audit",
136+
owner: "trailofbits",
137+
},
134138
];
135139

136140
function getQuery(name: string, owner: string) {

frontend/src/initialToolData.tsx

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -351,6 +351,23 @@ const _initialToolData: Tool[] = [
351351
useCases: [],
352352
dependsOn: ['wasm'],
353353
},
354+
{
355+
name: 'pip-audit',
356+
features: ['security', 'dependency resolver'],
357+
toolDescription: (
358+
<div>
359+
<p>
360+
pip-audit is a tool for scanning Python environments for packages
361+
with known vulnerabilities. It uses the
362+
<a href="https://github.com/pypa/advisory-database">
363+
Python Packaging Advisory Database</a> via the PyPI JSON API as a
364+
source of vulnerability reports.
365+
</p>
366+
</div>
367+
),
368+
useCases: ['Audit Python packages for known vulnerabilities'],
369+
dependsOn: ['pip', 'venv'],
370+
}
354371
];
355372
_initialToolData.sort((a, b) => {
356373
return a.name.toLocaleLowerCase() < b.name.toLocaleLowerCase() ? -1 : 1;

0 commit comments

Comments
 (0)