This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ | |
; ProcDump Specifics Packers/Protectors Definitions. | |
; | |
; (C) G-RoM iN 1998, 1999, 2000 | |
; (C) FEUERRADER modified, 2003 | |
;ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ | |
; Implemented : | |
; | |
; ADD : ADD a value to temporary address | |
; BP : Set a Breakpoint at temporary address. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from github import Github # pip install github | |
# Github API Token | |
ACCESS_TOKEN= '' | |
# Github Users stars you want to hoard | |
githubUser = 'stankye' | |
# File name you want to save as | |
fileName = 'myStars.txt' | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"mappings" : { | |
"_meta" : { | |
"created_by" : "A Ghost" | |
}, | |
"properties" : { | |
"Hashes" : { | |
"properties" : { | |
"MD5" : { | |
"type" : "text", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Creds to seednode | |
# listen for requests to https://my.domain.here/ | |
server { | |
# include shared config | |
include /etc/nginx/conf.d/shared.conf; | |
# enable LetsEncrypt SSL certs | |
ssl_certificate /etc/letsencrypt/live/my.domain.here/fullchain.pem; | |
ssl_certificate_key /etc/letsencrypt/live/my.domain.here/privkey.pem; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Shows most used commands from $HISTFILE (with sudo) | |
cat $HISTFILE | awk '{print $1}' | sort | uniq -c | sort -nr | |
# Shows most used commands from $HISTFILE (without sudo) | |
cat $HISTFILE | sed 's/^sudo//' | awk '{print $1}' | sort | uniq -c | sort -nr |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Since this post took me a few searchs to many, hopfully the repost of what i found will end up on search results. | |
I used this to set up mullvad wireguard vpn connection from vyos. | |
This would work for setting up other vpn providers like torguard. | |
This really boring text is mainly for seo so some poor sap does not repeat my hour and a half of suffering. | |
The config stuff below is working on 1.4 rolling as of date posted. | |
there should be more documentation on the setup of the keys somewhere. | |
gen some default keys so you can copy the file perms and stuff' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
find . -type f -regex '.*\.\(mkv\|avi\|mp4\|ogb\|webm\|flv\|mpv\)' -exec bash -c 'ffprobe -v quiet -print_format json -show_format -show_streams "{}" | jq -c "." | psql --command "COPY tmp (data) FROM STDIN;" postgresql://postgres:hunter2@localhost:5432/postgres ' \; | |
WITH streams AS ( | |
SELECT jsonb_array_elements((data->'streams')) AS stream, | |
data -> 'format' AS format | |
FROM tmp | |
) | |
SELECT format ->> 'filename' AS FILE_NAME, | |
stream ->> 'codec_name' AS CODEC_NAME, | |
stream -> 'height' AS HEIGHT |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Modified https://github.com/sidious38/wsserver-bedrock | |
// MIT License | |
// Usage: | |
// CheckNetIsolation LoopbackExempt -a -n="Microsoft.MinecraftUWP_8wekyb3d8bbwe" | |
// npm install ws uuid chokidar | |
// node app.js "path/to/functions" | |
// /connect localhost:3000 | |
const chokidar = require("chokidar"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# Usage: | |
# python githoard.py -u <githubUser> -m <method> -t <githubToken> -o <output> | |
# | |
# Example: | |
# python githoard.py -u stankye -m stars -t <githubToken> -o ./stars.txt | |
# | |
import argparse | |
import os | |
from github import Github # pip install PyGithub |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
OlderNewer