A curated list of delightful tools for digital creatives in a variety of mediums.
A visual directory, source map, and explorer for OSINT sources and utilities. If you're not sure what you need or what to try, browse the categories until you find something that looks useful.
Github repo for the page: https://github.com/lockfale/OSINT-Framework
Ren'Py is a game engine written in Python which makes it easy to develop certain kinds of games, namely, manga-style visual novels, turn-based battle games, space opera games, and point-and-click games similar to the old-school Lucasarts games (Maniac Mansion, et al) by incorporating Python development into the game authoring process. Incorporates a scripting engine to lay out the game, lets you use any or all of the Python sound and graphics libraries to implement the audiovisual content. Includes its own visual development environment (IDE) for implementing your game.
A drag-and-drop .bashrc config file generator. Even does prompts and color changes. Here's mine:
# {hh:mm:ss @ day-of-week mon day}
# [user @ host:$(WINDOW) dir]$
export PS1="\[\033[38;5;220m\]{\[$(tput sgr0)\]\[\033[38;5;214m\]\t\[$(tput sgr0)\]\[\033[38;5;15m\] \[$(tput sgr0)\]\[\033[38;5;75m\]@\[$(tput sgr0)\]\[\033[38;5;15m\] \[$(tput sgr0)\]\[\033[38;5;220m\]\d}\[$(tput sgr0)\]\[\033[38;5;15m\]\n\[$(tput sgr0)\]\[\033[38;5;40m\][\u\[$(tput sgr0)\]\[\033[38;5;15m\] \[$(tput sgr0)\]\[\033[38;5;75m\]@\[$(tput sgr0)\]\[\033[38;5;15m\] \[$(tput sgr0)\]\[\033[38;5;40m\]\h:($WINDOW)\[$(tput sgr0)\]\[\033[38;5;15m\] \[$(tput sgr0)\]\[\033[38;5;40m\]\W]\[$(tput sgr0)\]\[\033[38;5;10m\]\\$\[$(tput sgr0)\]\[\033[38;5;15m\] \[$(tput sgr0)\]"
BinNavi is a tool for performing static and dynamic reverse engineering of executables for a number of platforms - x86, ARM, PowerPC, and MIPS. Can connect to remote debuggers on other systems to examine running code. Extensible with scripts, can annotate call flow graphs. The source is on Github: https://github.com/google/binnavi
A debugger and integrated environment for developing and debugging regular expressions. Does PCRE, JavaScript, and Python style regexes.
An online regular expression builder and explorer. Paste the text you're playing around with in the big window and start typing regular expressions in the expression window. It will visually and interactively highlight the bits of your sample text that your regexp matches in close to realtime (It's written in JavaScript so be patient with it). Great for debugging and whipping together custom digesters.