Skip to content

Instantly share code, notes, and snippets.

View JuanBustosV's full-sized avatar
🛰️
I'm coding the weapon right now.

Juan Bustos JuanBustosV

🛰️
I'm coding the weapon right now.
View GitHub Profile
@dasdo
dasdo / GIT.md
Last active April 24, 2024 13:34
Lista de Comandos en GIT

Configuración Básica

Configurar Nombre que salen en los commits

	git config --global user.name "dasdo"

Configurar Email

	git config --global user.email dasdo1@gmail.com
@thomaspatzke
thomaspatzke / mysapsso-decoder.py
Last active June 7, 2023 14:54
Decoder/Encoder for MYSAPSSO2 Cookies/SAP SSO tokens
#!/usr/bin/python3
# mysapsso.py - Decoding MYSAPSSO2 cookies
import sys
import fileinput
import urllib.parse
import base64
import binascii
import re
import struct