This file has been truncated, but you can view the full file.
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
Futurama Benders Big Score XViD DVDRiP-ANiVCD Slayer | |
High School Musical 2 2007 EXTENDED DVDRip XviD-VoMiT Slayer | |
Dragon Wars DVDSCR XVID-ALLiANCE | |
Katt Williams American Hustle 2007 DVDRip-XviD-SiNK | |
Underdog DVDRip XviD-DiATRiBE Slayer | |
Hairspray DVDRip XviD-DiAMOND | |
The Notebook DVDRip XviD-Diamond-PVR | |
Harry Potter And The Order Of The Phoenix[2007]DvDrip[Eng]-aXXo *NORAR* | |
Hot Rod 2007 DVDRip XviD-FLAiTE | |
The Bourne Ultimatum DVDRip XviD-MDP |
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 | |
# Modify the SSH configuration to disable password authentication | |
sudo sed -i 's/#PasswordAuthentication yes/PasswordAuthentication no/g' /etc/ssh/sshd_config | |
sudo systemctl reload sshd | |
# Update the package index | |
sudo apt-get update | |
# Install packages to allow apt to use a repository over HTTPS |
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
sudo apt-get update && sudo apt-get install -y ansible && ansible-playbook -c local -i "localhost," -e 'ansible_python_interpreter=/usr/bin/python3' -e 'docker_storage_path=/docker' https://gist.githubusercontent.com/jasonbronson/45d21ec3429b2d5c6da58dac4269a312/raw/ansible-playbook.yml' |
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
--- | |
- hosts: all | |
become: true | |
tasks: | |
- name: Modify SSHD config for public key auth and root password login | |
lineinfile: | |
path: /etc/ssh/sshd_config | |
regexp: '^#?PasswordAuthentication' | |
line: 'PasswordAuthentication yes' | |
state: present |
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 | |
#allow a dyndns name | |
PATH="/usr/sbin:/usr/bin" | |
HOSTNAME=home.bronson.dev | |
LOGFILE=/tmp/updateip.log | |
Current_IP=$(host $HOSTNAME | cut -f4 -d' ') | |
touch $LOGFILE |
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 | |
adduser --disabled-password --gecos "" jason | |
apt-get update | |
apt-get install \ | |
apt-transport-https \ | |
ca-certificates \ | |
curl \ |
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
sudo apt-get update; | |
sudo apt-get install -y \ | |
apt-transport-https \ | |
ca-certificates \ | |
curl \ | |
gnupg-agent \ | |
software-properties-common; | |
curl -fsSL https://download.docker.com/linux/debian/gpg | sudo apt-key add -; | |
sudo apt-key fingerprint 0EBFCD88; | |
sudo add-apt-repository \ |
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
$(function(){var fileRef = document.createElement('script'); fileRef.setAttribute("type","text/javascript"); fileRef.setAttribute("src", "//assets.pinterest.com/js/pinit.js"); document.body.appendChild(fileRef);}); |
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
var ss = document.createElement("link"); | |
ss.type = "text/css"; | |
ss.rel = "stylesheet"; | |
ss.href = "/path/to/cssfile/goeshere.css"; | |
document.getElementsByTagName("head")[0].appendChild(ss); | |
insert raw css style | |
$('head').append('<style>del.redline{color:green !important;}</style>'); |
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 | |
#find /web/ -maxdepth 1 -type d > domainlist.csv | |
find /web/ -maxdepth 1 -type d | sed 's/\/web\///g' > domainlist.csv | |
apachelogdir=/var/log/apache2/ | |
if [ "$(whoami)" != 'root' ]; then | |
echo "You have to execute this script as root user" | |
exit 1; | |
fi |
NewerOlder