Files
openide/java/java-impl/resources/inspectionDescriptions/SystemProperties.html
2025-02-05 04:43:28 +00:00

20 lines
597 B
HTML

<html>
<body>
Reports code that accesses system properties using one of the following methods:
<ul>
<li>
<code>System.getProperties()</code>, <code>System.setProperty()</code>,
<code>System.setProperties()</code>, <code>System.clearProperties()</code>
</li>
<li>
<code>Integer.getInteger()</code>
</li>
<li>
<code>Boolean.getBoolean()</code>
</li>
</ul>
<p>
While accessing the system properties is not a security risk in itself, it is often found in malicious code.
Code that accesses system properties should be closely examined in any security audit.
</body>
</html>