Skip to content

Instantly share code, notes, and snippets.

View internety's full-sized avatar

Ralph Rajko-Nenow internety

View GitHub Profile
@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")
#!/usr/bin/env python2
# -*- coding: utf-8 -*-
"""
Created on Sun May 28 07:06:16 2017 | @author: s
"""
def tuplengine(tuple1, tuple2, operation):
"""
quick and dirty, element-wise, tuple arithmetic engine,
created on Sun May 28 07:06:16 2017
@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