Go Back   The UNIX and Linux Forums > Top Forums > Programming
Search Forums:



Programming Post questions about C, C++, Java, SQL, and other programming languages here.

Closed Thread    
 
Thread Tools Search this Thread Display Modes
    #1  
Old 10-07-2007
Registered User
 

Join Date: Sep 2007
Posts: 173
Thanks: 0
Thanked 0 Times in 0 Posts
Shellcode Generation using C

Hi,

I was just learning about buffer overflow attacks... I was curious as to how to generate a simple shellcode. I've written two codes - One is the typical program that has a vulnerability inside and the other is the shellcode.

main program:

Code:
void test();

int main() {
   test();
   return 0;
}

void test() {
   int *ret;
   ret = (int *)&ret + 2;
   (*ret) = (int)shellcode;
}


I was thinking of putting the shellcode into the shellcode found in the end which is a character array.

And as for the shellcode generation, I've written something like:


Code:
#include <unistd.h>

int main() {
  char buf[]="Hello World";
  write(1,buf,sizeof(buf));
  exit(0);
}


But I don't know how to generate the shellcode from this so that I can put it in the original program in the form of char shellcode[] = ...... How would I go about doing this? And yeah if this is the wrong forum, please move this post because I didn't know where else this has to be posted...
Sponsored Links
    #2  
Old 10-08-2007
porter porter is offline Forum Advisor  
Registered User
 

Join Date: Jan 2007
Posts: 2,965
Thanks: 0
Thanked 2 Times in 2 Posts
Imagine a program which normally prints "Hello World".

Then there is another program which uses that output...

char buf[32];
FILE *fp=popen("hello","r");
fread(buf,1,256,fp);
pclose(fp);

.. and it so happens that this always works because "hello" never returns more than 32 characters. One day it returns more, and then overruns the buffer affecting the return address. The function then returns into hyperspace.
Sponsored Links
    #3  
Old 10-08-2007
Registered User
 

Join Date: Sep 2007
Posts: 173
Thanks: 0
Thanked 0 Times in 0 Posts
And thats where the fun begins? That was a great explanation. Thank you... I was actually trying to spawn a shell after reading a couple of articles but somehow couldn't properly understand Shellcode generation because most of the online articles say "To keep this article simple, I'd skip shellcode generation" and that was the instant when I thought of going for simple things - To generate one for atleast Hello World... Its funny that I got a shellcode itself for "Hello World" generation but I'm not searching for the answer instead the solution...
Sponsored Links
Closed Thread

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

More UNIX and Linux Forum Topics You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
Report generation gmahesh2k Shell Programming and Scripting 3 05-16-2008 02:33 AM
report generation gmahesh2k UNIX for Dummies Questions & Answers 2 05-16-2008 01:41 AM
Oracle Report generation DILEEP410 Shell Programming and Scripting 7 01-04-2007 03:52 AM
Random number generation tej.buch Programming 1 02-13-2006 09:07 AM



All times are GMT -4. The time now is 11:18 PM.