Advertisement
Guest User

proxychains

a guest
Mar 26th, 2016
1,179
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.63 KB | None | 0 0
  1. # proxychains.conf VER 4.x
  2. #
  3. # HTTP, SOCKS4a, SOCKS5 tunneling proxifier with DNS.
  4.  
  5. # The option below identifies how the ProxyList is treated.
  6. # only one option should be uncommented at time,
  7. # otherwise the last appearing option will be accepted
  8. #
  9. #dynamicchain
  10. #
  11. # Dynamic - Each connection will be done via chained proxies
  12. # all proxies chained in the order as they appear in the list
  13. # at least one proxy must be online to play in chain
  14. # (dead proxies are skipped)
  15. # otherwise EINTR is returned to the app
  16. #
  17. strictchain
  18. #
  19. # Strict - Each connection will be done via chained proxies
  20. # all proxies chained in the order as they appear in the list
  21. # all proxies must be online to play in chain
  22. # otherwise EINTR is returned to the app
  23. #
  24. #roundrobinchain
  25. #
  26. # Round Robin - Each connection will be done via chained proxies
  27. # of chainlen length
  28. # all proxies chained in the order as they appear in the list
  29. # at least one proxy must be online to play in chain
  30. # (dead proxies are skipped).
  31. # the start of the current proxy chain is the proxy after the last
  32. # proxy in the previously invoked proxy chain.
  33. # if the end of the proxy chain is reached while looking for proxies
  34. # start at the beginning again.
  35. # otherwise EINTR is returned to the app
  36. # These semantics are not guaranteed in a multithreaded environment.
  37. #
  38. #randomchain
  39. #
  40. # Random - Each connection will be done via random proxy
  41. # (or proxy chain, see chainlen) from the list.
  42. # this option is good to test your IDS :)
  43.  
  44. # Make sense only if randomchain or roundrobinchain
  45. #chainlen = 2
  46.  
  47. # Quiet mode (no output from library)
  48. #quietmode
  49.  
  50. # Proxy DNS requests - no leak for DNS data
  51. proxydns
  52.  
  53. # set the class A subnet number to use for the internal remote DNS mapping
  54. # we use the reserved 224.x.x.x range by default,
  55. # if the proxified app does a DNS request, we will return an IP from that range.
  56. # on further accesses to this ip we will send the saved DNS name to the proxy.
  57. # in case some control-freak app checks the returned ip, and denies to
  58. # connect, you can use another subnet, e.g. 10.x.x.x or 127.x.x.x.
  59. # of course you should make sure that the proxified app does not need
  60. # real access to this subnet.
  61. # i.e. dont use the same subnet then in the localnet section
  62. #remotednssubnet 127
  63. #remotednssubnet 10
  64. remotednssubnet 224
  65.  
  66. # Some timeouts in milliseconds
  67. tcpreadtimeout 15000
  68. tcpconnecttimeout 8000
  69.  
  70. ### Examples for localnet exclusion
  71. ## localnet ranges will not use a proxy to connect.
  72. ## Exclude connections to 192.168.1.0/24 with port 80
  73. # localnet 192.168.1.0:80/255.255.255.0
  74.  
  75. ## Exclude connections to 192.168.100.0/24
  76. # localnet 192.168.100.0/255.255.255.0
  77.  
  78. ## Exclude connections to ANYwhere with port 80
  79. # localnet 0.0.0.0:80/0.0.0.0
  80.  
  81. ## RFC5735 Loopback address range
  82. ## if you enable this, you have to make sure remotednssubnet is not 127
  83. ## you'll need to enable it if you want to use an application that
  84. ## connects to localhost.
  85. # localnet 127.0.0.0/255.0.0.0
  86.  
  87. ## RFC1918 Private Address Ranges
  88. # localnet 10.0.0.0/255.0.0.0
  89. # localnet 172.16.0.0/255.240.0.0
  90. # localnet 192.168.0.0/255.255.0.0
  91.  
  92. # ProxyList format
  93. # type ip port user pass
  94. # (values separated by 'tab' or 'blank')
  95. #
  96. # only numeric ipv4 addresses are valid
  97. #
  98. #
  99. # Examples:
  100. #
  101. # socks5 192.168.67.78 1080 lamer secret
  102. # http 192.168.89.3 8080 justu hidden
  103. # socks4 192.168.1.49 1080
  104. # http 192.168.39.93 8080
  105. #
  106. #
  107. # proxy types: http, socks4, socks5
  108. # ( auth types supported: "basic"-http "user/pass"-socks )
  109. #
  110. ProxyList
  111. # add proxy here ...
  112. # meanwile
  113. # defaults set to "tor"
  114. # socks4 127.0.0.1 9050
  115.  
  116. http 119.10.2.149 80
  117. http 124.202.181.186 8118
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement