Skip to content

Instantly share code, notes, and snippets.

@monik3r
monik3r / 7950x3d.md
Last active February 7, 2024 04:07
AFL++ 7950x3d

There was a question in the Awesome Fuzzing discord today about the 7950x3d and whether the extra cache is good for fuzzing. Here is a quick test that is far from the most optimized or scientific.

Started by cloning and compiling the latest AFL++ in the aflplusplus/aflplusplus container.

Here is the detected numa layout btw:

[AFL++ 4b1f28ef6c43] ~/AFLplusplus/benchmark # numactl -H
available: 1 nodes (0)
@monik3r
monik3r / tubenails.py
Last active August 17, 2022 02:18
Tubearchivist thumbnail extractor
#!/bin/python
import asyncio, glob, os, subprocess, time
async def getNFO():
while True:
videos = set([os.path.splitext(val)[0] for val in glob.glob('tube/*/*.mp4')])
thumbnails = set([os.path.splitext(val)[0] for val in glob.glob('tube/*/*.png')])
for video in videos.difference(thumbnails):
subprocess.run('ls')