mirror of
				https://github.com/rofl0r/proxychains-ng.git
				synced 2025-11-04 00:56:03 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			431 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			431 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/sh
 | 
						|
# This is a legacy script that uses "dig" to do DNS lookups via TCP.
 | 
						|
# it is not actively maintained since proxychains no longer depends
 | 
						|
# on it. i leave it here as a bonus.
 | 
						|
 | 
						|
# DNS server used to resolve names
 | 
						|
DNS_SERVER=8.8.8.8
 | 
						|
 | 
						|
 | 
						|
if [ $# = 0 ] ; then
 | 
						|
	echo "	usage:"
 | 
						|
	echo "		proxyresolv <hostname> "
 | 
						|
	exit
 | 
						|
fi
 | 
						|
 | 
						|
 | 
						|
export LD_PRELOAD=libproxychains4.so
 | 
						|
dig $1 @$DNS_SERVER +tcp | awk '/A.?[0-9]+\.[0-9]+\.[0-9]/{print $5;}'
 |