python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
how to terminate process with ebpf?
I want to send_sig_info to a process from inside bpf function (execve) but it won't load.
I know that they added a helper function since kernel 5.3 but I'm working on a lower kernel.
Is there a way to...
Edeien
Votes: 0
Answers: 1
pathname vs arguments for execve parameters
I am trying to implement a simple shell program that runs user input commands. I want the user to enter "ls" or "dir" and have the shell run /bin/ls or /bin/dir . For the execve ar...
sonic25
Votes: 0
Answers: 2
Can't use "/usr/bin/env" in C execve() call on macOS
I couldn't really find any relevant results after looking for a while, so I'm asking this myself. I have the following C code, which tries to execute nasm through execve() via /usr/bin/env so I don't ...
Mustafa Quraish
Votes: 0
Answers: 1
child process infinite loop with execve
Here is my pipe to pipe function:
int *pip is the pipe that I want to read from
char **cmd is the command that I want to execute
char **envp points to the environment variables
I want to take the pi...
Maxou
Votes: 0
Answers: 1