All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sonar.l10n.java.rules.java.S2658.html Maven / Gradle / Ivy

This rule is deprecated; use {rule:javasecurity:S6173} instead.

Why is this an issue?

Dynamically loaded classes could contain malicious code executed by a static class initializer. I.E. you wouldn’t even have to instantiate or explicitly invoke methods on such classes to be vulnerable to an attack.

This rule raises an issue for each use of dynamic class loading.

Noncompliant code example

String className = System.getProperty("messageClassName");
Class clazz = Class.forName(className);  // Noncompliant

Resources





© 2015 - 2025 Weber Informatics LLC | Privacy Policy