554 - Rtsp
💡 学习提示: 本文档介绍 554-8554 - RTSP 的渗透测试方法,适合信息安全初学者和从业人员参考。
⚠️ 法律声明: 本文档仅供学习和授权测试使用。未经授权的系统测试可能违反法律法规。
The transmission of streaming data itself is not a task of RTSP. Most RTSP servers use the Real-time Transport 协议 (RTP) in conjunction with Real-time Control 协议 (RTCP) for media stream delivery. However, some vendors implement proprietary transport protocols. The RTSP server software from RealNetworks, for example, also used RealNetworks’ proprietary Real Data Transport (RDT).
默认 ports: 554,8554
Key Details
RTSP is similar to HTTP but designed specifically for media streaming. It’s defined in a straightforward specification which can be found here:
Devices might allow unauthenticated or authenticated access. To check, a “DESCRIBE” request is sent. A basic example is shown below:
DESCRIBE rtsp://<ip>:<port> RTSP/1.0\r\nCSeq: 2
Remember, the correct formatting includes a double “\r\n” for a consistent response. A “200 OK” response indicates unauthenticated access, while “401 Unauthorized” signals the need for authentication, revealing if Basic or Digest authentication is required.
For Basic authentication, you encode the username and password in base64 and include it in the request like so:
DESCRIBE rtsp://<ip>:<port> RTSP/1.0\r\nCSeq: 2\r\nAuthorization: Basic YWRtaW46MTIzNA==
This example uses “admin” and “1234” for the credentials. Here’s a Python script to send such a request:
Basic authentication is simpler and preferred. Digest authentication requires careful handling of the authentication details provided in the “401 Unauthorized” response.
This overview simplifies the process of accessing RTSP streams, focusing on Basic authentication for its simplicity and practicality in initial attempts.
信息收集
Lets get information about valid methods and URLs are supported and try to brute-force the access (if needed) to get access to the content.
Viewing the RTSP Stream with ffplay
Once you’ve discovered a valid RTSP path (e.g., /mpeg4, /live.sdp) and confirmed access (unauthenticated or with credentials), you can use ffplay to stream the feed:
-rtsp_transport tcp: Use TCP instead of UDP for more reliable streaming-x,-y: Optional flags to control video resolution- Replace
<IP>and path as needed
暴力破解
Other useful programs
To bruteforce: https://github.com/Tek-安全-Group/rtsp_authgrinder
- Detect open RTSP hosts on any accessible target
- Get their public info (hostname, port, camera model, etc.)
- Launch automated dictionary attacks to get their stream route (for example /live.sdp)
- Launch automated dictionary attacks to get the username and password of the cameras
- Generate thumbnails from them to check if the streams are valid and to have a quick preview of their content
- Try to create a Gstreamer pipeline to check if they are properly encoded
- Print a summary of all the informations Cameradar could get
参见
32100-udp-pentesting-pppp-cs2-p2p-cameras.md