| apt-get -y update | |
| apt-get -y install curl git-core python-software-properties | |
| # nginx | |
| add-apt-repository ppa:nginx/stable | |
| apt-get -y update | |
| apt-get -y install nginx | |
| service nginx start |
| class Delivery < ActiveRecord::Base | |
| belongs_to :deliverable, :polymorphic => true | |
| belongs_to :receivable, :polymorphic => true | |
| has_many :delivery_impressions | |
| has_many :users, :through => :delivery_impressions | |
| belongs_to :sender, :class_name => 'User', :foreign_key => :sender_id | |
| end | |
| class DeliveryImpression < ActiveRecord::Base |
maintained by Mac-arena the Bored Zo, [email protected] copyright 2003 Mac-arena the Bored Zo available from http://boredzo.fourx.org/cheatsheets/linux.txt HTML/PHP version at http://www.warpedsystems.sk.ca/ MIRRORS WELCOME! please email me if you want to mirror. some commands submitted by Steve Leopardi [email protected], frost, and rajnchaos Linux Cheatsheet IS NOT PUBLISHED BY IDG BOOKS and anyone who says it is is
Create a Gem - Make it a Command Line Interface - Add Rspec Tests Using Bundler & Thor
#Creating your own Gem
- Run this command in your Terminal. This creates and names all the files you need for your gem. We are going to create a Lorem Ipsum Generator; you can call it whatever you want but seeing as we are creating a Lorem Ipsum generator we'll call it lorem. Read about gem naming conventions.
Tools I use on a daily basis:
-
dnsmap - DNS record enumeration using dictionary brute forcing. I have a host list. Find all kinds of infrastructure with this tool. Opensource.
-
Spiderfoot - Full intelligence gathering suite. Open source. Nice UI.
-
Arachni - Web application scanner. Has a nice web interface and can run distributely.
-
WPScan - WordPress specific attack tool


