Results 1 to 3 of 3
  1. #1
    lilghost8631's Avatar
    Join Date
    Jul 2013
    Gender
    male
    Posts
    68
    Reputation
    10
    Thanks
    14

    Dumping Via LoadLibrary Attempt

    Code:
    #include <Windows.h>
    #include <iostream>
    
    using namespace std;
    DWORD InputHere;
    
    int main(){
    	LoadLibrary("CShell - NA - 11-18.dll");
    	cin>>InputHere;
    	return 1;
    }
    A very simple code which loads up "Cshell.dll" which I've renamed to add a region and date to and then placed in the execution folder of the application.
    I then used PETools to dump the application and then loaded the dumped application in OllyDBG. This was unsuccessful.

    Am I on the right track at least?
    Thank you.

  2. #2
    Skaterforeva1's Avatar
    Join Date
    Apr 2010
    Gender
    male
    Location
    Up your ass
    Posts
    936
    Reputation
    32
    Thanks
    485
    My Mood
    Psychedelic
    @lilghost8631 Sorry for a very late reply, but I was looking for something and I found this. I didn't test but I'm guessing it would work. Credits go to @kJNR

    Code:
    #include "Windows.h"    
    #include <Iostream>	
    
    int kJNRDumper()
    {
    	DWORD Error; 
    	HINSTANCE kDynamicLinkLibary = LoadLibraryA("CShell.dll");        
    	if(kDynamicLinkLibary != 0)
    	{
    		printf("LoadLibraryA: Loaded a File, It's now Ready for a Dump.");
    	}
    	else
    	{
    		Error = GetLastError();
    		printf("LoadLibraryA: Can't load the File, Terminating Process\n"); 
    	}
    	system("pause"); 
    	return 0; 
    }




    ^Suck it!

  3. #3
    XarutoUsoCrack's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Location
    CFAL Honra & Glória Server
    Posts
    1,087
    Reputation
    51
    Thanks
    2,543
    My Mood
    Relaxed
    You will need a LoadLibrary and attach in CShell folder, about dumping, you need load the .dll and dump using PETools (Xmas version) it works fine (for me works fine).

Similar Threads

  1. Dump!
    By Flawless in forum Spammers Corner
    Replies: 22
    Last Post: 05-21-2017, 02:45 PM
  2. removing the edit button, attempt 2
    By ace76543 in forum Spammers Corner
    Replies: 19
    Last Post: 12-11-2006, 04:49 PM
  3. First Brush Attempt Ever!
    By poulet28 in forum Tutorials
    Replies: 9
    Last Post: 08-06-2006, 03:55 PM
  4. Attempt #2!!!
    By SadisticGrin in forum Art & Graphic Design
    Replies: 3
    Last Post: 07-29-2006, 10:00 PM
  5. My 1st Photoshop Attempt
    By Jackal in forum Art & Graphic Design
    Replies: 13
    Last Post: 07-20-2006, 05:43 AM