Skip to content

Instantly share code, notes, and snippets.

View fnzv's full-sized avatar
🌐

Sami fnzv

🌐
View GitHub Profile
@fnzv
fnzv / mysql-kube-example.yml
Created December 3, 2018 16:04
Mysql kube - NodePort
apiVersion: v1
kind: Service
metadata:
name: wordpress-mysql
labels:
app: wordpress
spec:
ports:
- port: 3306
selector:
@fnzv
fnzv / sample-rules-linux-64bit.conf
Created November 13, 2018 10:46
/etc/auditbeat/audit.rules.d/sample-rules-linux-64bit.conf
## If you are on a 64 bit platform, everything should be running
## in 64 bit mode. This rule will detect any use of the 32 bit syscalls
## because this might be a sign of someone exploiting a hole in the 32
## bit API.
-a always,exit -F arch=b32 -S all -F key=32bit-abi
## Executions.
-a always,exit -F arch=b64 -S execve,execveat -k exec
## External access (warning: these can be expensive to audit).
@fnzv
fnzv / es_index_retention.sh
Created November 12, 2018 13:43
Simple ES index retention script
TODAY=`date +%Y.%m.%d`
URL="http://127.0.0.1:9200"
close_week_old_indices()
{
WEEK_FROM_TODAY=`date +%Y.%m.%d -d -7days`
INDEX=*beat*-$WEEK_FROM_TODAY
curl -XPOST $URL/$INDEX/_close
}
@fnzv
fnzv / docker-compose.yml
Created October 5, 2018 14:05
Wordpress Docker compose
version: "2"
services:
db:
image: mariadb
# uncomment the following two lines for data persistence
#volumes:
# - ./db_data:/var/lib/mysql
environment:
- MYSQL_ROOT_PASSWORD=simplepw
@fnzv
fnzv / show_php.sh
Created September 4, 2018 13:03
Show running PHP scripts
sudo strace -f $(pidof php-fpm5.6 | sed 's/\([0-9]*\)/\-p \1/g')
@fnzv
fnzv / netflow.sh
Created August 27, 2018 09:17
Install Netflow module Linux
cd /tmp && git clone git://github.com/aabc/ipt-netflow.git ipt-netflow && cd ipt-netflow/
apt-get -y install module-assistant
m-a prepare
./configure && make all install
depmod
modprobe ipt_NETFLOW destination={YOUR NETFLOW COLLETOR}:9995
iptables -I FORWARD -j NETFLOW
iptables -I INPUT -j NETFLOW
iptables -I OUTPUT -j NETFLOW
@fnzv
fnzv / install.sh
Created July 17, 2018 13:26 — forked from popstas/install.sh
Install LAMP with ansible from geerlingguy
sudo apt-get install -y python-dev python-pip
sudo pip install ansible
sudo ansible-galaxy install geerlingguy.apache geerlingguy.mysql geerlingguy.php
wget https://gist.githubusercontent.com/popstas/61a5ddce08fe1a269f62576808cee54e/raw/de7bceea261f5a76fd88d8673046e5e18be7e35a/lamp.yml
ansible-playbook -i 'localhost,' -c local lamp.yml
@fnzv
fnzv / gist:b44c9737506f8b6892c33af6f4c29436
Created June 26, 2018 08:59 — forked from pitch-gist/gist:2999707
HTML: Simple Maintenance Page
<!doctype html>
<title>Site Maintenance</title>
<style>
body { text-align: center; padding: 150px; }
h1 { font-size: 50px; }
body { font: 20px Helvetica, sans-serif; color: #333; }
article { display: block; text-align: left; width: 650px; margin: 0 auto; }
a { color: #dc8100; text-decoration: none; }
a:hover { color: #333; text-decoration: none; }
</style>
wget --no-check-certificate http://sourceforge.net/projects/jboss/files/JBoss/JBoss-5.1.0.GA/jboss-5.1.0.GA.zip/download -O /tmp/jboss-5.1.0.GA.zip
mv /tmp/jboss-5.1.0.GA.zip /usr/share/jboss-5.1.0.GA.zip
cd /usr/share
unzip -q jboss-5.1.0.GA.zip
groupadd jboss
@fnzv
fnzv / install_tomcat8.5-centos.sh
Created May 25, 2018 09:29
install script for tomcat 8.5 on centos 7
sudo yum -y install java-1.8.0-openjdk-devel
yum install -y wget unzip
sudo useradd -m -U -d /opt/tomcat -s /bin/false tomcat
cd /tmp
wget http://apache.panu.it/tomcat/tomcat-8/v8.5.31/bin/apache-tomcat-8.5.31.zip
unzip apache-tomcat-*.zip
sudo mv apache-tomcat-*/ /opt/tomcat/
sudo chown -R tomcat: /opt/tomcat