Skip to content

Instantly share code, notes, and snippets.

View nflatrea's full-sized avatar
🍰
The cake is a lie !

Beemo nflatrea

🍰
The cake is a lie !
View GitHub Profile
@nflatrea
nflatrea / elf_format_cheatsheet.md
Created March 15, 2025 11:13
ELF File Format Cheatsheet

ELF Format Cheatsheet

Introduction

Executable and Linkable Format (ELF), is the default binary format on Linux-based systems.

ELF

Compilation

@nflatrea
nflatrea / scann
Created January 16, 2025 15:15
scann : Python Malware scanner based on Hash values
#!/usr/bin/python
import argparse
import hashlib
import os
import concurrent.futures
import json
from datetime import datetime
def compute_hash(file_path, hash_algorithm):