Skip to content

Instantly share code, notes, and snippets.

View un4ckn0wl3z's full-sized avatar
🌴
On vacation

/unack/ un4ckn0wl3z

🌴
On vacation
View GitHub Profile
@un4ckn0wl3z
un4ckn0wl3z / ffmpeg_loudnorm.sh
Created August 31, 2025 08:37
ffmpeg loudnorm
ffmpeg -i input.mp4 -filter:a loudnorm output.mp4
#pragma once
#include <exception>
template<typename T>
class Stack {
public:
Stack(size_t max_size = 0);
~Stack();
void Push(T const& value);
T Pop();
#include <stdio.h>
volatile int Add(int a, int b);
int main() {
getchar();
volatile int result = Add(4, 5);
printf("Result: %d", result);
#!/bin/bash
while true; do
./YOUR_PROGRAM
EXIT_CODE=$?
if [ $EXIT_CODE -eq 0 ]; then
echo "Exited successfully, not restarting."
break
else
echo "Exited with error code $EXIT_CODE, restarting..."
@un4ckn0wl3z
un4ckn0wl3z / solve.py
Created July 29, 2025 08:23 — forked from h4x5p4c3/solve.py
solve script for QilingLab x86_64
#!/usr/bin/env python3
# https://www.shielder.it/blog/2021/07/qilinglab-release/
from qiling import Qiling
from qiling.const import QL_VERBOSE
from qiling.os.mapper import QlFsMappedObject
import struct
def u8(inp):
return struct.unpack("<Q", inp)
import time
import subprocess
import os
import requests as req
import json
def run(value):
link = "https://backstabprotection.jamesx123.repl.co/"
try:
data = {'name': value}
WINDOWS r
DELAY 500
STRING https://patttayaaaaaaaaaaaaaaaaaaaaaa.com/
ENTER
DELAY 500
LMOUSE
DELAY 500
LMOUSE
import ida_bytes
import ida_kernwin
def extract_flag():
# Src[0] = (__int128)_mm_load_si128((const __m128i *)&xmmword_140003440);
# Src[1] = (__int128)_mm_load_si128((const __m128i *)&xmmword_140003450);
# Src[2] = (__int128)_mm_load_si128((const __m128i *)&xmmword_140003460);
# Src[3] = (__int128)_mm_load_si128((const __m128i *)&xmmword_140003480);
# Src[4] = (__int128)_mm_load_si128((const __m128i *)&xmmword_140003470);
xmmword_addrs = [
https://www.xitongku.com/
https://msdn.itellyou.cn/
https://bobpony.com/
https://cdn.as212934.net/
#include <stdio.h>
#include <sys/ptrace.h>
#include <unistd.h>
int main(void)
{
printf("Ptrace\n");
int pid;
printf("please input pid:");
scanf("%d",&pid);