Quote:
Originally Posted by Josan420
|
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
|