For best learning effect always try to solve on your own first!
If you hit a dead end,
read writeup until you get new inspiration on how to proceed and stop reading further.
Repeat until sucessful solve.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import logging | |
import mitmproxy.types | |
from mitmproxy import ctx | |
from mitmproxy import command | |
from mitmproxy import flow | |
from mitmproxy import http | |
from mitmproxy.log import ALERT | |
class Intruder: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function exportData(start, end){ | |
const checkTimer = setInterval(async () => { | |
const resp = await fetch(`${document.URL}/export.json?start_time=${start}&end_time=${end}&lang=en&export_type=by_tweet`, { | |
method: "post" | |
}) | |
const json = await resp.json() | |
if(json.status === 'Available'){ |