how can i find the Invisible txtfile about File Streams

Discussion forum for all Windows batch related topics.

Moderator: DosItHelp

Post Reply
Message
Author
fugitive
Posts: 19
Joined: 09 Mar 2017 02:26

how can i find the Invisible txtfile about File Streams

#1 Post by fugitive » 16 Mar 2017 10:12

I wonder if you have found this interesting way to hide some things in your computer files

Code: Select all

@echo off
echo;hello dostips>a.txt:s.txt
echo;Do you know where is the word?
for /f "delims=" %%a in (a.txt:s.txt) do echo;%%a
echo;maybe we can write our codes into a invisible batchfile

Of course, this sentence is not in the a.txt , I would like to ask, how can we find out where this sentence is redirected to ?

Squashman
Expert
Posts: 4486
Joined: 23 Dec 2011 13:59

Re: how can i find the Invisible txtfile 【about File Streams】

#2 Post by Squashman » 16 Mar 2017 10:52

We have a whole thread on the forums about alternate data streams.

Aacini
Expert
Posts: 1914
Joined: 06 Dec 2011 22:15
Location: México City, México
Contact:

Re: how can i find the Invisible txtfile about File Streams

#3 Post by Aacini » 16 Mar 2017 12:46

... like this one.

Antonio

Post Reply