View Single Post
  #145  
Old 07-10-2015, 09:19 AM
blurg blurg is offline
Member
 
Join Date: Jul 2014
Posts: 32
blurg is on a distinguished road
Default

Re: how to decrypt and decode png files to real file (.ass)


Quote:
Originally Posted by Paradox View Post
Hello !

How to get the *correct* constants format, please ?

In the swf file, the constants are an array of numbers, but how to convert them to the hex form ? I tried many converters, changed 0x to \x, but it doesn't work.

Thanks for your help !
Code:
import os,sys,urllib,time,binascii
# -*- coding: utf-8 -*-

testfile = urllib.URLopener()
testfile.retrieve("url mulutibu_v4_3.swf", "mulutibu_v4_3.swf")
time.sleep(5)
cmd1='.\\video\\ffdec -export binaryData \\com\\longtailvideo\\plugins\\mulutibu6\\binaryData\\ mulutibu_v4_3.swf'
os.system(cmd1)
time.sleep(10)
data=open('.\\com\\longtailvideo\\plugins\\mulutibu6\\binaryData\\31.bin','r').read()
data1=binascii.a2b_hex(data.replace('0x', '').strip())
final=open('constanteskeys.txt','w')
final.write(data1)
try this with python script and JPEXS Free Flash Decompiler

edit = replace url of mulutibu by the correct url
Reply With Quote