ident 113 [initial access]
113/tcp open ident FreeBSD identd
|_auth-owners: nobodyAdd this to your Tool Sheet.
We can see that there is indent service running.
ident is a service that uses the Ident protocol to identify a user on a TCP connection. The Ident protocol is a standardized way for systems to exchange identity credentials over a network connection.
I found one tool related to this.

Now, I will use this tool to do the enumeration.
Install the package in kali linux using below command.
Running the command:

I can see there is two user name revealed.
I can see that there is SSH port open.
It's check if I use Matching username and password for ssh login.

SSH for eleanor user gave Shell access but unable to run many command.

Fixing Command issue.

Tried both but didn't work.

I looks like we are in a restricted bash shell.
Many of the ways mentioned inthe above link didn't work as we don't have permission to run that command.
Checked which command is allowed to run here in rbash.

Working method
I will check the path variable and also current working directory.

It looks like we are allowed to run allow below command:
On searching for each binary, I found that ed is text editory similar to vi in the help manual, I already have way to escape using vi so, I will search for ed.
Got the way:
Now try runing command.

After running whoami the command, You can see that there is no rbash error. It is related to bash. This means we bypassed the rbash. ☺️
I will set path variable to access the binary.
This worked.

Last updated
Was this helpful?
