I hereby claim:
- I am mchow01 on github.
- I am mchow01 (https://keybase.io/mchow01) on keybase.
- I have a public key ASD3tAYLUGE0d2ujgxnDV4ongyd6RzhfCeZYFigFwNyfOAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
`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
#!/usr/bin/perl | |
### FooVirus.pl | |
### Author: Avi kak ([email protected]) | |
### 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"; |
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.") |
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" |
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" |
#!/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: |
import glob, os | |
passwords =[] | |
results = {} | |
student_totals = {} | |
password_totals = {} | |
for filename in os.listdir("."): | |
if filename.endswith(".html"): | |
results[filename] = {} |
#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 */ | |