Skip to content

Instantly share code, notes, and snippets.

View fbkch's full-sized avatar

fbkch fbkch

  • Singapore
View GitHub Profile
@fbkch
fbkch / infinite-money-logic-flaw__updated.py
Last active March 12, 2023 05:46
Python solution for the BurpSuite Practice Lab. As the gift card codes appear in a randomized order, the script is able to fetch the last one.
# Script edited from https://gist.github.com/KrE80r/72a0ca623e0ff868672c795b244a6086
import requests
from requests.packages.urllib3.exceptions import InsecureRequestWarning
requests.packages.urllib3.disable_warnings(InsecureRequestWarning)
import re
import sys
import os