Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 381359
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T15:04:40+00:00 2026-05-12T15:04:40+00:00

Since AIM 7 beta 2, and now onto AIM 7 beta 6, and GM

  • 0

Since AIM 7 beta 2, and now onto AIM 7 beta 6, and GM – AIM has started to use a new .aba file format for keeping files in. The files used to be located in a folder that we could access in program files, however due to “performance increasements”, AOL has decided to put them in this .aba file instead. The file is not extractable using winRAR, or any other universal extractor I’ve tried.

Is there a way to extract it? Someone told me he was pretty sure the .aba file was using ZLIB. But nobody can confirm that. Someone on another site was going to try to use AIM itself to extract the files, and read them – but never did.

Hopefully the smart people here can figure out how to extract them. Specifically, I’d like to have the bl.dtd file located in it. If you open the file in notepad, you can see it has mostly gibberish, but also lists out the files in it – which includes that file.

There is not a need to compress it back into the aba file, once they’re extracted – but if it’s possible – it wouldn’t hurt to do.

You can download the .aba file here: http://www.filedropper.com/en-us

Thanks so much!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T15:04:41+00:00Added an answer on May 12, 2026 at 3:04 pm

    This “EXTREMELY QUICK AND DIRTY (1) “ PHP code extracts JPGs, PNGs, GIFs, and gz-compressed text files from that file by finding some magic strings… The text is decoded and the images displayed…

    (1) Quick-and-dirty is a term used in
    reference to anything that is an easy
    way to implement a workaround or
    “kludge.” Its usage is popular among
    programmers, who use it to describe a
    crude solution or programming
    implementation that is imperfect,
    inelegant, or otherwise inadequate,
    but which solves or masks the problem
    at hand, and is generally faster and
    easier to put in place than a proper
    solution. (Wikipedia)

    <?php
        $PNG_SIG = "\x89PNG\x0D\x0A\x1A\x0A";
        $PNG_EOF = "IEND\xAE\x42\x60\x82";
        $GIF_SIG = "GIF89a";
    
        $aba = file_get_contents('en-us.aba');
        $pngs = explode($PNG_SIG, $aba);
        foreach ($pngs as $i=>$png) {
          if ($i>0) {
            $extra = explode($PNG_EOF, $png);
            $img = base64_encode($PNG_SIG.$extra[0].$PNG_EOF);
            echo '<img src="data:image/png;base64,'."\n".$img.'" />';
            echo "\n";
            if ($extra[1]!='') {
              if (substr($extra[1], 0, 6)==$GIF_SIG) {
                $gifs = $extra[1];
                $gifs = explode($GIF_SIG, $gifs);
                foreach ($gifs as $j=>$gif) {
                  if ($j>0) {
                    $img = base64_encode($GIF_SIG.$gif);
                    echo '<img src="data:image/gif;base64,'."\n".$img.'" />';
                    echo "\n";
                  }  
                }
              }
              else {
                $gz = @gzuncompress($extra[1]);
                if ($gz!==false) {
                  echo "<pre>\n";
                  echo htmlspecialchars($gz);
                  echo "</pre>\n";
                }  
                else {
                  $jpg = base64_encode($extra[1]);
                  echo '<img src="data:image/jpeg;base64,'."\n".$jpg.'" />';
                  echo "\n";
                }
              }  
            }
          }  
        }
    ?>
    

    The results:

    alt text http://img132.imageshack.us/img132/280/83168934.png

    alt text http://img62.imageshack.us/img62/6541/32497869.png

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Since I started working with JS, I've thought the only way to invoke a
Since I started studying object-oriented programming, I frequently read articles/blogs saying functions are better,
Since the keyboard is the interface we use to the computer, I've always thought
I have used MS Money for several years now and due to my coding
i am here with another problem in my code since i am new to
how expensive is 'new'? I mean, should I aim at reusing the same object
My aim is that when the user clicks the row which has a particular
does anyone know of a good C++ template engine? Since, my aim is to
Introduction The Model-View-Controller approach has been in my head since before the holidays and
Since I moved a PHP app to a new server (PHP/5.3.8 running as Apache

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.