Fix CWE-404

Issue #395 resolved
XXX XXX created an issue

You seem to be vulnerable to https://cwe.mitre.org/data/definitions/404.html

InputStream is = getClass().getClassLoader().getResourceAsStream("iso3166_1alpha3-codes.properties");
try {
    CODES_RESOURCE.load(is);
} catch (IOException e) {
    return null;
}

Comments (2)

  1. Log in to comment