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 | |
## CoffeeFrame | |
## Coffeeframe(a)linux.com | |
## Update /etc/hosts file with version from someonewhocares.org/hosts/hosts and backs up old hosts file | |
## WARNING -- As of 2016-11-19 someonewhocares.org does not provide a valid SSL/TLS certificate, meaning the hosts file is retrieved over an unencrypted connection. This method is vulnerable to Man-in-the-Middle attacks, allowing an intermediary attacker to modify the hosts file as they see fit. For example, an attacker modify or add a line redirecting www.bankofamerica.com to a site designed to harvest bank credentials. Use at your own risk. | |
## I recommend backing up your current /etc/hosts file before running this script for the first time. | |
TEMPHOSTS=`mktemp -p /var/ tempHosts.XXXXXXX` |
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
### Keybase proof | |
I hereby claim: | |
* I am coffeeframe on github. | |
* I am coffeeframe (https://keybase.io/coffeeframe) on keybase. | |
* I have a public key whose fingerprint is 5355 6D6A E479 4E27 5435 0E8D F25E 301C 460C 3055 | |
To claim this, I am signing this 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
#!/bin/bash | |
#CoffeeFrame | |
#Generates Bash script file, sets permissions and generates boilerplate | |
#INPUT name of desired script file, similar to touch. | |
SCRIPT="$1.sh" | |
CODER=$USER #Default | |
BOILERPLATE="#!/bin/bash\n#$CODER" |
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/perl | |
#CoffeeFrame | |
#Rifle Burs (Original Mix) - GMCFOSHO | |
#http://youtu.be/BrU_ef7DQgs | |
for($i = 0; $i < 3; $i++){ | |
print "burs\n"; | |
sleep(1);#Seconds | |
} | |
print "swag\n" |