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 | |
/************************************************************************* | |
php easy :: whois lookup script | |
========================================================================== | |
Author: php easy code, www.phpeasycode.com | |
Web Site: http://www.phpeasycode.com | |
Contact: [email protected] | |
*************************************************************************/ | |
$domain = $_GET['domain']; |
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
Clusterul este - scm-log.emag.network | |
Format din masinile: | |
scm-log1-all-prod.emag.network | |
scm-elastic1-all-prod.emag.network | |
scm-elastic2-all-prod.emag.network | |
scm-elastic3-all-prod.emag.network | |
curl -XGET 'http://scm-elastic3-all-prod.emag.network:9200/_cat/indices?v' -H 'Content-Type: application/json' -d '{}' | |
curl -XGET 'http://scm-elastic3-all-prod.emag.network:9200/logstash-scmr_*/_stats?format=json' -H 'Content-Type: application/json' -d '{}' | |
curl -XGET 'localhost:9200/_cat/indices?v' -d '{}' |
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
#!/usr/bin/env bash | |
PHP_INI_PATH="/etc/php.ini"; | |
PHP_INI_CLI_PATH="/etc/php-cli.ini"; | |
FOLDER_PATH="$HOME/mailhog"; | |
PORT_NUMBER=8025; | |
MAILHOG_FILE="$FOLDER_PATH/MailHog_linux_amd64"; | |
MHSEND_FILE="$FOLDER_PATH/mhsendmail_linux_amd64"; |
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
function heidiDecode(hex) { | |
var str = ''; | |
var shift = parseInt(hex.substr(-1)); | |
hex = hex.substr(0, hex.length - 1); | |
for (var i = 0; i < hex.length; i += 2) | |
str += String.fromCharCode(parseInt(hex.substr(i, 2), 16) - shift); | |
return str; | |
} | |
document.write(heidiDecode('755A5A585C3D8141786B3C385E3A393')); |