—– BEGIN LICENSE —–
Andrew Weber
Single User License
EA7E-855605
813A03DD 5E4AD9E6 6C0EEB94 BC99798F
942194A6 02396E98 E62C9979 4BB979FE
91424C9D A45400BF F6747D88 2FB88078
90F5CC94 1CDC92DC 8457107A F151657B
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
database.yml | |
database.yml_original | |
database.yml~ | |
database.yml.pgsql | |
database.yml.sqlite3 | |
config/database.yml | |
config/database.yml_original | |
config/database.yml~ | |
config/database.yml.pgsql | |
config/database.yml.sqlite3 |
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
select {o: s,val:s.value.toString()} from java.lang.String s | |
where | |
/^[0-9A-Za-z!\\\/\"\?/+=;\&\(\)\[\]\.:-_@\'\#\*]{5,15}$/.test(s.value.toString()) | |
select {o: s,val:s.value.toString()} from java.lang.String s | |
where | |
/^[0-9A-Za-z!\\\/\"\?/+=;\&\(\)\[\]\.:-_@\'\#\*]{19,31}$/.test(s.value.toString()) | |
select {o: s,val:s.value.toString()} from java.lang.String s | |
where |
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
# gcloud auth activate-service-account --key-file=85.json | |
# gcloud projects list | |
project="my-projet" | |
space="" | |
echo "gcloud auth list" | |
gcloud auth list | |
echo -e "$space" |
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
## test is the program that returns response body | |
while true; do { echo -e 'HTTP/1.1 200 OK\r\n'; sh test; } | nc -l 8909; done | |
## test sample | |
#!/bin/bash | |
echo "************PRINT SOME TEXT***************\n" | |
echo "Hello World!!!" | |
echo "\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
/** | |
* Login into website. | |
*/ | |
exports.login = function(url,username,password) { | |
/** | |
* Start casper and option the login page. | |
*/ | |
casper.open(url); | |
/** |
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
FROM ubuntu | |
RUN dpkg-divert --local --rename --add /sbin/initctl | |
RUN ln -s /bin/true /sbin/initctl | |
RUN echo "deb http://archive.ubuntu.com/ubuntu precise main universe" > /etc/apt/sources.list | |
RUN apt-get update | |
RUN apt-get upgrade -y | |
RUN apt-get -y install mysql-client mysql-server |
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
`mkdir -p .vagrant_aptcache` | |
Vagrant::Config.run do |config| | |
config.vm.define :stalker do |conf| | |
conf.vm.box = "precise64" | |
conf.vm.box_url = "https://s3-us-west-2.amazonaws.com/squishy.vagrant-boxes/precise64_squishy_2013-02-09.box" | |
conf.vm.share_folder "v-apt", "/var/cache/apt/archives", ".vagrant_aptcache" | |
conf.vm.provision :shell, :path => "stalker.sh" | |
conf.vm.forward_port 80, 6050 | |
conf.vm.forward_port 3306, 6056 |
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
sudo sed -i "s/archive\.ubuntu/mirrors.digitalocean/g" /etc/apt/sources.list |
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
#!/usr/bin/env bash | |
# names of latest versions of each package | |
export NGINX_VERSION=1.11.5 | |
export VERSION_PCRE=pcre-8.39 | |
export VERSION_LIBRESSL=libressl-2.5.0 | |
export VERSION_NGINX=nginx-$NGINX_VERSION | |
export NPS_VERSION=1.11.33.0 | |
export VERSION_PAGESPEED=v${NPS_VERSION}-beta | |
NewerOlder