Skip to content

fieldse/pentest-notes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

5c4f150 · Dec 5, 2024

History

17 Commits
Nov 26, 2024
Nov 27, 2024
Dec 2, 2024
Nov 30, 2024
Nov 30, 2024
Nov 27, 2024
Dec 2, 2024
Nov 27, 2024
Nov 27, 2024
Nov 28, 2024
Dec 5, 2024

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