<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.csclub.uwaterloo.ca/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Nguenthe</id>
	<title>CSCWiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.csclub.uwaterloo.ca/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Nguenthe"/>
	<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/Special:Contributions/Nguenthe"/>
	<updated>2026-04-05T21:07:19Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.44.0</generator>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Wireless&amp;diff=4221</id>
		<title>Wireless</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Wireless&amp;diff=4221"/>
		<updated>2018-06-20T01:58:56Z</updated>

		<summary type="html">&lt;p&gt;Nguenthe: /* netctl */ update ArchLinux path; also add domain_suffix_match for extra security&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;csc-wireless no longer exists. Members are advised to use eduroam or uw-unsecured.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Rosetta Stone ==&lt;br /&gt;
See IST&#039;s page http://ist.uwaterloo.ca/cs/wireless.html for Windows and other devices.&lt;br /&gt;
&lt;br /&gt;
The ca_cert line is only needed to verify the authenticity of the eduroam AP, and is otherwise not actually needed to connect to it. Keep in mind that removing it from your config means that you are technically vulnerable to someone creating a fake eduroam access point and using it to grab your Quest login, though honestly the chances of this ever happening on campus are extremely unlikely.&lt;br /&gt;
&lt;br /&gt;
=== Linux ===&lt;br /&gt;
If you don&#039;t wish to have your password floating around in a text file in /etc, then (at least for the wpa_supplicant based network managers) you may take the output of &lt;br /&gt;
 echo -n &amp;quot;hunter2&amp;quot; | iconv -t utf16le | openssl md4&lt;br /&gt;
and replace the password line with&lt;br /&gt;
 password=hash:HASH_HERE&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== netctl ====&lt;br /&gt;
Toss this into /etc/netctl/, making sure you edit identity and password. Replace wlan0 with the correct interface. Your correct interface can probably be seen in the output of&lt;br /&gt;
 ip link&lt;br /&gt;
and probably is the one that starts with &#039;w&#039;.&lt;br /&gt;
&lt;br /&gt;
To connect, run sudo netctl start eduroam&lt;br /&gt;
&lt;br /&gt;
 Connection=&#039;wireless&#039;&lt;br /&gt;
 Interface=wlan0&lt;br /&gt;
 Security=&#039;wpa-configsection&#039;&lt;br /&gt;
 IP=&#039;dhcp&#039;&lt;br /&gt;
 WPAConfigSection=(&lt;br /&gt;
     &#039;identity=&amp;quot;userid@uwaterloo.ca&amp;quot;&#039;&lt;br /&gt;
     &#039;password=&amp;quot;hunter2&amp;quot;&#039;&lt;br /&gt;
     &#039;ssid=&amp;quot;eduroam&amp;quot;&#039;&lt;br /&gt;
     &#039;key_mgmt=WPA-EAP&#039;&lt;br /&gt;
     &#039;eap=PEAP&#039;&lt;br /&gt;
     &#039;ca_cert=&amp;quot;/etc/ssl/certs/GlobalSign_Root_CA.pem&amp;quot;&#039;&lt;br /&gt;
     &#039;domain_suffix_match=&amp;quot;uwaterloo.ca&amp;quot;&#039;&lt;br /&gt;
 )&lt;br /&gt;
&lt;br /&gt;
==== wicd ====&lt;br /&gt;
Toss this into /etc/wicd/encryption/templates/ and edit /etc/wicd/encryption/templates/active to include a line with eduroam.&lt;br /&gt;
&lt;br /&gt;
 name = Eduroam UW&lt;br /&gt;
 author = Steven She&lt;br /&gt;
 version = 1&lt;br /&gt;
 require username *Username password *Password&lt;br /&gt;
 -----&lt;br /&gt;
 ctrl_interface=/var/run/wpa_supplicant&lt;br /&gt;
 network={&lt;br /&gt;
     ssid=&amp;quot;$_ESSID&amp;quot;&lt;br /&gt;
     scan_ssid=&amp;quot;$_SCAN&amp;quot;&lt;br /&gt;
     proto=RSN&lt;br /&gt;
     key_mgmt=WPA-EAP&lt;br /&gt;
     pairwise=CCMP&lt;br /&gt;
     group=CCMP&lt;br /&gt;
     eap=PEAP&lt;br /&gt;
     identity=&amp;quot;$_USERNAME&amp;quot;&lt;br /&gt;
     password=&amp;quot;$_PASSWORD&amp;quot;&lt;br /&gt;
     ca_cert=&amp;quot;/usr/share/ca-certificates/mozilla/GlobalSign_Root_CA.crt&amp;quot;&lt;br /&gt;
     phase2=&amp;quot;auth=MSCHAPV2&amp;quot;&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
==== wpa_supplicant ====&lt;br /&gt;
add this to a file in /etc/wpa_supplicant/.&lt;br /&gt;
&lt;br /&gt;
 network={&lt;br /&gt;
     ssid=&amp;quot;eduroam&amp;quot;&lt;br /&gt;
     proto=RSN&lt;br /&gt;
     key_mgmt=WPA-EAP&lt;br /&gt;
     pairwise=CCMP&lt;br /&gt;
     group=CCMP&lt;br /&gt;
     eap=PEAP                                      &lt;br /&gt;
     identity=&amp;quot;userid@uwaterloo.ca&amp;quot;&lt;br /&gt;
     password=&amp;quot;hunter2&amp;quot;&lt;br /&gt;
     ca_cert=&amp;quot;/usr/share/ca-certificates/mozilla/GlobalSign_Root_CA.crt&amp;quot;&lt;br /&gt;
     phase2=&amp;quot;auth=MSCHAPV2&amp;quot;&lt;br /&gt;
 }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The previous setup has been [http://wiki.csclub.uwaterloo.ca/Wireless?oldid=2297 archived] for posterity.&lt;br /&gt;
&lt;br /&gt;
[[Category:Systems]]&lt;/div&gt;</summary>
		<author><name>Nguenthe</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Mentorship&amp;diff=3542</id>
		<title>Mentorship</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Mentorship&amp;diff=3542"/>
		<updated>2013-11-20T01:25:36Z</updated>

		<summary type="html">&lt;p&gt;Nguenthe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;As of Fall&#039;13, m4burns, nguenthe, and others are interested in starting a low-overhead CSC mentorship program. &lt;br /&gt;
This is currently in the &#039;&#039;&#039;planning&#039;&#039;&#039; stage, more to come as it rolls out. The CSC is very good at disseminating high quality information, or at least arguing over it until it&#039;s figured out, but only for the very small subset of office regulars in a very particularly stringent culture.&lt;br /&gt;
&lt;br /&gt;
The purposes are:&lt;br /&gt;
# Promote involvement and activity in the CSC, and support community formation with low overhead. (The CSC usually has a strong core of office regulars, but their reach ends at the office door, and when they graduate, their knowledge goes)&lt;br /&gt;
# Give our extended, non-office-regular membership a way to get something out of the club besides webspace&lt;br /&gt;
# Wash out the formation of Old Boys Clubs&lt;br /&gt;
# Give long-term CSC members experience tutoring and guiding. Make them remember that everyone was a noob once.&lt;br /&gt;
# Give noobier members someone they can call for help with any issues&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Sample activities that members could do under the guise of this program:&lt;br /&gt;
# Tutoring&lt;br /&gt;
# Mock interviews&lt;br /&gt;
as well as just having access to someone with more experience than you.&lt;br /&gt;
&lt;br /&gt;
===Design===&lt;br /&gt;
&lt;br /&gt;
The program will simply be a postings board (https://csclub.uwaterloo.ca/mentoring), where people can post their availability and/or desire for mentorship.&lt;br /&gt;
&lt;br /&gt;
Mentors can take on up to three mentees at a time, and can choose how many they want at a time (including zero, if they want to temporarily cancel their involvement, say during co-op or a busy term).&lt;br /&gt;
&lt;br /&gt;
Mentors can themselves have mentors: mentored students can come in and get help. Hopefully after a year or two a useful mentorship will simply evolve into a friendship.&lt;br /&gt;
&lt;br /&gt;
Participants provide some subset of:&lt;br /&gt;
* preferred contact methods&lt;br /&gt;
* program and year&lt;br /&gt;
* interests / courses&lt;br /&gt;
&lt;br /&gt;
Pairings will be made by ..............?&lt;br /&gt;
&lt;br /&gt;
===Rules===&lt;br /&gt;
&lt;br /&gt;
Many of the other mentorship programs have some sort of ethics code. We (being m4 and nick) want to minimize bureaucracy, but will need some way to chastise or get rid of bad mentors that&#039;s better than just pulling the rug out from under them and their mentees. Perhaps we should just start it and add rules if we feel they are absolutely necessary as issues crop up.&lt;br /&gt;
&lt;br /&gt;
For now:&lt;br /&gt;
# You must be a CSC member to use the postings board. The bar for participation in mentorship is the same bar for being a CSC member.&lt;br /&gt;
# Pairings will be dissolved in an account expires (or if an account is deleted, i.e. one term after it expires?)&lt;br /&gt;
# [https://uwaterloo.ca/secretariat/policies-procedures-guidelines/policy-71 Do not do your mentees homework for them]&lt;br /&gt;
&lt;br /&gt;
===Competition===&lt;br /&gt;
&lt;br /&gt;
There are other mentorship programs floating around campus. We might both learn from or overlap awkwardly with them. Below is meant to be a full list, but may be missing entries:&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
!Program!!Notes!!Status&lt;br /&gt;
|-&lt;br /&gt;
|Math Mentoring||Every Math orientation leader is automatically trained (supposedly via SSO, see below) to be a mentor, and assigned a set of 10 or so first years to mentor. Hands-off approach, in hopes of natural community effects taking effect. Paritioned on gender, orientation group, and program.||Currently going into year 3 with high hopes. Started and overseen by Riley Metzger and Ana Freitas; currently run by student volunteers Ravi Patel (r48patel) and Andre Liao (xqliao) &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|[https://cs.uwaterloo.ca/wics/mentoring WiCS]&lt;br /&gt;
|For women only. For pairing upper years with first years only. Onerous monthly written reports from &#039;&#039;&#039;all&#039;&#039;&#039; participants, intimidating (but perhaps necessary) ethics code&lt;br /&gt;
|?? (does anyone know how much traction they have?)&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|[https://uwaterloo.ca/women-in-engineering/mentorship-program Women in Engineering]||Lots of warm-fuzzy soft-skills advice. Not much detail on their site about what they actually do. Onerity: low? Seems similar to the design we were envisioning, though again they are only interested in pairing first years with upper years.||Seems active: they host workshop events https://uwaterloo.ca/women-in-engineering/events&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|[https://www.eng.uwaterloo.ca/askanengalumni/ AskEngAlumni]||For engineers||Seems dead?&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.ddclub.uwaterloo.ca/admissions/mentorship.php DDC]||For double-degree students. Similar in scope to CSC-mentorship.|| ???????&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|[https://developers.google.com/open-source/organizations GSoC]||What does GSoC do? How do they handle churn and dropouts and ethics?||Very popular and busy and big and &#039;&#039;&#039;&#039;&#039;funded&#039;&#039;&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|[https://uwaterloo.ca/sso/tutoring Student Success Office Tutor Connect]||Onerous click-through policy. For-profit postings. The university washes its hands of overseeing quality.||Absolutely, totally, dead. Also, hung their search badly by selecting every course.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|[http://asclub.uwaterloo.ca/ ActSci Club]||They don&#039;t have a mentorship program, they have mentorship events where the first n (n~=20) frosh that sign up get to have a mock interview by the senior asclub members, and then they all drink bubble tea||Busy!&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Nguenthe</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3510</id>
		<title>Security Workshops</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3510"/>
		<updated>2013-10-08T19:55:03Z</updated>

		<summary type="html">&lt;p&gt;Nguenthe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;In light of the orwellian nightmare we&#039;ve built ourselves into, now is a good time for the CSClub to pick up the slack it usually picks and teach people how to be safe out there. &lt;br /&gt;
&lt;br /&gt;
=Topics=&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This information is fuzzy and subject to change. Do not trust it.&lt;br /&gt;
&lt;br /&gt;
sharvey, m4, and nguenthe are adminning this term&#039;s series&lt;br /&gt;
&lt;br /&gt;
Though the topics are diverse, the ones we will favour actually running are seminars that are short, to the point, and give a specific skill(set).&lt;br /&gt;
&lt;br /&gt;
Note: might be worth organizing this better by theme -sharvey&lt;br /&gt;
&lt;br /&gt;
* sharvey on &#039;&#039;Why Should You Care About Security and Privacy&#039;&#039; &lt;br /&gt;
* ?????? on &#039;&#039;Storytime: Snowden Roundup&#039;&#039; (sharvey might be able to get some people from CrySP to discuss this; perhaps a panel followed by a Q&amp;amp;A?)&lt;br /&gt;
* ?????? on &#039;&#039;Storytime: [http://en.wikipedia.org/wiki/Weev Weev]&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Storytime: Kevin Mitnick&#039;&#039;&lt;br /&gt;
* nguenthe on &#039;&#039;[http://www.cypherpunks.ca/otr OTR]&#039;&#039; -- or IanG if we can get him!&lt;br /&gt;
* ?????? on &#039;&#039;Time Machines&#039;&#039; (Google-hacking, pleaserobme.com, etc)&lt;br /&gt;
* ?????? on &#039;&#039;Security Proofs: How Many Joules does the NSA Have?&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Full Disk Encryption&#039;&#039; (zablache maybe)&lt;br /&gt;
* ?????? on &#039;&#039;SSH&#039;&#039;&lt;br /&gt;
* [mailto:stephen.palmateer@gmail.com Stephen Palmateer] of KWLUG on &#039;&#039;Tor&#039;&#039; (vs i2p vs Freenet vs /r/darknet?)&lt;br /&gt;
* yd2dong on &#039;&#039;Tunnelling, Mix Networks, and VPNs&#039;&#039; -- he&#039;s done original research on this area, would discuss censorship techniques (for example, DPI filters), how to defeat them, and significant additional hurdles for anti-censorship compared to simply protecting against eavesdropping. (live demos of blocking from China)&lt;br /&gt;
* ?????? on &#039;&#039;Your Wifi Network is Insecure&#039;&#039; (cover: aircrack-ng and reaver. maybe nmap and metasploit)&lt;br /&gt;
* [mailto:silver@callysto.com Sean Howard] on &#039;&#039;How your ISP owns you&#039;&#039; (UW grad, ex Watsfic president, currently working for sentex.ca, knows details of Bell&#039;s network infrastructure and where the chokepoints are)&lt;br /&gt;
* [http://cybersecurityinstitute.ca/ The Canadian Cybersecurity Institute] on &#039;&#039;Social Exploits&#039;&#039; (this person is via Sean Howard. Seems legit.)&lt;br /&gt;
* nablack and sjcglads with a security demo + open ended question session&lt;br /&gt;
* sjcglads on &#039;&#039;Secrets of a DDoS&#039;&#039;&lt;br /&gt;
* wlritchi on &#039;&#039;Reversing SBeam and pnwing ur phone&#039;&#039;&lt;br /&gt;
* mtrberzi on &#039;&#039;GPG, Keyservers, and You&#039;&#039; and with a keysigning party to boot&lt;br /&gt;
* v2buterin on &#039;&#039;Bitcoin and Bitmessage&#039;&#039; (maybe? pretty please?)&lt;br /&gt;
* IST Security:&lt;br /&gt;
** [mailto:pmatlock@uwaterloo.ca Patrick Matlock] on some combination or subset of oauth, identity, data privacy ([https://uwaterloo.ca/secretariat/policies-procedures-guidelines/policy-8 Policy 8]), and web pentesting&lt;br /&gt;
*** csrf&lt;br /&gt;
*** script injections&lt;br /&gt;
*** ....&lt;br /&gt;
** [mailto:tlabach@uwaterloo.ca Terry Labach] on [http://ist.uwaterloo.ca/~tlabach/safer/ safer web browsing]&lt;br /&gt;
** [mailto:cpbell@uwaterloo.ca Colin Bell]?&lt;br /&gt;
* Sapphyre?&lt;br /&gt;
* Hatguy!&lt;br /&gt;
* ?????? on &#039;&#039;Passwords&#039;&#039; (touch on [http://xkcd.com/936/ security proofs], hashapass/pwdhash, alternatives to passwords (biometrics, one time pads, challenge-response, ssh keys), NOT SHARING YOUR DAMN PASSWORDS ACROSS SITES (cite: the ps3 attack, the [linkedin attack], the [http://techcrunch.com/2009/12/14/rockyou-hack-security-myspace-facebook-passwords/ rockyou attack] ([http://www.tomshardware.com/news/imperva-rockyou-most-common-passwords,9486.html super] [http://reusablesec.blogspot.ca/2010/01/more-analysis-of-rockyou-password-list.html interesting] [http://blog.jimmyr.com/Password_analysis_of_databases_that_were_hacked_28_2009.php analysis], myspace&#039;s hack, FaithWriters, purerave.com&#039;s attempt at better security that made it worse, the ....) and how to use jacktheripper/[http://hashcat.net/hashcat/ hashcat])&lt;br /&gt;
* ?????? on &#039;&#039;Browser Fingerprinting&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Filesystem Forensics and the Dangers of Log-Structured Data Storage&#039;&#039; (live demo!) (zablache maybe)&lt;br /&gt;
* ?????? on &#039;&#039;SSL: It&#039;s Broken&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Storytime: Exporting &amp;quot;Munitions&amp;quot;&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Stegonography&#039;&#039; (might be able to get sharvey&#039;s SO to cover this)&lt;br /&gt;
* ?????? on &#039;&#039;Digital Watermarks&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Getting root in 5 minutes with physical access&#039;&#039; (cover how to boot single-user in all versions of Windows, OS X, Linux, and when that fails how to pull a drive and crack the password with l0phtcrack (Win32) or simply editing /etc/shadow (*nix). also the [https://citp.princeton.edu/research/memory/ compressed air-&amp;gt;frozen RAM] and Firewire-DMA attacks)&lt;br /&gt;
* ?????? on &#039;&#039;What is Identity&#039;&#039; (maybe toss this out to WPIRG?) with info on how sites and overlords (facebook, google) identify you, and how to split your identity digitally&lt;br /&gt;
* ?????? on &#039;&#039;Physical Security&#039;&#039; ([http://lockwiki.com/index.php/Main_Page locks], safes, etc.)&lt;br /&gt;
* ?????? on &#039;&#039;Crypto: terms, definitions, and why software still sucks&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Entropy and Randomness and why you shouldn&#039;t trust your router&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Network things&#039;&#039; (ARP, DNS, etc.)&lt;br /&gt;
* ?????? on &#039;&#039;Side Channels&#039;&#039; (sharvey&#039;s SO will probably do this)&lt;br /&gt;
&lt;br /&gt;
And remember kids, &#039;&#039;&#039;&#039;&#039;educational-use only&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=Hand Outs=&lt;br /&gt;
&lt;br /&gt;
TOR? ahh!&lt;br /&gt;
&lt;br /&gt;
=WPIRG cross promotion=&lt;br /&gt;
&lt;br /&gt;
[http://wpirg.org WPIRG] wants to cross-promote a &amp;quot;privacy forum&amp;quot; with us. They are imagining as an expert panel + QA session, during November. Probably the ideal distribution is csc events on the technical side (&amp;quot;how to shot pgp&amp;quot;, &amp;quot;how to make tls go&amp;quot;, &amp;quot;wat is passwurd&amp;quot;) with WPIRG on the human-scale and politics side, with advertising to both of our cohorts for all events. Some ideas for expert participants:&lt;br /&gt;
* [https://cs.uwaterloo.ca/~iang/ Ian Goldberg] (sharvey)&lt;br /&gt;
* [http://www.michaelgeist.ca/tags/privacy Michael Geist]&lt;br /&gt;
* RiseUp.net (WPIRG has direct contacts with them)&lt;br /&gt;
* Someone from WikiLeaks (we have direct contacts with them)&lt;br /&gt;
* [http://www.qpirgconcordia.org/?page_id=9#ats Anarchist Tech Support] (latter group seems dormant)&lt;br /&gt;
* Terry Labach (this sort of thing is, actually, directly within his job description)&lt;br /&gt;
* [http://thoughtcrime.org Marlie Moxinspike]&lt;br /&gt;
* UofT Citizen Lab People&lt;br /&gt;
&lt;br /&gt;
=Related work and Telling Evidence=&lt;br /&gt;
&lt;br /&gt;
====Related Work====&lt;br /&gt;
[https://ssd.eff.org/ EFF&#039;s Surveillance Self-Defense Guide]&lt;br /&gt;
&lt;br /&gt;
[https://www.encrypteverything.ca/ Pirate Party&#039;s EncryptEverything]&lt;br /&gt;
&lt;br /&gt;
https://citizenlab.org/ @ UofT&lt;br /&gt;
&lt;br /&gt;
[http://cm.bell-labs.com/who/ken/trust.html Ken Thompson - Reflections on Trusting Trust]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
http://www.jbonneau.com/publications.html&lt;br /&gt;
&lt;br /&gt;
====Evidence====&lt;br /&gt;
http://readwrite.com/2010/08/04/google_ceo_schmidt_people_arent_ready_for_the_tech&lt;br /&gt;
&lt;br /&gt;
====IMPORTANT MEDIA====&lt;br /&gt;
3 Dead Trolls in a Baggie - The Privacy Song&lt;br /&gt;
MC Frontalot - Secrets from the Future&lt;br /&gt;
&lt;br /&gt;
[http://www.xkcd.com/538/ XKCD: Security]&lt;br /&gt;
[http://xkcd.com/936/ XKCD: Password Strength]&lt;br /&gt;
&lt;br /&gt;
=Past by Term=&lt;br /&gt;
===Fall 2013===&lt;br /&gt;
...&lt;/div&gt;</summary>
		<author><name>Nguenthe</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3509</id>
		<title>Security Workshops</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3509"/>
		<updated>2013-10-08T19:42:35Z</updated>

		<summary type="html">&lt;p&gt;Nguenthe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;In light of the orwellian nightmare we&#039;ve built ourselves into, now is a good time for the CSClub to pick up the slack it usually picks and teach people how to be safe out there. &lt;br /&gt;
&lt;br /&gt;
=Topics=&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This information is fuzzy and subject to change. Do not trust it.&lt;br /&gt;
&lt;br /&gt;
sharvey, m4, and nguenthe are adminning this term&#039;s series&lt;br /&gt;
&lt;br /&gt;
Though the topics are diverse, the ones we will favour actually running are seminars that are short, to the point, and give a specific skill(set).&lt;br /&gt;
&lt;br /&gt;
Note: might be worth organizing this better by theme -sharvey&lt;br /&gt;
&lt;br /&gt;
* sharvey on &#039;&#039;Why Should You Care About Security and Privacy&#039;&#039; &lt;br /&gt;
* ?????? on &#039;&#039;Storytime: Snowden Roundup&#039;&#039; (sharvey might be able to get some people from CrySP to discuss this; perhaps a panel followed by a Q&amp;amp;A?)&lt;br /&gt;
* ?????? on &#039;&#039;Storytime: [http://en.wikipedia.org/wiki/Weev Weev]&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Storytime: Kevin Mitnick&#039;&#039;&lt;br /&gt;
* nguenthe on &#039;&#039;[http://www.cypherpunks.ca/otr OTR]&#039;&#039; -- or IanG if we can get him!&lt;br /&gt;
* ?????? on &#039;&#039;Time Machines&#039;&#039; (Google-hacking, pleaserobme.com, etc)&lt;br /&gt;
* ?????? on &#039;&#039;Security Proofs: How Many Joules does the NSA Have?&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Full Disk Encryption&#039;&#039; (zablache maybe)&lt;br /&gt;
* ?????? on &#039;&#039;SSH&#039;&#039;&lt;br /&gt;
* [mailto:stephen.palmateer@gmail.com Stephen Palmateer] of KWLUG on &#039;&#039;Tor&#039;&#039; (vs i2p vs Freenet vs /r/darknet?)&lt;br /&gt;
* yd2dong on &#039;&#039;Tunnelling, Mix Networks, and VPNs&#039;&#039; -- he&#039;s done original research on this area, would discuss censorship techniques (for example, DPI filters), how to defeat them, and significant additional hurdles for anti-censorship compared to simply protecting against eavesdropping. (live demos of blocking from China)&lt;br /&gt;
* ?????? on &#039;&#039;Your Wifi Network is Insecure&#039;&#039; (cover: aircrack-ng and reaver. maybe nmap and metasploit)&lt;br /&gt;
* [mailto:silver@callysto.com Sean Howard] on &#039;&#039;How your ISP owns you&#039;&#039; (UW grad, ex Watsfic president, currently working for sentex.ca, knows details of Bell&#039;s network infrastructure and where the chokepoints are)&lt;br /&gt;
* [http://cybersecurityinstitute.ca/ The Canadian Cybersecurity Institute] on &#039;&#039;Social Exploits&#039;&#039; (this person is via Sean Howard. Seems legit.)&lt;br /&gt;
* nablack and sjcglads with a security demo + open ended question session&lt;br /&gt;
* sjcglads on &#039;&#039;Secrets of a DDoS&#039;&#039;&lt;br /&gt;
* wlritchi on &#039;&#039;Reversing SBeam and pnwing ur phone&#039;&#039;&lt;br /&gt;
* mtrberzi on &#039;&#039;GPG, Keyservers, and You&#039;&#039; and with a keysigning party to boot&lt;br /&gt;
* v2buterin on &#039;&#039;Bitcoin and Bitmessage&#039;&#039; (maybe? pretty please?)&lt;br /&gt;
* IST Security:&lt;br /&gt;
** [mailto:pmatlock@uwaterloo.ca Patrick Matlock] on some combination or subset of oauth, identity, data privacy ([https://uwaterloo.ca/secretariat/policies-procedures-guidelines/policy-8 Policy 8]), and web pentesting&lt;br /&gt;
*** csrf&lt;br /&gt;
*** script injections&lt;br /&gt;
*** ....&lt;br /&gt;
** [mailto:tlabach@uwaterloo.ca Terry Labach] on [http://ist.uwaterloo.ca/~tlabach/safer/ safer web browsing]&lt;br /&gt;
** [mailto:cpbell@uwaterloo.ca Colin Bell]?&lt;br /&gt;
* Sapphyre?&lt;br /&gt;
* Hatguy!&lt;br /&gt;
* ?????? on &#039;&#039;Passwords&#039;&#039; (touch on [http://xkcd.com/936/ security proofs], hashapass/pwdhash, alternatives to passwords (biometrics, one time pads, challenge-response, ssh keys), NOT SHARING YOUR DAMN PASSWORDS ACROSS SITES (cite: the ps3 attack, the [linkedin attack], the [http://techcrunch.com/2009/12/14/rockyou-hack-security-myspace-facebook-passwords/ rockyou attack] ([http://www.tomshardware.com/news/imperva-rockyou-most-common-passwords,9486.html super] [http://reusablesec.blogspot.ca/2010/01/more-analysis-of-rockyou-password-list.html interesting] [http://blog.jimmyr.com/Password_analysis_of_databases_that_were_hacked_28_2009.php analysis], myspace&#039;s hack, FaithWriters, purerave.com&#039;s attempt at better security that made it worse, the ....) and how to use jacktheripper/[http://hashcat.net/hashcat/ hashcat])&lt;br /&gt;
* ?????? on &#039;&#039;Browser Fingerprinting&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Filesystem Forensics and the Dangers of Log-Structured Data Storage&#039;&#039; (live demo!) (zablache maybe)&lt;br /&gt;
* ?????? on &#039;&#039;SSL: It&#039;s Broken&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Storytime: Exporting &amp;quot;Munitions&amp;quot;&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Stegonography&#039;&#039; (might be able to get sharvey&#039;s SO to cover this)&lt;br /&gt;
* ?????? on &#039;&#039;Digital Watermarks&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Getting root in 5 minutes with physical access&#039;&#039; (cover how to boot single-user in all versions of Windows, OS X, Linux, and when that fails how to pull a drive and crack the password with l0phtcrack (Win32) or simply editing /etc/shadow (*nix). also the [https://citp.princeton.edu/research/memory/ compressed air-&amp;gt;frozen RAM] and Firewire-DMA attacks)&lt;br /&gt;
* ?????? on &#039;&#039;What is Identity&#039;&#039; (maybe toss this out to WPIRG?) with info on how sites and overlords (facebook, google) identify you, and how to split your identity digitally&lt;br /&gt;
* ?????? on &#039;&#039;Physical Security&#039;&#039; ([http://lockwiki.com/index.php/Main_Page locks], safes, etc.)&lt;br /&gt;
* ?????? on &#039;&#039;Crypto: terms, definitions, and why software still sucks&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Entropy and Randomness and why you shouldn&#039;t trust your router&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Network things&#039;&#039; (ARP, DNS, etc.)&lt;br /&gt;
* ?????? on &#039;&#039;Side Channels&#039;&#039; (sharvey&#039;s SO will probably do this)&lt;br /&gt;
&lt;br /&gt;
And remember kids, &#039;&#039;&#039;&#039;&#039;educational-use only&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=Hand Outs&lt;br /&gt;
&lt;br /&gt;
=WPIRG cross promotion=&lt;br /&gt;
&lt;br /&gt;
[http://wpirg.org WPIRG] wants to cross-promote a &amp;quot;privacy forum&amp;quot; with us. They are imagining as an expert panel + QA session, during November. Probably the ideal distribution is csc events on the technical side (&amp;quot;how to shot pgp&amp;quot;, &amp;quot;how to make tls go&amp;quot;, &amp;quot;wat is passwurd&amp;quot;) with WPIRG on the human-scale and politics side, with advertising to both of our cohorts for all events. Some ideas for expert participants:&lt;br /&gt;
* [https://cs.uwaterloo.ca/~iang/ Ian Goldberg] (sharvey)&lt;br /&gt;
* [http://www.michaelgeist.ca/tags/privacy Michael Geist]&lt;br /&gt;
* RiseUp.net (WPIRG has direct contacts with them)&lt;br /&gt;
* Someone from WikiLeaks (we have direct contacts with them)&lt;br /&gt;
* [http://www.qpirgconcordia.org/?page_id=9#ats Anarchist Tech Support] (latter group seems dormant)&lt;br /&gt;
* Terry Labach (this sort of thing is, actually, directly within his job description)&lt;br /&gt;
* [http://thoughtcrime.org Marlie Moxinspike]&lt;br /&gt;
* UofT Citizen Lab People&lt;br /&gt;
&lt;br /&gt;
=Related work and Telling Evidence=&lt;br /&gt;
&lt;br /&gt;
====Related Work====&lt;br /&gt;
[https://ssd.eff.org/ EFF&#039;s Surveillance Self-Defense Guide]&lt;br /&gt;
&lt;br /&gt;
[https://www.encrypteverything.ca/ Pirate Party&#039;s EncryptEverything]&lt;br /&gt;
&lt;br /&gt;
https://citizenlab.org/ @ UofT&lt;br /&gt;
&lt;br /&gt;
[http://cm.bell-labs.com/who/ken/trust.html Ken Thompson - Reflections on Trusting Trust]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
http://www.jbonneau.com/publications.html&lt;br /&gt;
&lt;br /&gt;
====Evidence====&lt;br /&gt;
http://readwrite.com/2010/08/04/google_ceo_schmidt_people_arent_ready_for_the_tech&lt;br /&gt;
&lt;br /&gt;
====IMPORTANT MEDIA====&lt;br /&gt;
3 Dead Trolls in a Baggie - The Privacy Song&lt;br /&gt;
MC Frontalot - Secrets from the Future&lt;br /&gt;
&lt;br /&gt;
[http://www.xkcd.com/538/ XKCD: Security]&lt;br /&gt;
[http://xkcd.com/936/ XKCD: Password Strength]&lt;br /&gt;
&lt;br /&gt;
=Past by Term=&lt;br /&gt;
===Fall 2013===&lt;br /&gt;
...&lt;/div&gt;</summary>
		<author><name>Nguenthe</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Mentorship&amp;diff=3506</id>
		<title>Mentorship</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Mentorship&amp;diff=3506"/>
		<updated>2013-10-06T21:34:17Z</updated>

		<summary type="html">&lt;p&gt;Nguenthe: /* Competition */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;As of Fall&#039;13, m4burns, nguenthe, and others are interested in starting a low-overhead CSC mentorship program. &lt;br /&gt;
This is currently in the &#039;&#039;&#039;planning&#039;&#039;&#039; stage, more to come as it rolls out. The CSC is very good at disseminating high quality information, or at least arguing over it until it&#039;s figured out, but only for the very small subset of office regulars in a very particularly stringent culture.&lt;br /&gt;
&lt;br /&gt;
The purposes are:&lt;br /&gt;
# Promote involvement and activity in the CSC, and support community formation with low overhead. (The CSC usually has a strong core of office regulars, but their reach ends at the office door, and when they graduate, their knowledge goes)&lt;br /&gt;
# Give our extended, non-office-regular membership a way to get something out of the club besides webspace&lt;br /&gt;
# Wash out the formation of Old Boys Clubs&lt;br /&gt;
# Give long-term CSC members experience tutoring and guiding. Make them remember that everyone was a noob once.&lt;br /&gt;
# Give noobier members someone they can call for help with any issues&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Sample activities that members could do under the guise of this program:&lt;br /&gt;
# Tutoring&lt;br /&gt;
# Mock interviews&lt;br /&gt;
as well as just having access to someone with more experience than you.&lt;br /&gt;
&lt;br /&gt;
===Design===&lt;br /&gt;
&lt;br /&gt;
The program will simply be a postings board (https://csclub.uwaterloo.ca/mentoring), where people can post their availability and/or desire for mentorship.&lt;br /&gt;
&lt;br /&gt;
Mentors can take on up to three mentees at a time, and can choose how many they want at a time (including zero, if they want to temporarily cancel their involvement, say during co-op or a busy term).&lt;br /&gt;
&lt;br /&gt;
Mentors can themselves have mentors: mentored students can come in and get help. Hopefully after a year or two a useful mentorship will simply evolve into a friendship.&lt;br /&gt;
&lt;br /&gt;
Participants provide some subset of:&lt;br /&gt;
* preferred contact methods&lt;br /&gt;
* program and year&lt;br /&gt;
* interests / courses&lt;br /&gt;
&lt;br /&gt;
Pairings will be made by ..............?&lt;br /&gt;
&lt;br /&gt;
===Rules===&lt;br /&gt;
&lt;br /&gt;
Many of the other mentorship programs have some sort of ethics code. We (being m4 and nick) want to minimize bureaucracy, but will need some way to chastise or get rid of bad mentors that&#039;s better than just pulling the rug out from under them and their mentees. Perhaps we should just start it and add rules if we feel they are absolutely necessary as issues crop up.&lt;br /&gt;
&lt;br /&gt;
For now:&lt;br /&gt;
# You must be a CSC member to use the postings board. The bar for participation in mentorship is the same bar for being a CSC member.&lt;br /&gt;
# Pairings will be dissolved in an account expires (or if an account is deleted, i.e. one term after it expires?)&lt;br /&gt;
# [https://uwaterloo.ca/secretariat/policies-procedures-guidelines/policy-71 Do not do your mentees homework for them]&lt;br /&gt;
&lt;br /&gt;
===Competition===&lt;br /&gt;
&lt;br /&gt;
There are other mentorship programs floating around campus. We might both learn from or overlap awkwardly with them. Below is meant to be a full list, but may be missing entries:&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
!Program!!Notes!!Status&lt;br /&gt;
|-&lt;br /&gt;
|Math Mentoring||Every Math orientation leader is automatically trained (supposedly via SSO, see below) to be a mentor, and assigned a set of 10 or so first years to mentor. Hands-off approach, in hopes of natural community effects taking effect. Paritioned on gender, orientation group, and program.||First two years were sort of a flop, but currently going into their third year with high hopes. Started and overseen by Riley Metzger and Ana Freitas; currently run by Ravi Patel (r48patel) and Andre Liao (xqliao) &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|[https://cs.uwaterloo.ca/wics/mentoring WiCS]&lt;br /&gt;
|For women only. For pairing upper years with first years only. Onerous monthly written reports from &#039;&#039;&#039;all&#039;&#039;&#039; participants, intimidating (but perhaps necessary) ethics code&lt;br /&gt;
|?? (does anyone know how much traction they have?)&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|[https://uwaterloo.ca/women-in-engineering/mentorship-program Women in Engineering]||Lots of warm-fuzzy soft-skills advice. Not much detail on their site about what they actually do. Onerity: low? Seems similar to the design we were envisioning, though again they are only interested in pairing first years with upper years.||Seems active: they host workshop events https://uwaterloo.ca/women-in-engineering/events&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|[https://www.eng.uwaterloo.ca/askanengalumni/ AskEngAlumni]||For engineers||Seems dead?&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.ddclub.uwaterloo.ca/admissions/mentorship.php DDC]||For double-degree students. Similar in scope to CSC-mentorship.|| ???????&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|[https://developers.google.com/open-source/organizations GSoC]||What does GSoC do? How do they handle churn and dropouts and ethics?||Very popular and busy and big and &#039;&#039;&#039;&#039;&#039;funded&#039;&#039;&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|[https://uwaterloo.ca/sso/tutoring Student Success Office Tutor Connect]||Onerous click-through policy. For-profit postings. The university washes its hands of overseeing quality.||Absolutely, totally, dead. Also, hung their search badly by selecting every course.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|[http://asclub.uwaterloo.ca/ ActSci Club]||They don&#039;t have a mentorship program, they have mentorship events where the first n (n~=20) frosh that sign up get to have a mock interview by the senior asclub members, and then they all drink bubble tea||Busy!&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Nguenthe</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3493</id>
		<title>Security Workshops</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3493"/>
		<updated>2013-09-23T17:50:23Z</updated>

		<summary type="html">&lt;p&gt;Nguenthe: forgive me, i suck, sjcglads&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;In light of the orwellian nightmare we&#039;ve built ourselves into, now is a good time for the CSClub to pick up the slack it usually picks and teach people how to be safe out there. &lt;br /&gt;
&lt;br /&gt;
=Topics, and slides=&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This information is fuzzy and subject to change. Do not trust it.&lt;br /&gt;
&lt;br /&gt;
sharvey, m4, and nguenthe are adminning this term&#039;s series&lt;br /&gt;
&lt;br /&gt;
Though the topics are diverse, the ones we will favour actually running are seminars that are short, to the point, and give a specific skill(set).&lt;br /&gt;
&lt;br /&gt;
Note: might be worth organizing this better by theme -sharvey&lt;br /&gt;
&lt;br /&gt;
* sharvey on &#039;&#039;Why Should You Care About Security and Privacy&#039;&#039; &lt;br /&gt;
* ?????? on &#039;&#039;Storytime: Snowden Roundup&#039;&#039; (sharvey might be able to get some people from CrySP to discuss this; perhaps a panel followed by a Q&amp;amp;A?)&lt;br /&gt;
* ?????? on &#039;&#039;Storytime: [http://en.wikipedia.org/wiki/Weev Weev]&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Storytime: Kevin Mitnick&#039;&#039;&lt;br /&gt;
* nguenthe on &#039;&#039;[http://www.cypherpunks.ca/otr OTR]&#039;&#039; -- or IanG if we can get him!&lt;br /&gt;
* ?????? on &#039;&#039;Time Machines&#039;&#039; (Google-hacking, pleaserobme.com, etc)&lt;br /&gt;
* ?????? on &#039;&#039;Security Proofs: How Many Joules does the NSA Have?&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Full Disk Encryption&#039;&#039; (zablache maybe)&lt;br /&gt;
* ?????? on &#039;&#039;SSH&#039;&#039;&lt;br /&gt;
* [mailto:stephen.palmateer@gmail.com Stephen Palmateer] of KWLUG on &#039;&#039;Tor&#039;&#039; (vs i2p vs Freenet vs /r/darknet?)&lt;br /&gt;
* yd2dong on &#039;&#039;Tunnelling and VPNs&#039;&#039; -- he&#039;s done original research on this area, would discuss censorship techniques (for example, DPI filters), how to defeat them, and significant additional hurdles for anti-censorship compared to simply protecting against eavesdropping (IOW, TLS is not enough).&lt;br /&gt;
* ?????? on &#039;&#039;Your Wifi Network is Insecure&#039;&#039; (cover: aircrack-ng and reaver. maybe nmap and metasploit)&lt;br /&gt;
* [mailto:silver@callysto.com Sean Howard] on &#039;&#039;How your ISP owns you&#039;&#039; (UW grad, ex Watsfic president, currently working for sentex.ca, knows details of Bell&#039;s network infrastructure and where the chokepoints are)&lt;br /&gt;
* [http://cybersecurityinstitute.ca/ The Canadian Cybersecurity Institute] on &#039;&#039;Social Exploits&#039;&#039; (this person is via Sean Howard. Seems legit.)&lt;br /&gt;
* nablack and sjcglads with a security demo + open ended question session&lt;br /&gt;
* sjcglads on &#039;&#039;Secrets of a DDoS&#039;&#039;&lt;br /&gt;
* wlritchi on &#039;&#039;Reversing SBeam and pnwing ur phone&#039;&#039;&lt;br /&gt;
* mtrberzi on &#039;&#039;GPG, Keyservers, and You&#039;&#039; and with a keysigning party to boot&lt;br /&gt;
* v2buterin on &#039;&#039;Bitcoin and Bitmessage&#039;&#039; (maybe? pretty please?)&lt;br /&gt;
* IST Security:&lt;br /&gt;
** [mailto:pmatlock@uwaterloo.ca Patrick Matlock] on some combination or subset of oauth, identity, data privacy ([https://uwaterloo.ca/secretariat/policies-procedures-guidelines/policy-8 Policy 8]), and web pentesting&lt;br /&gt;
*** csrf&lt;br /&gt;
*** script injections&lt;br /&gt;
*** ....&lt;br /&gt;
** [mailto:tlabach@uwaterloo.ca Terry Labach] on [http://ist.uwaterloo.ca/~tlabach/safer/ safer web browsing]&lt;br /&gt;
** [mailto:cpbell@uwaterloo.ca Colin Bell]?&lt;br /&gt;
* Sapphyre?&lt;br /&gt;
* Hatguy!&lt;br /&gt;
* ?????? on &#039;&#039;Passwords&#039;&#039; (touch on [http://xkcd.com/936/ security proofs], hashapass/pwdhash, alternatives to passwords (biometrics, one time pads, challenge-response, ssh keys), NOT SHARING YOUR DAMN PASSWORDS ACROSS SITES (cite: the ps3 attack, the [linkedin attack], the [http://techcrunch.com/2009/12/14/rockyou-hack-security-myspace-facebook-passwords/ rockyou attack] ([http://www.tomshardware.com/news/imperva-rockyou-most-common-passwords,9486.html super] [http://reusablesec.blogspot.ca/2010/01/more-analysis-of-rockyou-password-list.html interesting] [http://blog.jimmyr.com/Password_analysis_of_databases_that_were_hacked_28_2009.php analysis], myspace&#039;s hack, FaithWriters, purerave.com&#039;s attempt at better security that made it worse, the ....) and how to use jacktheripper/[http://hashcat.net/hashcat/ hashcat])&lt;br /&gt;
* ?????? on &#039;&#039;Browser Fingerprinting&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Filesystem Forensics and the Dangers of Log-Structured Data Storage&#039;&#039; (live demo!) (zablache maybe)&lt;br /&gt;
* ?????? on &#039;&#039;SSL: It&#039;s Broken&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Storytime: Exporting &amp;quot;Munitions&amp;quot;&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Stegonography&#039;&#039; (might be able to get sharvey&#039;s SO to cover this)&lt;br /&gt;
* ?????? on &#039;&#039;Digital Watermarks&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Getting root in 5 minutes with physical access&#039;&#039; (cover how to boot single-user in all versions of Windows, OS X, Linux, and when that fails how to pull a drive and crack the password with l0phtcrack (Win32) or simply editing /etc/shadow (*nix). also the [https://citp.princeton.edu/research/memory/ compressed air-&amp;gt;frozen RAM] and Firewire-DMA attacks)&lt;br /&gt;
* ?????? on &#039;&#039;What is Identity&#039;&#039; (maybe toss this out to WPIRG?) with info on how sites and overlords (facebook, google) identify you, and how to split your identity digitally&lt;br /&gt;
* ?????? on &#039;&#039;Physical Security&#039;&#039; ([http://lockwiki.com/index.php/Main_Page locks], safes, etc.)&lt;br /&gt;
* ?????? on &#039;&#039;Crypto: terms, definitions, and why software still sucks&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Entropy and Randomness and why you shouldn&#039;t trust your router&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Network things&#039;&#039; (ARP, DNS, etc.)&lt;br /&gt;
* ?????? on &#039;&#039;Side Channels&#039;&#039; (sharvey&#039;s SO will probably do this)&lt;br /&gt;
&lt;br /&gt;
And remember kids, &#039;&#039;&#039;&#039;&#039;educational-use only&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=WPIRG cross promotion=&lt;br /&gt;
&lt;br /&gt;
[http://wpirg.org WPIRG] wants to cross-promote a &amp;quot;privacy forum&amp;quot; with us. They are imagining as an expert panel + QA session, during November. Probably the ideal distribution is csc events on the technical side (&amp;quot;how to shot pgp&amp;quot;, &amp;quot;how to make tls go&amp;quot;, &amp;quot;wat is passwurd&amp;quot;) with WPIRG on the human-scale and politics side, with advertising to both of our cohorts for all events. Some ideas for expert participants:&lt;br /&gt;
* [https://cs.uwaterloo.ca/~iang/ Ian Goldberg] (sharvey)&lt;br /&gt;
* [http://www.michaelgeist.ca/tags/privacy Michael Geist]&lt;br /&gt;
* ????&lt;br /&gt;
* Terry Labach (this sort of thing is, actually, directly within his job description)&lt;br /&gt;
* [http://thoughtcrime.org Marlie Moxinspike]&lt;br /&gt;
* UofT Citizen Lab People&lt;br /&gt;
&lt;br /&gt;
=Related work and Telling Evidence=&lt;br /&gt;
&lt;br /&gt;
====Related Work====&lt;br /&gt;
[https://ssd.eff.org/ EFF&#039;s Surveillance Self-Defense Guide]&lt;br /&gt;
&lt;br /&gt;
[https://www.encrypteverything.ca/ Pirate Party&#039;s EncryptEverything]&lt;br /&gt;
&lt;br /&gt;
https://citizenlab.org/ @ UofT&lt;br /&gt;
&lt;br /&gt;
[http://cm.bell-labs.com/who/ken/trust.html Ken Thompson - Reflections on Trusting Trust]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
http://www.jbonneau.com/publications.html&lt;br /&gt;
&lt;br /&gt;
====Evidence====&lt;br /&gt;
http://readwrite.com/2010/08/04/google_ceo_schmidt_people_arent_ready_for_the_tech&lt;br /&gt;
&lt;br /&gt;
====IMPORTANT MEDIA====&lt;br /&gt;
3 Dead Trolls in a Baggie - The Privacy Song&lt;br /&gt;
MC Frontalot - Secrets from the Future&lt;br /&gt;
&lt;br /&gt;
[http://www.xkcd.com/538/ XKCD: Security]&lt;br /&gt;
[http://xkcd.com/936/ XKCD: Password Strength]&lt;br /&gt;
&lt;br /&gt;
=Past by Term=&lt;br /&gt;
===Fall 2013===&lt;br /&gt;
...&lt;/div&gt;</summary>
		<author><name>Nguenthe</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3490</id>
		<title>Security Workshops</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3490"/>
		<updated>2013-09-23T14:41:00Z</updated>

		<summary type="html">&lt;p&gt;Nguenthe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;In light of the orwellian nightmare we&#039;ve built ourselves into, now is a good time for the CSClub to pick up the slack it usually picks and teach people how to be safe out there. &lt;br /&gt;
&lt;br /&gt;
=Topics, and slides=&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This information is fuzzy and subject to change. Do not trust it.&lt;br /&gt;
&lt;br /&gt;
sharvey, m4, and nguenthe are adminning this term&#039;s series&lt;br /&gt;
&lt;br /&gt;
Though the topics are diverse, the ones we will favour actually running are seminars that are short, to the point, and give a specific skill(set).&lt;br /&gt;
&lt;br /&gt;
Note: might be worth organizing this better by theme -sharvey&lt;br /&gt;
&lt;br /&gt;
* sharvey on &#039;&#039;Why Should You Care About Security and Privacy&#039;&#039; &lt;br /&gt;
* ?????? on &#039;&#039;Storytime: Snowden Roundup&#039;&#039; (sharvey might be able to get some people from CrySP to discuss this; perhaps a panel followed by a Q&amp;amp;A?)&lt;br /&gt;
* ?????? on &#039;&#039;Storytime: [http://en.wikipedia.org/wiki/Weev Weev]&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Storytime: Kevin Mitnick&#039;&#039;&lt;br /&gt;
* nguenthe on &#039;&#039;[http://www.cypherpunks.ca/otr OTR]&#039;&#039; -- or IanG if we can get him!&lt;br /&gt;
* ?????? on &#039;&#039;Time Machines&#039;&#039; (Google-hacking, pleaserobme.com, etc)&lt;br /&gt;
* ?????? on &#039;&#039;Security Proofs: How Many Joules does the NSA Have?&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Full Disk Encryption&#039;&#039; (zablache maybe)&lt;br /&gt;
* ?????? on &#039;&#039;SSH&#039;&#039;&lt;br /&gt;
* [mailto:stephen.palmateer@gmail.com Stephen Palmateer] of KWLUG on &#039;&#039;Tor&#039;&#039; (vs i2p vs Freenet vs /r/darknet?)&lt;br /&gt;
* yd2dong on &#039;&#039;Tunnelling and VPNs&#039;&#039; -- he&#039;s done original research on this area, would discuss censorship techniques (for example, DPI filters), how to defeat them, and significant additional hurdles for anti-censorship compared to simply protecting against eavesdropping (IOW, TLS is not enough).&lt;br /&gt;
* ?????? on &#039;&#039;Your Wifi Network is Insecure&#039;&#039; (cover: aircrack-ng and reaver. maybe nmap and metasploit)&lt;br /&gt;
* [mailto:silver@callysto.com Sean Howard] on &#039;&#039;How your ISP owns you&#039;&#039; (UW grad, ex Watsfic president, currently working for sentex.ca, knows details of Bell&#039;s network infrastructure and where the chokepoints are)&lt;br /&gt;
* [http://cybersecurityinstitute.ca/ The Canadian Cybersecurity Institute] on &#039;&#039;Social Exploits&#039;&#039; (this person is via Sean Howard. Seems legit.)&lt;br /&gt;
* nablack and m4farrel with a security demo + open ended question session&lt;br /&gt;
* m4farrel on &#039;&#039;Secrets of a DDoS&#039;&#039;&lt;br /&gt;
* wlritchi on &#039;&#039;Reversing SBeam and pnwing ur phone&#039;&#039;&lt;br /&gt;
* mtrberzi on &#039;&#039;GPG, Keyservers, and You&#039;&#039; and with a keysigning party to boot&lt;br /&gt;
* v2buterin on &#039;&#039;Bitcoin and Bitmessage&#039;&#039; (maybe? pretty please?)&lt;br /&gt;
* IST Security:&lt;br /&gt;
** [mailto:pmatlock@uwaterloo.ca Patrick Matlock] on some combination or subset of oauth, identity, data privacy ([https://uwaterloo.ca/secretariat/policies-procedures-guidelines/policy-8 Policy 8]), and web pentesting&lt;br /&gt;
*** csrf&lt;br /&gt;
*** script injections&lt;br /&gt;
*** ....&lt;br /&gt;
** [mailto:tlabach@uwaterloo.ca Terry Labach] on [http://ist.uwaterloo.ca/~tlabach/safer/ safer web browsing]&lt;br /&gt;
** [mailto:cpbell@uwaterloo.ca Colin Bell]?&lt;br /&gt;
* Sapphyre?&lt;br /&gt;
* Hatguy!&lt;br /&gt;
* ?????? on &#039;&#039;Passwords&#039;&#039; (touch on [http://xkcd.com/936/ security proofs], hashapass/pwdhash, alternatives to passwords (biometrics, one time pads, challenge-response, ssh keys), NOT SHARING YOUR DAMN PASSWORDS ACROSS SITES (cite: the ps3 attack, the [linkedin attack], the [http://techcrunch.com/2009/12/14/rockyou-hack-security-myspace-facebook-passwords/ rockyou attack] ([http://www.tomshardware.com/news/imperva-rockyou-most-common-passwords,9486.html super] [http://reusablesec.blogspot.ca/2010/01/more-analysis-of-rockyou-password-list.html interesting] [http://blog.jimmyr.com/Password_analysis_of_databases_that_were_hacked_28_2009.php analysis], myspace&#039;s hack, FaithWriters, purerave.com&#039;s attempt at better security that made it worse, the ....) and how to use jacktheripper/[http://hashcat.net/hashcat/ hashcat])&lt;br /&gt;
* ?????? on &#039;&#039;Browser Fingerprinting&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Filesystem Forensics and the Dangers of Log-Structured Data Storage&#039;&#039; (live demo!) (zablache maybe)&lt;br /&gt;
* ?????? on &#039;&#039;SSL: It&#039;s Broken&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Storytime: Exporting &amp;quot;Munitions&amp;quot;&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Stegonography&#039;&#039; (might be able to get sharvey&#039;s SO to cover this)&lt;br /&gt;
* ?????? on &#039;&#039;Digital Watermarks&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Getting root in 5 minutes with physical access&#039;&#039; (cover how to boot single-user in all versions of Windows, OS X, Linux, and when that fails how to pull a drive and crack the password with l0phtcrack (Win32) or simply editing /etc/shadow (*nix). also the [https://citp.princeton.edu/research/memory/ compressed air-&amp;gt;frozen RAM] and Firewire-DMA attacks)&lt;br /&gt;
* ?????? on &#039;&#039;What is Identity&#039;&#039; (maybe toss this out to WPIRG?) with info on how sites and overlords (facebook, google) identify you, and how to split your identity digitally&lt;br /&gt;
* ?????? on &#039;&#039;Physical Security&#039;&#039; ([http://lockwiki.com/index.php/Main_Page locks], safes, etc.)&lt;br /&gt;
* ?????? on &#039;&#039;Crypto: terms, definitions, and why software still sucks&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Entropy and Randomness and why you shouldn&#039;t trust your router&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Network things&#039;&#039; (ARP, DNS, etc.)&lt;br /&gt;
* ?????? on &#039;&#039;Side Channels&#039;&#039; (sharvey&#039;s SO will probably do this)&lt;br /&gt;
&lt;br /&gt;
And remember kids, &#039;&#039;&#039;&#039;&#039;educational-use only&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=WPIRG cross promotion=&lt;br /&gt;
&lt;br /&gt;
[http://wpirg.org WPIRG] wants to cross-promote a &amp;quot;privacy forum&amp;quot; with us. They are imagining as an expert panel + QA session, during November. Probably the ideal distribution is csc events on the technical side (&amp;quot;how to shot pgp&amp;quot;, &amp;quot;how to make tls go&amp;quot;, &amp;quot;wat is passwurd&amp;quot;) with WPIRG on the human-scale and politics side, with advertising to both of our cohorts for all events. Some ideas for expert participants:&lt;br /&gt;
* [https://cs.uwaterloo.ca/~iang/ Ian Goldberg] (sharvey)&lt;br /&gt;
* [http://www.michaelgeist.ca/tags/privacy Michael Geist]&lt;br /&gt;
* ????&lt;br /&gt;
* Terry Labach (this sort of thing is, actually, directly within his job description)&lt;br /&gt;
* [http://thoughtcrime.org Marlie Moxinspike]&lt;br /&gt;
* UofT Citizen Lab People&lt;br /&gt;
&lt;br /&gt;
=Related work and Telling Evidence=&lt;br /&gt;
&lt;br /&gt;
====Related Work====&lt;br /&gt;
[https://ssd.eff.org/ EFF&#039;s Surveillance Self-Defense Guide]&lt;br /&gt;
&lt;br /&gt;
[https://www.encrypteverything.ca/ Pirate Party&#039;s EncryptEverything]&lt;br /&gt;
&lt;br /&gt;
https://citizenlab.org/ @ UofT&lt;br /&gt;
&lt;br /&gt;
[http://cm.bell-labs.com/who/ken/trust.html Ken Thompson - Reflections on Trusting Trust]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
http://www.jbonneau.com/publications.html&lt;br /&gt;
&lt;br /&gt;
====Evidence====&lt;br /&gt;
http://readwrite.com/2010/08/04/google_ceo_schmidt_people_arent_ready_for_the_tech&lt;br /&gt;
&lt;br /&gt;
====IMPORTANT MEDIA====&lt;br /&gt;
3 Dead Trolls in a Baggie - The Privacy Song&lt;br /&gt;
MC Frontalot - Secrets from the Future&lt;br /&gt;
&lt;br /&gt;
[http://www.xkcd.com/538/ XKCD: Security]&lt;br /&gt;
[http://xkcd.com/936/ XKCD: Password Strength]&lt;br /&gt;
&lt;br /&gt;
=Past by Term=&lt;br /&gt;
===Fall 2013===&lt;br /&gt;
...&lt;/div&gt;</summary>
		<author><name>Nguenthe</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3489</id>
		<title>Security Workshops</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3489"/>
		<updated>2013-09-22T21:37:18Z</updated>

		<summary type="html">&lt;p&gt;Nguenthe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;In light of the orwellian nightmare we&#039;ve built ourselves into, now is a good time for the CSClub to pick up the slack it usually picks and teach people how to be safe out there. &lt;br /&gt;
&lt;br /&gt;
=Topics, and slides=&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This information is fuzzy and subject to change. Do not trust it.&lt;br /&gt;
&lt;br /&gt;
sharvey, m4, and nguenthe are adminning this term&#039;s series&lt;br /&gt;
&lt;br /&gt;
Though the topics are diverse, the ones we will favour actually running are seminars that are short, to the point, and give a specific skill(set).&lt;br /&gt;
&lt;br /&gt;
Note: might be worth organizing this better by theme -sharvey&lt;br /&gt;
&lt;br /&gt;
* sharvey on &#039;&#039;Why Should You Care About Security and Privacy&#039;&#039; &lt;br /&gt;
* ?????? on &#039;&#039;Storytime: Snowden Roundup&#039;&#039; (sharvey might be able to get some people from CrySP to discuss this; perhaps a panel followed by a Q&amp;amp;A?)&lt;br /&gt;
* ?????? on &#039;&#039;Storytime: [http://en.wikipedia.org/wiki/Weev Weev]&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Storytime: Kevin Mitnick&#039;&#039;&lt;br /&gt;
* nguenthe on &#039;&#039;[http://www.cypherpunks.ca/otr OTR]&#039;&#039; -- or IanG if we can get him!&lt;br /&gt;
* ?????? on &#039;&#039;Time Machines&#039;&#039; (Google-hacking, pleaserobme.com, etc)&lt;br /&gt;
* ?????? on &#039;&#039;Security Proofs: How Many Joules does the NSA Have?&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Full Disk Encryption&#039;&#039; (zablache maybe)&lt;br /&gt;
* ?????? on &#039;&#039;SSH&#039;&#039;&lt;br /&gt;
* [mailto:stephen.palmateer@gmail.com Stephen Palmateer] of KWLUG on &#039;&#039;Tor&#039;&#039; (vs i2p vs Freenet vs /r/darknet?)&lt;br /&gt;
* yd2dong on &#039;&#039;Tunnelling and VPNs&#039;&#039; -- he&#039;s done original research on this area, would discuss censorship techniques (for example, DPI filters), how to defeat them, and significant additional hurdles for anti-censorship compared to simply protecting against eavesdropping (IOW, TLS is not enough).&lt;br /&gt;
* ?????? on &#039;&#039;Your Wifi Network is Insecure&#039;&#039; (cover: aircrack-ng and reaver. maybe nmap and metasploit)&lt;br /&gt;
* [mailto:silver@callysto.com Sean Howard] on &#039;&#039;How your ISP owns you&#039;&#039; (UW grad, ex Watsfic president, currently working for sentex.ca, knows details of Bell&#039;s network infrastructure and where the chokepoints are)&lt;br /&gt;
* nablack and m4farrel with a security demo + open ended question session&lt;br /&gt;
* m4farrel on &#039;&#039;Secrets of a DDoS&#039;&#039;&lt;br /&gt;
* wlritchi on &#039;&#039;Reversing SBeam and pnwing ur phone&#039;&#039;&lt;br /&gt;
* mtrberzi on &#039;&#039;GPG, Keyservers, and You&#039;&#039; and with a keysigning party to boot&lt;br /&gt;
* v2buterin on &#039;&#039;Bitcoin and Bitmessage&#039;&#039; (maybe? pretty please?)&lt;br /&gt;
* IST Security:&lt;br /&gt;
** [mailto:pmatlock@uwaterloo.ca Patrick Matlock] on some combination or subset of oauth, identity, data privacy ([https://uwaterloo.ca/secretariat/policies-procedures-guidelines/policy-8 Policy 8]), and web pentesting&lt;br /&gt;
*** csrf&lt;br /&gt;
*** script injections&lt;br /&gt;
*** ....&lt;br /&gt;
** [mailto:tlabach@uwaterloo.ca Terry Labach] on [http://ist.uwaterloo.ca/~tlabach/safer/ safer web browsing]&lt;br /&gt;
** [mailto:cpbell@uwaterloo.ca Colin Bell]?&lt;br /&gt;
* Sapphyre?&lt;br /&gt;
* Hatguy!&lt;br /&gt;
* ?????? on &#039;&#039;Passwords&#039;&#039; (touch on [http://xkcd.com/936/ security proofs], hashapass/pwdhash, alternatives to passwords (biometrics, one time pads, challenge-response, ssh keys), NOT SHARING YOUR DAMN PASSWORDS ACROSS SITES (cite: the ps3 attack, the [linkedin attack], the [http://techcrunch.com/2009/12/14/rockyou-hack-security-myspace-facebook-passwords/ rockyou attack] ([http://www.tomshardware.com/news/imperva-rockyou-most-common-passwords,9486.html super] [http://reusablesec.blogspot.ca/2010/01/more-analysis-of-rockyou-password-list.html interesting] [http://blog.jimmyr.com/Password_analysis_of_databases_that_were_hacked_28_2009.php analysis], myspace&#039;s hack, FaithWriters, purerave.com&#039;s attempt at better security that made it worse, the ....) and how to use jacktheripper/[http://hashcat.net/hashcat/ hashcat])&lt;br /&gt;
* ?????? on &#039;&#039;Browser Fingerprinting&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Filesystem Forensics and the Dangers of Log-Structured Data Storage&#039;&#039; (live demo!) (zablache maybe)&lt;br /&gt;
* ?????? on &#039;&#039;SSL: It&#039;s Broken&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Storytime: Exporting &amp;quot;Munitions&amp;quot;&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Stegonography&#039;&#039; (might be able to get sharvey&#039;s SO to cover this)&lt;br /&gt;
* ?????? on &#039;&#039;Digital Watermarks&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Getting root in 5 minutes with physical access&#039;&#039; (cover how to boot single-user in all versions of Windows, OS X, Linux, and when that fails how to pull a drive and crack the password with l0phtcrack (Win32) or simply editing /etc/shadow (*nix). also the [https://citp.princeton.edu/research/memory/ compressed air-&amp;gt;frozen RAM] and Firewire-DMA attacks)&lt;br /&gt;
* ?????? on &#039;&#039;What is Identity&#039;&#039; (maybe toss this out to WPIRG?) with info on how sites and overlords (facebook, google) identify you, and how to split your identity digitally&lt;br /&gt;
* ?????? on &#039;&#039;Physical Security&#039;&#039; ([http://lockwiki.com/index.php/Main_Page locks], safes, etc.)&lt;br /&gt;
* ?????? on &#039;&#039;Crypto: terms, definitions, and why software still sucks&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Entropy and Randomness and why you shouldn&#039;t trust your router&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Network things&#039;&#039; (ARP, DNS, etc.)&lt;br /&gt;
* ?????? on &#039;&#039;Side Channels&#039;&#039; (sharvey&#039;s SO will probably do this)&lt;br /&gt;
&lt;br /&gt;
And remember kids, &#039;&#039;&#039;&#039;&#039;educational-use only&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=WPIRG cross promotion=&lt;br /&gt;
&lt;br /&gt;
[http://wpirg.org WPIRG] wants to cross-promote a &amp;quot;privacy forum&amp;quot; with us. They are imagining as an expert panel + QA session, during November. Probably the ideal distribution is csc events on the technical side (&amp;quot;how to shot pgp&amp;quot;, &amp;quot;how to make tls go&amp;quot;, &amp;quot;wat is passwurd&amp;quot;) with WPIRG on the human-scale and politics side, with advertising to both of our cohorts for all events. Some ideas for expert participants:&lt;br /&gt;
* [https://cs.uwaterloo.ca/~iang/ Ian Goldberg] (sharvey)&lt;br /&gt;
* [http://www.michaelgeist.ca/tags/privacy Michael Geist]&lt;br /&gt;
* ????&lt;br /&gt;
* Terry Labach (this sort of thing is, actually, directly within his job description)&lt;br /&gt;
* [http://thoughtcrime.org Marlie Moxinspike]&lt;br /&gt;
* UofT Citizen Lab People&lt;br /&gt;
&lt;br /&gt;
=Related work and Telling Evidence=&lt;br /&gt;
&lt;br /&gt;
====Related Work====&lt;br /&gt;
[https://ssd.eff.org/ EFF&#039;s Surveillance Self-Defense Guide]&lt;br /&gt;
&lt;br /&gt;
[https://www.encrypteverything.ca/ Pirate Party&#039;s EncryptEverything]&lt;br /&gt;
&lt;br /&gt;
https://citizenlab.org/ @ UofT&lt;br /&gt;
&lt;br /&gt;
[http://cm.bell-labs.com/who/ken/trust.html Ken Thompson - Reflections on Trusting Trust]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
http://www.jbonneau.com/publications.html&lt;br /&gt;
&lt;br /&gt;
====Evidence====&lt;br /&gt;
http://readwrite.com/2010/08/04/google_ceo_schmidt_people_arent_ready_for_the_tech&lt;br /&gt;
&lt;br /&gt;
====IMPORTANT MEDIA====&lt;br /&gt;
3 Dead Trolls in a Baggie - The Privacy Song&lt;br /&gt;
MC Frontalot - Secrets from the Future&lt;br /&gt;
&lt;br /&gt;
[http://www.xkcd.com/538/ XKCD: Security]&lt;br /&gt;
[http://xkcd.com/936/ XKCD: Password Strength]&lt;br /&gt;
&lt;br /&gt;
=Past by Term=&lt;br /&gt;
===Fall 2013===&lt;br /&gt;
...&lt;/div&gt;</summary>
		<author><name>Nguenthe</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3488</id>
		<title>Security Workshops</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3488"/>
		<updated>2013-09-22T19:04:29Z</updated>

		<summary type="html">&lt;p&gt;Nguenthe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;In light of the orwellian nightmare we&#039;ve built ourselves into, now is a good time for the CSClub to pick up the slack it usually picks and teach people how to be safe out there. &lt;br /&gt;
&lt;br /&gt;
=Topics, and slides=&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This information is fuzzy and subject to change. Do not trust it.&lt;br /&gt;
&lt;br /&gt;
sharvey, m4, and nguenthe are adminning this term&#039;s series&lt;br /&gt;
&lt;br /&gt;
Though the topics are diverse, the ones we will favour actually running are seminars that are short, to the point, and give a specific skill(set).&lt;br /&gt;
&lt;br /&gt;
Note: might be worth organizing this better by theme -sharvey&lt;br /&gt;
&lt;br /&gt;
* sharvey on &#039;&#039;Why Should You Care About Security and Privacy&#039;&#039; &lt;br /&gt;
* ?????? on &#039;&#039;Storytime: Snowden Roundup&#039;&#039; (sharvey might be able to get some people from CrySP to discuss this; perhaps a panel followed by a Q&amp;amp;A?)&lt;br /&gt;
* ?????? on &#039;&#039;Storytime: [http://en.wikipedia.org/wiki/Weev Weev]&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Storytime: Kevin Mitnick&#039;&#039;&lt;br /&gt;
* nguenthe on &#039;&#039;[http://www.cypherpunks.ca/otr OTR]&#039;&#039; -- or IanG if we can get him!&lt;br /&gt;
* ?????? on &#039;&#039;Time Machines&#039;&#039; (Google-hacking, pleaserobme.com, etc)&lt;br /&gt;
* ?????? on &#039;&#039;Security Proofs: How Many Joules does the NSA Have?&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Full Disk Encryption&#039;&#039; (zablache maybe)&lt;br /&gt;
* ?????? on &#039;&#039;SSH&#039;&#039;&lt;br /&gt;
* [mailto:stephen.palmateer@gmail.com Stephen Palmateer] of KWLUG on &#039;&#039;Tor&#039;&#039; (vs i2p vs Freenet vs /r/darknet?)&lt;br /&gt;
* yd2dong on &#039;&#039;Tunnelling and VPNs&#039;&#039; -- he&#039;s done original research on this area, would discuss censorship techniques (for example, DPI filters), how to defeat them, and significant additional hurdles for anti-censorship compared to simply protecting against eavesdropping (IOW, TLS is not enough).&lt;br /&gt;
* ?????? on &#039;&#039;Your Wifi Network is Insecure&#039;&#039; (cover: aircrack-ng and reaver. maybe nmap and metasploit)&lt;br /&gt;
* [mailto:silver@callysto.com Sean Howard] on &#039;&#039;How your ISP owns you&#039;&#039; (UW grad, ex Watsfic president, currently working for sentex.ca, knows details of Bell&#039;s network infrastructure and where the chokepoints are)&lt;br /&gt;
* nablack and m4farrel with a security demo + open ended question session&lt;br /&gt;
* m4farrel on &#039;&#039;Secrets of a DDoS&#039;&#039;&lt;br /&gt;
* wlritchi on &#039;&#039;Reversing SBeam and pnwing ur phone&#039;&#039;&lt;br /&gt;
* mtrberzi on &#039;&#039;GPG, Keyservers, and You&#039;&#039; and with a keysigning party to boot&lt;br /&gt;
* v2buterin on &#039;&#039;Bitcoin and Bitmessage&#039;&#039; (maybe? pretty please?)&lt;br /&gt;
* IST Security:&lt;br /&gt;
** [mailto:pmatlock@uwaterloo.ca Patrick Matlock] on some combination or subset of oauth, identity, data privacy ([https://uwaterloo.ca/secretariat/policies-procedures-guidelines/policy-8 Policy 8]), and web pentesting&lt;br /&gt;
*** csrf&lt;br /&gt;
*** script injections&lt;br /&gt;
*** ....&lt;br /&gt;
** [mailto:tlabach@uwaterloo.ca Terry Labach] on [http://ist.uwaterloo.ca/~tlabach/safer/ safer web browsing]&lt;br /&gt;
** [mailto:cpbell@uwaterloo.ca Colin Bell]?&lt;br /&gt;
* Sapphyre?&lt;br /&gt;
* Hatguy!&lt;br /&gt;
* ?????? on &#039;&#039;Passwords&#039;&#039; (touch on [http://xkcd.com/936/ security proofs], hashapass/pwdhash, alternatives to passwords (biometrics, one time pads, challenge-response, ssh keys), NOT SHARING YOUR DAMN PASSWORDS ACROSS SITES (cite: the ps3 attack, the [linkedin attack], the [http://techcrunch.com/2009/12/14/rockyou-hack-security-myspace-facebook-passwords/ rockyou attack] ([http://www.tomshardware.com/news/imperva-rockyou-most-common-passwords,9486.html super] [http://reusablesec.blogspot.ca/2010/01/more-analysis-of-rockyou-password-list.html interesting] [http://blog.jimmyr.com/Password_analysis_of_databases_that_were_hacked_28_2009.php analysis], myspace&#039;s hack, FaithWriters, purerave.com&#039;s attempt at better security that made it worse, the ....) and how to use jacktheripper/[http://hashcat.net/hashcat/ hashcat])&lt;br /&gt;
* ?????? on &#039;&#039;Browser Fingerprinting&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Filesystem Forensics and the Dangers of Log-Structured Data Storage&#039;&#039; (live demo!) (zablache maybe)&lt;br /&gt;
* ?????? on &#039;&#039;SSL: It&#039;s Broken&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Storytime: Exporting &amp;quot;Munitions&amp;quot;&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Stegonography&#039;&#039; (might be able to get sharvey&#039;s SO to cover this)&lt;br /&gt;
* ?????? on &#039;&#039;Digital Watermarks&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Getting root in 5 minutes with physical access&#039;&#039; (cover how to boot single-user in all versions of Windows, OS X, Linux, and when that fails how to pull a drive and crack the password with l0phtcrack (Win32) or simply editing /etc/shadow (*nix). also the [https://citp.princeton.edu/research/memory/ compressed air-&amp;gt;frozen RAM] and Firewire-DMA attacks)&lt;br /&gt;
* ?????? on &#039;&#039;What is Identity&#039;&#039; (maybe toss this out to WPIRG?) with info on how sites and overlords (facebook, google) identify you, and how to split your identity digitally&lt;br /&gt;
* ?????? on &#039;&#039;Physical Security&#039;&#039; ([http://lockwiki.com/index.php/Main_Page locks], safes, etc.)&lt;br /&gt;
* ?????? on &#039;&#039;Crypto: terms, definitions, and why software still sucks&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Entropy and Randomness and why you shouldn&#039;t trust your router&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Network things&#039;&#039; (ARP, DNS, etc.)&lt;br /&gt;
* ?????? on &#039;&#039;Side Channels&#039;&#039; (sharvey&#039;s SO will probably do this)&lt;br /&gt;
&lt;br /&gt;
And remember kids, &#039;&#039;&#039;&#039;&#039;educational-use only&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=WPIRG cross promotion=&lt;br /&gt;
&lt;br /&gt;
[http://wpirg.org WPIRG] wants to cross-promote a &amp;quot;privacy forum&amp;quot; with us. They are imagining as an expert panel + QA session, during November. Probably the ideal distribution is csc events on the technical side (&amp;quot;how to shot pgp&amp;quot;, &amp;quot;how to make tls go&amp;quot;, &amp;quot;wat is passwurd&amp;quot;) with WPIRG on the human-scale and politics side, with advertising to both of our cohorts for all events. Some ideas for expert participants:&lt;br /&gt;
* [https://cs.uwaterloo.ca/~iang/ Ian Goldberg] (sharvey)&lt;br /&gt;
* [http://www.michaelgeist.ca/tags/privacy Michael Geist]&lt;br /&gt;
* ????&lt;br /&gt;
* Terry Labach (this sort of thing is, actually, directly within his job description)&lt;br /&gt;
* [http://thoughtcrime.org Marlie Moxinspike]&lt;br /&gt;
&lt;br /&gt;
=Related work and Telling Evidence=&lt;br /&gt;
&lt;br /&gt;
====Related Work====&lt;br /&gt;
[https://ssd.eff.org/ EFF&#039;s Surveillance Self-Defense Guide]&lt;br /&gt;
&lt;br /&gt;
[https://www.encrypteverything.ca/ Pirate Party&#039;s EncryptEverything]&lt;br /&gt;
&lt;br /&gt;
[http://cm.bell-labs.com/who/ken/trust.html Ken Thompson - Reflections on Trusting Trust]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
http://www.jbonneau.com/publications.html&lt;br /&gt;
&lt;br /&gt;
====Evidence====&lt;br /&gt;
http://readwrite.com/2010/08/04/google_ceo_schmidt_people_arent_ready_for_the_tech&lt;br /&gt;
&lt;br /&gt;
====IMPORTANT MEDIA====&lt;br /&gt;
3 Dead Trolls in a Baggie - The Privacy Song&lt;br /&gt;
MC Frontalot - Secrets from the Future&lt;br /&gt;
&lt;br /&gt;
[http://www.xkcd.com/538/ XKCD: Security]&lt;br /&gt;
[http://xkcd.com/936/ XKCD: Password Strength]&lt;br /&gt;
&lt;br /&gt;
=Past by Term=&lt;br /&gt;
===Fall 2013===&lt;br /&gt;
...&lt;/div&gt;</summary>
		<author><name>Nguenthe</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3487</id>
		<title>Security Workshops</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3487"/>
		<updated>2013-09-22T18:35:18Z</updated>

		<summary type="html">&lt;p&gt;Nguenthe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;In light of the orwellian nightmare we&#039;ve built ourselves into, now is a good time for the CSClub to pick up the slack it usually picks and teach people how to be safe out there. &lt;br /&gt;
&lt;br /&gt;
=Topics, and slides=&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This information is fuzzy and subject to change. Do not trust it.&lt;br /&gt;
&lt;br /&gt;
sharvey, m4, and nguenthe are adminning this term&#039;s series&lt;br /&gt;
&lt;br /&gt;
Though the topics are diverse, the ones we will favour actually running are seminars that are short, to the point, and give a specific skill(set).&lt;br /&gt;
&lt;br /&gt;
Note: might be worth organizing this better by theme -sharvey&lt;br /&gt;
&lt;br /&gt;
* sharvey on &#039;&#039;Why Should You Care About Security and Privacy&#039;&#039; &lt;br /&gt;
* ?????? on &#039;&#039;Snowden Roundup&#039;&#039; (sharvey might be able to get some people from CrySP to discuss this; perhaps a panel followed by a Q&amp;amp;A?)&lt;br /&gt;
* nguenthe on &#039;&#039;[http://www.cypherpunks.ca/otr OTR]&#039;&#039; -- or IanG if we can get him!&lt;br /&gt;
* ?????? on &#039;&#039;Time Machines&#039;&#039; (Google-hacking, pleaserobme.com, etc)&lt;br /&gt;
* ?????? on &#039;&#039;Security Proofs: How Many Joules does the NSA Have?&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Full Disk Encryption&#039;&#039; (zablache maybe)&lt;br /&gt;
* ?????? on &#039;&#039;SSH&#039;&#039;&lt;br /&gt;
* [mailto:stephen.palmateer@gmail.com Stephen Palmateer] of KWLUG on &#039;&#039;Tor&#039;&#039; (vs i2p vs Freenet vs /r/darknet?)&lt;br /&gt;
* yd2dong on &#039;&#039;Tunnelling and VPNs&#039;&#039; -- he&#039;s done original research on this area, would discuss censorship techniques (for example, DPI filters), how to defeat them, and significant additional hurdles for anti-censorship compared to simply protecting against eavesdropping (IOW, TLS is not enough).&lt;br /&gt;
* ?????? on &#039;&#039;Your Wifi Network is Insecure&#039;&#039; (cover: aircrack-ng and reaver. maybe nmap and metasploit)&lt;br /&gt;
* [mailto:silver@callysto.com Sean Howard] on &#039;&#039;How your ISP owns you&#039;&#039; (UW grad, ex Watsfic president, currently working for sentex.ca, knows details of Bell&#039;s network infrastructure and where the chokepoints are)&lt;br /&gt;
* nablack and m4farrel with a security demo + open ended question session&lt;br /&gt;
* m4farrel on &#039;&#039;Secrets of a DDoS&#039;&#039;&lt;br /&gt;
* wlritchi on &#039;&#039;Reversing SBeam and pnwing ur phone&#039;&#039;&lt;br /&gt;
* mtrberzi on &#039;&#039;GPG, Keyservers, and You&#039;&#039; and with a keysigning party to boot&lt;br /&gt;
* v2buterin on &#039;&#039;Bitcoin and Bitmessage&#039;&#039; (maybe? pretty please?)&lt;br /&gt;
* IST Security:&lt;br /&gt;
** [mailto:pmatlock@uwaterloo.ca Patrick Matlock] on some combination or subset of oauth, identity, data privacy ([https://uwaterloo.ca/secretariat/policies-procedures-guidelines/policy-8 Policy 8]), and web pentesting&lt;br /&gt;
*** csrf&lt;br /&gt;
*** script injections&lt;br /&gt;
*** ....&lt;br /&gt;
** [mailto:tlabach@uwaterloo.ca Terry Labach] on [http://ist.uwaterloo.ca/~tlabach/safer/ safer web browsing]&lt;br /&gt;
** [mailto:cpbell@uwaterloo.ca Colin Bell]?&lt;br /&gt;
* Sapphyre?&lt;br /&gt;
* Hatguy!&lt;br /&gt;
* ?????? on &#039;&#039;Passwords&#039;&#039; (touch on [http://xkcd.com/936/ security proofs], hashapass/pwdhash, alternatives to passwords (biometrics, one time pads, challenge-response, ssh keys), NOT SHARING YOUR DAMN PASSWORDS ACROSS SITES (cite: the ps3 attack, the [linkedin attack], the [http://techcrunch.com/2009/12/14/rockyou-hack-security-myspace-facebook-passwords/ rockyou attack] ([http://www.tomshardware.com/news/imperva-rockyou-most-common-passwords,9486.html super] [http://reusablesec.blogspot.ca/2010/01/more-analysis-of-rockyou-password-list.html interesting] [http://blog.jimmyr.com/Password_analysis_of_databases_that_were_hacked_28_2009.php analysis], myspace&#039;s hack, FaithWriters, purerave.com&#039;s attempt at better security that made it worse, the ....) and how to use jacktheripper/[http://hashcat.net/hashcat/ hashcat])&lt;br /&gt;
* ?????? on &#039;&#039;Browser Fingerprinting&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Filesystem Forensics and the Dangers of Log-Structured Data Storage&#039;&#039; (live demo!) (zablache maybe)&lt;br /&gt;
* ?????? on &#039;&#039;SSL: It&#039;s Broken&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Storytime: Exporting &amp;quot;Munitions&amp;quot;&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Stegonography&#039;&#039; (might be able to get sharvey&#039;s SO to cover this)&lt;br /&gt;
* ?????? on &#039;&#039;Digital Watermarks&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Getting root in 5 minutes with physical access&#039;&#039; (cover how to boot single-user in all versions of Windows, OS X, Linux, and when that fails how to pull a drive and crack the password with l0phtcrack (Win32) or simply editing /etc/shadow (*nix). also the [https://citp.princeton.edu/research/memory/ compressed air-&amp;gt;frozen RAM] and Firewire-DMA attacks)&lt;br /&gt;
* ?????? on &#039;&#039;What is Identity&#039;&#039; (maybe toss this out to WPIRG?) with info on how sites and overlords (facebook, google) identify you, and how to split your identity digitally&lt;br /&gt;
* ?????? on &#039;&#039;Physical Security&#039;&#039; ([http://lockwiki.com/index.php/Main_Page locks], safes, etc.)&lt;br /&gt;
* ?????? on &#039;&#039;Crypto: terms, definitions, and why software still sucks&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Entropy and Randomness and why you shouldn&#039;t trust your router&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Network things&#039;&#039; (ARP, DNS, etc.)&lt;br /&gt;
* ?????? on &#039;&#039;Side Channels&#039;&#039; (sharvey&#039;s SO will probably do this)&lt;br /&gt;
&lt;br /&gt;
And remember kids, &#039;&#039;&#039;&#039;&#039;educational-use only&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=WPIRG cross promotion=&lt;br /&gt;
&lt;br /&gt;
[http://wpirg.org WPIRG] wants to cross-promote a &amp;quot;privacy forum&amp;quot; with us. They are imagining as an expert panel + QA session, during November. Probably the ideal distribution is csc events on the technical side (&amp;quot;how to shot pgp&amp;quot;, &amp;quot;how to make tls go&amp;quot;, &amp;quot;wat is passwurd&amp;quot;) with WPIRG on the human-scale and politics side, with advertising to both of our cohorts for all events. Some ideas for expert participants:&lt;br /&gt;
* [https://cs.uwaterloo.ca/~iang/ Ian Goldberg] (sharvey)&lt;br /&gt;
* [http://www.michaelgeist.ca/tags/privacy Michael Geist]&lt;br /&gt;
* ????&lt;br /&gt;
* Terry Labach (this sort of thing is, actually, directly within his job description)&lt;br /&gt;
* [http://thoughtcrime.org Marlie Moxinspike]&lt;br /&gt;
&lt;br /&gt;
=Related work and Telling Evidence=&lt;br /&gt;
&lt;br /&gt;
====Related Work====&lt;br /&gt;
[https://ssd.eff.org/ EFF&#039;s Surveillance Self-Defense Guide]&lt;br /&gt;
&lt;br /&gt;
[https://www.encrypteverything.ca/ Pirate Party&#039;s EncryptEverything]&lt;br /&gt;
&lt;br /&gt;
[http://cm.bell-labs.com/who/ken/trust.html Ken Thompson - Reflections on Trusting Trust]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
http://www.jbonneau.com/publications.html&lt;br /&gt;
&lt;br /&gt;
====Evidence====&lt;br /&gt;
http://readwrite.com/2010/08/04/google_ceo_schmidt_people_arent_ready_for_the_tech&lt;br /&gt;
&lt;br /&gt;
====IMPORTANT MEDIA====&lt;br /&gt;
3 Dead Trolls in a Baggie - The Privacy Song&lt;br /&gt;
MC Frontalot - Secrets from the Future&lt;br /&gt;
&lt;br /&gt;
[http://www.xkcd.com/538/ XKCD: Security]&lt;br /&gt;
[http://xkcd.com/936/ XKCD: Password Strength]&lt;br /&gt;
&lt;br /&gt;
=Past by Term=&lt;br /&gt;
===Fall 2013===&lt;br /&gt;
...&lt;/div&gt;</summary>
		<author><name>Nguenthe</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3486</id>
		<title>Security Workshops</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3486"/>
		<updated>2013-09-22T18:20:50Z</updated>

		<summary type="html">&lt;p&gt;Nguenthe: yd2dong has signed up&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;In light of the orwellian nightmare we&#039;ve built ourselves into, now is a good time for the CSClub to pick up the slack it usually picks and teach people how to be safe out there. &lt;br /&gt;
&lt;br /&gt;
=Topics, and slides=&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This information is fuzzy and subject to change. Do not trust it.&lt;br /&gt;
&lt;br /&gt;
sharvey, m4, and nguenthe are adminning this term&#039;s series&lt;br /&gt;
&lt;br /&gt;
Though the topics are diverse, the ones we will favour actually running are seminars that are short, to the point, and give a specific skill(set).&lt;br /&gt;
&lt;br /&gt;
Note: might be worth organizing this better by theme -sharvey&lt;br /&gt;
&lt;br /&gt;
* sharvey on &#039;&#039;Why Should You Care About Security and Privacy&#039;&#039; &lt;br /&gt;
* ?????? on &#039;&#039;Snowden Roundup&#039;&#039; (sharvey might be able to get some people from CrySP to discuss this; perhaps a panel followed by a Q&amp;amp;A?)&lt;br /&gt;
* nguenthe on &#039;&#039;[http://www.cypherpunks.ca/otr OTR]&#039;&#039; -- or IanG if we can get him!&lt;br /&gt;
* ?????? on &#039;&#039;Time Machines&#039;&#039; (Google-hacking, pleaserobme.com, etc)&lt;br /&gt;
* ?????? on &#039;&#039;Security Proofs: How Many Joules does the NSA Have?&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Full Disk Encryption&#039;&#039; (zablache maybe)&lt;br /&gt;
* ?????? on &#039;&#039;SSH&#039;&#039;&lt;br /&gt;
* [mailto:stephen.palmateer@gmail.com Stephen Palmateer] of KWLUG on &#039;&#039;Tor&#039;&#039; (vs i2p vs Freenet vs /r/darknet?)&lt;br /&gt;
* yd2dong on &#039;&#039;Tunnelling and VPNs&#039;&#039; -- he&#039;s done original research on this area, would discuss censorship techniques (for example, DPI filters), how to defeat them, and significant additional hurdles for anti-censorship compared to simply protecting against eavesdropping (IOW, TLS is not enough).&lt;br /&gt;
* ?????? on &#039;&#039;Your Wifi Network is Insecure&#039;&#039; (cover: aircrack-ng and reaver. maybe nmap and metasploit)&lt;br /&gt;
* [mailto:silver@callysto.com Sean Howard] on &#039;&#039;How your ISP owns you&#039;&#039; (UW grad, ex Watsfic president, currently working for sentex.ca, knows details of Bell&#039;s network infrastructure and where the chokepoints are)&lt;br /&gt;
* nablack and m4farrel with a security demo + open ended question session&lt;br /&gt;
* m4farrel on &#039;&#039;Secrets of a DDoS&#039;&#039;&lt;br /&gt;
* wlritchi on &#039;&#039;Reversing SBeam and pnwing ur phone&#039;&#039;&lt;br /&gt;
* mtrberzi on &#039;&#039;GPG, Keyservers, and You&#039;&#039; and with a keysigning party to boot&lt;br /&gt;
* v2buterin on &#039;&#039;Bitcoin and Bitmessage&#039;&#039; (maybe? pretty please?)&lt;br /&gt;
* IST Security:&lt;br /&gt;
** [mailto:pmatlock@uwaterloo.ca Patrick Matlock] on some combination or subset of oauth, identity, data privacy ([https://uwaterloo.ca/secretariat/policies-procedures-guidelines/policy-8 Policy 8]), and web pentesting&lt;br /&gt;
*** csrf&lt;br /&gt;
*** script injections&lt;br /&gt;
*** ....&lt;br /&gt;
** [mailto:tlabach@uwaterloo.ca Terry Labach] on [http://ist.uwaterloo.ca/~tlabach/safer/ safer web browsing]&lt;br /&gt;
** [mailto:cpbell@uwaterloo.ca Colin Bell]?&lt;br /&gt;
* Sapphyre?&lt;br /&gt;
* Hatguy!&lt;br /&gt;
* ?????? on &#039;&#039;Passwords&#039;&#039; (touch on [http://xkcd.com/936/ security proofs], hashapass/pwdhash, alternatives to passwords (biometrics, one time pads, challenge-response, ssh keys), NOT SHARING YOUR DAMN PASSWORDS ACROSS SITES (cite: the ps3 attack, the linkedin attack, the ....) and how to use jacktheripper/[http://hashcat.net/hashcat/ hashcat])&lt;br /&gt;
* ?????? on &#039;&#039;Browser Fingerprinting&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Filesystem Forensics and the Dangers of Log-Structured Data Storage&#039;&#039; (live demo!) (zablache maybe)&lt;br /&gt;
* ?????? on &#039;&#039;SSL: It&#039;s Broken&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Storytime: Exporting &amp;quot;Munitions&amp;quot;&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Stegonography&#039;&#039; (might be able to get sharvey&#039;s SO to cover this)&lt;br /&gt;
* ?????? on &#039;&#039;Digital Watermarks&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Getting root in 5 minutes with physical access&#039;&#039; (cover how to boot single-user in all versions of Windows, OS X, Linux, and when that fails how to pull a drive and crack the password with l0phtcrack (Win32) or simply editing /etc/shadow (*nix). also the [https://citp.princeton.edu/research/memory/ compressed air-&amp;gt;frozen RAM] and Firewire-DMA attacks)&lt;br /&gt;
* ?????? on &#039;&#039;What is Identity&#039;&#039; (maybe toss this out to WPIRG?) with info on how sites and overlords (facebook, google) identify you, and how to split your identity digitally&lt;br /&gt;
* ?????? on &#039;&#039;Physical Security&#039;&#039; ([http://lockwiki.com/index.php/Main_Page locks], safes, etc.)&lt;br /&gt;
* ?????? on &#039;&#039;Crypto: terms, definitions, and why software still sucks&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Entropy and Randomness and why you shouldn&#039;t trust your router&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Network things&#039;&#039; (ARP, DNS, etc.)&lt;br /&gt;
* ?????? on &#039;&#039;Side Channels&#039;&#039; (sharvey&#039;s SO will probably do this)&lt;br /&gt;
&lt;br /&gt;
And remember kids, &#039;&#039;&#039;&#039;&#039;educational-use only&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=WPIRG cross promotion=&lt;br /&gt;
&lt;br /&gt;
[http://wpirg.org WPIRG] wants to cross-promote a &amp;quot;privacy forum&amp;quot; with us. They are imagining as an expert panel + QA session, during November. Probably the ideal distribution is csc events on the technical side (&amp;quot;how to shot pgp&amp;quot;, &amp;quot;how to make tls go&amp;quot;, &amp;quot;wat is passwurd&amp;quot;) with WPIRG on the human-scale and politics side, with advertising to both of our cohorts for all events. Some ideas for expert participants:&lt;br /&gt;
* [https://cs.uwaterloo.ca/~iang/ Ian Goldberg] (sharvey)&lt;br /&gt;
* [http://www.michaelgeist.ca/tags/privacy Michael Geist]&lt;br /&gt;
* ????&lt;br /&gt;
* Terry Labach (this sort of thing is, actually, directly within his job description)&lt;br /&gt;
* [http://thoughtcrime.org Marlie Moxinspike]&lt;br /&gt;
&lt;br /&gt;
=Related work and Telling Evidence=&lt;br /&gt;
&lt;br /&gt;
====Related Work====&lt;br /&gt;
[https://ssd.eff.org/ EFF&#039;s Surveillance Self-Defense Guide]&lt;br /&gt;
&lt;br /&gt;
[https://www.encrypteverything.ca/ Pirate Party&#039;s EncryptEverything]&lt;br /&gt;
&lt;br /&gt;
[http://cm.bell-labs.com/who/ken/trust.html Ken Thompson - Reflections on Trusting Trust]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
http://www.jbonneau.com/publications.html&lt;br /&gt;
&lt;br /&gt;
====Evidence====&lt;br /&gt;
http://readwrite.com/2010/08/04/google_ceo_schmidt_people_arent_ready_for_the_tech&lt;br /&gt;
&lt;br /&gt;
====IMPORTANT MEDIA====&lt;br /&gt;
3 Dead Trolls in a Baggie - The Privacy Song&lt;br /&gt;
MC Frontalot - Secrets from the Future&lt;br /&gt;
&lt;br /&gt;
[http://www.xkcd.com/538/ XKCD: Security]&lt;br /&gt;
[http://xkcd.com/936/ XKCD: Password Strength]&lt;br /&gt;
&lt;br /&gt;
=Past by Term=&lt;br /&gt;
===Fall 2013===&lt;br /&gt;
...&lt;/div&gt;</summary>
		<author><name>Nguenthe</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3485</id>
		<title>Security Workshops</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3485"/>
		<updated>2013-09-22T07:04:09Z</updated>

		<summary type="html">&lt;p&gt;Nguenthe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;In light of the orwellian nightmare we&#039;ve built ourselves into, now is a good time for the CSClub to pick up the slack it usually picks and teach people how to be safe out there. &lt;br /&gt;
&lt;br /&gt;
=Topics, and slides=&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This information is fuzzy and subject to change. Do not trust it.&lt;br /&gt;
&lt;br /&gt;
sharvey, m4, and nguenthe are adminning this term&#039;s series&lt;br /&gt;
&lt;br /&gt;
Though the topics are diverse, the ones we will favour actually running are seminars that are short, to the point, and give a specific skill(set).&lt;br /&gt;
&lt;br /&gt;
Note: might be worth organizing this better by theme -sharvey&lt;br /&gt;
&lt;br /&gt;
* sharvey on &#039;&#039;Why Should You Care About Security and Privacy&#039;&#039; &lt;br /&gt;
* ?????? on &#039;&#039;Snowden Roundup&#039;&#039; (sharvey might be able to get some people from CrySP to discuss this; perhaps a panel followed by a Q&amp;amp;A?)&lt;br /&gt;
* yd2dong on &#039;&#039;Traffic Mixing&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Time Machines&#039;&#039; (Google-hacking, pleaserobme.com, etc)&lt;br /&gt;
* ?????? on &#039;&#039;Security Proofs: How Many Joules does the NSA Have?&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Full Disk Encryption&#039;&#039; (zablache maybe)&lt;br /&gt;
* ?????? on &#039;&#039;SSH&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Tunnelling and VPNs&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Your Wifi Network is Insecure&#039;&#039; (cover: aircrack-ng and reaver. maybe nmap and metasploit)&lt;br /&gt;
* [mailto:stephen.palmateer@gmail.com Stephen Palmateer] of KWLUG on &#039;&#039;Tor&#039;&#039; (vs i2p vs Freenet vs /r/darknet?)&lt;br /&gt;
* [mailto:silver@callysto.com Sean Howard] on &#039;&#039;How your ISP owns you&#039;&#039; (UW grad, ex Watsfic president, currently working for sentex.ca, knows details of Bell&#039;s network infrastructure and where the chokepoints are)&lt;br /&gt;
* nguenthe on &#039;&#039;[http://www.cypherpunks.ca/otr OTR]&#039;&#039; -- or IanG if we can get him!&lt;br /&gt;
* nablack and m4farrel with a security demo + open ended question session&lt;br /&gt;
* m4farrel on &#039;&#039;Secrets of a DDoS&#039;&#039;&lt;br /&gt;
* wlritchi on &#039;&#039;Reversing SBeam and pnwing ur phone&#039;&#039;&lt;br /&gt;
* mtrberzi on &#039;&#039;GPG, Keyservers, and You&#039;&#039; and with a keysigning party to boot&lt;br /&gt;
* v2buterin on &#039;&#039;Bitcoin and Bitmessage&#039;&#039; (maybe? pretty please?)&lt;br /&gt;
* IST Security:&lt;br /&gt;
** [mailto:pmatlock@uwaterloo.ca Patrick Matlock] on some combination or subset of oauth, identity, data privacy ([https://uwaterloo.ca/secretariat/policies-procedures-guidelines/policy-8 Policy 8]), and web pentesting&lt;br /&gt;
*** csrf&lt;br /&gt;
*** script injections&lt;br /&gt;
*** ....&lt;br /&gt;
** [mailto:tlabach@uwaterloo.ca Terry Labach] on [http://ist.uwaterloo.ca/~tlabach/safer/ safer web browsing]&lt;br /&gt;
** [mailto:cpbell@uwaterloo.ca Colin Bell]?&lt;br /&gt;
* Sapphyre?&lt;br /&gt;
* Hatguy!&lt;br /&gt;
* ?????? on &#039;&#039;Passwords&#039;&#039; (touch on [http://xkcd.com/936/ security proofs], hashapass/pwdhash, alternatives to passwords (biometrics, one time pads, challenge-response, ssh keys), NOT SHARING YOUR DAMN PASSWORDS ACROSS SITES (cite: the ps3 attack, the linkedin attack, the ....) and how to use jacktheripper/[http://hashcat.net/hashcat/ hashcat])&lt;br /&gt;
* ?????? on &#039;&#039;Browser Fingerprinting&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Filesystem Forensics and the Dangers of Log-Structured Data Storage&#039;&#039; (live demo!) (zablache maybe)&lt;br /&gt;
* ?????? on &#039;&#039;SSL: It&#039;s Broken&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Storytime: Exporting &amp;quot;Munitions&amp;quot;&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Stegonography&#039;&#039; (might be able to get sharvey&#039;s SO to cover this)&lt;br /&gt;
* ?????? on &#039;&#039;Digital Watermarks&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Getting root in 5 minutes with physical access&#039;&#039; (cover how to boot single-user in all versions of Windows, OS X, Linux, and when that fails how to pull a drive and crack the password with l0phtcrack (Win32) or simply editing /etc/shadow (*nix). also the [https://citp.princeton.edu/research/memory/ compressed air-&amp;gt;frozen RAM] and Firewire-DMA attacks)&lt;br /&gt;
* ?????? on &#039;&#039;What is Identity&#039;&#039; (maybe toss this out to WPIRG?) with info on how sites and overlords (facebook, google) identify you, and how to split your identity digitally&lt;br /&gt;
* ?????? on &#039;&#039;Physical Security&#039;&#039; ([http://lockwiki.com/index.php/Main_Page locks], safes, etc.)&lt;br /&gt;
* ?????? on &#039;&#039;Crypto: terms, definitions, and why software still sucks&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Entropy and Randomness and why you shouldn&#039;t trust your router&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Network things&#039;&#039; (ARP, DNS, etc.)&lt;br /&gt;
* ?????? on &#039;&#039;Side Channels&#039;&#039; (sharvey&#039;s SO will probably do this)&lt;br /&gt;
&lt;br /&gt;
And remember kids, &#039;&#039;&#039;&#039;&#039;educational-use only&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=WPIRG cross promotion=&lt;br /&gt;
&lt;br /&gt;
[http://wpirg.org WPIRG] wants to cross-promote a &amp;quot;privacy forum&amp;quot; with us. They are imagining as an expert panel + QA session, during November. Probably the ideal distribution is csc events on the technical side (&amp;quot;how to shot pgp&amp;quot;, &amp;quot;how to make tls go&amp;quot;, &amp;quot;wat is passwurd&amp;quot;) with WPIRG on the human-scale and politics side, with advertising to both of our cohorts for all events. Some ideas for expert participants:&lt;br /&gt;
* [https://cs.uwaterloo.ca/~iang/ Ian Goldberg] (sharvey)&lt;br /&gt;
* [http://www.michaelgeist.ca/tags/privacy Michael Geist]&lt;br /&gt;
* ????&lt;br /&gt;
* Terry Labach (this sort of thing is, actually, directly within his job description)&lt;br /&gt;
* [http://thoughtcrime.org Marlie Moxinspike]&lt;br /&gt;
&lt;br /&gt;
=Related work and Telling Evidence=&lt;br /&gt;
&lt;br /&gt;
====Related Work====&lt;br /&gt;
[https://ssd.eff.org/ EFF&#039;s Surveillance Self-Defense Guide]&lt;br /&gt;
&lt;br /&gt;
[https://www.encrypteverything.ca/ Pirate Party&#039;s EncryptEverything]&lt;br /&gt;
&lt;br /&gt;
[http://cm.bell-labs.com/who/ken/trust.html Ken Thompson - Reflections on Trusting Trust]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
http://www.jbonneau.com/publications.html&lt;br /&gt;
&lt;br /&gt;
====Evidence====&lt;br /&gt;
http://readwrite.com/2010/08/04/google_ceo_schmidt_people_arent_ready_for_the_tech&lt;br /&gt;
&lt;br /&gt;
====IMPORTANT MEDIA====&lt;br /&gt;
3 Dead Trolls in a Baggie - The Privacy Song&lt;br /&gt;
MC Frontalot - Secrets from the Future&lt;br /&gt;
&lt;br /&gt;
[http://www.xkcd.com/538/ XKCD: Security]&lt;br /&gt;
[http://xkcd.com/936/ XKCD: Password Strength]&lt;br /&gt;
&lt;br /&gt;
=Past by Term=&lt;br /&gt;
===Fall 2013===&lt;br /&gt;
...&lt;/div&gt;</summary>
		<author><name>Nguenthe</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3484</id>
		<title>Security Workshops</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3484"/>
		<updated>2013-09-22T06:52:36Z</updated>

		<summary type="html">&lt;p&gt;Nguenthe: /* Topics, and slides */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;In light of the orwellian nightmare we&#039;ve built ourselves into, now is a good time for the CSClub to pick up the slack it usually picks and teach people how to be safe out there. &lt;br /&gt;
&lt;br /&gt;
=Topics, and slides=&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This information is fuzzy and subject to change. Do not trust it.&lt;br /&gt;
&lt;br /&gt;
sharvey, m4, and nguenthe are adminning this term&#039;s series&lt;br /&gt;
&lt;br /&gt;
Though the topics are diverse, the ones we will favour actually running are seminars that are short, to the point, and give a specific skill(set).&lt;br /&gt;
&lt;br /&gt;
Note: might be worth organizing this better by theme -sharvey&lt;br /&gt;
&lt;br /&gt;
* sharvey on &#039;&#039;Why Should You Care About Security and Privacy&#039;&#039; &lt;br /&gt;
* ?????? on &#039;&#039;Snowden Roundup&#039;&#039; (sharvey might be able to get some people from CrySP to discuss this; perhaps a panel followed by a Q&amp;amp;A?)&lt;br /&gt;
* yd2dong on &#039;&#039;Traffic Mixing&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Time Machines&#039;&#039; (Google-hacking, pleaserobme.com, etc)&lt;br /&gt;
* ?????? on &#039;&#039;Security Proofs: How Many Joules does the NSA Have?&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Full Disk Encryption&#039;&#039; (zablache maybe)&lt;br /&gt;
* ?????? on &#039;&#039;SSH&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Tunnelling and VPNs&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Your Wifi Network is Insecure&#039;&#039; (cover: aircrack-ng and reaver. maybe nmap and metasploit)&lt;br /&gt;
* [mailto:stephen.palmateer@gmail.com Stephen Palmateer] of KWLUG on &#039;&#039;Tor&#039;&#039; (vs i2p vs Freenet vs /r/darknet?)&lt;br /&gt;
* [mailto:silver@callysto.com Sean Howard] on &#039;&#039;How your ISP owns you&#039;&#039; (UW grad, ex Watsfic president, currently working for sentex.ca, knows details of Bell&#039;s network infrastructure and where the chokepoints are)&lt;br /&gt;
* nguenthe on &#039;&#039;[http://www.cypherpunks.ca/otr OTR]&#039;&#039; -- or IanG if we can get him!&lt;br /&gt;
* nablack and m4farrel with a security demo + open ended question session&lt;br /&gt;
* m4farrel on &#039;&#039;Secrets of a DDoS&#039;&#039;&lt;br /&gt;
* wlritchi on &#039;&#039;Reversing SBeam and pnwing ur phone&#039;&#039;&lt;br /&gt;
* mtrberzi on &#039;&#039;GPG, Keyservers, and You&#039;&#039; and with a keysigning party to boot&lt;br /&gt;
* v2buterin on &#039;&#039;Bitcoin and Bitmessage&#039;&#039; (maybe? pretty please?)&lt;br /&gt;
* IST Security:&lt;br /&gt;
** [mailto:pmatlock@uwaterloo.ca Patrick Matlock] on some combination or subset of oauth, identity, data privacy ([https://uwaterloo.ca/secretariat/policies-procedures-guidelines/policy-8 Policy 8]), and web pentesting&lt;br /&gt;
*** csrf&lt;br /&gt;
*** script injections&lt;br /&gt;
*** ....&lt;br /&gt;
** [mailto:tlabach@uwaterloo.ca Terry Labach] on [http://ist.uwaterloo.ca/~tlabach/safer/ safer web browsing]&lt;br /&gt;
** [mailto:cpbell@uwaterloo.ca Colin Bell]?&lt;br /&gt;
* Sapphyre?&lt;br /&gt;
* Hatguy!&lt;br /&gt;
* ?????? on &#039;&#039;Passwords&#039;&#039; (touch on [http://xkcd.com/936/ security proofs], hashapass/pwdhash, alternatives to passwords (biometrics, one time pads, challenge-response, ssh keys), NOT SHARING YOUR DAMN PASSWORDS ACROSS SITES (cite: the ps3 attack, the linkedin attack, the ....) and how to use jacktheripper/[http://hashcat.net/hashcat/ hashcat])&lt;br /&gt;
* ?????? on &#039;&#039;Browser Fingerprinting&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Filesystem Forensics and the Dangers of Log-Structured Data Storage&#039;&#039; (live demo!) (zablache maybe)&lt;br /&gt;
* ?????? on &#039;&#039;SSL: It&#039;s Broken&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Storytime: Exporting &amp;quot;Munitions&amp;quot;&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Stegonography&#039;&#039; (might be able to get sharvey&#039;s SO to cover this)&lt;br /&gt;
* ?????? on &#039;&#039;Digital Watermarks&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Getting root in 5 minutes with physical access&#039;&#039; (cover how to boot single-user in all versions of Windows, OS X, Linux, and when that fails how to pull a drive and crack the password with l0phtcrack (Win32) or simply editing /etc/shadow (*nix). also the [https://citp.princeton.edu/research/memory/ compressed air-&amp;gt;frozen RAM] and Firewire-DMA attacks)&lt;br /&gt;
* ?????? on &#039;&#039;What is Identity&#039;&#039; (maybe toss this out to WPIRG?) with info on how sites and overlords (facebook, google) identify you, and how to split your identity digitally&lt;br /&gt;
* ?????? on &#039;&#039;Physical Security&#039;&#039; ([http://lockwiki.com/index.php/Main_Page locks], safes, etc.)&lt;br /&gt;
* ?????? on &#039;&#039;Crypto: terms, definitions, and why software still sucks&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Entropy and Randomness and why you shouldn&#039;t trust your router&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Network things&#039;&#039; (ARP, DNS, etc.)&lt;br /&gt;
* ?????? on &#039;&#039;Side Channels&#039;&#039; (sharvey&#039;s SO will probably do this)&lt;br /&gt;
&lt;br /&gt;
And remember kids, &#039;&#039;&#039;&#039;&#039;educational-use only&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=WPIRG cross promotion=&lt;br /&gt;
&lt;br /&gt;
[http://wpirg.org WPIRG] wants to cross-promote a &amp;quot;privacy forum&amp;quot; with us. They are imagining as an expert panel + QA session, during November. Probably the ideal distribution is csc events on the technical side (&amp;quot;how to shot pgp&amp;quot;, &amp;quot;how to make tls go&amp;quot;, &amp;quot;wat is passwurd&amp;quot;) with WPIRG on the human-scale and politics side, with advertising to both of our cohorts for all events. Some ideas for expert participants:&lt;br /&gt;
* [https://cs.uwaterloo.ca/~iang/ Ian Goldberg] (sharvey)&lt;br /&gt;
* [http://www.michaelgeist.ca/tags/privacy Michael Geist]&lt;br /&gt;
* ????&lt;br /&gt;
* Terry Labach (this sort of thing is, actually, directly within his job description)&lt;br /&gt;
* [http://thoughtcrime.org Marlie Moxinspike]&lt;br /&gt;
&lt;br /&gt;
=Related work and Telling Evidence=&lt;br /&gt;
&lt;br /&gt;
====Related Work====&lt;br /&gt;
[https://ssd.eff.org/ EFF&#039;s Surveillance Self-Defense Guide]&lt;br /&gt;
&lt;br /&gt;
[https://www.encrypteverything.ca/ Pirate Party&#039;s EncryptEverything]&lt;br /&gt;
&lt;br /&gt;
[http://cm.bell-labs.com/who/ken/trust.html Ken Thompson - Reflections on Trusting Trust]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Evidence====&lt;br /&gt;
http://readwrite.com/2010/08/04/google_ceo_schmidt_people_arent_ready_for_the_tech&lt;br /&gt;
&lt;br /&gt;
====IMPORTANT MEDIA====&lt;br /&gt;
3 Dead Trolls in a Baggie - The Privacy Song&lt;br /&gt;
MC Frontalot - Secrets from the Future&lt;br /&gt;
&lt;br /&gt;
[http://www.xkcd.com/538/ XKCD: Security]&lt;br /&gt;
[http://xkcd.com/936/ XKCD: Password Strength]&lt;br /&gt;
&lt;br /&gt;
=Past by Term=&lt;br /&gt;
===Fall 2013===&lt;br /&gt;
...&lt;/div&gt;</summary>
		<author><name>Nguenthe</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3483</id>
		<title>Security Workshops</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3483"/>
		<updated>2013-09-22T06:44:09Z</updated>

		<summary type="html">&lt;p&gt;Nguenthe: hashcat&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;In light of the orwellian nightmare we&#039;ve built ourselves into, now is a good time for the CSClub to pick up the slack it usually picks and teach people how to be safe out there. &lt;br /&gt;
&lt;br /&gt;
=Topics, and slides=&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This information is fuzzy and subject to change. Do not trust it.&lt;br /&gt;
&lt;br /&gt;
sharvey, m4, and nguenthe are adminning this term&#039;s series&lt;br /&gt;
&lt;br /&gt;
Though the topics are diverse, the ones we will favour actually running are seminars that are short, to the point, and give a specific skill(set).&lt;br /&gt;
&lt;br /&gt;
Note: might be worth organizing this better by theme -sharvey&lt;br /&gt;
&lt;br /&gt;
* sharvey on &#039;&#039;Why Should You Care About Security and Privacy&#039;&#039; &lt;br /&gt;
* ?????? on &#039;&#039;Snowden Roundup&#039;&#039; (sharvey might be able to get some people from CrySP to discuss this; perhaps a panel followed by a Q&amp;amp;A?)&lt;br /&gt;
* yd2dong on &#039;&#039;Traffic Mixing&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Security Proofs: How Many Joules does the NSA Have?&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Full Disk Encryption&#039;&#039; (zablache maybe)&lt;br /&gt;
* ?????? on &#039;&#039;SSH&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Tunnelling and VPNs&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Your Wifi Network is Insecure&#039;&#039; (cover: aircrack-ng and reaver. maybe nmap and metasploit)&lt;br /&gt;
* [mailto:stephen.palmateer@gmail.com Stephen Palmateer] of KWLUG on &#039;&#039;Tor&#039;&#039; (vs i2p vs Freenet vs /r/darknet?)&lt;br /&gt;
* [mailto:silver@callysto.com Sean Howard] on &#039;&#039;How your ISP owns you&#039;&#039; (UW grad, ex Watsfic president, currently working for sentex.ca, knows details of Bell&#039;s network infrastructure and where the chokepoints are)&lt;br /&gt;
* nguenthe on &#039;&#039;[http://www.cypherpunks.ca/otr OTR]&#039;&#039; -- or IanG if we can get him!&lt;br /&gt;
* nablack and m4farrel with a security demo + open ended question session&lt;br /&gt;
* m4farrel on &#039;&#039;Secrets of a DDoS&#039;&#039;&lt;br /&gt;
* wlritchi on &#039;&#039;Reversing SBeam and pnwing ur phone&#039;&#039;&lt;br /&gt;
* mtrberzi on &#039;&#039;GPG, Keyservers, and You&#039;&#039; and with a keysigning party to boot&lt;br /&gt;
* v2buterin on &#039;&#039;Bitcoin and Bitmessage&#039;&#039; (maybe? pretty please?)&lt;br /&gt;
* IST Security:&lt;br /&gt;
** [mailto:pmatlock@uwaterloo.ca Patrick Matlock] on some combination or subset of oauth, identity, data privacy ([https://uwaterloo.ca/secretariat/policies-procedures-guidelines/policy-8 Policy 8]), and web pentesting&lt;br /&gt;
*** csrf&lt;br /&gt;
*** script injections&lt;br /&gt;
*** ....&lt;br /&gt;
** [mailto:tlabach@uwaterloo.ca Terry Labach] on [http://ist.uwaterloo.ca/~tlabach/safer/ safer web browsing]&lt;br /&gt;
** [mailto:cpbell@uwaterloo.ca Colin Bell]?&lt;br /&gt;
* Sapphyre?&lt;br /&gt;
* Hatguy!&lt;br /&gt;
* ?????? on &#039;&#039;Passwords&#039;&#039; (touch on [http://xkcd.com/936/ security proofs], hashapass/pwdhash, alternatives to passwords (biometrics, one time pads, challenge-response, ssh keys), NOT SHARING YOUR DAMN PASSWORDS ACROSS SITES (cite: the ps3 attack, the linkedin attack, the ....) and how to use jacktheripper/[http://hashcat.net/hashcat/ hashcat])&lt;br /&gt;
* ?????? on &#039;&#039;Browser Fingerprinting&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Filesystem Forensics and the Dangers of Log-Structured Data Storage&#039;&#039; (live demo!) (zablache maybe)&lt;br /&gt;
* ?????? on &#039;&#039;SSL: It&#039;s Broken&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Storytime: Exporting &amp;quot;Munitions&amp;quot;&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Stegonography&#039;&#039; (might be able to get sharvey&#039;s SO to cover this)&lt;br /&gt;
* ?????? on &#039;&#039;Digital Watermarks&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Getting root in 5 minutes with physical access&#039;&#039; (cover how to boot single-user in all versions of Windows, OS X, Linux, and when that fails how to pull a drive and crack the password with l0phtcrack (Win32) or simply editing /etc/shadow (*nix). also the [https://citp.princeton.edu/research/memory/ compressed air-&amp;gt;frozen RAM] and Firewire-DMA attacks)&lt;br /&gt;
* ?????? on &#039;&#039;What is Identity&#039;&#039; (maybe toss this out to WPIRG?) with info on how sites and overlords (facebook, google) identify you, and how to split your identity digitally&lt;br /&gt;
* ?????? on &#039;&#039;Physical Security&#039;&#039; ([http://lockwiki.com/index.php/Main_Page locks], safes, etc.)&lt;br /&gt;
* ?????? on &#039;&#039;Crypto: terms, definitions, and why software still sucks&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Entropy and Randomness and why you shouldn&#039;t trust your router&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Network things&#039;&#039; (ARP, DNS, etc.)&lt;br /&gt;
* ?????? on &#039;&#039;Side Channels&#039;&#039; (sharvey&#039;s SO will probably do this)&lt;br /&gt;
&lt;br /&gt;
And remember kids, &#039;&#039;&#039;&#039;&#039;educational-use only&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=WPIRG cross promotion=&lt;br /&gt;
&lt;br /&gt;
[http://wpirg.org WPIRG] wants to cross-promote a &amp;quot;privacy forum&amp;quot; with us. They are imagining as an expert panel + QA session, during November. Probably the ideal distribution is csc events on the technical side (&amp;quot;how to shot pgp&amp;quot;, &amp;quot;how to make tls go&amp;quot;, &amp;quot;wat is passwurd&amp;quot;) with WPIRG on the human-scale and politics side, with advertising to both of our cohorts for all events. Some ideas for expert participants:&lt;br /&gt;
* [https://cs.uwaterloo.ca/~iang/ Ian Goldberg] (sharvey)&lt;br /&gt;
* [http://www.michaelgeist.ca/tags/privacy Michael Geist]&lt;br /&gt;
* ????&lt;br /&gt;
* Terry Labach (this sort of thing is, actually, directly within his job description)&lt;br /&gt;
* [http://thoughtcrime.org Marlie Moxinspike]&lt;br /&gt;
&lt;br /&gt;
=Related work and Telling Evidence=&lt;br /&gt;
&lt;br /&gt;
====Related Work====&lt;br /&gt;
[https://ssd.eff.org/ EFF&#039;s Surveillance Self-Defense Guide]&lt;br /&gt;
&lt;br /&gt;
[https://www.encrypteverything.ca/ Pirate Party&#039;s EncryptEverything]&lt;br /&gt;
&lt;br /&gt;
[http://cm.bell-labs.com/who/ken/trust.html Ken Thompson - Reflections on Trusting Trust]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Evidence====&lt;br /&gt;
http://readwrite.com/2010/08/04/google_ceo_schmidt_people_arent_ready_for_the_tech&lt;br /&gt;
&lt;br /&gt;
====IMPORTANT MEDIA====&lt;br /&gt;
3 Dead Trolls in a Baggie - The Privacy Song&lt;br /&gt;
MC Frontalot - Secrets from the Future&lt;br /&gt;
&lt;br /&gt;
[http://www.xkcd.com/538/ XKCD: Security]&lt;br /&gt;
[http://xkcd.com/936/ XKCD: Password Strength]&lt;br /&gt;
&lt;br /&gt;
=Past by Term=&lt;br /&gt;
===Fall 2013===&lt;br /&gt;
...&lt;/div&gt;</summary>
		<author><name>Nguenthe</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3482</id>
		<title>Security Workshops</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3482"/>
		<updated>2013-09-22T06:35:24Z</updated>

		<summary type="html">&lt;p&gt;Nguenthe: /* Topics, and slides */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;In light of the orwellian nightmare we&#039;ve built ourselves into, now is a good time for the CSClub to pick up the slack it usually picks and teach people how to be safe out there. &lt;br /&gt;
&lt;br /&gt;
=Topics, and slides=&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This information is fuzzy and subject to change. Do not trust it.&lt;br /&gt;
&lt;br /&gt;
sharvey, m4, and nguenthe are adminning this term&#039;s series&lt;br /&gt;
&lt;br /&gt;
Though the topics are diverse, the ones we will favour actually running are seminars that are short, to the point, and give a specific skill(set).&lt;br /&gt;
&lt;br /&gt;
Note: might be worth organizing this better by theme -sharvey&lt;br /&gt;
&lt;br /&gt;
* sharvey on &#039;&#039;Why Should You Care About Security and Privacy&#039;&#039; &lt;br /&gt;
* ?????? on &#039;&#039;Snowden Roundup&#039;&#039; (sharvey might be able to get some people from CrySP to discuss this; perhaps a panel followed by a Q&amp;amp;A?)&lt;br /&gt;
* yd2dong on &#039;&#039;Traffic Mixing&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Security Proofs: How Many Joules does the NSA Have?&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Full Disk Encryption&#039;&#039; (zablache maybe)&lt;br /&gt;
* ?????? on &#039;&#039;SSH&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Tunnelling and VPNs&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Your Wifi Network is Insecure&#039;&#039; (cover: aircrack-ng and reaver. maybe nmap and metasploit)&lt;br /&gt;
* [mailto:stephen.palmateer@gmail.com Stephen Palmateer] of KWLUG on &#039;&#039;Tor&#039;&#039; (vs i2p vs Freenet vs /r/darknet?)&lt;br /&gt;
* [mailto:silver@callysto.com Sean Howard] on &#039;&#039;How your ISP owns you&#039;&#039; (UW grad, ex Watsfic president, currently working for sentex.ca, knows details of Bell&#039;s network infrastructure and where the chokepoints are)&lt;br /&gt;
* nguenthe on &#039;&#039;[http://www.cypherpunks.ca/otr OTR]&#039;&#039; -- or IanG if we can get him!&lt;br /&gt;
* nablack and m4farrel with a security demo + open ended question session&lt;br /&gt;
* m4farrel on &#039;&#039;Secrets of a DDoS&#039;&#039;&lt;br /&gt;
* wlritchi on &#039;&#039;Reversing SBeam and pnwing ur phone&#039;&#039;&lt;br /&gt;
* mtrberzi on &#039;&#039;GPG, Keyservers, and You&#039;&#039; and with a keysigning party to boot&lt;br /&gt;
* v2buterin on &#039;&#039;Bitcoin and Bitmessage&#039;&#039; (maybe? pretty please?)&lt;br /&gt;
* IST Security:&lt;br /&gt;
** [mailto:pmatlock@uwaterloo.ca Patrick Matlock] on some combination or subset of oauth, identity, data privacy ([https://uwaterloo.ca/secretariat/policies-procedures-guidelines/policy-8 Policy 8]), and web pentesting&lt;br /&gt;
*** csrf&lt;br /&gt;
*** script injections&lt;br /&gt;
*** ....&lt;br /&gt;
** [mailto:tlabach@uwaterloo.ca Terry Labach] on [http://ist.uwaterloo.ca/~tlabach/safer/ safer web browsing]&lt;br /&gt;
** [mailto:cpbell@uwaterloo.ca Colin Bell]?&lt;br /&gt;
* Sapphyre?&lt;br /&gt;
* Hatguy!&lt;br /&gt;
* ?????? on &#039;&#039;Passwords&#039;&#039; (touch on [http://xkcd.com/936/ security proofs], hashapass/pwdhash, alternatives to passwords (biometrics, one time pads, challenge-response, ssh keys), NOT SHARING YOUR DAMN PASSWORDS ACROSS SITES (cite: the ps3 attack, the linkedin attack, the ....) and how to use jacktheripper)&lt;br /&gt;
* ?????? on &#039;&#039;Browser Fingerprinting&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Filesystem Forensics and the Dangers of Log-Structured Data Storage&#039;&#039; (live demo!) (zablache maybe)&lt;br /&gt;
* ?????? on &#039;&#039;SSL: It&#039;s Broken&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Storytime: Exporting &amp;quot;Munitions&amp;quot;&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Stegonography&#039;&#039; (might be able to get sharvey&#039;s SO to cover this)&lt;br /&gt;
* ?????? on &#039;&#039;Digital Watermarks&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Getting root in 5 minutes with physical access&#039;&#039; (cover how to boot single-user in all versions of Windows, OS X, Linux, and when that fails how to pull a drive and crack the password with l0phtcrack (Win32) or simply editing /etc/shadow (*nix). also the [https://citp.princeton.edu/research/memory/ compressed air-&amp;gt;frozen RAM] and Firewire-DMA attacks)&lt;br /&gt;
* ?????? on &#039;&#039;What is Identity&#039;&#039; (maybe toss this out to WPIRG?) with info on how sites and overlords (facebook, google) identify you, and how to split your identity digitally&lt;br /&gt;
* ?????? on &#039;&#039;Physical Security&#039;&#039; ([http://lockwiki.com/index.php/Main_Page locks], safes, etc.)&lt;br /&gt;
* ?????? on &#039;&#039;Crypto: terms, definitions, and why software still sucks&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Entropy and Randomness and why you shouldn&#039;t trust your router&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Network things&#039;&#039; (ARP, DNS, etc.)&lt;br /&gt;
* ?????? on &#039;&#039;Side Channels&#039;&#039; (sharvey&#039;s SO will probably do this)&lt;br /&gt;
&lt;br /&gt;
And remember kids, &#039;&#039;&#039;&#039;&#039;educational-use only&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=WPIRG cross promotion=&lt;br /&gt;
&lt;br /&gt;
[http://wpirg.org WPIRG] wants to cross-promote a &amp;quot;privacy forum&amp;quot; with us. They are imagining as an expert panel + QA session, during November. Probably the ideal distribution is csc events on the technical side (&amp;quot;how to shot pgp&amp;quot;, &amp;quot;how to make tls go&amp;quot;, &amp;quot;wat is passwurd&amp;quot;) with WPIRG on the human-scale and politics side, with advertising to both of our cohorts for all events. Some ideas for expert participants:&lt;br /&gt;
* [https://cs.uwaterloo.ca/~iang/ Ian Goldberg] (sharvey)&lt;br /&gt;
* [http://www.michaelgeist.ca/tags/privacy Michael Geist]&lt;br /&gt;
* ????&lt;br /&gt;
* Terry Labach (this sort of thing is, actually, directly within his job description)&lt;br /&gt;
* [http://thoughtcrime.org Marlie Moxinspike]&lt;br /&gt;
&lt;br /&gt;
=Related work and Telling Evidence=&lt;br /&gt;
&lt;br /&gt;
====Related Work====&lt;br /&gt;
[https://ssd.eff.org/ EFF&#039;s Surveillance Self-Defense Guide]&lt;br /&gt;
&lt;br /&gt;
[https://www.encrypteverything.ca/ Pirate Party&#039;s EncryptEverything]&lt;br /&gt;
&lt;br /&gt;
[http://cm.bell-labs.com/who/ken/trust.html Ken Thompson - Reflections on Trusting Trust]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Evidence====&lt;br /&gt;
http://readwrite.com/2010/08/04/google_ceo_schmidt_people_arent_ready_for_the_tech&lt;br /&gt;
&lt;br /&gt;
====IMPORTANT MEDIA====&lt;br /&gt;
3 Dead Trolls in a Baggie - The Privacy Song&lt;br /&gt;
MC Frontalot - Secrets from the Future&lt;br /&gt;
&lt;br /&gt;
[http://www.xkcd.com/538/ XKCD: Security]&lt;br /&gt;
[http://xkcd.com/936/ XKCD: Password Strength]&lt;br /&gt;
&lt;br /&gt;
=Past by Term=&lt;br /&gt;
===Fall 2013===&lt;br /&gt;
...&lt;/div&gt;</summary>
		<author><name>Nguenthe</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3481</id>
		<title>Security Workshops</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3481"/>
		<updated>2013-09-22T06:34:21Z</updated>

		<summary type="html">&lt;p&gt;Nguenthe: /* Topics, and slides */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;In light of the orwellian nightmare we&#039;ve built ourselves into, now is a good time for the CSClub to pick up the slack it usually picks and teach people how to be safe out there. &lt;br /&gt;
&lt;br /&gt;
=Topics, and slides=&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This information is fuzzy and subject to change. Do not trust it.&lt;br /&gt;
&lt;br /&gt;
sharvey, m4, and nguenthe are adminning this term&#039;s series&lt;br /&gt;
&lt;br /&gt;
Though the topics are diverse, the ones we will favour actually running are seminars that are short, to the point, and give a specific skill(set).&lt;br /&gt;
&lt;br /&gt;
Note: might be worth organizing this better by theme -sharvey&lt;br /&gt;
&lt;br /&gt;
* sharvey on &#039;&#039;Why Should You Care About Security and Privacy&#039;&#039; &lt;br /&gt;
* ?????? on &#039;&#039;Snowden Roundup&#039;&#039; (sharvey might be able to get some people from CrySP to discuss this; perhaps a panel followed by a Q&amp;amp;A?)&lt;br /&gt;
* yd2dong on &#039;&#039;Traffic Mixing&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Security Proofs: How Many Joules does the NSA Have?&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Full Disk Encryption&#039;&#039; (zablache maybe)&lt;br /&gt;
* ?????? on &#039;&#039;SSH&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Tunnelling and VPNs&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Your Wifi Network is Insecure&#039;&#039; (cover: aircrack-ng and reaver. maybe nmap and metasploit)&lt;br /&gt;
* [mailto:stephen.palmateer@gmail.com Stephen Palmateer] of KWLUG on &#039;&#039;Tor&#039;&#039; (vs i2p vs Freenet vs /r/darknet?)&lt;br /&gt;
* [mailto:silver@callysto.com Sean Howard] on &#039;&#039;How your ISP owns you&#039;&#039; (UW grad, ex Watsfic president, currently working for sentex.ca, knows details of Bell&#039;s network infrastructure and where the chokepoints are)&lt;br /&gt;
* nguenthe on &#039;&#039;[http://www.cypherpunks.ca/otr OTR]&#039;&#039; -- or IanG if we can get him!&lt;br /&gt;
* nablack and m4farrel with a security demo + open ended question session&lt;br /&gt;
* m4farrel on &#039;&#039;Secrets of a DDoS&#039;&#039;&lt;br /&gt;
* wlritchi on &#039;&#039;Reversing SBeam and pnwing ur phone&#039;&#039;&lt;br /&gt;
* mtrberzi on &#039;&#039;GPG, Keyservers, and You&#039;&#039; and with a keysigning party to boot&lt;br /&gt;
* v2buterin on &#039;&#039;Bitcoin and Bitmessage&#039;&#039; (maybe? pretty please?)&lt;br /&gt;
* IST Security:&lt;br /&gt;
** [mailto:pmatlock@uwaterloo.ca Patrick Matlock] on some combination or subset of oauth, identity, data privacy ([https://uwaterloo.ca/secretariat/policies-procedures-guidelines/policy-8 Policy 8]), and web pentesting&lt;br /&gt;
*** csrf&lt;br /&gt;
*** script injections&lt;br /&gt;
*** ....&lt;br /&gt;
** [mailto:tlabach@uwaterloo.ca Terry Labach] on [http://ist.uwaterloo.ca/~tlabach/safer/ safer web browsing]&lt;br /&gt;
** [mailto:cpbell@uwaterloo.ca Colin Bell]?&lt;br /&gt;
* Sapphyre?&lt;br /&gt;
* Hatguy!&lt;br /&gt;
* ?????? on &#039;&#039;Passwords&#039;&#039; (touch on [http://xkcd.com/936/ security proofs], hashapass/pwdhash, alternatives to passwords (biometrics, one time pads, challenge-response, ssh keys), NOT SHARING YOUR DAMN PASSWORDS ACROSS SITES (cite: the ps3 attack, the linkedin attack, the ....) and how to use jacktheripper)&lt;br /&gt;
* ?????? on &#039;&#039;Browser Fingerprinting&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Filesystem Forensics and the Dangers of Log-Structured Data Storage&#039;&#039; (live demo!) (zablache maybe)&lt;br /&gt;
* ?????? on &#039;&#039;SSL: It&#039;s Broken&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Storytime: Exporting &amp;quot;Munitions&amp;quot;&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Stegonography&#039;&#039; (might be able to get sharvey&#039;s SO to cover this)&lt;br /&gt;
* ?????? on &#039;&#039;Digital Watermarks&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Getting root in 5 minutes with physical access&#039;&#039; (cover how to boot single-user in all versions of Windows, OS X, Linux, and when that fails how to pull a drive and crack the password with l0phtcrack (Win32) or simply editing /etc/shadow (*nix). also the compressed air-&amp;gt;frozen RAM and Firewire-DMA attacks)&lt;br /&gt;
* ?????? on &#039;&#039;What is Identity&#039;&#039; (maybe toss this out to WPIRG?) with info on how sites and overlords (facebook, google) identify you, and how to split your identity digitally&lt;br /&gt;
* ?????? on &#039;&#039;Physical Security&#039;&#039; ([http://lockwiki.com/index.php/Main_Page locks], safes, etc.)&lt;br /&gt;
* ?????? on &#039;&#039;Crypto: terms, definitions, and why software still sucks&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Entropy and Randomness and why you shouldn&#039;t trust your router&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Network things&#039;&#039; (ARP, DNS, etc.)&lt;br /&gt;
* ?????? on &#039;&#039;Side Channels&#039;&#039; (sharvey&#039;s SO will probably do this)&lt;br /&gt;
&lt;br /&gt;
And remember kids, &#039;&#039;&#039;&#039;&#039;educational-use only&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=WPIRG cross promotion=&lt;br /&gt;
&lt;br /&gt;
[http://wpirg.org WPIRG] wants to cross-promote a &amp;quot;privacy forum&amp;quot; with us. They are imagining as an expert panel + QA session, during November. Probably the ideal distribution is csc events on the technical side (&amp;quot;how to shot pgp&amp;quot;, &amp;quot;how to make tls go&amp;quot;, &amp;quot;wat is passwurd&amp;quot;) with WPIRG on the human-scale and politics side, with advertising to both of our cohorts for all events. Some ideas for expert participants:&lt;br /&gt;
* [https://cs.uwaterloo.ca/~iang/ Ian Goldberg] (sharvey)&lt;br /&gt;
* [http://www.michaelgeist.ca/tags/privacy Michael Geist]&lt;br /&gt;
* ????&lt;br /&gt;
* Terry Labach (this sort of thing is, actually, directly within his job description)&lt;br /&gt;
* [http://thoughtcrime.org Marlie Moxinspike]&lt;br /&gt;
&lt;br /&gt;
=Related work and Telling Evidence=&lt;br /&gt;
&lt;br /&gt;
====Related Work====&lt;br /&gt;
[https://ssd.eff.org/ EFF&#039;s Surveillance Self-Defense Guide]&lt;br /&gt;
&lt;br /&gt;
[https://www.encrypteverything.ca/ Pirate Party&#039;s EncryptEverything]&lt;br /&gt;
&lt;br /&gt;
[http://cm.bell-labs.com/who/ken/trust.html Ken Thompson - Reflections on Trusting Trust]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Evidence====&lt;br /&gt;
http://readwrite.com/2010/08/04/google_ceo_schmidt_people_arent_ready_for_the_tech&lt;br /&gt;
&lt;br /&gt;
====IMPORTANT MEDIA====&lt;br /&gt;
3 Dead Trolls in a Baggie - The Privacy Song&lt;br /&gt;
MC Frontalot - Secrets from the Future&lt;br /&gt;
&lt;br /&gt;
[http://www.xkcd.com/538/ XKCD: Security]&lt;br /&gt;
[http://xkcd.com/936/ XKCD: Password Strength]&lt;br /&gt;
&lt;br /&gt;
=Past by Term=&lt;br /&gt;
===Fall 2013===&lt;br /&gt;
...&lt;/div&gt;</summary>
		<author><name>Nguenthe</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3478</id>
		<title>Security Workshops</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3478"/>
		<updated>2013-09-22T06:01:40Z</updated>

		<summary type="html">&lt;p&gt;Nguenthe: oops, merging with sharvey&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;In light of the orwellian nightmare we&#039;ve built ourselves into, now is a good time for the CSClub to pick up the slack it usually picks and teach people how to be safe out there. &lt;br /&gt;
&lt;br /&gt;
=Topics, and slides=&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This information is fuzzy and subject to change. Do not trust it.&lt;br /&gt;
&lt;br /&gt;
sharvey, m4, and nguenthe are adminning this term&#039;s series&lt;br /&gt;
&lt;br /&gt;
Though the topics are diverse, the ones we will favour actually running are seminars that are short, to the point, and give a specific skill(set).&lt;br /&gt;
&lt;br /&gt;
Note: might be worth organizing this better by theme -sharvey&lt;br /&gt;
&lt;br /&gt;
* sharvey on &#039;&#039;Why Should You Care About Security and Privacy&#039;&#039; &lt;br /&gt;
* ?????? on &#039;&#039;Snowden Roundup&#039;&#039; (sharvey might be able to get some people from CrySP to discuss this; perhaps a panel followed by a Q&amp;amp;A?)&lt;br /&gt;
* yd2dong on &#039;&#039;Traffic Mixing&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Security Proofs: How Many Joules does the NSA Have?&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Full Disk Encryption&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;SSH&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Tunnelling and VPNs&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Your Wifi Network is Insecure&#039;&#039; (cover: aircrack-ng and reaver. maybe nmap and metasploit)&lt;br /&gt;
* [mailto:stephen.palmateer@gmail.com Stephen Palmateer] of KWLUG on &#039;&#039;Tor&#039;&#039; (vs i2p vs Freenet vs /r/darknet?)&lt;br /&gt;
* [mailto:silver@callysto.com Sean Howard] on &#039;&#039;How your ISP owns you&#039;&#039; (UW grad, ex Watsfic president, currently working for sentex.ca, knows details of Bell&#039;s network infrastructure and where the chokepoints are)&lt;br /&gt;
* nguenthe on &#039;&#039;[http://www.cypherpunks.ca/otr OTR]&#039;&#039; -- or IanG if we can get him!&lt;br /&gt;
* nablack and m4farrel with a security demo + open ended question session&lt;br /&gt;
* m4farrel on &#039;&#039;Secrets of a DDoS&#039;&#039;&lt;br /&gt;
* wlritchi on &#039;&#039;Reversing SBeam and pnwing ur phone&#039;&#039;&lt;br /&gt;
* mtrberzi on &#039;&#039;GPG, Keyservers, and You&#039;&#039; and with a keysigning party to boot&lt;br /&gt;
* v2buterin on &#039;&#039;Bitcoin and Bitmessage&#039;&#039; (maybe? pretty please?)&lt;br /&gt;
* IST Security:&lt;br /&gt;
** [mailto:pmatlock@uwaterloo.ca Patrick Matlock] on some combination or subset of oauth, identity, data privacy ([https://uwaterloo.ca/secretariat/policies-procedures-guidelines/policy-8 Policy 8]), and web pentesting&lt;br /&gt;
*** csrf&lt;br /&gt;
*** script injections&lt;br /&gt;
*** ....&lt;br /&gt;
** [mailto:tlabach@uwaterloo.ca Terry Labach] on [http://ist.uwaterloo.ca/~tlabach/safer/ safer web browsing]&lt;br /&gt;
** [mailto:cpbell@uwaterloo.ca Colin Bell]?&lt;br /&gt;
* Sapphyre?&lt;br /&gt;
* Hatguy!&lt;br /&gt;
* ?????? on &#039;&#039;Passwords&#039;&#039; (touch on [http://xkcd.com/936/ security proofs], hashapass/pwdhash, alternatives to passwords (biometrics, one time pads, challenge-response, ssh keys), NOT SHARING YOUR DAMN PASSWORDS ACROSS SITES (cite: the ps3 attack, the linkedin attack, the ....) and how to use jacktheripper)&lt;br /&gt;
* ?????? on &#039;&#039;Browser Fingerprinting&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Filesystem Forensics and the Dangers of Log-Structured Data Storage&#039;&#039; (live demo!) (I would bother zablache, but he&#039;s graduated and in Seattle)&lt;br /&gt;
* ?????? on &#039;&#039;SSL: It&#039;s Broken&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Storytime: Exporting &amp;quot;Munitions&amp;quot;&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Stegonography&#039;&#039; (might be able to get sharvey&#039;s SO to cover this)&lt;br /&gt;
* ?????? on &#039;&#039;Digital Watermarks&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Getting root in 5 minutes with physical access&#039;&#039; (cover how to boot single-user in all versions of Windows, OS X, Linux, and when that fails how to pull a drive and crack the password with l0phtcrack (Win32) or simply editing /etc/shadow (*nix))&lt;br /&gt;
* ?????? on &#039;&#039;What is Identity&#039;&#039; (maybe toss this out to WPIRG?) with info on how sites and overlords (facebook, google) identify you, and how to split your identity digitally&lt;br /&gt;
* ?????? on &#039;&#039;Physical Security&#039;&#039; ([http://lockwiki.com/index.php/Main_Page locks], safes, etc.)&lt;br /&gt;
&lt;br /&gt;
And remember kids, &#039;&#039;&#039;&#039;&#039;educational-use only&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=WPIRG cross promotion=&lt;br /&gt;
&lt;br /&gt;
[http://wpirg.org WPIRG] wants to cross-promote a &amp;quot;privacy forum&amp;quot; with us. They are imagining as an expert panel + QA session, during November. Probably the ideal distribution is csc events on the technical side (&amp;quot;how to shot pgp&amp;quot;, &amp;quot;how to make tls go&amp;quot;, &amp;quot;wat is passwurd&amp;quot;) with WPIRG on the human-scale and politics side, with advertising to both of our cohorts for all events. Some ideas for expert participants:&lt;br /&gt;
* [https://cs.uwaterloo.ca/~iang/ Ian Goldberg] (sharvey)&lt;br /&gt;
* [http://www.michaelgeist.ca/tags/privacy Michael Geist]&lt;br /&gt;
* ????&lt;br /&gt;
* Terry Labach (this sort of thing is, actually, directly within his job description)&lt;br /&gt;
* [http://thoughtcrime.org Marlie Moxinspike]&lt;br /&gt;
&lt;br /&gt;
=Related work and Telling Evidence=&lt;br /&gt;
&lt;br /&gt;
====Related Work====&lt;br /&gt;
[https://ssd.eff.org/ EFF&#039;s Surveillance Self-Defense Guide]&lt;br /&gt;
&lt;br /&gt;
[https://www.encrypteverything.ca/ Pirate Party&#039;s EncryptEverything]&lt;br /&gt;
&lt;br /&gt;
[http://cm.bell-labs.com/who/ken/trust.html Ken Thompson - Reflections on Trusting Trust]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Evidence====&lt;br /&gt;
http://readwrite.com/2010/08/04/google_ceo_schmidt_people_arent_ready_for_the_tech&lt;br /&gt;
&lt;br /&gt;
====IMPORTANT MEDIA====&lt;br /&gt;
3 Dead Trolls in a Baggie - The Privacy Song&lt;br /&gt;
MC Frontalot - Secrets from the Future&lt;br /&gt;
&lt;br /&gt;
[http://www.xkcd.com/538/ XKCD: Security]&lt;br /&gt;
[http://xkcd.com/936/ XKCD: Password Strength]&lt;br /&gt;
&lt;br /&gt;
=Past by Term=&lt;br /&gt;
===Fall 2013===&lt;br /&gt;
...&lt;/div&gt;</summary>
		<author><name>Nguenthe</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3477</id>
		<title>Security Workshops</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3477"/>
		<updated>2013-09-22T06:00:29Z</updated>

		<summary type="html">&lt;p&gt;Nguenthe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;In light of the orwellian nightmare we&#039;ve built ourselves into, now is a good time for the CSClub to pick up the slack it usually picks and teach people how to be safe out there. &lt;br /&gt;
&lt;br /&gt;
=Topics, and slides=&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This information is fuzzy and subject to change. Do not trust it.&lt;br /&gt;
&lt;br /&gt;
sharvey, m4, and nguenthe are adminning this term&#039;s series&lt;br /&gt;
&lt;br /&gt;
Though the topics are diverse, the ones we will favour actually running are seminars that are short, to the point, and give a specific skill(set).&lt;br /&gt;
&lt;br /&gt;
Note: might be worth organizing this better by theme -sharvey&lt;br /&gt;
&lt;br /&gt;
* sharvey on &#039;&#039;Why Should You Care About Security and Privacy&#039;&#039; &lt;br /&gt;
* ?????? on &#039;&#039;Snowden Roundup&#039;&#039; (sharvey might be able to get some people from CrySP to discuss this; perhaps a panel followed by a Q&amp;amp;A?)&lt;br /&gt;
* yd2dong on &#039;&#039;Traffic Mixing&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Security Proofs: How Many Joules does the NSA Have?&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Full Disk Encryption&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;SSH&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Tunnelling and VPNs&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Your Wifi Network is Insecure&#039;&#039; (cover: aircrack-ng and reaver. maybe nmap and metasploit)&lt;br /&gt;
* [mailto:stephen.palmateer@gmail.com Stephen Palmateer] of KWLUG on &#039;&#039;Tor&#039;&#039; (vs i2p vs Freenet vs /r/darknet?)&lt;br /&gt;
* [mailto:silver@callysto.com Sean Howard] on &#039;&#039;How your ISP owns you&#039;&#039; (UW grad, ex Watsfic president, currently working for sentex.ca, knows details of Bell&#039;s network infrastructure and where the chokepoints are)&lt;br /&gt;
* nguenthe on &#039;&#039;[http://www.cypherpunks.ca/otr OTR]&#039;&#039; -- or IanG if we can get him!&lt;br /&gt;
* nablack and m4farrel with a security demo + open ended question session&lt;br /&gt;
* m4farrel on &#039;&#039;Secrets of a DDoS&#039;&#039;&lt;br /&gt;
* wlritchi on &#039;&#039;Reversing SBeam and pnwing ur phone&#039;&#039;&lt;br /&gt;
* mtrberzi on &#039;&#039;GPG, Keyservers, and You&#039;&#039; and with a keysigning party to boot&lt;br /&gt;
* v2buterin on &#039;&#039;Bitcoin and Bitmessage&#039;&#039; (maybe? pretty please?)&lt;br /&gt;
* IST Security:&lt;br /&gt;
** [mailto:pmatlock@uwaterloo.ca Patrick Matlock] on some combination or subset of oauth, identity, data privacy ([https://uwaterloo.ca/secretariat/policies-procedures-guidelines/policy-8 Policy 8]), and web pentesting&lt;br /&gt;
*** csrf&lt;br /&gt;
*** script injections&lt;br /&gt;
*** ....&lt;br /&gt;
** [mailto:tlabach@uwaterloo.ca Terry Labach] on [http://ist.uwaterloo.ca/~tlabach/safer/ safer web browsing]&lt;br /&gt;
** [mailto:cpbell@uwaterloo.ca Colin Bell]?&lt;br /&gt;
* Sapphyre?&lt;br /&gt;
* Hatguy!&lt;br /&gt;
* ?????? on &#039;&#039;Passwords&#039;&#039; (touch on [http://xkcd.com/936/ security proofs], hashapass/pwdhash, alternatives to passwords (biometrics, one time pads, challenge-response, ssh keys), NOT SHARING YOUR DAMN PASSWORDS ACROSS SITES (cite: the ps3 attack, the linkedin attack, the ....) and how to use jacktheripper)&lt;br /&gt;
* ?????? on &#039;&#039;Browser Fingerprinting&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Filesystem Forensics and the Dangers of Log-Structured Data Storage&#039;&#039; (live demo!) (I would bother zablache, but he&#039;s graduated and in Seattle)&lt;br /&gt;
* ?????? on &#039;&#039;SSL: It&#039;s Broken&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Storytime: Exporting &amp;quot;Munitions&amp;quot;&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Stegonography&#039;&#039; (might be able to get sharvey&#039;s SO to cover this)&lt;br /&gt;
* ?????? on &#039;&#039;Digital Watermarks&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;[http://lockwiki.com/index.php/Main_Page Locks]&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Getting root in 5 minutes with physical access&#039;&#039; (cover how to boot single-user in all versions of Windows, OS X, Linux, and when that fails how to pull a drive and crack the password with l0phtcrack (Win32) or simply editing /etc/shadow (*nix))&lt;br /&gt;
* ?????? on &#039;&#039;What is Identity&#039;&#039; (maybe toss this out to WPIRG?) with info on how sites and overlords (facebook, google) identify you, and how to split your identity digitally&lt;br /&gt;
* ?????? on &#039;&#039;Physical Security&#039;&#039; (locks, safes, etc.)&lt;br /&gt;
&lt;br /&gt;
And remember kids, &#039;&#039;&#039;&#039;&#039;educational-use only&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
=WPIRG cross promotion=&lt;br /&gt;
&lt;br /&gt;
[http://wpirg.org WPIRG] wants to cross-promote a &amp;quot;privacy forum&amp;quot; with us. They are imagining as an expert panel + QA session, during November. Probably the ideal distribution is csc events on the technical side (&amp;quot;how to shot pgp&amp;quot;, &amp;quot;how to make tls go&amp;quot;, &amp;quot;wat is passwurd&amp;quot;) with WPIRG on the human-scale and politics side, with advertising to both of our cohorts for all events. Some ideas for expert participants:&lt;br /&gt;
* [https://cs.uwaterloo.ca/~iang/ Ian Goldberg] (sharvey)&lt;br /&gt;
* [http://www.michaelgeist.ca/tags/privacy Michael Geist]&lt;br /&gt;
* ????&lt;br /&gt;
* Terry Labach (this sort of thing is, actually, directly within his job description)&lt;br /&gt;
* [http://thoughtcrime.org Marlie Moxinspike]&lt;br /&gt;
&lt;br /&gt;
=Related work and Telling Evidence=&lt;br /&gt;
&lt;br /&gt;
====Related Work====&lt;br /&gt;
[https://ssd.eff.org/ EFF&#039;s Surveillance Self-Defense Guide]&lt;br /&gt;
&lt;br /&gt;
[https://www.encrypteverything.ca/ Pirate Party&#039;s EncryptEverything]&lt;br /&gt;
&lt;br /&gt;
[http://cm.bell-labs.com/who/ken/trust.html Ken Thompson - Reflections on Trusting Trust]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Evidence====&lt;br /&gt;
http://readwrite.com/2010/08/04/google_ceo_schmidt_people_arent_ready_for_the_tech&lt;br /&gt;
&lt;br /&gt;
====IMPORTANT MEDIA====&lt;br /&gt;
3 Dead Trolls in a Baggie - The Privacy Song&lt;br /&gt;
MC Frontalot - Secrets from the Future&lt;br /&gt;
&lt;br /&gt;
[http://www.xkcd.com/538/ XKCD: Security]&lt;br /&gt;
[http://xkcd.com/936/ XKCD: Password Strength]&lt;br /&gt;
&lt;br /&gt;
=Past by Term=&lt;br /&gt;
===Fall 2013===&lt;br /&gt;
...&lt;/div&gt;</summary>
		<author><name>Nguenthe</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3475</id>
		<title>Security Workshops</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3475"/>
		<updated>2013-09-22T03:48:24Z</updated>

		<summary type="html">&lt;p&gt;Nguenthe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;In light of the orwellian nightmare we&#039;ve built ourselves into, now is a good time for the CSClub to pick up the slack it usually picks and teach people how to be safe out there. &lt;br /&gt;
&lt;br /&gt;
=Topics, and slides=&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This information is fuzzy and subject to change. Do not trust it.&lt;br /&gt;
&lt;br /&gt;
sharvey, m4, and nguenthe are adminning this term&#039;s series&lt;br /&gt;
&lt;br /&gt;
Though the topics are diverse, the ones we will favour actually running are seminars that are short, to the point, and give a specific skill(set).&lt;br /&gt;
&lt;br /&gt;
* sharvey on &#039;&#039;Why Should You Care About Privacy&#039;&#039; &lt;br /&gt;
* ?????? on &#039;&#039;Snowden Roundup&#039;&#039;&lt;br /&gt;
* yd2dong on &#039;&#039;Traffic Mixing&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Security Proofs: How Many Joules does the NSA Have?&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Full Disk Encryption&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;SSH&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Tunnelling and VPNs&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Your Wifi Network is Insecure&#039;&#039; (cover: aircrack-ng and reaver. maybe nmap and metasploit)&lt;br /&gt;
* [mailto:stephen.palmateer@gmail.com Stephen Palmateer] of KWLUG on &#039;&#039;Tor&#039;&#039; (vs i2p vs Freenet vs /r/darknet?)&lt;br /&gt;
* [mailto:silver@callysto.com Sean Howard] on &#039;&#039;How your ISP owns you&#039;&#039; (UW grad, ex Watsfic president, currently working for sentex.ca, knows details of Bell&#039;s network infrastructure and where the chokepoints are)&lt;br /&gt;
* nguenthe on &#039;&#039;[http://www.cypherpunks.ca/otr OTR]&#039;&#039; -- or IanG if we can get him!&lt;br /&gt;
* nablack and m4farrel with a security demo + open ended question session&lt;br /&gt;
* m4farrel on &#039;&#039;Secrets of a DDoS&#039;&#039;&lt;br /&gt;
* wlritchi on &#039;&#039;Reversing SBeam and pnwing ur phone&#039;&#039;&lt;br /&gt;
* mtrberzi on &#039;&#039;GPG, Keyservers, and You&#039;&#039; and with a keysigning party to boot&lt;br /&gt;
* v2buterin on &#039;&#039;Bitcoin and Bitmessage&#039;&#039; (maybe? pretty please?)&lt;br /&gt;
* IST Security:&lt;br /&gt;
** [mailto:pmatlock@uwaterloo.ca Patrick Matlock] on some combination or subset of oauth, identity, data privacy ([https://uwaterloo.ca/secretariat/policies-procedures-guidelines/policy-8 Policy 8]), and web pentesting&lt;br /&gt;
*** csrf&lt;br /&gt;
*** script injections&lt;br /&gt;
*** ....&lt;br /&gt;
** [mailto:tlabach@uwaterloo.ca Terry Labach] on [http://ist.uwaterloo.ca/~tlabach/safer/ safer web browsing]&lt;br /&gt;
** [mailto:cpbell@uwaterloo.ca Colin Bell]?&lt;br /&gt;
* Sapphyre?&lt;br /&gt;
* Hatguy!&lt;br /&gt;
* ?????? on &#039;&#039;Passwords&#039;&#039; (touch on [http://xkcd.com/936/ security proofs], hashapass/pwdhash, alternatives to passwords (biometrics, one time pads, challenge-response, ssh keys), NOT SHARING YOUR DAMN PASSWORDS ACROSS SITES (cite: the ps3 attack, the linkedin attack, the ....) and how to use jacktheripper)&lt;br /&gt;
* ?????? on &#039;&#039;Browser Fingerprinting&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Filesystem Forensics and the Dangers of Log-Structured Data Storage&#039;&#039; (live demo!)&lt;br /&gt;
* ?????? on &#039;&#039;SSL: It&#039;s Broken&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Storytime: Exporting &amp;quot;Munitions&amp;quot;&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Stegonography&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Digital Watermarks&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Getting root in 5 minutes with physical access&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;What is Identity&#039;&#039; (maybe toss this out to WPIRG?) with info on how sites and overlords (facebook, google) identify you, and how to split your identity digitally&lt;br /&gt;
&lt;br /&gt;
And remember kids, &#039;&#039;&#039;&#039;&#039;educational-use only&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=WPIRG cross promotion=&lt;br /&gt;
&lt;br /&gt;
[http://wpirg.org WPIRG] wants to cross-promote a &amp;quot;privacy forum&amp;quot; with us. They are imagining as an expert panel + QA session, during November. Probably the ideal distribution is csc events on the technical side (&amp;quot;how to shot pgp&amp;quot;, &amp;quot;how to make tls go&amp;quot;, &amp;quot;wat is passwurd&amp;quot;) with WPIRG on the human-scale and politics side, with advertising to both of our cohorts for all events. Some ideas for expert participants:&lt;br /&gt;
* [https://cs.uwaterloo.ca/~iang/ Ian Goldberg] (sharvey)&lt;br /&gt;
* [http://www.michaelgeist.ca/tags/privacy Michael Geist]&lt;br /&gt;
* ????&lt;br /&gt;
* Terry Labach (this sort of thing is, actually, directly within his job description)&lt;br /&gt;
* [http://thoughtcrime.org Marlie Moxinspike]&lt;br /&gt;
&lt;br /&gt;
=Related work and Telling Evidence=&lt;br /&gt;
&lt;br /&gt;
====Related Work====&lt;br /&gt;
[https://ssd.eff.org/ EFF&#039;s Surveillance Self-Defense Guide]&lt;br /&gt;
&lt;br /&gt;
[https://www.encrypteverything.ca/ Pirate Party&#039;s EncryptEverything]&lt;br /&gt;
&lt;br /&gt;
[http://cm.bell-labs.com/who/ken/trust.html Ken Thompson - Reflections on Trusting Trust]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Evidence====&lt;br /&gt;
http://readwrite.com/2010/08/04/google_ceo_schmidt_people_arent_ready_for_the_tech&lt;br /&gt;
&lt;br /&gt;
====IMPORTANT MEDIA====&lt;br /&gt;
3 Dead Trolls in a Baggie - The Privacy Song&lt;br /&gt;
MC Frontalot - Secrets from the Future&lt;br /&gt;
&lt;br /&gt;
[http://www.xkcd.com/538/ XKCD: Security]&lt;br /&gt;
[http://xkcd.com/936/ XKCD: Password Strength]&lt;br /&gt;
&lt;br /&gt;
=Past by Term=&lt;br /&gt;
===Fall 2013===&lt;br /&gt;
...&lt;/div&gt;</summary>
		<author><name>Nguenthe</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3474</id>
		<title>Security Workshops</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3474"/>
		<updated>2013-09-22T03:47:55Z</updated>

		<summary type="html">&lt;p&gt;Nguenthe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;In light of the orwellian nightmare we&#039;ve built ourselves into, now is a good time for the CSClub to pick up the slack it usually picks and teach people how to be safe out there. &lt;br /&gt;
&lt;br /&gt;
=Topics, and slides=&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
This information is fuzzy and subject to change. Do not trust it.&lt;br /&gt;
&lt;br /&gt;
sharvey, m4, and nguenthe are adminning this term&#039;s series&lt;br /&gt;
&lt;br /&gt;
Though the topics are diverse, the ones we will favour actually running are seminars that are short, to the point, and give a specific skill(set).&lt;br /&gt;
&lt;br /&gt;
* sharvey on &#039;&#039;Why Should You Care About Privacy&#039;&#039; &lt;br /&gt;
* ?????? on &#039;&#039;Snowden Roundup&#039;&#039;&lt;br /&gt;
* yd2dong on &#039;&#039;Traffic Mixing&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Security Proofs: How Many Joules does the NSA Have?&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Full Disk Encryption&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;SSH&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Tunnelling and VPNs&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Your Wifi Network is Insecure&#039;&#039; (cover: aircrack-ng and reaver. maybe nmap and metasploit)&lt;br /&gt;
* [mailto:stephen.palmateer@gmail.com Stephen Palmateer] of KWLUG on &#039;&#039;Tor&#039;&#039; (vs i2p vs Freenet vs /r/darknet?)&lt;br /&gt;
* [mailto:silver@callysto.com Sean Howard] on &#039;&#039;How your ISP owns you&#039;&#039; (UW grad, ex Watsfic president, currently working for sentex.ca, knows details of Bell&#039;s network infrastructure and where the chokepoints are)&lt;br /&gt;
* nguenthe on &#039;&#039;[http://www.cypherpunks.ca/otr OTR]&#039;&#039; -- or IanG if we can get him!&lt;br /&gt;
* nablack and m4farrel with a security demo + open ended question session&lt;br /&gt;
* m4farrel on &#039;&#039;Secrets of a DDoS&#039;&#039;&lt;br /&gt;
* wlritchi on &#039;&#039;Reversing SBeam and pnwing ur phone&#039;&#039;&lt;br /&gt;
* mtrberzi on &#039;&#039;GPG, Keyservers, and You&#039;&#039; and with a keysigning party to boot&lt;br /&gt;
* v2buterin on &#039;&#039;Bitcoin and Bitmessage&#039;&#039; (maybe? pretty please?)&lt;br /&gt;
* IST Security:&lt;br /&gt;
** [mailto:pmatlock@uwaterloo.ca Patrick Matlock] on some combination or subset of oauth, identity, data privacy ([https://uwaterloo.ca/secretariat/policies-procedures-guidelines/policy-8 Policy 8]), and web pentesting&lt;br /&gt;
*** csrf&lt;br /&gt;
*** script injections&lt;br /&gt;
*** ....&lt;br /&gt;
** [mailto:tlabach@uwaterloo.ca Terry Labach] on [http://ist.uwaterloo.ca/~tlabach/safer/ safer web browsing]&lt;br /&gt;
** [mailto:cpbell@uwaterloo.ca Colin Bell]?&lt;br /&gt;
* Sapphyre?&lt;br /&gt;
* Hatguy!&lt;br /&gt;
* ?????? on &#039;&#039;Passwords&#039;&#039; (touch on [http://xkcd.com/936/ security proofs], hashapass/pwdhash, alternatives to passwords (biometrics, one time pads, challenge-response, ssh keys), NOT SHARING YOUR DAMN PASSWORDS ACROSS SITES (cite: the ps3 attack, the linkedin attack, the ....) and how to use jacktheripper)&lt;br /&gt;
* ?????? on &#039;&#039;Browser Fingerprinting&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Filesystem Forensics and the Dangers of Log-Structured Data Storage&#039;&#039; (live demo!)&lt;br /&gt;
* ?????? on &#039;&#039;SSL: It&#039;s Broken&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Storytime: Exporting &amp;quot;Munitions&amp;quot;&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Stegonography&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Digital Watermarks&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Getting root in 5 minutes with physical access&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;What is Identity&#039;&#039; (maybe toss this out to WPIRG?) with info on how sites and overlords (facebook, google) identify you, and how to split your identity digitally&lt;br /&gt;
&lt;br /&gt;
And remember kids, &#039;&#039;&#039;&#039;&#039;educational-use only&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
======WPIRG cross promotion=====&lt;br /&gt;
&lt;br /&gt;
[http://wpirg.org WPIRG] wants to cross-promote a &amp;quot;privacy forum&amp;quot; with us. They are imagining as an expert panel + QA session, during November. Probably the ideal distribution is csc events on the technical side (&amp;quot;how to shot pgp&amp;quot;, &amp;quot;how to make tls go&amp;quot;, &amp;quot;wat is passwurd&amp;quot;) with WPIRG on the human-scale and politics side, with advertising to both of our cohorts for all events. Some ideas for expert participants:&lt;br /&gt;
* [https://cs.uwaterloo.ca/~iang/ Ian Goldberg] (sharvey)&lt;br /&gt;
* [http://www.michaelgeist.ca/tags/privacy Michael Geist]&lt;br /&gt;
* ????&lt;br /&gt;
* Terry Labach (this sort of thing is, actually, directly within his job description)&lt;br /&gt;
* [http://thoughtcrime.org Marlie Moxinspike]&lt;br /&gt;
&lt;br /&gt;
=Related work and Telling Evidence=&lt;br /&gt;
&lt;br /&gt;
====Related Work====&lt;br /&gt;
[https://ssd.eff.org/ EFF&#039;s Surveillance Self-Defense Guide]&lt;br /&gt;
&lt;br /&gt;
[https://www.encrypteverything.ca/ Pirate Party&#039;s EncryptEverything]&lt;br /&gt;
&lt;br /&gt;
[http://cm.bell-labs.com/who/ken/trust.html Ken Thompson - Reflections on Trusting Trust]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Evidence====&lt;br /&gt;
http://readwrite.com/2010/08/04/google_ceo_schmidt_people_arent_ready_for_the_tech&lt;br /&gt;
&lt;br /&gt;
====IMPORTANT MEDIA====&lt;br /&gt;
3 Dead Trolls in a Baggie - The Privacy Song&lt;br /&gt;
MC Frontalot - Secrets from the Future&lt;br /&gt;
&lt;br /&gt;
[http://www.xkcd.com/538/ XKCD: Security]&lt;br /&gt;
[http://xkcd.com/936/ XKCD: Password Strength]&lt;br /&gt;
&lt;br /&gt;
=Past by Term=&lt;br /&gt;
===Fall 2013===&lt;br /&gt;
...&lt;/div&gt;</summary>
		<author><name>Nguenthe</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3473</id>
		<title>Security Workshops</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3473"/>
		<updated>2013-09-22T03:44:40Z</updated>

		<summary type="html">&lt;p&gt;Nguenthe: /* Fall 2013 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;In light of the orwellian nightmare we&#039;ve built ourselves into, now is a good time for the CSClub to pick up the slack it usually picks and teach people how to be safe out there. &lt;br /&gt;
&lt;br /&gt;
=Topics, and slides=&lt;br /&gt;
&lt;br /&gt;
=Related work and Telling Evidence=&lt;br /&gt;
&lt;br /&gt;
====Related Work====&lt;br /&gt;
[https://ssd.eff.org/ EFF&#039;s Surveillance Self-Defense Guide]&lt;br /&gt;
&lt;br /&gt;
[https://www.encrypteverything.ca/ Pirate Party&#039;s EncryptEverything]&lt;br /&gt;
&lt;br /&gt;
[http://cm.bell-labs.com/who/ken/trust.html Ken Thompson - Reflections on Trusting Trust]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Evidence====&lt;br /&gt;
http://readwrite.com/2010/08/04/google_ceo_schmidt_people_arent_ready_for_the_tech&lt;br /&gt;
&lt;br /&gt;
====IMPORTANT MEDIA====&lt;br /&gt;
3 Dead Trolls in a Baggie - The Privacy Song&lt;br /&gt;
&lt;br /&gt;
MC Frontalot - Secrets from the Future&lt;br /&gt;
&lt;br /&gt;
=Series by Term=&lt;br /&gt;
&lt;br /&gt;
===Fall 2013===&lt;br /&gt;
&lt;br /&gt;
This information is fuzzy and subject to change. Do not trust it.&lt;br /&gt;
&lt;br /&gt;
sharvey, m4, and nguenthe are adminning this term&#039;s series&lt;br /&gt;
&lt;br /&gt;
Though the topics are diverse, the ones we will favour actually running are seminars that are short, to the point, and give a specific skill(set).&lt;br /&gt;
&lt;br /&gt;
* sharvey on &#039;&#039;Why Should You Care About Privacy&#039;&#039; &lt;br /&gt;
* ?????? on &#039;&#039;Snowden Roundup&#039;&#039;&lt;br /&gt;
* yd2dong on &#039;&#039;Traffic Mixing&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Security Proofs: How Many Joules does the NSA Have?&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Full Disk Encryption&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;SSH&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Tunnelling and VPNs&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Your Wifi Network is Insecure&#039;&#039; (cover: aircrack-ng and reaver. maybe nmap and metasploit)&lt;br /&gt;
* [mailto:stephen.palmateer@gmail.com Stephen Palmateer] of KWLUG on &#039;&#039;Tor&#039;&#039; (vs i2p vs Freenet vs /r/darknet?)&lt;br /&gt;
* [mailto:silver@callysto.com Sean Howard] on &#039;&#039;How your ISP owns you&#039;&#039; (UW grad, ex Watsfic president, currently working for sentex.ca, knows details of Bell&#039;s network infrastructure and where the chokepoints are)&lt;br /&gt;
* nguenthe on &#039;&#039;[http://www.cypherpunks.ca/otr OTR]&#039;&#039; -- or IanG if we can get him!&lt;br /&gt;
* nablack and m4farrel with a security demo + open ended question session&lt;br /&gt;
* m4farrel on &#039;&#039;Secrets of a DDoS&#039;&#039;&lt;br /&gt;
* wlritchi on &#039;&#039;Reversing SBeam and pnwing ur phone&#039;&#039;&lt;br /&gt;
* mtrberzi on &#039;&#039;GPG, Keyservers, and You&#039;&#039; and with a keysigning party to boot&lt;br /&gt;
* v2buterin on &#039;&#039;Bitcoin and Bitmessage&#039;&#039; (maybe? pretty please?)&lt;br /&gt;
* IST Security:&lt;br /&gt;
** [mailto:pmatlock@uwaterloo.ca Patrick Matlock] on some combination or subset of oauth, identity, data privacy ([https://uwaterloo.ca/secretariat/policies-procedures-guidelines/policy-8 Policy 8]), and web pentesting&lt;br /&gt;
*** csrf&lt;br /&gt;
*** script injections&lt;br /&gt;
*** ....&lt;br /&gt;
** [mailto:tlabach@uwaterloo.ca Terry Labach] on [http://ist.uwaterloo.ca/~tlabach/safer/ safer web browsing]&lt;br /&gt;
** [mailto:cpbell@uwaterloo.ca Colin Bell]?&lt;br /&gt;
* Sapphyre?&lt;br /&gt;
* Hatguy!&lt;br /&gt;
* ?????? on &#039;&#039;Passwords&#039;&#039; (touch on [http://xkcd.com/936/ security proofs], hashapass/pwdhash, alternatives to passwords (biometrics, one time pads, challenge-response, ssh keys), NOT SHARING YOUR DAMN PASSWORDS ACROSS SITES (cite: the ps3 attack, the linkedin attack, the ....) and how to use jacktheripper)&lt;br /&gt;
* ?????? on &#039;&#039;Browser Fingerprinting&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Filesystem Forensics and the Dangers of Log-Structured Data Storage&#039;&#039; (live demo!)&lt;br /&gt;
* ?????? on &#039;&#039;SSL: It&#039;s Broken&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Storytime: Exporting &amp;quot;Munitions&amp;quot;&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Stegonography&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Digital Watermarks&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Getting root in 5 minutes with physical access&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;What is Identity&#039;&#039; (maybe toss this out to WPIRG?) with info on how sites and overlords (facebook, google) identify you, and how to split your identity digitally&lt;br /&gt;
&lt;br /&gt;
And remember kids, &#039;&#039;&#039;&#039;&#039;educational-use only&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[http://wpirg.org WPIRG] wants to cross-promote a &amp;quot;privacy forum&amp;quot; with us. They are imagining as an expert panel + QA session, during November. Probably the ideal distribution is csc events on the technical side (&amp;quot;how to shot pgp&amp;quot;, &amp;quot;how to make tls go&amp;quot;, &amp;quot;wat is passwurd&amp;quot;) with WPIRG on the human-scale and politics side, with advertising to both of our cohorts for all events. Some ideas for expert participants:&lt;br /&gt;
* [https://cs.uwaterloo.ca/~iang/ Ian Goldberg] (sharvey)&lt;br /&gt;
* [http://www.michaelgeist.ca/tags/privacy Michael Geist]&lt;br /&gt;
* ????&lt;br /&gt;
* Terry Labach (this sort of thing is, actually, directly within his job description)&lt;br /&gt;
* [http://thoughtcrime.org Marlie Moxinspike]&lt;/div&gt;</summary>
		<author><name>Nguenthe</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3472</id>
		<title>Security Workshops</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3472"/>
		<updated>2013-09-22T03:43:19Z</updated>

		<summary type="html">&lt;p&gt;Nguenthe: /* Fall 2013 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;In light of the orwellian nightmare we&#039;ve built ourselves into, now is a good time for the CSClub to pick up the slack it usually picks and teach people how to be safe out there. &lt;br /&gt;
&lt;br /&gt;
=Topics, and slides=&lt;br /&gt;
&lt;br /&gt;
=Related work and Telling Evidence=&lt;br /&gt;
&lt;br /&gt;
====Related Work====&lt;br /&gt;
[https://ssd.eff.org/ EFF&#039;s Surveillance Self-Defense Guide]&lt;br /&gt;
&lt;br /&gt;
[https://www.encrypteverything.ca/ Pirate Party&#039;s EncryptEverything]&lt;br /&gt;
&lt;br /&gt;
[http://cm.bell-labs.com/who/ken/trust.html Ken Thompson - Reflections on Trusting Trust]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Evidence====&lt;br /&gt;
http://readwrite.com/2010/08/04/google_ceo_schmidt_people_arent_ready_for_the_tech&lt;br /&gt;
&lt;br /&gt;
====IMPORTANT MEDIA====&lt;br /&gt;
3 Dead Trolls in a Baggie - The Privacy Song&lt;br /&gt;
&lt;br /&gt;
MC Frontalot - Secrets from the Future&lt;br /&gt;
&lt;br /&gt;
=Series by Term=&lt;br /&gt;
&lt;br /&gt;
===Fall 2013===&lt;br /&gt;
&lt;br /&gt;
This information is fuzzy and subject to change. Do not trust it.&lt;br /&gt;
&lt;br /&gt;
sharvey, m4, and nguenthe are adminning this term&#039;s series&lt;br /&gt;
&lt;br /&gt;
Though the topics are diverse, the ones we will favour actually running are seminars that are short, to the point, and give a specific skill(set).&lt;br /&gt;
&lt;br /&gt;
* sharvey on &#039;&#039;Why Should You Care About Privacy&#039;&#039; &lt;br /&gt;
* ?????? on &#039;&#039;Snowden Roundup&#039;&#039;&lt;br /&gt;
* yd2dong on &#039;&#039;Traffic Mixing&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Security Proofs: How Many Joules does the NSA Have?&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Full Disk Encryption&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;SSH&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Tunnelling and VPNs&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Your Wifi Network is Insecure&#039;&#039; (cover: aircrack-ng and reaver. maybe nmap and metasploit)&lt;br /&gt;
* [mailto:stephen.palmateer@gmail.com Stephen Palmateer] of KWLUG on &#039;&#039;Tor&#039;&#039; (vs i2p vs Freenet vs /r/darknet?)&lt;br /&gt;
* [mailto:silver@callysto.com Sean Howard] on &#039;&#039;How your ISP owns you&#039;&#039; (UW grad, ex Watsfic president, currently working for sentex.ca, knows details of Bell&#039;s network infrastructure and where the chokepoints are)&lt;br /&gt;
* nguenthe on &#039;&#039;[http://cypherpunks.ca/otr OTR]&#039;&#039; -- or IanG if we can get him!&lt;br /&gt;
* nablack and m4farrel with a security demo + open ended question session&lt;br /&gt;
* m4farrel on &#039;&#039;Secrets of a DDoS&#039;&#039;&lt;br /&gt;
* wlritchi on &#039;&#039;Reversing SBeam and pnwing ur phone&#039;&#039;&lt;br /&gt;
* mtrberzi on &#039;&#039;GPG, Keyservers, and You&#039;&#039; and with a keysigning party to boot&lt;br /&gt;
* v2buterin on &#039;&#039;Bitcoin and Bitmessage&#039;&#039; (maybe? pretty please?)&lt;br /&gt;
* IST Security:&lt;br /&gt;
** [mailto:pmatlock@uwaterloo.ca Patrick Matlock] on some combination or subset of oauth, identity, data privacy ([https://uwaterloo.ca/secretariat/policies-procedures-guidelines/policy-8 Policy 8]), and web pentesting&lt;br /&gt;
*** csrf&lt;br /&gt;
*** script injections&lt;br /&gt;
*** ....&lt;br /&gt;
** [mailto:tlabach@uwaterloo.ca Terry Labach] on [http://ist.uwaterloo.ca/~tlabach/safer/ safer web browsing]&lt;br /&gt;
** [mailto:cpbell@uwaterloo.ca Colin Bell]?&lt;br /&gt;
* Sapphyre?&lt;br /&gt;
* Hatguy!&lt;br /&gt;
* ?????? on &#039;&#039;Passwords&#039;&#039; (touch on [http://xkcd.com/936/ security proofs], hashapass/pwdhash, alternatives to passwords (biometrics, one time pads, challenge-response, ssh keys), NOT SHARING YOUR DAMN PASSWORDS ACROSS SITES (cite: the ps3 attack, the linkedin attack, the ....) and how to use jacktheripper)&lt;br /&gt;
* ?????? on &#039;&#039;Browser Fingerprinting&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Filesystem Forensics and the Dangers of Log-Structured Data Storage&#039;&#039; (live demo!)&lt;br /&gt;
* ?????? on &#039;&#039;SSL: It&#039;s Broken&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Storytime: Exporting &amp;quot;Munitions&amp;quot;&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Stegonography&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Digital Watermarks&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Getting root in 5 minutes with physical access&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;What is Identity&#039;&#039; (maybe toss this out to WPIRG?) with info on how sites and overlords (facebook, google) identify you, and how to split your identity digitally&lt;br /&gt;
&lt;br /&gt;
And remember kids, &#039;&#039;&#039;&#039;&#039;educational-use only&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[http://wpirg.org WPIRG] wants to cross-promote a &amp;quot;privacy forum&amp;quot; with us. They are imagining as an expert panel + QA session, during November. Probably the ideal distribution is csc events on the technical side (&amp;quot;how to shot pgp&amp;quot;, &amp;quot;how to make tls go&amp;quot;, &amp;quot;wat is passwurd&amp;quot;) with WPIRG on the human-scale and politics side, with advertising to both of our cohorts for all events. Some ideas for expert participants:&lt;br /&gt;
* [https://cs.uwaterloo.ca/~iang/ Ian Goldberg] (sharvey)&lt;br /&gt;
* [http://www.michaelgeist.ca/tags/privacy Michael Geist]&lt;br /&gt;
* ????&lt;br /&gt;
* Terry Labach (this sort of thing is, actually, directly within his job description)&lt;br /&gt;
* [http://thoughtcrime.org Marlie Moxinspike]&lt;/div&gt;</summary>
		<author><name>Nguenthe</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3471</id>
		<title>Security Workshops</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3471"/>
		<updated>2013-09-22T03:40:30Z</updated>

		<summary type="html">&lt;p&gt;Nguenthe: /* Fall 2013 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;In light of the orwellian nightmare we&#039;ve built ourselves into, now is a good time for the CSClub to pick up the slack it usually picks and teach people how to be safe out there. &lt;br /&gt;
&lt;br /&gt;
=Topics, and slides=&lt;br /&gt;
&lt;br /&gt;
=Related work and Telling Evidence=&lt;br /&gt;
&lt;br /&gt;
====Related Work====&lt;br /&gt;
[https://ssd.eff.org/ EFF&#039;s Surveillance Self-Defense Guide]&lt;br /&gt;
&lt;br /&gt;
[https://www.encrypteverything.ca/ Pirate Party&#039;s EncryptEverything]&lt;br /&gt;
&lt;br /&gt;
[http://cm.bell-labs.com/who/ken/trust.html Ken Thompson - Reflections on Trusting Trust]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Evidence====&lt;br /&gt;
http://readwrite.com/2010/08/04/google_ceo_schmidt_people_arent_ready_for_the_tech&lt;br /&gt;
&lt;br /&gt;
====IMPORTANT MEDIA====&lt;br /&gt;
3 Dead Trolls in a Baggie - The Privacy Song&lt;br /&gt;
&lt;br /&gt;
MC Frontalot - Secrets from the Future&lt;br /&gt;
&lt;br /&gt;
=Series by Term=&lt;br /&gt;
&lt;br /&gt;
===Fall 2013===&lt;br /&gt;
&lt;br /&gt;
This information is fuzzy and subject to change. Do not trust it.&lt;br /&gt;
&lt;br /&gt;
sharvey, m4, and nguenthe are adminning this term&#039;s series&lt;br /&gt;
&lt;br /&gt;
Though the topics are diverse, the ones we will favour actually running are runs that are short, to the point, and give a specific skill(set).&lt;br /&gt;
&lt;br /&gt;
* sharvey on &#039;&#039;Why Should You Care About Privacy&#039;&#039; &lt;br /&gt;
* ?????? on &#039;&#039;Snowden Roundup&#039;&#039;&lt;br /&gt;
* yd2dong on &#039;&#039;Traffic Mixing&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Security Proofs: How Many Joules does the NSA Have?&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Full Disk Encryption&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;SSH&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Tunnelling and VPNs&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Your Wifi Network is Insecure&#039;&#039; (cover: aircrack-ng and reaver. maybe nmap and metasploit)&lt;br /&gt;
* [mailto:stephen.palmateer@gmail.com Stephen Palmateer] of KWLUG on &#039;&#039;Tor&#039;&#039; (vs i2p vs Freenet vs /r/darknet?)&lt;br /&gt;
* [mailto:silver@callysto.com Sean Howard] on &#039;&#039;How your ISP owns you&#039;&#039; (UW grad, ex Watsfic president, currently working for sentex.ca, knows details of Bell&#039;s network infrastructure and where the chokepoints are)&lt;br /&gt;
* nguenthe on &#039;&#039;[http://cypherpunks.ca/otr OTR]&#039;&#039; -- or IanG if we can get him!&lt;br /&gt;
* nablack and m4farrel with a security demo + open ended question session&lt;br /&gt;
* m4farrel on &#039;&#039;Secrets of a DDoS&#039;&#039;&lt;br /&gt;
* wlritchi on &#039;&#039;Reversing SBeam and pnwing ur phone&#039;&#039;&lt;br /&gt;
* mtrberzi on &#039;&#039;GPG, Keyservers, and You&#039;&#039; and with a keysigning party to boot&lt;br /&gt;
* v2buterin on &#039;&#039;Bitcoin and Bitmessage&#039;&#039; (maybe? pretty please?)&lt;br /&gt;
* IST Security:&lt;br /&gt;
** [mailto:pmatlock@uwaterloo.ca Patrick Matlock] on some combination or subset of oauth, identity, data privacy ([https://uwaterloo.ca/secretariat/policies-procedures-guidelines/policy-8 Policy 8]), and web pentesting&lt;br /&gt;
*** csrf&lt;br /&gt;
*** script injections&lt;br /&gt;
*** ....&lt;br /&gt;
** [mailto:tlabach@uwaterloo.ca Terry Labach] on [http://ist.uwaterloo.ca/~tlabach/safer/ safer web browsing]&lt;br /&gt;
** [mailto:cpbell@uwaterloo.ca Colin Bell]?&lt;br /&gt;
* Sapphyre?&lt;br /&gt;
* Hatguy!&lt;br /&gt;
* ?????? on &#039;&#039;Passwords&#039;&#039; (touch on [http://xkcd.com/936/ security proofs], hashapass/pwdhash, alternatives to passwords (biometrics, one time pads, challenge-response, ssh keys), NOT SHARING YOUR DAMN PASSWORDS ACROSS SITES (cite: the ps3 attack, the linkedin attack, the ....) and how to use jacktheripper)&lt;br /&gt;
* ?????? on &#039;&#039;Browser Fingerprinting&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Filesystem Forensics and the Dangers of Log-Structured Data Storage&#039;&#039; (live demo!)&lt;br /&gt;
* ?????? on &#039;&#039;SSL: It&#039;s Broken&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Storytime: Exporting &amp;quot;Munitions&amp;quot;&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Stegonography&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Digital Watermarks&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Getting root in 5 minutes with physical access&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;What is Identity&#039;&#039; (maybe toss this out to WPIRG?) with info on how sites and overlords (facebook, google) identify you, and how to split your identity digitally&lt;br /&gt;
&lt;br /&gt;
And remember kids, &#039;&#039;&#039;&#039;&#039;educational-use only&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[http://wpirg.org WPIRG] wants to cross-promote a &amp;quot;privacy forum&amp;quot; with us. They are imagining as an expert panel + QA session, during November. Probably the ideal distribution is csc events on the technical side (&amp;quot;how to shot pgp&amp;quot;, &amp;quot;how to make tls go&amp;quot;, &amp;quot;wat is passwurd&amp;quot;) with WPIRG on the human-scale and politics side, with advertising to both of our cohorts for all events. Some ideas for expert participants:&lt;br /&gt;
* [https://cs.uwaterloo.ca/~iang/ Ian Goldberg] (sharvey)&lt;br /&gt;
* [http://www.michaelgeist.ca/tags/privacy Michael Geist]&lt;br /&gt;
* ????&lt;br /&gt;
* Terry Labach (this sort of thing is, actually, directly within his job description)&lt;br /&gt;
* [http://thoughtcrime.org Marlie Moxinspike]&lt;/div&gt;</summary>
		<author><name>Nguenthe</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3470</id>
		<title>Security Workshops</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3470"/>
		<updated>2013-09-22T03:38:13Z</updated>

		<summary type="html">&lt;p&gt;Nguenthe: /* Fall 2013 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;In light of the orwellian nightmare we&#039;ve built ourselves into, now is a good time for the CSClub to pick up the slack it usually picks and teach people how to be safe out there. &lt;br /&gt;
&lt;br /&gt;
=Topics, and slides=&lt;br /&gt;
&lt;br /&gt;
=Related work and Telling Evidence=&lt;br /&gt;
&lt;br /&gt;
====Related Work====&lt;br /&gt;
[https://ssd.eff.org/ EFF&#039;s Surveillance Self-Defense Guide]&lt;br /&gt;
&lt;br /&gt;
[https://www.encrypteverything.ca/ Pirate Party&#039;s EncryptEverything]&lt;br /&gt;
&lt;br /&gt;
[http://cm.bell-labs.com/who/ken/trust.html Ken Thompson - Reflections on Trusting Trust]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Evidence====&lt;br /&gt;
http://readwrite.com/2010/08/04/google_ceo_schmidt_people_arent_ready_for_the_tech&lt;br /&gt;
&lt;br /&gt;
====IMPORTANT MEDIA====&lt;br /&gt;
3 Dead Trolls in a Baggie - The Privacy Song&lt;br /&gt;
&lt;br /&gt;
MC Frontalot - Secrets from the Future&lt;br /&gt;
&lt;br /&gt;
=Series by Term=&lt;br /&gt;
&lt;br /&gt;
===Fall 2013===&lt;br /&gt;
&lt;br /&gt;
This information is fuzzy and subject to change. Do not trust it.&lt;br /&gt;
&lt;br /&gt;
sharvey, m4, and nguenthe are adminning this term&#039;s series&lt;br /&gt;
&lt;br /&gt;
* sharvey on &#039;&#039;Why Should You Care About Privacy&#039;&#039; &lt;br /&gt;
* ?????? on &#039;&#039;Snowden Roundup&#039;&#039;&lt;br /&gt;
* yd2dong on &#039;&#039;Traffic Mixing&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Security Proofs: How Many Joules does the NSA Have?&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Full Disk Encryption&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;SSH&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Tunnelling and VPNs&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Your Wifi Network is Insecure&#039;&#039; (cover: aircrack-ng and reaver. maybe nmap and metasploit)&lt;br /&gt;
* [mailto:stephen.palmateer@gmail.com Stephen Palmateer] of KWLUG on &#039;&#039;Tor&#039;&#039; (vs i2p vs Freenet vs /r/darknet?)&lt;br /&gt;
* [mailto:silver@callysto.com Sean Howard] on &#039;&#039;How your ISP owns you&#039;&#039; (UW grad, ex Watsfic president, currently working for sentex.ca, knows details of Bell&#039;s network infrastructure and where the chokepoints are)&lt;br /&gt;
* nguenthe on &#039;&#039;[http://cypherpunks.ca/otr OTR]&#039;&#039; -- or IanG if we can get him!&lt;br /&gt;
* nablack and m4farrel with a security demo + open ended question session&lt;br /&gt;
* m4farrel on &#039;&#039;Secrets of a DDoS&#039;&#039;&lt;br /&gt;
* wlritchi on &#039;&#039;Reversing SBeam and pnwing ur phone&#039;&#039;&lt;br /&gt;
* mtrberzi on &#039;&#039;GPG, Keyservers, and You&#039;&#039; and with a keysigning party to boot&lt;br /&gt;
* v2buterin on &#039;&#039;Bitcoin and Bitmessage&#039;&#039; (maybe? pretty please?)&lt;br /&gt;
* IST Security:&lt;br /&gt;
** [mailto:pmatlock@uwaterloo.ca Patrick Matlock] on some combination or subset of oauth, identity, data privacy ([https://uwaterloo.ca/secretariat/policies-procedures-guidelines/policy-8 Policy 8]), and web pentesting&lt;br /&gt;
*** csrf&lt;br /&gt;
*** script injections&lt;br /&gt;
*** ....&lt;br /&gt;
** [mailto:tlabach@uwaterloo.ca Terry Labach] on [http://ist.uwaterloo.ca/~tlabach/safer/ safer web browsing]&lt;br /&gt;
** [mailto:cpbell@uwaterloo.ca Colin Bell]?&lt;br /&gt;
* Sapphyre?&lt;br /&gt;
* Hatguy!&lt;br /&gt;
* ?????? on &#039;&#039;Passwords&#039;&#039; (touch on [http://xkcd.com/936/ security proofs], hashapass/pwdhash, alternatives to passwords (biometrics, one time pads, challenge-response, ssh keys), NOT SHARING YOUR DAMN PASSWORDS ACROSS SITES (cite: the ps3 attack, the linkedin attack, the ....) and how to use jacktheripper)&lt;br /&gt;
* ?????? on &#039;&#039;Browser Fingerprinting&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Filesystem Forensics and the Dangers of Log-Structured Data Storage&#039;&#039; (live demo!)&lt;br /&gt;
* ?????? on &#039;&#039;SSL: It&#039;s Broken&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Storytime: Exporting &amp;quot;Munitions&amp;quot;&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Stegonography&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Digital Watermarks&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Getting root in 5 minutes with physical access&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;What is Identity&#039;&#039; (maybe toss this out to WPIRG?) with info on how sites and overlords (facebook, google) identify you, and how to split your identity digitally&lt;br /&gt;
&lt;br /&gt;
And remember kids, &#039;&#039;&#039;&#039;&#039;educational-use only&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[http://wpirg.org WPIRG] wants to cross-promote a &amp;quot;privacy forum&amp;quot; with us. They are imagining as an expert panel + QA session, during November. Probably the ideal distribution is csc events on the technical side (&amp;quot;how to shot pgp&amp;quot;, &amp;quot;how to make tls go&amp;quot;, &amp;quot;wat is passwurd&amp;quot;) with WPIRG on the human-scale and politics side, with advertising to both of our cohorts for all events. Some ideas for expert participants:&lt;br /&gt;
* [https://cs.uwaterloo.ca/~iang/ Ian Goldberg] (sharvey)&lt;br /&gt;
* [http://www.michaelgeist.ca/tags/privacy Michael Geist]&lt;br /&gt;
* ????&lt;br /&gt;
* Terry Labach (this sort of thing is, actually, directly within his job description)&lt;br /&gt;
* [http://thoughtcrime.org Marlie Moxinspike]&lt;/div&gt;</summary>
		<author><name>Nguenthe</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3469</id>
		<title>Security Workshops</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3469"/>
		<updated>2013-09-22T03:32:58Z</updated>

		<summary type="html">&lt;p&gt;Nguenthe: /* Past Series */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;In light of the orwellian nightmare we&#039;ve built ourselves into, now is a good time for the CSClub to pick up the slack it usually picks and teach people how to be safe out there. &lt;br /&gt;
&lt;br /&gt;
=Topics, and slides=&lt;br /&gt;
&lt;br /&gt;
=Related work and Telling Evidence=&lt;br /&gt;
&lt;br /&gt;
====Related Work====&lt;br /&gt;
[https://ssd.eff.org/ EFF&#039;s Surveillance Self-Defense Guide]&lt;br /&gt;
&lt;br /&gt;
[https://www.encrypteverything.ca/ Pirate Party&#039;s EncryptEverything]&lt;br /&gt;
&lt;br /&gt;
[http://cm.bell-labs.com/who/ken/trust.html Ken Thompson - Reflections on Trusting Trust]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Evidence====&lt;br /&gt;
http://readwrite.com/2010/08/04/google_ceo_schmidt_people_arent_ready_for_the_tech&lt;br /&gt;
&lt;br /&gt;
====IMPORTANT MEDIA====&lt;br /&gt;
3 Dead Trolls in a Baggie - The Privacy Song&lt;br /&gt;
&lt;br /&gt;
MC Frontalot - Secrets from the Future&lt;br /&gt;
&lt;br /&gt;
=Series by Term=&lt;br /&gt;
&lt;br /&gt;
===Fall 2013===&lt;br /&gt;
&lt;br /&gt;
This information is fuzzy and subject to change. Do not trust it.&lt;br /&gt;
&lt;br /&gt;
sharvey, m4, and nguenthe are adminning this term&#039;s series&lt;br /&gt;
&lt;br /&gt;
* sharvey on &#039;&#039;Why Should You Care About Privacy&#039;&#039; &lt;br /&gt;
* ?????? on &#039;&#039;Snowden Roundup&#039;&#039;&lt;br /&gt;
* yd2dong on &#039;&#039;Traffic Mixing&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Security Proofs: How Many Joules does the NSA Have?&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Full Disk Encryption&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;SSH&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Tunnelling&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Your Wifi Network is Insecure&#039;&#039; (cover: aircrack-ng and reaver. maybe nmap and metasploit)&lt;br /&gt;
* [mailto:stephen.palmateer@gmail.com Stephen Palmateer] of KWLUG on &#039;&#039;Tor&#039;&#039; (vs i2p vs Freenet vs /r/darknet?)&lt;br /&gt;
* [mailto:silver@callysto.com Sean Howard] on &#039;&#039;How your ISP owns you&#039;&#039; (UW grad, ex Watsfic president, currently working for sentex.ca, knows details of Bell&#039;s network infrastructure and where the chokepoints are)&lt;br /&gt;
* nguenthe on &#039;&#039;[http://cypherpunks.ca/otr OTR]&#039;&#039; -- or IanG if we can get him!&lt;br /&gt;
* nablack and m4farrel with a security demo + open ended question session&lt;br /&gt;
* m4farrel on &#039;&#039;Secrets of a DDoS&#039;&#039;&lt;br /&gt;
* wlritchi on &#039;&#039;Reversing SBeam and pnwing ur phone&#039;&#039;&lt;br /&gt;
* mtrberzi on &#039;&#039;GPG, Keyservers, and You&#039;&#039; and with a keysigning party to boot&lt;br /&gt;
* v2buterin on &#039;&#039;Bitcoin and Bitmessage&#039;&#039; (maybe? pretty please?)&lt;br /&gt;
* IST Security:&lt;br /&gt;
** [mailto:pmatlock@uwaterloo.ca Patrick Matlock] on some combination or subset of oauth, identity, data privacy ([https://uwaterloo.ca/secretariat/policies-procedures-guidelines/policy-8 Policy 8]), and web pentesting&lt;br /&gt;
*** csrf&lt;br /&gt;
*** script injections&lt;br /&gt;
*** ....&lt;br /&gt;
** [mailto:tlabach@uwaterloo.ca Terry Labach] on [http://ist.uwaterloo.ca/~tlabach/safer/ safer web browsing]&lt;br /&gt;
** [mailto:cpbell@uwaterloo.ca Colin Bell]?&lt;br /&gt;
* Sapphyre?&lt;br /&gt;
* Hatguy!&lt;br /&gt;
* ?????? on &#039;&#039;Passwords&#039;&#039; (touch on [http://xkcd.com/936/ security proofs], hashapass/pwdhash, alternatives to passwords (biometrics, one time pads, challenge-response, ssh keys), NOT SHARING YOUR DAMN PASSWORDS ACROSS SITES (cite: the ps3 attack, the linkedin attack, the ....) and how to use jacktheripper)&lt;br /&gt;
* ?????? on &#039;&#039;Browser Fingerprinting&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Filesystem Forensics and the Dangers of Log-Structured Data Storage&#039;&#039; (live demo!)&lt;br /&gt;
* ?????? on &#039;&#039;SSL: It&#039;s Broken&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Storytime: Exporting &amp;quot;Munitions&amp;quot;&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Stegonography&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Digital Watermarks&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Getting root in 5 minutes with physical access&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;What is Identity&#039;&#039; (maybe toss this out to WPIRG?) with info on how sites and overlords (facebook, google) identify you, and how to split your identity digitally&lt;br /&gt;
&lt;br /&gt;
And remember kids, &#039;&#039;&#039;&#039;&#039;educational-use only&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[http://wpirg.org WPIRG] wants to cross-promote a &amp;quot;privacy forum&amp;quot; with us. They are imagining as an expert panel + QA session, during November. Probably the ideal distribution is csc events on the technical side (&amp;quot;how to shot pgp&amp;quot;, &amp;quot;how to make tls go&amp;quot;, &amp;quot;wat is passwurd&amp;quot;) with WPIRG on the human-scale and politics side, with advertising to both of our cohorts for all events. Some ideas for expert participants:&lt;br /&gt;
* [https://cs.uwaterloo.ca/~iang/ Ian Goldberg] (sharvey)&lt;br /&gt;
* [http://www.michaelgeist.ca/tags/privacy Michael Geist]&lt;br /&gt;
* ????&lt;br /&gt;
* Terry Labach (this sort of thing is, actually, directly within his job description)&lt;br /&gt;
* [http://thoughtcrime.org Marlie Moxinspike]&lt;/div&gt;</summary>
		<author><name>Nguenthe</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3468</id>
		<title>Security Workshops</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3468"/>
		<updated>2013-09-22T03:32:42Z</updated>

		<summary type="html">&lt;p&gt;Nguenthe: /* Fall 2013 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;In light of the orwellian nightmare we&#039;ve built ourselves into, now is a good time for the CSClub to pick up the slack it usually picks and teach people how to be safe out there. &lt;br /&gt;
&lt;br /&gt;
=Topics, and slides=&lt;br /&gt;
&lt;br /&gt;
=Related work and Telling Evidence=&lt;br /&gt;
&lt;br /&gt;
====Related Work====&lt;br /&gt;
[https://ssd.eff.org/ EFF&#039;s Surveillance Self-Defense Guide]&lt;br /&gt;
&lt;br /&gt;
[https://www.encrypteverything.ca/ Pirate Party&#039;s EncryptEverything]&lt;br /&gt;
&lt;br /&gt;
[http://cm.bell-labs.com/who/ken/trust.html Ken Thompson - Reflections on Trusting Trust]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Evidence====&lt;br /&gt;
http://readwrite.com/2010/08/04/google_ceo_schmidt_people_arent_ready_for_the_tech&lt;br /&gt;
&lt;br /&gt;
====IMPORTANT MEDIA====&lt;br /&gt;
3 Dead Trolls in a Baggie - The Privacy Song&lt;br /&gt;
&lt;br /&gt;
MC Frontalot - Secrets from the Future&lt;br /&gt;
&lt;br /&gt;
=Past Series=&lt;br /&gt;
&lt;br /&gt;
===Fall 2013===&lt;br /&gt;
&lt;br /&gt;
This information is fuzzy and subject to change. Do not trust it.&lt;br /&gt;
&lt;br /&gt;
sharvey, m4, and nguenthe are adminning this term&#039;s series&lt;br /&gt;
&lt;br /&gt;
* sharvey on &#039;&#039;Why Should You Care About Privacy&#039;&#039; &lt;br /&gt;
* ?????? on &#039;&#039;Snowden Roundup&#039;&#039;&lt;br /&gt;
* yd2dong on &#039;&#039;Traffic Mixing&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Security Proofs: How Many Joules does the NSA Have?&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Full Disk Encryption&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;SSH&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Tunnelling&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Your Wifi Network is Insecure&#039;&#039; (cover: aircrack-ng and reaver. maybe nmap and metasploit)&lt;br /&gt;
* [mailto:stephen.palmateer@gmail.com Stephen Palmateer] of KWLUG on &#039;&#039;Tor&#039;&#039; (vs i2p vs Freenet vs /r/darknet?)&lt;br /&gt;
* [mailto:silver@callysto.com Sean Howard] on &#039;&#039;How your ISP owns you&#039;&#039; (UW grad, ex Watsfic president, currently working for sentex.ca, knows details of Bell&#039;s network infrastructure and where the chokepoints are)&lt;br /&gt;
* nguenthe on &#039;&#039;[http://cypherpunks.ca/otr OTR]&#039;&#039; -- or IanG if we can get him!&lt;br /&gt;
* nablack and m4farrel with a security demo + open ended question session&lt;br /&gt;
* m4farrel on &#039;&#039;Secrets of a DDoS&#039;&#039;&lt;br /&gt;
* wlritchi on &#039;&#039;Reversing SBeam and pnwing ur phone&#039;&#039;&lt;br /&gt;
* mtrberzi on &#039;&#039;GPG, Keyservers, and You&#039;&#039; and with a keysigning party to boot&lt;br /&gt;
* v2buterin on &#039;&#039;Bitcoin and Bitmessage&#039;&#039; (maybe? pretty please?)&lt;br /&gt;
* IST Security:&lt;br /&gt;
** [mailto:pmatlock@uwaterloo.ca Patrick Matlock] on some combination or subset of oauth, identity, data privacy ([https://uwaterloo.ca/secretariat/policies-procedures-guidelines/policy-8 Policy 8]), and web pentesting&lt;br /&gt;
*** csrf&lt;br /&gt;
*** script injections&lt;br /&gt;
*** ....&lt;br /&gt;
** [mailto:tlabach@uwaterloo.ca Terry Labach] on [http://ist.uwaterloo.ca/~tlabach/safer/ safer web browsing]&lt;br /&gt;
** [mailto:cpbell@uwaterloo.ca Colin Bell]?&lt;br /&gt;
* Sapphyre?&lt;br /&gt;
* Hatguy!&lt;br /&gt;
* ?????? on &#039;&#039;Passwords&#039;&#039; (touch on [http://xkcd.com/936/ security proofs], hashapass/pwdhash, alternatives to passwords (biometrics, one time pads, challenge-response, ssh keys), NOT SHARING YOUR DAMN PASSWORDS ACROSS SITES (cite: the ps3 attack, the linkedin attack, the ....) and how to use jacktheripper)&lt;br /&gt;
* ?????? on &#039;&#039;Browser Fingerprinting&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Filesystem Forensics and the Dangers of Log-Structured Data Storage&#039;&#039; (live demo!)&lt;br /&gt;
* ?????? on &#039;&#039;SSL: It&#039;s Broken&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Storytime: Exporting &amp;quot;Munitions&amp;quot;&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Stegonography&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Digital Watermarks&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Getting root in 5 minutes with physical access&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;What is Identity&#039;&#039; (maybe toss this out to WPIRG?) with info on how sites and overlords (facebook, google) identify you, and how to split your identity digitally&lt;br /&gt;
&lt;br /&gt;
And remember kids, &#039;&#039;&#039;&#039;&#039;educational-use only&#039;&#039;&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
[http://wpirg.org WPIRG] wants to cross-promote a &amp;quot;privacy forum&amp;quot; with us. They are imagining as an expert panel + QA session, during November. Probably the ideal distribution is csc events on the technical side (&amp;quot;how to shot pgp&amp;quot;, &amp;quot;how to make tls go&amp;quot;, &amp;quot;wat is passwurd&amp;quot;) with WPIRG on the human-scale and politics side, with advertising to both of our cohorts for all events. Some ideas for expert participants:&lt;br /&gt;
* [https://cs.uwaterloo.ca/~iang/ Ian Goldberg] (sharvey)&lt;br /&gt;
* [http://www.michaelgeist.ca/tags/privacy Michael Geist]&lt;br /&gt;
* ????&lt;br /&gt;
* Terry Labach (this sort of thing is, actually, directly within his job description)&lt;br /&gt;
* [http://thoughtcrime.org Marlie Moxinspike]&lt;/div&gt;</summary>
		<author><name>Nguenthe</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3467</id>
		<title>Security Workshops</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3467"/>
		<updated>2013-09-22T02:59:42Z</updated>

		<summary type="html">&lt;p&gt;Nguenthe: /* Fall 2013 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;In light of the orwellian nightmare we&#039;ve built ourselves into, now is a good time for the CSClub to pick up the slack it usually picks and teach people how to be safe out there. &lt;br /&gt;
&lt;br /&gt;
=Topics, and slides=&lt;br /&gt;
&lt;br /&gt;
=Related work and Telling Evidence=&lt;br /&gt;
&lt;br /&gt;
====Related Work====&lt;br /&gt;
[https://ssd.eff.org/ EFF&#039;s Surveillance Self-Defense Guide]&lt;br /&gt;
&lt;br /&gt;
[https://www.encrypteverything.ca/ Pirate Party&#039;s EncryptEverything]&lt;br /&gt;
&lt;br /&gt;
[http://cm.bell-labs.com/who/ken/trust.html Ken Thompson - Reflections on Trusting Trust]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Evidence====&lt;br /&gt;
http://readwrite.com/2010/08/04/google_ceo_schmidt_people_arent_ready_for_the_tech&lt;br /&gt;
&lt;br /&gt;
====IMPORTANT MEDIA====&lt;br /&gt;
3 Dead Trolls in a Baggie - The Privacy Song&lt;br /&gt;
&lt;br /&gt;
MC Frontalot - Secrets from the Future&lt;br /&gt;
&lt;br /&gt;
=Past Series=&lt;br /&gt;
&lt;br /&gt;
===Fall 2013===&lt;br /&gt;
&lt;br /&gt;
This information is fuzzy and subject to change. Do not trust it.&lt;br /&gt;
&lt;br /&gt;
sharvey, m4, and nguenthe are adminning this term&#039;s series&lt;br /&gt;
&lt;br /&gt;
* sharvey on &#039;&#039;Why Should You Care About Privacy&#039;&#039; &lt;br /&gt;
* ?????? on &#039;&#039;Snowden Roundup&#039;&#039;&lt;br /&gt;
* yd2dong on &#039;&#039;Traffic Mixing&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Security Proofs: How Many Joules does the NSA Have?&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Full Disk Encryption&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;SSH&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Tunnelling&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Your Wifi Network is Insecure&#039;&#039; (cover: aircrack-ng and reaver. maybe nmap and metasploit)&lt;br /&gt;
* [mailto:stephen.palmateer@gmail.com Stephen Palmateer] of KWLUG on &#039;&#039;Tor&#039;&#039; (vs i2p vs Freenet vs /r/darknet?)&lt;br /&gt;
* [mailto:silver@callysto.com Sean Howard] on &#039;&#039;How your ISP owns you&#039;&#039; (UW grad, ex Watsfic president, currently working for sentex.ca, knows details of Bell&#039;s network infrastructure and where the chokepoints are)&lt;br /&gt;
* nguenthe on &#039;&#039;[http://cypherpunks.ca/otr OTR]&#039;&#039; -- or IanG if we can get him!&lt;br /&gt;
* nablack and m4farrel with a security demo + open ended question session&lt;br /&gt;
* m4farrel on &#039;&#039;Secrets of a DDoS&#039;&#039;&lt;br /&gt;
* wlritchi on &#039;&#039;Reversing SBeam and pnwing ur phone&#039;&#039;&lt;br /&gt;
* mtrberzi on &#039;&#039;GPG, Keyservers, and You&#039;&#039; and with a keysigning party to boot&lt;br /&gt;
* v2buterin on &#039;&#039;Bitcoin and Bitmessage&#039;&#039; (maybe? pretty please?)&lt;br /&gt;
* IST Security:&lt;br /&gt;
** [mailto:pmatlock@uwaterloo.ca Patrick Matlock] on some combination or subset of oauth, identity, data privacy ([https://uwaterloo.ca/secretariat/policies-procedures-guidelines/policy-8 Policy 8]), and web pentesting&lt;br /&gt;
*** csrf&lt;br /&gt;
*** script injections&lt;br /&gt;
*** ....&lt;br /&gt;
** [mailto:tlabach@uwaterloo.ca Terry Labach] on [http://ist.uwaterloo.ca/~tlabach/safer/ safer web browsing]&lt;br /&gt;
** [mailto:cpbell@uwaterloo.ca Colin Bell]?&lt;br /&gt;
* Sapphyre?&lt;br /&gt;
* Hatguy!&lt;br /&gt;
* ?????? on &#039;&#039;Passwords&#039;&#039; (touch on [http://xkcd.com/936/ security proofs], hashapass/pwdhash, alternatives to passwords (biometrics, one time pads, challenge-response, ssh keys), NOT SHARING YOUR DAMN PASSWORDS ACROSS SITES (cite: the ps3 attack, the linkedin attack, the ....) and how to use jacktheripper)&lt;br /&gt;
* ?????? on &#039;&#039;Browser Fingerprinting&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Filesystem Forensics and the Dangers of Log-Structured Data Storage&#039;&#039; (live demo!)&lt;br /&gt;
* ?????? on &#039;&#039;SSL: It&#039;s Broken&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Storytime: Exporting &amp;quot;Munitions&amp;quot;&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Stegonography&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Digital Watermarks&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Getting root in 5 minutes with physical access&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;What is Identity&#039;&#039; (maybe toss this out to WPIRG?) with info on how sites and overlords (facebook, google) identify you, and how to split your identity digitally&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://wpirg.org WPIRG] wants to cross-promote a &amp;quot;privacy forum&amp;quot; with us. They are imagining as an expert panel + QA session, during November. Probably the ideal distribution is csc events on the technical side (&amp;quot;how to shot pgp&amp;quot;, &amp;quot;how to make tls go&amp;quot;, &amp;quot;wat is passwurd&amp;quot;) with WPIRG on the human-scale and politics side, with advertising to both of our cohorts for all events. Some ideas for expert participants:&lt;br /&gt;
* [https://cs.uwaterloo.ca/~iang/ Ian Goldberg] (sharvey)&lt;br /&gt;
* [http://www.michaelgeist.ca/tags/privacy Michael Geist]&lt;br /&gt;
* ????&lt;br /&gt;
* Terry Labach (this sort of thing is, actually, directly within his job description)&lt;br /&gt;
* [http://thoughtcrime.org Marlie Moxinspike]&lt;/div&gt;</summary>
		<author><name>Nguenthe</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3466</id>
		<title>Security Workshops</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3466"/>
		<updated>2013-09-22T02:53:02Z</updated>

		<summary type="html">&lt;p&gt;Nguenthe: /* Fall 2013 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;In light of the orwellian nightmare we&#039;ve built ourselves into, now is a good time for the CSClub to pick up the slack it usually picks and teach people how to be safe out there. &lt;br /&gt;
&lt;br /&gt;
=Topics, and slides=&lt;br /&gt;
&lt;br /&gt;
=Related work and Telling Evidence=&lt;br /&gt;
&lt;br /&gt;
====Related Work====&lt;br /&gt;
[https://ssd.eff.org/ EFF&#039;s Surveillance Self-Defense Guide]&lt;br /&gt;
&lt;br /&gt;
[https://www.encrypteverything.ca/ Pirate Party&#039;s EncryptEverything]&lt;br /&gt;
&lt;br /&gt;
[http://cm.bell-labs.com/who/ken/trust.html Ken Thompson - Reflections on Trusting Trust]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Evidence====&lt;br /&gt;
http://readwrite.com/2010/08/04/google_ceo_schmidt_people_arent_ready_for_the_tech&lt;br /&gt;
&lt;br /&gt;
====IMPORTANT MEDIA====&lt;br /&gt;
3 Dead Trolls in a Baggie - The Privacy Song&lt;br /&gt;
&lt;br /&gt;
MC Frontalot - Secrets from the Future&lt;br /&gt;
&lt;br /&gt;
=Past Series=&lt;br /&gt;
&lt;br /&gt;
===Fall 2013===&lt;br /&gt;
&lt;br /&gt;
This information is fuzzy and subject to change. Do not trust it.&lt;br /&gt;
&lt;br /&gt;
sharvey, m4, and nguenthe are adminning this term&#039;s series&lt;br /&gt;
&lt;br /&gt;
* sharvey on &#039;&#039;Why Should You Care About Privacy&#039;&#039; &lt;br /&gt;
* ?????? on &#039;&#039;Snowden Roundup&#039;&#039;&lt;br /&gt;
* yd2dong on &#039;&#039;Traffic Mixing&#039;&#039;&lt;br /&gt;
* [mailto:stephen.palmateer@gmail.com Stephen Palmateer] of KWLUG on &#039;&#039;Tor&#039;&#039; (vs i2p vs Freenet vs /r/darknet?)&lt;br /&gt;
* [mailto:silver@callysto.com Sean Howard] on &#039;&#039;How your ISP owns you&#039;&#039; (UW grad, ex Watsfic president, currently working for sentex.ca, knows details of Bell&#039;s network infrastructure and where the chokepoints are)&lt;br /&gt;
* nguenthe on &#039;&#039;[http://cypherpunks.ca/otr OTR]&#039;&#039; -- or IanG if we can get him!&lt;br /&gt;
* nablack and m4farrel with a security demo + open ended question session&lt;br /&gt;
* m4farrel on &#039;&#039;Secrets of a DDoS&#039;&#039;&lt;br /&gt;
* wlritchi on &#039;&#039;Reversing SBeam and pnwing ur phone&#039;&#039;&lt;br /&gt;
* mtrberzi on &#039;&#039;GPG, Keyservers, and You&#039;&#039; and with a keysigning party to boot&lt;br /&gt;
* v2buterin on &#039;&#039;Bitcoin and Bitmessage&#039;&#039; (maybe? pretty please?)&lt;br /&gt;
* IST Security:&lt;br /&gt;
** [mailto:pmatlock@uwaterloo.ca Patrick Matlock] on some combination or subset of oauth, identity, data privacy ([https://uwaterloo.ca/secretariat/policies-procedures-guidelines/policy-8 Policy 8]), and web pentesting&lt;br /&gt;
** [mailto:tlabach@uwaterloo.ca Terry Labach] on [http://ist.uwaterloo.ca/~tlabach/safer/ safer web browsing]&lt;br /&gt;
** [mailto:cpbell@uwaterloo.ca Colin Bell]?&lt;br /&gt;
* Sapphyre?&lt;br /&gt;
* Hatguy!&lt;br /&gt;
* ?????? on &#039;&#039;Browser Fingerprinting&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Filesystem Forensics and the Dangers of Log-Structured Data Storage&#039;&#039; (live demo!)&lt;br /&gt;
* ?????? on &#039;&#039;SSL: It&#039;s Broken&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Storytime: Exporting &amp;quot;Munitions&amp;quot;&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Stegonography&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Digital Watermarks&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Getting root in 5 minutes with physical access&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;What is Identity&#039;&#039; (maybe toss this out to WPIRG?) with info on how sites and overlords (facebook, google) identify you, and how to split your identity digitally&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://wpirg.org WPIRG] wants to cross-promote a &amp;quot;privacy forum&amp;quot; with us. They are imagining as an expert panel + QA session, during November. Probably the ideal distribution is csc events on the technical side (&amp;quot;how to shot pgp&amp;quot;, &amp;quot;how to make tls go&amp;quot;, &amp;quot;wat is passwurd&amp;quot;) with WPIRG on the human-scale and politics side, with advertising to both of our cohorts for all events. Some ideas for expert participants:&lt;br /&gt;
* [https://cs.uwaterloo.ca/~iang/ Ian Goldberg] (sharvey)&lt;br /&gt;
* [http://www.michaelgeist.ca/tags/privacy Michael Geist]&lt;br /&gt;
* ????&lt;br /&gt;
* Terry Labach (this sort of thing is, actually, directly within his job description)&lt;br /&gt;
* [http://thoughtcrime.org Marlie Moxinspike]&lt;/div&gt;</summary>
		<author><name>Nguenthe</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3465</id>
		<title>Security Workshops</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3465"/>
		<updated>2013-09-22T02:52:31Z</updated>

		<summary type="html">&lt;p&gt;Nguenthe: /* IMPORTANT MEDIA */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;In light of the orwellian nightmare we&#039;ve built ourselves into, now is a good time for the CSClub to pick up the slack it usually picks and teach people how to be safe out there. &lt;br /&gt;
&lt;br /&gt;
=Topics, and slides=&lt;br /&gt;
&lt;br /&gt;
=Related work and Telling Evidence=&lt;br /&gt;
&lt;br /&gt;
====Related Work====&lt;br /&gt;
[https://ssd.eff.org/ EFF&#039;s Surveillance Self-Defense Guide]&lt;br /&gt;
&lt;br /&gt;
[https://www.encrypteverything.ca/ Pirate Party&#039;s EncryptEverything]&lt;br /&gt;
&lt;br /&gt;
[http://cm.bell-labs.com/who/ken/trust.html Ken Thompson - Reflections on Trusting Trust]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Evidence====&lt;br /&gt;
http://readwrite.com/2010/08/04/google_ceo_schmidt_people_arent_ready_for_the_tech&lt;br /&gt;
&lt;br /&gt;
====IMPORTANT MEDIA====&lt;br /&gt;
3 Dead Trolls in a Baggie - The Privacy Song&lt;br /&gt;
&lt;br /&gt;
MC Frontalot - Secrets from the Future&lt;br /&gt;
&lt;br /&gt;
=Past Series=&lt;br /&gt;
&lt;br /&gt;
===Fall 2013===&lt;br /&gt;
&lt;br /&gt;
This information is fuzzy and subject to change. Do not trust it.&lt;br /&gt;
&lt;br /&gt;
sharvey, m4, and nguenthe are adminning this term&#039;s series&lt;br /&gt;
&lt;br /&gt;
* sharvey on &#039;&#039;Why Should You Care About Privacy&#039;&#039; &lt;br /&gt;
* ?????? on &#039;&#039;Snowden Roundup&#039;&#039;&lt;br /&gt;
* yd2dong on &#039;&#039;Traffic Mixing&#039;&#039;&lt;br /&gt;
* [mailto:stephen.palmateer@gmail.com Stephen Palmateer] of KWLUG on &#039;&#039;Tor&#039;&#039;&lt;br /&gt;
* [mailto:silver@callysto.com Sean Howard] on &#039;&#039;How your ISP owns you&#039;&#039; (UW grad, ex Watsfic president, currently working for sentex.ca, knows details of Bell&#039;s network infrastructure and where the chokepoints are)&lt;br /&gt;
* nguenthe on &#039;&#039;[http://cypherpunks.ca/otr OTR]&#039;&#039; -- or IanG if we can get him!&lt;br /&gt;
* nablack and m4farrel with a security demo + open ended question session&lt;br /&gt;
* m4farrel on &#039;&#039;Secrets of a DDoS&#039;&#039;&lt;br /&gt;
* wlritchi on &#039;&#039;Reversing SBeam and pnwing ur phone&#039;&#039;&lt;br /&gt;
* mtrberzi on &#039;&#039;GPG, Keyservers, and You&#039;&#039; and with a keysigning party to boot&lt;br /&gt;
* v2buterin on &#039;&#039;Bitcoin and Bitmessage&#039;&#039; (maybe? pretty please?)&lt;br /&gt;
* IST Security:&lt;br /&gt;
** [mailto:pmatlock@uwaterloo.ca Patrick Matlock] on some combination or subset of oauth, identity, data privacy ([https://uwaterloo.ca/secretariat/policies-procedures-guidelines/policy-8 Policy 8]), and web pentesting&lt;br /&gt;
** [mailto:tlabach@uwaterloo.ca Terry Labach] on [http://ist.uwaterloo.ca/~tlabach/safer/ safer web browsing]&lt;br /&gt;
** [mailto:cpbell@uwaterloo.ca Colin Bell]?&lt;br /&gt;
* Sapphyre?&lt;br /&gt;
* Hatguy!&lt;br /&gt;
* ?????? on &#039;&#039;Browser Fingerprinting&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Filesystem Forensics and the Dangers of Log-Structured Data Storage&#039;&#039; (live demo!)&lt;br /&gt;
* ?????? on &#039;&#039;SSL: It&#039;s Broken&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Storytime: Exporting &amp;quot;Munitions&amp;quot;&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Stegonography&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Digital Watermarks&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Getting root in 5 minutes with physical access&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;What is Identity&#039;&#039; (maybe toss this out to WPIRG?) with info on how sites and overlords (facebook, google) identify you, and how to split your identity digitally&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://wpirg.org WPIRG] wants to cross-promote a &amp;quot;privacy forum&amp;quot; with us. They are imagining as an expert panel + QA session, during November. Probably the ideal distribution is csc events on the technical side (&amp;quot;how to shot pgp&amp;quot;, &amp;quot;how to make tls go&amp;quot;, &amp;quot;wat is passwurd&amp;quot;) with WPIRG on the human-scale and politics side, with advertising to both of our cohorts for all events. Some ideas for expert participants:&lt;br /&gt;
* [https://cs.uwaterloo.ca/~iang/ Ian Goldberg] (sharvey)&lt;br /&gt;
* [http://www.michaelgeist.ca/tags/privacy Michael Geist]&lt;br /&gt;
* ????&lt;br /&gt;
* Terry Labach (this sort of thing is, actually, directly within his job description)&lt;br /&gt;
* [http://thoughtcrime.org Marlie Moxinspike]&lt;/div&gt;</summary>
		<author><name>Nguenthe</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3464</id>
		<title>Security Workshops</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3464"/>
		<updated>2013-09-22T02:52:18Z</updated>

		<summary type="html">&lt;p&gt;Nguenthe: /* Related work and Telling Evidence */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;In light of the orwellian nightmare we&#039;ve built ourselves into, now is a good time for the CSClub to pick up the slack it usually picks and teach people how to be safe out there. &lt;br /&gt;
&lt;br /&gt;
=Topics, and slides=&lt;br /&gt;
&lt;br /&gt;
=Related work and Telling Evidence=&lt;br /&gt;
&lt;br /&gt;
====Related Work====&lt;br /&gt;
[https://ssd.eff.org/ EFF&#039;s Surveillance Self-Defense Guide]&lt;br /&gt;
&lt;br /&gt;
[https://www.encrypteverything.ca/ Pirate Party&#039;s EncryptEverything]&lt;br /&gt;
&lt;br /&gt;
[http://cm.bell-labs.com/who/ken/trust.html Ken Thompson - Reflections on Trusting Trust]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
====Evidence====&lt;br /&gt;
http://readwrite.com/2010/08/04/google_ceo_schmidt_people_arent_ready_for_the_tech&lt;br /&gt;
&lt;br /&gt;
====IMPORTANT MEDIA====&lt;br /&gt;
3 Dead Trolls in a Baggie - The Privacy Song&lt;br /&gt;
MC Frontalot - Secrets from the Future&lt;br /&gt;
&lt;br /&gt;
=Past Series=&lt;br /&gt;
&lt;br /&gt;
===Fall 2013===&lt;br /&gt;
&lt;br /&gt;
This information is fuzzy and subject to change. Do not trust it.&lt;br /&gt;
&lt;br /&gt;
sharvey, m4, and nguenthe are adminning this term&#039;s series&lt;br /&gt;
&lt;br /&gt;
* sharvey on &#039;&#039;Why Should You Care About Privacy&#039;&#039; &lt;br /&gt;
* ?????? on &#039;&#039;Snowden Roundup&#039;&#039;&lt;br /&gt;
* yd2dong on &#039;&#039;Traffic Mixing&#039;&#039;&lt;br /&gt;
* [mailto:stephen.palmateer@gmail.com Stephen Palmateer] of KWLUG on &#039;&#039;Tor&#039;&#039;&lt;br /&gt;
* [mailto:silver@callysto.com Sean Howard] on &#039;&#039;How your ISP owns you&#039;&#039; (UW grad, ex Watsfic president, currently working for sentex.ca, knows details of Bell&#039;s network infrastructure and where the chokepoints are)&lt;br /&gt;
* nguenthe on &#039;&#039;[http://cypherpunks.ca/otr OTR]&#039;&#039; -- or IanG if we can get him!&lt;br /&gt;
* nablack and m4farrel with a security demo + open ended question session&lt;br /&gt;
* m4farrel on &#039;&#039;Secrets of a DDoS&#039;&#039;&lt;br /&gt;
* wlritchi on &#039;&#039;Reversing SBeam and pnwing ur phone&#039;&#039;&lt;br /&gt;
* mtrberzi on &#039;&#039;GPG, Keyservers, and You&#039;&#039; and with a keysigning party to boot&lt;br /&gt;
* v2buterin on &#039;&#039;Bitcoin and Bitmessage&#039;&#039; (maybe? pretty please?)&lt;br /&gt;
* IST Security:&lt;br /&gt;
** [mailto:pmatlock@uwaterloo.ca Patrick Matlock] on some combination or subset of oauth, identity, data privacy ([https://uwaterloo.ca/secretariat/policies-procedures-guidelines/policy-8 Policy 8]), and web pentesting&lt;br /&gt;
** [mailto:tlabach@uwaterloo.ca Terry Labach] on [http://ist.uwaterloo.ca/~tlabach/safer/ safer web browsing]&lt;br /&gt;
** [mailto:cpbell@uwaterloo.ca Colin Bell]?&lt;br /&gt;
* Sapphyre?&lt;br /&gt;
* Hatguy!&lt;br /&gt;
* ?????? on &#039;&#039;Browser Fingerprinting&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Filesystem Forensics and the Dangers of Log-Structured Data Storage&#039;&#039; (live demo!)&lt;br /&gt;
* ?????? on &#039;&#039;SSL: It&#039;s Broken&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Storytime: Exporting &amp;quot;Munitions&amp;quot;&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Stegonography&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Digital Watermarks&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Getting root in 5 minutes with physical access&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;What is Identity&#039;&#039; (maybe toss this out to WPIRG?) with info on how sites and overlords (facebook, google) identify you, and how to split your identity digitally&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://wpirg.org WPIRG] wants to cross-promote a &amp;quot;privacy forum&amp;quot; with us. They are imagining as an expert panel + QA session, during November. Probably the ideal distribution is csc events on the technical side (&amp;quot;how to shot pgp&amp;quot;, &amp;quot;how to make tls go&amp;quot;, &amp;quot;wat is passwurd&amp;quot;) with WPIRG on the human-scale and politics side, with advertising to both of our cohorts for all events. Some ideas for expert participants:&lt;br /&gt;
* [https://cs.uwaterloo.ca/~iang/ Ian Goldberg] (sharvey)&lt;br /&gt;
* [http://www.michaelgeist.ca/tags/privacy Michael Geist]&lt;br /&gt;
* ????&lt;br /&gt;
* Terry Labach (this sort of thing is, actually, directly within his job description)&lt;br /&gt;
* [http://thoughtcrime.org Marlie Moxinspike]&lt;/div&gt;</summary>
		<author><name>Nguenthe</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3463</id>
		<title>Security Workshops</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3463"/>
		<updated>2013-09-22T02:47:32Z</updated>

		<summary type="html">&lt;p&gt;Nguenthe: /* Fall 2013 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;In light of the orwellian nightmare we&#039;ve built ourselves into, now is a good time for the CSClub to pick up the slack it usually picks and teach people how to be safe out there. &lt;br /&gt;
&lt;br /&gt;
=Topics, and slides=&lt;br /&gt;
&lt;br /&gt;
=Related work and Telling Evidence=&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[https://ssd.eff.org/ EFF&#039;s Surveillance Self-Defense Guide]&lt;br /&gt;
&lt;br /&gt;
[https://www.encrypteverything.ca/ Pirate Party&#039;s EncryptEverything]&lt;br /&gt;
&lt;br /&gt;
[http://cm.bell-labs.com/who/ken/trust.html Ken Thompson - Reflections on Trusting Trust]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
http://readwrite.com/2010/08/04/google_ceo_schmidt_people_arent_ready_for_the_tech&lt;br /&gt;
&lt;br /&gt;
=Past Series=&lt;br /&gt;
&lt;br /&gt;
===Fall 2013===&lt;br /&gt;
&lt;br /&gt;
This information is fuzzy and subject to change. Do not trust it.&lt;br /&gt;
&lt;br /&gt;
sharvey, m4, and nguenthe are adminning this term&#039;s series&lt;br /&gt;
&lt;br /&gt;
* sharvey on &#039;&#039;Why Should You Care About Privacy&#039;&#039; &lt;br /&gt;
* ?????? on &#039;&#039;Snowden Roundup&#039;&#039;&lt;br /&gt;
* yd2dong on &#039;&#039;Traffic Mixing&#039;&#039;&lt;br /&gt;
* [mailto:stephen.palmateer@gmail.com Stephen Palmateer] of KWLUG on &#039;&#039;Tor&#039;&#039;&lt;br /&gt;
* [mailto:silver@callysto.com Sean Howard] on &#039;&#039;How your ISP owns you&#039;&#039; (UW grad, ex Watsfic president, currently working for sentex.ca, knows details of Bell&#039;s network infrastructure and where the chokepoints are)&lt;br /&gt;
* nguenthe on &#039;&#039;[http://cypherpunks.ca/otr OTR]&#039;&#039; -- or IanG if we can get him!&lt;br /&gt;
* nablack and m4farrel with a security demo + open ended question session&lt;br /&gt;
* m4farrel on &#039;&#039;Secrets of a DDoS&#039;&#039;&lt;br /&gt;
* wlritchi on &#039;&#039;Reversing SBeam and pnwing ur phone&#039;&#039;&lt;br /&gt;
* mtrberzi on &#039;&#039;GPG, Keyservers, and You&#039;&#039; and with a keysigning party to boot&lt;br /&gt;
* v2buterin on &#039;&#039;Bitcoin and Bitmessage&#039;&#039; (maybe? pretty please?)&lt;br /&gt;
* IST Security:&lt;br /&gt;
** [mailto:pmatlock@uwaterloo.ca Patrick Matlock] on some combination or subset of oauth, identity, data privacy ([https://uwaterloo.ca/secretariat/policies-procedures-guidelines/policy-8 Policy 8]), and web pentesting&lt;br /&gt;
** [mailto:tlabach@uwaterloo.ca Terry Labach] on [http://ist.uwaterloo.ca/~tlabach/safer/ safer web browsing]&lt;br /&gt;
** [mailto:cpbell@uwaterloo.ca Colin Bell]?&lt;br /&gt;
* Sapphyre?&lt;br /&gt;
* Hatguy!&lt;br /&gt;
* ?????? on &#039;&#039;Browser Fingerprinting&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Filesystem Forensics and the Dangers of Log-Structured Data Storage&#039;&#039; (live demo!)&lt;br /&gt;
* ?????? on &#039;&#039;SSL: It&#039;s Broken&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Storytime: Exporting &amp;quot;Munitions&amp;quot;&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Stegonography&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Digital Watermarks&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Getting root in 5 minutes with physical access&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;What is Identity&#039;&#039; (maybe toss this out to WPIRG?) with info on how sites and overlords (facebook, google) identify you, and how to split your identity digitally&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://wpirg.org WPIRG] wants to cross-promote a &amp;quot;privacy forum&amp;quot; with us. They are imagining as an expert panel + QA session, during November. Probably the ideal distribution is csc events on the technical side (&amp;quot;how to shot pgp&amp;quot;, &amp;quot;how to make tls go&amp;quot;, &amp;quot;wat is passwurd&amp;quot;) with WPIRG on the human-scale and politics side, with advertising to both of our cohorts for all events. Some ideas for expert participants:&lt;br /&gt;
* [https://cs.uwaterloo.ca/~iang/ Ian Goldberg] (sharvey)&lt;br /&gt;
* [http://www.michaelgeist.ca/tags/privacy Michael Geist]&lt;br /&gt;
* ????&lt;br /&gt;
* Terry Labach (this sort of thing is, actually, directly within his job description)&lt;br /&gt;
* [http://thoughtcrime.org Marlie Moxinspike]&lt;/div&gt;</summary>
		<author><name>Nguenthe</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3462</id>
		<title>Security Workshops</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3462"/>
		<updated>2013-09-22T02:45:11Z</updated>

		<summary type="html">&lt;p&gt;Nguenthe: /* Fall 2013 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;In light of the orwellian nightmare we&#039;ve built ourselves into, now is a good time for the CSClub to pick up the slack it usually picks and teach people how to be safe out there. &lt;br /&gt;
&lt;br /&gt;
=Topics, and slides=&lt;br /&gt;
&lt;br /&gt;
=Related work and Telling Evidence=&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[https://ssd.eff.org/ EFF&#039;s Surveillance Self-Defense Guide]&lt;br /&gt;
&lt;br /&gt;
[https://www.encrypteverything.ca/ Pirate Party&#039;s EncryptEverything]&lt;br /&gt;
&lt;br /&gt;
[http://cm.bell-labs.com/who/ken/trust.html Ken Thompson - Reflections on Trusting Trust]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
http://readwrite.com/2010/08/04/google_ceo_schmidt_people_arent_ready_for_the_tech&lt;br /&gt;
&lt;br /&gt;
=Past Series=&lt;br /&gt;
&lt;br /&gt;
===Fall 2013===&lt;br /&gt;
&lt;br /&gt;
This information is fuzzy and subject to change. Do not trust it.&lt;br /&gt;
&lt;br /&gt;
sharvey, m4, and nguenthe are adminning this term&#039;s series&lt;br /&gt;
&lt;br /&gt;
* sharvey on &#039;&#039;Why Should You Care About Privacy&#039;&#039; &lt;br /&gt;
* ?????? on &#039;&#039;Snowden Roundup&#039;&#039;&lt;br /&gt;
* yd2dong on &#039;&#039;Traffic Mixing&#039;&#039;&lt;br /&gt;
* [stephen.palmateer@gmail.com Stephen Palmateer] of KWLUG on &#039;&#039;Tor&#039;&#039;&lt;br /&gt;
* [mailto:silver@callysto.com Sean Howard] on &#039;&#039;How your ISP owns you&#039;&#039; (UW grad, ex Watsfic president, currently working for sentex.ca, knows details of Bell&#039;s network infrastructure and where the chokepoints are)&lt;br /&gt;
* nguenthe on &#039;&#039;[http://cypherpunks.ca/otr OTR]&#039;&#039; -- or IanG if we can get him!&lt;br /&gt;
* nablack and m4farrel with a security demo + open ended question session&lt;br /&gt;
* m4farrel on &#039;&#039;Secrets of a DDoS&#039;&#039;&lt;br /&gt;
* wlritchi on &#039;&#039;Reversing SBeam and pnwing ur phone&#039;&#039;&lt;br /&gt;
* mtrberzi on &#039;&#039;GPG, Keyservers, and You&#039;&#039; and with a keysigning party to boot&lt;br /&gt;
* v2buterin on &#039;&#039;Bitcoin and Bitmessage&#039;&#039; (maybe? pretty please?)&lt;br /&gt;
* IST Security:&lt;br /&gt;
** [mailto:pmatlock@uwaterloo.ca Patrick Matlock] on some combination or subset of oauth, identity, data privacy ([https://uwaterloo.ca/secretariat/policies-procedures-guidelines/policy-8 Policy 8]), and web pentesting&lt;br /&gt;
** [mailto:tlabach@uwaterloo.ca Terry Labach] on [http://ist.uwaterloo.ca/~tlabach/safer/ safer web browsing]&lt;br /&gt;
** [mailto:cpbell@uwaterloo.ca Colin Bell]?&lt;br /&gt;
* Sapphyre?&lt;br /&gt;
* Hatguy!&lt;br /&gt;
* ?????? on &#039;&#039;Browser Fingerprinting&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Filesystem Forensics and the Dangers of Log-Structured Data Storage&#039;&#039; (live demo!)&lt;br /&gt;
* ?????? on &#039;&#039;SSL: It&#039;s Broken&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Storytime: Exporting &amp;quot;Munitions&amp;quot;&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Stegonography&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Digital Watermarks&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Getting root in 5 minutes with physical access&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;What is Identity&#039;&#039; (maybe toss this out to WPIRG?) with info on how sites and overlords (facebook, google) identify you, and how to split your identity digitally&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://wpirg.org WPIRG] wants to cross-promote a &amp;quot;privacy forum&amp;quot; with us. They are imagining as an expert panel + QA session, during November. Probably the ideal distribution is csc events on the technical side (&amp;quot;how to shot pgp&amp;quot;, &amp;quot;how to make tls go&amp;quot;, &amp;quot;wat is passwurd&amp;quot;) with WPIRG on the human-scale and politics side, with advertising to both of our cohorts for all events. Some ideas for expert participants:&lt;br /&gt;
* [https://cs.uwaterloo.ca/~iang/ Ian Goldberg] (sharvey)&lt;br /&gt;
* [http://www.michaelgeist.ca/tags/privacy Michael Geist]&lt;br /&gt;
* ????&lt;br /&gt;
* Terry Labach (this sort of thing is, actually, directly within his job description)&lt;br /&gt;
* [http://thoughtcrime.org Marlie Moxinspike]&lt;/div&gt;</summary>
		<author><name>Nguenthe</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3461</id>
		<title>Security Workshops</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3461"/>
		<updated>2013-09-22T02:42:17Z</updated>

		<summary type="html">&lt;p&gt;Nguenthe: /* Fall 2013 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;In light of the orwellian nightmare we&#039;ve built ourselves into, now is a good time for the CSClub to pick up the slack it usually picks and teach people how to be safe out there. &lt;br /&gt;
&lt;br /&gt;
=Topics, and slides=&lt;br /&gt;
&lt;br /&gt;
=Related work and Telling Evidence=&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[https://ssd.eff.org/ EFF&#039;s Surveillance Self-Defense Guide]&lt;br /&gt;
&lt;br /&gt;
[https://www.encrypteverything.ca/ Pirate Party&#039;s EncryptEverything]&lt;br /&gt;
&lt;br /&gt;
[http://cm.bell-labs.com/who/ken/trust.html Ken Thompson - Reflections on Trusting Trust]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
http://readwrite.com/2010/08/04/google_ceo_schmidt_people_arent_ready_for_the_tech&lt;br /&gt;
&lt;br /&gt;
=Past Series=&lt;br /&gt;
&lt;br /&gt;
===Fall 2013===&lt;br /&gt;
&lt;br /&gt;
This information is fuzzy and subject to change. Do not trust it.&lt;br /&gt;
&lt;br /&gt;
sharvey, m4, and nguenthe are adminning this term&#039;s series&lt;br /&gt;
&lt;br /&gt;
* sharvey on &#039;&#039;Why Should You Care About Privacy&#039;&#039; &lt;br /&gt;
* ?????? on &#039;&#039;Snowden Roundup&#039;&#039;&lt;br /&gt;
* [stephen.palmateer@gmail.com Stephen Palmateer] of KWLUG on &#039;&#039;Tor&#039;&#039;&lt;br /&gt;
* [mailto:silver@callysto.com Sean Howard] on &#039;&#039;How your ISP owns you&#039;&#039; (UW grad, ex Watsfic president, currently working for sentex.ca, knows details of Bell&#039;s network infrastructure and where the chokepoints are)&lt;br /&gt;
* nguenthe on &#039;&#039;[http://cypherpunks.ca/otr OTR]&#039;&#039; -- or IanG if we can get him!&lt;br /&gt;
* nablack and m4farrel with a security demo + open ended question session&lt;br /&gt;
* m4farrel on &#039;&#039;Secrets of a DDoS&#039;&#039;&lt;br /&gt;
* wlritchi on &#039;&#039;Reversing SBeam and pnwing ur phone&#039;&#039;&lt;br /&gt;
* mtrberzi on &#039;&#039;GPG, Keyservers, and You&#039;&#039; and with a keysigning party to boot&lt;br /&gt;
* v2buterin on &#039;&#039;Bitcoin and Bitmessage&#039;&#039; (maybe? pretty please?)&lt;br /&gt;
* IST Security:&lt;br /&gt;
** [mailto:pmatlock@uwaterloo.ca Patrick Matlock] on some combination or subset of oauth, identity, data privacy ([https://uwaterloo.ca/secretariat/policies-procedures-guidelines/policy-8 Policy 8]), and web pentesting&lt;br /&gt;
** [mailto:tlabach@uwaterloo.ca Terry Labach] on [http://ist.uwaterloo.ca/~tlabach/safer/ safer web browsing]&lt;br /&gt;
** [mailto:cpbell@uwaterloo.ca Colin Bell]?&lt;br /&gt;
* Sapphyre?&lt;br /&gt;
* Hatguy!&lt;br /&gt;
* ?????? on &#039;&#039;Browser Fingerprinting&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Filesystem Forensics and the Dangers of Log-Structured Data Storage&#039;&#039; (live demo!)&lt;br /&gt;
* ?????? on &#039;&#039;SSL: It&#039;s Broken&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Storytime: Exporting &amp;quot;Munitions&amp;quot;&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Stegonography&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Digital Watermarks&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Getting root in 5 minutes with physical access&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;What is Identity&#039;&#039; (maybe toss this out to WPIRG?) with info on how sites and overlords (facebook, google) identify you, and how to split your identity digitally&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://wpirg.org WPIRG] wants to cross-promote a &amp;quot;privacy forum&amp;quot; with us. They are imagining as an expert panel + QA session, during November. Probably the ideal distribution is csc events on the technical side (&amp;quot;how to shot pgp&amp;quot;, &amp;quot;how to make tls go&amp;quot;, &amp;quot;wat is passwurd&amp;quot;) with WPIRG on the human-scale and politics side, with advertising to both of our cohorts for all events. Some ideas for expert participants:&lt;br /&gt;
* [https://cs.uwaterloo.ca/~iang/ Ian Goldberg] (sharvey)&lt;br /&gt;
* [http://www.michaelgeist.ca/tags/privacy Michael Geist]&lt;br /&gt;
* ????&lt;br /&gt;
* Terry Labach (this sort of thing is, actually, directly within his job description)&lt;br /&gt;
* [http://thoughtcrime.org Marlie Moxinspike]&lt;/div&gt;</summary>
		<author><name>Nguenthe</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3460</id>
		<title>Security Workshops</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3460"/>
		<updated>2013-09-22T02:41:58Z</updated>

		<summary type="html">&lt;p&gt;Nguenthe: /* Fall 2013 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;In light of the orwellian nightmare we&#039;ve built ourselves into, now is a good time for the CSClub to pick up the slack it usually picks and teach people how to be safe out there. &lt;br /&gt;
&lt;br /&gt;
=Topics, and slides=&lt;br /&gt;
&lt;br /&gt;
=Related work and Telling Evidence=&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[https://ssd.eff.org/ EFF&#039;s Surveillance Self-Defense Guide]&lt;br /&gt;
&lt;br /&gt;
[https://www.encrypteverything.ca/ Pirate Party&#039;s EncryptEverything]&lt;br /&gt;
&lt;br /&gt;
[http://cm.bell-labs.com/who/ken/trust.html Ken Thompson - Reflections on Trusting Trust]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
http://readwrite.com/2010/08/04/google_ceo_schmidt_people_arent_ready_for_the_tech&lt;br /&gt;
&lt;br /&gt;
=Past Series=&lt;br /&gt;
&lt;br /&gt;
===Fall 2013===&lt;br /&gt;
&lt;br /&gt;
This information is fuzzy and subject to change. Do not trust it.&lt;br /&gt;
&lt;br /&gt;
sharvey, m4, and nguenthe are adminning this term&#039;s series&lt;br /&gt;
&lt;br /&gt;
* sharvey on &#039;&#039;Why Should You Care About Privacy&#039;&#039; &lt;br /&gt;
* ?????? on &#039;&#039;Snowden Roundup&#039;&#039;&lt;br /&gt;
* [stephen.palmateer@gmail.com Stephen Palmateer] of KWLUG on &#039;&#039;Tor&#039;&#039;&lt;br /&gt;
* [mailto:silver@callysto.com Sean Howard] on &#039;&#039;How your ISP owns you&#039;&#039; (UW grad, ex Watsfic president, currently working for sentex.ca, knows details of Bell&#039;s network infrastructure and where the chokepoints are)&lt;br /&gt;
* nguenthe on &#039;&#039;[http://cypherpunks.ca/otr OTR]&#039;&#039; -- or IanG if we can get him!&lt;br /&gt;
* nablack and m4farrel with a security demo + open ended question session&lt;br /&gt;
* m4farrel on &#039;&#039;Secrets of a DDoS&#039;&#039;&lt;br /&gt;
* wlritchi on &#039;&#039;Reversing SBeam and pnwing ur phone&#039;&#039;&lt;br /&gt;
* mtrberzi on &#039;&#039;GPG, Keyservers, and You&#039;&#039; and with a keysigning party to boot&lt;br /&gt;
* v2buterin on &#039;&#039;Bitcoin and Bitmessage&#039;&#039; (maybe? pretty please?)&lt;br /&gt;
* IST Security:&lt;br /&gt;
** [mailto:pmatlock@uwaterloo.ca Patrick Matlock] on some combination or subset of oauth, identity, data privacy ([https://uwaterloo.ca/secretariat/policies-procedures-guidelines/policy-8 Policy 8]), and web pentesting&lt;br /&gt;
** [mailto:tlabach@uwaterloo.ca Terry Labach] on [http://ist.uwaterloo.ca/~tlabach/safer/ safer web browsing]&lt;br /&gt;
** [mailto:cpbell@uwaterloo.ca Colin Bell]?&lt;br /&gt;
* Sapphyre?&lt;br /&gt;
* Hatguy!&lt;br /&gt;
* ?????? on &#039;&#039;Browser Fingerprinting&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Filesystem Forensics and the Dangers of Log-Structured Data Storage&#039;&#039; (live demo!)&lt;br /&gt;
* ?????? on &#039;&#039;SSL: It&#039;s Broken&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Storytime: Exporting &amp;quot;Munitions&amp;quot;&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Stegonography&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Digital Watermarks&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Getting root in 5 minutes with physical access&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;What is Identity&#039;&#039; (maybe toss this out to WPIRG?) with info on how sites and overlords (facebook, google) identify you, and how to split your identity digitally&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://wpirg.org WPIRG] wants to cross-promote a &amp;quot;privacy forum&amp;quot; with us. They are imagining as an expert panel + QA session, during November. Probably the ideal distribution is csc events on the technical side (&amp;quot;how to shot pgp&amp;quot;, &amp;quot;how to make tls go&amp;quot;, &amp;quot;wat is passwurd&amp;quot;) with WPIRG on the human-scale and politics side, with advertising to both of our cohorts for all events. Some ideas for expert participants:&lt;br /&gt;
* [https://cs.uwaterloo.ca/~iang/ Ian Goldberg] (sharvey)&lt;br /&gt;
* [http://www.michaelgeist.ca/tags/privacy Michael Geist]&lt;br /&gt;
* ????&lt;br /&gt;
* Terry Labach (this sort of thing is, actually, directly within his job description)&lt;br /&gt;
* [http://thoughtcrime.org Marlin Moxiespike]&lt;/div&gt;</summary>
		<author><name>Nguenthe</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3459</id>
		<title>Security Workshops</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3459"/>
		<updated>2013-09-22T02:40:28Z</updated>

		<summary type="html">&lt;p&gt;Nguenthe: /* Fall 2013 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;In light of the orwellian nightmare we&#039;ve built ourselves into, now is a good time for the CSClub to pick up the slack it usually picks and teach people how to be safe out there. &lt;br /&gt;
&lt;br /&gt;
=Topics, and slides=&lt;br /&gt;
&lt;br /&gt;
=Related work and Telling Evidence=&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[https://ssd.eff.org/ EFF&#039;s Surveillance Self-Defense Guide]&lt;br /&gt;
&lt;br /&gt;
[https://www.encrypteverything.ca/ Pirate Party&#039;s EncryptEverything]&lt;br /&gt;
&lt;br /&gt;
[http://cm.bell-labs.com/who/ken/trust.html Ken Thompson - Reflections on Trusting Trust]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
http://readwrite.com/2010/08/04/google_ceo_schmidt_people_arent_ready_for_the_tech&lt;br /&gt;
&lt;br /&gt;
=Past Series=&lt;br /&gt;
&lt;br /&gt;
===Fall 2013===&lt;br /&gt;
&lt;br /&gt;
This information is fuzzy and subject to change. Do not trust it.&lt;br /&gt;
&lt;br /&gt;
sharvey, m4, and nguenthe are adminning this term&#039;s series&lt;br /&gt;
&lt;br /&gt;
* sharvey on &#039;&#039;Why Should You Care About Privacy&#039;&#039; &lt;br /&gt;
* ?????? on &#039;&#039;Snowden Roundup&#039;&#039;&lt;br /&gt;
* [stephen.palmateer@gmail.com Stephen Palmateer] of KWLUG on &#039;&#039;Tor&#039;&#039;&lt;br /&gt;
* [mailto:silver@callysto.com Sean Howard] on &#039;&#039;How your ISP owns you&#039;&#039; (UW grad, ex Watsfic president, currently working for sentex.ca, knows details of Bell&#039;s network infrastructure and where the chokepoints are)&lt;br /&gt;
* nguenthe on &#039;&#039;[http://cypherpunks.ca/otr OTR]&#039;&#039; -- or IanG if we can get him!&lt;br /&gt;
* nablack and m4farrel with a security demo + open ended question session&lt;br /&gt;
* m4farrel on &#039;&#039;Secrets of a DDoS&#039;&#039;&lt;br /&gt;
* wlritchi on &#039;&#039;Reversing SBeam and pnwing ur phone&#039;&#039;&lt;br /&gt;
* mtrberzi on &#039;&#039;GPG, Keyservers, and You&#039;&#039; and with a keysigning party to boot&lt;br /&gt;
* v2buterin on &#039;&#039;Bitcoin and Bitmessage&#039;&#039; (maybe? pretty please?)&lt;br /&gt;
* IST Security:&lt;br /&gt;
** [mailto:pmatlock@uwaterloo.ca Patrick Matlock] on some combination or subset of oauth, identity, data privacy ([https://uwaterloo.ca/secretariat/policies-procedures-guidelines/policy-8 Policy 8]), and web pentesting&lt;br /&gt;
** [mailto:tlabach@uwaterloo.ca Terry Labach] on [http://ist.uwaterloo.ca/~tlabach/safer/ safer web browsing]&lt;br /&gt;
** [mailto:cpbell@uwaterloo.ca Colin Bell]?&lt;br /&gt;
* Sapphyre?&lt;br /&gt;
* Hatguy!&lt;br /&gt;
* ?????? on &#039;&#039;Browser Fingerprinting&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Filesystem Forensics and the Dangers of Log-Structured Data Storage&#039;&#039; (live demo!)&lt;br /&gt;
* ?????? on &#039;&#039;SSL: It&#039;s Broken&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Storytime: Exporting &amp;quot;Munitions&amp;quot;&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Stegonography&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Digital Watermarks&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Getting root in 5 minutes with physical access&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;What is Identity&#039;&#039; (maybe toss this out to WPIRG?)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://wpirg.org WPIRG] wants to cross-promote a &amp;quot;privacy forum&amp;quot; with us. They are imagining as an expert panel + QA session, during November. Probably the ideal distribution is csc events on the technical side (&amp;quot;how to shot pgp&amp;quot;, &amp;quot;how to make tls go&amp;quot;, &amp;quot;wat is passwurd&amp;quot;) with WPIRG on the human-scale and politics side, with advertising to both of our cohorts for all events. Some ideas for expert participants:&lt;br /&gt;
* [https://cs.uwaterloo.ca/~iang/ Ian Goldberg] (sharvey)&lt;br /&gt;
* [http://www.michaelgeist.ca/tags/privacy Michael Geist]&lt;br /&gt;
* ????&lt;br /&gt;
* Terry Labach (this sort of thing is, actually, directly within his job description)&lt;/div&gt;</summary>
		<author><name>Nguenthe</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3458</id>
		<title>Security Workshops</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3458"/>
		<updated>2013-09-22T02:39:57Z</updated>

		<summary type="html">&lt;p&gt;Nguenthe: /* Related work and Telling Evidence */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;In light of the orwellian nightmare we&#039;ve built ourselves into, now is a good time for the CSClub to pick up the slack it usually picks and teach people how to be safe out there. &lt;br /&gt;
&lt;br /&gt;
=Topics, and slides=&lt;br /&gt;
&lt;br /&gt;
=Related work and Telling Evidence=&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[https://ssd.eff.org/ EFF&#039;s Surveillance Self-Defense Guide]&lt;br /&gt;
&lt;br /&gt;
[https://www.encrypteverything.ca/ Pirate Party&#039;s EncryptEverything]&lt;br /&gt;
&lt;br /&gt;
[http://cm.bell-labs.com/who/ken/trust.html Ken Thompson - Reflections on Trusting Trust]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
http://readwrite.com/2010/08/04/google_ceo_schmidt_people_arent_ready_for_the_tech&lt;br /&gt;
&lt;br /&gt;
=Past Series=&lt;br /&gt;
&lt;br /&gt;
===Fall 2013===&lt;br /&gt;
&lt;br /&gt;
This information is fuzzy and subject to change. Do not trust it.&lt;br /&gt;
&lt;br /&gt;
sharvey, m4, and nguenthe are adminning this term&#039;s series&lt;br /&gt;
&lt;br /&gt;
* sharvey on &#039;&#039;Why Should You Care About Privacy&#039;&#039; &lt;br /&gt;
* [stephen.palmateer@gmail.com Stephen Palmateer] of KWLUG on &#039;&#039;Tor&#039;&#039;&lt;br /&gt;
* [mailto:silver@callysto.com Sean Howard] on &#039;&#039;How your ISP owns you&#039;&#039; (UW grad, ex Watsfic president, currently working for sentex.ca, knows details of Bell&#039;s network infrastructure and where the chokepoints are)&lt;br /&gt;
* nguenthe on &#039;&#039;[http://cypherpunks.ca/otr OTR]&#039;&#039; -- or IanG if we can get him!&lt;br /&gt;
* nablack and m4farrel with a security demo + open ended question session&lt;br /&gt;
* m4farrel on &#039;&#039;Secrets of a DDoS&#039;&#039;&lt;br /&gt;
* wlritchi on &#039;&#039;Reversing SBeam and pnwing ur phone&#039;&#039;&lt;br /&gt;
* mtrberzi on &#039;&#039;GPG, Keyservers, and You&#039;&#039; and with a keysigning party to boot&lt;br /&gt;
* v2buterin on &#039;&#039;Bitcoin and Bitmessage&#039;&#039; (maybe? pretty please?)&lt;br /&gt;
* IST Security:&lt;br /&gt;
** [mailto:pmatlock@uwaterloo.ca Patrick Matlock] on some combination or subset of oauth, identity, data privacy ([https://uwaterloo.ca/secretariat/policies-procedures-guidelines/policy-8 Policy 8]), and web pentesting&lt;br /&gt;
** [mailto:tlabach@uwaterloo.ca Terry Labach] on [http://ist.uwaterloo.ca/~tlabach/safer/ safer web browsing]&lt;br /&gt;
** [mailto:cpbell@uwaterloo.ca Colin Bell]?&lt;br /&gt;
* Sapphyre?&lt;br /&gt;
* Hatguy!&lt;br /&gt;
* ?????? on &#039;&#039;Browser Fingerprinting&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Filesystem Forensics and the Dangers of Log-Structured Data Storage&#039;&#039; (live demo!)&lt;br /&gt;
* ?????? on &#039;&#039;SSL: It&#039;s Broken&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Storytime: Exporting &amp;quot;Munitions&amp;quot;&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Stegonography&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Digital Watermarks&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Getting root in 5 minutes with physical access&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;What is Identity&#039;&#039; (maybe toss this out to WPIRG?)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://wpirg.org WPIRG] wants to cross-promote a &amp;quot;privacy forum&amp;quot; with us. They are imagining as an expert panel + QA session, during November. Probably the ideal distribution is csc events on the technical side (&amp;quot;how to shot pgp&amp;quot;, &amp;quot;how to make tls go&amp;quot;, &amp;quot;wat is passwurd&amp;quot;) with WPIRG on the human-scale and politics side, with advertising to both of our cohorts for all events. Some ideas for expert participants:&lt;br /&gt;
* [https://cs.uwaterloo.ca/~iang/ Ian Goldberg] (sharvey)&lt;br /&gt;
* [http://www.michaelgeist.ca/tags/privacy Michael Geist]&lt;br /&gt;
* ????&lt;br /&gt;
* Terry Labach (this sort of thing is, actually, directly within his job description)&lt;/div&gt;</summary>
		<author><name>Nguenthe</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3457</id>
		<title>Security Workshops</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3457"/>
		<updated>2013-09-22T02:39:45Z</updated>

		<summary type="html">&lt;p&gt;Nguenthe: /* Related work and Telling Evidence */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;In light of the orwellian nightmare we&#039;ve built ourselves into, now is a good time for the CSClub to pick up the slack it usually picks and teach people how to be safe out there. &lt;br /&gt;
&lt;br /&gt;
=Topics, and slides=&lt;br /&gt;
&lt;br /&gt;
=Related work and Telling Evidence=&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[https://ssd.eff.org/ EFF&#039;s Surveillance Self-Defense Guide]&lt;br /&gt;
[https://www.encrypteverything.ca/ Pirate Party&#039;s EncryptEverything]&lt;br /&gt;
[http://cm.bell-labs.com/who/ken/trust.html Ken Thompson - Reflections on Trusting Trust]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
http://readwrite.com/2010/08/04/google_ceo_schmidt_people_arent_ready_for_the_tech&lt;br /&gt;
&lt;br /&gt;
=Past Series=&lt;br /&gt;
&lt;br /&gt;
===Fall 2013===&lt;br /&gt;
&lt;br /&gt;
This information is fuzzy and subject to change. Do not trust it.&lt;br /&gt;
&lt;br /&gt;
sharvey, m4, and nguenthe are adminning this term&#039;s series&lt;br /&gt;
&lt;br /&gt;
* sharvey on &#039;&#039;Why Should You Care About Privacy&#039;&#039; &lt;br /&gt;
* [stephen.palmateer@gmail.com Stephen Palmateer] of KWLUG on &#039;&#039;Tor&#039;&#039;&lt;br /&gt;
* [mailto:silver@callysto.com Sean Howard] on &#039;&#039;How your ISP owns you&#039;&#039; (UW grad, ex Watsfic president, currently working for sentex.ca, knows details of Bell&#039;s network infrastructure and where the chokepoints are)&lt;br /&gt;
* nguenthe on &#039;&#039;[http://cypherpunks.ca/otr OTR]&#039;&#039; -- or IanG if we can get him!&lt;br /&gt;
* nablack and m4farrel with a security demo + open ended question session&lt;br /&gt;
* m4farrel on &#039;&#039;Secrets of a DDoS&#039;&#039;&lt;br /&gt;
* wlritchi on &#039;&#039;Reversing SBeam and pnwing ur phone&#039;&#039;&lt;br /&gt;
* mtrberzi on &#039;&#039;GPG, Keyservers, and You&#039;&#039; and with a keysigning party to boot&lt;br /&gt;
* v2buterin on &#039;&#039;Bitcoin and Bitmessage&#039;&#039; (maybe? pretty please?)&lt;br /&gt;
* IST Security:&lt;br /&gt;
** [mailto:pmatlock@uwaterloo.ca Patrick Matlock] on some combination or subset of oauth, identity, data privacy ([https://uwaterloo.ca/secretariat/policies-procedures-guidelines/policy-8 Policy 8]), and web pentesting&lt;br /&gt;
** [mailto:tlabach@uwaterloo.ca Terry Labach] on [http://ist.uwaterloo.ca/~tlabach/safer/ safer web browsing]&lt;br /&gt;
** [mailto:cpbell@uwaterloo.ca Colin Bell]?&lt;br /&gt;
* Sapphyre?&lt;br /&gt;
* Hatguy!&lt;br /&gt;
* ?????? on &#039;&#039;Browser Fingerprinting&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Filesystem Forensics and the Dangers of Log-Structured Data Storage&#039;&#039; (live demo!)&lt;br /&gt;
* ?????? on &#039;&#039;SSL: It&#039;s Broken&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Storytime: Exporting &amp;quot;Munitions&amp;quot;&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Stegonography&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Digital Watermarks&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Getting root in 5 minutes with physical access&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;What is Identity&#039;&#039; (maybe toss this out to WPIRG?)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://wpirg.org WPIRG] wants to cross-promote a &amp;quot;privacy forum&amp;quot; with us. They are imagining as an expert panel + QA session, during November. Probably the ideal distribution is csc events on the technical side (&amp;quot;how to shot pgp&amp;quot;, &amp;quot;how to make tls go&amp;quot;, &amp;quot;wat is passwurd&amp;quot;) with WPIRG on the human-scale and politics side, with advertising to both of our cohorts for all events. Some ideas for expert participants:&lt;br /&gt;
* [https://cs.uwaterloo.ca/~iang/ Ian Goldberg] (sharvey)&lt;br /&gt;
* [http://www.michaelgeist.ca/tags/privacy Michael Geist]&lt;br /&gt;
* ????&lt;br /&gt;
* Terry Labach (this sort of thing is, actually, directly within his job description)&lt;/div&gt;</summary>
		<author><name>Nguenthe</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3456</id>
		<title>Security Workshops</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3456"/>
		<updated>2013-09-22T02:37:59Z</updated>

		<summary type="html">&lt;p&gt;Nguenthe: /* Fall 2013 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;In light of the orwellian nightmare we&#039;ve built ourselves into, now is a good time for the CSClub to pick up the slack it usually picks and teach people how to be safe out there. &lt;br /&gt;
&lt;br /&gt;
=Topics, and slides=&lt;br /&gt;
&lt;br /&gt;
=Related work and Telling Evidence=&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
https://ssd.eff.org/tech/im&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
http://readwrite.com/2010/08/04/google_ceo_schmidt_people_arent_ready_for_the_tech&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Past Series=&lt;br /&gt;
&lt;br /&gt;
===Fall 2013===&lt;br /&gt;
&lt;br /&gt;
This information is fuzzy and subject to change. Do not trust it.&lt;br /&gt;
&lt;br /&gt;
sharvey, m4, and nguenthe are adminning this term&#039;s series&lt;br /&gt;
&lt;br /&gt;
* sharvey on &#039;&#039;Why Should You Care About Privacy&#039;&#039; &lt;br /&gt;
* [stephen.palmateer@gmail.com Stephen Palmateer] of KWLUG on &#039;&#039;Tor&#039;&#039;&lt;br /&gt;
* [mailto:silver@callysto.com Sean Howard] on &#039;&#039;How your ISP owns you&#039;&#039; (UW grad, ex Watsfic president, currently working for sentex.ca, knows details of Bell&#039;s network infrastructure and where the chokepoints are)&lt;br /&gt;
* nguenthe on &#039;&#039;[http://cypherpunks.ca/otr OTR]&#039;&#039; -- or IanG if we can get him!&lt;br /&gt;
* nablack and m4farrel with a security demo + open ended question session&lt;br /&gt;
* m4farrel on &#039;&#039;Secrets of a DDoS&#039;&#039;&lt;br /&gt;
* wlritchi on &#039;&#039;Reversing SBeam and pnwing ur phone&#039;&#039;&lt;br /&gt;
* mtrberzi on &#039;&#039;GPG, Keyservers, and You&#039;&#039; and with a keysigning party to boot&lt;br /&gt;
* v2buterin on &#039;&#039;Bitcoin and Bitmessage&#039;&#039; (maybe? pretty please?)&lt;br /&gt;
* IST Security:&lt;br /&gt;
** [mailto:pmatlock@uwaterloo.ca Patrick Matlock] on some combination or subset of oauth, identity, data privacy ([https://uwaterloo.ca/secretariat/policies-procedures-guidelines/policy-8 Policy 8]), and web pentesting&lt;br /&gt;
** [mailto:tlabach@uwaterloo.ca Terry Labach] on [http://ist.uwaterloo.ca/~tlabach/safer/ safer web browsing]&lt;br /&gt;
** [mailto:cpbell@uwaterloo.ca Colin Bell]?&lt;br /&gt;
* Sapphyre?&lt;br /&gt;
* Hatguy!&lt;br /&gt;
* ?????? on &#039;&#039;Browser Fingerprinting&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Filesystem Forensics and the Dangers of Log-Structured Data Storage&#039;&#039; (live demo!)&lt;br /&gt;
* ?????? on &#039;&#039;SSL: It&#039;s Broken&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Storytime: Exporting &amp;quot;Munitions&amp;quot;&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Stegonography&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Digital Watermarks&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Getting root in 5 minutes with physical access&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;What is Identity&#039;&#039; (maybe toss this out to WPIRG?)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[http://wpirg.org WPIRG] wants to cross-promote a &amp;quot;privacy forum&amp;quot; with us. They are imagining as an expert panel + QA session, during November. Probably the ideal distribution is csc events on the technical side (&amp;quot;how to shot pgp&amp;quot;, &amp;quot;how to make tls go&amp;quot;, &amp;quot;wat is passwurd&amp;quot;) with WPIRG on the human-scale and politics side, with advertising to both of our cohorts for all events. Some ideas for expert participants:&lt;br /&gt;
* [https://cs.uwaterloo.ca/~iang/ Ian Goldberg] (sharvey)&lt;br /&gt;
* [http://www.michaelgeist.ca/tags/privacy Michael Geist]&lt;br /&gt;
* ????&lt;br /&gt;
* Terry Labach (this sort of thing is, actually, directly within his job description)&lt;/div&gt;</summary>
		<author><name>Nguenthe</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3455</id>
		<title>Security Workshops</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3455"/>
		<updated>2013-09-22T02:29:17Z</updated>

		<summary type="html">&lt;p&gt;Nguenthe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;In light of the orwellian nightmare we&#039;ve built ourselves into, now is a good time for the CSClub to pick up the slack it usually picks and teach people how to be safe out there. &lt;br /&gt;
&lt;br /&gt;
=Topics, and slides=&lt;br /&gt;
&lt;br /&gt;
=Related work and Telling Evidence=&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
https://ssd.eff.org/tech/im&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
http://readwrite.com/2010/08/04/google_ceo_schmidt_people_arent_ready_for_the_tech&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Past Series=&lt;br /&gt;
&lt;br /&gt;
===Fall 2013===&lt;br /&gt;
&lt;br /&gt;
This information is fuzzy and subject to change. Do not trust it.&lt;br /&gt;
&lt;br /&gt;
sharvey, m4, and nguenthe are adminning this term&#039;s series&lt;br /&gt;
&lt;br /&gt;
* sharvey on &#039;&#039;Why Should You Care About Privacy&#039;&#039; &lt;br /&gt;
* [stephen.palmateer@gmail.com Stephen Palmateer] of KWLUG on &#039;&#039;Tor&#039;&#039;&lt;br /&gt;
* [mailto:silver@callysto.com Sean Howard] on &#039;&#039;How your ISP owns you&#039;&#039; (UW grad, ex Watsfic president, currently working for sentex.ca, knows details of Bell&#039;s network infrastructure and where the chokepoints are)&lt;br /&gt;
* nguenthe on &#039;&#039;[http://cypherpunks.ca/otr OTR]&#039;&#039; -- or IanG if we can get him!&lt;br /&gt;
* nablack and m4farrel with a security demo + open ended question session&lt;br /&gt;
* m4farrel on &#039;&#039;Secrets of a DDoS&#039;&#039;&lt;br /&gt;
* wlritchi on &#039;&#039;Reversing SBeam and pnwing ur phone&#039;&#039;&lt;br /&gt;
* mtrberzi on &#039;&#039;GPG&#039;&#039; and with a keysigning party to boot&lt;br /&gt;
* v2buterin on &#039;&#039;Bitcoin and Bitmessage&#039;&#039; (maybe? pretty please?)&lt;br /&gt;
* IST Security:&lt;br /&gt;
** [mailto:pmatlock@uwaterloo.ca Patrick Matlock] on some combination or subset of oauth, identity, data privacy ([https://uwaterloo.ca/secretariat/policies-procedures-guidelines/policy-8 Policy 8]), and web pentesting&lt;br /&gt;
** [mailto:tlabach@uwaterloo.ca Terry Labach] on [http://ist.uwaterloo.ca/~tlabach/safer/ safer web browsing]&lt;br /&gt;
** [mailto:cpbell@uwaterloo.ca Colin Bell]?&lt;br /&gt;
* Sapphyre?&lt;br /&gt;
* Hatguy!&lt;br /&gt;
* ?????? on &#039;&#039;Browser Fingerprinting&#039;&#039;&lt;br /&gt;
* ?????? on &#039;&#039;Dangers of Log-Structured Data Storage&#039;&#039;&lt;br /&gt;
* ?????? on &lt;br /&gt;
&lt;br /&gt;
[http://wpirg.org WPIRG] wants to cross-promote a &amp;quot;privacy forum&amp;quot; with us. They are imagining as an expert panel + QA session, during November. Probably the ideal distribution is csc events on the technical side (&amp;quot;how to shot pgp&amp;quot;, &amp;quot;how to make tls go&amp;quot;, &amp;quot;wat is passwurd&amp;quot;) with WPIRG on the human-scale and politics side, with advertising to both of our cohorts for all events. Some ideas for expert participants:&lt;br /&gt;
* [https://cs.uwaterloo.ca/~iang/ Ian Goldberg] (sharvey)&lt;br /&gt;
* [http://www.michaelgeist.ca/tags/privacy Michael Geist]&lt;br /&gt;
* ????&lt;br /&gt;
* Terry Labach (this sort of thing is, actually, directly within his job description)&lt;/div&gt;</summary>
		<author><name>Nguenthe</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3454</id>
		<title>Security Workshops</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3454"/>
		<updated>2013-09-22T02:11:52Z</updated>

		<summary type="html">&lt;p&gt;Nguenthe: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;In light of the orwellian nightmare we&#039;ve built ourselves into, now is a good time for the CSClub to pick up the slack it usually picks and teach people how to be safe out there. &lt;br /&gt;
&lt;br /&gt;
=Topics, and slides=&lt;br /&gt;
&lt;br /&gt;
=Related work=&lt;br /&gt;
&lt;br /&gt;
=Past Series=&lt;br /&gt;
&lt;br /&gt;
===Fall 2013===&lt;br /&gt;
&lt;br /&gt;
This information is fuzzy and subject to change. Do not trust it.&lt;br /&gt;
&lt;br /&gt;
sharvey, m4, and nguenthe are adminning this term&#039;s series&lt;br /&gt;
&lt;br /&gt;
* sharvey on &#039;&#039;Why Should You Care About Privacy&#039;&#039; &lt;br /&gt;
* [stephen.palmateer@gmail.com Stephen Palmateer] of KWLUG on &#039;&#039;Tor&#039;&#039;&lt;br /&gt;
* nguenthe on &#039;&#039;[http://cypherpunks.ca/otr OTR]&#039;&#039; -- or IanG if we can get him!&lt;br /&gt;
* nablack and m4farrel with a security demo + open ended question session&lt;br /&gt;
* m4farrel on &#039;&#039;Secrets of a DDoS&#039;&#039;&lt;br /&gt;
* wlritchi on &#039;&#039;Reversing protocols and pnwing ur phone&#039;&#039;&lt;br /&gt;
* mtrberzi on &#039;&#039;GPG&#039;&#039; and with a keysigning party to boot&lt;br /&gt;
* IST Security:&lt;br /&gt;
** [mailto:pmatlock@uwaterloo.ca Patrick Matlock] on some combination or subset of oauth, identity, data privacy ([https://uwaterloo.ca/secretariat/policies-procedures-guidelines/policy-8 Policy 8]), and web pentesting&lt;br /&gt;
** [mailto:tlabach@uwaterloo.ca Terry Labach] on [http://ist.uwaterloo.ca/~tlabach/safer/ safer web browsing]&lt;br /&gt;
** [mailto:cpbell@uwaterloo.ca Colin Bell]?&lt;br /&gt;
&lt;br /&gt;
[http://wpirg.org WPIRG] wants to cross-promote a &amp;quot;privacy forum&amp;quot; with us. They are imagining as an expert panel + QA session, during November. Probably the ideal distribution is csc events on the technical side (&amp;quot;how to shot pgp&amp;quot;, &amp;quot;how to make tls go&amp;quot;, &amp;quot;wat is passwurd&amp;quot;) with WPIRG on the human-scale and politics side, with advertising to both of our cohorts for all events. Some ideas for expert participants:&lt;br /&gt;
* [https://cs.uwaterloo.ca/~iang/ Ian Goldberg] (sharvey)&lt;br /&gt;
* [http://www.michaelgeist.ca/tags/privacy Michael Geist]&lt;br /&gt;
* ????&lt;br /&gt;
* Terry Labach (this sort of thing is, actually, directly within his job description)&lt;/div&gt;</summary>
		<author><name>Nguenthe</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3453</id>
		<title>Security Workshops</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3453"/>
		<updated>2013-09-22T01:57:51Z</updated>

		<summary type="html">&lt;p&gt;Nguenthe: /* Fall 2013 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
In light of the orwellian nightmare we&#039;ve built ourselves into, now is a good time for the CSClub to pick up the slack it usually picks and teach people how to be safe out there. &lt;br /&gt;
&lt;br /&gt;
=Topics, and slides=&lt;br /&gt;
&lt;br /&gt;
=Related work=&lt;br /&gt;
&lt;br /&gt;
===Fall 2013===&lt;br /&gt;
&lt;br /&gt;
This information is fuzzy and subject to change. Do not trust it.&lt;br /&gt;
&lt;br /&gt;
sharvey, m4, and nguenthe are adminning this term&#039;s series&lt;br /&gt;
&lt;br /&gt;
* sharvey on &#039;&#039;Why Should You Care About Privacy&#039;&#039; &lt;br /&gt;
* [stephen.palmateer@gmail.com Stephen Palmateer] of KWLUG on &#039;&#039;Tor&#039;&#039;&lt;br /&gt;
* nguenthe on &#039;&#039;[http://cypherpunks.ca/otr OTR]&#039;&#039; -- or IanG if we can get him!&lt;br /&gt;
* nablack and m4farrel with a security demo + open ended question session&lt;br /&gt;
* m4farrel on &#039;&#039;Secrets of a DDoS&#039;&#039;&lt;br /&gt;
* wlritchi on &#039;&#039;Reversing protocols and pnwing ur phone&#039;&#039;&lt;br /&gt;
* mtrberzi on &#039;&#039;GPG&#039;&#039; and with a keysigning party to boot&lt;br /&gt;
* IST Security:&lt;br /&gt;
** [mailto:pmatlock@uwaterloo.ca Patrick Matlock] on some combination or subset of oauth, identity, data privacy ([https://uwaterloo.ca/secretariat/policies-procedures-guidelines/policy-8 Policy 8]), and web pentesting&lt;br /&gt;
** [mailto:tlabach@uwaterloo.ca Terry Labach] on [http://ist.uwaterloo.ca/~tlabach/safer/ safer web browsing]&lt;br /&gt;
** [mailto:cpbell@uwaterloo.ca Colin Bell]?&lt;br /&gt;
&lt;br /&gt;
[http://wpirg.org WPIRG] wants to cross-promote a &amp;quot;privacy forum&amp;quot; with us. They are imagining as an expert panel + QA session, during November. Probably the ideal distribution is csc events on the technical side (&amp;quot;how to shot pgp&amp;quot;, &amp;quot;how to make tls go&amp;quot;, &amp;quot;wat is passwurd&amp;quot;) with WPIRG on the human-scale and politics side, with advertising to both of our cohorts for all events. Some ideas for expert participants:&lt;br /&gt;
* [https://cs.uwaterloo.ca/~iang/ Ian Goldberg] (sharvey)&lt;br /&gt;
* [http://www.michaelgeist.ca Michael Geist]&lt;br /&gt;
* ????&lt;br /&gt;
* Terry Labach (this sort of thing is, actually, directly within his job description)&lt;/div&gt;</summary>
		<author><name>Nguenthe</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3452</id>
		<title>Security Workshops</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3452"/>
		<updated>2013-09-22T01:55:46Z</updated>

		<summary type="html">&lt;p&gt;Nguenthe: /* Fall 2013 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
In light of the orwellian nightmare we&#039;ve built ourselves into, now is a good time for the CSClub to pick up the slack it usually picks and teach people how to be safe out there. &lt;br /&gt;
&lt;br /&gt;
=Topics, and slides=&lt;br /&gt;
&lt;br /&gt;
=Related work=&lt;br /&gt;
&lt;br /&gt;
===Fall 2013===&lt;br /&gt;
&lt;br /&gt;
This information is fuzzy and subject to change. Do not trust it.&lt;br /&gt;
&lt;br /&gt;
sharvey, m4, and nguenthe are adminning this term&#039;s series&lt;br /&gt;
&lt;br /&gt;
* sharvey on &#039;&#039;Why Should You Care About Privacy&#039;&#039; &lt;br /&gt;
* [stephen.palmateer@gmail.com Stephen Palmateer] of KWLUG on &#039;&#039;Tor&#039;&#039;&lt;br /&gt;
* nguenthe on &#039;&#039;[http://cypherpunks.ca/otr OTR]&#039;&#039; -- or IanG if we can get him!&lt;br /&gt;
* nablack and m4farrel with a security demo + open ended question session&lt;br /&gt;
* m4farrel on &#039;&#039;Secrets of a DDoS&#039;&#039;&lt;br /&gt;
* wlritchi on &#039;&#039;Reversing protocols and pnwing ur phone&#039;&#039;&lt;br /&gt;
* mtrberzi on &#039;&#039;GPG&#039;&#039; and with a keysigning party to boot&lt;br /&gt;
* IST Security:&lt;br /&gt;
** [mailto:pmatlock@uwaterloo.ca Patrick Matlock] on some combination or subset of oauth, identity, data privacy ([https://uwaterloo.ca/secretariat/policies-procedures-guidelines/policy-8 Policy 8]), and web pentesting&lt;br /&gt;
** [mailto:tlabach@uwaterloo.ca Terry Labach] on [http://ist.uwaterloo.ca/~tlabach/safer/ safer web browsing]&lt;br /&gt;
** [mailto:cpbell@uwaterloo.ca Colin Bell]?&lt;br /&gt;
&lt;br /&gt;
[http://wpirg.org WPIRG] wants to cross-promote a &amp;quot;privacy forum&amp;quot; with us. They are imagining as an expert panel + QA session, during November. Some ideas for expert participants:&lt;br /&gt;
* [https://cs.uwaterloo.ca/~iang/ Ian Goldberg] (sharvey)&lt;br /&gt;
* [http://www.michaelgeist.ca Michael Geist]&lt;br /&gt;
* ????&lt;br /&gt;
* Terry Labach (this sort of thing is, actually, directly within his job description)&lt;/div&gt;</summary>
		<author><name>Nguenthe</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3451</id>
		<title>Security Workshops</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3451"/>
		<updated>2013-09-22T01:55:25Z</updated>

		<summary type="html">&lt;p&gt;Nguenthe: /* Fall 2013 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
In light of the orwellian nightmare we&#039;ve built ourselves into, now is a good time for the CSClub to pick up the slack it usually picks and teach people how to be safe out there. &lt;br /&gt;
&lt;br /&gt;
=Topics, and slides=&lt;br /&gt;
&lt;br /&gt;
=Related work=&lt;br /&gt;
&lt;br /&gt;
===Fall 2013===&lt;br /&gt;
&lt;br /&gt;
This information is fuzzy and subject to change. Do not trust it.&lt;br /&gt;
&lt;br /&gt;
sharvey, m4, and nguenthe are adminning this term&#039;s series&lt;br /&gt;
&lt;br /&gt;
* sharvey on &#039;&#039;Why Should You Care About Privacy&#039;&#039; &lt;br /&gt;
* [stephen.palmateer@gmail.com Stephen Palmateer] of KWLUG on &#039;&#039;Tor&#039;&#039;&lt;br /&gt;
* nguenthe on &#039;&#039;[http://cypherpunks.ca/otr OTR]&#039;&#039; -- or IanG if we can get him!&lt;br /&gt;
* nablack and m4farrel with a security demo + open ended question session&lt;br /&gt;
* m4farrel on &#039;&#039;Secrets of a DDoS&#039;&#039;&lt;br /&gt;
* wlritchi on &#039;&#039;Reversing protocols and pnwing ur phone&#039;&#039;&lt;br /&gt;
* mtrberzi on &#039;&#039;GPG&#039;&#039; and with a keysigning party to boot&lt;br /&gt;
* IST Security:&lt;br /&gt;
** [mailto:pmatlock@uwaterloo.ca Patrick Matlock] on some combination or subset of oauth, identity, data privacy ([https://uwaterloo.ca/secretariat/policies-procedures-guidelines/policy-8 Policy 8]), and web pentesting&lt;br /&gt;
** [mailto:tlabach@uwaterloo.ca Terry Labach] on [http://ist.uwaterloo.ca/~tlabach/safer/ safer web browsing]&lt;br /&gt;
** [mailto:cpbell@uwaterloo.ca Colin Bell]?&lt;br /&gt;
&lt;br /&gt;
[http://wpirg.org WPIRG] wants to cross-promote a &amp;quot;privacy forum&amp;quot; with us. They are imagining as an expert panel + QA session, during November. Some ideas for expert participants:&lt;br /&gt;
 * [https://cs.uwaterloo.ca/~iang/ Ian Goldberg] (sharvey)&lt;br /&gt;
 * [http://www.michaelgeist.ca Michael Geist]&lt;br /&gt;
 * ????&lt;br /&gt;
 * Terry Labach (this sort of thing is, actually, directly within his job description)&lt;/div&gt;</summary>
		<author><name>Nguenthe</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3450</id>
		<title>Security Workshops</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3450"/>
		<updated>2013-09-22T01:54:44Z</updated>

		<summary type="html">&lt;p&gt;Nguenthe: /* Fall 2013 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
In light of the orwellian nightmare we&#039;ve built ourselves into, now is a good time for the CSClub to pick up the slack it usually picks and teach people how to be safe out there. &lt;br /&gt;
&lt;br /&gt;
=Topics, and slides=&lt;br /&gt;
&lt;br /&gt;
=Related work=&lt;br /&gt;
&lt;br /&gt;
===Fall 2013===&lt;br /&gt;
&lt;br /&gt;
This information is fuzzy and subject to change. Do not trust it.&lt;br /&gt;
&lt;br /&gt;
sharvey, m4, and nguenthe are adminning this term&#039;s series&lt;br /&gt;
&lt;br /&gt;
* sharvey on &#039;&#039;Why Should You Care About Privacy&#039;&#039; &lt;br /&gt;
* [stephen.palmateer@gmail.com Stephen Palmateer] of KWLUG on &#039;&#039;Tor&#039;&#039;&lt;br /&gt;
* nguenthe on &#039;&#039;[http://cypherpunks.ca/otr OTR]&#039;&#039; -- or IanG if we can get him!&lt;br /&gt;
* nablack and m4farrel with a security demo + open ended question session&lt;br /&gt;
* m4farrel on &#039;&#039;Secrets of a DDoS&#039;&#039;&lt;br /&gt;
* wlritchi on &#039;&#039;Reversing protocols and pnwing ur phone&#039;&#039;&lt;br /&gt;
* mtrberzi on &#039;&#039;GPG&#039;&#039; and with a keysigning party to boot&lt;br /&gt;
* IST Security:&lt;br /&gt;
 ** [pmatlock@uwaterloo.ca Patrick Matlock] on some combination or subset of oauth, identity, data privacy ([https://uwaterloo.ca/secretariat/policies-procedures-guidelines/policy-8 Policy 8]), and web pentesting&lt;br /&gt;
 ** [tlabach@uwaterloo.ca Terry Labach] on [http://ist.uwaterloo.ca/~tlabach/safer/ safer web browsing]&lt;br /&gt;
 ** [cpbell@uwaterloo.ca Colin Bell]?&lt;br /&gt;
&lt;br /&gt;
[http://wpirg.org WPIRG] wants to cross-promote a &amp;quot;privacy forum&amp;quot; with us. They are imagining as an expert panel + QA session, during November. Some ideas for expert participants:&lt;br /&gt;
 * [https://cs.uwaterloo.ca/~iang/ Ian Goldberg] (sharvey)&lt;br /&gt;
 * [http://www.michaelgeist.ca Michael Geist]&lt;br /&gt;
 * ????&lt;br /&gt;
 * Terry Labach (this sort of thing is, actually, directly within his job description)&lt;/div&gt;</summary>
		<author><name>Nguenthe</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3449</id>
		<title>Security Workshops</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3449"/>
		<updated>2013-09-22T01:52:21Z</updated>

		<summary type="html">&lt;p&gt;Nguenthe: /* Fall 2013 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
In light of the orwellian nightmare we&#039;ve built ourselves into, now is a good time for the CSClub to pick up the slack it usually picks and teach people how to be safe out there. &lt;br /&gt;
&lt;br /&gt;
=Topics, and slides=&lt;br /&gt;
&lt;br /&gt;
=Related work=&lt;br /&gt;
&lt;br /&gt;
===Fall 2013===&lt;br /&gt;
&lt;br /&gt;
This information is fuzzy and subject to change. Do not trust it.&lt;br /&gt;
&lt;br /&gt;
sharvey, m4, and nguenthe are adminning this term&#039;s series&lt;br /&gt;
&lt;br /&gt;
* sharvey on &#039;&#039;Why Should You Care About Privacy&#039;&#039; &lt;br /&gt;
* [stephen.palmateer@gmail.com Stephen Palmateer] of KWLUG on &#039;&#039;Tor&#039;&#039;&lt;br /&gt;
* nguenthe on &#039;&#039;[http://cypherpunks.ca/otr OTR]&#039;&#039; -- or IanG if we can get him!&lt;br /&gt;
* nablack and m4farrel with a security demo + open ended question session&lt;br /&gt;
* m4farrel on &#039;&#039;Secrets of a DDoS&#039;&#039;&lt;br /&gt;
* wlritchi on &#039;&#039;Reversing protocols and pnwing ur phone&#039;&#039;&lt;br /&gt;
* mtrberzi on &#039;&#039;GPG&#039;&#039; and with a keysigning party to boot&lt;br /&gt;
* IST Security:&lt;br /&gt;
 ** [pmatlock@uwaterloo.ca Patrick Matlock] on some combination or subset of oauth, identity, data privacy ([https://uwaterloo.ca/secretariat/policies-procedures-guidelines/policy-8 Policy 8]), and web pentesting&lt;br /&gt;
 ** [tlabach@uwaterloo.ca Terry Labach] on [http://ist.uwaterloo.ca/~tlabach/safer/ safer web browsing]&lt;br /&gt;
 ** [cpbell@uwaterloo.ca Colin Bell]?&lt;br /&gt;
&lt;br /&gt;
[http://wpirg.org WPIRG] wants to cross-promote with us. They wish to book, for November, a &amp;quot;privacy forum&amp;quot; (which they are imagining as an expert panel + QA session). Wouldn&#039;t it be great if we could get:&lt;br /&gt;
 * [https://cs.uwaterloo.ca/~iang/ Ian Goldberg] (sharvey)&lt;br /&gt;
 * [http://www.michaelgeist.ca Michael Geist]&lt;br /&gt;
 *&lt;/div&gt;</summary>
		<author><name>Nguenthe</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3448</id>
		<title>Security Workshops</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3448"/>
		<updated>2013-09-22T01:51:47Z</updated>

		<summary type="html">&lt;p&gt;Nguenthe: /* Fall 2013 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
In light of the orwellian nightmare we&#039;ve built ourselves into, now is a good time for the CSClub to pick up the slack it usually picks and teach people how to be safe out there. &lt;br /&gt;
&lt;br /&gt;
=Topics, and slides=&lt;br /&gt;
&lt;br /&gt;
=Related work=&lt;br /&gt;
&lt;br /&gt;
===Fall 2013===&lt;br /&gt;
&lt;br /&gt;
This information is fuzzy and subject to change. Do not trust it.&lt;br /&gt;
&lt;br /&gt;
sharvey, m4, and nguenthe are adminning this term&#039;s series&lt;br /&gt;
&lt;br /&gt;
* sharvey on &#039;&#039;Why Should You Care About Privacy&#039;&#039; &lt;br /&gt;
* [stephen.palmateer@gmail.com Stephen Palmateer] of KWLUG on &#039;&#039;Tor&#039;&#039;&lt;br /&gt;
* nguenthe on &#039;&#039;[http://cypherpunks.ca/otr OTR]&#039;&#039; -- or IanG if we can get him!&lt;br /&gt;
* nablack and m4farrel with a security demo + open ended question session&lt;br /&gt;
* m4farrel on &#039;&#039;Secrets of a DDoS&#039;&#039;&lt;br /&gt;
* wlritchi on &#039;&#039;Reversing protocols and pnwing ur phone&#039;&#039;&lt;br /&gt;
* mtrberzi on &#039;&#039;GPG&#039;&#039; and with a keysigning party to boot&lt;br /&gt;
&lt;br /&gt;
IST Security:&lt;br /&gt;
 [pmatlock@uwaterloo.ca Patrick Matlock] on some combination or subset of oauth, identity, data privacy ([https://uwaterloo.ca/secretariat/policies-procedures-guidelines/policy-8 Policy 8]), and web pentesting&lt;br /&gt;
 [tlabach@uwaterloo.ca Terry Labach] on [http://ist.uwaterloo.ca/~tlabach/safer/ safer web browsing]&lt;br /&gt;
 [cpbell@uwaterloo.ca Colin Bell]?&lt;br /&gt;
&lt;br /&gt;
[http://wpirg.org WPIRG] wants to cross-promote with us. They wish to book, for November, a &amp;quot;privacy forum&amp;quot; (which they are imagining as an expert panel + QA session). Wouldn&#039;t it be great if we could get:&lt;br /&gt;
 * [https://cs.uwaterloo.ca/~iang/ Ian Goldberg] (sharvey)&lt;br /&gt;
 * [http://www.michaelgeist.ca Michael Geist]&lt;br /&gt;
 *&lt;/div&gt;</summary>
		<author><name>Nguenthe</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3447</id>
		<title>Security Workshops</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Security_Workshops&amp;diff=3447"/>
		<updated>2013-09-22T01:51:22Z</updated>

		<summary type="html">&lt;p&gt;Nguenthe: Created page with &amp;quot; In light of the orwellian nightmare we&amp;#039;ve built ourselves into, now is a good time for the CSClub to pick up the slack it usually picks and teach people how to be safe out there…&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
In light of the orwellian nightmare we&#039;ve built ourselves into, now is a good time for the CSClub to pick up the slack it usually picks and teach people how to be safe out there. &lt;br /&gt;
&lt;br /&gt;
=Topics, and slides=&lt;br /&gt;
&lt;br /&gt;
=Related work=&lt;br /&gt;
&lt;br /&gt;
===Fall 2013===&lt;br /&gt;
&lt;br /&gt;
This information is fuzzy and subject to change. Do not trust it.&lt;br /&gt;
&lt;br /&gt;
sharvey, m4, and nguenthe are adminning this term&#039;s series&lt;br /&gt;
&lt;br /&gt;
sharvey on &#039;&#039;Why Should You Care About Privacy&#039;&#039; &lt;br /&gt;
[stephen.palmateer@gmail.com Stephen Palmateer] of KWLUG on &#039;&#039;Tor&#039;&#039;&lt;br /&gt;
nguenthe on &#039;&#039;[http://cypherpunks.ca/otr OTR]&#039;&#039; -- or IanG if we can get him!&lt;br /&gt;
nablack and m4farrel with a security demo + open ended question session&lt;br /&gt;
m4farrel on &#039;&#039;Secrets of a DDoS&#039;&#039;&lt;br /&gt;
wlritchi on &#039;&#039;Reversing protocols and pnwing ur phone&#039;&#039;&lt;br /&gt;
mtrberzi on &#039;&#039;GPG&#039;&#039; and with a keysigning party to boot&lt;br /&gt;
&lt;br /&gt;
IST Security:&lt;br /&gt;
 [pmatlock@uwaterloo.ca Patrick Matlock] on some combination or subset of oauth, identity, data privacy ([https://uwaterloo.ca/secretariat/policies-procedures-guidelines/policy-8 Policy 8]), and web pentesting&lt;br /&gt;
 [tlabach@uwaterloo.ca Terry Labach] on [http://ist.uwaterloo.ca/~tlabach/safer/ safer web browsing]&lt;br /&gt;
 [cpbell@uwaterloo.ca Colin Bell]?&lt;br /&gt;
&lt;br /&gt;
[http://wpirg.org WPIRG] wants to cross-promote with us. They wish to book, for November, a &amp;quot;privacy forum&amp;quot; (which they are imagining as an expert panel + QA session). Wouldn&#039;t it be great if we could get:&lt;br /&gt;
 * [https://cs.uwaterloo.ca/~iang/ Ian Goldberg] (sharvey)&lt;br /&gt;
 * [http://www.michaelgeist.ca Michael Geist]&lt;br /&gt;
 *&lt;/div&gt;</summary>
		<author><name>Nguenthe</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Mentorship&amp;diff=3446</id>
		<title>Mentorship</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Mentorship&amp;diff=3446"/>
		<updated>2013-09-22T01:28:37Z</updated>

		<summary type="html">&lt;p&gt;Nguenthe: /* Competition */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;As of Fall&#039;13, m4burns, nguenthe, and others are interested in starting a low-overhead CSC mentorship program. &lt;br /&gt;
This is currently in the &#039;&#039;&#039;planning&#039;&#039;&#039; stage, more to come as it rolls out. The CSC is very good at disseminating high quality information, or at least arguing over it until it&#039;s figured out, but only for the very small subset of office regulars in a very particularly stringent culture.&lt;br /&gt;
&lt;br /&gt;
The purposes are:&lt;br /&gt;
# Promote involvement and activity in the CSC, and support community formation with low overhead. (The CSC usually has a strong core of office regulars, but their reach ends at the office door, and when they graduate, their knowledge goes)&lt;br /&gt;
# Give our extended, non-office-regular membership a way to get something out of the club besides webspace&lt;br /&gt;
# Wash out the formation of Old Boys Clubs&lt;br /&gt;
# Give long-term CSC members experience tutoring and guiding. Make them remember that everyone was a noob once.&lt;br /&gt;
# Give noobier members someone they can call for help with any issues&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Sample activities that members could do under the guise of this program:&lt;br /&gt;
# Tutoring&lt;br /&gt;
# Mock interviews&lt;br /&gt;
as well as just having access to someone with more experience than you.&lt;br /&gt;
&lt;br /&gt;
===Design===&lt;br /&gt;
&lt;br /&gt;
The program will simply be a postings board (https://csclub.uwaterloo.ca/mentoring), where people can post their availability and/or desire for mentorship.&lt;br /&gt;
&lt;br /&gt;
Mentors can take on up to three mentees at a time, and can choose how many they want at a time (including zero, if they want to temporarily cancel their involvement, say during co-op or a busy term).&lt;br /&gt;
&lt;br /&gt;
Mentors can themselves have mentors: mentored students can come in and get help. Hopefully after a year or two a useful mentorship will simply evolve into a friendship.&lt;br /&gt;
&lt;br /&gt;
Participants provide some subset of:&lt;br /&gt;
* preferred contact methods&lt;br /&gt;
* program and year&lt;br /&gt;
* interests / courses&lt;br /&gt;
&lt;br /&gt;
Pairings will be made by ..............?&lt;br /&gt;
&lt;br /&gt;
===Rules===&lt;br /&gt;
&lt;br /&gt;
Many of the other mentorship programs have some sort of ethics code. We (being m4 and nick) want to minimize bureaucracy, but will need some way to chastise or get rid of bad mentors that&#039;s better than just pulling the rug out from under them and their mentees. Perhaps we should just start it and add rules if we feel they are absolutely necessary as issues crop up.&lt;br /&gt;
&lt;br /&gt;
For now:&lt;br /&gt;
# You must be a CSC member to use the postings board. The bar for participation in mentorship is the same bar for being a CSC member.&lt;br /&gt;
# Pairings will be dissolved in an account expires (or if an account is deleted, i.e. one term after it expires?)&lt;br /&gt;
# [https://uwaterloo.ca/secretariat/policies-procedures-guidelines/policy-71 Do not do your mentees homework for them]&lt;br /&gt;
&lt;br /&gt;
===Competition===&lt;br /&gt;
&lt;br /&gt;
There are other mentorship programs floating around campus. We might both learn from or overlap awkwardly with them. Below is meant to be a full list, but may be missing entries:&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
!Program!!Notes!!Status&lt;br /&gt;
|-&lt;br /&gt;
|[https://cs.uwaterloo.ca/wics/mentoring WiCS]&lt;br /&gt;
|For women only. For pairing upper years with first years only. Onerous monthly written reports from &#039;&#039;&#039;all&#039;&#039;&#039; participants, intimidating (but perhaps necessary) ethics code&lt;br /&gt;
|?? (does anyone know how much traction they have?)&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|[https://uwaterloo.ca/women-in-engineering/mentorship-program Women in Engineering]||Lots of warm-fuzzy soft-skills advice. Not much detail on their site about what they actually do. Onerity: low? Seems similar to the design we were envisioning, though again they are only interested in pairing first years with upper years.||Seems active: they host workshop events https://uwaterloo.ca/women-in-engineering/events&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|[https://www.eng.uwaterloo.ca/askanengalumni/ AskEngAlumni]||For engineers||Seems dead?&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.ddclub.uwaterloo.ca/admissions/mentorship.php DDC]||For double-degree students. Similar in scope to CSC-mentorship.|| ???????&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|[https://developers.google.com/open-source/organizations GSoC]||What does GSoC do? How do they handle churn and dropouts and ethics?||Very popular and busy and big and &#039;&#039;&#039;&#039;&#039;funded&#039;&#039;&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|[https://uwaterloo.ca/sso/tutoring Student Success Office Tutor Connect]||Onerous click-through policy. For-profit postings. The university washes its hands of overseeing quality.||Absolutely, totally, dead. Also, hung their search badly by selecting every course.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|[http://asclub.uwaterloo.ca/ ActSci Club]||They don&#039;t have a mentorship program, they have mentorship events where the first n (n~=20) frosh that sign up get to have a mock interview by the senior asclub members, and then they all drink bubble tea||Busy!&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Nguenthe</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Mentorship&amp;diff=3445</id>
		<title>Mentorship</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Mentorship&amp;diff=3445"/>
		<updated>2013-09-22T01:25:24Z</updated>

		<summary type="html">&lt;p&gt;Nguenthe: /* Competition */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;As of Fall&#039;13, m4burns, nguenthe, and others are interested in starting a low-overhead CSC mentorship program. &lt;br /&gt;
This is currently in the &#039;&#039;&#039;planning&#039;&#039;&#039; stage, more to come as it rolls out. The CSC is very good at disseminating high quality information, or at least arguing over it until it&#039;s figured out, but only for the very small subset of office regulars in a very particularly stringent culture.&lt;br /&gt;
&lt;br /&gt;
The purposes are:&lt;br /&gt;
# Promote involvement and activity in the CSC, and support community formation with low overhead. (The CSC usually has a strong core of office regulars, but their reach ends at the office door, and when they graduate, their knowledge goes)&lt;br /&gt;
# Give our extended, non-office-regular membership a way to get something out of the club besides webspace&lt;br /&gt;
# Wash out the formation of Old Boys Clubs&lt;br /&gt;
# Give long-term CSC members experience tutoring and guiding. Make them remember that everyone was a noob once.&lt;br /&gt;
# Give noobier members someone they can call for help with any issues&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Sample activities that members could do under the guise of this program:&lt;br /&gt;
# Tutoring&lt;br /&gt;
# Mock interviews&lt;br /&gt;
as well as just having access to someone with more experience than you.&lt;br /&gt;
&lt;br /&gt;
===Design===&lt;br /&gt;
&lt;br /&gt;
The program will simply be a postings board (https://csclub.uwaterloo.ca/mentoring), where people can post their availability and/or desire for mentorship.&lt;br /&gt;
&lt;br /&gt;
Mentors can take on up to three mentees at a time, and can choose how many they want at a time (including zero, if they want to temporarily cancel their involvement, say during co-op or a busy term).&lt;br /&gt;
&lt;br /&gt;
Mentors can themselves have mentors: mentored students can come in and get help. Hopefully after a year or two a useful mentorship will simply evolve into a friendship.&lt;br /&gt;
&lt;br /&gt;
Participants provide some subset of:&lt;br /&gt;
* preferred contact methods&lt;br /&gt;
* program and year&lt;br /&gt;
* interests / courses&lt;br /&gt;
&lt;br /&gt;
Pairings will be made by ..............?&lt;br /&gt;
&lt;br /&gt;
===Rules===&lt;br /&gt;
&lt;br /&gt;
Many of the other mentorship programs have some sort of ethics code. We (being m4 and nick) want to minimize bureaucracy, but will need some way to chastise or get rid of bad mentors that&#039;s better than just pulling the rug out from under them and their mentees. Perhaps we should just start it and add rules if we feel they are absolutely necessary as issues crop up.&lt;br /&gt;
&lt;br /&gt;
For now:&lt;br /&gt;
# You must be a CSC member to use the postings board. The bar for participation in mentorship is the same bar for being a CSC member.&lt;br /&gt;
# Pairings will be dissolved in an account expires (or if an account is deleted, i.e. one term after it expires?)&lt;br /&gt;
# [https://uwaterloo.ca/secretariat/policies-procedures-guidelines/policy-71 Do not do your mentees homework for them]&lt;br /&gt;
&lt;br /&gt;
===Competition===&lt;br /&gt;
&lt;br /&gt;
There are other mentorship programs floating around campus. We might both learn from or overlap awkwardly with them. Below is meant to be a full list, but may be missing entries:&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
!Program!!Notes!!Status&lt;br /&gt;
|-&lt;br /&gt;
|[https://cs.uwaterloo.ca/wics/mentoring WiCS]&lt;br /&gt;
|For women only. For pairing upper years with first years only. Onerous monthly written reports from &#039;&#039;&#039;all&#039;&#039;&#039; participants, intimidating (but perhaps necessary) ethics code&lt;br /&gt;
|?? (does anyone know how much traction they have?)&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|[https://uwaterloo.ca/women-in-engineering/mentorship-program Women in Engineering]||Lots of warm-fuzzy soft-skills advice. Not much detail on their site about what they actually do. Onerity: low? Seems similar to the design we were envisioning, though again they are only interested in pairing first years with upper years.||Seems active: they host workshop events https://uwaterloo.ca/women-in-engineering/events&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|[https://www.eng.uwaterloo.ca/askanengalumni/ AskEngAlumni]||For engineers||Seems dead?&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.ddclub.uwaterloo.ca/admissions/mentorship.php DDC]||For double-degree students. Similar in scope to CSC-mentorship.|| ???????&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|[https://developers.google.com/open-source/organizations GSoC]||What does GSoC do? How do they handle churn and dropouts and ethics?||Very popular and busy and big and &#039;&#039;&#039;&#039;&#039;funded&#039;&#039;&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|[https://uwaterloo.ca/sso/tutoring Student Success Office Tutor Connect]||Onerous click-through policy. For-profit postings. The university washes its hands of overseeing quality.||Absolutely, totally, dead.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|[http://asclub.uwaterloo.ca/ ActSci Club]||They don&#039;t have a mentorship program, they have mentorship events where the first n (n~=20) frosh that sign up get to have a mock interview by the senior asclub members, and then they all drink bubble tea||Busy!&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Nguenthe</name></author>
	</entry>
	<entry>
		<id>https://wiki.csclub.uwaterloo.ca/index.php?title=Mentorship&amp;diff=3444</id>
		<title>Mentorship</title>
		<link rel="alternate" type="text/html" href="https://wiki.csclub.uwaterloo.ca/index.php?title=Mentorship&amp;diff=3444"/>
		<updated>2013-09-22T01:22:37Z</updated>

		<summary type="html">&lt;p&gt;Nguenthe: /* Design */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;As of Fall&#039;13, m4burns, nguenthe, and others are interested in starting a low-overhead CSC mentorship program. &lt;br /&gt;
This is currently in the &#039;&#039;&#039;planning&#039;&#039;&#039; stage, more to come as it rolls out. The CSC is very good at disseminating high quality information, or at least arguing over it until it&#039;s figured out, but only for the very small subset of office regulars in a very particularly stringent culture.&lt;br /&gt;
&lt;br /&gt;
The purposes are:&lt;br /&gt;
# Promote involvement and activity in the CSC, and support community formation with low overhead. (The CSC usually has a strong core of office regulars, but their reach ends at the office door, and when they graduate, their knowledge goes)&lt;br /&gt;
# Give our extended, non-office-regular membership a way to get something out of the club besides webspace&lt;br /&gt;
# Wash out the formation of Old Boys Clubs&lt;br /&gt;
# Give long-term CSC members experience tutoring and guiding. Make them remember that everyone was a noob once.&lt;br /&gt;
# Give noobier members someone they can call for help with any issues&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Sample activities that members could do under the guise of this program:&lt;br /&gt;
# Tutoring&lt;br /&gt;
# Mock interviews&lt;br /&gt;
as well as just having access to someone with more experience than you.&lt;br /&gt;
&lt;br /&gt;
===Design===&lt;br /&gt;
&lt;br /&gt;
The program will simply be a postings board (https://csclub.uwaterloo.ca/mentoring), where people can post their availability and/or desire for mentorship.&lt;br /&gt;
&lt;br /&gt;
Mentors can take on up to three mentees at a time, and can choose how many they want at a time (including zero, if they want to temporarily cancel their involvement, say during co-op or a busy term).&lt;br /&gt;
&lt;br /&gt;
Mentors can themselves have mentors: mentored students can come in and get help. Hopefully after a year or two a useful mentorship will simply evolve into a friendship.&lt;br /&gt;
&lt;br /&gt;
Participants provide some subset of:&lt;br /&gt;
* preferred contact methods&lt;br /&gt;
* program and year&lt;br /&gt;
* interests / courses&lt;br /&gt;
&lt;br /&gt;
Pairings will be made by ..............?&lt;br /&gt;
&lt;br /&gt;
===Rules===&lt;br /&gt;
&lt;br /&gt;
Many of the other mentorship programs have some sort of ethics code. We (being m4 and nick) want to minimize bureaucracy, but will need some way to chastise or get rid of bad mentors that&#039;s better than just pulling the rug out from under them and their mentees. Perhaps we should just start it and add rules if we feel they are absolutely necessary as issues crop up.&lt;br /&gt;
&lt;br /&gt;
For now:&lt;br /&gt;
# You must be a CSC member to use the postings board. The bar for participation in mentorship is the same bar for being a CSC member.&lt;br /&gt;
# Pairings will be dissolved in an account expires (or if an account is deleted, i.e. one term after it expires?)&lt;br /&gt;
# [https://uwaterloo.ca/secretariat/policies-procedures-guidelines/policy-71 Do not do your mentees homework for them]&lt;br /&gt;
&lt;br /&gt;
===Competition===&lt;br /&gt;
&lt;br /&gt;
There are other mentorship programs floating around campus. We might both learn from or overlap awkwardly with them. Below is meant to be a full list, but may be missing entries:&lt;br /&gt;
&lt;br /&gt;
{|&lt;br /&gt;
!Program!!Notes!!Status&lt;br /&gt;
|-&lt;br /&gt;
|[https://cs.uwaterloo.ca/wics/mentoring WiCS]&lt;br /&gt;
|For women only. For pairing upper years with first years only. Onerous monthly written reports from &#039;&#039;&#039;all&#039;&#039;&#039; participants, intimidating (but perhaps necessary) ethics code&lt;br /&gt;
|?? (does anyone know how much traction they have?)&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|[https://uwaterloo.ca/women-in-engineering/mentorship-program Women in Engineering]||Lots of warm-fuzzy soft-skills advice. Not much detail on their site about what they actually do. Onerity: low? Seems similar to the design we were envisioning, though again they are only interested in pairing first years with upper years.||Seems active: they host workshop events https://uwaterloo.ca/women-in-engineering/events&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|[https://www.eng.uwaterloo.ca/askanengalumni/ AskEngAlumni]||For engineers||Seems dead?&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|[http://www.ddclub.uwaterloo.ca/admissions/mentorship.php DDC]||For double-degree students. Similar in scope to CSC-mentorship.|| ???????&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|[https://developers.google.com/open-source/organizations GSoC]||What does GSoC do? How do they handle churn and dropouts and ethics?||Very popular and busy and big and &#039;&#039;&#039;&#039;&#039;funded&#039;&#039;&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
|-&lt;br /&gt;
|[http://asclub.uwaterloo.ca/ ActSci Club]||They don&#039;t have a mentorship program, they have mentorship events where the first n (n~=20) frosh that sign up get to have a mock interview by the senior asclub members, and then they all drink bubble tea||Busy!&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Nguenthe</name></author>
	</entry>
</feed>