`POST /windows/browser/edge/service/navigate/4 HTTP/1.1 Accept-Encoding: gzip, deflate User-Agent: SmartScreen/2814750931223057 Authorization: SmartScreenHash eyJhdXRoSWQiOiJhZGZmZjVhZC1lZjllLTQzYTYtYjFhMy0yYWQ0MjY3YWVlZDUiLCJoYXNoIjoiWFQyeUNoU0RmNGM9Iiwia2V5IjoicVRZQU9vVGtkMlcvVEhDSlgxUnBZUT09In0= Content-Length: 1768 Content-Type: application/json; charset=utf-8 Host: nav.smartscreen.microsoft.com Connection: Keep-Alive
- 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
var http = require('http'); | |
http.createServer(function (request, response) { | |
if (request.method === 'POST') { | |
var data = ''; | |
request.addListener('data', function(chunk) { | |
console.log("Got some data! => " + chunk); | |
data += chunk; | |
}); | |
request.addListener('end', function() { | |
console.log("...and end.") |
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
require "csv" | |
require 'Octokit' | |
# See documentation at: | |
# 1. https://github.com/octokit/octokit.rb | |
# 2. http://www.rubydoc.info/github/pengwynn/octokit/Octokit | |
# Settings | |
# *.tsv is a tab-delimited file with the columns separated by tab: lastname, firstname, githubusername | |
tsv_file_name = "20.tsv" |
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
require "csv" | |
require 'Octokit' | |
# See documentation at: | |
# 1. https://github.com/octokit/octokit.rb | |
# 2. http://www.rubydoc.info/github/pengwynn/octokit/Octokit | |
# Settings | |
# roster.tsv contains two columns separated by tab: username and team_number | |
roster_file_name = "roster.tsv" |
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] = {} |
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
#include <stdio.h> | |
#include <string.h> | |
int main(int argc, char *argv[]) { | |
int value = 5; | |
char buffer_one[8], buffer_two[8]; | |
strcpy(buffer_one, "one"); /* put "one" into buffer_one */ | |
strcpy(buffer_two, "two"); /* put "two" into buffer_two */ | |
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 tweepy | |
import MySQLdb | |
import sys | |
import os | |
import logging | |
# Tweepy API doc here: http://pythonhosted.org/tweepy/html/api.html | |
# Keys | |
consumer_key = os.getenv("TWITTER_CONSUMER_KEY") |
NewerOlder