Command | IDA Pro | radare2 | r2 (visual mode) | GDB | WinDbg |
---|---|---|---|---|---|
Analysis | |||||
Analysis of everything | Automatically launched when opening a binary | aaa or -A (aaaa or -AA for even experimental analysis) | N_A | N_A | N/A |
Navigation |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Source: http://szymonsiarkiewicz.pl/poradniki/goto/kolizje/kolizje-w-grach-2d/ | |
Author: Szymon "shead" Siarkiewicz | |
*/ | |
/* commandline: | |
$ g++ --version | |
g++ (Ubuntu 5.4.0-6ubuntu1~16.04.4) 5.4.0 20160609 | |
Copyright (C) 2015 Free Software Foundation, Inc. | |
This is free software; see the source for copying conditions. There is NO |
These scripts help to convert Markdown notes into the hugo compatibile sites. I created these scripts for converting my notes (format below) into hugo-theme-learn pages.
- hugo installed
- empty hugo site with optional hugo-theme-learn theme
- markdown notes in format:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
:root{ | |
--MAIN-TEXT-color:#eceff4; /* Color of text by default */ | |
--MAIN-TITLES-TEXT-color:#eceff4; /* Color of titles h2-h3-h4-h5 */ | |
--MAIN-LINK-color:#88c0d0; /* Color of links */ | |
--MAIN-LINK-HOVER-color:#88c0d0; /* Color of hovered links */ | |
--MAIN-ANCHOR-color: #88c0d0; /* color of anchors on titles */ | |
--MENU-HEADER-BG-color:#2e3440; /* Background color of menu header */ | |
--MENU-HEADER-BORDER-color:#2e3440; /*Color of menu header border */ |
I hereby claim:
- I am trib0r3 on github.
- I am trib0r3 (https://keybase.io/trib0r3) on keybase.
- I have a public key ASA5TAqCEXU7gjm4Quuk-cqc4kOUUHL8NEFMPuN3ZJtPqwo
To claim this, I am signing this object:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import argparse | |
import logging | |
import os | |
import re | |
logging.basicConfig(level=logging.INFO) | |
def note_files(path): | |
for root, dirs, files in os.walk(path): | |
for file in files: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# ref: https://gist.github.com/rustymagnet3000/605c333519cd265c7eac9d556f46dc75#files | |
white="\e[0;97m" | |
bold="\e[1m" | |
reset="\e[0m" | |
function print_stage() { | |
echo; echo -e "${white}${bold}$1${reset}" | |
} |