Install the OpenSSL on Debian based systems
sudo apt-get install openssl
# to generate your dhparam.pem file, run in the terminal | |
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |
<!-- | |
ASP Webshell | |
Working on latest IIS | |
Referance :- | |
https://github.com/tennc/webshell/blob/master/fuzzdb-webshell/asp/cmd.asp | |
http://stackoverflow.com/questions/11501044/i-need-execute-a-command-line-in-a-visual-basic-script | |
http://www.w3schools.com/asp/ |
# Whatsapp log parser for pisg, made by Tim van Werkhoven | |
# Features: parses logs, detects subject changes | |
# Known issues: only works without images, does not filter out 'image omitted' texts | |
# Use Charset = "utf-8" in config file to enable emoji | |
package Pisg::Parser::Format::whatsapp; | |
use strict; | |
$^W = 1; | |
sub new |
#!/bin/bash | |
# $1 = # of seconds | |
# $@ = What to print after "Waiting n seconds" | |
countdown() { | |
secs=$1 | |
shift | |
msg=$@ | |
while [ $secs -gt 0 ] | |
do | |
printf "\r\033[KWaiting %.d seconds $msg" $((secs--)) |
# IMPORTANT! | |
# This gist has been transformed into a github repo | |
# You can find the most recent version there: | |
# https://github.com/Neo23x0/auditd | |
# ___ ___ __ __ | |
# / | __ ______/ (_) /_____/ / | |
# / /| |/ / / / __ / / __/ __ / | |
# / ___ / /_/ / /_/ / / /_/ /_/ / | |
# /_/ |_\__,_/\__,_/_/\__/\__,_/ |
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCsuPQayWmdLMvESpxCpYXL9fgk9GD6nyKgBnluE91Q6gh06rS7MstsrSmxy/h3G+T6VKVlOwX0IwsC0J2rwhhRHMZX5o9NHGitqMaKpKSQtNx/OK9U4M5S87eaKUi93AW9rKLiZGc3iucZTxyyV2ECh8VjskQ9tnospOGcQck9roleF36PsPtfhngYLUEo+AORztKaaTuYs/iEruCcTSDvygqSbzFhjp5MOZt/nmtR7NMiFt4rRhmi0BfvBV1okJjbNkgltQPyRGyd2T6Wo68cGW9RUCZl11qmVpLrPm0tth5aZ8BTTsCKEe3UQizeIL/hryWwuCyPQJdJ5fBsYguw7hCrrOceQXn2GLj+SQquGruvHewtg1lVt8B9Mmmxncd/29mfF3WzVm+91Tak42kmyPpg5ex/Jj9zVtseuXvZpFLJf+TeFlpt6+ZoJ/ecxReorHiDUbUNqWMrhwjte2ZGlXHPArv5efFY0Xsa5wIkzqyf1B9UjVWqGh9BAW4GOZFY27rd6gtQOcG94j9KT/fqDSHCL9ZtR6sIGOBoOHKG1cXAL4pI1qrG3MtINTKodudzOu9W/ciX/vAYobsgWLyLFQRq6irYfdgRZ19AGDbVA0wSgTLAIYIJacAHJ4mNjm0Xi/z6alMz3aWavQqxC9mZ8sTdUhb2nqO7qImsPvIcVQ== eantonini@osx-sierra |