Skip to content

Instantly share code, notes, and snippets.

View yegorgavrilov's full-sized avatar
💻

Yegor Gavrilov yegorgavrilov

💻
View GitHub Profile
@yegorgavrilov
yegorgavrilov / unzip.sh
Created June 13, 2018 14:23 — forked from 4np/unzip.sh
Unzip multipart zip file on Mac OS X / Linux / Unix oneliner
cat *.zip > combined.zip;zip -FF combined.zip --out combined-fixed.zip;rm combined.zip;yes A|unzip -qq combined-fixed.zip;rm combined-fixed.zip
@yegorgavrilov
yegorgavrilov / grafana.service
Created June 12, 2018 11:58
Autostart the image – create a systemd startup script /lib/systemd/system/grafana.service
[Unit]
Description=grafana container
Requires=docker.service
After=docker.service
[Service]
User=dencur
Restart=on-failure
RestartSec=45
ExecStart=/usr/bin/docker start -a grafana
ExecStop=/usr/bin/docker stop -t 2 grafana
@yegorgavrilov
yegorgavrilov / updategrafana.sh
Created June 12, 2018 11:57
Upgrade docker container with Grafana
#!/bin/bash
# Define a timestamp function
timestamp() {
date +"%Y-%m-%d_%H-%M-%S"
}
timestamp
echo "Pulling Latest from grafana/grafana"
docker pull grafana/grafana
echo "Stopping grafana Container"
docker stop grafana
#!/bin/bash
unknown_os ()
{
echo "Unfortunately, your operating system distribution and version are not supported by this script."
echo
echo "You can override the OS detection by setting os= and dist= prior to running this script."
echo "You can find a list of supported OSes and distributions on our website: https://packagecloud.io/docs#os_distro_version"
echo
echo "For example, to force Ubuntu Trusty: os=ubuntu dist=trusty ./script.sh"
@yegorgavrilov
yegorgavrilov / librenms.example.com.conf
Created March 26, 2018 11:13 — forked from djvdorp/librenms.example.com.conf
LibreNMS /etc/nginx/sites-enabled/librenms.example.com.conf for nginx using TLS and HTTP2 by default
server {
listen 80 default_server;
listen [::]:80 default_server;
# Redirect all HTTP requests to HTTPS with a 301 Moved Permanently response.
return 301 https://$host$request_uri;
}
server {
listen 443 ssl http2;
@yegorgavrilov
yegorgavrilov / nginx.conf
Created March 26, 2018 11:09 — 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
@yegorgavrilov
yegorgavrilov / nmap-out.txt
Created March 22, 2018 09:40
192.168.11.225
Nmap scan report for ip-192-168-11-225.ec2.internal (192.168.11.225)
Host is up (0.0094s latency).
Not shown: 998 filtered ports
PORT STATE SERVICE VERSION
80/tcp open http
| fingerprint-strings:
| DNSVersionBindReq:
| LM?EZ
| VY#P
| \x02
@yegorgavrilov
yegorgavrilov / bgpd.conf
Created March 13, 2018 12:45 — forked from heri16/bgpd.conf
AWS VPC VPN StrongSwan Virtual Tunnel Interface (VTI)
#@ /etc/quagga/bgpd.conf (Centos & Ubuntu)
hostname <Local OS hostname>
password <Any random phrase>
enable password <Any random phrase>
!
log file /var/log/quagga/bgpd
!debug bgp events
!debug bgp zebra
debug bgp updates
@yegorgavrilov
yegorgavrilov / hack.sh
Created March 13, 2018 11:44 — forked from linssen/hack.sh
OSX For Hackers
#!/usr/bin/env sh
##
# This is script with usefull tips taken from:
# https://github.com/mathiasbynens/dotfiles/blob/master/.osx
#
# install it:
# curl -sL https://raw.github.com/gist/4016420/hack.sh | sh
#
azure
account
list [options] #List the imported subscriptions
show [options] [subscriptionNameOrId] #Show details about a subscription
set [options] <subscriptionNameOrId> #Set the current subscription
clear [options] #Remove a subscription or environment, or clear all of the stored account and environment info
import [options] <file> #Import a publishsettings file or certificate for your account
download [options] #Launch a browser to download your publishsettings file
env... #Commands to manage your account environment