Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```