A blog about coding, Infosec, penetration testing, and random topics
Wednesday, November 23, 2011
Ghetto locate
some boxes dont have locate/updatedb on them for indexed searching of the filesystem. This sucks when you need to look for several files. You can create your own ghetto version by:
find / -print > filesystemlisting
and then grepping through that for your entries.
the find command just outputs the entire filesystem names to that file as absolute paths.
No comments:
Post a Comment