Skip to content

Instantly share code, notes, and snippets.

ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAACAQCsuPQayWmdLMvESpxCpYXL9fgk9GD6nyKgBnluE91Q6gh06rS7MstsrSmxy/h3G+T6VKVlOwX0IwsC0J2rwhhRHMZX5o9NHGitqMaKpKSQtNx/OK9U4M5S87eaKUi93AW9rKLiZGc3iucZTxyyV2ECh8VjskQ9tnospOGcQck9roleF36PsPtfhngYLUEo+AORztKaaTuYs/iEruCcTSDvygqSbzFhjp5MOZt/nmtR7NMiFt4rRhmi0BfvBV1okJjbNkgltQPyRGyd2T6Wo68cGW9RUCZl11qmVpLrPm0tth5aZ8BTTsCKEe3UQizeIL/hryWwuCyPQJdJ5fBsYguw7hCrrOceQXn2GLj+SQquGruvHewtg1lVt8B9Mmmxncd/29mfF3WzVm+91Tak42kmyPpg5ex/Jj9zVtseuXvZpFLJf+TeFlpt6+ZoJ/ecxReorHiDUbUNqWMrhwjte2ZGlXHPArv5efFY0Xsa5wIkzqyf1B9UjVWqGh9BAW4GOZFY27rd6gtQOcG94j9KT/fqDSHCL9ZtR6sIGOBoOHKG1cXAL4pI1qrG3MtINTKodudzOu9W/ciX/vAYobsgWLyLFQRq6irYfdgRZ19AGDbVA0wSgTLAIYIJacAHJ4mNjm0Xi/z6alMz3aWavQqxC9mZ8sTdUhb2nqO7qImsPvIcVQ== eantonini@osx-sierra
@antonini
antonini / audit.rules
Created August 27, 2020 16:18 — forked from Neo23x0/audit.rules
Linux Auditd Best Practice Configuration
# IMPORTANT!
# This gist has been transformed into a github repo
# You can find the most recent version there:
# https://github.com/Neo23x0/auditd
# ___ ___ __ __
# / | __ ______/ (_) /_____/ /
# / /| |/ / / / __ / / __/ __ /
# / ___ / /_/ / /_/ / / /_/ /_/ /
# /_/ |_\__,_/\__,_/_/\__/\__,_/
@antonini
antonini / countdown.sh
Created July 26, 2019 22:57 — forked from krohne/countdown.sh
Countdown timer in bash shell script
#!/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--))
@antonini
antonini / whatsapp.pm
Created November 8, 2017 01:50 — forked from tvwerkhoven/whatsapp.pm
Whatsapp chat log parser for pisg
# 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
@antonini
antonini / openssl_commands.md
Created April 20, 2017 12:59 — forked from p3t3r67x0/openssl_commands.md
Some list of openssl commands for check and verify your keys

openssl

Install

Install the OpenSSL on Debian based systems

sudo apt-get install openssl
<!--
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/
@antonini
antonini / nginx.conf
Created October 16, 2015 05:37 — forked from plentz/nginx.conf
Best nginx configuration for improved security(and performance). Complete blog post here http://tautt.com/best-nginx-configuration-for-security/
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048