{"id":28437011,"url":"https://github.com/ronin-rb/ronin-listener","last_synced_at":"2026-02-26T06:37:52.091Z","repository":{"id":152903531,"uuid":"618626551","full_name":"ronin-rb/ronin-listener","owner":"ronin-rb","description":"A Ruby CLI utility for receiving exfiltrated data.","archived":false,"fork":false,"pushed_at":"2025-02-02T22:33:27.000Z","size":107,"stargazers_count":1,"open_issues_count":4,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-05T08:25:27.059Z","etag":null,"topics":["cli-util","dns-server","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-24T22:26:11.000Z","updated_at":"2025-02-02T22:33:31.000Z","dependencies_parsed_at":"2023-11-23T22:32:07.529Z","dependency_job_id":"5a287d00-3aa8-4956-8114-1ebfc4663d26","html_url":"https://github.com/ronin-rb/ronin-listener","commit_stats":{"total_commits":64,"total_committers":1,"mean_commits":64.0,"dds":0.0,"last_synced_commit":"d0b9e5a5eba9f4fabb87c4889d59bec28145f54d"},"previous_names":[],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/ronin-rb/ronin-listener","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ronin-rb%2Fronin-listener","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ronin-rb%2Fronin-listener/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ronin-rb%2Fronin-listener/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ronin-rb%2Fronin-listener/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ronin-rb","download_url":"https://codeload.github.com/ronin-rb/ronin-listener/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ronin-rb%2Fronin-listener/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":259763613,"owners_count":22907481,"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":["cli-util","dns-server","exfil","exfiltration","http-server","infosec","listener","ruby"],"created_at":"2025-06-05T23:08:28.557Z","updated_at":"2026-02-26T06:37:47.055Z","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\n\n[![CI](https://github.com/ronin-rb/ronin-listener/actions/workflows/ruby.yml/badge.svg)](https://github.com/ronin-rb/ronin-listener/actions/workflows/ruby.yml)\n[![Code Climate](https://codeclimate.com/github/ronin-rb/ronin-listener.svg)](https://codeclimate.com/github/ronin-rb/ronin-listener)\n\n* [Website](https://ronin-rb.dev/)\n* [Source](https://github.com/ronin-rb/ronin-listener)\n* [Issues](https://github.com/ronin-rb/ronin-listener/issues)\n* [Documentation](https://ronin-rb.dev/docs/ronin-listener)\n* [Discord](https://discord.gg/6WAb3PsVX9) |\n  [Mastodon](https://infosec.exchange/@ronin_rb)\n\n## Description\n\nronin-listener is a small CLI utility for receiving exfiltrated data over DNS or\nHTTP.\n\n## Features\n\n* Supports starting a DNS server for receiving exfiltrated data via DNS queries\n  for a domain.\n* Supports starting a HTTP server for receiving exfiltrated data via HTTP\n  requests.\n\n## Synopsis\n\n```\n$ ronin-listener\nUsage: ronin-listener [options]\n\nOptions:\n    -V, --version                    Prints the version and exits\n    -h, --help                       Print help information\n\nArguments:\n    [COMMAND]                        The command name to run\n    [ARGS ...]                       Additional arguments for the command\n\nCommands:\n    completion\n    dns\n    help\n    http\n```\n\nListen for DNS queries on `127.0.0.1` port `5553` for the domain `example.com`:\n\n```shell\nronin-listener dns -H 127.0.0.1 -p 5553 example.com\n```\n\nListen for HTTP requests on `127.0.0.1` port `8080`:\n\n```shell\nronin-listener http -H 127.0.0.1 -p 8080\n```\n\nListen specifically for HTTP requests sent to `example.com`:\n\n```shell\nronin-listener http -H 127.0.0.1 -p 8080 --vhost example.com\n```\n\nGenerate a new standalone DNS listener Ruby script:\n\n```shell\nronin-listener new dns file.rb\n```\n\nGenerate a new standalone HTTP listener Ruby script:\n\n```shell\nronin-listener new http file.rb\n```\n\n## Requirements\n\n* [Ruby] \u003e= 3.0.0\n* [ronin-listener-dns] ~\u003e 0.1\n* [ronin-listener-http] ~\u003e 0.1\n* [ronin-core] ~\u003e 0.2\n\n## Install\n\n```shell\n$ gem install ronin-listener\n```\n\n### Gemfile\n\n```ruby\ngem 'ronin-listener', '~\u003e 0.1'\n```\n\n### gemspec\n\n```ruby\ngem.add_dependency 'ronin-listener', '~\u003e 0.1'\n```\n\n## Development\n\n1. [Fork It!](https://github.com/ronin-rb/ronin-listener/fork)\n2. Clone It!\n3. `cd ronin-listener/`\n4. `./scripts/setup`\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 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 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.  If not, see \u003chttps://www.gnu.org/licenses/\u003e.\n\n[Ruby]: https://www.ruby-lang.org\n[ronin-listener-dns]: https://github.com/ronin-rb/ronin-listener-dns#readme\n[ronin-listener-http]: https://github.com/ronin-rb/ronin-listener-http#readme\n[ronin-core]: https://github.com/ronin-rb/ronin-core#readme\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fronin-rb%2Fronin-listener","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fronin-rb%2Fronin-listener","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fronin-rb%2Fronin-listener/lists"}