This file has been truncated, but you can view the full file.
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
rss.php | |
coupon_activation.php | |
tools/bizproc_wf_settings.php | |
tools/seo_yandex.php | |
tools/seo_google.php | |
tools/get_catalog_menu.php | |
tools/sale_farm_check_print.php | |
tools/vote/uf.php | |
tools/vote/vote_chart.php | |
tools/sale/discount_coupon_list.php |
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
#!/usr/bin/env php | |
<?php | |
if (! isset($argv[1])) { | |
echo 'Usage: memcached-dumper.php <server>'.PHP_EOL; | |
exit; | |
} | |
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 | |
/** | |
* author: alexeyprudnikov | |
**/ | |
class JsAes { | |
public static function Decrypt($base64string, $secretkey) { | |
$base64string = str_replace('_', '+', $base64string); | |
$data = base64_decode($base64string); |
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 | |
/* | |
a – string which is NUL-padded | |
A – string which is SPACE-padded | |
h – low nibble first Hex string | |
H – high nibble first Hex string | |
c – signed character | |
C – unsigned character | |
s – signed short (16 bit, machine byte order) |
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 | |
class LaravelEncryptor { | |
private $key; | |
private $cipher; | |
public function __construct($key = 'ABCDEF1234567890ABCDEF1234567890', $cipher = 'AES-256-CBC') { | |
$this->key = substr($key, 0, 7) == 'base64:' ? base64_decode(substr($key, 7)) : $key; | |
$this->cipher = $cipher; | |
} |
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
echo -n "Target list (google.com, 192.168.1.1/24): " | |
read IP | |
echo "Treat all hosts as online -- skip host discovery (Y/N)?" | |
read answer | |
PN="" | |
if [ "$answer" != "${answer#[Yy]}" ] ; then | |
PN="-Pn"; | |
fi |