Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

security

 [1/2] from: louisaturk::coxinet::net at: 10-Dec-2001 16:47


Rebol friends, The following script runs another script that reads some web pages off the internet every 50 minutes. It asks me for permission to relax security, which I give it. While this script is waiting to do %readpages.r again, is my compute insecure? Can someone access my computer? REBOL[] forever [ do %readpages.r ; rebol scrip to do. wait 00:50:00 ; wait hours:minutes:seconds. ] Thanks, Louis

 [2/2] from: greggirwin:mindspring at: 12-Dec-2001 12:02


Hi Louis, << The following script runs another script that reads some web pages off the internet every 50 minutes. It asks me for permission to relax security, which I give it. While this script is waiting to do %readpages.r again, is my compute insecure? Can someone access my computer? >> Unless I'm totally off base (and someone will correct me if I am, I'm sure), security permissions are only granted to the script that requests them. If your script was acting as some kind of file server, remote execution server, or if it was a remote script that you didn't write and didn't trust, you wouldn't just want to give it total access that someone else could take advantage of. In this case you should be fine. --Gregg