Question for Windows Programmers - VB/C++ etc

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • goBigtime
    Confirmed User
    • Nov 2002
    • 7761

    #1

    Question for Windows Programmers - VB/C++ etc

    I want to get some data out of an application... I could do it by hand but it would take forever.

    Is there a way to get information on an .exe file to find out what it was written in?

    or on .dat files to find out what format they are in?
  • dotwind
    Confirmed User
    • Dec 2003
    • 285

    #2
    For getting data out of exe files you can disassemble it.. and then follow the assembly code needless to say it's a pain to ready assembly code.


    as for the .dat files it can be in any format normaly you can't guess what's the formating and specially if it's just a dump of bytes. finding a patern in the file is the only way. good luck with that
    Custom large/complex systems programing.<br>ASP.Net, C#, XML, MS SQL, WebServices(SOAP).<br>ICQ: 235719545

    Comment

    • ThePornPusher
      Confirmed User
      • Oct 2003
      • 1823

      #3
      Is the data stored in the program itself, or does the program load the files from a data file?

      Comment

      • goBigtime
        Confirmed User
        • Nov 2002
        • 7761

        #4
        Originally posted by ThePornPusher
        Is the data stored in the program itself, or does the program load the files from a data file?

        The data is loaded from file...

        but fwiw, I think it may load it all into memory.

        Comment

        • goBigtime
          Confirmed User
          • Nov 2002
          • 7761

          #5
          So is there some way I could take a 'snapshot' of the memory space an application is using and save it to a file?

          I guess it wouldn't be plain text in memory though... or would it?

          Hum.

          Comment

          • ytcracker
            stc is the greatest
            • Dec 2002
            • 12403

            #6
            Originally posted by goBigtime
            So is there some way I could take a 'snapshot' of the memory space an application is using and save it to a file?

            I guess it wouldn't be plain text in memory though... or would it?

            Hum.
            you can use softice or another debugger to view the application memory space. in some cases, things are in plain text.

            you might just want to run a hex editor instead of a disassembler if you're just scanning for a certain string within the file.
            www.ytcracker.com | www.digitalgangster.com
            i love you

            Comment

            Working...