php - How to protect www folder on windows -


i made intranet shop , going give computer intranet on it. want make sure can not copy files , install on computer.

i want protect "www" folder in apache server. using appserv. on local computer.

checked tools on net truecrypt, folderencrypt etc. these encrypt folder contents. if www folder encrypted, php won't work. there way lock folder in windows without encrypting contents.[ little harder crack no lock @ all]

i using zend guard protect php file , checks hard disk name , model , computer model not give %100 protection. heard zend encode gets decoded online.

i need suggestions.

$output = shell_exec('wmic diskdrive model'); echo $output; echo "<br>"; $output1 = shell_exec('wmic csproduct name,vendor,identifyingnumber'); echo $output1; 

you obfuscate php code or compile using example http://developers.facebook.com/blog/post/358/ produce binary, difficult , modify (although of course possible). obfuscating good, not compiling.

as make him not able copy files, 1) run truectrypt volume , log manually every time, , when uses computer, restart files encrypted. (your shop not work during time of course) 2) not give him administrator access, make limited account him. (which not have access protected files). method still make files available if takes out harddrive computer, or boots livecd , copies them, or similair. 3) move damn project computer want give person... dont make more complicated is...

ps: great idea! install virtualbox or similair virtualisation software on computer, , install server in there, configuring network accessible outside. vbox protected password , possibly truecrypt, inside guest machine of course. , tell person if wants restart computer must first take pause on guest machine, , after restart, resume virtual machine. way host can restarted without having enter truecrypt password again.

(truecrypt in setup needed that person not able take harddrive files of virtual machine , copy them).

that's way it!


Comments

Popular posts from this blog

php - What is the difference between $_SERVER['PATH_INFO'] and $_SERVER['ORIG_PATH_INFO']? -

fortran - Function return type mismatch -

queue - mq_receive: message too long -