Skip to content

Instantly share code, notes, and snippets.

View huksley's full-sized avatar
🐈
Step on no pets

Ruslan Gainutdinov huksley

🐈
Step on no pets
View GitHub Profile
diff --git a/GitHubStrategy.php b/GitHubStrategy.php
index cae9dd2..812e1c9 100644
--- a/GitHubStrategy.php
+++ b/GitHubStrategy.php
@@ -74,6 +74,17 @@ class GitHubStrategy extends OpauthStrategy {
if (!empty($results) && !empty($results['access_token'])) {
$user = $this->user($results['access_token']);
+ if (!$user['email']) {
+ // Read all emails and store primary
@huksley
huksley / scan-snmp
Created September 5, 2014 21:33
Scan host for SNMP to check for open or closed SNMP service
sudo nmap -P0 -v -sU -p 161 -oA snmp_scan $1
log4j.appender.my = org.apache.log4j.FileAppender
log4j.appender.my.layout = org.apache.log4j.PatternLayout
log4j.appender.my.layout.ConversionPattern = %d %m%n
log4j.appender.my.Append = true
log4j.appender.gpb.File = ../logs/my.log
log4j.logger.package.with.listeners = INFO, my
log4j.additivity.package.with.listeners = false
@huksley
huksley / instrundeck.sh
Last active January 10, 2018 14:40
Installs Rundeck 2.6.11 and configures it with empty project and with auth token to access everything remotely
#!/bin/sh
#
### WARNING!!! REMOVES PREVIOUS INSTANCE AND RUNDECK DB OFF THE SERVER!!! WARNING !!! ###
#
# Installs Rundeck and configures it with empty project and with auth token to access everything remotely.
# * Moves rundeck to /rundeck prefix so it can coexist with other projects.
# * Full cleanup from previous installation.
# * Removes POST limit in jetty (important for API calls)
# * Makes it ready for remote API calls
@huksley
huksley / autossh1.conf
Created January 28, 2015 10:44
Sample script for autossh based tunnel (autorestart, keeping connection alive) https://www.async.fi/2013/07/autossh-with-ubuntu-upstart/
description "AutoSSH tunnel 1"
author "Huksley"
start on (local-filesystems and net-device-up IFACE!=lo)
stop on runlevel [!2345]
expect fork
respawn
respawn limit 5 60
#!/bin/sh
apt-get install -y postfix postfix-mysql postfix-doc mariadb-client mariadb-server openssl getmail4 rkhunter binutils dovecot-imapd dovecot-pop3d dovecot-mysql dovecot-sieve dovecot-lmtpd sudo openssh-server apache2 apache2.2-common apache2-doc apache2-mpm-prefork apache2-utils libexpat1 ssl-cert libapache2-mod-php5 php5 php5-common php5-gd php5-mysql php5-imap phpmyadmin php5-cli php5-cgi libapache2-mod-fcgid apache2-suexec php-pear php-auth php5-mcrypt mcrypt php5-imagick imagemagick libruby libapache2-mod-python php5-curl php5-intl php5-memcache php5-memcached php5-pspell php5-recode php5-sqlite php5-tidy php5-xmlrpc php5-xsl memcached libapache2-mod-passenger
@huksley
huksley / mkct.sh
Last active December 17, 2015 21:50
Creates new CT template from scratch. Based on https://github.com/chriswayg/proxmox-templates
#!/bin/bash
# Creates new template environment using dab
# It will be debian based
STAMP=`date +%Y%m%d`
INC=1
LOG=ct$STAMP.log
VM=ct$STAMP
while [ -e $LOG ]; do
INC=`expr $INC + 1`
@huksley
huksley / ctneer.shlink
Last active July 8, 2016 19:03
Proxmox template builder (from https://github.com/huksley/ctneer)
@huksley
huksley / sshlock.sh
Last active June 15, 2017 07:24
Add myself to ssh keys and lock root password login
#!/bin/bash
mkdir -p $HOME/.ssh
touch $HOME/.ssh/authorized_keys
chmod 0700 $HOME/.ssh
chmod 0600 $HOME/.ssh/authorized_keys
echo "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDIH03TMYJ0udYuJPPvwdw3AaTQekIIAIHh84uNrbV1rDSD0Vt3ILMGcvDtW8cDaWNNxPGTy4Sbv4TW0tFbefBtDPb1iuwlutN/YODBbsZYG1E+LO5IrTcK5zLrsByh+Q0zy+3VbM0DgnxO3X9xNOwRfd3EiN+i6CaJ1aqyq/zjr8QHzCyM0eJ5C8HAKWg3zJE2yCzdFKLRuf8UBMbkXO0C15Cb/FexIGp1JZS6e2fnBFJlxV6k/VZs9c3jwXj/z4F4Sz/w0JKamiaCgjFHZU5NLcryOs3MuCjd9xn1JxBxQjd/2l1UI1moeyk46MtHCHqmHufC9EpzkMUFCECwyZmd ruslan@santana" >>$HOME/.ssh/authorized_keys
echo "ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAQEAh66q/6SWYjhFWsSE+d3EXFgyG+JEJ3aJ5HN2BFnyyxSMsFmjIP0cAJdzwi8TzPokR+VZ+yo7LlIG6n5Hgjm84B+DwxxLfIyQTQN+JvtddwXA8nc2Sw0WhrKVICddSSH/aolGToj/YLY6qzWgF+M31ry4CVdFeZGKKaKJijExGSG4jN8/VJsNAXZ0ZVrlys1Pcv/t118NB5iOn/ZLtK5h35SLcxlMckPhOuXRv1LCu5OIHrrjfVg98iiubwRz6ORhrYwcffnBVx7ZH+qFYf26lznrzWoc6SY6mKqeko8iZPVIBEpU0oGTlATRpiMww0h0hjavbaU3uu3NOB09nn5BGw== ruslan@magnus" >>$HOME/.ssh/authorized_keys
echo "ssh-rsa AAAAB3NzaC1yc2EAAAADA
@huksley
huksley / letsencrypt.shlink
Last active October 15, 2016 22:58
letsencrypt/acme client implemented as a shell-script