wget
is installedtar
is installed
If you really don't want to install Nix under /nix
(or you can't) then you can install Nix
# arch linux install cheatsheet | |
timedatectl set-ntp true | |
parted -a optimal /dev/sdX | |
mklabel gpt | |
mkpart esp fat32 1 512 | |
mkpart swap linux-swap 512 8704 | |
mkpart rootfs ext4 8704 100% | |
set 1 boot on | |
quit |
#version 450 core | |
#define D_PLATFORM_PC | |
#define D_FRAGMENT | |
// ---- Flags ---- | |
#define _F01_ | |
#define _F02_ | |
#define _F07_ | |
#define _F10_ | |
#define _F27_ |
" _ _ " | |
" _ /|| . . ||\ _ " | |
" ( } \||D ' ' ' C||/ { % " | |
" | /\__,=_[_] ' . . ' [_]_=,__/\ |" | |
" |_\_ |----| |----| _/_|" | |
" | |/ | | | | \| |" | |
" | /_ | | | | _\ |" | |
It is all fun and games until someone gets hacked! |
keyblob_mac_key_source = 59C7FB6FBE9BBE87656B15C0537336A5 | |
keyblob_key_source_00 = DF206F594454EFDC7074483B0DED9FD3 | |
keyblob_key_source_01 = 0C25615D684CEB421C2379EA822512AC | |
keyblob_key_source_02 = 337685EE884AAE0AC28AFD7D63C0433B | |
keyblob_key_source_03 = 2D1F4880EDECED3E3CF248B5657DF7BE | |
keyblob_key_source_04 = BB5A01F988AFF5FC6CFF079E133C3980 | |
master_key_source = D8A2410AC6C59001C61D6A267C513F3C | |
master_key_00 = C2CAAFF089B9AED55694876055271C7D |
import time | |
from random import randint | |
from selenium.webdriver import Firefox | |
from selenium.webdriver.common.keys import Keys | |
from selenium.webdriver.common.action_chains import ActionChains | |
def slow_typing(element, text): | |
for character in text: | |
element.send_keys(character) |
#!/bin/bash | |
# Execute Windows programs with Proton from Steams installation folder, without | |
# starting Steam client. | |
# | |
# 1. Create a directory for Proton environment to run in. As an example make a | |
# folder "proton" in your home directory. This folder must exist in order | |
# to make Proton work. | |
# | |
# 2. Point the variable "env_dir" in this script to that folder or... |
#!/bin/sh | |
source /etc/gamescope-session.conf | |
export SDL_VIDEO_MINIMIZE_ON_FOCUS_LOSS=0 | |
# Source environment from ~/.config/environment.d | |
set -a | |
for i in ~/.config/environment.d/*.conf ; | |
do | |
[[ -f "${i}" ]] && source "${i}" |
cveID,vendorProject,product,vulnerabilityName,dateAdded,shortDescription,requiredAction,dueDate | |
CVE-2021-27104,Accellion,FTA,Accellion FTA OS Command Injection Vulnerability,2021-11-03,Accellion FTA 9_12_370 and earlier is affected by OS command execution via a crafted POST request to various admin endpoints.,Apply updates per vendor instructions.,2021-11-17 | |
CVE-2021-27102,Accellion,FTA,Accellion FTA OS Command Injection Vulnerability,2021-11-03,Accellion FTA 9_12_411 and earlier is affected by OS command execution via a local web service call.,Apply updates per vendor instructions.,2021-11-17 | |
CVE-2021-27101,Accellion,FTA,Accellion FTA SQL Injection Vulnerability,2021-11-03,Accellion FTA 9_12_370 and earlier is affected by SQL injection via a crafted Host header in a request to document_root.html.,Apply updates per vendor instructions.,2021-11-17 | |
CVE-2021-27103,Accellion,FTA,Accellion FTA SSRF Vulnerability,2021-11-03,Accellion FTA 9_12_411 and earlier is affected by SSRF via a crafted POST request to wmProgr |
#!/bin/sh | |
# New resolution calculate command example: | |
# $ cvt 640 400 60 | |
# | |
# outputs: | |
# Modeline "640x400_60.00" 20.00 640 664 720 800 400 403 409 417 -hsync +vsync | |
# | |
# Add new modes below such as: | |
xrandr --newmode "640x400_60.00" 20.00 640 664 720 800 400 403 409 417 -hsync +vsync |