1
0
mirror of https://github.com/rofl0r/proxychains-ng synced 2026-05-17 03:02:41 +08:00

remove gnu autocrap

This commit is contained in:
rofl0r
2011-09-02 20:32:04 +02:00
Unverified
parent 7cde272e29
commit 86be015f0d
27 changed files with 0 additions and 41842 deletions
+16
View File
@@ -0,0 +1,16 @@
#!/bin/sh
# This script is called by proxychains to resolve DNS names
# DNS server used to resolve names
DNS_SERVER=4.2.2.2
if [ $# = 0 ] ; then
echo " usage:"
echo " proxyresolv <hostname> "
exit
fi
export LD_PRELOAD=libproxychains.so
dig $1 @$DNS_SERVER +tcp | awk '/A.+[0-9]+\.[0-9]+\.[0-9]/{print $5;}'