dumping Ilive.toHey guys,
Do you know how to dump ilive.to streamings? It used to be possible to dump the streams getting a token from http://www.ilive.to/server.php but not anymore. Although it's still possible to get a token the server closes the connection. Code:
rtmpdump -r rtmp://live.iguide.to/edge -y vsoui5hx1do3qon -W http://player.ilive.to/secure_player_ilive_z.swf --token "UYDk93k#09sdafjJDHJKAD873" --live --debug -p "http://www.ilive.to/view/49959/watch-live-SIC_Noticias-streaming-channel-for-free" |
Re: dumping Ilive.totry with
Code:
-T "I8772LDKksadhGHGagf#" |
Re: dumping Ilive.totest that
Code:
--token "I8772LDKksadhGHGagf#" |
Re: dumping Ilive.toThanks @KSV
Is the token from the server.php response modified in the swf file? |
Re: dumping Ilive.toI answer myself. The token is obfuscated inside the swf.
I take the opportunity to ask you guys, how did you find the token? deobfuscating the swf? Or somehow you've found a method to reverse the process: Recieve SecureToken()--->DecodeTEA()--->SendSecureResponse() Thanks |
Re: dumping Ilive.toI mostly just signed up to say thanks! The token from server.php still worked a few days ago; now it doesn’t seem to be as easy anymore.
In another thread, oelk said that you can find the token either by manipulating the code to output the calculated token, by using a debugger, or by using a “decryption” function in one’s own code. Now I would like to be able to extract these tokens myself, but while I’m a software dev, I’m not versed in ActionScript/Flash programming. Are there any how-to guides, preferably for Linux, that describe the process? I’ve seen people in other threads ask the same question, but the search doesn’t seem to produce anything of the sort. |
Re: dumping Ilive.toI've been thinking on it and I guess the most simple, feasible way would be to dissamble the swf put a "print" and assemble again.
For example in ilive.to's swf file we can see in assembly code: Code:
43 getproperty info //nameIndex = 249 Making a wild guess as I'm dont know match about actionscript translates to something like: Code:
_connection.call("secureTokenResponse", null, TEA.decrypt(evt.info.secureToken, _a_-_---(-1820302793))); @Telofy I also work in linux and unfortunately there isn't much, you can try JPEXS Decompiler though. The best I've found it's Adobe swf investigator http://labs.adobe.com/technologies/swfinvestigator/ |
Re: dumping Ilive.toHmmhmm, JPEXS is what I used, and it gives me:
Code:
if(evt.info.secureToken != undefined) Code:
package There were several “severe” errors during the decompilation, so I doubt the result plus print command could be recompiled again. Disassembling it seems like a good idea. |
Re: dumping Ilive.toThe decompiled “_a_-_---.as” from JPEXS doesn't make much sense at least for me. I've been playing with the deobfuscated functions/classes from JPEXS in a flex compiler and the result is that:
(Following the flow of) Code:
if(evt.info.secureToken != undefined) Code:
public static function _a_--_--(param1:int) : String { Code:
private static function _a_-_--() : void { Code:
_a_-- = _loc3_.readInt(); Next thing I'll try it's dissamble-->assemble with https://github.com/CyberShadow/RABCDAsm. Ideas Welcome. |
Re: dumping Ilive.toWell even though, my idea is going down a different path than you folks, I somewhat have found a way to get a fresh copy of the token on-the-fly.
I was looking at svnpenn's Hulu.sh script which takes a Hulu video url into Firefox, memory dumps it, then searches said dump for parameters. I noticed you can do the exact same thing with ilive and the token is in the dump, but I currently am having issues with the regex to spit out the token to place in rtmpdump. It appears the token is always before the words "Connection succeeded" so I should just need a regex that says "give me the alphanumeric with some symbols string right before Connecton succeeded". I using gawk, sed, curl, wget, etc having my script already getting the tcURL, swfurl, & playpath. I know this isn't the greatest in the world way of doing it, but I know it's possible at least. |
Re: dumping Ilive.toThat method seems very promising. The hulu.sh script is written for Cygwin, but I borrowed a little from it.
Code:
$ MOZ_DISABLE_OOP_PLUGINS=1 firefox -no-remote -profile . <URL> |
Re: dumping Ilive.toUnfortunately it's not working for me.
Do you have any other conf in mms.cfg aside from: Code:
ProtectedMode=0 |
Re: dumping Ilive.toWell I am having issues myself, but it's very bizarre.
I am using the following script: http://goo.gl/XJv0UU Winstrings is simply the strings.exe from SysInternals, a Win version of strings, as strings -10 from above was taking forever in Cygwin. Also I did two grep lines because for some reason in hex, sometimes the token is before "Connection succeeded" while other times it seems to be after, instead. It works perfectly on my Win 7 64-bit desktop, tested at least 5 times. Yet if I try it on my XP Pro 32-bit, Laptop Win 8 64-bit, or my Vista 64-bit, they all fail. Something seems to be failing at the dump of Firefox because opening the said dumps in HxD definitely does not show the token. I am just confused how the exact same script and even using the exact same baby-cygwin on each PC would cause such behavior. EDIT: It appears that I simply wasn't providing enough sleep between dump and kill Firefox, which was causing it to sometimes get the token and sometimes not, but it still once in a while doesn't get the token. I hope to find a more consistent approach as this will cause serious issues with scheduled recordings. |
Re: dumping Ilive.toDMW on another forum has just posted this http://ge.tt/7vL8zot/v/0?c
|
Re: dumping Ilive.toQuote:
Thanks again for the link. I know I probably would have seen it anyway on the other forum, but my method was driving me insane, LoL. |
Re: dumping Ilive.toSo here goes another method:
Disassembly / Assembly Method: First modify you mms.cfg like this as we want to see the output of the trace() method. Code:
#Hardware video decoding Now we are going to disassemble the swf file insert a print and assembly again. I'm going to use https://github.com/CyberShadow/RABCDAsm. In this case we want to see the output of the function _a_-_---._a_--_--(-1820302793) The trace it's going to be inserted in the PlayerSetup class so we only have to open the swf file to trigger our trace. Now we disassemble: Code:
$ abcexport secure_player_ilive_z.swf Code:
findpropstrict QName(PackageNamespace(""), "trace") We want to trigger this trace as soon as the swf it's opened so we insert it in Player.class.asasm like this: Code:
class Code:
$ rabcasm secure_player_ilive_z-1/secure_player_ilive_z-1.main.asasm Code:
I8772LDKksadhGHGagf# |
Re: dumping Ilive.toWow, now we have three different methods! Awesome! (Yet the stream was down at the precise moment I needed it. :-P)
And to answer that question from much earlier, I didn’t touch any file “mms.cfg”; I don’t even seem to have one on my system. |
Re: dumping Ilive.toLol I'm a noob at coding/decoding this secure tokens. I'm willing to pay $5 to who ever can teach me personalty in teamviewer. PM ME.
|
Re: dumping Ilive.toHi all,
I was trying to download iguide.to links. Unfortunately looks like they Any one know how to get Iguide.to token? Example link = http://www.iguide.to/view/3/ Thanks |
Re: dumping Ilive.to@pwish
you need secureToken for that PM me |
Re: dumping Ilive.toSeems like they switched back to the AJAX solution. Kind thanks for that. The tcUrl is a bit unintuitive now, rtmp://50.7.69.186/edge, and the token is Uk78nino. They can probably change this easily.
|
Re: dumping Ilive.toQuote:
How I can find token , any software or guideline please? Thanks. |
Re: dumping Ilive.toQuote:
any software or guideline ? Thanks. |
Re: dumping Ilive.toThey haven’t changed it since my last post here. It’s still an AJAX request. Just open the network tab of your browser’s inspection or developer tools and look for a promising-looking file name. It seems to be server.php at the moment with the token abc109h3.
Also, careful, you double-posted. |
Re: dumping Ilive.toQuote:
network tab of your browser’s inspection or developer tools is it inbuilt in firefox browser?(I am using it ) any application can read or find token directly? |
Re: dumping Ilive.toWell, for now, you can just call up the the server.php. But they can change that any time.
Shift+Ctrl+I opens the Firefox developer tools thingy for me. ![]() |
Re: dumping Ilive.toQuote:
|
Re: dumping Ilive.toplease if any one can help Ilive is using new hard nut security system wich is string -a " " that changes every time in addetion to the ibfuscated token , so now any way is available to stream iLive like before ??!!!!!!!!!!!!!!!!
|
Re: dumping Ilive.toYep, fixed that this morning. It works again when you obtain a fresh value for the xs parameter before connecting. E.g., in Bash: xs=$(curl http://www.ilive.to/view/[Insert your channel] 2> /dev/null | grep -o '_we_[^"]*'). (It may be bound to the IP address, not sure.) Otherwise nothing seems to have changed.
|
Re: dumping Ilive.toQuote:
|
Re: dumping Ilive.toQuote:
which displays the home page. My former tools to access the token do not work. Anyone know how to access the new token? |
Re: dumping Ilive.toQuote:
Code:
Url = Regex.Match(N, "getJSON([A-Za-z0-9\/:.?=-_]+)").Groups(1).Value & "&_=" & (DateTime.UtcNow - New DateTime(1970, 1, 1, 0, 0, 0)).TotalSeconds Token gets the "token" of course. GETWInfo is a webclient function. (I use vb12) |
Re: dumping Ilive.toCan you post a working example. I don't understand what to use for N or how to execute your statements. Googleing vb12 and/or WGETInfo returns nothing.
|
Re: dumping Ilive.toQuote:
|
Re: dumping Ilive.toto much work and that is iguide, the streams are a little different than ilive.
try this and see if it works just paste a url to appropriate textbox and press the button. |
Re: dumping Ilive.to |
Re: dumping Ilive.toilive stream example:
Quote:
Quote:
xs=_we_aDVlb3ZhajFqZWVnbHVxfDEzOTg2ODA1NDN8MTkwLj IxMy4xNzYuMTIyfDUzNWUyYTc3ZDQ0MTB8NGMwNzZjN2U3YzRl ZTgzMTg2M2E0MWZiM2E4YWQyMzFhYWZhZjY2Yg.. but i will admit that ilive is improving on protecting their streams. |
Re: dumping Ilive.toSandy, I'd like to keep this dialog via pm else they will keep changing their tokens, however you have blocked pms to you. Can you please unblock or pm me an email or your source code. Your program worked the first time but not since then.
|
Re: dumping Ilive.toQuote:
|
Re: dumping Ilive.toSandy I really do not want to do this dialog publicly. If you add me to your buddy list and authorize PMs for buddys then we can go offline and I can explain more and you can deauthorize me if the result is not of value to you.
The servers are working fine because rtmpdump runs and vlc plays the stream but your program does not display the resulting url and token in the window so there is some other problem. They are in fact changing the token every 500 seconds so I need your source to both fix the problem and to create a command line version so I can run it dynamically and fetch the generated url so my program can fetch the stream and play it on my TV. |
All times are GMT -6. The time now is 01:42 PM. |