Skip to content

Instantly share code, notes, and snippets.

View AndyNovo's full-sized avatar

Andy Novocin AndyNovo

View GitHub Profile
@AndyNovo
AndyNovo / AES1.md
Last active July 13, 2020 16:51 — forked from npilla2023/AES1.md

Level 1: Finding a Shared Key

Thanks to Diffie-Hellman Key Exchange, the STARS can share secret messages that the CRABS will never crack. The STARS want to ensure that you can properly execute this process, so this is your chance to prove yourself as a promising agent. Agent Ocean will be training you.

Here is the information you have been briefed with:
Your super secret value is: 109306739515372000536684615587060142161
Agent Ocean's public value is: 54224788903180805177809934100426766384

function expmod( base, exp, mod ){
if (exp === 0) return 1;
if (exp % 2 === 0){
return Math.pow( expmod( base, (exp / 2), mod), 2) % mod;
}
else {
return (base * expmod( base, (exp - 1), mod)) % mod;
}
}
from pwn import *
import sys
print("STARTING PYTHON SCRIPT")
def readleak(resp, start, end):
return u32(resp[start:end])
def getAddStart(leak, find):
count = 0
while (count < 50):
{
"root":{
"color":"green",
"next": ["node1","node2","node3"]
},
"node1":{
"color":"red",
"next":[]
},
"node2":{

We're building interactive K12 Education materials that we will teach this summer (and beyond)

pottyhumor

Goal for the day: A framework for educational materials to be gamified and an escape-room style unlock system

We're using URLs as the "flags"/"answers" that unlock the next lessons. i.e. learnhere.com/start might have 5 problems with various ed around it (including the best stuff online linked) and if you solve problem 1 you'll use the answer as a URL like learnhere.com/answertoprob1 which adds something to your inventory/history or just has the next lesson.

QUESTION: Are future student trajectories damaged by the quarantine?

DELIVERABLE: We will build virtualized STEAM curriculum that UD students will deliver online to middle schoolers this summer.

SCOPE: Have at least one interactive experience covering at least one appropriate topic.

DATA: Traditional pedagogical curriculum that needs adapting.

SKILLS: Empathy, kindness, web devs, minecraft?, child developmental models, curricular passion

@AndyNovo
AndyNovo / myServer.js
Last active September 30, 2019 11:56
var http = require("http");
console.log("Started server");
var myServer = http.createServer(function(request, response){
console.log(request);
console.log(response);
response.setHeader('Content-Type', 'text/html');
response.write("<p>Hello there</p>");
response.end("<p>I think I'm done</p>");
});
@AndyNovo
AndyNovo / dabblet.css
Created January 4, 2016 01:48
An empty Dabblet
/**
* An empty Dabblet
*/
background: #f06;
background: linear-gradient(45deg, #f06, yellow);
min-height: 100%;
#include <stdio.h>
#include <string.h>
#include <stdbool.h>
bool isPasswordOK(void) {
char Password[12];
gets(Password);
return 0 == strcmp(Password, "goodpass");
}
@AndyNovo
AndyNovo / index.html
Created December 24, 2018 20:29
ZVyEpR
<div class="container">
<div class="led-box">
<div class="led-red on"></div>
<p>Red LED is <span class="status"></span></p>
</div>
</div>