sudo ufw default deny incoming
sudo ufw default allow outgoingAllow from particular IP (VPN Private IP) to all ports
| #!/bin/bash | |
| # | |
| # https://github.com/Nyr/openvpn-install | |
| # | |
| # Copyright (c) 2013 Nyr. Released under the MIT License. | |
| if grep -qs "14.04" /etc/os-release; then | |
| echo "Ubuntu 14.04 is too old and not supported" | |
| exit |
| CELERY=`ps -A -o pid,rss,command | grep celeryd | grep -v grep | awk '{total+=$2}END{printf("%d", total/1024)}'` | |
| GUNICORN=`ps -A -o pid,rss,command | grep gunicorn | grep -v grep | awk '{total+=$2}END{printf("%d", total/1024)}'` | |
| REDIS=`ps -A -o pid,rss,command | grep redis | grep -v grep | awk '{total+=$2}END{printf("%d", total)}'` | |
| NGINX=`ps -A -o pid,rss,command | grep nginx | grep -v grep | awk '{total+=$2}END{printf("%d", total/1024)}'` | |
| OTHER=`ps -A -o pid,rss,command | grep -v nginx | grep -v celeryd | grep -v gunicorn | grep -v redis | grep -v grep | awk '{total+=$2}END{printf("%d", total/1024)}'` | |
| websites=`ps -A -o user,pid,rss,command | grep gunicorn | egrep -o "[a-z_]+\.py$" | sort | uniq | perl -wpe 's|\.py$||;' | xargs` | |
| printf "%-10s %3s MB\n" "Celery:" $CELERY | |
| printf "%-10s %3s MB\n" "Gunicorn:" $GUNICORN | |
| printf "%-10s %3s MB\n" "Nginx:" $NGINX | |
| printf "%-10s %3s KB\n" "Redis:" $REDIS |
| import requests | |
| from BeautifulSoup import BeautifulSoup as bs | |
| import re | |
| import ho.pisa as pisa | |
| import os | |
| import sys | |
| import cgi | |
| import cStringIO | |
| import logging | |
| payload = {'username' : '106111062' , 'password': '5' ,'login': 'Log In'} |
| // ==UserScript== | |
| // @name Adfly | |
| // @namespace http://pastemehere.com | |
| // @version 0.1 | |
| // @require http://code.jquery.com/jquery-latest.js | |
| // @description TamperMonkey script to automate Adfly wait | |
| // @author https://github.com/scottydelta | |
| // @match http://adf.ly/* | |
| // @grant none | |
| // ==/UserScript== |
| #!/usr/bin/env python | |
| import sh,json | |
| for line in sh.xinput("list"): | |
| if "TouchPad" in line: | |
| b = line.split() | |
| idno = b[5] | |
| idno = idno[3:] | |
| for line in sh.xinput("list-props", int(idno)): | |
| if "Enabled" in line: |
| <?php | |
| $client_id = 'xxxxxxxx'; | |
| $file = file_get_contents("test-image.png"); | |
| $url = 'https://api.imgur.com/3/image.json'; | |
| $headers = array("Authorization: Client-ID $client_id"); | |
| $pvars = array('image' => base64_encode($file)); | |
| $curl = curl_init(); | |
| curl_setopt_array($curl, array( | |
| CURLOPT_URL=> $url, |