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 | |
| ################################################### | |
| # Install all manner of forensics tools | |
| # on Ubuntu | |
| ################################################### | |
| ################################################### | |
| # Disk Image tools | |
| ################################################### |
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 | |
| ################################################### | |
| # Install all manner of development dependencies | |
| # on Ubuntu | |
| ################################################### | |
| grep "my custom aliases" ~/.profile || | |
| { | |
| echo "#my custom aliases" >> ~/.profile |
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
| #!/usr/bin/python | |
| import sys | |
| import time | |
| # | |
| # For every line in stdin | |
| # | |
| for line in sys.stdin: | |
| try : | |
| # Find the first field (the time) |
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 | |
| ################################################### | |
| # Install Nessus on Backtrack | |
| ################################################### | |
| apt-get install nessus | |
| /opt/nessus/sbin/nessus-adduser | |
| /usr/local/bin/nessus-fetch --register 09ed-108c-c2a7-1947-64c8 | |
| /etc/init.d/nessusd start |
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 | |
| ################################################### | |
| # Install basics on raspberry pi | |
| # References | |
| # http://www.cyberciti.biz/faq/deiban-ubuntu-linux-networkmanager-pptp-cisco-vpn-tab-disabled/ | |
| ################################################### | |
| sudo -i | |
| apt-get update |
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 | |
| ################################################### | |
| # Install OpenVPN | |
| ################################################### | |
| sudo apt-get install -y openvpn bridge-utils network-manager-openvpn | |
| # This allows you to import settings into network-manager | |
| # http://askubuntu.com/questions/187511/how-can-i-use-a-ovpn-file-with-network-manager | |
| sudo apt-get install network-manager-openvpn-gnome |
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
| # some aliases | |
| alias ..="cd .." | |
| alias ll='ls -alF' | |
| alias la='ls -A' | |
| alias l='ls -CF' | |
| alias cls=clear | |
| alias h='history' | |
| # git | |
| alias st='git status' | |
| alias co='git checkout' |
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
| # Set up aliases for windows command prompt | |
| echo creating cmd_aliases.txt | |
| mkdir c:\Windows\CustomProfile | |
| ( | |
| echo ls=dir | |
| echo ps=tasklist $* | |
| echo clear=cls | |
| echo st=git status |
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 | |
| ################# | |
| # install prerequisites | |
| sudo yum install -y gcc-c++ make | |
| sudo yum install -y openssl-devel | |
| sudo yum install -y git-core | |
| sudo yum install -y 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
| #!/bin/bash | |
| #################### | |
| # Prerequisites | |
| sudo add-apt-repository -y ppa:chris-lea/node.js | |
| # sudo add-apt-repository -y ppa:webupd8team/java # for ORACLE Java | |
| sudo apt-get update | |
| sudo apt-get install -y build-essential libncurses5-dev g++ make |
OlderNewer