尝试使用 ESAPI 但收到错误

2022-09-01 23:09:44

我正在尝试使用ESAPI.jar为我的Web应用程序提供安全性。基本上,我刚刚开始使用ESAPI.jar。但问题是我无法使用ESAPI运行甚至简单的程序。小代码片段是:

String clean = ESAPI.encoder().canonicalize("someString");
Randomizer r=ESAPI.randomizer();    
System.out.println(r);
System.out.println(clean);

我收到此错误:

Attempting to load ESAPI.properties via file I/O.
Attempting to load ESAPI.properties as resource file via file I/O.
Not found in 'org.owasp.esapi.resources' directory or file not readable: D:\Eclipse-Workspace\Test\ESAPI.properties
Not found in SystemResource Directory/resourceDirectory: .esapi\ESAPI.properties
Not found in 'user.home' (C:\Documents and Settings\user.user) directory: C:\Documents and Settings\user.user\esapi\ESAPI.properties
Loading ESAPI.properties via file I/O failed. Exception was: java.io.FileNotFoundException
Attempting to load ESAPI.properties via the classpath.
ESAPI.properties could not be loaded by any means. Fail. Exception was: java.lang.IllegalArgumentException: Failed to load ESAPI.properties as a classloader resource.
Exception in thread "main" org.owasp.esapi.errors.ConfigurationException: java.lang.reflect.InvocationTargetException SecurityConfiguration class (org.owasp.esapi.reference.DefaultSecurityConfiguration) CTOR threw exception.
    at org.owasp.esapi.util.ObjFactory.make(ObjFactory.java:129)
    at org.owasp.esapi.ESAPI.securityConfiguration(ESAPI.java:184)
    at org.owasp.esapi.ESAPI.encoder(ESAPI.java:99)
    at org.rancore.testJasp.TestEsapi.main(TestEsapi.java:59)
Caused by: java.lang.reflect.InvocationTargetException
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at org.owasp.esapi.util.ObjFactory.make(ObjFactory.java:86)
    ... 3 more
Caused by: org.owasp.esapi.errors.ConfigurationException: ESAPI.properties could not be loaded by any means. Fail.
    at org.owasp.esapi.reference.DefaultSecurityConfiguration.loadConfiguration(DefaultSecurityConfiguration.java:439)
    at org.owasp.esapi.reference.DefaultSecurityConfiguration.<init>(DefaultSecurityConfiguration.java:227)
    at org.owasp.esapi.reference.DefaultSecurityConfiguration.getInstance(DefaultSecurityConfiguration.java:75)
    ... 8 more
Caused by: java.lang.IllegalArgumentException: Failed to load ESAPI.properties as a classloader resource.
    at org.owasp.esapi.reference.DefaultSecurityConfiguration.loadConfigurationFromClasspath(DefaultSecurityConfiguration.java:667)
    at org.owasp.esapi.reference.DefaultSecurityConfiguration.loadConfiguration(DefaultSecurityConfiguration.java:436)
    ... 10 more

我尝试复制源文件夹中的3个ESAPI属性文件,并在构建路径上配置它们,但仍然没有成功。我尝试了许多排列和组合,但无济于事。

请指导我。

属性文件的内容是:

# User Messages
Error.creating.randomizer=Error creating randomizer

This.is.test.message=This {0} is {1} a test {2} message

# Validation Messages

# Log Messages

答案 1

ESAPI.properties 文件中应包含 3 行以上的行。例如,请参阅:

https://web.archive.org/web/20150904064147/http://code.google.com:80/p/owasp-esapi-java/source/browse/trunk/configuration/esapi/ESAPI.properties

根据我的经验,ESAPI.properties 文件要么需要与 esapi 位于同一文件夹中.jar要么需要编译到资源目录中的 jar 中。

/resources/ESAPI.properties

我认为任何一个都应该起作用。如果 ESAPI 找不到该文件,它会在一个位置查找其他位置。

其代码位于第 620 行附近:

https://web.archive.org/web/20161005210258/http://code.google.com/p/owasp-esapi-java/source/browse/trunk/src/main/java/org/owasp/esapi/reference/DefaultSecurityConfiguration.java


答案 2

我自己只是在挣扎着度过这个。

  1. 我在我的C:/users/myname/目录中创建了一个名为esapi的文件夹,并加载了ESAPI.properties,validation.properties和ESAPI-AccessControlPolicy.xml这让我克服了所有找不到文件的错误。ESAPI 在多个位置查找文件。顺便说一句,我正在运行Windows 7 64位。
  2. 然后我不得不更新一些罐子。我应该从一开始就这样做,但我不知道。我收到这个错误:AccessController类(org.owasp.esapi.reference.DefaultAccessController)CTOR为每个需要是较新版本的jar都抛出了异常,比如commons collections或log4j。在堆栈跟踪的底部,它将引用有问题的 jar。

当我从esapi lib目录中添加较新的jars时,一切都很正常!

我在控制台末尾收到此消息:

ESAPI.accessController found: org.owasp.esapi.reference.DefaultAccessController@1cb8deef

注意:有一个ESAPI_en_US.properties 文件,但它只有几行。只需在以下位置使用该文件:\esapi-2.1.0-dist\src\test\resources\esapi\ESAPI.properties。这是完整的文件。