Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Assignment Description. This assignment focuses on buffer overflow attacks and how they can be carried out on poorly-programmed system programs. You may not be able

Assignment Description. This assignment focuses on buffer overflow attacks and how they can be carried out on poorly-programmed system programs. You may not be able to complete this assignment on a modern operating system, as there are canaries built-in to modern shells (and kernels) to prevent such a thing from occuring. I would recommend using an older Linux distribution in a virtual machine for this assignment (something prior to Linux kernel version 2.4), but you are welcome to attempt this on a modern OS and see if you can get it to work. Review the article Smashing the Stack for Fun and Profit for a very good, detailed introduction on how to perform a stack smashing attack.

Assignment. Given the following C code file, perform a stack smash on the vuln.c code file using a C program that you create named exploit.c. Write comments and explaing your approach.

//vuln . c

#include

#include

int main( int argc , char ??argv ) {

// Make some stack information

char a [100] , b[100] , c [100] , d [100];

// Call the exploitable function

exploitable ( argv [ 1 ] ) ;

// Return everything is OK

return (0); }

11

int exploitable (char ?arg ) {

// Make some stack space

char buffer [ 10] ;

// Now copy the buffer

strcpy ( buffer , arg );

printf ("The buffer says . . [%s/%p ].\ n" , buffer , &buffer );

// Return everything fun

return (0); }

Note: when running many versions of Linux, you may need to disable some address randomization.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Making Databases Work The Pragmatic Wisdom Of Michael Stonebraker

Authors: Michael L. Brodie

1st Edition

1947487167, 978-1947487161

More Books

Students also viewed these Databases questions