These are NOT product / license keys that are valid for Windows activation.
These keys only select the edition of Windows to install during setup, but they do not activate or license the installation.
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
### Keybase proof | |
I hereby claim: | |
* I am grizmin on github. | |
* I am grizmin (https://keybase.io/grizmin) on keybase. | |
* I have a public key ASAD217qaXT16WYr6lO0GZNW-iRPLoROi3-hf0xbHH1X6go | |
To claim this, I am signing this object: |
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
{ | |
"AWS": { | |
"services": { | |
"ACMPCA": [ | |
"Certificate", | |
"CertificateAuthority", | |
"CertificateAuthorityActivation", | |
"Permission" | |
], | |
"Amplify": [ |
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
import binascii | |
import sys | |
from struct import * | |
data = '' | |
if len(sys.argv) != 2: | |
print(f"No data. Please use {sys.argv[0]} data") | |
sys.exit(1) | |
data = sys.argv[1] |
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
@echo on | |
REM checked for Windows 10 | |
REM fork from https://gist.github.com/theultramage/cbdfdbb733d4a5b7d2669a6255b4b94b | |
REM you may want full list https://gist.github.com/raspi/203aef3694e34fefebf772c78c37ec2c | |
REM SET attrib=+ATTRIB_HIDE | |
SET attrib=-ATTRIB_HIDE | |
REM Hard disk burst ignore time | |
powercfg -attributes 0012ee47-9041-4b5d-9b77-535fba8b1442 80e3c60e-bb94-4ad8-bbe0-0d3195efc663 %attrib% |
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
if (isset($_SERVER['HTTP_X_FORWARDED_FOR'])) { | |
$ips = explode(',', $_SERVER['HTTP_X_FORWARDED_FOR']); | |
$_SERVER['REMOTE_ADDR'] = $ips[0]; | |
} | |
// If we're behind a proxy server and using HTTPS, we need to alert Wordpress of that fact | |
// see also http://codex.wordpress.org/Administration_Over_SSL#Using_a_Reverse_Proxy | |
if (isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && $_SERVER['HTTP_X_FORWARDED_PROTO'] === 'https') { | |
$_SERVER['HTTPS'] = 'on'; |
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
lvcreate -n cache0meta -L 128M data /dev/sde3 | |
lvcreate -n cache0 -L 51G data /dev/sde3 | |
lvcreate -n cache0 -L 50G data /dev/sde3 | |
lvconvert --type cache-pool --poolmetadata data/cache0meta data/cache0 | |
lvconvert --type cache --cachepool data/cache0 data/data | |
lvchange --cachemode writeback data/data | |
lvs -o+cache_policy,cache_settings,cache_mode | |
wget http://www.ahammer.ch/manuals/linux/lvm/lvmcache-statistics.sh |
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
0x00.name | |
1-8.biz | |
14n.co.uk | |
1ss.noip.me | |
2120001.net | |
3l6.com | |
4-n.us | |
4w.io | |
5gramos.com | |
80665.com |
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/python | |
# | |
# by Grizmin, used spiritnull(at)sigaint.org exploit | |
# python3 and python2 compatible | |
import sys | |
import os | |
import time | |
import tailer |
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
" VIRTUALENV setup | |
:python3 << EOF | |
import os | |
virtualenv = os.environ.get('VIRTUAL_ENV') | |
if virtualenv: | |
activate_this = os.path.join(virtualenv, 'bin', 'activate_this.py') | |
if os.path.exists(activate_this): | |
exec(compile(open(activate_this).read(), activate_this, 'exec'), {'__file__': activate_this}) | |
EOF |
NewerOlder