Skip to content

Instantly share code, notes, and snippets.

@Rich5
Rich5 / ransomware_ext
Created November 10, 2020 20:34
Ransomware Extensions
*.k
*.encoderpass
*.key
*.ecc
*.ezz
*.exx
*.zzz
*.xyz
*.aaa
*.abc
@Rich5
Rich5 / Meterpreter Staging Question
Created May 10, 2018 20:55
Email exchange between OJ Reeves and Rich Kelley regarding Meterpreter staging
Hey Rich,
Apologies for the delayed response mate. My email debt is insane and I'm
only just getting on top of it.
Cheers for your words about my Meterpreter work. I hope it's useful! The
recent transport changes seem to have caused quite a stir for the better,
so that's very exciting to see.
The process of stage invocation actually changed when I redid the transport
'''
greynoise_list
Helpful functions for parsing out data from the Grey Noise dataset.
get_categories() returns all the categories currently used in the data.
map_ips_cat() returns a dictionary with categories as keys mapped to ips.
'''
basictable
Copyright (c) 2017 Rich Kelley
Contact:
@RGKelley5
RK5DEVMAIL[A T]gmail[D O T]com
www.bytesdarkly.com
License: MIT
/*
*
*
* Proposed oclhashcat API prototype. This was superceeded by hashcat 3.20 but kept here for posterity
*
* compile with:
*
* make
*
* or
@Rich5
Rich5 / SimpleSSLServer.py
Created April 22, 2016 12:54
Quick SSL Python server
import BaseHTTPServer, SimpleHTTPServer
import ssl
#
# $openssl req -x509 -days 365 -nodes -newkey rsa:2048 -keyout key.pem -out cert.pem
#
httpd = BaseHTTPServer.HTTPServer(('0.0.0.0', 4443), SimpleHTTPServer.SimpleHTTPRequestHandler)
httpd.socket = ssl.wrap_socket(httpd.socket, certfile='cert.pem', keyfile='key.pem', server_side=True)
httpd.serve_forever()