Create issue on a new discovery #958
Unanswered
ws-divya-sre
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I was thinking of a way Bandit can automatically create an issue (on github/JIRA) when it discovers a new security issue.
So far I know,
bandit -r .
scans whole code tree for any issues but it cannot perform any API call in between the process. Can that be done?Or should there be something like:
find . -type f -name '*.py' | while read -r line; do bandit $line <and POST issue on github if found new issue>; done
Beta Was this translation helpful? Give feedback.
All reactions