Create an encrypted zip archive with PHP

后端 未结 5 1216
闹比i
闹比i 2020-11-29 05:05

I am searching for a way to encrypt a .txt file into a zip, but in a secure password protected way. My goal is to email this file to me, without anyone being able to read th

相关标签:
5条回答
  • 2020-11-29 05:41

    Note: this answer recommends a cryptographic method that is known insecure, even with good password. Please see link from comments and the Winzip QA on AES. Support for in-php AES zip encryption arrives with php 7.2 (and libzip 1.2.0), which means this answer will soon be outdated too. Until then see this answer for how to call out to 7z instead of the zip command, which supports winzip's AES encryption.

    You can use this:

    <?php echo system('zip -P pass file.zip file.txt'); ?>
    

    Where pass is the password, and file.txt will be zipped into file.zip. This should work on Windows and Linux, you just need to get a free version of zip for Windows ( http://www.info-zip.org/Zip.html#Win32 )

    This kind of security can be broken by brute force attacks, dictionary attacks and etc. But it's not that easy, specially if you chose a long and hard to guess password.

    0 讨论(0)
  • 2020-11-29 05:48

    More and more tools are supporting AES-encrypted ZIP files. It works, it's secure.

    EDIT2: You can use DotNetZip from PHP to dynamically generate AES-encrypted zip archives from PHP. DotNetZip is a .NET library that is designed for .NET languages (C#, VB, etc). It runs only on Windows :(. But DotNetZip does AES, and it's free, and it works from PHP.

    This is the code I used. (PHP v5.2.9 on Win32)

    <?php
    try
    {
      $fname = "zip-generated-from-php-" . date('Y-m-d-His') . ".zip";
      $zipOutput = "c:\\temp\\" . $fname;
      $zipfact = new COM("Ionic.Zip.ZipFile");
      $zip->Name = $zipOutput;
      $dirToZip= "c:\\temp\\psh";
      # Encryption:  3 => 256-bit AES.  
      #     2 => 128-bit AES.  
      #     1 => PKZIP (Weak).  
      #     0 => None
      $zip->Encryption = 3;
      $zip->Password = "AES-Encryption-Is-Secure";
      $zip->AddDirectory($dirToZip);
      $zip->Save();
      $zip->Dispose();
    
      if (file_exists($zipOutput))
      {
        header('Cache-Control: no-cache, must-revalidate');
        header('Content-Type: application/x-zip'); 
        header('Content-Disposition: attachment; filename=' . $fname);
        header('Content-Length: ' . filesize($zipOutput));
        readfile($zipOutput);
        unlink($zipOutput);
      }
      else 
      {
        echo '<html>';
        echo '  <head>';
        echo '  <title>Calling DotNetZip from PHP through COM</title>';
        echo '  <link rel="stylesheet" href="basic.css"/>';
        echo '  </head>';
        echo '<body>';
        echo '<h2>Whoops!</h2>' . "<br/>\n";
        echo '<p>The file was not successfully generated.</p>';
        echo '</body>';
        echo '</html>';
      } 
    }
    catch (Exception $e) 
    {
        echo '<html>';
        echo '  <head>';
        echo '  <title>Calling DotNetZip from PHP through COM</title>';
        echo '  <link rel="stylesheet" href="basic.css"/>';
        echo '  </head>';
        echo '<body>';
        echo '<h2>Whoops!</h2>' . "<br/>\n";
        echo '<p>The file was not successfully generated.</p>';
        echo '<p>Caught exception: ',  $e->getMessage(), '</p>', "\n";
        echo '<pre>';
        echo $e->getTraceAsString(), "\n";
        echo '</pre>';
        echo '</body>';
        echo '</html>';
    }
    
    ?>
    

    I had to modify DotNetZip to make it work with PHP: I had to make the Name property read/write, and I had to make it COM-callable. This change is first available in the v1.8.2.3 release.

    0 讨论(0)
  • 2020-11-29 05:49

    Although PHP is a mature language, there is no adequate method (excluding custom extension or something like that) to achieve such a simple task with pure PHP.

    What you also can do, is to wait until PHP 7.2 will be available for production (because ZipArchive::setEncryptionName is implemented (thanks to Pierre and Remi)).

    But, until then you also can try to port php_zip >= 1.14.0 to PHP < 7.2, but there is currently no compiled binaries available, so you have to compile it yourself and try if it is possible at all (I believe it is).

    PS I would try it, but have no VS2015+ on my PC right now.

    0 讨论(0)
  • 2020-11-29 05:50

    As of php 7.2 (which was released a hours ago), the right way to do this is to use additional functionality included in ZipArchive native php code. (thanks to abraham-tugalov for pointing out that this change was coming)

    Now the simple answer looks something like this:

    <?php
    $zip = new ZipArchive();
    if ($zip->open('test.zip', ZipArchive::CREATE) === TRUE) {
        $zip->setPassword('secret_used_as_default_for_all_files'); //set default password
    
        $zip->addFile('thing1.txt'); //add file
        $zip->setEncryptionName('thing1.txt', ZipArchive::EM_AES_256); //encrypt it
    
        $zip->addFile('thing2.txt'); //add file
        $zip->setEncryptionName('thing2.txt', ZipArchive::EM_AES_256); //encrypt it
    
        $zip->close();
    
        echo "Added thing1 and thing2 with the same password\n";
    } else {
        echo "KO\n";
    }
    ?>
    

    But you can also set the encryption method by index and not name, and you can set each password on a per-file basis... as well as specify weaker encryption options, using the newly supported encryption options.

    This example exercises these more complex options.

    <?php
    $zip = new ZipArchive();
    if ($zip->open('test.zip', ZipArchive::CREATE) === TRUE) { 
         //being here means that we were able to create the file..
    
         //setting this means that we do not need to pass in a password to every file, this will be the default
        $zip->addFile('thing3.txt');
    
        //$zip->setEncryptionName('thing3.txt', ZipArchive::EM_AES_128);
        //$zip->setEncryptionName('thing3.txt', ZipArchive::EM_AES_192);
        //you should just use ZipArchive::EM_AES_256 unless you have super-good reason why not. 
        $zip->setEncryptionName('thing3.txt', ZipArchive::EM_AES_256, 'password_for_thing3');
    
         $zip->addFile('thing4.txt');
        //or you can also use the index (starting at 0) of the file...
        //which means the following line should do the same thing...
        //but just referencing the text.txt by index instead of name..
        //$zip->setEncryptionIndex(1, ZipArchive::EM_AES_256, 'password_for_thing_4'); //encrypt thing4, using its index instead of its name...
    
        $zip->close();
        echo "Added thing3 and thing4 with two different passwords\n";
    } else {
        echo "KO\n";
    }
    ?>
    

    The underlying support for zip encryption is enabled because libzip 1.2.0 introduced support for encryption. So you will need to have php 7.2 and libzip 7.2 in order to run this code... Hopefully this note will be cruft on this answer "real soon"

    0 讨论(0)
  • 2020-11-29 05:54

    This is how I did it. It's with an excel, but it's the same thing.

    • Let php create a random codename.
    • Save the codename in db or in a file to be included by the retrieve.php.
    • Mail yourself the codename.

    • Access via web the retrieve.php?codename=[codename]

    • Let php check if codename is correct. (maybe even it's age).
    • Create the excel/textfile in memory from the data that needs to be send to you.
    • Create an encryption code by adding a local password (that only you know) with the codename.( I say add but can also be mixed or xor-ed or substr... )
    • Encrypt on the fly with the created encryption code.
    • Remove the codename from db or config file.
    • Return this encrypted document in a mail (zipped or not for size).
    • Maybe add two first characters from codename in the mail to know what local full codename to use.

    • Use a local decryption script to decode the downloaded file. Use same codename/password algorithm to create a decryption key.

    I use gibberish-aes-php. ( https://github.com/ivantcholakov/gibberish-aes-php )
    Because then I can use https://github.com/mdp/gibberish-aes as javascript on a client decoder (for things I want to take a quick peek at in a browser).

    0 讨论(0)
提交回复
热议问题