Thread: help in rtmpe
View Single Post
  #14  
Old 07-26-2012, 05:30 AM
svnpenn svnpenn is offline
Banned
 
Join Date: Apr 2011
Location: Dallas
Posts: 757
svnpenn is on a distinguished road
Default

Re: help in rtmpe


Quote:
Originally Posted by Josan420
it is token, use to protect stream
u can use this website to find it
http://showmycode.com
Using Cygwin, a couple of other options are available

1. Parse SWF file

Quote:
$ wget -q --referer http://zonytvcom.info/zeetvv.htm http://zonytvcom.info/you/player.swf

$ flasm -x player.swf
Flasm configuration file flasm.ini not found, using default values
player.swf successfully decompressed, 206239 bytes

$ tr "[:cntrl:]" "\n" < player.swf | grep -A1 secureToken | tail -1
#ed%h*ibuntu*0#w@1
2. Parse dump file

Quote:
$ ps -W | grep plugin-container | cut -c-9 | xargs timeout 1 dumper p

$ tr "[:cntrl:]" "\n" < p.core | grep -A1 -m1 secureTokenResponse | tail -1
#ed%h*ibuntu*0#w@1
Reply With Quote