Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

cf7 admin api setSecuritySandbox method of security.cfc

Status
Not open for further replies.

joeatsatachi

Programmer
Sep 15, 2005
5
GB
hi

I am working on the setSecuritySandbox method of security.cfc in CFAdmin
API. It takes an array of stucture which define the sandbox security
rules. An complete example as following (by dump a sandbox)

1
struct
ACTION [empty string]
CLASS java.io.SerializablePermission
TARGET *
2
struct
ACTION read,write
CLASS java.util.PropertyPermission
TARGET *
3
struct
ACTION [empty string]
CLASS java.net.NetPermission
TARGET *
4
struct
ACTION [empty string]
CLASS java.sql.SQLPermission
TARGET *
5
struct
ACTION [empty string]
CLASS java.security.SecurityPermission
TARGET *
6
struct
ACTION connect,resolve
CLASS java.net.SocketPermission
TARGET *
7
struct
ACTION [empty string]
CLASS java.lang.RuntimePermission
TARGET *
8
struct
ACTION [empty string]
CLASS java.lang.reflect.ReflectPermission
TARGET *
9
struct
ACTION [empty string]
CLASS coldfusion.sql.DataSourcePermission
TARGET *
10
struct
ACTION [empty string]
CLASS coldfusion.tagext.GenericTagPermission
TARGET *-cfexecute,cfftp,cfpop,cfregistry,cfdirectory
11
struct
ACTION [empty string]
CLASS coldfusion.runtime.FunctionPermission
TARGET *
12
struct
ACTION read,write,execute,delete
CLASS java.io.FilePermission
TARGET e:\13
struct
ACTION [empty string]
CLASS coldfusion.tagext.lang.ModulePermission
TARGET *
14
struct
ACTION read,write,execute,delete
CLASS java.io.FilePermission
TARGET e:\15
struct
ACTION read,write,execute,delete
CLASS java.io.FilePermission
TARGET e:\16
struct
ACTION read,write,execute,delete
CLASS java.io.FilePermission
TARGET e:\
I am searching for information on what class is avaliable in the sandbox
security and what they do,what action and target they take, what is their
use. So I would know to define my sandbox security rules.

However, I have no luck so far by finding it on the Macromedia
documentation. can Any guru point me a direction? Thanks
 
macromedia documentation are living documents. While you don't post problems with code you certianly post comments about the documentation. if you find it lacking or incorrect, tell them.


go to the area you feel your documentation should be and post "I am searching for information on what class is avaliable in the sandbox security and what they do,what action and target they take, what is their use. So I would know to define my sandbox security rules. However, I have no luck so far by finding it on the Macromedia documentation. where is it?" or something to that effect. Good luck.

We've heard that a million monkeys at a million keyboards could produce the complete works of Shakespeare; now, thanks to the Internet, we know that is not true.
 
thanks TruthInSatire

I post my question on the live document and hope i can get an answer soon
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top