If you want to use the latest available version of Squid, you can Build a Squid anonymous proxy from source code
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
# Tail with proper line breaks in log files | |
function tail_linebreak() { | |
tail $@ | sed "s/\\\n/\\n/g" | |
} | |
alias tailn=tail_linebreak |
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 | |
# read input | |
domain=$1 | |
if [ -z $domain ]; then | |
read -p "domain: " domain | |
fi | |
rsa=$2 | |
if [ -z $rsa ]; then | |
rsa=2048 # 2048 bits by default |
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
### Keybase proof | |
I hereby claim: | |
* I am e7d on github. | |
* I am e7d (https://keybase.io/e7d) on keybase. | |
* I have a public key ASD_qY4UewNUWt24UA66LOyjUacTw-_b-_njwDuFhOZMMAo | |
To claim this, I am signing this object: |
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
Object.defineProperty(Number.prototype, 'fileSize', { | |
value: function humanFileSize(si = false) { | |
const divider = si ? 1e3 : 1024; | |
const i = Math.floor(Math.log(this) / Math.log(divider)); | |
const fileSize = | |
(this / Math.pow(divider, i)).toFixed(2) + | |
' ' + ['', 'k', 'M', 'G', 'T', 'P', 'E', 'Z', 'Y'][i] + | |
(si ? 'i' : ''); | |
return fileSize.toString(); | |
}, |
What we want is to allow John to connect through sftp only (no bash, no terminal) and to be limited to a set of folders.
In this example, we'll consider an existing user john
, whose home directory is /home/john
. You'll have to adapt the different commands to your specific case.
We need our user to customized a bit. First of all the, its home directory must be owned by root:
chown -c root:root /home/john
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 | |
export AnException=100 | |
export AnotherException=101 | |
# start with a try | |
try | |
( # open a subshell !!! | |
echo "do something" | |
[ someErrorCondition ] && throw $AnException |
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/sh | |
run() { | |
echo -en "# " | |
($@ 2>&1; echo $?>~/_$$) | log | |
V=$(($(cat ~/_L$$;rm -f ~/_L$$) / $(tput cols))) | |
if test 0 -eq $(cat ~/_$$;rm -f ~/_$$); then | |
echo -e "\r\033["$V"A\033[1;32m✓\033[0m\r\033["$V"B" | |
else | |
echo -e "\r\033["$V"A\033[1;31m✕\033[0m\r\033["$V"B" |
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
(function() { | |
String.prototype.asciiEncode = function() { | |
var i, result = []; | |
for (i = 0; i < this.length; i++) { | |
result.push("%", this.charCodeAt(i).toString(16)); | |
} | |
return result.join(''); | |
} | |