Skip to content

Instantly share code, notes, and snippets.

This file has been truncated, but you can view the full file.
[
{
"BeaconType": [
"HTTP"
],
"MD5": "4007dd04bd0ac521dacb264efecf1562",
"Port": 80,
"SleepTime": 60000,
"MaxGetSize": 1048576,
"Jitter": 0,
https://thegirlwhoservesspumoni.com/recipe/day-4-of-the-22-days-of-thanksgiving-herb-butter/
https://www.foodfanatic.com/recipe-box/recipes/herb-butter-the-girl-who-serves-spumoni/
https://thegirlwhoservesspumoni.com/recipe/day-5-of-the-22-days-of-thanksgiving-roast-turkey-with-herb-butter/
https://www.foodfanatic.com/recipe-box/recipes/day-5-of-the-22-days-of-thanksgiving-roast-turkey-with-herb-butt-the-girl-who-serves-spumoni/
https://thegirlwhoservesspumoni.com/recipe/day-6-of-the-22-days-of-thanksgiving-the-best-turkey-gravy-from-scratch/
https://www.foodfanatic.com/recipe-box/recipes/day-6-of-the-22-days-of-thanksgiving-the-best-turkey-gravy-from-the-girl-who-serves-spumoni/
https://thegirlwhoservesspumoni.com/recipe/day-7-of-the-22-days-of-thanksgiving-cranberry-sauce/
### Keybase proof
I hereby claim:
* I am r3comp1le on github.
* I am infra917 (https://keybase.io/infra917) on keybase.
* I have a public key ASDzmDxacpaxuRUmZO5eJwmEF1wfGx2sTbqTE-pI7e8drgo
To claim this, I am signing this object:
@r3comp1le
r3comp1le / unifi.py
Created February 7, 2019 21:33
Simple Unifi API call using python 2
import requests
requests.packages.urllib3.disable_warnings()
def network():
#Login and Get Session Cookies
url = "https://192.168.1.1:8443/api/login"
payload = "{'username':'admin','password':'mypass'}"
r = requests.post(url, data=payload, verify=False)
#Set Cookies