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 time | |
import BaseHTTPServer | |
import urlparse | |
import base64 | |
HOST_NAME = 'localhost' | |
PORT_NUMBER = 80 | |
key_enc = "UDYs1D7bNmdE1o3g5ms1V6RrYCVvODJF1DpxKTxAJ9xuZW==" | |
#UDYs1D7bNmdE1o3g5ms1V6RrYCVvODJF1DpxKTxAJW |
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 | |
#set -x | |
readonly progname=$(basename $0) | |
readonly ARGS="$@" | |
#see https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-instance-metadata.html | |
mydate=$(date +"%Y%m%d-%H%M") | |
S3BUCKET="camelinc-cracking" |