EAP225 SSH: Need to use ping command in ssh server but requires root

This thread has been locked for further replies. You can start a new thread to share your ideas or ask questions.

EAP225 SSH: Need to use ping command in ssh server but requires root

This thread has been locked for further replies. You can start a new thread to share your ideas or ask questions.
EAP225 SSH: Need to use ping command in ssh server but requires root
EAP225 SSH: Need to use ping command in ssh server but requires root
2019-09-13 07:51:13
Model: EAP225  
Hardware Version: V3
Firmware Version: 2.40

Hello,

I have supplied 15 pieces EAP225 v3 to various vessels for crew network wifi. I specifically choose this model as it has SSH server which I want to utilize and connect remotelly from shore.

The specific need is to use ssh and execute ping commands in crew network. Unfortunatelly, I get the error that as admin I cannot use ping command and need to connect with root.

 

Now the question is this: Is it anyhow possible to allow user admin to execute ping command using ssh?

If that is not possible, any chance I get the root password?

 

Sincerely

  0      
  0      
#1
Options
5 Reply
Re:EAP225 SSH: Need to use ping command in ssh server but requires root
2019-09-13 13:00:25 - last edited 2019-09-13 13:08:36

Hi @Fotis_Greece,

 

same problem with Pharos APs here: https://community.tp-link.com/en/business/forum/topic/168326

 

@forrest, please see my post in the Wireless Boradband forum for my suggestions about how to add Privilege Separation without breaking existing functionality. In my opinion, it makes no sense to give people ssh access to the EAPs and Pharos devices while breaking the ability to use certain commands such as ping or radartool. Please have R&D fix this in next firmware.

 

In my post regarding Pharos firmware I show you a very easy way to fix this - use the SUID file attribute (set user-id to file-owner/root) for ping and radartool, that's exactly what it is for in Linux to run commands temporarily as the root user.

 

Thanks!

༺ 0100 1101 0010 10ཏ1 0010 0110 1010 1110 ༻
  0  
  0  
#2
Options
Re:EAP225 SSH: Need to use ping command in ssh server but requires root
2019-09-16 02:15:41

@R1D2 

 

Thank you for your feedback.

For the EAP products, we still don't enable root privilege to the users. Because when we enable root privilege, we can customize the function of EAP and configuration.

When we enable root privilege the devices may meet many abnormal issues, this is not secured for the products.

 

  0  
  0  
#3
Options
Re:EAP225 SSH: Need to use ping command in ssh server but requires root
2019-09-16 02:17:40

 

Fotis_Greece wrote

Hello,

I have supplied 15 pieces EAP225 v3 to various vessels for crew network wifi. I specifically choose this model as it has SSH server which I want to utilize and connect remotelly from shore.

The specific need is to use ssh and execute ping commands in crew network. Unfortunatelly, I get the error that as admin I cannot use ping command and need to connect with root.

 

Now the question is this: Is it anyhow possible to allow user admin to execute ping command using ssh?

If that is not possible, any chance I get the root password?

 

Sincerely

@Fotis_Greece 

 

Why do you want to use the ping command in the SSH? If you want to manage the EAP remotely, you can use the cloud or Omada APP.

 

  0  
  0  
#4
Options
Re:EAP225 SSH: Need to use ping command in ssh server but requires root
2019-09-16 05:35:54

@forrest Dear sir, what's the big deal with ping command and it is only available to root users? For god's sake, it's just ping!!

 

Crew internet on vessels is pre-paid using Vsat provider PIN (unlike business network on vessels which is post paid). From shore I have no control over crew network except that I can open specified ports on remote satellite router. But to open ports, i need IP addresses and this can be done only via pinging.

In othe words, I need ping command to locate other devices on crew network. I could either just install a mini pc to do this job but I chose EAP because of SSH. I don't need root privileges on EAP, I just need ping!!

 

Kindly make it happen with some sort of firmware.

Thank you so much

  0  
  0  
#5
Options
Re: EAP225 SSH: Need to use ping command in ssh server but requires root
2019-09-16 12:29:55 - last edited 2019-09-16 13:07:13

 

forrest wrote

Thank you for your feedback.

For the EAP products, we still don't enable root privilege to the users. Because when we enable root privilege, we can customize the function of EAP and configuration.

When we enable root privilege the devices may meet many abnormal issues, this is not secured for the products.

 

 

Hello @forrest,

 

the question is not whether to grant ordinary users root privileges. Of course, ordinary users should not be able to become root, that's what Privilege Separation is all about. The issue is about doing Privilege Separation the right way.

 

I'm in this discussion with R&D about Privilege Separation since EAP Controller for Linux came out the first time (IIRC it was v2.4.3). Back then EAPC did run all of its program code under root privileges.

 

This was the reason that EAP Controller could be easily abused to remotely break into the server over the Internet and several Internet servers running EAP Controller had actually been compromised back then by crackers through a well-known Java RMI root exploit. I was the one who reported a proof of concept of this root exploit to TP-Link's R&D and I did even send a full working bug-fix to R&D suggesting to introduce Privilege Separation in EAP Controller only days after EAPC v2.4 was published (just search the forum and mail archives of 2016 to 2018).¹

 

The goal in Linux is to run any process which interacts with ordinary users (for example the http server/web UI, ssh server, login shell) under an unprivileged user ID, i.e. not root. This prevents bad guys from taking over the device. However, starting httpd, sshd, the login shell, radartool and even ping technically requires root permission:

 

  • httpd needs to run parts of the program code as root to be able to bind to privileged port 80.
  • sshd needs to run parts of the program code as root to be able to bind to privileged port 22.
  • login needs to run parts of the program code as root to be able to set up the environment for a user.
  • ping on EAP needs to run parts of the program code as root in more modern Linux kernels.
  • radartool on CPE/WBS needs to run parts of the program code as root, probably to get access to the WiFi chip registers.

 

The solution to run only parts of program code as root without granting the user full root access is the so-called SUID bit together with a programmatically release of root privileges (through the setuid system call) when privileges are no longer required. This functionality is present in every Linux system since first version.

 

The SUID bit and the setuid system call have been introduced in UNIX 7th edition which was released back in 1979. So it's now a 40-years old technique, which is directly related to Privilege Separation, since the SUID bit was needed to allow implemetation of Privilege Separation at all.

 

Please don't get me wrong:

I welcome introduction of Privilege Separation in EAP and Pharos firmware very much! It is the right step in order to increase system security.

 

But it should not break existing functionality such as the user being able to run ping on EAP devices or radartool on Pharos devices. Also, it is very easy to fix this and to allow ping and radartool for non-root users without the need to grant full root access to them. Just set the SUID bit and root as the owner on both executables.

 

__________________

¹ BTW: even Omada Controller 3.2.1 still has root-owned files which have read permissions for ordinary users. Albeit the controller uses Privilege Separation for its start, it doesn't use this technique to its full extend when it comes to access files. For example, every ordinary user having an account on the server running Omada Controller can read the keystore password for the TP-Link SSL certificate in Omada Controller's properties. Albeit not a critical bug, I always fix those file permissions in the Omada Controller community version for Linux, which doesn't grant access to sensitive files for ordinary users.

 

 

 

 

 

༺ 0100 1101 0010 10ཏ1 0010 0110 1010 1110 ༻
  6  
  6  
#6
Options

Information

Helpful: 0

Views: 4830

Replies: 5