Files
JonathanSalwan-ROPgadget/src/check_elf_format.c
T
Jonathan Salwan 251ae55969 push v.3.2
2011-10-10 09:43:38 +02:00

32 lines
910 B
C
Executable File

/*
** RopGadget - Release v3.2
** Jonathan Salwan - http://twitter.com/JonathanSalwan
** http://shell-storm.org
** 2011-10-10
**
** Redistribution and use in source and binary forms, with or without
** modification, are permitted provided that the following conditions
** are met:
** 1. Redistributions of source code must retain the above copyright
** notice, this list of conditions and the following disclaimer.
** 2. Redistributions in binary form must reproduce the above copyright
** notice, this list of conditions and the following disclaimer in the
** documentation and/or other materials provided with the distribution.
*/
#include <stdio.h>
#include "ropgadget.h"
void no_elf_format(void)
{
fprintf(stderr, "Error: No elf format\n");
exit(EXIT_FAILURE);
}
int check_elf_format(unsigned char *data)
{
if (!strncmp((const char *)data, MAGIC_ELF, 4))
return (0);
return (-1);
}