关于内网小众信息收集
作者:互联网
1.密码策略收集
1.net accounts /domain 如果是域用户,用命令查看 (域内)
2.运用kali的ldapsearch来收集 (域外)
dapsearch -x -H ldap://192.168.1.1:389 -D "CN=testa,CN=Users,DC=test,DC=com" -w DomainUser123! -b "DC=test,DC=com" | grep replUpToDateVector -A 13
ps: testa为用户名,-w为密码
3.利用ipc连接查看,前提的晓得一个域用户的账号密码。 (域外)
type "\\192.168.160.139\C$\Windows\SYSVOL\sysvol\leecinsy.com\Policies\{31B2F340-016D-11D2-945F-00C04FB984F9}\MACHINE\Microsoft\Windows NT\SecEdit\GptTmpl.inf"
有2个常用位置,上面那个是我自己win8的
\\192.168.1.1\SYSVOL\test.com\Policies\{31B2F340-016D-11D2-945F-00C04FB984F9}\MACHINE\Microsoft\Windows NT\SecEdit\GptTmpl.inf //这2个常用位置
4.运用Microsoft.ActiveDirectory.Management.dll(域内域外都可以,我没有成功)
2.活动目录信息的获取
1.利用kali的ldapsearch来收集(域外)
ldapsearch -x -H ldap://192.168.1.1:389 -D "CN=testa,CN=Users,DC=test,DC=com" -w DomainUser123! -b "DC=test,DC=com" //显示所有能查询的信息
ldapsearch -x -H ldap://192.168.1.1:389 -D "CN=testa,CN=Users,DC=test,DC=com" -w DomainUser123! -b "DC=test,DC=com" -b "DC=test,DC=com" "(&(objectClass=user)(objectCategory=person))" CN | grep cn
//查询所有的域用户,并且只显示cn的信息,用户名,如果想全部显示,去掉管道符后面的
ldapsearch -x -H ldap://192.168.1.1:389 -D "CN=testa,CN=Users,DC=test,DC=com" -w DomainUser123! -b "DC=test,DC=com" -b "DC=test,DC=com" "(&(objectCategory=computer)(objectClass=computer))" CN | grep cn //查询所有的计算机名,并且只显示cn的信息,计算机名,如果想全部显示,去掉管道符后面的。
ldapsearch -x -H ldap://192.168.1.1:389 -D "CN=testa,CN=Users,DC=test,DC=com" -w DomainUser123! -b "DC=test,DC=com" -b "DC=test,DC=com" "(&(objectCategory=group))" CN | grep cn
//查询所有的组
2.利用powershellspilot(域外&域内)
$uname="cpwgp"
$pwd=ConvertTo-SecureString "123456ab.." -AsPlainText –Force
$cred=New-Object System.Management.Automation.PSCredential($uname,$pwd)
//前面3行未固定格式,最后一行为执行命令
Get-NetUser -Domain leecinsy.com -DomainController 192.168.160.139 -ADSpath "LDAP://DC=leecinsy,DC=com" -Credential $cred //获取凭证
Get-NetUser -Domain leecinsy.com -DomainController 192.168.160.139 -ADSpath "LDAP://DC=leecinsy,DC=com" -Credential $cred | fl name //只返回用户名
Get-NetComputer -Domain leecinsy.com -DomainController 192.168.160.139 -ADSpath "LDAP://DC=leecinsy,DC=com" -Credential $cred | fl name //只返回机器名
Get-NetGroup -Domain leecinsy.com -DomainController 192.168.160.139 -ADSpath "LDAP://DC=leecinsy,DC=com" -Credential $cred | fl name //返回所有组
3.RDP连接历史记录
1.HKEY_CURRENT_USER\Software\Microsoft\Terminal Server Client\Servers //只能看当前登录的
如果想看全部,选中HKEY_USERS项,单击加载配置单元,找到NTUSER.DAT文件,然后我说说他的位置
C:\Documents and Settings\用户名\NTUSER.DAT
C:\Windows\profiles\用户名目录下
C:\Users\ASUS \\即可加载全部,然后完事后记得删除
或者使用命令行
Reg load HKEY_USERS\S-1-5-21-1170783345-3748964848-1387080272-1003 C:\Documents and Settings\c\NTUSER.DAT
Reg unload HKEY_USERS\S-1-5-21-1170783345-3748964848-1387080272-1003
2.利用powershell
(获得当前用户的rdp记录)
dir "Registry::HKEY_CURRENT_USER\Software\Microsoft\Terminal Server Client\Servers" -Name //罗列ip
(Get-ItemProperty -Path "Registry::HKEY_CURRENT_USER\Software\Microsoft\Terminal Server Client\Servers\192.168.160.145").UsernameHint //查询用户名
(获得已登录用户历史记录)
Get-WmiObject -Class Win32_UserAccount
wmic /NAMESPACE:"\\root\CIMV2" PATH Win32_UserAccount GET /all /FORMAT:list //枚举账户的sid
然后是一套脚本,放在笔记里(脚本2)
- 利用cmd嘛,cmdkey /l
标签:exe,收集,内网,DC,192.168,CURRENT,HKEY,小众,com 来源: https://www.cnblogs.com/xinxin999/p/14123372.html