proxybroker with proxychains one line.

proxybroker is very useful proxy grabbing tool.

First I need update proxychains-ng. I was update manually proxychains-ng config at recent few days.

proxybroker with

Convert to proxychains-ng description method.

proxybroker find --types HTTPS --lvl High --strict -l 5 | gawk -F' ' '{print $5}' | gawk -F'>' '{print $1}' | sed -e 's/^/http /' | sed -e 's/:/ /'

Next update with old config. Get old config.

cat /etc/proxychains.conf | head -n 64

Link string and write config

echo -e "$(cat /etc/proxychains.conf | head -n 64)\n$(proxybroker find --types HTTPS --lvl High --strict -l 500 | gawk -F' ' '{print $5}' | gawk -F'>' '{print $1}' | sed -e 's/^/http /' | sed -e 's/:/ /')" > /etc/proxychains.conf

and cron or anything. work fine.

---- update
WOW. proxychains format will comming!?
Not yet ? (・∀・ )っ/凵⌒☆clinkclink

github.com