File tree Expand file tree Collapse file tree 2 files changed +21
-0
lines changed Expand file tree Collapse file tree 2 files changed +21
-0
lines changed Original file line number Diff line number Diff 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
136140function getQuery ( name : string , owner : string ) {
Original file line number Diff line number Diff 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 ;
You can’t perform that action at this time.
0 commit comments