{"id":28437015,"url":"https://github.com/ronin-rb/ronin-listener-http","last_synced_at":"2025-06-27T20:32:03.548Z","repository":{"id":152903543,"uuid":"617610535","full_name":"ronin-rb/ronin-listener-http","owner":"ronin-rb","description":"A HTTP server for receiving exfiled data.","archived":false,"fork":false,"pushed_at":"2025-02-03T06:05:37.000Z","size":60,"stargazers_count":3,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-14T04:39:09.795Z","etag":null,"topics":["asyncio","exfil","exfiltration","http-server","infosec","listener","ruby"],"latest_commit_sha":null,"homepage":"https://ronin-rb.dev","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"lgpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ronin-rb.png","metadata":{"files":{"readme":"README.md","changelog":"ChangeLog.md","contributing":null,"funding":null,"license":"COPYING.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null},"funding":{"open_collective":"ronin-rb","patreon":"roninrb"}},"created_at":"2023-03-22T18:39:14.000Z","updated_at":"2025-02-03T06:05:40.000Z","dependencies_parsed_at":"2024-01-15T08:02:44.481Z","dependency_job_id":"cb4e57ff-4f1e-41f9-9793-ca63a736a209","html_url":"https://github.com/ronin-rb/ronin-listener-http","commit_stats":{"total_commits":32,"total_committers":1,"mean_commits":32.0,"dds":0.0,"last_synced_commit":"01f625afc23581ae6dfdf88c3a9818669e362b8a"},"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/ronin-rb/ronin-listener-http","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ronin-rb%2Fronin-listener-http","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ronin-rb%2Fronin-listener-http/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ronin-rb%2Fronin-listener-http/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ronin-rb%2Fronin-listener-http/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ronin-rb","download_url":"https://codeload.github.com/ronin-rb/ronin-listener-http/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ronin-rb%2Fronin-listener-http/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":260577279,"owners_count":23030702,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["asyncio","exfil","exfiltration","http-server","infosec","listener","ruby"],"created_at":"2025-06-05T23:08:29.440Z","updated_at":"2025-06-27T20:32:03.453Z","avatar_url":"https://github.com/ronin-rb.png","language":"Ruby","funding_links":["https://opencollective.com/ronin-rb","https://patreon.com/roninrb"],"categories":[],"sub_categories":[],"readme":"# ronin-listener-http\n\n[![CI](https://github.com/ronin-rb/ronin-listener-http/actions/workflows/ruby.yml/badge.svg)](https://github.com/ronin-rb/ronin-listener-http/actions/workflows/ruby.yml)\n[![Code Climate](https://codeclimate.com/github/ronin-rb/ronin-listener-http.svg)](https://codeclimate.com/github/ronin-rb/ronin-listener-http)\n\n* [Website](https://ronin-rb.dev/)\n* [Source](https://github.com/ronin-rb/ronin-listener-http)\n* [Issues](https://github.com/ronin-rb/ronin-listener-http/issues)\n* [Documentation](https://ronin-rb.dev/docs/ronin-listener-http)\n* [Discord](https://discord.gg/6WAb3PsVX9) |\n  [Mastodon](https://infosec.exchange/@ronin_rb)\n\n## Description\n\nronin-listener-http is a DNS server for receiving exfiltrated data sent via HTTP\nrequests. ronin-listener-http can be used to test for Server-Side Request\nForgery (SSRF) or XML external entity (XXE) injection.\n\n## Features\n\n* Supports receiving HTTP requests.\n* Supports filtering HTTP requests by path or `Host` header.\n\n## Examples\n\n```ruby\nrequire 'ronin/listener/http'\n\nRonin::Listener::HTTP.listen(host: '127.0.0.1', port: 8080) do |request|\n  puts \"#{request.method} #{request.path} #{request.version}\"\n\n  request.headers.each do |name,value|\n    puts \"#{name}: #{value}\"\n  end\n\n  puts request.body if request.body\n  puts\nend\n```\n\n## Requirements\n\n* [Ruby] \u003e= 3.0.0\n* [async-http] ~\u003e 1.0\n\n## Install\n\n```shell\n$ gem install ronin-listener-http\n```\n\n### Gemfile\n\n```ruby\ngem 'ronin-listener-http', '~\u003e 0.1'\n```\n\n### gemspec\n\n```ruby\ngem.add_dependency 'ronin-listener-http', '~\u003e 0.1'\n```\n\n## Development\n\n1. [Fork It!](https://github.com/ronin-rb/ronin-listener-http/fork)\n2. Clone It!\n3. `cd ronin-listener-http/`\n4. `bundle install`\n5. `git checkout -b my_feature`\n6. Code It!\n7. `bundle exec rake spec`\n8. `git push origin my_feature`\n\n## License\n\nCopyright (c) 2023-2024 Hal Brodigan (postmodern.mod3@gmail.com)\n\nronin-listener-http is free software: you can redistribute it and/or modify\nit under the terms of the GNU Lesser General Public License as published\nby the Free Software Foundation, either version 3 of the License, or\n(at your option) any later version.\n\nronin-listener-http is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU Lesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License\nalong with ronin-listener-http.  If not, see \u003chttps://www.gnu.org/licenses/\u003e.\n\n[Ruby]: https://www.ruby-lang.org\n[async-http]: https://github.com/socketry/async-http#readme\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fronin-rb%2Fronin-listener-http","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fronin-rb%2Fronin-listener-http","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fronin-rb%2Fronin-listener-http/lists"}