views:

64

answers:

2

There are tools like Fortify available which can be integrated with IDE to scan the source codes for security vulnerabilities. But what I expect is a plugin for IDE like eclipse, which should check for vulnerabilities while typing the code. (Probably, in case of a Java program, for every semi-colon(;) it should check for the vulnerability). It would be great if the tool recommends a fix on the go. So that the developer can fix the vulnerabilities as such fixing the compilation issues in eclipse. This would really reduce the developers' time a lot, when compared to running a full scan of the code, checking vulnerabilities, fixing those and scanning the entire code base again.

Is there any such product available in the market already? If not, is it a feasible one to develop such thing?

  • Thanks, Barani.
A: 

FindBugs can be made to work in a similar manner perhaps, I have set it to run every time I compile a new file and it warns about some interesting potential bugs. The only plugin I know of that runs as you type is Checkstyle so maybe there's a similar plugin that checks for security vulnerabilities?

Stefan Thyberg
A: 

You can also check out Ounce Labs and Coverity...

jm04469
I think ouncelabs, coverity and findbugs do a full scanning of the code. But what I am looking for is a plugin which should work similar to winword, which does a spell check while typing. Just on typing a line of code in IDE, the plugin should check for possible vulnerabilities in that line and alert the user. This is similar to eclipse's in-built compiler, which check for the code correctness and alert the user for each and every line he/she types.