mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-31 04:07:30 +07:00
GitOrigin-RevId: 8b2b63fc6db476ca0c2cfe5cadd84db6c4236d0f
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> |