Also see the original Pieter Noordhuis's guide
You need:
- Raspberry Pi Model B (or B+) with a MicroSD Card $35-40
- An RTL-SDR dongle:
Also see the original Pieter Noordhuis's guide
You need:
| """ | |
| 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' |
| <?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'])) { |
| #!/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 | |
| # |