Visual basic decompiler...

Discussion in 'Programming General' started by Blupig, Nov 8, 2007.

Visual basic decompiler...
  1. Unread #1 - Nov 8, 2007 at 8:54 AM
  2. Blupig
    Joined:
    Nov 23, 2006
    Posts:
    7,145
    Referrals:
    16
    Sythe Gold:
    1,609
    Discord Unique ID:
    178533992981594112
    Valentine's Singing Competition Winner Member of the Month Winner MushyMuncher Gohan has AIDS Extreme Homosex World War 3 I'm LAAAAAAAME
    Off Topic Participant

    Blupig BEEF TOILET
    $5 USD Donor

    Visual basic decompiler...

    Well I've got one, but I really need something that brings native code to VB6...I don't use this program for plagiarism, I use it for learning purposes. So, if anybody knows anything that brings native code to VB6, please do tell.
     
  3. Unread #2 - Nov 8, 2007 at 11:09 AM
  4. Covey
    Joined:
    Sep 9, 2005
    Posts:
    4,510
    Referrals:
    9
    Sythe Gold:
    9
    Discord Unique ID:
    807246764155338833
    Discord Username:
    Covey#1816

    Covey Creator of EliteSwitch
    Retired Sectional Moderator Visual Basic Programmers

    Visual basic decompiler...

    Can't be done...
    All a decompiler is good for, is basically seeing what controls, fonts they use. and perhaps occasionally ripping the layout.
     
  5. Unread #3 - Nov 9, 2007 at 12:03 PM
  6. Govind
    Joined:
    Apr 22, 2005
    Posts:
    7,825
    Referrals:
    13
    Sythe Gold:
    23
    Prove it! Trole Tier 1 Prizebox Tortoise Penis Le Monkey UWotM8? Wait, do you not have an Archer rank? Potamus

    Govind The One Musketeer
    Mudkips Highly Respected Retired Administrator

    Visual basic decompiler...

    Learn ASM and use a Win32 disassembler.
     
  7. Unread #4 - Nov 10, 2007 at 1:23 AM
  8. Cornflake
    Joined:
    Nov 8, 2007
    Posts:
    141
    Referrals:
    0
    Sythe Gold:
    0

    Cornflake Active Member

    Visual basic decompiler...

    yeah, this cant be done dude.
     
  9. Unread #5 - Nov 15, 2007 at 5:03 PM
  10. pwnintheface
    Joined:
    Jul 31, 2007
    Posts:
    70
    Referrals:
    0
    Sythe Gold:
    0

    pwnintheface Member
    Banned

    Visual basic decompiler...

    wait, u want the native code? Just search on google for vb decompiler lite. Should come up.
     
  11. Unread #6 - Nov 15, 2007 at 5:06 PM
  12. darthvador91
    Joined:
    Sep 15, 2007
    Posts:
    536
    Referrals:
    0
    Sythe Gold:
    0

    darthvador91 Forum Addict
    Banned

    Visual basic decompiler...

    what is asm ? im interested in this also
     
  13. Unread #7 - Nov 15, 2007 at 7:27 PM
  14. Jazz00006
    Joined:
    Aug 26, 2005
    Posts:
    807
    Referrals:
    0
    Sythe Gold:
    0

    Jazz00006 Apprentice
    Visual Basic Programmers

    Visual basic decompiler...

    ASM = Assembly

    Nothing like BASIC, let alone Visual Basic.

    If you have only just started programing, you would be best learning something else.

    And no pwnintheface he wants one that converts native code to VB6 code. It says it in the first post.


    Some example ASM code for darthvador91

    Code:
    .386p
    .model flat, stdcall
    option casemap:none
    
    .data
    srofile            db      "\sro_client2.exe 0000000 /18 0 0", 0
    dllfile            db      "wuj.dll", 0
    szLoadLibraryA      db     "LoadLibraryA", 0
    szkernel32          db     "kernel32.dll", 0
    pinfo               PROCESS_INFORMATION <>
    sinfo               STARTUPINFO   <>
    
    
    .data?
    hdir             db 512 dup (?)
    LoadLib         dd ?
    hhThread         dd ?
    hhHandle         dd ?
    pMem             dd ?
    
    .code
    WinMain proc hInst:HINSTANCE,hPrevInst:HINSTANCE,CmdLine:LPSTR,CmdShow:DWORD
    
    invoke GetCurrentDirectory,sizeof hdir ,addr hdir
    invoke lstrcat,addr hdir,offset srofile
    
    invoke    CreateProcessA,NULL,ADDR hdir,NULL,NULL,TRUE,CREATE_SUSPENDED,NULL,NULL,ADDR sinfo, ADDR pinfo
    invoke    OpenProcess, PROCESS_ALL_ACCESS, 0, pinfo.dwProcessId
    mov    hhHandle, eax
    invoke    GetModuleHandleA, ADDR szkernel32
    invoke    GetProcAddress, eax, ADDR szLoadLibraryA
    mov    LoadLib, eax
    invoke    VirtualAllocEx, pinfo.hProcess, 0, sizeof dllfile, MEM_COMMIT, PAGE_EXECUTE_READWRITE
    mov    pMem, eax
    invoke    WriteProcessMemory, pinfo.hProcess, pMem, ADDR dllfile, sizeof dllfile, 0
    invoke    CreateRemoteThread, pinfo.hProcess, 0, 0, LoadLib, pMem, 0, 0
    mov    hhThread, eax
    invoke    WaitForSingleObject, hhThread, INFINITE
    invoke    VirtualFreeEx, pinfo.hProcess, pMem, MAX_PATH, MEM_DECOMMIT
    
    invoke ResumeThread, pinfo.hThread
    invoke    CloseHandle, hhHandle
    invoke    CloseHandle, pinfo.hProcess
    invoke    CloseHandle, pinfo.hThread
    invoke    ExitProcess, NULL 
        ret 
    WinMain endp
    
    
    
    end WinMain 
     
  15. Unread #8 - Nov 15, 2007 at 8:05 PM
  16. Govind
    Joined:
    Apr 22, 2005
    Posts:
    7,825
    Referrals:
    13
    Sythe Gold:
    23
    Prove it! Trole Tier 1 Prizebox Tortoise Penis Le Monkey UWotM8? Wait, do you not have an Archer rank? Potamus

    Govind The One Musketeer
    Mudkips Highly Respected Retired Administrator

    Visual basic decompiler...

    Jazz, I meant that a disassembler could be used on any Win32 program to reconstruct the program source purely in ASM code. That source looks like it was written in MASM by the way.
     
  17. Unread #9 - Nov 16, 2007 at 11:30 AM
  18. Terrankiller
    Joined:
    May 7, 2005
    Posts:
    1,286
    Referrals:
    1
    Sythe Gold:
    1

    Terrankiller Ex-Administrator
    Retired Administrator Visual Basic Programmers

    Visual basic decompiler...

    Jazz, how much ASM do you know?
     
  19. Unread #10 - Nov 16, 2007 at 1:17 PM
  20. Govind
    Joined:
    Apr 22, 2005
    Posts:
    7,825
    Referrals:
    13
    Sythe Gold:
    23
    Prove it! Trole Tier 1 Prizebox Tortoise Penis Le Monkey UWotM8? Wait, do you not have an Archer rank? Potamus

    Govind The One Musketeer
    Mudkips Highly Respected Retired Administrator

    Visual basic decompiler...

  21. Unread #11 - Nov 16, 2007 at 4:44 PM
  22. Teizhcial
    Referrals:
    0

    Teizhcial Guest

    Visual basic decompiler...

    Yeah I thought I had a working VB6 decompiler but it only told me what the properties for each form was and what message box's said.
     
  23. Unread #12 - Nov 16, 2007 at 11:57 PM
  24. Jazz00006
    Joined:
    Aug 26, 2005
    Posts:
    807
    Referrals:
    0
    Sythe Gold:
    0

    Jazz00006 Apprentice
    Visual Basic Programmers

    Visual basic decompiler...

    Actually it's from 0x33.org, and people post it everywhere.
    Yes it's not mine. But I have only just started learning.
    Yes it was written in MASM by wuj.
     
< just the client??? | imma nub when it comes to java n shit... QUESTION >

Users viewing this thread
1 guest


 
 
Adblock breaks this site