Quote:
Originally Posted by ANAL PASTE
So I'm looking for really shitty thing on server.
got into /var/ directory and searched for sqlmap.py file in all sub-directories
gives me 2 locations of it:
./ /sqlmapproject-sqlmap/sqlmap.py
./ /oldsqlmap/sqlmap.py
what is that ./ / space means. How do I navigate to this? Its not directly in /var/ and there is no sub-directories with that name.
|
If it really is a directory name with a space, you can either escape the space (1) or double quote the name (2)
1.
cd ./\ /
2.
cd "./ /"
Is this something legit? Would be very unusual for a directory or filename to contain a space, at least deliberately.