PDA

View Full Version : Neopets Flash Encryption Decrypter



Joshsadf
02-26-2012, 09:07 PM
Interested in making a Neopets Score Sender? And want to have it have the latest encryption to make it safer?

Then use this:

Note: you can change 'np8_include_v20' to one of the other files if needed. Not sure if they have started using different encryption's yet.


[Only registered and activated users can see links]

Then just use your GetBetween for the iVID and your GetBetweenAll for the strings.

j03
02-26-2012, 09:10 PM
This is useful, but takes an awful long time to process. Can you make it any quicker? Nice job on this regardless.

Joshsadf
02-26-2012, 09:13 PM
Could be the server being all slow and what not. But it's faster than downloading the file and using Flare for me.

Zachafer
03-11-2012, 12:44 PM
[Only registered and activated users can see links]

I get a bunch of PHP errors :o

Joshsadf
03-24-2012, 11:46 PM
[Only registered and activated users can see links]

I get a bunch of PHP errors :o

Hmmm, I do too. Looking into it now.

Zachafer
03-25-2012, 01:40 AM
Hmmm, I do too. Looking into it now.


[Only registered and activated users can see links]

I tried to get an API key for this same reason. They never responded :(

And don't tell me that every time someone goes to your site, the script downloads a fresh copy of the gaming swf

Joshsadf
03-25-2012, 01:46 AM
I tried to get an API key for this same reason. They never responded :(

And don't tell me that every time someone goes to your site, the script downloads a fresh copy of the gaming swf

They respond for me. Used to talk to them quite a bit. And the old script used to do that. The new one doesn't. Unless its a file that hasn't been accessed before.

Miguel
03-25-2012, 06:57 PM
Why not just check file creation date, then if its newer than the last encryption store it, otherwise keep it, as in, have it stored somewhere.

Or better, write your own script to extract AS files

Zachafer
03-25-2012, 11:21 PM
Why not just check file creation date, then if its newer than the last encryption store it, otherwise keep it, as in, have it stored somewhere.

Or better, write your own script to extract AS files

I'm trying to get flare set up on my linux server...

Miguel
03-25-2012, 11:49 PM
I'm trying to get flare set up on my linux server...

If you've seen the SWF specification, it seems very straight-forward to reverse. I might just for fun

Zachafer
03-26-2012, 12:38 AM
If you've seen the SWF specification, it seems very straight-forward to reverse. I might just for fun

You should help me figure out Linux command line

Miguel
03-26-2012, 12:40 AM
You should help me figure out Linux command line

As in? 7ch

Zachafer
03-26-2012, 12:47 AM
As in? 7ch


shell_exec("./flare np8_include_v20.swf");

Using php & flare on my LINUX server

Miguel
03-26-2012, 12:56 AM
$output = `./flare np_8_include_v20.swf`;
//or $output = shell_exec("./flare np_8_include_v20.swf");
echo $output;


However, you'll want cron to check if the encryption is new before even running anything. Though I assume you're doing that anyways

Zachafer
03-26-2012, 01:03 AM
That's not the part I'm having trouble with. I think I got to give more than ./flare (ie `/public_html/flash/flare zachafer.com/public_html/flash/np8_include_v20.swf`)

We'll talk on MSN this week

Miguel
03-26-2012, 01:08 AM
If the encryption file isn't in the same location as the flare file you need to set the path absolutely

Zachafer
03-29-2012, 01:49 PM
Josh any updates on this?