Metasploitable Root shell 1524/tcp open shell Metasploitable root shell This was a curiousity… My first attempt was to attempt using rlogin to connect to the port, which did not appear to work correctly, though did seem to work enough to return part of a prompt to the user: root@kali:~# rlogin -p 1524 target oot@metasploitable:/# My next approach was to attempt a simple netcat connection to the host, which ended up being successful: root@kali:~# nc -v target 1524 root@metasploitable:/# id ...
Unig Command in Linux
uniq command use for removing repeated word or lines
- remove by repeated no
uniq -c <txt file>
- display only repeated lines
uniq -d <txt file>
there are no repeated lines so printing nothing
- display how much time word are matching in lines
uniq -dc <txt file>
- display which lines is not repeating in txt file
uniq -u <txt file>
here are no lines are repeating so printing all lines
- counting repeating line
uniq -uc <txt file>
Written By Sanjay Kumar
Comments
Post a Comment