Base endpoint: https://api.jodelapis.com/api/
PUT /v3/chat/accept
POST /v3/posts/{id}/banUser
ul, h1, h2, h3, h4, h5, h6, strong, table { | |
max-width: var(--file-line-width); | |
margin-right: auto; | |
margin-left: 140px; | |
width: 100%; | |
max-width: 80vw; | |
} | |
[data-callout="cue"] { | |
position: absolute; | |
left: 10px; |
const net = require('node:net'); | |
const tls = require('node:tls'); | |
const fs = require('node:fs'); | |
const { Duplex } = require('node:stream'); | |
const { Buffer } = require('node:buffer'); | |
const createChannel = function () { | |
let promiseResolve; | |
let promise = new Promise((resolve) => { | |
promiseResolve = resolve; |
window.SHA256 = function (ay, aA, az) { | |
ay = (function (aD, aG, aF, aE) { | |
aD = aD.replace(/\r\n/g, '\n'); | |
aE = ''; | |
for ( | |
aF = 0; | |
aF < aD.length; | |
aG = aD.charCodeAt(aF), | |
128 > aG |
import logging | |
logging.getLogger("scapy.runtime").setLevel(logging.ERROR) | |
from scapy.all import * | |
import hashlib | |
load_layer("tls") | |
def md5(s): |
Base endpoint: https://api.jodelapis.com/api/
PUT /v3/chat/accept
POST /v3/posts/{id}/banUser
package main | |
import ( | |
"crypto/aes" | |
"crypto/cipher" | |
"crypto/rand" | |
"encoding/hex" | |
"fmt" | |
"io" | |
random "math/rand" |
# PoC of getting the profile picture of any gmail address | |
# go into developer settings => storage => cookies | |
# paste cookies | |
# set EMAIl to email that you want to lookup | |
# enjoy | |
import requests | |
import time | |
import hashlib |
import discord | |
import asyncio | |
from threading import Thread | |
from discord_webhook import DiscordWebhook | |
from time import sleep | |
from flask import Flask, jsonify | |
from datetime import datetime | |
WEBHOOK = "<webhook>" | |
TOKEN = "<bot-token>" |
import sys | |
import json | |
file = "file.ipynb" | |
with open(file, "r") as f: | |
raw = f.read() | |
lines = [] | |
try: |