Skip to content

Instantly share code, notes, and snippets.

View Vexcited's full-sized avatar
💻
Experimenting

Mikkel ALMONTE--RINGAUD Vexcited

💻
Experimenting
View GitHub Profile
@Vexcited
Vexcited / README.md
Last active March 1, 2024 21:26
Read PRONOTE encrypted/compressed requests right into the browser

When trying to understand PRONOTE requests, we most of the time open the DevTools and try to read directly the response in the "Network" tab.

Even though, some instances have encrypted and/or compressed data in the payload/response.

image

So here's a solution to read these data, right into your browser.

Drop this function into your browser console when you're on the Pronote page :

@hackermondev
hackermondev / api endpoints.md
Last active July 15, 2024 06:14
discord api endpoints

List of every single Discord API endpoint used on the client

Last updated: August 16, 2023

https://discord.com/api/v9

Endpoint Name path
@SanderTheDragon
SanderTheDragon / postman-deb.sh
Last active July 7, 2024 12:44
A shellscript to create a Postman .deb file, for simple installation on Debian-based Linux distro's. Also creates a .desktop file.
#!/bin/sh
# SPDX-FileCopyrightText: 2017-2024 SanderTheDragon <sanderthedragon@zoho.com>
#
# SPDX-License-Identifier: MIT
arch=$(dpkg --print-architecture)
echo "Detected architecture: $arch"
case "$arch" in
@ankurk91
ankurk91 / github_gpg_key.md
Last active June 7, 2024 14:31
Signing git commits using GPG (Ubuntu/Mac)

Github : Signing commits using GPG (Ubuntu/Mac) 🔐

  • Do you have an Github account ? If not create one.
  • Install required tools
  • Latest Git Client
  • gpg tools
# Ubuntu
sudo apt-get install gpa seahorse
# MacOS with https://brew.sh/