PHP – Unzip Large File


    $filename = 'c:\kosmas.zip';
        $archive = zip_open($filename);
        while($entry = zip_read($archive)){
            $size = zip_entry_filesize($entry);
            $name = zip_entry_name($entry);
            $unzipped = fopen('c:/unzip/'.$name,'wb');
            while($size > 0){
                $chunkSize = ($size > 10240) ? 10240 : $size;
                $size -= $chunkSize;
                $chunk = zip_entry_read($entry, $chunkSize);
                if($chunk !== false) fwrite($unzipped, $chunk);
            }

            fclose($unzipped);
        }


source:
http://stackoverflow.com/questions/3263129/unzipping-larger-files-with-php

PHP: Download File


<?php
function downloadFile($fullPath){
// Must be fresh start
if (headers_sent())
die(‘Headers Sent’);

// Required for some browsers
if (ini_get(‘zlib.output_compression’))
ini_set(‘zlib.output_compression’, ‘Off’);

// File Exists?
if(file_exists($fullPath)){
// Parse Info / Get Extension
$fsize         = filesize($fullPath);
$path_parts = pathinfo($fullPath);
$ext         = strtolower($path_parts[“extension”]);

// Determine Content Type
switch ($ext) {
case “pdf”: $ctype=”application/pdf”; break;
case “exe”: $ctype=”application/octet-stream”; break;
case “zip”: $ctype=”application/zip”; break;
case “doc”: $ctype=”application/msword”; break;
case “xls”: $ctype=”application/vnd.ms-excel”; break;
case “ppt”: $ctype=”application/vnd.ms-powerpoint”; break;
case “gif”: $ctype=”image/gif”; break;
case “png”: $ctype=”image/png”; break;
case “jpeg”:
case “jpg”: $ctype=”image/jpg”; break;
default: $ctype=”application/force-download”;
}

header(“Pragma: public”); // required
header(“Expires: 0”);
header(“Cache-Control: must-revalidate, post-check=0, pre-check=0”);
header(“Cache-Control: private”,false); // required for certain browsers
header(“Content-Type: $ctype”);
header(“Content-Disposition: attachment; filename=\”” . basename($fullPath) . “\”;” );
header(“Content-Transfer-Encoding: binary”);
header(“Content-Length: ” . $fsize);
ob_clean();
flush();
readfile($fullPath);
} else {
die(‘File Not Found’);
}
}
?>

source:

http://www.php.net/manual/en/function.header.php

CACLS.exe – Display or modify Access Control Lists (ACLs) for files and folders.


CACLS.exe (this command is deprecated, use ICACLS.EXE instead)

Display or modify Access Control Lists (ACLs) for files and folders.

Access Control Lists apply only to files stored on an NTFS formatted drive, each ACL determines which users (or groups of users) can read or edit the file. When a new file is created it normally inherits ACL’s from the folder where it was created.

Syntax
      CACLS pathname [options]

Key
   options can be any combination of:

   /T Search the pathname including all subfolders.
   /E Edit ACL (leave existing rights unchanged)
   /C Continue on access denied errors. 

   /G user:permission
      Grant access rights, permision can be:
         R Read
         W Write
         C Change (read/write)
         F Full control 

   /R user
      Revoke specified user's access rights (only valid with /E). 

   /P user:permission
      Replace access rights, permission can be:
         N None
         R Read
         W Write
         C Change (read/write)
         F Full control 

   /D user
      Deny access to user. 

   In all the options above "user" can be a UserName
   or a Workgroup (either local or global)

   If a UserName or WGname includes spaces then it must
   be surrounded with quotes e.g. "Authenticated Users"

   If no options are specified CACLS will display the ACLs for the file(s)

Other features to try

Wildcards can be used to specify multiple files.
You can specify more than one user:permission in a single command.
The /D option will deny access to a user even if they belong to a group that does have access.

Using CACLS

  • The CACLS command does not provide a /Y switch to automatically answer ‘Y’ to the Y/N prompt. However, you can pipe the ‘Y’ character into the CACLS command using ECHO, use the following syntax:

    ECHO Y| CACLS /g <username>:<permission>
  • To edit a file you must have the “Change” ACL (or be the file’s owner)
  • To use the CACLS command and change an ACL requires “FULL Control”
  • File “Ownership” will always override all ACL’s – you always have Full Control over files that you create.
  • If CACLS is used without the /E switch all existing rights on [pathname] will be replaced, any attempt to use the /E switch to change a [user:permission] that already exists will raise an error. To be sure the CALCS command will work without errors use /E /R to remove ACL rights for the user concerned, then use /E to add the desired rights.
  • The /T option will only traverse subfolders belowthe current directory.

If no options are specified CACLS will display the current ACLs
e.g. To display the current folder
CACLS .
Display permissions for one file
CACLS MyFile.txt
Display permissions for multiple files
CACLS *.txt

Inherited folder permissions are displayed as:

 OI - Object inherit    - This folder and files. (no inheritance to subfolders)
 CI - Container inherit - This folder and subfolders.
 IO - Inherit only      - The ACE does not apply to the current file/directory

These can be combined as folllows:
 (OI)(CI)	    This folder, subfolders, and files.
 (OI)(CI)(IO)	Subfolders and files only.
     (CI)(IO)  Subfolders only.
 (OI)    (IO)	Files only.

So BUILTIN\Administrators:(OI)(CI)F means that both files and Subdirectories will inherit ‘F’ (Fullcontrol)
similarly (CI)R means Directories will inherit ‘R’ (
Read folders only = List permission)

When cacls is applied to the current folder only there is no inheritance and so no output.

Errors when changing permissions

If a user or group has a permission on a file or folder and you grant a second permission to the same user/group on the same folder, NTFS will sometimes produce the error message “The parameter is incorrect” To fix this (or prevent it happening) revoke the permission first (/e /r) and then reapply (/e /g)

Examples:

Add Read-Only permission to a single file
CACLS myfile.txt /E /G “Power Users”:R

Add Full Control permission to a second group of users
CACLS myfile.txt /E /G “FinanceUsers”:F

Now revoke the Read permissions from the first group
CACLS myfile.txt /E /R “Power Users”

Now give the first group Full-control:
CACLS myfile.txt /E /G “Power Users”:F

Give the Finance group Full Control of a folder and all sub folders
CACLS c:\docs\work /E /T /C /G “FinanceUsers”:F

“Whether a pretty woman grants or withholds her favours, she always likes to be asked for them” – Ovid (Ars Amatoria)

Related:

ATTRIB – Display or change file attributes
AccessEnum – GUI to browse a tree view of user privs
DIR /Q – Display the owner for a list of files (try it for Program files)
PERMS – Show permissions for a user
FIXACLS – Restore default privs (Resource Kit supplement 2)
FSUTIL – File System Options
NTRIGHTS – Edit user account rights
SHOWACL – Show file Access Control Lists (Windows 2000)
TAKEOWN – Take ownership of shares
XCACLS – Display or modify Access Control Lists (ACLs) for files and folders
Q237701 – Cacls cannot apply security to root
Q834721 – Permissions on Folder are incorrectly ordered
Q135268 – How to use CACLS.EXE in a Batch File
Q245031 – Error when using the | pipe symbol
NT Permissions explained

ACL utils: SetACL or FileACL (free)

Equivalent Linux BASH commands:

chmod – Change access permissions
chown – Change file owner and group

source:

http://www.ss64.com/nt/cacls.html

ICACLS.EXE

c:\windows\* /save AclFile /T

– Will save the ACLs for all files under c:\windows and its subdirectories to AclFile.

icacls c:\windows\ /restore AclFile

– Will restore the Acls for every file within AclFile that exists in c:\windows and its subdirectories

icacls file /grant Administrator:(D,WDAC)

– Will grant the user Administrator Delete and Write DAC permissions to file

icacls file /grant *S-1-1-0:(D,WDAC)

– Will grant the user (or security group) defined by sid S-1-1-0 Delete and Write DAC permissions to file

icacls c:\windows\explorer.exe

– View the discretionary access list and integrity level

icacls file /setintegritylevel H

– Modify mandatory integrity level of an object to High