This document is still a scratch
You’ll want a directory to do this in so that you don’t screw up your machine.
<?php | |
ini_set('max_execution_time', 300); | |
/** | |
* Mr. Robot Season 2 easter egg website email alert cronjob | |
* (Note: requires your PHP to be able to send emails (of course)!) | |
* | |
* 1. Download this script. Browser download: https://gist.github.com/eyecatchup/f5f5929f57b22fc1b37ef516d675ac92/download/ | |
* Or, for the console users: | |
* # wget --no-check-certificate https://gist.github.com/eyecatchup/f5f5929f57b22fc1b37ef516d675ac92/raw/watchRobot.cron.php | |
* |
AdobeTracking.pageName = 'Mr. Robot : S2 Easter Egg Sites : Ransomware : Home';
On load, this page displays a countdown timer starting at 24:00:00. When time is over, the following "hidden" message is revealed:
This guide/log is based off my experience attempting to build and install LibreOffice Online and it's dependencies on my system.
The end goal is to get LibreOffice Online integrated with Karoshi Server.
LibreOffice Online is still in development (17/06/16).
# Extract archives - use: extract <file> | |
# Based on http://dotfiles.org/~pseup/.bashrc | |
function extract() { | |
if [ -f "$1" ] ; then | |
local filename=$(basename "$1") | |
local foldername="${filename%%.*}" | |
local fullpath=`perl -e 'use Cwd "abs_path";print abs_path(shift)' "$1"` | |
local didfolderexist=false | |
if [ -d "$foldername" ]; then | |
didfolderexist=true |
##Installation of gitrob a tool used to crawl a github org for sensitive info | |
## I have done this on kali linux | |
$ git clone https://github.com/michenriksen/gitrob | |
$ cd gitrob | |
$ apt-get update | |
$ apt-get install ruby-bcrypt ruby2.1-dev postgresql-server-dev-9.1 -y |
##For Kali 2.0 | |
deb http://security.kali.org/kali-security/ sana/updates main contrib non-free | |
deb-src http://security.kali.org/kali-security/ sana/updates main contrib non-free | |
deb http://http.kali.org/kali sana main non-free contrib | |
deb http://security.kali.org/kali-security sana/updates main contrib non-free | |
deb-src http://http.kali.org/kali sana main non-free contrib | |
deb-src http://security.kali.org/kali-security sana/updates main contrib non-free | |
## Debian - stable |
#!/bin/bash | |
# This script rotates the screen and touchscreen input 90 degrees each time it is called, | |
# also disables the touchpad, and enables the virtual keyboard accordingly | |
# by Ruben Barkow: https://gist.github.com/rubo77/daa262e0229f6e398766 | |
#### configuration | |
# find your Touchscreen and Touchpad device with `xinput` | |
TouchscreenDevice='ELAN Touchscreen' | |
TouchpadDevice='SynPS/2 Synaptics TouchPad' |
# Title: Install LMDE (Linux Mint Debian Edition) 17 with LVM on LUKS (encryption) & hibernation support | |
# | |
# Description: These are very rough notes for installing LMDE with | |
# encryption via LVM on top of LUKS. | |
# - This includes SWAP being within LUKS | |
# - Includes fixing hibernation (which will also apply to Debian Jessie or greater) | |
######## | |
# 1. Boot from LMDE DVD/USB/... |
#!/bin/sh | |
# http://d.hatena.ne.jp/jeneshicc/20110215/1297778049 | |
if [ -f $1 ] ; then | |
case $1 in | |
*.tar.bz2) tar xvjf $1 ;; | |
*.tar.gz) tar xvzf $1 ;; | |
*.tar.xz) tar xvJf $1 ;; | |
*.bz2) bunzip2 $1 ;; |