ruby-proxifier icon indicating copy to clipboard operation
ruby-proxifier copied to clipboard

Results 12 ruby-proxifier issues
Sort by recently updated
recently updated
newest added

- Fixed Proxifier::Proxy creation from URL String (`Proxifier::Proxy.new('socks://user:password@domain:port')`). - Fixed SOCKS5 authentication (it lacked subnegotiation version required by protocol specified in [RFC 1928](http://www.ietf.org/rfc/rfc1928.txt) and [RFC 1929](http://www.ietf.org/rfc/rfc1929.txt)). - Added tests for...

to make it accessible via e.g. rubygems.org and usable by compliance tooling Signed-off-by: Konrad Weihmann

With `Array#pack`, if the credentials is too long, it ends up adding a new line in the middle of the resulting base64 encoded string, which results in a 400 Bad...

``` TypeError: no implicit conversion of String into Integer /Users/yegor/.rvm/gems/ruby-2.6.0/gems/proxifier-1.0.3/lib/proxifier/proxies/socks.rb:48:in `pack' /Users/yegor/.rvm/gems/ruby-2.6.0/gems/proxifier-1.0.3/lib/proxifier/proxies/socks.rb:48:in `connect' /Users/yegor/.rvm/gems/ruby-2.6.0/gems/proxifier-1.0.3/lib/proxifier/proxies/socks.rb:11:in `do_proxify' /Users/yegor/.rvm/gems/ruby-2.6.0/gems/proxifier-1.0.3/lib/proxifier/proxy.rb:43:in `proxify' /Users/yegor/.rvm/gems/ruby-2.6.0/gems/proxifier-1.0.3/lib/proxifier/proxy.rb:29:in `open' ``` Would be great to have a more meaningful exception message...

Usually it looks like instances of `Proxy` are created with an instance of `URI`, but if you're like me and you tried to instantiate one by hand with a string,...

This commit adds a `:user_agent` option that can be used to configure the HTTP User-Agent header that proxifier presents to HTTP proxy servers.

2.1.0 :001 > require 'proxifier/proxy' => true 2.1.0 :002 > proxy = Proxifier::Proxy("192.3.169.70:80") NoMethodError: undefined method `Proxy' for Proxifier:Module

Hi, I needed a pool of proxies to cycle through and didn't see any direct support in this library. I've made a patch to supply this and thought others might...