visma-prodsec / confused

Tool to check for dependency confusion vulnerabilities in multiple package management systems
MIT License
701 stars 93 forks source link

[Request] Check Installed Packages #27

Closed zero77 closed 1 month ago

zero77 commented 3 years ago

Can you give the option to check all packages that are currently installed.

This is possible to do this with pip by running: pip3 list pip list

joohoi commented 3 years ago

You can do this right now:

pip freeze > installed.txt && confused -l pip installed.txt
zero77 commented 3 years ago

Is it possible to pipe this instead of outputting it to a file.

joohoi commented 3 years ago

Not at the moment, sorry. A good feature request though.