akde/infosec

Information security is ultimately about managing risk


Enumeration

Mandatory

  1. Enu­mer­ate with nmap:
    nmap -n -sV --script "ldap* and not brute" $target
  2. Scan with LDAPsearch:
    ldapsearch -x -h $target -D '' -w '' -b "DC=BLA,DC=local"
  3. Con­nect to SSL ports:
    openssl s_client -connect $target:636 </dev/null
    openssl s_client -connect $target:3269 </dev/null

Leave a Reply

About

Personal collection of some infosec stuff. Primary purpose of this site is to collect and organize for myself.

Note: Some content is not publicly visible due to copyright issues. Therefore, some links could be broken.

Checklists

Categories

Checklists: Ports

python -c 'import pty;pty.spawn("/bin/bash")';

python3 -c 'import pty;pty.spawn("/bin/bash")';