Untitled

mail@pastecode.io avatar
unknown
plain_text
24 days ago
480 B
2
Indexable
Never
:: Step 1: Create a main file
echo This is the main file content > mainfile.txt

:: Step 2: Create an Alternate Data Stream (ADS) attached to the main file
echo This is hidden content > mainfile.txt:hiddenfile.txt

:: Step 3: Verify the presence of the ADS
dir /R

:: Step 4: Access the hidden content in the ADS
notepad mainfile.txt:hiddenfile.txt

:: Step 5: Delete the content in the ADS (if desired)
:: Open the ADS in Notepad, delete the content, save, and close
Leave a Comment