python package pyA20 found here:
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
/* ==UserStyle== | |
@name Dark Jira | |
@namespace gist.github.com/gtgt | |
@version 1.0.0 | |
@description Jira for people who like dark user interfaces... | |
@author GT | |
==/UserStyle== */ | |
@-moz-document domain("atlassian.net") { | |
html { | |
background: #222; |
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
/* | |
* (un)comment correct payload first (x86 or x64)! | |
* | |
* $ gcc cowroot.c -o cowroot -pthread | |
* $ ./cowroot | |
* DirtyCow root privilege escalation | |
* Backing up /usr/bin/passwd.. to /tmp/bak | |
* Size of binary: 57048 | |
* Racing, this may take a while.. | |
* /usr/bin/passwd overwritten |
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/perl -w | |
## Easy GIT (eg), a frontend for git designed for former cvs and svn users | |
## Version 1.7.5.2 | |
## Copyright 2008-2013 by Elijah Newren and others | |
## Licensed under GNU GPL, version 2. | |
## To use eg, simply stick this file in your path. Then fire off an | |
## 'eg help' to get oriented. You may also be interested in | |
## http://www.gnome.org/~newren/eg/git-for-svn-users.html |
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
<?php | |
if (!class_exists('Memcache') && class_exists('Memcached')) { | |
define('MEMCACHE_COMRESSED', 2); | |
/** | |
* Memcache class emulation by extending Memcached | |
* | |
* @author gt <gt-kani.hu> | |
* @class Memcache | |
*/ |
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
#!/bin/bash | |
U=${SUDO_USER:=${USER}} | |
if [[ -x `which realpath` ]]; then | |
T=$(realpath ${BASH_SOURCE[0]:=${0}}) | |
else | |
T=${BASH_SOURCE[0]:=${0}} | |
fi | |
D=$(dirname ${T}) | |
#apt-get install libfcgi-dev libfcgi0ldbl libjpeg62-turbo-dbg libmcrypt-dev libssl-dev libc-client2007e libc-client2007e-dev libxml2-dev libbz2-dev libcurl4-openssl-dev libjpeg-dev libpng12-dev libfreetype6-dev libkrb5-dev libpq-dev libxml2-dev libtidy-dev libmemcached-dev imagemagick-dev msgpack-dev |
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
javascript:window.location.replace(window.location.protocol+'//'+window.location.hostname+(window.location.pathname.indexOf('/index_dbg.php') >= 0 ? '' : '/index_dbg.php')+window.location.pathname.replace('/index_dbg.php','')+window.location.search+window.location.hash) |
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
// ==UserScript== | |
// @name miui.hu anti-ad | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description I hate to force ads | |
// @author You | |
// @match http://miui.hu/* | |
// @grant none | |
// ==/UserScript== | |
onload_functions.shift(); |
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
/* Case 1 */ | |
<?php | |
header('Content-Type: text/css'); | |
$exit_normally = 0; | |
register_shutdown_function(function() { | |
register_shutdown_function(function() { | |
global $exit_normally; | |
if (!$exit_normally) { | |
echo "/*\n".ob_get_clean()."\n*/\n"; | |
} |
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
#!/bin/sh | |
# | |
# git-subtree.sh: split/join git repositories in subdirectories of this one | |
# | |
# Copyright (C) 2009 Avery Pennarun <[email protected]> | |
# Copied from https://bitbucket.org/durdn/git/src/643f425beb30560b323a79a293282148c09da300/contrib/subtree/git-subtree.sh?at=np%2Fgit-subtree-list-4&fileviewer=file-view-default | |
# | |
if [ $# -eq 0 ]; then | |
set -- -h | |
fi |
NewerOlder