Skip to content

Instantly share code, notes, and snippets.

@AshishMahto
AshishMahto / apple_bundle_id.py
Last active March 28, 2024 22:29
Combine Google search and iTunes API to print the Bundle ID of an app on the Apple App Store.
"""
Combine Google search and iTunes API to print the bundle ID of an app on the Apple App Store.
Input the name of the app you want to search for (eg "yelp reviews"), and the script will return the bundle ID of the app.
If it's not returning the app you need, use a more specific app name. Or, add the country code to your query (eg "us yelp reviews").
Or, if you need more details returned, edit the itunesApiFields.
"""
@AshishMahto
AshishMahto / README.md
Last active February 8, 2021 05:14
diceCTF 2021 - Missing Flavourtext

This was my first CTF solve ever!

https://missing-flavortext.dicec.tf/

As a less-than-expert user of JavaScript and Sql, and complete newbie to Node.js, this challenge was quite the ride for myself and a couple teammates.

First off, the webpage is a simple login portal that redirects you back to itself if the password check fails. Not much to note here, except that the browser sends a form post request containing the username and password.