 |
VB Decompiler Hosted by TheAutomaters.com
|
Author |
Message |
MrUnleaded Site Admin
Joined: 21 Sep 2002 Posts: 385 Location: California
|
Posted: Sat Nov 30, 2002 5:49 am
Post subject: CommonApp 2.0 [Exe Only]
|
|
Here is the second Common Application (v2.0) for testing purposes.
This was made by moogman. _________________ -MrU
|
|
Back to top |
|
 |
|
vbgamer45 Regular user
Joined: 07 Jul 2004 Posts: 93 Location: 127.0.0.1
|
Posted: Fri Aug 06, 2004 4:19 pm
Post subject:
|
|
My output of CommonApp2 so far.
this_is_the_project_name.vbp
[code=text:3oj5q8jo]- Type=Exe
- Form=frmMain.frm
- Module=modMain; modMain.bas
- Startup="Sub Main"
- Description="this is the project description"
- HelpFile="help_file_name.hlp"
- Name="this_is_the_project_name"
- Title="this_is_the_project_title"
- ExeName32="CommonApp2"
- VersionCompanyName="Moogster inc
"
|
frmMain.frm
[vb:3oj5q8jo][/vb:3oj5q8jo]
Things I need to work on getting the external componet table, handling of events. Then comes to the really tough stuff... understanding pcode.
Thankfully there is this message board with the the opcodes for it heh.
Well I have all the imports proccessed from the import section of the exe and I am making a list of the ordinal, entrypoints,functionname,vb function name right now. Maybe I could link them somehow..
Last edited by vbgamer45 on Sat Sep 11, 2004 3:17 pm; edited 1 time in total
|
|
Back to top |
|
 |
|
_aLfa_ Site Admin
Joined: 21 Sep 2002 Posts: 233 Location: Aveiro, Portugal
|
Posted: Fri Aug 06, 2004 5:26 pm
Post subject:
|
|
Very nice vbgamer.
Keep up the good work _________________ One thing only I know, and that is that I know nothing. (Socrates)
|
|
Back to top |
|
 |
|
sarge Moderator
Joined: 24 Sep 2002 Posts: 194
|
Posted: Fri Aug 06, 2004 7:26 pm
Post subject:
|
|
Not bad at all.
Don't forget that one of your procedures in the code section must be the "Sub Main"..you should be able to identify it with very little additional effort.
Hint: since you already know the hard part (where the procedures are); all you have to do is match one of them with the SubMain address
Very definitely keep up the good work, and don't let the PCode stuff worry you, it's not hard, just &%&$^% tedious.
Sarge
|
|
Back to top |
|
 |
|
MrUnleaded Site Admin
Joined: 21 Sep 2002 Posts: 385 Location: California
|
Posted: Sat Aug 07, 2004 3:40 am
Post subject:
|
|
[="sarge":2jsvaepx]Not bad at all.
Don't forget that one of your procedures in the code section must be the "Sub Main"..you should be able to identify it with very little additional effort.
Hint: since you already know the hard part (where the procedures are); all you have to do is match one of them with the SubMain address
Very definitely keep up the good work, and don't let the PCode stuff worry you, it's not hard, just &%&$^% tedious.
Sarge[/:2jsvaepx]
Yes very tedious thats why we kinda developed an instruction set so to speak of how to read and parse the pcode.....no one has really worked on it though.....but when i get some tiem i will probably make the online pcode database into a web service instead of what it is now(just a dynamic textfile). _________________ -MrU
|
|
Back to top |
|
 |
|
sarge Moderator
Joined: 24 Sep 2002 Posts: 194
|
Posted: Sat Aug 07, 2004 11:57 am
Post subject:
|
|
Hey, when I click on the link up top (commonapp2.zip), all that happens is that I go to an html page, no zip file, no download, etc...
Sarge
|
|
Back to top |
|
 |
|
_aLfa_ Site Admin
Joined: 21 Sep 2002 Posts: 233 Location: Aveiro, Portugal
|
Posted: Sat Aug 07, 2004 12:55 pm
Post subject:
|
|
Fixed. _________________ One thing only I know, and that is that I know nothing. (Socrates)
|
|
Back to top |
|
 |
|
MrUnleaded Site Admin
Joined: 21 Sep 2002 Posts: 385 Location: California
|
Posted: Sat Aug 07, 2004 5:00 pm
Post subject:
|
|
[="vbgamer45":e2z48rv4]My output of CommonApp2 so far.
[/:e2z48rv4]
I just wanted to say that i modified your output that you posted, only the "Huge long tag" because it made the whole forum too wide.
Anyways Good Job _________________ -MrU
|
|
Back to top |
|
 |
|
sarge Moderator
Joined: 24 Sep 2002 Posts: 194
|
Posted: Sat Aug 07, 2004 8:39 pm
Post subject:
|
|
Got it, thanks....
Sarge
|
|
Back to top |
|
 |
|
vbgamer45 Regular user
Joined: 07 Jul 2004 Posts: 93 Location: 127.0.0.1
|
Posted: Mon Aug 16, 2004 9:01 pm
Post subject:
|
|
The begining of my quest for P-code
[code=text:k331d73j] |
...I still don't know how to tell the type of event it is. COM just isn't working for me. Mainly the Form object is always off.
Added SubMain detection.
Last edited by vbgamer45 on Sat Sep 11, 2004 3:16 pm; edited 2 times in total
|