Skip to content

Instantly share code, notes, and snippets.

View dyoungwd's full-sized avatar

Darren Young dyoungwd

View GitHub Profile
@dyoungwd
dyoungwd / autoinstall.sh
Created October 31, 2015 10:18
Auto Software Install script for new Fedora Install
#! /bin/bash
# script to auto install everything
# Use hashtag to edit out software you do not require
# author D4zzY dyoung0378@gmail.com
mkdir ~/Newinstall
mv newfedorainstall.sh ~/Newinstall
cd ~/Newinstall
echo " "
@dyoungwd
dyoungwd / fedora-lampserver.sh
Last active October 31, 2015 10:03
Set up LAMP server Fedora
#! /bin/bash
# script to lamp server
# author dyoung0378@gmail.com
#LOG IN AS ROOT BEFORE EXECUTING SCRIPT su -l
#LAMP is an acronym derived from the first letters of the combination of operating system #and open-source software stack. Linux, Apache HTTP server, MySQL/MairiaDB, and PHP/Perl/#Python
#Apache
dnf -y install httpd
#Enable the httpd service to start automatically on every reboot
@dyoungwd
dyoungwd / pentestTools.sh
Last active November 8, 2017 18:58 — forked from opnchaudhary/pentestTools.sh
This script will download the security tools needed for pentesting in fedora
#!/bin/sh
#Install Complete Security-Lab tools
#sudo dnf -y groupinstall security-lab
#If you want certain groups - copy paste the required group into terminal
# Install Code Analysis Tools
sudo dnf -y install splint pscan flawfinder rats
@dyoungwd
dyoungwd / 0_reuse_code.js
Last active February 10, 2017 00:01
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console