New pages
Jump to navigation
Jump to search
16 April 2025
- 20:4120:41, 16 April 2025 FreeBSD (hist | edit) [931 bytes] Steffe (talk | contribs) (Created page with "== Enlarging disk space == For full reference: https://docs.freebsd.org/en/books/handbook/disks/#disks-growing Shut down your VM, make a backup of it and then resize the hard disk drive. Then boot up FreeBSD again and do: gpart show It will show one of your partitions as CORRUPT. Fix it with something like: gpart recover vtbd0 gpart show It should now be OK. Note the index number of the partition you want to resize, then do something like: gpart resize -i 2 vtbd0 N...")
18 February 2025
- 11:5511:55, 18 February 2025 TCPdump (hist | edit) [651 bytes] Steffe (talk | contribs) (Created page with "== Basic capture == Typical usage to capture network traffic going to a specific host: sudo tcpdump host xxx.xxx.xxx.xxx -w output.pcap == TLS capture == In case the traffic is encrypted using TLS or similar, you may be able to use the SSLKEYLOGFILE environment variable when running your client (or server) binary: SSLKEYLOGFILE=sslkeylogfile.log ./testapplication.py If this produces a sslkeylogfile.log file, you can use that to decrypt the TLS traffic. Open wireshark...")