Web Reverse Engineering Challenge #
GitHub repository for the challenge I created.
Introduction #
This fall break, I returned to my old high school to teach my high school’s AP Computer Science (APCS) Class. The teacher is an old mentor of mine from high school. He gave me free reign over what I could teach about, so I wanted to go above and beyond.
I have done a lot of web scraping in the past with requests/bs4 and Selenium, but only in the past year did I get into fully simulating the interactions between the web client and server for applications that require authentication. Even for a high schooler, Selenium is trivial to learn, but really understanding what’s going on when a client authenticates with a server requires a little finesse. My goal for this class was to teach the basic intuition for replicating api requests with automated tools such as cURL or requests.
...