Skip to content

Instantly share code, notes, and snippets.

View signomel's full-sized avatar
🏠
Working from home

signomel signomel

🏠
Working from home
View GitHub Profile
@DanielKotik
DanielKotik / divtags.rst
Last active April 30, 2025 17:12
Colored note boxes inside Jupyter notebooks

############# Markdown parser in Jupyter notebooks ##################

<div class="alert alert-block alert-info"> <b>NOTE</b> Use blue boxes for Tips and notes. </div>

<div class="alert alert-block alert-success"> Use green boxes sparingly, and only for some specific purpose that the other boxes can't cover. For example, if you have a lot of related content to link to, maybe you decide to use green boxes for related links from each section of a notebook.

@mgeeky
mgeeky / pickle-payload.py
Last active July 14, 2025 16:19
Python's Pickle Remote Code Execution payload template.
#!/usr/bin/python
#
# Pickle deserialization RCE payload.
# To be invoked with command to execute at it's first parameter.
# Otherwise, the default one will be used.
#
import cPickle
import sys
import base64