Open python
python
and type
>>> import ssl
>>> ssl.OPENSSL_VERSION
'OpenSSL 1.0.1g 7 Apr 2014'
| -- CREATE TABLE temp_dodo_embedded_scts ( certificate_id bigint, issuer_ca_id integer ); | |
| -- GRANT SELECT ON temp_dodo_embedded_scts TO GUEST; | |
| \timing on | |
| \set ON_ERROR_STOP on | |
| DO | |
| $$DECLARE | |
| t_minCertificateID certificate.ID%TYPE; |
| wget http://archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.0g-2ubuntu4_amd64.deb | |
| sudo dpkg -i libssl1.1_1.1.0g-2ubuntu4_amd64.deb |
Open python
python
and type
>>> import ssl
>>> ssl.OPENSSL_VERSION
'OpenSSL 1.0.1g 7 Apr 2014'
| <?php | |
| $a = new A(); | |
| $reflection = new \ReflectionClass($a); | |
| $property = $reflection->getProperty('privateProperty'); | |
| $property->setAccessible(true); | |
| $property->setValue($a, 'new-value'); | |
| echo $a->getPrivateProperty(); | |
| //outputs: |
| #!/bin/sh | |
| formail -D 100000000 idcache < $1 -s > $1_new |
| urlencode() { | |
| # urlencode <string> | |
| old_lc_collate=$LC_COLLATE | |
| LC_COLLATE=C | |
| local length="${#1}" | |
| for (( i = 0; i < length; i++ )); do | |
| local c="${1:$i:1}" | |
| case $c in |