Skip to content

Instantly share code, notes, and snippets.

View zxsleebu's full-sized avatar
😄
:)

sleebu zxsleebu

😄
:)
  • Germany, Halle (Saale)
  • 02:31 (UTC +02:00)
View GitHub Profile
@jakeajames
jakeajames / poc.c
Last active May 1, 2023 19:58
CVE-2021-30955 PoC
#include <stdlib.h>
#include <stdio.h>
#include <pthread/pthread.h>
#include <mach/mach.h>
struct ool_msg {
mach_msg_header_t hdr;
mach_msg_body_t body;
mach_msg_ool_ports_descriptor_t ool_ports[];
};
@RedTeams
RedTeams / hook.c
Created July 21, 2019 18:57
x86/x64 Simple JMP (Relative Offset) function hooking.
#include <windows.h>
#include <stdint.h>
#include <string.h>
#include <stdio.h>
#include <stdbool.h>
#if _WIN32 || _WIN64
#if _WIN64
typedef uint64_t uint_t;
#else
@M-rcus
M-rcus / Grabify_Domains.txt
Last active July 11, 2023 01:43
List of Grabify.link domains - Last updated 2022-03-05
bmwforum.co
catsnthing.com
catsnthings.fun
crabrave.pw
curiouscat.club
datasig.io
datauth.io
dateing.club
discörd.com
disçordapp.com
@JBou
JBou / SoundCloud API Endpoints.cs
Last active January 14, 2024 07:33
SoundCloud API Endpoints
//Authorization
{ ApiCommand.AuthorizationCodeFlow, new Uri("https://soundcloud.com/connect?scope=non-expiring&client_id={0}&response_type={1}&redirect_uri={2}") },
{ ApiCommand.UserAgentFlow, new Uri("https://soundcloud.com/connect?client_id={0}&response_type=token&redirect_uri={1}") },
{ ApiCommand.UserCredentialsFlow, new Uri("https://api.soundcloud.com/oauth2/token?client_id={0}&client_secret={1}&grant_type=password&username={2}&password={3}") },
{ ApiCommand.RefreshToken, new Uri("https://api.soundcloud.com/oauth2/token?client_id={0}&client_secret={1}&grant_type=refresh_token&refresh_token={2}") },
//Me
{ ApiCommand.Me, new Uri("https://api.soundcloud.com/me.json") },
{ ApiCommand.MeTracks, new Uri("https://api.soundcloud.com/me/tracks.json") },
{ ApiCommand.MeComments, new Uri("https://api.soundcloud.com/me/comments.json") },
@b1naryth1ef
b1naryth1ef / gist:8202642
Last active February 18, 2022 10:18
Steam Reverse Engineering Login
>>> r = requests.post("https://steamcommunity.com/login/getrsakey/", params={"username": "b1naryth1ef"})
>>> r.content
{
u'publickey_exp': u'010001',
u'publickey_mod': u'C1097F74ADE7AAB4E0B5AF7F2CBD39E0E52730763EC777CF50D6CE7BF0C15E41CF2E9F408AA82B19ABD232A4C220FBEA67B6BECB9F008171653E9E2C8939593284E039337B55623B25D1A019483B9E050D056EFD706A03C1934D8E7885CC0DACCB844F78E5862E7C760B0ED35EF042EE325229100ED18BD6ADB71E0169751234BF6A4057FD7C506447606FB4ADE662D006FF4B45F3993344D73BDCD8A824524C3B290024426AE4EBB0541D1C73905CB3B9FAF56F1BF0F93F5F4BFA5FF4E527EE0AD2A536EFBC696F0DEC4EE30E00AA6244B87DB8724D77D62E05C14B712D7C262A09BE71717B0838B00C39C4ACC7A5704DC07166799856C6AEA9E7D5EE4311F7',
u'success': True,
u'timestamp': u'446618050000
}