Recent Changes - Search:

LiveStreamsPro

PmWiki

pmwiki.org

edit SideBar

RijndaelDecryption

Rijndael Decryption

From version 2.9.2 a Rijndael decryptor library is included and can be called via Python code block.

<item>
  <title>Ball24 TV</title>
  <link>$doregex[channels]</link>
  <thumbnail></thumbnail>
<regex>
  <name>channels</name>
  <listrepeat><![CDATA[
 <title>[COLOR gold][channels.param3][/COLOR]</title>
 <link>$doregex[url]|User-Agent=iPad</link>
 <thumbnail>[channels.param2]</thumbnail>
]]></listrepeat>
  <expres><![CDATA[(?s)href="https://www\.ball24\.tv/allchannel/\?id=([^"]+).+?src="([^"]+).+?p>([^<]+)]]></expres>
  <page>https://www.ball24.tv/allchannel/</page>
  <referer>https://www.ball24.tv/</referer>
  </regex>
  <regex>
    <name>url</name>
    <expres><![CDATA[#$pyFunction
def GetLSProData(page_data,Cookie_Jar,m):
 from rijndael.cipher.crypt import new
 from rijndael.cipher.blockcipher import MODE_CBC
 IV = "your_IV_goes_here"
 KEY = "your_key_goes_here"
 BLOCKSIZE = 32
 rjn = new(KEY, MODE_CBC, IV, blocksize=BLOCKSIZE)
 val = rjn.decrypt(page_data.decode('base64'))
 return val
]]></expres>
    <page>https://www.ball24.tv/ztvapi/generator.php?channel_id=[channels.param1]</page>
    <referer>https://www.ball24.tv/</referer>
  </regex>
</item>
 

Edit - History - Print - Recent Changes - Search
Page last modified on September 22, 2019, at 02:20 PM
Free Web Hosting