Skip to content

Instantly share code, notes, and snippets.

View vik-y's full-sized avatar

Vikas Yadav vik-y

View GitHub Profile

Tcpdump

Tcpdump is a commandline tool that is used to dump traffic on a network. This tool comes in hand when you want to analyse network captures within the command line. Basically it can do most of the wireshark job.

NOTE This guide might not be complete it just serve as a reference to me.

Additional Note & Reference

@Klortho
Klortho / ChainMapTree.py
Created May 7, 2016 05:19
Merge a list of Python dict's (or any mapping), recursively
#!/usr/bin/env python
import itertools
from itertools import chain
import operator
import sys
import pprint
from collections import abc
pp = pprint.PrettyPrinter(indent=4)