Skip to content

Instantly share code, notes, and snippets.

View gmixo's full-sized avatar

MIkhail Gulyaev gmixo

View GitHub Profile
@CTurt
CTurt / gist:27fe7f3c241f69be19e5
Created December 14, 2015 19:24
PS4 kernel exploit tease (root FS dump, and list of PIDs)
[+] Entered shellcode
[+] UID: 0, GID: 0
[DIR]: .
[DIR]: ..
[DIR]: adm
[DIR]: app_tmp
[DIR]: data
[DIR]: dev
[DIR]: eap_user
[DIR]: eap_vsh
@amatellanes
amatellanes / celery.sh
Last active September 19, 2025 15:58
Celery handy commands
/* Useful celery config.
app = Celery('tasks',
broker='redis://localhost:6379',
backend='redis://localhost:6379')
app.conf.update(
CELERY_TASK_RESULT_EXPIRES=3600,
CELERY_QUEUES=(
Queue('default', routing_key='tasks.#'),
@ikatson
ikatson / profiling.py
Last active May 4, 2025 18:06
Simple django profiling
# coding: utf-8
# Profiling middleware and decorator, that allows to profile any django
# view easily for superusers.
__author__ = '[email protected]'
import cProfile
import pstats
import tempfile