Hi, I am starting point, once I get connected to the box
using nmap -sC -sV -p- 10.10.10.27
then: smbclient -N -L \\10.10.10.27\
then: smbclient -N \\10.10.10.27\backups
once I am in smb running following commands return nothing to me
command is
get prod.dtsConfig
without result of this I cant proceed.
Any help
I know its a starting point, but I am posting after exhausting all my option of search and trying. I do apologies for the inconvenience.
I am not sure if you have typed these commands or copied, but you are missing a couple of backslashes in your smbclient commands. You need twice as many, because a backslash is also an escape character, so to get the file paths displaying correctly instead of \
you need \\
. So your smb commands should be:
smbclient -N -L \\\\10.10.10.27\\
smbclient -N \\\\10.10.10.27\\backups
Then try the get
command again.
@tasidonya figured out. Cheers man.
Nice! I am glad you figured it out!