Hi guys , I've been trying to stream from a site that uses this format :

url.com/helper?$SID&vid=105

For play videos they do use flowplayer.commercial-3.2.7-0.swf , stored at a url like this :

url.com/videos/flowplayer.commercial-3.2.7-0.swf

As far as I know flowplayer works this way :

flowplayer.commercial-3.2.7-0.swf?config={'clip':{'url':'video.flv'}}">

Now that I have that information I've tried to do things like this :

url.com/videos/flowplayer.commercial-3.2.7-0.swf?config={'clip':{'url':'example.flv'}}">

And it seems to load the config well but it does not found the video , maybe because it is not in the same directory than flowplayer.

If I load a sample video in my browser I can get this link (thanks to IDM) :

http://url.com/helper?linklokauth=HASH/105.flv


For example something like this :


http://url.com/helper?linklokauth=djHDsWxqczc2LzEwNS5mbHYsMTM4MzY3NzgzMyw5OC4yNTQuOS4y...E5Yzg3/105.flv

So , all Information I have is that they do use the string &vid= to locate the video and then they do use linklokauth to generate a hash for each video(with cookies)

For example , when I do load the video I'am able to download this example "105.flv" with IDM without any problem(even stream it in the browser with VLC) , but after a few minutes I get this msg "Sorry but this Linklok link has expired. " . And I need to go back to the site to reload the site to get the new hash.

I'm also able to stream it with player by putting url manually :

http://url.com/video/flowplayer.commercial-3.2.7-0.swf?config={'clip':

{'url':'http://url.com/helper.php?

linklokauth=djHDsWxqczc2LzEwNS5mbHYsMTM4MzY3ODYyNS w5OC4yNTQuOS4yNDQsMCwwLExMXzAsLDMzMmJkOWQ0ZThiNjIw OWY

2NDFlZjIzNGMwYzdlMjAz/105.flv'}}">



Finally my question is , would be posible to get the real url? Or that's only possible with local sniffer?

With real url I mean something like this url.com/videos/somethingIdontknow/105.flv

That's all , thanks for reading.