Advertisement
Guest User

proxychains.conf

a guest
Sep 27th, 2019
256
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. # proxychains.conf  VER 3.1
  2. #
  3. #        HTTP, SOCKS4, SOCKS5 tunneling proxifier with DNS.
  4. #  
  5.  
  6. # The option below identifies how the ProxyList is treated.
  7. # only one option should be uncommented at time,
  8. # otherwise the last appearing option will be accepted
  9. #
  10. dynamic_chain
  11. #
  12. # Dynamic - Each connection will be done via chained proxies
  13. # all proxies chained in the order as they appear in the list
  14. # at least one proxy must be online to play in chain
  15. # (dead proxies are skipped)
  16. # otherwise EINTR is returned to the app
  17. #
  18. # strict_chain
  19. #
  20. # Strict - Each connection will be done via chained proxies
  21. # all proxies chained in the order as they appear in the list
  22. # all proxies must be online to play in chain
  23. # otherwise EINTR is returned to the app
  24. #
  25. #random_chain
  26. #
  27. # Random - Each connection will be done via random proxy
  28. # (or proxy chain, see  chain_len) from the list.
  29. # this option is good to test your IDS :)
  30.  
  31. # Make sense only if random_chain
  32. #chain_len = 2
  33.  
  34. # Quiet mode (no output from library)
  35. #quiet_mode
  36.  
  37. # Proxy DNS requests - no leak for DNS data
  38. # proxy_dns
  39.  
  40. # Some timeouts in milliseconds
  41. tcp_read_time_out 15000
  42. tcp_connect_time_out 8000
  43.  
  44. # ProxyList format
  45. #       type  host  port [user pass]
  46. #       (values separated by 'tab' or 'blank')
  47. #
  48. #
  49. #        Examples:
  50. #
  51. #               socks5  192.168.67.78   1080    lamer   secret
  52. #       http    192.168.89.3    8080    justu   hidden
  53. #       socks4  192.168.1.49    1080
  54. #           http    192.168.39.93   8080   
  55. #      
  56. #
  57. #       proxy types: http, socks4, socks5
  58. #        ( auth types supported: "basic"-http  "user/pass"-socks )
  59. #
  60. [ProxyList]
  61. # add proxy here ...
  62. # meanwile
  63. # defaults set to "tor"
  64. socks5 127.0.0.1 9050
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement