Don't be sElfish!

Networking - Samba ; smb

Video

Resources

SMB (Server Message Block) - Natively supported by Windows and not Linux

NFS (Network File System) - Natively supported by Linux and not Windows

./enum4linux.pl -U 10.10.227.117

smbclient //REPLACE_INSTANCE_IP_ADDRESS/**sharename**

Challenge

Using enum4linux, how many users are there on the Samba server (10.10.227.117)?

enum4linux -U 10.10.227.117

Now how many "shares" are there on the Samba server?

enum4linux -S 10.10.227.117

Use smbclient to try to login to the shares on the Samba server (10.10.227.117). What share doesn't require a password?

smbclient //10.10.227.117/tbfc-hr
smbclient //10.10.227.117/tbfc-it
smbclient //10.10.227.117/tbfc-santa

Log in to this share, what directory did ElfMcSkidy leave for Santa?

ls
note_from_mcskidy.txt
Hi Santa, I decided to put all of your favourite jingles onto this share
- allowing you access it from anywhere you like! 
Regards ~ ElfMcSkidy

Last updated

Was this helpful?