This file contains hidden or 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
| " _ _ " | |
| " _ /|| . . ||\ _ " | |
| " ( } \||D ' ' ' C||/ { % " | |
| " | /\__,=_[_] ' . . ' [_]_=,__/\ |" | |
| " |_\_ |----| |----| _/_|" | |
| " | |/ | | | | \| |" | |
| " | /_ | | | | _\ |" | |
| It is all fun and games until someone gets hacked! |
This file contains hidden or 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
| ############################################################################# | |
| # Original code ported from the Java reference code by Bram Cohen, April 2001, | |
| # with the following statement: | |
| # | |
| # this code is public domain, unless someone makes | |
| # an intellectual property claim against the reference | |
| # code, in which case it can be made public domain by | |
| # deleting all the comments and renaming all the variables | |
| # | |
| class Rijndael(object): |
This file contains hidden or 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
| commit 821564bf400db6f7fe3f9a5905c6e9cbe84639f6 | |
| Author: Dtrip <[email protected]> | |
| Date: Sun Oct 25 15:11:41 2015 -0700 | |
| patch for surface pro 3 | |
| diff --git a/drivers/hid/hid-core.c b/drivers/hid/hid-core.c | |
| index 70a11ac..f54d53d 100644 | |
| --- a/drivers/hid/hid-core.c | |
| +++ b/drivers/hid/hid-core.c |
This file contains hidden or 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
| #!/usr/bin/env python2 | |
| """ | |
| Other Repositories of python-ping | |
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
| * https://github.com/l4m3rx/python-ping supports Python2 and Python3 | |
| * https://bitbucket.org/delroth/python-ping |
This file contains hidden or 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
| # To have background colors added to msfconsole | |
| # add the follow lines to: /opt/metasploit-framework/lib/rex/ui/text/color.rb | |
| # on line 78 (as of 4.11.3-dev) | |
| # | |
| # Protip: You'll probably need powerline fonts installed | |
| # https://github.com/powerline/fonts | |
| str.gsub!(/%bgblu/, pre_color+colorize('on_blue')+post_color) | |
| str.gsub!(/%bgyel/, pre_color+colorize('on_yellow')+post_color) | |
| str.gsub!(/%bggrn/, pre_color+colorize('on_green')+post_color) |
This file contains hidden or 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
| # Update, upgrade and install development tools: | |
| apt-get update | |
| apt-get -y upgrade | |
| apt-get -y install build-essential | |
| apt-get -y install git-core | |
| # Install rbenv | |
| git clone git://github.com/sstephenson/rbenv.git /usr/local/share/rbenv | |
| # Add rbenv to the path: |
This file contains hidden or 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
| Password1 | |
| Princess1 | |
| P@ssw0rd | |
| Passw0rd | |
| Michael1 | |
| Blink182 | |
| !QAZ2wsx | |
| Charlie1 | |
| Anthony1 | |
| 1qaz!QAZ |
This file contains hidden or 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_and_replace_in_files.sh | |
| # This script does a recursive, case sensitive directory search and replace of files | |
| # To make a case insensitive search replace, use the -i switch in the grep call | |
| # uses a startdirectory parameter so that you can run it outside of specified directory - else this script will modify itself! | |
| # | |
| # Thanks to: Eliah Kagan <http://askubuntu.com/users/22949/eliah-kagan> | |
| # | |
| # ***************************************************************************************** |
This file contains hidden or 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 | |
| # Bash script to get a port forwarded from privateinternetaccess.com | |
| # | |
| # If running for the first time, you want to run this line right quick | |
| # $ head -n 100 /dev/urandom | md5sum | tr -d " -" > ~/.pia_client_id | |
| # | |
| # http://bit.ly/1xCHso9 | |
| # Dtripp | |
| # |