public static enum InjectionUnsafe.Exploitability extends Enum<InjectionUnsafe.Exploitability>
| Enum Constant and Description |
|---|
Difficult
Even with full knowledge of all facts, like version numbers, it is hard to perform an attack.
|
Easy
An exploit is easy to perform.
|
ExploitCodeExists
Exploit code or instructions are already known
|
| Modifier and Type | Method and Description |
|---|---|
static InjectionUnsafe.Exploitability |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InjectionUnsafe.Exploitability[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InjectionUnsafe.Exploitability Easy
public static final InjectionUnsafe.Exploitability ExploitCodeExists
public static final InjectionUnsafe.Exploitability Difficult
public static InjectionUnsafe.Exploitability[] values()
for (InjectionUnsafe.Exploitability c : InjectionUnsafe.Exploitability.values()) System.out.println(c);
public static InjectionUnsafe.Exploitability valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2018 trivago. All rights reserved.