Nov 20, 2009

Debug Exe Files - How to debug an exe file.

free web hosting
Open Discussion > MODERATED AREA > Tutorials

Debug Exe Files - How to debug an exe file.

Erdemir
Think that we have written a program, and some codes are wrong. We can go back to compiler and change the code, and compile again.
But I will show you how to correct our mistakes without using the compiler.

Let's start:
I have written a program in Delphi. Let's see my mistake.

I have created a form like this.
[attachment=1170:000.JPG]

After this I wrote the codes in the Compare Button click as below.
CODE
1.   procedure TForm1.ComparebuttonClick(Sender: TObject);
2.   var
3.     a,b:integer;
4.   begin
5.     a := StrToInt(EditA.Text);
6.     b := StrToInt(EditB.Text);
7.
8.      if a<b then  // Look at here carefully. We have made a mistake. We should have written a>b
9.       ShowMessage('A is greater than B')
10.     else
11.       ShowMessage('A is not greater than B');
12.   end;
As you can see, I wrote wrong at line 8.
Let's run the program.
[attachment=1171:first_screen.JPG]
Enter 13 in the first editbox
Enter 7 in the second editbox, and click Compare
13 is greater than 7, but the message saying A is not greater than B because of our mistake at line 8.
Now let's correct our mistake by Debugging. You need a debugger, All debuggers can do our work. I will use Olly Debugger here.
Open the Olly Debugger and open our exe by clicking File -> Open. And go to the related directory and open our project file, Project1.exe.
We opened our exe with Olly Debugger. Now you can see there are lots of ASM codes.
Right click on any ASM codes in the windows which has the tabs Address, Hex dump, Disassembly, Comments.
Select Search For -> All Referenced Text Strings , like in the picture below.
[attachment=1172:second.JPG]
A new window will come which's caption is Text strings referenced in Project:CODE.
In this window press Home key to go to the top. Right Click and select Search for Text, like in the picture below.
[attachment=1173:third.JPG]
A new messagebox will come which's caption is Enter text to search for.
Remember that in our exe when we press Compare the message is coming and saying A is not greater than B. So let's search the word greater than.
Write greater than and press OK like this picture below.
[attachment=1174:forth.JPG]
The text will be found, like this picture below.
[attachment=1175:fifth.JPG]
Double click the selected line. This will get you back to the ASM codes. As this picture below.
[attachment=1176:sixth.JPG]
In Delphi, C++, PHP,... we are using if statement, but in Assembly the if statement is different and there are lots of codes about if statements. For example:
if (a<=b ) can be written as JLE.
JLE means Jump if Less or Equal. JG :Jumg if greater. JNZ :Jump if not zero. .... etc.
As you can see in the picture above there is a JLE one line upside. Double click on the JLE line and there will come a new message box, like this picture below.
[attachment=1177:seventh.JPG]
In textbox replace JLE to JG . The last text is JG SHORT 0045384F
Press Assemble button. JLE will be replaced to JG in the Assembly codes section. Now you can close the message box.
Now right click on any ASM codes and select Copy to executable -> All Modifications, like this picture below.
[attachment=1178:nineth.JPG]
A message box is asking us "Copy selection to executable file?". Click Copy All.
A new window will come which is showing the difference we made. Looks like this picture below.
[attachment=1179:tenth.JPG]
Right click on the selected line and select Save File.
A Save As dialog box will appear. Save your file as new.exe
Now you can close Olly Debugger.
Congratulations. You have debugged your exe file. Now let's check it if it is working properly.
Run new.exe , And type 13 and 7 again. Press Compare.
[attachment=1180:eleventh.JPG]
The message box is saying A is greater than B which means 13 is greater than 7.
As you can see our program is working properly.

We have corrected our mistake in code without using compiler. We debugged.

By the way do not try to debug any copyrighted application. biggrin.gif

 

 

 


Comment/Reply (w/o sign-up)

hitmanblood
huh nice tutorial out there and as it is the first one of yours that is great. You showed some skills there. However you might want to add some assembler tutorials also.

But I wanted to add one more thing assembler code also must be compiled before it can be executed. So in a sens you are using compiler.

The other thing is this or very similar procedure is used when trying to crack programs in fact.

But nonetheless this is some very useful tutorial. Gold star from me wink.gif

Comment/Reply (w/o sign-up)

seba1killer
Very interesting, i didnt know that delphi creates real windows code(i thought that it compiles vb way).
Ollydbg is one of the best tools for debugging any kind of programs. You can download it from http://www.ollydbg.de/ .

Regards.

Comment/Reply (w/o sign-up)

Erdemir
QUOTE(hitmanblood @ Jun 15 2008, 04:40 AM) *
But I wanted to add one more thing assembler code also must be compiled before it can be executed. So in a sens you are using compiler.
Assembler codes must be compiled, yes it is true. But I am not writing here an assembly program from start. Here I am only changing some characters like JLE to JG, the debugger is replacing a few bytes in the exe in a hexadecimal format, so there is no need to compile this. Olly Debugger is making this easy by showing you as Assembly code. In fact in another debuggers we are not writing directly JG, we are writing its hexadecimal equivalent.

QUOTE(hitmanblood @ Jun 15 2008, 04:40 AM) *
The other thing is this or very similar procedure is used when trying to crack programs in fact.

I wanted to say that we mustn't debug any copyrighted applications here, so no cracking cool.gif
QUOTE(Erdemir @ Jun 14 2008, 04:55 PM) *
By the way do not try to debug any copyrighted application. biggrin.gif
By the way, thanks for the gold star.

QUOTE(seba1killer @ Jun 15 2008, 08:07 AM) *
Very interesting, i didnt know that delphi creates real windows code(i thought that it compiles vb way).
Ollydbg is one of the best tools for debugging any kind of programs. You can download it from http://www.ollydbg.de/ .
Of course Delphi can create exe applications and also dll,cpl,scr, ... etc.
By the way, thanks for the Ollydbg download source.

 

 

 


Comment/Reply (w/o sign-up)

Erdemir
QUOTE(hitmanblood @ Jun 15 2008, 04:40 AM) *
However you might want to add some assembler tutorials also.

Today, I wanted to add an assembler tutorial, but searched the forum and there is already an assembler tutorial at
http://www.trap17.com/forums/index.php?sho...9;assembly'
and
http://www.trap17.com/forums/index.php?sho...9;assembly'

. So due to Tutorial rules I didn't add another tutorial.

Comment/Reply (w/o sign-up)



Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

This textarea will convert to Rich-Text automatically (IE, Firefox, Chrome)

Similar Topics

Keywords : debug, exe, files, debug, exe, file,

  1. Rfi (remote File Inclusion) What Is It? How Do I Stop It?
    Another website security tutorial (0)
  2. Deny Or Grant Users Access To Files Of Choice (vista)
    Uses Bat Files To Deny Or Grant People Access To Files (3)
    Deny Or Grant Permission Requires Notepad Vista This Technique Can be Used On Earlier
    Versions Of Windows But Uses Different Syntax: To Deny Access Open Notepad and Type @echo off
    cls Icacls PATH OF FILE GOES HERE WITHOUT PARENTHESES /deny USERNAME OF PERSON YOU WANT TO DENY:(F)
    And To Grant Is The Same Process @echo off cls Icacls PATH OF FILE GOES HERE WITHOUT
    PARENTHESES /grant USERNAME OF PERSON YOU WANT TO DENY:(F) And There It Is. Simple Huh!....
  3. How To Create Pdf Files Using Free Tool
    Introduction to use a free tool to create PDF file (10)
    Now, that you don't need to have expensive software like Acrobat to create PDF. All you need is
    Microsoft Office and a software name doPDF. You can download the freeware from
    http://www.dopdf.com/download.php After downloading dopdf.exe, follow the instruction below 1.
    Double click to install it, as display at image 1.jpg, choose a language and click OK 2. You will
    see 2.jpg click next 3. Click I accept the agreement see 3.jpg, click next 4. Now you will see
    4.jpg, select the folder to install it and click next 5. When seeing 5.jpg, This is the folder group
    in Star....
  4. Clearing Your Ie Tif
    Clear your Temporary Internet Files on IE (0)
    -Welcome to: Clearing your Internet Explorer Temporary Internet Files Tutorial-!
    Attention!: As some of the members on here may know, it is possible to clear your Internet Explorer
    Temporary Files. I have searched this entire Tutorials subforum to find a topic already made, and I
    have found nothing. This tutorial I did NOT find this on Google, or any other search engine. I
    always find this out for myself. Lets start: Ok, first we open up Internet Explorer, then we
    click "Tools"...then we click on "Internet Options...". On the Main page "General" we l....
  5. How To Download Any Flv Files From Any Sites
    (7)
    Now you can download any flv files from any websites!! People often know how to download youtubes
    clip, but not from other sites. In this tutorial you will need a tool name Moyea FLV Downloader, it
    is free and you can download it at http://www.flvsoft.com/download_flv/ This is the best tool i
    have meet up with to download flv files in any site. Since it can detect flv files, and list it, you
    can download it as you want, so no more favourite clips goes away from your sight and now you have
    it on your own hard drive! 1. Run moyea flv downloader see 1.jpg 2. At the left....
  6. How To Extract The Audio From Youtube Videos
    get an mp3 file from youtube (6)
    How To Extract The Audio From YouTube Videos This lovely simple tutorial will tell you how
    to extract the audio from YouTube videos. Obviously , I am not in any way advocating that you take
    copyrighted music that is available illegally in video-form on YouTube and extract the audio from
    those videos rather than going down to HMV and buying the music. In this tutorial I will be using
    the following video: http://uk.youtube.com/watch?v=gUhhRc5eWNw Firstly, you download the video,
    which is simple. Just go to www.downloadyoutubevideos.com and paste the video....
  7. Make A Moderately-secure Password System Using Javascript
    using file redirection to hide the password. (11)
    JavaScript is very handy at making forms, allowing for much more customization and easier ways to
    send data. So making Login forms using JavaScript may seem to many to be a very feasable idea.
    However, JavaScript is very bad at protecting Passwords, as since the passwords are not encypted and
    the whole JavaScript code is in the page, a person could just view the Page Source and find out
    everything. Even if you use an external JavaScript, it would still be poor as the file name for the
    external JavaScript would still be revealed. But I have an answer! There is a relative....
  8. Download Files Off Esnips.com
    even now that the download button is gone! (0)
    hey everyone, i am sure that many of you may have heard of esnips , which is basically online file
    storage/sharing. you can now find almost any file imaginable on esnips, and in many ways it is
    better than rapidshare. previously, once you are signed in to esnips, you were able to download any
    esnips file via a button only viewable to members. back then, there was a method to download any
    file without even signing in. then, probably due to legal issues, users were able to choose whether
    or not people could download their files. the hack mentioned above, though, still....
  9. How To Hide Your Important Files And Folders
    In Ms. Windows, Without Using Programmes. (7)
    Most of people share their computers with others -family, mates, buddy or whoever- and that sharing
    threatens their secrets and private file to be revealed, letting some people to know things they
    shouldn't know.. My Securing Way: Operation - Camouflage Use an Icon
    Editor to generate a 1x1 Transparent Icon and Save it .. > 1 Open CMD.. Start >> Run or Press
    WindowsLogo+R.. Lets Say you wanna hide a Folder named " secure " and it's located in
    E:\folder\ so Write E: and Press Enter then Write Cd folder and Enter then Attrib +s +h....
  10. Install An Aef Forum Onto The Trap17
    From a zip file (11)
    Installing an AEF Forum on the Trap17 Server Preparation for Installing the AEF Forum
    The following items are required for the installation of the packaage onto your site: 1. - a copy
    of the AEF Forum zip package from http://anelectron.com/download.php 2. - a MySql Database 3. - a
    Database User 4. - a password for the Database User 5. - Privileges allowed for the Database User
    The details for ensuring that you have all of these items are as follows: 1. - a copy of the AEF
    Forum zip package from http://anelectron.com/download.php . Simply browse to t....
  11. How To Better Compress Files In Winrar
    (7)
    How to better compress files in winrar As you know Winrar is more popular and powerful than
    other compressor softwares. To better compress your files and folders follow below steps: 1- Right
    click on your file and select "Add to archive…" from context menu. A dialog box will appear. 2- In
    General tab and in "Compression Method" dropdown menu, select "Best". 3- Click on Advanced tab and
    then click on "Compression" botton. Advanced Compression Parameters dialog box will appear. 4- In
    Text Compression section select Force and in Prediction Order type 63 and in Memory....
  12. How To Make A Simple File Based Shoutbox Using Php And Html
    (8)
    A simple tut to make a simple shoutbox. Let me jump right in. First of all you need the standard
    equipment for PHP, an IDE like XAMPP and an editor like PHP EDITOR 2OO7. Were going to make a
    simple guestbook using three files, webpage.php, shout.php and shout.txt. Webpage.php can be
    changed to whatver you want, it will be the page on which the guestbok is shown, you could even use
    this code and add it to another php page n your site. Shout.php is the proccessing page and
    shout.txt is where the shouts are stored. Firstly we need to make the visual design of the box.....
  13. Flat-file Cms
    tutorial inspired by jlhaslip (4)
    Ok, for this tutorial i am only going to show you how to add updates to your site simply by storing
    the information into a text file, and then displaying it with predefined formatting... OK lets get
    down to business... Lets start out by making a PHP file and call it mycms.php put this code at
    the top of the page. What this will do is allow us to edit the selected update when it comes time
    and show and hide the add an update field and validate the form.. function ShowHide(id1,
    id2) { if (id1 != '') expMenu(id1); if (id2 != '') expMenu(i....
  14. Cpanel Analysis And Log Files
    Part 4 of My 7 Part Tutorial (0)
    This Tutorial will be divided into 7 different parts, and this is the first part, when i get the
    other parts together, i will post the links under here /biggrin.gif" style="vertical-align:middle"
    emoid=":D" border="0" alt="biggrin.gif" /> Enjoy. Part 1: E-mail Management Part 2: Useful Site
    Management Tools Part 3: Useful Site Management Tools2.1 Part 5: Advanced Tools Part 6:
    PreInstalled Scripts, Extras, and Cpanel Options Part 7: Fantastico Detailed Cpanel Tutorial
    Part 3: Analysis and Log Files In this tutorial I will, in detail explain all ....
  15. *nix File Permissions - An Overview
    (6)
    I was originally going to post this in a reply, but felt it would deviate from the topic.
    Here's a brief overview of the three numbers in a permission "code": -The first number is for
    the owner of the file. If you set a file at 600, the owner will have read and write access and
    everyone else is locked out. -The second number is for the users group (users are placed into groups
    to get special rights sometimes). Generally you will not give write access to a user's group.
    -The third number is for the rest of the world, including web users. Setting any value that wi....
  16. Starting Or Stopping Apache And Mysql Server Via Batch File
    (0)
    Hi guys, this is a litte tutorial about how we start and stop the Apache and MySQL in Windows NT
    (2000, XP, 2003) via a batch file script. As we know in Windows NT based system Apache and MySQL
    installed as Windows Services. So we can stop and start it using NET command. For more information
    about DOS command, type HELP at command prompt. I assuming that your MySQL service name is "mysql"
    and your Apache (Apache 2.0.x) service name is "apache2". If you want to chek it click Start > Run >
    services.msc > OK. Windows IS NOT Case Sensitive. Let's get started!. 1. Open....
  17. How To Fix Problems With Shareaza
    ONLY for people to download LEGAL files with. (1)
    Can't run shareaza and surf the internet at the same time? There could be two
    problems: Your uploads are killing your downloads and/or you are using Windows 95/98/ME. If you
    are uploading constantly and havent limited the bandwidth then it is likely that you are killing
    your download speed which is affecting your ability to surf the web and do other tasks. If you
    are uploading lots and download speeds are suffering: Start Shareaza. Click on the Tools menu,
    then click Shareaza Settings. In the box that just popped up, there is a list of men....
  18. How To Chmod Files
    (16)
    This is a short but useful tutorial on how to chmod files I offen find wap/web masters
    uploading scripts into their severs,creating databases,confirming scripts to work with the databases
    etc. but little you know that some people dont know how to chmod files.know how can you become a
    good wap/web master without knowing the important basics? Never the less this tutorial will guide
    and teach you how to chmod files and the importance it has. How many times have you uploaded a
    script/file and did everything right but you still getting errors,or you not being able to ....
  19. How To Fix Codecs And Movie File Problems
    ...a short but very useful tutorial (0)
    How to Fix Codecs and Movie File Problems For all of you who are having trouble with
    codecs, either not being able to play a movie you've downloaded or not having any
    sound/picture, this guide should help you. The Easy Quick-Fix Method For the lazy people
    amoung you who want the simplest possible solution, may I present Video LAN Player (VLC) ,
    it's a good video/audio player and comes with all the codecs you will need and has many
    features making it my player of choice. The (New) Other Method The Combined Community Codec
    Pack (C....
  20. How To Create Self-unzipping Files
    for beginners (18)
    This tutorial is based on winzip 10.0 (but it should work on other versions). Create or open the
    file you would like unzipped. Now, on the Actions menu, click make .exe file. A popup box should
    popup. Click ok. Now in the popup box that appears, type in the default folder that the program
    will unzip to. Press ok. Now another popup will tell you if you want to test the file, click yes.
    Now click ok again in the box that appears. Now press unzip. If it says - files unzipped
    succsessfully! Click ok and pat your self on the back! You have created the self-zipping ....
  21. The Many Ways To Bypas File Hosting Annoyances
    (5)
    I've done a lot of research on this subject because it is much more common for people to upload
    files using file hosting services such as megaupload and rapidshare. They continue to try to push on
    their premium accounts on to the daily users who don't really want to put up any money for
    downloading which should be free.So i've compiled a few techniques I've used to bypass the
    limits of free downloading accounts and leave you feeling just as content with yourself as if you
    had a premium account. Download Managers: Now with the prominent use of file hosts ....
  22. Unencrypted But Invisible File Storage
    It can have a password, it can be unlocked. (0)
    This method works, but unfortunately compression software can open the file without the password.
    Also, you can try creating a new user account. When it asks "Make files and folders private?" click
    Yes, make private. Name the new user account anything using NO spaces/uppercase letters, but not
    something like "privatefiles" or something like that. Try accessing the files in C:\Documents and
    Settings\ >. You cannot open the folder. Now to ensure that user is always hidden in My Computer,
    click Start > Run. 1. Type in command.com . This should bring up a black window t....
  23. Templating System Using Php Includes
    Building a Dynamic site using Includes and flat-files. (13)
    Php based Templating System http://jlhaslip.trap17.com/template/index.php The Source Code
    for the scripts are included (literally) on the different pages on the Demo, including the Contact /
    Email script. The only page not there yet is the Message Script. Maybe tonight I will upload that.
    This one uses a little bit of query-string checking to confirm that the contents of the page are
    actually available (file_exists())and an allowed page content before serving it up. The
    'allowed page content' is done by checking against a flat-file containing an array....
  24. How To: Make A Simple Php Site
    Making one file show up on all pages using php (21)
    I have looked all over the site and could not find anything that was like this simple, or just like
    this at all.. For some people i know that you are using a basic HTML site...and having a big menu
    if you want to add somthing you have to go into every one of the pages and add or remove or edit
    what you want to do, but with somthing verry simple all you would have to do is edit one file, and
    all of the pages that have the PHP script on them would suddenly change to what that one file is.
    So to start off if you are planning on using this little tirck, the page that you a....
  25. Building An Unordered List Of Anchors
    From a list of files in a folder (4)
    Building an Unordered List of Anchors from a Folder of files This script reads files from the
    named folder and then builds a list of links from the filenames using the contents of the first
    tag as the link description and the file-name as the anchor href . The file should be a web
    readable file such as html or php. This script may come in handy for creating a list of clickable
    links for use in sidebars and on 'sitemap' pages. Simply build a series of html files and
    store them all in a single folder, ensuring that the description inside the first h3....
  26. Transfer File Of Any Size Using Winsock Control
    Winsock Help (5)
    This tutorial shows how to transfer file of any size using winsock control. - Open VB; - Select
    standard exe; - Press Ctrl + t to show the add component window; - Select winsock control and
    microsoft common dialog; - Add one winsock control in the project; - Name it winsock1; - If you want
    to add chat then add another winsock and name it winsock2; - Insert another winsock object if you
    want to add chat also; - Add a microsoft common dialog box; - Name it cd; - We will use this
    winsock1 object to transfer the file and winsock2 for chat; ------------- The basic idea : ....
  27. Delete Files And Directories Using Php
    following up from creating and writing (11)
    How To Delete Files and Directories follow up from creating them Hello all and
    welcome to my second tutorial involving file management. In my previous tutorial , I explained how
    to create, write and read files. In this tutorial I'll explain how to remove the files and
    directories you took so long to create. I did not explain last time how to create directories as I
    did not know, now I do, you can use the mkdir() function. Now with this tutorial.... Removing
    Files Removing files can easily be done with the unlink() function: CODE unlink("....
  28. How To Read And Write Files Using Php
    php :: reading and writing files (21)
    How To Read And Write And Files a simple trick using php For this script all you need is a
    php enabled server, a text document and a basic understanding of php itself: Beginning Create a
    text file called name.txt in any directory. Change the file permissions to 777 Create a empty
    php file in the same directory. You are now ready to begin reading and writing your files. If you
    just want to read the file scroll straight down to Reading the File else read through the whole
    tut /smile.gif' border='0' style='vertical-align:middle' alt='smile.gif' /> ....
  29. Css And Javascript Combined For Dynamic Layout
    use of different CSS files at same site (9)
    This tutorial is meant for people that are dealing with problems while coding their site at 100% of
    width. Important notice: Some people has JavaScript disabled, so they will not be able to load CSS
    file (take this in account when creating your website). How this script works. In the HEAD of your
    HTML document will apply this command, so variable.js file will be load at start: CODE
    In browser JavaScript file variable.js is loaded. This Javascript file consist of this parameters,
    copy this code and name it variable.js CODE // JavaScript Document if (sc....
  30. How To: Change Your Website's Index File
    a simple trick using .htaccess (24)
    How To: Change Your Website's Index File a simple trick using the .htaccess file A simple
    tutorial which only involves editing one little file. Useful for those of us who have mime-typed
    extensions or who are creating lots of test design files and want an easy way to make the design
    they like best their default file. Create a file called .htaccess in the /public_html/ folder if
    you don't have it. I think one should be there already when you get your site so if it isn't
    you should create it anyway! In the file write the following: CODE Direct....

    1. Looking for debug, exe, files, debug, exe, file,
Similar
Rfi (remote File Inclusion) What Is It? How Do I Stop It? - Another website security tutorial
Deny Or Grant Users Access To Files Of Choice (vista) - Uses Bat Files To Deny Or Grant People Access To Files
How To Create Pdf Files Using Free Tool - Introduction to use a free tool to create PDF file
Clearing Your Ie Tif - Clear your Temporary Internet Files on IE
How To Download Any Flv Files From Any Sites
How To Extract The Audio From Youtube Videos - get an mp3 file from youtube
Make A Moderately-secure Password System Using Javascript - using file redirection to hide the password.
Download Files Off Esnips.com - even now that the download button is gone!
How To Hide Your Important Files And Folders - In Ms. Windows, Without Using Programmes.
Install An Aef Forum Onto The Trap17 - From a zip file
How To Better Compress Files In Winrar
How To Make A Simple File Based Shoutbox Using Php And Html
Flat-file Cms - tutorial inspired by jlhaslip
Cpanel Analysis And Log Files - Part 4 of My 7 Part Tutorial
*nix File Permissions - An Overview
Starting Or Stopping Apache And Mysql Server Via Batch File
How To Fix Problems With Shareaza - ONLY for people to download LEGAL files with.
How To Chmod Files
How To Fix Codecs And Movie File Problems - ...a short but very useful tutorial
How To Create Self-unzipping Files - for beginners
The Many Ways To Bypas File Hosting Annoyances
Unencrypted But Invisible File Storage - It can have a password, it can be unlocked.
Templating System Using Php Includes - Building a Dynamic site using Includes and flat-files.
How To: Make A Simple Php Site - Making one file show up on all pages using php
Building An Unordered List Of Anchors - From a list of files in a folder
Transfer File Of Any Size Using Winsock Control - Winsock Help
Delete Files And Directories Using Php - following up from creating and writing
How To Read And Write Files Using Php - php :: reading and writing files
Css And Javascript Combined For Dynamic Layout - use of different CSS files at same site
How To: Change Your Website's Index File - a simple trick using .htaccess

Searching Video's for debug, exe, files, debug, exe, file,
See Also,
advertisement


Debug Exe Files - How to debug an exe file.

Affordable Web Hosting, Low cost Web Hosting - ComputingHost.com