6

Note: this question is about proxychains not proxychains-ng.

By default, proxychains output some message like the below. How can suppress this message? ProxyChains-3.1 (http://proxychains.sf.net)

Benjamin Du
  • 1,391
  • 1
  • 17
  • 25

2 Answers2

7

Use sed to cut off first line

proxychains | sed -n '2,$p'

or upgrade to proxychain4

proxychains -q
atu0830
  • 405
  • 7
  • 15
0

Simply write quiet_mode in your /etc/proxychains(4).conf file.

It may already be there commented, therefore just remove # before it.

Nazar
  • 1