Nothing here yet.
Nothing here yet.
May 20, 2022 · 1 min read · Learned a little something cool today while doing a picoCTF challenge and listening to John Hammond. You can use a cURL command to pull the flag or a nice python script with some regex: #!/usr/bin/env python3 import requests import re response = re...
Join discussionMay 14, 2022 · 1 min read · Read a data.dat file and count the number of lines where the number of 0's per line is a multiple of 3, OR the number of 1's per line is a multiple of 2: #!/usr/bin/env python3 count = 0 source = 'data.dat' with open(source) as file: content = ...
Join discussion