Skip to content

Instantly share code, notes, and snippets.

View fnzv's full-sized avatar
🌐

Sami fnzv

🌐
View GitHub Profile
@fnzv
fnzv / self-signed-certificate-with-custom-ca.md
Created February 12, 2020 13:35 — forked from fntlnz/self-signed-certificate-with-custom-ca.md
Self Signed Certificate with Custom Root CA

Create Root CA (Done once)

Create Root Key

Attention: this is the key used to sign the certificate requests, anyone holding this can sign certificates on your behalf. So keep it in a safe place!

openssl genrsa -des3 -out rootCA.key 4096
@fnzv
fnzv / auto-playbook.sh
Created February 11, 2020 15:39
Running Ansible playbooks after every file change
## Running playbooks after every file change
$ ls -d roles/*/tasks/* | entr sh -c 'ansible-playbook -v -i inventory playbook.yml '
@fnzv
fnzv / dev-pub-key
Created February 11, 2020 10:17
dev-pub-key
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCiifL98yxfRuzi5Ksmi3N4Y82PunMVIT5GM7XPpbp4kP3//KetCbixqyuRW6/mjtnC4sOXpEllhBJ3dcO+eORhGGFlhwQYO9smckCUPbKkOBEQwOEAC3NapFwuqdHOhfr0H1idHssDV76nnbvG8QMHyjmU5uVO8kZBb7YaCS98KtfzzIBEDXFt0nktan5JKEE2GCpEEgfINfhYq7UibKXAJX3wDO9ogmm9kFYFGtRx9jIkC6vk+h2BoZPQ4DlrFyqXg8inY+Vt4YAp74l61i/IE3l8jqCTbx/Ol5IqeBjz5yMYcQVAkFTsdO0RJ+HGxei71u2uBeVP7+nAJ8vVx54D
CREATE USER 'newuser'@'localhost' IDENTIFIED BY 'password';
GRANT ALL PRIVILEGES ON * . * TO 'newuser'@'localhost';
FLUSH PRIVILEGES;
GRANT ALL PRIVILEGES ON `%`.* TO '[user]'@'[hostname]' IDENTIFIED BY '[password]' WITH GRANT OPTION;
@fnzv
fnzv / drop-mssql.sql
Created June 17, 2019 08:44
Useful MSSQL Scripts
SELECT ' DROP DATABASE [' + NAME + ']' FROM sys.sysdatabases where name like 'PREFIX%'
@fnzv
fnzv / remmina-decrypt.py
Created April 29, 2019 10:27
Remmina password extract
#!/usr/bin/python
from Crypto.Cipher import DES3
import base64
import os
import re
from os.path import expanduser
home = expanduser("~")
# costanti :)
@fnzv
fnzv / ec2.ini
Created April 10, 2019 19:32 — forked from parzonka/ec2.ini
Configuration for ansibles dynamic ec2 inventory. Forked from https://github.com/ansible/ansible/tree/devel/contrib/inventory/ec2.ini and configured for eu-central-1 and performance.
# Ansible EC2 external inventory script settings
#
[ec2]
# to talk to a private eucalyptus instance uncomment these lines
# and edit edit eucalyptus_host to be the host name of your cloud controller
#eucalyptus = True
#eucalyptus_host = clc.cloud.domain.org
@fnzv
fnzv / nginx_sec_rules.conf
Created February 1, 2019 10:50
Simple Nginx filtering rules
location ~* "(eval\()" { deny all; }
location ~* "(127\.0\.0\.1)" { deny all; }
location ~* "([a-z0-9]{2000})" { deny all; }
location ~* "(javascript\:)(.*)(\;)" { deny all; }
location ~* "(base64_encode)(.*)(\()" { deny all; }
location ~* "(GLOBALS|REQUEST|CHAR)(=|\[|%)" { deny all; }
location ~* "(<|%3C).*script.*(>|%3)" { deny all; }
location ~ "(\\|\.\.\.|\.\./|~|`|<|>|\|)" { deny all; }
@fnzv
fnzv / dynamic-nginx-module-ubuntu-18.04.sh
Created January 12, 2019 12:08 — forked from excid3/dynamic-nginx-module-ubuntu-18.04.sh
How to compile a dynamic nginx module for Ubuntu 18.04
# Install dependencies that nginx was originally compiled with
sudo apt install libperl-dev libgeoip-dev libgd-dev
# Get the nginx source
wget https://nginx.org/download/nginx-1.14.0.tar.gz
tar zxf nginx-1.14.0.tar.gz
# Get the module source
wget https://github.com/fdintino/nginx-upload-module/archive/master.zip
unzip master.zip
@fnzv
fnzv / wordpress-kube-example.yml
Created December 3, 2018 16:05
Wordpress kube example - NodePort
apiVersion: v1
kind: Service
metadata:
name: wordpress
labels:
app: wordpress
spec:
ports:
- protocol: TCP
port: 80