- start mitmproxy
- set proxy environment variable
- tell the Azure CLI to not validate SSL
- run
az
commands
mitmproxy
sudo vi /Library/Preferences/VMware\ Fusion/vmnet8/nat.conf | |
sudo vi /Library/Preferences/VMware\ Fusion/networking | |
sudo /Applications/VMware\ Fusion.app/Contents/Library/vmnet-cli --configure | |
sudo /Applications/VMware\ Fusion.app/Contents/Library/vmnet-cli --stop | |
sudo /Applications/VMware\ Fusion.app/Contents/Library/vmnet-cli --start | |
sudo /Applications/VMware\ Fusion.app/Contents/Library/vmnet-cli --configure; sudo /Applications/VMware\ Fusion.app/Contents/Library/vmnet-cli --stop; sudo /Applications/VMware\ Fusion.app/Contents/Library/vmnet-cli --start |
from flask import * | |
import requests | |
app = Flask(__name__) | |
@app.route('/follow') | |
def follow_url(): | |
url = request.args.get('url', '') | |
if url: | |
return (requests.get(url).text) |
python -m http.server
Serving HTTP on 0.0.0.0 port 8000 (http://0.0.0.0:8000/) ...
from scapy.all import *
create / Register VM -> Linux / Other 4.x or Later (64bit) -> ...
power On VM -> should see GNU GRUB welcome screen (from debian ISO/cdrom) -> Advanced Options -> Rescue mode
partition the disk; see also ArchLinux Wiki Partition the disk
It’s a bad idea to model your data in DynamoDB the same way you model your data in a relational database. The entire point of using a NoSQL datastore is to get some benefit you couldn’t get with a relational database. If you model the data in the same way, you not only won’t get that benefit but you will also end up with a solution that’s worse than using the relational database!
from Alex DeBrie: The DynamoDB book