Skip to content

Commit cca5a69

Browse files
authored
Merge pull request #1001 from farukerdem34/master
Fix Docker command
2 parents 220a02b + 6042056 commit cca5a69

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

src/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ _Hacktricks logos & motion design by_ [_@ppiernacho_](https://www.instagram.com/
1010
# Download latest version of hacktricks
1111
git clone https://github.com/HackTricks-wiki/hacktricks
1212
# Run the docker container indicating the path to the hacktricks folder
13-
docker run --rm -p 3337:3000 --name hacktricks -v $(pwd)/hacktricks:/app ghcr.io/hacktricks-wiki/hacktricks-cloud/translator-image bash -c "cd /app && git pull && MDBOOK_PREPROCESSOR__HACKTRICKS__ENV=dev mdbook serve --hostname 0.0.0.0"
13+
docker run -d --rm -p 3337:3000 --name hacktricks -v $(pwd)/hacktricks:/app ghcr.io/hacktricks-wiki/hacktricks-cloud/translator-image bash -c "cd /app && git config --global --add safe.directory /app && git pull && MDBOOK_PREPROCESSOR__HACKTRICKS__ENV=dev mdbook serve --hostname 0.0.0.0"
1414
```
1515

1616
Your local copy of HackTricks will be **available at [http://localhost:3337](http://localhost:3337)** after <5 minutes (it needs to build the book, be patient).

src/network-services-pentesting/pentesting-ldap.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -422,9 +422,12 @@ Entry_6:
422422
Name: Hydra Brute Force
423423
Description: Need User
424424
Command: hydra -l {Username} -P {Big_Passwordlist} {IP} ldap2 -V -f
425+
426+
Entry_7:
427+
Name: Netexec LDAP BloodHound
428+
Command: nxc ldap <IP> -u <USERNAME> -p <PASSWORD> --bloodhound -c All -d <DOMAIN.LOCAL> --dns-server <IP> --dns-tcp
425429
```
426430

427431
{{#include ../banners/hacktricks-training.md}}
428432

429433

430-

0 commit comments

Comments
 (0)