404

[ Avaa Bypassed ]




Upload:

Command:

botdev@3.139.60.67: ~ $
<?php

// A very simple helper script used to generate self-signed certificates.
// Accepts the CN and an optional passphrase to encrypt the private key.
//
// $ php 10-generate-self-signed.php localhost swordfish > secret.pem

// certificate details (Distinguished Name)
// (OpenSSL applies defaults to missing fields)
$dn = array(
    "commonName" => isset($argv[1]) ? $argv[1] : "localhost",
//     "countryName" => "AU",
//     "stateOrProvinceName" => "Some-State",
//     "localityName" => "London",
//     "organizationName" => "Internet Widgits Pty Ltd",
//     "organizationalUnitName" => "R&D",
//     "emailAddress" => "admin@example.com"
);

// create certificate which is valid for ~10 years
$privkey = openssl_pkey_new();
$cert = openssl_csr_new($dn, $privkey);
$cert = openssl_csr_sign($cert, null, $privkey, 3650);

// export public and (optionally encrypted) private key in PEM format
openssl_x509_export($cert, $out);
echo $out;

$passphrase = isset($argv[2]) ? $argv[2] : null;
openssl_pkey_export($privkey, $out, $passphrase);
echo $out;

Filemanager

Name Type Size Permission Actions
01-echo-server.php File 1.12 KB 0644
02-chat-server.php File 1.78 KB 0644
03-http-server.php File 2.04 KB 0644
11-http-client.php File 1.08 KB 0644
12-https-client.php File 1.09 KB 0644
21-netcat-client.php File 2.04 KB 0644
22-http-client.php File 1.95 KB 0644
91-benchmark-server.php File 2 KB 0644
99-generate-self-signed.php File 1.03 KB 0644
localhost.pem File 2.9 KB 0644
localhost_swordfish.pem File 3.03 KB 0644