This document will stay here for convenience sake, but I'm not going to update it anymore. The Sourcehut document is more up-to-date.
Some notes, tools, and techniques for reverse engineering macOS binaries.
Based on https://busylog.net/telnet-imap-commands-note/
- -k -- don't verify certificate (optional)
- -n -- use .netrc for username and password (optional)
- -X -- request to send to server
$ wget -e robots=off -r -np 'http://example.com/folder/'
- -e robots=off causes it to ignore robots.txt for that domain
- -r makes it recursive
- -np = no parents, so it doesn't follow links up to the parent folder
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # ... | |
| # This is for what I would consider a standard setup, where TTY's 1 -- 6 are | |
| # "linux" terminals and TTY's 7+ are reserved for X windows. You should adjust | |
| # it to your setup, accordingly. | |
| # | |
| # ::: Important ::: You must have both fbterm and screen installed and on your | |
| # path for this to work. | |
| virtual_terminal="$( tty | grep -oE ....$ )" |