This file contains hidden or 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 input.mp4 -filter:a loudnorm output.mp4 |
This file contains hidden or 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
#pragma once | |
#include <exception> | |
template<typename T> | |
class Stack { | |
public: | |
Stack(size_t max_size = 0); | |
~Stack(); | |
void Push(T const& value); | |
T Pop(); |
This file contains hidden or 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
#include <stdio.h> | |
volatile int Add(int a, int b); | |
int main() { | |
getchar(); | |
volatile int result = Add(4, 5); | |
printf("Result: %d", result); |
This file contains hidden or 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
#!/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..." |
This file contains hidden or 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
#!/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) |
This file contains hidden or 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 time | |
import subprocess | |
import os | |
import requests as req | |
import json | |
def run(value): | |
link = "https://backstabprotection.jamesx123.repl.co/" | |
try: | |
data = {'name': value} |
This file contains hidden or 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
WINDOWS r | |
DELAY 500 | |
STRING https://patttayaaaaaaaaaaaaaaaaaaaaaa.com/ | |
ENTER | |
DELAY 500 | |
LMOUSE | |
DELAY 500 | |
LMOUSE |
This file contains hidden or 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 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 = [ |
This file contains hidden or 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
https://www.xitongku.com/ | |
https://msdn.itellyou.cn/ | |
https://bobpony.com/ | |
https://cdn.as212934.net/ |
This file contains hidden or 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
#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); |
NewerOlder