mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
20 lines
597 B
HTML
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> |