- 2010: "Universities push to turn out cyber guards as demand explodes" https://triblive.com/x/pittsburghtrib/news/education/s_698162.html
- 2011: "Will There Be A Shortage of Cyber Security Professionals in 2011?" https://www.csoonline.com/article/2228141/cisco-subnet/will-there-be-a-shortage-of-cyber-security-professionals-in-2011-.html
- 2012: "CEO Warns of Security Pro Shortage" https://www.securitymagazine.com/articles/83198-ceo-warns-of-security-pro-shortage
- 2013: "RSA 2013: Cyber security skills shortage needs urgent attention, says DoHS" https://www.computerweekly.com*/news/2240178584/RSA-2013-Cyber-security-skills-shortage-needs-urgent-attention-says-DoHS
- 2014: "Shortage of cybersecurity workers is a problem that will solve itself, study says" https://www.washingtonpost.com/business/capitalbusiness/an-argument-that-the-shortage-of-cyber-workers-is-a-problem-that-will-solve-itself/2014/06/27/dbab364a-fe00-11e3-8176-f2c941cf35f1_story.html?noredirect=on&utm_term=.649a29ac61aa < WTF?!?!?
- 2014: "Sh
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/perl | |
| ### FooVirus.pl | |
| ### Author: Avi kak (kak@purdue.edu) | |
| ### Date: April 19, 2006 | |
| print "\nHELLO FROM FooVirus\n\n"; | |
| print "This is a demonstration of how easy it is to write\n"; | |
| print "a self-replicating program. This virus will infect\n"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/python3 | |
| from scapy.all import * | |
| import argparse | |
| def packetcallback(packet): | |
| try: | |
| # The following is an example of Scapy detecting HTTP traffic | |
| # Please remove this case in your actual lab implementation so it doesn't pollute the alerts | |
| if packet[TCP].dport == 80: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import glob, os | |
| passwords =[] | |
| results = {} | |
| student_totals = {} | |
| password_totals = {} | |
| for filename in os.listdir("."): | |
| if filename.endswith(".html"): | |
| results[filename] = {} |