|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||
The AccessReferenceMap interface is used to map from a set of internal direct object references to a set of indirect references that are safe to disclose publicly. This can be used to help protect database keys, filenames, and other types of direct object references. As a rule, developers should not expose their direct object references as it enables attackers to attempt to manipulate them.
Indirect references are handled as strings, to facilitate their use in HTML. Implementations can generate simple integers or more complicated random character strings as indirect references. Implementations should probably add a constructor that takes a list of direct references.
Note that in addition to defeating all forms of parameter tampering attacks, there is a side benefit of the AccessReferenceMap. Using random strings as indirect object references, as opposed to simple integers makes it impossible for an attacker to guess valid identifiers. So if per-user AccessReferenceMaps are used, then request forgery (CSRF) attacks will also be prevented.
Set fileSet = new HashSet(); fileSet.addAll(...); // add direct references (e.g. File objects) AccessReferenceMap map = new AccessReferenceMap( fileSet ); // store the map somewhere safe - like the session! String indRef = map.getIndirectReference( file1 ); String href = "http://www.aspectsecurity.com/esapi?file=" + indRef ); ... String indref = request.getParameter( "file" ); File file = (File)map.getDirectReference( indref );
| Method Summary | |
java.lang.String |
addDirectReference(java.lang.Object direct)
Adds a direct reference to the AccessReferenceMap and generates an associated indirect reference. |
java.lang.Object |
getDirectReference(java.lang.String indirectReference)
Get the original direct object reference from an indirect reference. |
java.lang.String |
getIndirectReference(java.lang.Object directReference)
Get a safe indirect reference to use in place of a potentially sensitive direct object reference. |
java.util.Iterator |
iterator()
Get an iterator through the direct object references. |
java.lang.String |
removeDirectReference(java.lang.Object direct)
Removes a direct reference and its associated indirect reference from the AccessReferenceMap. |
| Method Detail |
public java.util.Iterator iterator()
public java.lang.String getIndirectReference(java.lang.Object directReference)
directReference - the direct reference
public java.lang.Object getDirectReference(java.lang.String indirectReference)
throws AccessControlException
indirectReference - the indirect reference
AccessControlException - if no direct reference exists for the
specified indirect referencepublic java.lang.String addDirectReference(java.lang.Object direct)
direct - the direct reference
public java.lang.String removeDirectReference(java.lang.Object direct)
throws AccessControlException
direct - the direct reference to remove
AccessControlException - FIXME Why might we throw an ACE here?
|
|||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||