연구 프로젝트
스크립트 사용에 따른 위험은 본인이 부담합니다
프로젝트에는 2개의 스크립트가 포함되어 있습니다.
두 스크립트 모두 python3과 호환되며 FFprobe 및 FFmpeg를 사용합니다.
사용하기 전에 설치하십시오:
다음 예제를 실행하여 어떻게 작동하는지 확인할 수 있습니다.
python3 multicast-checker.py --playlist playlist.m3u
여기서 재생 목록.m3u 는 모든 UDP 채널이 나열되는 M3U 파일입니다.
M3U 파일 예:
#EXTM3U
#EXTINF:2,Info channel #1
udp://@233.99.65.1:1234
#EXTINF:2,Info channel #2
udp://@233.99.65.2:5500
#EXTINF:2,Info channel #3
udp://@233.99.65.3:1234
#EXTINF:2,Info channel #4
udp://@233.99.65.4:5500
#EXTINF:2,Info channel #5
udp://@233.99.65.5:1234
스크립트는 멀티스레딩을 사용하여 presents.m3u의 모든 schannel을 스캔하고 결과를 반환합니다. UDP 스트림의 service_name 메타데이터 필드는 미리 캡처됩니다.
출력 예:
[*] Email parameters are not defined.
[*] Run the script with -h parameter for the details.
[*] Channel Info channel #2 is not working
[*] Channel Info channel #4 is not working
[*] Channel Info channel #3 is not working
[*] Channel Info channel #5 is not working
[*] OK >>> Channel is working! >>> "Info channel #1" >>> No stream name found
[*] The following channel(s) are not working:
233.99.65.2:5500 - Info channel #2
233.99.65.4:5500 - Info channel #4
233.99.65.3:1234 - Info channel #3
233.99.65.5:1234 - Info channel #5
[*] Finished in 7.0 second(s)
python3 multicast-scanner.py --range 233.99.65.1/30
스크립트는 멀티스레딩을 사용하여 지정된 UDP IP 범위를 스캔하고 결과를 반환합니다. UDP 스트림의 service_name 메타데이터 필드는 미리 캡처됩니다. service_name이 발견되지 않으면 10초 샘플이 캡처됩니다.
출력 예:
[*] IP range to scan: 233.99.65.0/30
[*] IPs to scan: 4
[*] Ports to scan for each IP: 1
[*] List of the port(s) to scan: 1234
[*] Timeout for UDP stream reply: 5 sec(s)
[*] Timeout for stream data collection: 10 sec(s)
[*] Sample lenght in seconds: 60 sec(s)
[*] Totals:
[*] Total items to scan: 4
[*] Total number of /32 subnets to scan (# of threads): 4
[*] Total number of hosts for each subnet to scan: 1
[*] Estimated maximum time to complete the task: 50 seconds
[*] 0 day(s) 0 hour(s) 0 minute(s) 50 second(s)
[*] Found opened port 1234 for 233.99.65.1
[*] Scanning for 233.99.65.0/32 completed!
[*] Scanning for 233.99.65.2/32 completed!
[*] Scanning for 233.99.65.3/32 completed!
[*] !!! No channel name found for 233.99.65.1:1234 !!!
[*] !!! Channel added to the playlist. 233.99.65.1:1234 >>> 1 !!!
[*] Scanning for 233.99.65.1/32 completed!
[*] Recording the samples for unnamed channels...
[*] !!! Sample for 233.99.65.1:1234 captured !!!
[*] Finished in 14.0 second(s)
[*] 0.0 day(s) 0.0 hour(s) 0.0 minute(s) 14.0 second(s)
[*] Channels found: 1
[*] Resulting file: scan_results_range_233.99.65.0-30.m3u
스크립트는 Linux(Ubuntu 20.04) 및 MacOS(Big Sur, 11.2.2)에서 테스트되었습니다.
다음을 사용하여 스크립트의 모든 매개변수를 찾을 수 있습니다.
python3 multicast-checker.py -h
--playlist "Playlist *.m3u file with UDP streams" required: True
--nic "network interface IP address with UDP stream" required: False default: '0.0.0.0'
--udp_timeout "Time to wait in seconds for the UPD port reply" required: False default: 5
--info_timeout "Time to wait in seconds for the stream's info" required: False default: 10
--smtp_server "SMTP server to send an email" required: False
--smtp_port "Port for SMTP server" required: False default: 25
--sender "email address for email sender" required: False
--receivers "emails of the receivers (space separated)" required: False
python3 multicast-scanner.py -h
--range "Range of IPs to scan." required: True
--size "Size of the subnets to divide." required: False default: '32'
--playlist "Playlist *.m3u file with UDP streams" required: False
--nic "network interface IP address with UDP stream" required: False default: '0.0.0.0'
--udp_timeout "Time to wait in seconds for the UPD port reply" required: False default: 5
--port "addtional UDP port to scan. Default: 1234" required: False default: '1234'
--sample_sec "Sample lenght in seconds" required: False default: 60
--info_timeout "Time to wait in seconds for the stream's info" required: False default: 10
--smtp_server "SMTP server to send an email" required: False
--smtp_port "Port for SMTP server" required: False default: 25
--sender "email address for email sender" required: False
--receivers "emails of the receivers (space separated)" required: False
multicast-checker.py 프로젝트는 ISP IPTV 네트워크를 모니터링하는 도구로 생성되었으며 채널 중단 시 경고를 보냈습니다.
multicast-scanner.py 프로젝트는 ISP 네트워크에서 사용 가능한 모든 IPTV 채널을 검색하는 도구로 만들어졌습니다.
추가 개발에 대해 자유롭게 의견/비난/제안을 해주시기 바랍니다.
사용된 데이터:
이 프로젝트의 코드는 MIT 라이선스에 따라 라이선스가 부여됩니다.