dougy147 / mcbash

bash script to find valid MAC addresses on some IPTV platform
GNU General Public License v3.0
89 stars 34 forks source link

missing proxy support #6

Closed sbeimel closed 1 year ago

sbeimel commented 1 year ago

missing proxy support could u add it

dougy147 commented 1 year ago

Thanks for your request. Proxy support has been added

sbeimel commented 1 year ago

Is it possible to Use a proxyfile like Proxy.txt It this file i would like to add 10 or 100 or …. Proxy. For Each mac test it will rotate one Proxy of this list. HTTP or socks5 Proxy Support would be great

dougy147 commented 1 year ago

What you ask is doable without further changes to mcbash. Check this simple bash loop :

file="your_proxy_list.txt"
while :; do
   while read -r line; do
       mcbash -u "your-own-dns.com"  --proxy "$line" -s 1 -np
   done < $file
done 

It will launch mcbash without asking for parameters (-np) to check just 1 MAC (-s 1) while looping through "your_proxy_list.txt" line by line, indefinitely, and of course using each current line as the proxy address (`--proxy "$line"). Feel free to tweak this according to your needs.

HTTP and SOCK5 are already supported.

sbeimel commented 1 year ago

Hi thanks for advise but it is not what i mean. With this it will scan only 1 mac with different proxy. I think a good feature of you tool is to check all mac or mac range with proxy list. so e.g. 00:01:blabla Proxy1 then 00:01:huhu proxy 2 etc. is this possible ? or flood protection detected -> nxt Proxy