===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
php-crypt-gpg-1.6.0/Crypt_GPG-1.6.0/Crypt/GPG/ProcessControl.php-108-
php-crypt-gpg-1.6.0/Crypt_GPG-1.6.0/Crypt/GPG/ProcessControl.php:109:            $result  = exec($command);
php-crypt-gpg-1.6.0/Crypt_GPG-1.6.0/Crypt/GPG/ProcessControl.php-110-            $parts   = explode(',', $result);
##############################################
php-crypt-gpg-1.6.0/Crypt_GPG-1.6.0/Crypt/GPG/ProcessControl.php-112-        } else {
php-crypt-gpg-1.6.0/Crypt_GPG-1.6.0/Crypt/GPG/ProcessControl.php:113:            $result  = exec('ps -p ' . escapeshellarg($this->pid) . ' -o pid=');
php-crypt-gpg-1.6.0/Crypt_GPG-1.6.0/Crypt/GPG/ProcessControl.php-114-            $running = (trim($result) == $this->pid);
##############################################
php-crypt-gpg-1.6.0/Crypt_GPG-1.6.0/Crypt/GPG/ProcessControl.php-140-        } elseif (PHP_OS === 'WINNT') {
php-crypt-gpg-1.6.0/Crypt_GPG-1.6.0/Crypt/GPG/ProcessControl.php:141:            exec('taskkill /PID ' . escapeshellarg($this->pid));
php-crypt-gpg-1.6.0/Crypt_GPG-1.6.0/Crypt/GPG/ProcessControl.php-142-        } else {
php-crypt-gpg-1.6.0/Crypt_GPG-1.6.0/Crypt/GPG/ProcessControl.php:143:            exec('kill -15 ' . escapeshellarg($this->pid));
php-crypt-gpg-1.6.0/Crypt_GPG-1.6.0/Crypt/GPG/ProcessControl.php-144-        }
##############################################
php-crypt-gpg-1.6.0/Crypt_GPG-1.6.0/tests/TestCase.php-639-
php-crypt-gpg-1.6.0/Crypt_GPG-1.6.0/tests/TestCase.php:640:        $sum = explode(' ', `md5sum $filename`);
php-crypt-gpg-1.6.0/Crypt_GPG-1.6.0/tests/TestCase.php-641-        $sum = $sum[0];
##############################################
php-crypt-gpg-1.6.0/Crypt_GPG-1.6.0/README.md-37-To test, run either
php-crypt-gpg-1.6.0/Crypt_GPG-1.6.0/README.md:38:`$ phpunit tests/`
php-crypt-gpg-1.6.0/Crypt_GPG-1.6.0/README.md-39-  or
php-crypt-gpg-1.6.0/Crypt_GPG-1.6.0/README.md:40:`$ pear run-tests -r`
php-crypt-gpg-1.6.0/Crypt_GPG-1.6.0/README.md-41-
##############################################
php-crypt-gpg-1.6.0/Crypt_GPG-1.6.0/README.md-43-To build, simply
php-crypt-gpg-1.6.0/Crypt_GPG-1.6.0/README.md:44:`$ pear package`
php-crypt-gpg-1.6.0/Crypt_GPG-1.6.0/README.md-45-
##############################################
php-crypt-gpg-1.6.0/Crypt_GPG-1.6.0/README.md-47-To install from scratch
php-crypt-gpg-1.6.0/Crypt_GPG-1.6.0/README.md:48:`$ pear install package.xml`
php-crypt-gpg-1.6.0/Crypt_GPG-1.6.0/README.md-49-
php-crypt-gpg-1.6.0/Crypt_GPG-1.6.0/README.md-50-To upgrade
php-crypt-gpg-1.6.0/Crypt_GPG-1.6.0/README.md:51:`$ pear upgrade -f package.xml`
##############################################
php-crypt-gpg-1.6.0/debian/sample.php-53-
php-crypt-gpg-1.6.0/debian/sample.php:54:  if (system("gpg --batch --gen-key $tmpname > /dev/null 2> $output") === false) {
php-crypt-gpg-1.6.0/debian/sample.php-55-    unlink($tmpname);