Skip to content

Instantly share code, notes, and snippets.

@lxe
lxe / goes16-rtlsdr.md
Last active September 18, 2025 04:30
Receive GOES-16 and GOES-17 Images with a Raspberry Pi and RTL-SDR dongle
@ajinabraham
ajinabraham / MobSF REST API Python.py
Last active October 13, 2025 07:26
MOBSF REST API Python Requests Example
"""
MOBSF REST API Python Requests
"""
import json
import requests
from requests_toolbelt.multipart.encoder import MultipartEncoder
SERVER = "http://127.0.0.1:8000"
FILE = 'diva-beta.apk'
@tistaharahap
tistaharahap / index.php
Created July 1, 2013 23:20
Wordpress hacked index.php to cache with Memcache
<?php
$_start = microtime(TRUE);
$mem = new Memcache;
$mem->connect('127.0.0.1', 11211) or die('Memcache is dead');
$url = $_SERVER['HTTP_HOST'] . $_SERVER['REQUEST_URI'];
$key = md5($url);
$cache = $mem->get($key);
if(!empty($cache['data'])) {
@koenbollen
koenbollen / punch.py
Created July 5, 2010 19:10
Proof of Concept: UDP Hole Punching
#!/usr/bin/env python
#
# Proof of Concept: UDP Hole Punching
# Two client connect to a server and get redirected to each other.
#
# This is the client.
#
# Koen Bollen <meneer koenbollen nl>
# 2010 GPL
#