Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/secure-77/certipy-docker
Certipy in Docker
https://github.com/secure-77/certipy-docker
Last synced: 30 days 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 (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-03-28T23:31:48.000Z (8 months ago)
- Last Synced: 2024-05-02T02:18:06.853Z (6 months ago)
- Language: Dockerfile
- Size: 5.86 KB
- Stars: 7
- Watchers: 2
- Forks: 3
- 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
```