Skip to content

fieldse/pentest-notes

Repository files navigation

Pentest notes

Miscellaneous useful notes for pentesting & ethical hacking

Chapters

  1. Nmap scans
  2. Breakouts
  3. Common
  4. Post-exploit checklist (Linux)
  5. Privilege escalation (Linux)
  6. Privilege escalation (Windows)
  7. Reverse shells
  8. Transfers
  9. Powershell commands

Installation

Clone the repo into a directory somewhere convenient, and then add the below aliases to your .bash_aliases file for quick access.

# Clone the repo
mkdir -p $HOME/Documents/pentest_notes
cd $HOME/Documents/pentest_notes
git clone https://github.com/fieldse/pentest-notes.git .

Aliases -- copy these to your .bash_aliases or .zshrc

# .bash_aliases
alias breakouts="less $HOME/Documents/pentest_notes/breakouts.txt"
alias common="less $HOME/Documents/pentest_notes/common.txt"
alias linux-post="less $HOME/Documents/pentest_notes/linux-post.txt"
alias linux-privesc="less $HOME/Documents/pentest_notes/linux-privesc.txt"
alias windows-privesc="less $HOME/Documents/pentest_notes/windows-privesc.txt"
alias revshells="less $HOME/Documents/pentest_notes/revshells.md"
alias transfers="less $HOME/Documents/pentest_notes/transfers.txt"
alias windows-powershell="less $HOME/Documents/pentest_notes/windows-powershell.md"

Credits

Most of this stuff is from the incredible Sirensecurity

You should check out her YouTube stuff as well:

Resources

General resource lists

Privesc -- Linux

Privesc -- Windows

Breakouts

Pivoting

Transfers

Project

Maintainer