Skip to content

Instantly share code, notes, and snippets.

View codelibra's full-sized avatar
☁️
Working at AWS

Shivendra Panicker codelibra

☁️
Working at AWS
View GitHub Profile
@int128
int128 / README.md
Last active April 12, 2025 13:02
Example of Envoy TCP Proxy
@tejaslodaya
tejaslodaya / apply_df_by_multiprocessing.py
Created February 3, 2017 09:12
pandas DataFrame apply multiprocessing
import multiprocessing
import pandas as pd
import numpy as np
def _apply_df(args):
df, func, num, kwargs = args
return num, df.apply(func, **kwargs)
def apply_by_multiprocessing(df,func,**kwargs):
workers=kwargs.pop('workers')
@tuxfight3r
tuxfight3r / tcp_flags.txt
Last active July 24, 2025 03:15
tcpdump - reading tcp flags
##TCP FLAGS##
Unskilled Attackers Pester Real Security Folks
==============================================
TCPDUMP FLAGS
Unskilled = URG = (Not Displayed in Flag Field, Displayed elsewhere)
Attackers = ACK = (Not Displayed in Flag Field, Displayed elsewhere)
Pester = PSH = [P] (Push Data)
Real = RST = [R] (Reset Connection)
Security = SYN = [S] (Start Connection)