I hereby claim:
- I am bharat-b on github.
- I am bharatb (https://keybase.io/bharatb) on keybase.
- I have a public key ASD8PaDhbgWnjD_BGah4s6x7EmgOC__2VlYea3dhotCf2Qo
To claim this, I am signing this object:
#!/usr/bin/python | |
import subprocess | |
import platform | |
import urllib2 | |
import urllib | |
#Add your url to post data here | |
server_url = "url_to_post_here" | |
def bash(command): |
<?php | |
class IMAP { | |
protected $constring; | |
protected $connection; | |
protected $extensions = array( "txt", "jpg", "jpeg", "png", "xls", "doc", "docx", "xlsx", "zip", "rar", "pdf" ); | |
protected $mimeType = array( "text", "multipart", "message", "application", "audio", "image", "video", "other" ); | |
#!/bin/bash | |
#Define variables | |
now=`date "+%Y-%m-%d-%H-%M-%S"` | |
#Github Organization | |
GB_ORG="" | |
#Github Username | |
GB_USR="" | |
#Github Password | |
GB_PWD="" |
I hereby claim:
To claim this, I am signing this object:
### NON SSL | STANDARD HTTP | |
server { | |
listen 80; | |
server_name domain.com; | |
root /path/to/whmcs; | |
index index.php index.html; | |
access_log /var/log/nginx/domain.com.log combined; | |
access_log /var/log/nginx/domain.com.bytes bytes; | |
error_log /var/log/nginx/domain.com.error.log error; | |
location / { |
<?php | |
class HypervisorWHMCS { | |
protected $action, $params = [], $config, $error, $output = ""; | |
public function __construct($config) { | |
$this->config = $config; | |
} |
#!/bin/bash | |
ECHO_PATH=/usr/bin/echo | |
TEE_PATH=/usr/bin/tee | |
YUM_PATH=/usr/bin/yum | |
CURL_PATH=/usr/bin/curl | |
TAR_PATH=/usr/bin/tar | |
WGET_PATH=/usr/bin/wget | |
INSTALL_LOG=./hypervisor-install.log |
server { | |
listen 80 default_server; | |
server_name readydedis.com www.readydedis.com; | |
return 301 https://readydedis.com$request_uri; | |
} | |
# HTTPS server | |
# | |
server { | |
listen 443; |
<?php | |
# Execution /usr/local/emps/bin/php /usr/local/virtualizor/prox_gen.php "server_id" | |
include_once 'scripts/inc.php'; | |
$res = makequery(" | |
SELECT | |
vps_name as conf, | |
disks.bus_driver as diskdriver, |