Skip to content

Instantly share code, notes, and snippets.

View Ekultek's full-sized avatar
:octocat:
\x66\xc7\x06\x10\x00\x00\x00\x00\x00\x66\xff\x06\x10\x00\xeb\xf9

Ekultek

:octocat:
\x66\xc7\x06\x10\x00\x00\x00\x00\x00\x66\xff\x06\x10\x00\xeb\xf9
View GitHub Profile
#!/usr/bin/python
from BaseHTTPServer import BaseHTTPRequestHandler,HTTPServer
PORT_NUMBER = 31337
class myHandler(BaseHTTPRequestHandler):
#Handler for the GET requests
def do_GET(self):
self.send_response(200)
@Ekultek
Ekultek / copy-locker.sh
Created May 18, 2018 20:22 — forked from NullArray/copy-locker.sh
Shell script that finds all files and directories that have been modified in the last hour, copies them to a temporary directory and stored them as an encrypted archive.
#!/bin/bash
#____ ____ __
#\ \ / /____ _____/ |_ ___________
# \ Y // __ \_/ ___\ __\/ _ \_ __ \
# \ /\ ___/\ \___| | ( <_> ) | \/
# \___/ \___ >\___ >__| \____/|__|
# \/ \/
#--Author : Vector/NullArray
#----Twitter: @Real__Vector
#--------Licensed under GNU GPL 3
@Ekultek
Ekultek / socks.py
Created February 17, 2017 19:20 — forked from e000/socks.py
socksipy + urllib2 handler
"""SocksiPy - Python SOCKS module.
Version 1.00
Copyright 2006 Dan-Haim. All rights reserved.
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,