Skip to content

Instantly share code, notes, and snippets.

View gen0cide's full-sized avatar
🇺🇦
Slava Ukraini

Alex Levinson gen0cide

🇺🇦
Slava Ukraini
View GitHub Profile
awk -F"," -v k="text" '{
gsub(/{|}/,"")
for(i=1;i<=NF;i++){
if ( $i ~ k ){
print $i
}
}
}'
## Sploit Watch
## Player Tracking and Reporting
##
## Copyright (C) 2012 iSight Security, Inc.
##
## This program is free software: you can redistribute it and/or modify
## it under the terms of the GNU General Public License as published by
## the Free Software Foundation, either version 3 of the License, or
## (at your option) any later version.
##
@gen0cide
gen0cide / checker.rb
Created September 4, 2012 17:19 — forked from jc00ke/checker.rb
Ruby script to find password in LinkedIn leak, if present.
#!/usr/bin/env ruby
require 'digest/sha1'
if ARGV[0].nil?
puts "Usage: checker [password]"
puts "Checks the LinkedIn password file for a SHA-1 match of the provided password."
exit 1
end
@gen0cide
gen0cide / hack.sh
Created April 17, 2012 23:01 — forked from erikh/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/2108403/hack.sh | sh
#