aboutsummaryrefslogtreecommitdiffstats
path: root/nocompile/bin
diff options
context:
space:
mode:
authorEpoch Qwert <epoch@53flpnlls43fcguy.onion>2014-10-23 01:20:02 -0500
committerEpoch Qwert <epoch@53flpnlls43fcguy.onion>2014-10-23 01:20:02 -0500
commit8c542d83091f9ba5ccb095fad730651f8e6c1eef (patch)
treead26b5a7686d7b78888fa052226551255e3d8633 /nocompile/bin
parent12201178a5950eecd9537e642b1246011490b499 (diff)
downloadmisc-8c542d83091f9ba5ccb095fad730651f8e6c1eef.tar.gz
misc-8c542d83091f9ba5ccb095fad730651f8e6c1eef.zip
fixed gopherd's LFI and added excuting files.
httpd had flushing issues. realpath is new! does what it says. gives absolute path of a file. deddos, peerip, peerip.pl, were laying around elsewhere. gethostbyname got a new trick. can do decimal addresses among other things. hop0 is a shell script that gets what IP will be put on the source address of outgoing packets sent to $1. rtfs.
Diffstat (limited to 'nocompile/bin')
-rwxr-xr-xnocompile/bin/hop06
1 files changed, 6 insertions, 0 deletions
diff --git a/nocompile/bin/hop0 b/nocompile/bin/hop0
new file mode 100755
index 0000000..7dc0812
--- /dev/null
+++ b/nocompile/bin/hop0
@@ -0,0 +1,6 @@
+#!/bin/sh
+if [ "_$(uname -s)" != "_Linux" ];then
+ /sbin/route -n get "$1" | grep "local addr" | cut -d: -f2 | tr -d ' '
+else
+ /sbin/ip r g "$1" | cut '-d ' -f8
+fi