Skip to content

Instantly share code, notes, and snippets.

View internety's full-sized avatar

Ralph Rajko-Nenow internety

View GitHub Profile
@internety
internety / 0_reuse_code.js
Created July 25, 2016 08:49
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@internety
internety / reflectrequest.py
Created August 8, 2018 02:30 — forked from matthewflannery/reflectrequest.py
From Defcon 18 - Constricting the Web: Offensive Python for Web Hackers
from BaseHTTPServer import HTTPServer, BaseHTTPRequestHandler
from optparse import OptionParser
class RequestHandler(BaseHTTPRequestHandler):
def do_GET(self):
request_path = self.path
print("\n----- Request Start ----->\n")