Skip to content

Instantly share code, notes, and snippets.

View guedou's full-sized avatar
🍺
secdev/scapy maintainer, network & embedded security enthusiast.

Guillaume Valadon guedou

🍺
secdev/scapy maintainer, network & embedded security enthusiast.
View GitHub Profile
@guedou
guedou / GhidraDecompiler.java
Last active March 3, 2022 10:39
Call the Ghidra decompiler from the command line
// Copyright (C) 2019 Guillaume Valadon <guillaume@valadon.net>
// This program is published under a GPLv2 license
/*
* Decompile a function with Ghidra
*
* analyzeHeadless . Test.gpr -import $BINARY_NAME -postScript GhidraDecompiler.java $FUNCTION_ADDRESS -deleteProject -noanalysis
*
*/
@guedou
guedou / scapy @ RIPE70.ipynb
Created May 13, 2015 15:11
Scapy @ RIPE 70
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@guedou
guedou / scapy_performances.py
Created March 30, 2015 18:57
Scapy performances examples
# Guillaume Valadon <guillaume@valadon.net>
# Scapy performance examples
import argparse, time, os
from scapy.all import *
conf.verbose = 0 # ask Scapy to be quiet
functions_table = {}