26.07.2018 Views

hacking-the-art-of-exploitation

Create successful ePaper yourself

Turn your PDF publications into a flip-book with our unique Google optimized e-Paper software.

tinyweb.c<br />

#include <br />

#include <br />

#include <br />

#include <br />

#include <br />

#include <br />

#include <br />

#include <br />

#include "<strong>hacking</strong>.h"<br />

#include "<strong>hacking</strong>-network.h"<br />

#define PORT 80 // The port users will be connecting to<br />

#define WEBROOT "./webroot" // The webserver's root directory<br />

void handle_connection(int, struct sockaddr_in *); // Handle web requests<br />

int get_file_size(int); // Returns <strong>the</strong> filesize <strong>of</strong> open file descriptor<br />

int main(void) {<br />

int sockfd, new_sockfd, yes=1;<br />

struct sockaddr_in host_addr, client_addr;<br />

socklen_t sin_size;<br />

// My address information<br />

printf("Accepting web requests on port %d\n", PORT);<br />

if ((sockfd = socket(PF_INET, SOCK_STREAM, 0)) == -1)<br />

fatal("in socket");<br />

if (setsockopt(sockfd, SOL_SOCKET, SO_REUSEADDR, &yes, size<strong>of</strong>(int)) == -1)<br />

fatal("setting socket option SO_REUSEADDR");<br />

host_addr.sin_family = AF_INET; // Host byte order<br />

host_addr.sin_port = htons(PORT); // Short, network byte order<br />

host_addr.sin_addr.s_addr = INADDR_ANY; // Automatically fill with my IP.<br />

memset(&(host_addr.sin_zero), '\0', 8); // Zero <strong>the</strong> rest <strong>of</strong> <strong>the</strong> struct.<br />

if (bind(sockfd, (struct sockaddr *)&host_addr, size<strong>of</strong>(struct sockaddr)) == -1)<br />

fatal("binding to socket");<br />

if (listen(sockfd, 20) == -1)<br />

fatal("listening on socket");<br />

while(1) { // Accept loop.<br />

sin_size = size<strong>of</strong>(struct sockaddr_in);<br />

new_sockfd = accept(sockfd, (struct sockaddr *)&client_addr, &sin_size);<br />

if(new_sockfd == -1)<br />

fatal("accepting connection");<br />

handle_connection(new_sockfd, &client_addr);<br />

}<br />

return 0;<br />

214 0x400

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!