Skip to content

Instantly share code, notes, and snippets.

This file has been truncated, but you can view the full file.
https://github.com/HandBrake/HandBrake.git
https://github.com/hashcat/hashcat.git
https://github.com/redis/hiredis.git
https://github.com/SamyPesse/How-to-Make-a-Computer-Operating-System.git
https://github.com/hishamhm/htop.git
https://github.com/nodejs/http-parser.git
https://github.com/mruby/mruby.git
https://github.com/nanomsg/nanomsg.git
https://github.com/firehol/netdata.git
https://github.com/arut/nginx-rtmp-module.git

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

|=-----------------------------------------------------------------------=|
|=-------------=[ 3 Years of Attacking JavaScript Engines ]=-------------=|
|=-----------------------------------------------------------------------=|
|=------------------------------=[ saelo ]=------------------------------=|
|=-----------------------------------------------------------------------=|
The following are some brief notes about the changes that have taken place
since the release of the "Attacking JavaScript Engines" paper [1]. In
general, no big conceptional changes have happened since. Mitigations have
been added to break some of the presented techniques and, as expected, a
format PE64 GUI 5.0
entry WinMain
include 'includes\win64a.inc'
section '.text' code readable writeable executable
_title TCHAR 'Iczelion Tutorial #3:The Simplest Window in FASM',0 ;name of our window
wc WNDCLASSEX sizeof.WNDCLASSEX,0,WindowProc,0,0,400000h,0,10003h,COLOR_WINDOW,NULL,_title,NULL
proc WinMain
local msg:MSG
@nasingfaund
nasingfaund / chess.py
Created April 30, 2022 19:42 — forked from rsheldiii/chess.py
chess program for python
"""CONVENTIONS:
positions are done row-column from the bottom left and are both numbers. This corresponds to the alpha-number system in traditional chess while being computationally useful. they are specified as tuples
"""
import itertools
WHITE = "white"
BLACK = "black"
@nasingfaund
nasingfaund / draw_chessboard.py
Created April 30, 2022 19:54 — forked from victorfei/draw_chessboard.py
Draw a chessboard image using python PIL
#!/usr/bin/python
# adapted from:
# http://wordaligned.org/articles/drawing-chessboards
from PIL import Image, ImageDraw
from itertools import cycle
def draw_chessboard(n=8, pixel_width=500):
"""
Draw an n x n chessboard using PIL.
"""
@nasingfaund
nasingfaund / cookie_converter.py
Created May 2, 2022 21:17 — forked from eestrada/cookie_converter.py
simple script to convert google chrome sqlite cookie entries to old netscape cookies.txt format. Original code from here: https://productforums.google.com/d/msg/chrome/LWvfAFolOW4/hrC8ssNr27YJ
@nasingfaund
nasingfaund / data_structures.py
Created May 2, 2022 21:27 — forked from eestrada/data_structures.py
A collection of useful data structures including a very complete linked list class that implements the full feature set of _collections.MutableSequence.
# This is free and unencumbered software released into the public domain.
#
# Anyone is free to copy, modify, publish, use, compile, sell, or
# distribute this software, either in source code form or as a compiled
# binary, for any purpose, commercial or non-commercial, and by any
# means.
#
# In jurisdictions that recognize copyright laws, the author or authors
# of this software dedicate any and all copyright interest in the
# software to the public domain. We make this dedication for the benefit
@nasingfaund
nasingfaund / flask_server.py
Created May 2, 2022 21:30 — forked from eestrada/flask_server.py
Stackdriver webhook server example
import string
import sys
import logging
import json
from flask import Flask
from flask import Response, request
logger = logging.getLogger(__name__)
logger.info("Stackdriver webhook-sample starting up on %s" % (string.replace(sys.version, '\n', ' ')))
@nasingfaund
nasingfaund / gist:894b7e210cbf06770d146b1653743a4d
Created May 13, 2022 17:00 — forked from sshay77/gist:4b1f6616a7afabc1ce2a
google-search-url-parameters-query-string-
// ==UserScript==
// @name Google Search Better Privacy
// @description Delete unnecessary params and add useful params on Google Search.
// @version 0.0.4
// @include http://*.google.*/search*
// @include http://*.google.*/imgres*
// @include https://*.google.*/search*
// @include https://*.google.*/imgres*
// @exclude http://play.google.com/*
// @exclude http://mail.google.com/*