This file contains hidden or 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 | |
/** | |
* @license MIT License | |
* @copyright maartendekeizer | |
*/ | |
$memcached = new Memcached(); | |
$memcached->addServer('127.0.0.1', 11211); |
This file contains hidden or 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 | |
$host = '127.0.0.1'; | |
$user = 'USER'; | |
$password = 'PASSWORD'; | |
echo 'php version ' . phpversion() . PHP_EOL; | |
$count = 1000; |
This file contains hidden or 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
(New-Object System.Net.WebClient).DownloadFile("http://markei.nl/download.exe", ".\Desktop\download.exe") |
This file contains hidden or 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 | |
$opBaseUrl = 'https://api.openprovider.eu/v1beta'; | |
$opUsername = '***'; | |
$opPassword = '***'; | |
$opApiCall = $opBaseUrl . '/auth/login'; | |
$opCh = curl_init($opApiCall); | |
curl_setopt($opCh, CURLOPT_RETURNTRANSFER, true); |
This file contains hidden or 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 | |
$opBaseUrl = 'https://api.openprovider.eu/v1beta'; | |
$opUsername = '***'; | |
$opPassword = '***'; | |
$oxxaBaseUrl = 'https://api.oxxa.com/command.php'; | |
$oxxaUsername = '***'; | |
$oxxaPassword = '***'; | |
$domainName = $argv[1]; |