safe_redirect_rails 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 00230c02950156c12350b15c791eaaa6c86eface415a987d3ee7d832e5b3df6e
4
+ data.tar.gz: 2647132cb892ec055d91352f837e3d7f8881dcd7ee5d8268448652a796906b9c
5
+ SHA512:
6
+ metadata.gz: 4816cd51aec868d4c9886061abf028c6f2141cb1ff1873611e362cb2d5992a0168391eaca7b70347bb82fe27a873ef1c0ba3bc21697e06bcfb4772df4f601143
7
+ data.tar.gz: 60dad28b40e0e5c710d2003fe6747b9863f481eb48da0f266884a8c7544b7207a69e0ef5dba5f05e34c2b4d069b2ca0908711dbb9ee1be7197f3fc08847f402c
data/.standard.yml ADDED
@@ -0,0 +1,3 @@
1
+ # For available configuration options, see:
2
+ # https://github.com/standardrb/standard
3
+ ruby_version: 2.6
data/CHANGELOG.md ADDED
@@ -0,0 +1,5 @@
1
+ ## [Unreleased]
2
+
3
+ ## [0.1.0] - 2025-03-21
4
+
5
+ - Initial release
data/README.md ADDED
@@ -0,0 +1,32 @@
1
+ # SafeRedirectRails
2
+
3
+ TODO: Delete this and the text below, and describe your gem
4
+
5
+ Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/safe_redirect_rails`. To experiment with that code, run `bin/console` for an interactive prompt.
6
+
7
+ ## Installation
8
+
9
+ TODO: Replace `UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG` with your gem name right after releasing it to RubyGems.org. Please do not do it earlier due to security reasons. Alternatively, replace this section with instructions to install your gem from git if you don't plan to release to RubyGems.org.
10
+
11
+ Install the gem and add to the application's Gemfile by executing:
12
+
13
+ $ bundle add UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
14
+
15
+ If bundler is not being used to manage dependencies, install the gem by executing:
16
+
17
+ $ gem install UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
18
+
19
+ ## Usage
20
+
21
+ TODO: Write usage instructions here
22
+
23
+ ## Development
24
+
25
+ After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
26
+
27
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and the created tag, and push the `.gem` file to [rubygems.org](https://rubygems.org).
28
+
29
+ ## Contributing
30
+
31
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/safe_redirect_rails.
32
+ # safe_redirect_rails
data/Rakefile ADDED
@@ -0,0 +1,6 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "bundler/gem_tasks"
4
+ require "standard/rake"
5
+
6
+ task default: :standard
@@ -0,0 +1,33 @@
1
+ module SafeRedirectRails
2
+ class << self
3
+ attr_writer :configuration
4
+
5
+ def configuration
6
+ @configuration ||= Configuration.new
7
+ end
8
+
9
+ def configure
10
+ yield(configuration)
11
+ end
12
+ end
13
+
14
+ class Configuration
15
+ attr_accessor :default_path, :whitelist_local, :log
16
+ attr_reader :domain_whitelists
17
+
18
+ def initialize
19
+ self.default_path = '/'
20
+ self.whitelist_local = false
21
+ self.domain_whitelists = []
22
+ self.log = false
23
+ end
24
+
25
+ def domain_whitelists=(whitelists)
26
+ if whitelists.any?{ |w| w =~ /\*\z/ }
27
+ raise ArgumentError, "whitelisted domain cannot end with a glob (*)"
28
+ end
29
+
30
+ @domain_whitelists = whitelists
31
+ end
32
+ end
33
+ end
@@ -0,0 +1,102 @@
1
+ require 'uri'
2
+
3
+ module SafeRedirectRails
4
+ extend self
5
+
6
+ def safe_domain?(uri)
7
+ return true if valid_uri?(uri)
8
+ return false if uri.host.nil?
9
+
10
+ SafeRedirectRails.configuration.domain_whitelists.any? do |domain|
11
+ if domain.include?("*")
12
+ rf = domain.split(/(\*)/).map{ |f| f == "*" ? "[A-Za-z0-9][A-Za-z0-9\\-]*[A-Za-z0-9]?" : Regexp.escape(f) }
13
+ regexp = Regexp.new("\\A#{rf.join}\\z")
14
+
15
+ safe = uri.host.match(regexp)
16
+
17
+ # if domain starts with *. and contains no other wildcards, include the
18
+ # naked domain too (e.g. foo.org when *.foo.org is the whitelist)
19
+ if domain =~ /\A\*\.[^\*]+\z/
20
+ naked_domain = domain.gsub("*.", "")
21
+ safe || uri.host == naked_domain
22
+ else
23
+ safe
24
+ end
25
+ else
26
+ uri.host == domain
27
+ end
28
+ end
29
+ end
30
+
31
+ def safe_path(path)
32
+ case path
33
+ when String
34
+ clean_path(path)
35
+ when Hash
36
+ sanitize_hash(path)
37
+ else
38
+ path
39
+ end
40
+ end
41
+
42
+ def redirect_to(path, options={})
43
+ target = options[:safe] ? path : safe_path(path)
44
+
45
+ log("Unsafe redirect path modified to #{target} from #{path}", :warn) if target != path
46
+
47
+ default_options = { allow_other_host: true }
48
+ merged_options = default_options.merge(options)
49
+ super target, default_options
50
+ rescue NoMethodError
51
+ end
52
+
53
+ private
54
+
55
+ def clean_path(path)
56
+ uri = URI.parse(path)
57
+ valid_path?(path) && safe_domain?(uri) ? path : SafeRedirectRails.configuration.default_path
58
+ rescue URI::InvalidURIError
59
+ SafeRedirectRails.configuration.default_path
60
+ end
61
+
62
+ def sanitize_hash(hash)
63
+ protocol = hash[:protocol] || 'http'
64
+ host = hash[:host]
65
+ uri = URI.parse("#{protocol}://#{host}")
66
+ hash.delete(:host) unless safe_domain?(uri)
67
+ hash
68
+ end
69
+
70
+ def valid_uri?(uri)
71
+ return true if uri.host && whitelist_local? && local_address?(uri.host)
72
+ return false unless uri.host.nil? && uri.scheme.nil?
73
+ return true if uri.path.nil? || uri.path =~ /^\//
74
+ false
75
+ end
76
+
77
+ def valid_path?(path)
78
+ path !~ /\/\/\//
79
+ end
80
+
81
+ def whitelist_local?
82
+ SafeRedirectRails.configuration.whitelist_local
83
+ end
84
+
85
+ # borrowed the regex from https://github.com/rack/rack/blob/ea9e7a570b7ffd8ac6845a9ebecdd7de0af6b0ca/lib/rack/request.rb#L420
86
+ def local_address?(host)
87
+ host =~ /\A127\.0\.0\.1\Z|\A(10|172\.(1[6-9]|2[0-9]|30|31)|192\.168)\.|\A::1\Z|\Afd[0-9a-f]{2}:.+|\Alocalhost\Z|\Aunix\Z|\Aunix:/i
88
+ end
89
+
90
+ def log(msg, level = :warn)
91
+ return unless (logger = SafeRedirectRails.configuration.log)
92
+
93
+ msg = "[#{Time.now}] SafeRedirectRails: #{msg}"
94
+
95
+ if logger.respond_to?(level)
96
+ logger.send(level, msg)
97
+ elsif defined?(Rails)
98
+ Rails.logger.send(level, msg)
99
+ end
100
+ end
101
+
102
+ end
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ module SafeRedirectRails
4
+ VERSION = "0.1.0"
5
+ end
@@ -0,0 +1,5 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'safe_redirect_rails/version'
4
+ require 'safe_redirect_rails/safe_redirect_rails'
5
+ require 'safe_redirect_rails/configuration'
@@ -0,0 +1,24 @@
1
+ # frozen_string_literal: true
2
+
3
+ require_relative "lib/safe_redirect_rails/version"
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.name = "safe_redirect_rails"
7
+ spec.version = SafeRedirectRails::VERSION
8
+ spec.authors = ["Tuan Pham"]
9
+ spec.email = ["tuanpt1702@gmail.com"]
10
+
11
+ spec.summary = "This gem provides a simple way to redirect to safe URLs"
12
+ spec.description = "This gem provides a simple way to redirect to safe URLs"
13
+ spec.required_ruby_version = ">= 2.6.0"
14
+ spec.metadata["homepage_uri"] = "https://github.com/JackoPham/safe_redirect_rails"
15
+
16
+ # Specify which files should be added to the gem when it is released.
17
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
18
+ spec.files = Dir.chdir(__dir__) do
19
+ `git ls-files -z`.split("\x0").reject do |f|
20
+ (File.expand_path(f) == __FILE__) ||
21
+ f.start_with?(*%w[bin/ test/ spec/ features/ .git .github appveyor Gemfile])
22
+ end
23
+ end
24
+ end
@@ -0,0 +1,4 @@
1
+ module SafeRedirectRails
2
+ VERSION: String
3
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
4
+ end
metadata ADDED
@@ -0,0 +1,49 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: safe_redirect_rails
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - Tuan Pham
8
+ bindir: bin
9
+ cert_chain: []
10
+ date: 2025-03-21 00:00:00.000000000 Z
11
+ dependencies: []
12
+ description: This gem provides a simple way to redirect to safe URLs
13
+ email:
14
+ - tuanpt1702@gmail.com
15
+ executables: []
16
+ extensions: []
17
+ extra_rdoc_files: []
18
+ files:
19
+ - ".standard.yml"
20
+ - CHANGELOG.md
21
+ - README.md
22
+ - Rakefile
23
+ - lib/safe_redirect_rails.rb
24
+ - lib/safe_redirect_rails/configuration.rb
25
+ - lib/safe_redirect_rails/safe_redirect_rails.rb
26
+ - lib/safe_redirect_rails/version.rb
27
+ - safe_redirect_rails.gemspec
28
+ - sig/safe_redirect_rails.rbs
29
+ licenses: []
30
+ metadata:
31
+ homepage_uri: https://github.com/JackoPham/safe_redirect_rails
32
+ rdoc_options: []
33
+ require_paths:
34
+ - lib
35
+ required_ruby_version: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - ">="
38
+ - !ruby/object:Gem::Version
39
+ version: 2.6.0
40
+ required_rubygems_version: !ruby/object:Gem::Requirement
41
+ requirements:
42
+ - - ">="
43
+ - !ruby/object:Gem::Version
44
+ version: '0'
45
+ requirements: []
46
+ rubygems_version: 3.6.6
47
+ specification_version: 4
48
+ summary: This gem provides a simple way to redirect to safe URLs
49
+ test_files: []