Skip to content

Instantly share code, notes, and snippets.

View OmarDarwish's full-sized avatar

OmarDarwish

View GitHub Profile
@yifanlu
yifanlu / Ghidra-OSX-Launcher-Script.scpt
Last active April 16, 2025 20:01
Ghidra.app launcher for OSX
@pgte
pgte / http-client-request-observe.js
Last active January 17, 2021 09:27
node request and response life cycle
var https = require('https');
var querystring = require('querystring');
var events = ['socket', 'connection', 'response', 'data', 'end', 'close', 'finish'];
var postData = querystring.stringify({
'msg' : 'Hello World!'
});
var options = {