Skip to content

Instantly share code, notes, and snippets.

View kurobeats's full-sized avatar
😀
wiew

Anthony Cozamanis kurobeats

😀
wiew
View GitHub Profile
@kurobeats
kurobeats / spice-vdagent on boot
Created January 30, 2023 01:14
plasma-core.target
[Unit]
Description=KDE Plasma Workspace Core
Wants=plasma-plasmashell.service plasma-kcminit.service plasma-kded.service plasma-kcminit-phase1.service graphical-session-pre.target spice-vdagent.service
Requires=plasma-ksmserver.service
BindsTo=plasma-ksmserver.service
After=graphical-session-pre.target
Before=ssh-agent.service
RefuseManualStart=yes
?l?l?l?l?l?l?l?l
?u?u?u?u?u?u?u?u
?u?l?l?l?l?l?l?l
?u?l?l?l?l?l?l?s
?u?l?l?l?l?l?d?s
?u?l?l?l?l?d?d?s
?u?l?l?l?d?d?d?s
?u?l?l?d?d?d?d?s
?u?l?d?d?d?d?d?s
?u?d?d?d?d?d?d?s
(?i)((access_key|access_token|admin_pass|admin_user|algolia_admin_key|algolia_api_key|alias_pass|alicloud_access_key|amazon_secret_access_key|amazonaws|ansible_vault_password|aos_key|api_key|api_key_secret|api_key_sid|api_secret|api.googlemaps AIza|apidocs|apikey|apiSecret|app_debug|app_id|app_key|app_log_level|app_secret|appkey|appkeysecret|application_key|appsecret|appspot|auth_token|authorizationToken|authsecret|aws_access|aws_access_key_id|aws_bucket|aws_key|aws_secret|aws_secret_key|aws_token|AWSSecretKey|b2_app_key|bashrc password|bintray_apikey|bintray_gpg_password|bintray_key|bintraykey|bluemix_api_key|bluemix_pass|browserstack_access_key|bucket_password|bucketeer_aws_access_key_id|bucketeer_aws_secret_access_key|built_branch_deploy_key|bx_password|cache_driver|cache_s3_secret_key|cattle_access_key|cattle_secret_key|certificate_password|ci_deploy_password|client_secret|client_zpk_secret_key|clojars_password|cloud_api_key|cloud_watch_aws_access_key|cloudant_password|cloudflare_api_key|cloudflare_auth_k
@kurobeats
kurobeats / winpeas.bat
Last active January 24, 2022 04:36
winpeas-blah
@ECHO OFF & SETLOCAL EnableDelayedExpansion
TITLE WinPEAS
COLOR 0F
CALL :SetOnce
REM :: WinPEAS - Windows local Privilege Escalation Awesome Script
REM :: Code by carlospolop; Re-Write by ThisLimn0
REM Registry scan of other drives besides
REM /////true or false
@kurobeats
kurobeats / alphanumeric_upper.txt
Created March 16, 2021 05:59
Alphanumeric Upper
A
B
C
D
E
F
G
H
I
J
@kurobeats
kurobeats / alphanumeric_lower.txt
Created March 16, 2021 05:58
alphanumeric lower
a
b
c
d
e
f
g
h
i
j
@kurobeats
kurobeats / instruct.md
Last active January 31, 2021 10:35
Using Fedora 33 with Microsoft’s WSL2
@kurobeats
kurobeats / .zshrc
Last active April 12, 2023 14:28
A twist on the kali zshrc
# ~/.zshrc file for zsh non-login shells.
setopt autocd # change directory just by typing its name
setopt correct # auto correct mistakes
setopt interactivecomments # allow comments in interactive mode
setopt ksharrays # arrays start at 0
setopt magicequalsubst # enable filename expansion for arguments of the form ‘anything=expression’
setopt nonomatch # hide error message if there is no match for the pattern
setopt notify # report the status of background jobs immediately
setopt numericglobsort # sort filenames numerically when it makes sense
@kurobeats
kurobeats / mac_zshrc
Created August 3, 2020 11:45
mac_zshrc
# System-wide profile for interactive zsh(1) shells.
# Setup user specific overrides for this in ~/.zshrc. See zshbuiltins(1)
# and zshoptions(1) for more details.
# Correctly display UTF-8 with combining characters.
if [[ "$(locale LC_CTYPE)" == "UTF-8" ]]; then
setopt COMBINING_CHARS
fi
@kurobeats
kurobeats / joplin_install_and_update.sh
Last active July 21, 2020 01:00
joplin to be installed in a nice way
#!/bin/bash
set -e
#-----------------------------------------------------
# Variables
#-----------------------------------------------------
COLOR_RED=`tput setaf 1`
COLOR_GREEN=`tput setaf 2`
COLOR_RESET=`tput sgr0`
SILENT=false