Skip to content

Instantly share code, notes, and snippets.

@VeryDampTowel
VeryDampTowel / process_access_rights.txt
Created April 13, 2024 13:16 — forked from Rhomboid/process_access_rights.txt
Summary of Win32 Process Access Rights
https://msdn.microsoft.com/en-us/library/windows/desktop/aa446632.aspx // Generic Access Rights
https://msdn.microsoft.com/en-us/library/windows/desktop/aa379607.aspx // Standard Access Rights
https://msdn.microsoft.com/en-us/library/windows/desktop/aa374896.aspx // Access Mask Format
https://msdn.microsoft.com/en-us/library/windows/desktop/ms684880.aspx // Process Security and Access Rights
Mask Format:
bits 0 - 15 [16 bits]: object-specific rights
bits 16 - 23 [ 8 bits]: standard access rights
bit 24: [ 1 bit]: right to access SACL (ACCESS_SYSTEM_SECURITY)
# BEGIN_KITTY_THEME
# Tokyo Night
include Everforest.conf
# END_KITTY_THEME
# Fonts
font_family Hack Nerd Font
italic_font auto
bold_font auto
bold_italic_font auto
# Make sure we're up to date first...
sudo apt update && sudo apt upgrade -y
# Dependencies
sudo apt install build-essential zlib1g-dev libncurses5-dev libgdbm-dev libnss3-dev libssl-dev libreadline-dev libffi-dev libsqlite3-dev wget libbz2-dev
# Let's work in a new directory
mkdir installPython ; cd installPython
# Download Python3.10 Tar
@VeryDampTowel
VeryDampTowel / .bashrc
Created November 21, 2021 03:32
Default ParrotOS Bashrc
# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples
# If not running interactively, don't do anything
case $- in
*i*) ;;
*) return;;
esac
@VeryDampTowel
VeryDampTowel / tmux.conf
Last active April 12, 2024 18:58
Tmux Configurations
set -g default-terminal xterm-256color
set -g default-shell /bin/zsh
set -g default-command /bin/zsh
# remap prefix from 'C-b' to 'C-a'
# Remember 'C' == CTRL
# unbind C-b
# set-option -g prefix C-a
# bind-key C-a send-prefix