|
|
|
|
|
by southerntofu
1923 days ago
|
|
Another alternative: the famous nullpointer https://github.com/mia-0/0x0 A small script i use very regularly: #!/usr/bin/env bash
if [ ! -f $1 ]; then echo "MISSING: $1"; exit 1; fi
torify curl -F"file=@$1" https://YOURSERVER || echo "UPLOAD FAILED (code: $?)"
|
|