Interactive birthday card in a trivia wheel style.
A Pen by averonesis on CodePen.
| #!/usr/bin/python3 | |
| import ipaddress | |
| import sys | |
| # SO one :) | |
| def base36encode(number): | |
| """ |
| semrush.net | |
| login:asdf | |
| password=s3cr33t |
Interactive birthday card in a trivia wheel style.
A Pen by averonesis on CodePen.
| { | |
| "swagger": "2.0", | |
| "info": { | |
| "title": "Swagger Sample App", | |
| "description": "Please to click Terms of service", | |
| "termsOfService": "javascript:alert(document.cookie)", | |
| "version": "1.0.1" | |
| }, | |
| "basePath": "/v1", | |
| "schemes": [ |
| Use TCPDUMP to Monitor HTTP Traffic | |
| 1. To monitor HTTP traffic including request and response headers and message body: | |
| tcpdump -A -s 0 'tcp port 80 and (((ip[2:2] - ((ip[0]&0xf)<<2)) - ((tcp[12]&0xf0)>>2)) != 0)' | |
| 2. To monitor HTTP traffic including request and response headers and message body from a particular source: | |
| tcpdump -A -s 0 'src example.com and tcp port 80 and (((ip[2:2] - ((ip[0]&0xf)<<2)) - ((tcp[12]&0xf0)>>2)) != 0)' | |
| 3. To monitor HTTP traffic including request and response headers and message body from local host to local host: |