A summary of data about the Ruby ecosystem.

https://github.com/arkadiyt/ssrf_filter

A ruby gem for defending against Server Side Request Forgery (SSRF) attacks
https://github.com/arkadiyt/ssrf_filter

Keywords

gem ruby server-side-request-forgery ssrf

Keywords from Contributors

activerecord crash-reporting database-cleaner feature-flag

Last synced: about 21 hours ago
JSON representation

Repository metadata

A ruby gem for defending against Server Side Request Forgery (SSRF) attacks

README.md

ssrf_filter Gem Tests Coverage Status Downloads License

Table of Contents

What's it for

ssrf_filter makes it easy to defend against server side request forgery (SSRF) attacks. SSRF vulnerabilities happen when you accept URLs as user input and fetch them on your server (for instance, when a user enters a link into a Twitter/Facebook status update and a content preview is generated).

Users can pass in URLs or IPs such that your server will make requests to the internal network. For example if you're hosted on AWS they can request the instance metadata endpoint http://169.254.169.254/latest/meta-data/ and get your IAM credentials.

Attempts to guard against this are often implemented incorrectly, by blocking all ip addresses, not handling IPv6 or http redirects correctly, or having TOCTTOU bugs and other issues.

This gem provides a safe and easy way to fetch content from user-submitted urls. It:

  • handles URIs/IPv4/IPv6, redirects, DNS, etc, correctly
  • has 0 runtime dependencies
  • has a comprehensive test suite (100% code coverage)
  • is tested against ruby 2.7, 3.0, 3.1, 3.2, 3.3, and ruby-head

Quick start

  1. Add the gem to your Gemfile:
gem 'ssrf_filter', '~> 1.3.0'
  1. In your code:
require 'ssrf_filter'
response = SsrfFilter.get(params[:url]) # throws an exception for unsafe fetches
response.code
=> "200"
response.body
=> "<!doctype html>\n<html>\n<head>\n..."

API reference

SsrfFilter.get/.put/.post/.delete/.head/.patch(url, options = {}, &block)

Fetches the requested url using a get/put/post/delete/head/patch request, respectively.

Params:

  • url — the url to fetch.
  • options — options hash (described below).
  • block — a block that will receive the HTTPRequest object before it's sent, if you need to do any pre-processing on it (see examples below).

Options hash:

  • :scheme_whitelist — an array of schemes to allow. Defaults to %w[http https].
  • :resolver — a proc that receives a hostname string and returns an array of IPAddr objects. Defaults to resolving with Ruby's Resolv. See examples below for a custom resolver.
  • :max_redirects — Maximum number of redirects to follow. Defaults to 10.
  • :params — Hash of params to send with the request.
  • :headers — Hash of headers to send with the request.
  • :body — Body to send with the request.
  • :http_options – Options to pass to Net::HTTP.start. Use this to set custom timeouts or SSL options.
  • :request_proc - a proc that receives the request object, for custom modifications before sending the request.
  • :allow_unfollowed_redirects - If true and your request hits the maximum number of redirects, the last response will be returned instead of raising an error. Defaults to false.

Returns:

An HTTPResponse object if the url was fetched safely, or throws an exception if it was unsafe. All exceptions inherit from SsrfFilter::Error.

Examples:

# GET www.example.com
SsrfFilter.get('https://www.example.com')

# Pass params - these are equivalent
SsrfFilter.get('https://www.example.com?param=value')
SsrfFilter.get('https://www.example.com', params: {'param' => 'value'})

# POST, send custom header, and don't follow redirects
begin
  SsrfFilter.post('https://www.example.com', max_redirects: 0,
    headers: {'content-type' => 'application/json'})
rescue SsrfFilter::Error => e
  # Got an unsafe url
end

# Custom DNS resolution and request processing
resolver = proc do |hostname|
  [IPAddr.new('2001:500:8f::53')] # Static resolver
end
# Do some extra processing on the request
request_proc = proc do |request|
  request['content-type'] = 'application/json'
  request.basic_auth('username', 'password')
end
SsrfFilter.get('https://www.example.com', resolver: resolver, request_proc: request_proc)

# Stream response
SsrfFilter.get('https://www.example.com') do |response|
  response.read_body do |chunk|
    puts chunk
  end
end

Changelog

Please see CHANGELOG.md. This project follows semantic versioning.

Contributing

Please see CONTRIBUTING.md.


Owner metadata


GitHub Events

Total
Last Year

Committers metadata

Last synced: 1 day ago

Total Commits: 63
Total Committers: 11
Avg Commits per committer: 5.727
Development Distribution Score (DDS): 0.317

Commits in past year: 2
Committers in past year: 1
Avg Commits per committer in past year: 2.0
Development Distribution Score (DDS) in past year: 0.0

Name Email Commits
Arkadiy Tetelman a****t@g****m 43
Arkadiy Tetelman a****n@a****m 8
Max Burkhardt m****t@a****m 3
Mitsuhiro Shibuya m****a@g****m 2
mark-young-atg 1****g 1
jacobrheath 7****h 1
Vadim Masakovski v****i@g****m 1
Peter Goldstein p****n@g****m 1
Jon Evans j****b@g****m 1
Ian Lesperance i****n@e****m 1
Benjamin Groessing b****n@b****m 1

Committer domains:


Issue and Pull Request metadata

Last synced: 7 days ago

Total issues: 19
Total pull requests: 66
Average time to close issues: 3 months
Average time to close pull requests: about 2 months
Total issue authors: 19
Total pull request authors: 14
Average comments per issue: 3.05
Average comments per pull request: 1.8
Merged pull request: 49
Bot issues: 0
Bot pull requests: 0

Past year issues: 4
Past year pull requests: 4
Past year average time to close issues: about 1 month
Past year average time to close pull requests: 1 minute
Past year issue authors: 4
Past year pull request authors: 1
Past year average comments per issue: 1.0
Past year average comments per pull request: 0.0
Past year merged pull request: 4
Past year bot issues: 0
Past year bot pull requests: 0

More stats: https://issues.ecosyste.ms/repositories/lookup?url=https://github.com/arkadiyt/ssrf_filter

Top Issue Authors

  • marcosmighty (1)
  • pamplo (1)
  • jakeyheath (1)
  • lorrocha (1)
  • mshibuya (1)
  • chrisballen (1)
  • collimarco (1)
  • joao-esteves (1)
  • fsateler (1)
  • brian-kephart (1)
  • sandstrom (1)
  • langalex (1)
  • evg2108 (1)
  • DmytroKondratiuk (1)
  • rajyan (1)

Top Pull Request Authors

  • arkadiyt (47)
  • mshibuya (4)
  • mark-young-atg (2)
  • maxburkhardt (2)
  • groe (2)
  • jakeyheath (1)
  • artfuldodger (1)
  • petergoldstein (1)
  • neilang (1)
  • vaski (1)
  • mrhaddad (1)
  • anero (1)
  • fivetentaylor (1)
  • elliterate (1)

Top Issue Labels

Top Pull Request Labels

  • enhancement (1)

Package metadata

gem.coop: ssrf_filter

A gem that makes it easy to prevent server side request forgery (SSRF) attacks

  • Homepage: https://github.com/arkadiyt/ssrf_filter
  • Documentation: http://www.rubydoc.info/gems/ssrf_filter/
  • Licenses: MIT
  • Latest release: 1.3.0 (published 10 months ago)
  • Last Synced: 2026-02-28T16:01:10.144Z (3 days ago)
  • Versions: 14
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 85,903,012 Total
  • Docker Downloads: 461,179,849
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 0.144%
    • Docker downloads count: 0.238%
    • Downloads: 0.337%
  • Maintainers (1)
debian-13: ruby-ssrf-filter

  • Homepage: https://github.com/arkadiyt/ssrf_filter
  • Documentation: https://packages.debian.org/trixie/ruby-ssrf-filter
  • Licenses: mit
  • Latest release: 1.0.7-2 (published 19 days ago)
  • Last Synced: 2026-02-13T13:20:05.360Z (18 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 0.701%
    • Forks count: 1.206%
    • Stargazers count: 1.597%
rubygems.org: ssrf_filter

A gem that makes it easy to prevent server side request forgery (SSRF) attacks

  • Homepage: https://github.com/arkadiyt/ssrf_filter
  • Documentation: http://www.rubydoc.info/gems/ssrf_filter/
  • Licenses: MIT
  • Latest release: 1.3.0 (published 10 months ago)
  • Last Synced: 2026-02-28T20:00:42.633Z (3 days ago)
  • Versions: 14
  • Dependent Packages: 6
  • Dependent Repositories: 5,187
  • Downloads: 85,904,713 Total
  • Docker Downloads: 461,179,849
  • Rankings:
    • Docker downloads count: 0.294%
    • Dependent repos count: 0.439%
    • Downloads: 0.439%
    • Average: 2.58%
    • Dependent packages count: 3.283%
    • Forks count: 4.803%
    • Stargazers count: 6.222%
  • Maintainers (1)
ubuntu-24.04: ruby-ssrf-filter

  • Homepage: https://github.com/arkadiyt/ssrf_filter
  • Licenses:
  • Latest release: 1.0.7-2 (published 19 days ago)
  • Last Synced: 2026-02-13T01:03:21.436Z (19 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 100%
ubuntu-22.04: ruby-ssrf-filter

  • Homepage: https://github.com/arkadiyt/ssrf_filter
  • Licenses:
  • Latest release: 1.0.7-2 (published 18 days ago)
  • Last Synced: 2026-02-13T13:26:31.196Z (18 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 100%
ubuntu-23.04: ruby-ssrf-filter

  • Homepage: https://github.com/arkadiyt/ssrf_filter
  • Licenses:
  • Latest release: 1.0.7-2 (published 20 days ago)
  • Last Synced: 2026-02-11T06:50:30.500Z (20 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 100%
ubuntu-24.10: ruby-ssrf-filter

  • Homepage: https://github.com/arkadiyt/ssrf_filter
  • Licenses:
  • Latest release: 1.0.7-2 (published 22 days ago)
  • Last Synced: 2026-02-09T17:22:36.164Z (22 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
ubuntu-23.10: ruby-ssrf-filter

  • Homepage: https://github.com/arkadiyt/ssrf_filter
  • Licenses:
  • Latest release: 1.0.7-2 (published 18 days ago)
  • Last Synced: 2026-02-13T18:33:44.928Z (18 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 100%
debian-12: ruby-ssrf-filter

  • Homepage: https://github.com/arkadiyt/ssrf_filter
  • Documentation: https://packages.debian.org/bookworm/ruby-ssrf-filter
  • Licenses:
  • Latest release: 1.0.7-2 (published 19 days ago)
  • Last Synced: 2026-02-12T23:42:18.273Z (19 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:

Dependencies

.github/workflows/build-test.yml actions
  • actions/checkout v3 composite
  • coverallsapp/github-action master composite
  • ruby/setup-ruby v1 composite
Dockerfile docker
  • ruby 3.0.0 build
Gemfile rubygems
ssrf_filter.gemspec rubygems
  • bundler-audit ~> 0.9.1 development
  • pry-byebug >= 0 development
  • rspec ~> 3.12.0 development
  • rubocop ~> 1.35.0 development
  • rubocop-rspec ~> 2.12.1 development
  • simplecov ~> 0.22.0 development
  • simplecov-lcov ~> 0.8.0 development
  • webmock >= 3.18.0 development
  • webrick >= 0 development

Score: 27.710969607770068