Run inspection

Run inspection by name. For example, run Vulnerable API usage to see where the vulnerable API of external dependencies is used in your code.

When dependencies in your project have known vulnerabilities, how do you know whether you're actually using the vulnerable part of a dependency? Use IntelliJ IDEA's Vulnerable API Usages inspection to find out!

We can run the Vulnerable API usage inspection manually to get a report about all vulnerable APIs usages in our project. To run an inspection by name, we can go to Code | Analyze Code | Run Inspection by Name in the main menu, or use the shortcut ⌘⌥⇧I (macOS) / Ctrl+Alt+Shift+I (Windows/Linux). Or we can use Find Action ⌘⇧A (macOS) / Ctrl+Shift+A (Windows/Linux) to find the action Run Inspection by Name.

In the Enter inspection name popup that opens, type the name of the inspection you want to run, for example, “Vulnerable API usage”. Next, select the scope you want to run this inspection on.

The results of the inspection will open in a tab in the Problems tool window.

The results will be shown on the left. Click one of the results to open a preview of that result on the right. This gives you the option to Go to file with declared dependency, which will navigate to the place in the build file where the relevant dependency is declared, and we can upgrade the dependency to the unaffected version from there. Alternatively, double-click the result to navigate to the affected code in the editor, to see exactly where and how the vulnerable API is used.


Related Resources

Vulnerable API Usage
Vulnerable API Usage
See whether you are using the vulnerable API of a dependency.
Convert Class to Record
Convert Class to Record
Use inspections to convert classes to Java 16 records.
Go to Next Error
Go to Next Error
Quickly move to the next (or previous) error or warning in the file.