View Single Post
  #201  
Old 01-27-2013, 10:10 PM
AmazingMatze AmazingMatze is offline
Member
 
Join Date: Sep 2011
Posts: 52
AmazingMatze is on a distinguished road
Default

Re: chaturbate.com: SecureToken problems


Code:
rtmpdump
-v
-r "rtmpe://XXXX/live-edge"
-a "live-edge"
-f "WIN 11,5,502,146"
-W "http://XXXX/static/flash/CBV_2p632.swf"
-p "http://XXXX/XXXX"
-C S:XXXX		[USERNAME]
-C S:XXXX		[MODEL_NAME]
-C S:2.632		[SWF_VERSION]
-C S:XXXX		[PW_HASH]
-C S:XXXX		[OPTIONAL_HASH]
-y "playpath"
-T "m9z#$dO0qe34Rxe@sMYxx%"
-o "XXXX.flv"
I got bored and wrote (just like user savanna suggested) a little javascript that will retrieve the above parameters (XXXX) from the website itself. Just put it as a bookmark in Firefox.

Code:
javascript:var prm=document.getElementById('movie').childNodes[6].value;prm=prm.replace(/=/g,"&").split("&");alert('rtmpdump -v -r "rtmpe://'+prm[3]+'/live-edge" -a "live-edge" -f "WIN 11,5,502,146" -W "http://'+prm[23]+'/static/flash/CBV_2p632.swf" -p "http://'+prm[23]+'/'+prm[1]+'" -C S:'+prm[13]+' -C S:'+prm[1]+' -C S:2.632 -C S:'+prm[25]+' -C S:'+prm[27]+' -y "playpath" -T "m9z#$dO0qe34Rxe@sMYxx%" -o "'+prm[1]+'.flv"');
// I changed it a little bit. This one also retrieves the SwfUrl and the SwfVersion:

Code:
javascript:var prm=document.getElementById('movie').childNodes[6].value;prm=prm.replace(/=/g,"&").split("&");swfUrl=document.getElementsByTagName('object')[0].getAttribute('data');swfVers=swfUrl.replace("_",".").split(".");swfVers=swfVers[1];swfVers=swfVers.split("p");prompt('RTMPDumpCL','rtmpdump -v -r "rtmpe://'+prm[3]+'/live-edge" -a "live-edge" -f "WIN 11,5,502,146" -W "http://'+prm[23]+swfUrl+'" -p "http://'+prm[23]+'/'+prm[1]+'" -C S:'+prm[13]+' -C S:'+prm[1]+' -C S:'+swfVers[0]+'.'+swfVers[1]+' -C S:'+prm[25]+' -C S:'+prm[27]+' -y "playpath" -T "m9z#$dO0qe34Rxe@sMYxx%" -o "'+prm[1]+'.flv"');reload();

Last edited by AmazingMatze : 01-28-2013 at 06:39 PM.
Reply With Quote