I hereby claim:
- I am changosmuertos on github.
- I am changosmuertos (https://keybase.io/changosmuertos) on keybase.
- I have a public key whose fingerprint is 1064 D0D1 441C B6D6 88B1 2737 BB0D 3F06 7865 BCFD
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
PS1="\[\033[0;33m\]\[\033)0\016\]\[\]lq\[\017\033(B\](\[\033[1;37m\]\!\[\033[0;33m\])(\[\033[1;37m\]\u\[\033[0;33m\]@\[\033[1;37m\]\h\[\033[0;33m\])-(\[\e[1;37m\]Jobs: \j\[\033[0;33m\])-(\[\033[1;37m\]\$(/bin/ls -1 | /usr/bin/wc -l | /bin/sed 's: ::g') files, \$(/bin/ls -lah | /bin/grep -m 1 total | /bin/sed 's/total //')b\[\033[0;33m\])\n\[\033)0\016\]\[\]mq\[\017\033(B\](\[\033[1;37m\]\T\[\033[0;33m\])-(\[\033[1;37m\]\w\[\033[0;33m\])\[\033[0;33m\]->\[\033[0m\]" |
PS1="\[\033[0;31m\]\[\033)0\016\]\[\]lq\[\017\033(B\](\[\033[1;37m\]\!\[\033[0;31m\])(\[\033[1;37m\]\u\[\033[0;31m\]@\[\033[1;37m\]\h\[\033[0;31m\])-(\[\e[1;37m\]Jobs: \j\[\033[0;31m\])-(\[\033[1;37m\]\$(/bin/ls -1 | /usr/bin/wc -l | /bin/sed 's: ::g') files, \$(/bin/ls -lah | /bin/grep -m 1 total | /bin/sed 's/total //')b\[\033[0;31m\])\n\[\033)0\016\]\[\]mq\[\017\033(B\](\[\033[1;37m\]\T\[\033[0;31m\])-(\[\033[1;37m\]\w\[\033[0;31m\])\[\033[0;31m\]->\[\033[0m\]" |
#!/usr/bin/env python3 | |
""" | |
Local privilege escalation via snapd, affecting Ubuntu and others. | |
Discovered by Chris Moberly. | |
Before running, you need to: | |
- Create an Ubuntu developer account (https://snapcraft.io/) | |
- Login to that account and ensure you have your public SSH key configured | |
in your profile. |
# ~/.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 |
# ~/.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 | |
[ -z "$PS1" ] && return | |
# don't put duplicate lines in the history. See bash(1) for more options | |
# ... or force ignoredups and ignorespace | |
HISTCONTROL=ignoredups:ignorespace |
#!/bin/bash | |
# Description: Preps a system (debian/ubuntu/raspbian), with needed tensorflow libs. | |
# Author : Matt Curry | |
# GH : MattCurryCom | |
# | |
#### | |
USER= |
#!/usr/bin/env bash | |
# install pwnagotchi on rpi4 | |
WIFI_DEV="wlan1" | |
AUTO_MODE=true | |
DEBUG=false | |
PWN_GRID=false | |
PWN_GRID_REPORT=false | |
HOME_NETWORK="YourHomeNetworkMaybe" |
# Define the threshold size in MB | |
$thresholdSizeMB = Read-Host "Enter the minimum file size in MB to list" | |
# Convert the threshold size to bytes | |
$thresholdSizeBytes = $thresholdSizeMB * 1MB | |
# Define the drive to scan | |
$drive = Read-Host "Enter the drive letter to scan (e.g., C:)" | |
# Get a list of all files larger than the threshold size |