Compare commits

...

4 Commits

Author SHA1 Message Date
Wu Tingfeng d604bcf3ca
Merge f362385fcc into a1dafe025a 2026-08-15 15:57:50 +08:00
KAMI a1dafe025a
Add Aguacate TV and AS3 Sport TV to Venezuela list (#1125)
Latina TV is already listed; inter TV was already added previously.
Assigned chno 12/13 to avoid colliding with the existing chno=1
(Venevisión), and normalized the AS3 Sport TV EPG id to drop the
embedded space for consistency with other entries.

Co-authored-by: KAMI <miholmikor@gmail.com>
2026-08-14 12:26:04 +02:00
KAMI 5176eb2db8
Security: sanitize channel attributes to prevent M3U8 attribute injection (#1124)
group, name, logo and epg values are embedded unescaped into quoted
#EXTINF attributes (tvg-name, tvg-logo, tvg-id, group-title). A value
containing a double quote can break out of its attribute and inject
arbitrary extra attributes/content into the generated playlist.

Strip embedded double quotes from these fields at parse time.

Co-authored-by: KAMI <miholmikor@gmail.com>
2026-08-14 12:13:49 +02:00
Wu Tingfeng f362385fcc
Create LICENSE 2024-01-31 00:04:45 +08:00
5 changed files with 38 additions and 4 deletions

24
LICENSE 100644
View File

@ -0,0 +1,24 @@
This is free and unencumbered software released into the public domain.
Anyone is free to copy, modify, publish, use, compile, sell, or
distribute this software, either in source code form or as a compiled
binary, for any purpose, commercial or non-commercial, and by any
means.
In jurisdictions that recognize copyright laws, the author or authors
of this software dedicate any and all copyright interest in the
software to the public domain. We make this dedication for the benefit
of the public at large and to the detriment of our heirs and
successors. We intend this dedication to be an overt act of
relinquishment in perpetuity of all present and future rights to this
software under copyright law.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
For more information, please refer to <https://unlicense.org>

View File

@ -14,3 +14,5 @@ https://en.wikipedia.org/wiki/List_of_television_networks_in_Venezuela
| 9 | Chivacoatv Internacional | [x](https://glb.bozztv.com/glb/ssh101/1234chivacoa/index.m3u8) | <img height="20" src="https://i.imgur.com/9rbwZFY.png"/> | Chivacoatv.ve | | 9 | Chivacoatv Internacional | [x](https://glb.bozztv.com/glb/ssh101/1234chivacoa/index.m3u8) | <img height="20" src="https://i.imgur.com/9rbwZFY.png"/> | Chivacoatv.ve |
| 10 | Latina TV | [>](https://streamtv.latinamedios.com:3413/live/latinatvlive.m3u8) | <img height="20" src="https://intervenhosting.net/imagenes/latinatv.jpg"> | LatinaTV.ve | | 10 | Latina TV | [>](https://streamtv.latinamedios.com:3413/live/latinatvlive.m3u8) | <img height="20" src="https://intervenhosting.net/imagenes/latinatv.jpg"> | LatinaTV.ve |
| 11 | inter TV | [>](https://streamtv.intervenhosting.net:3439/hybrid/play.m3u8) | <img height="20" src="https://intervenhosting.net/imagenes/itv.jpg"> | interTV.ve | | 11 | inter TV | [>](https://streamtv.intervenhosting.net:3439/hybrid/play.m3u8) | <img height="20" src="https://intervenhosting.net/imagenes/itv.jpg"> | interTV.ve |
| 12 | Aguacate TV | [>](https://streamtv.intervenhosting.net:3040/hybrid/play.m3u8) | <img height="20" src="https://intervenhosting.net/imagenes/aguacatetv.jpg"> | AguacateTV.ve |
| 13 | AS3 Sport TV | [>](https://streamtv.as3sport.online:3394/hybrid/play.m3u8) | <img height="20" src="https://intervenhosting.net/imagenes/as3sporttv.jpg"> | AS3SportTV.ve |

View File

@ -96,21 +96,21 @@ class Channel: # pylint: disable=too-few-public-methods,too-many-instance-attri
"""A single channel entry parsed from a markdown list line.""" """A single channel entry parsed from a markdown list line."""
def __init__(self, group, md_line, country_code=""): def __init__(self, group, md_line, country_code=""):
self.group = group self.group = group.replace('"', '')
self.country_code = country_code self.country_code = country_code
md_line = md_line.strip() md_line = md_line.strip()
parts = md_line.split("|") parts = md_line.split("|")
self.number = parts[1].strip() self.number = parts[1].strip()
self.name = parts[2].strip() self.name = parts[2].strip().replace('"', '')
self.url = parts[3].strip() self.url = parts[3].strip()
self.url = self.url[self.url.find("(")+1:self.url.rfind(")")] self.url = self.url[self.url.find("(")+1:self.url.rfind(")")]
self.logo = parts[4].strip() self.logo = parts[4].strip()
self.logo = self.logo[self.logo.find('src="')+5:self.logo.rfind('"')] self.logo = self.logo[self.logo.find('src="')+5:self.logo.rfind('"')].replace('"', '')
self.chno = self.number if self.number and self.number != "0" else None self.chno = self.number if self.number and self.number != "0" else None
if len(parts) > 6: if len(parts) > 6:
self.epg = parts[5].strip() self.epg = parts[5].strip().replace('"', '')
else: else:
self.epg = None self.epg = None

View File

@ -3387,6 +3387,10 @@ https://raw.githubusercontent.com/BellezaEmporium/IPTV_Exception/master/channels
https://streamtv.latinamedios.com:3413/live/latinatvlive.m3u8 https://streamtv.latinamedios.com:3413/live/latinatvlive.m3u8
#EXTINF:-1 tvg-name="inter TV" tvg-logo="https://intervenhosting.net/imagenes/itv.jpg" tvg-id="interTV.ve" tvg-chno="11" tvg-country="VE" group-title="Venezuela",inter TV #EXTINF:-1 tvg-name="inter TV" tvg-logo="https://intervenhosting.net/imagenes/itv.jpg" tvg-id="interTV.ve" tvg-chno="11" tvg-country="VE" group-title="Venezuela",inter TV
https://streamtv.intervenhosting.net:3439/hybrid/play.m3u8 https://streamtv.intervenhosting.net:3439/hybrid/play.m3u8
#EXTINF:-1 tvg-name="Aguacate TV" tvg-logo="https://intervenhosting.net/imagenes/aguacatetv.jpg" tvg-id="AguacateTV.ve" tvg-chno="12" tvg-country="VE" group-title="Venezuela",Aguacate TV
https://streamtv.intervenhosting.net:3040/hybrid/play.m3u8
#EXTINF:-1 tvg-name="AS3 Sport TV" tvg-logo="https://intervenhosting.net/imagenes/as3sporttv.jpg" tvg-id="AS3SportTV.ve" tvg-chno="13" tvg-country="VE" group-title="Venezuela",AS3 Sport TV
https://streamtv.as3sport.online:3394/hybrid/play.m3u8
#EXTINF:-1 tvg-name="Al Jazeera Documentary Ⓖ" tvg-logo="https://upload.wikimedia.org/wikipedia/en/e/e6/Al_Jazeera_Doc.png" tvg-id="AlJazeeraDocumentary.qa" group-title="Documentaries (AR)",Al Jazeera Documentary Ⓖ #EXTINF:-1 tvg-name="Al Jazeera Documentary Ⓖ" tvg-logo="https://upload.wikimedia.org/wikipedia/en/e/e6/Al_Jazeera_Doc.png" tvg-id="AlJazeeraDocumentary.qa" group-title="Documentaries (AR)",Al Jazeera Documentary Ⓖ
https://live-hls-web-ajd.getaj.net/AJD/index.m3u8 https://live-hls-web-ajd.getaj.net/AJD/index.m3u8
#EXTINF:-1 tvg-name="CGTN Documentary English Ⓢ" tvg-logo="https://i.imgur.com/JHv0WxM.png" tvg-id="CGTNDocumentary.cn" group-title="Documentaries (EN)",CGTN Documentary English Ⓢ #EXTINF:-1 tvg-name="CGTN Documentary English Ⓢ" tvg-logo="https://i.imgur.com/JHv0WxM.png" tvg-id="CGTNDocumentary.cn" group-title="Documentaries (EN)",CGTN Documentary English Ⓢ

View File

@ -15,3 +15,7 @@ https://raw.githubusercontent.com/BellezaEmporium/IPTV_Exception/master/channels
https://streamtv.latinamedios.com:3413/live/latinatvlive.m3u8 https://streamtv.latinamedios.com:3413/live/latinatvlive.m3u8
#EXTINF:-1 tvg-name="inter TV" tvg-logo="https://intervenhosting.net/imagenes/itv.jpg" tvg-id="interTV.ve" tvg-chno="11" tvg-country="VE" group-title="Venezuela",inter TV #EXTINF:-1 tvg-name="inter TV" tvg-logo="https://intervenhosting.net/imagenes/itv.jpg" tvg-id="interTV.ve" tvg-chno="11" tvg-country="VE" group-title="Venezuela",inter TV
https://streamtv.intervenhosting.net:3439/hybrid/play.m3u8 https://streamtv.intervenhosting.net:3439/hybrid/play.m3u8
#EXTINF:-1 tvg-name="Aguacate TV" tvg-logo="https://intervenhosting.net/imagenes/aguacatetv.jpg" tvg-id="AguacateTV.ve" tvg-chno="12" tvg-country="VE" group-title="Venezuela",Aguacate TV
https://streamtv.intervenhosting.net:3040/hybrid/play.m3u8
#EXTINF:-1 tvg-name="AS3 Sport TV" tvg-logo="https://intervenhosting.net/imagenes/as3sporttv.jpg" tvg-id="AS3SportTV.ve" tvg-chno="13" tvg-country="VE" group-title="Venezuela",AS3 Sport TV
https://streamtv.as3sport.online:3394/hybrid/play.m3u8