https://github.com/secure-77/certipy-docker
Certipy in Docker
https://github.com/secure-77/certipy-docker
Last synced: 4 months ago
JSON representation
Certipy in Docker
- Host: GitHub
- URL: https://github.com/secure-77/certipy-docker
- Owner: secure-77
- Created: 2023-07-26T07:45:26.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-28T23:31:48.000Z (over 1 year ago)
- Last Synced: 2025-01-27T23:19:32.861Z (5 months ago)
- Language: Dockerfile
- Size: 5.86 KB
- Stars: 11
- Watchers: 2
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
# Docker Version of Certipy
Runs with Python 3.10.4
## Build
```bash
sudo docker build -t certipy:latest .
```## Run
```bash
sudo docker run -it -v $(pwd):/tmp certipy:latest certipy find -u 'user' -p 'password' -dc-ip 10.10.208.229
```## Pass Hostname to Container
```bash
sudo docker run -it -v $(pwd):/tmp --add-host=DC:10.10.90.78 certipy:latest certipy req -u '[email protected]' -p "Password" -dc-ip 10.10.90.78 -target 'DC' -ca 'domain-DC-CA' -template 'RetroClients' -upn '[email protected]' -key-size 4096
```## Use LDAPS and LDAP Channel Binding
```bash
sudo docker run -it -v $(pwd):/tmp certipy:latest certipy find -u 'user' -p 'password' -scheme ldaps -ldap-channel-binding
```## Use socks5 proxy via proxychains
```bash
sudo docker run -it --network="host" -v $(pwd):/tmp certipy:latest proxychains4 -q certipy find -u 'user' -p 'pass' -dc-ip 10.10.173.69
```