Skip to content

Instantly share code, notes, and snippets.

@KorayAgaya
KorayAgaya / crime_petya_jun17.yar
Created June 28, 2017 07:32 — forked from Neo23x0/crime_petya_jun17.yar
YARA Rule for Petya Ransomware - June 2017
I just pushed the rule to "signature-base"
https://github.com/Neo23x0/signature-base/blob/master/yara/crime_nopetya_jun17.yar
Some of the other rules are running in QS right now.
I'll update the 'crime_nopetya_jun17.yar' file frequently.
@KorayAgaya
KorayAgaya / vpn_psk_bingo.md
Created November 6, 2016 10:25 — forked from kennwhite/vpn_psk_bingo.md
Most VPN Services are Terrible
@KorayAgaya
KorayAgaya / JSRat.ps1
Created August 6, 2016 21:15
Fileless JavaScript Reverse HTTP Shell
<#
Author: Casey Smith @subTee
License: BSD3-Clause
.SYNOPSIS
Simple Reverse Shell over HTTP. Execute Commands on Client.
@KorayAgaya
KorayAgaya / gist:34c839369072ccdaeffb
Last active August 29, 2015 14:27 — forked from mdisec/gist:b0d44cc14e4c4c10cd64
Kibana with Nginx Reverse Proxy + SSL + HTTP Auth
# Nginx proxy for Elasticsearch + Kibana
#
# In this setup, we are password protecting the saving of dashboards. You may
# wish to extend the password protection to all paths.
#
# Even though these paths are being called as the result of an ajax request, the
# browser will prompt for a username/password on the first request
#
# If you use this, you'll want to point config.js at http://FQDN:443/ instead of
# http://FQDN:9200
@KorayAgaya
KorayAgaya / web-servers.md
Last active August 29, 2015 14:25 — forked from willurd/web-servers.md
Big list of http static server one-liners

Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.

Discussion on reddit.

Python 2.x

$ python -m SimpleHTTPServer 8000