我对我想知道其用户列表的服务器具有非 sudo ssh 访问权限,我认为该服务器正在使用 ldap,因为:
-bash-4.2$ cat /etc/nsswitch.conf
# /etc/nsswitch.conf
#
# Example configuration of GNU Name Service Switch functionality.
# If you have the `glibc-doc-reference' and `info' packages installed, try:
# `info libc "Name Service Switch"' for information about this file.
passwd: files ldap
group: files ldap
shadow: files ldap
hosts: files dns
networks: files
protocols: db files
services: db files
ethers: db files
rpc: db files
netgroup: nis
但:
-bash-4.2$ cd /etc/sssd/
-bash: cd: /etc/sssd/: No such file or directory
请注意两者都没有/etc/passwd
,ls -lsa /var
或者getent passwd
没有给出我想要的列表(他们甚至不包括我自己的用户名)
那么,有没有人知道如何获取该服务器的用户名和 ID 列表?
-bash-4.2$ lsb_release -a
No LSB modules are available.
Distributor ID: Debian
Description: Debian GNU/Linux 7.11 (wheezy)
Release: 7.11
Codename: wheezy
很可能 ldap 配置不允许枚举。
如果您知道用户 ID 的范围,您可以尝试通过查询每个可能的用户 ID 来获取用户列表:
这里假设一个 shell 支持
{x..y}
大括号扩展的形式(zsh、bash、ksh93、tcsh、yash -o 大括号扩展)。请注意,在 Linux 上,uid 不再限于 16 位,并且某些基于 Microsoft AD 或 samba 的目录服务器至少经常使用大于 65535 的值。
{0..2147483647}
不过,查询是不可能的。您的网络管理员可能不会喜欢这样,因为这意味着对目录服务器执行大量 LDAP 查询。
请注意,由于数据库中的主键
passwd
是用户名,而不是 id,因此每个用户名可能有多个 id,angetent passwd <id>
只返回一个条目,因此您可能会丢失一些用户。如果用户通常在他们的主要组之外的至少一个组中,获取用户列表的一种方法可能是使用相同方法查询组列表并查看其成员:
这里
sss
不使用。您将拥有sss
而不是ldap
在nsswitch.conf
.那将是
libnss-ldap
(或者可能是 libnss-ldapd,检查dpkg -l | grep ldap
)处理对ldap
. 配置可能在/etc/libnss-ldap.conf
or/etc/ldap.conf
或/etc/ldap/ldap.conf
中。如果您可以阅读这些内容,那么您将找到服务器名称和用户在目录树中位置的详细信息,并且您可以使用它
ldapsearch
来获取相关信息(前提是您被授予访问权限)。