{"id":26802417,"url":"https://github.com/red5pro/rtspbee","last_synced_at":"2025-07-21T15:05:46.805Z","repository":{"id":28634104,"uuid":"73859436","full_name":"red5pro/rtspbee","owner":"red5pro","description":"RTSP Client to connect to a stream and used as a bee.","archived":false,"fork":false,"pushed_at":"2022-12-06T00:41:33.000Z","size":82,"stargazers_count":7,"open_issues_count":5,"forks_count":1,"subscribers_count":17,"default_branch":"master","last_synced_at":"2025-04-23T02:39:44.598Z","etag":null,"topics":["red5pro"],"latest_commit_sha":null,"homepage":"","language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/red5pro.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2016-11-15T22:06:19.000Z","updated_at":"2020-05-18T06:56:13.000Z","dependencies_parsed_at":"2023-01-14T09:13:31.247Z","dependency_job_id":null,"html_url":"https://github.com/red5pro/rtspbee","commit_stats":null,"previous_names":[],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/red5pro/rtspbee","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/red5pro%2Frtspbee","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/red5pro%2Frtspbee/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/red5pro%2Frtspbee/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/red5pro%2Frtspbee/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/red5pro","download_url":"https://codeload.github.com/red5pro/rtspbee/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/red5pro%2Frtspbee/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266324464,"owners_count":23911226,"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","status":"online","status_checked_at":"2025-07-21T11:47:31.412Z","response_time":64,"last_error":null,"robots_txt_status":null,"robots_txt_updated_at":null,"robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["red5pro"],"created_at":"2025-03-29T21:18:01.798Z","updated_at":"2025-07-21T15:05:46.769Z","avatar_url":"https://github.com/red5pro.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"# RTSP Bee\nThe RTSP Bee is a java program that runs a subscription \"attack\" on a server. One *RTSP Bee* can have N *Bullets* (or stingers) that are fired concurrently.\n\n* [Requirements](#build-requirements)\n* [Building](#building)\n* [Attacking](#attacking)\n* [Notes](#notes)\n\n# Build Requirements\n\n* Maven 3+\n* Java 8 JDK\n\n# Building\n\nFirst run the `setup`:\n\n```sh\n./setup.sh\n```\n\n## Maven\n\nCreates an executable jar with all the needed dependencies (~26Mb)\n\n```sh\n$ mvn clean compile assembly:single\n```\n\n# Attacking\n\n\u003e You will need to have Java 8 installed to run the RTSP Bee.\n\n* [Basic Subscription](#basic-subscription)\n* [Stream Manager Subscription](#stream-manager-subscription)\n\n## Basic Subscription\n\n```sh\n$ java -jar -noverify rtspbee.jar [red5pro-server-IP] [port] [app-name] [stream-name] [count] [timeout]\n```\n\n### Options\n\n#### red5pro-server-IP\nThe IP of the Red5 Pro Server that you want the bee to subscribe to attack.\n\n#### port\nThe port on the Red5 Pro Server that you want the bee to subscribe to attack.\n\n#### app-name\nThe application name that provides the streaming capabilities.\n\n#### stream-name\nThe name of the stream you want the bee to subscribe to attack.\n\n#### count\nThe amount of bullets (stingers, a.k.a. stream connections) for the bee to have in the attack.\n\n#### timeout\nThe amount of time to subscribe to stream. _The actual subscription time may differ from this amount. This is really the time lapse of start of subscription until end._\n\n#### Example\n\n```sh\njava -jar -noverify rtspbee.jar xxx.xxx.xxx.xxx 8554 live mystream 100 60\n```\n\nThis will run an attack with `100` stingers (a.k.a, subscription streams) for `60` seconds each, consuming the `mystream` stream at `rtsp://xxx.xxx.xxx.xxx:8554`.\n\n## Stream Manager Subscription\n\n```sh\n$ java -jar -noverify rtspbee.jar [stream-manager-API-request] [port] [count] [timeout]\n```\n\n### Options\n\n#### stream-manager-API-request\nThe API request endpoint that will return Edge server information.\n\n#### port\nThe port on the Red5 Pro Edge Server that you want the bee to subscribe to attack.\n\n#### count\nThe amount of bullets (stingers, a.k.a. stream connections) for the bee to have in the attack\n\n#### timeout\nThe amount of time to subscribe to stream. _The actual subscription time may differ from this amount. This is really the time lapse of start of subscription until end._\n\n#### Example\n\n```sh\n$ java -jar -noverify rtspbee.jar \"http://xxx.xxx.xxx.xxx:5080/streammanager/api/3.1/event/live/mystream?action=subscribe\" 8554 100 60\n```\n\nThis will run an attack with `100` stingers (a.k.a, subscription streams) for `60` seconds each, consuming the `mystream` stream at the Edge server address returned from the Stream Manager API call to `http://xxx.xxx.xxx.xxx:5080/streammanager/api/3.1/event/live/mystream?action=subscribe`.\n\n# Notes\n\n## Stream Manager API\n\nFor the Stream Manager example, it is important to note that the insecure IP address is required. If you are serving your Stream Manager over SSL, the RTSP bee cannot properly use its API due to security restrictions. _It is possible to resolve these security issues in the future, if you download and store the cert in your Java install, [https://stackoverflow.com/questions/21076179/pkix-path-building-failed-and-unable-to-find-valid-certification-path-to-requ](https://stackoverflow.com/questions/21076179/pkix-path-building-failed-and-unable-to-find-valid-certification-path-to-requ)._\n\n## noverify\n\nThe above `run` examples use the `-noverify` option when running the bee. Without this option, verification errors are thrown due to the compilation and obsfucation of the Red5 Pro dependency libs.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fred5pro%2Frtspbee","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fred5pro%2Frtspbee","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fred5pro%2Frtspbee/lists"}