To check for bad links on the trust site, use wget:
wget -np -m -X trustj http://www.truststc.org >& wget4.out
We use -X trustj to avoid searching Java pages. At one time, the calendar would blindly give months into the future and past forever. This was probably fixed, so -X trustj might not be necessary.

To check the non-public pages, one must store the website cookies in a file.

Use wget to get cookies

Get the cookies into a file
wget --no-check-certificate -S --save-cookies /tmp/cookies.txt --keep-session-cookies --post-data='username=cxh&password=xxxxxx&Action=Login' https://embeddedtst.eecs.berkeley.edu/login/
Use the cookies.
wget --no-check-certificate -m -p --load-cookies /tmp/cookies.txt http://embeddedtst.eecs.berkeley.edu >& wget.out

Firefox

  1. Under Firefox, install the Export Cookies Addon
  2. Log on to the site and the export cookies to a file via Tools -> Export Cookies
  3. scp the cookies.txt file to a fast Linux machine that has the wget command such as sisyphus
  4. Run wget:
    wget --no-check-certificate -m -p --load-cookies /tmp/cookies.txt http://www.e3s-center.org/sitevisit2013/ >& wget.out
    
  5. Search the wget.out file for Not Found.

We also use the Google Analytics accounts, see