Consultant shall have the right to retain ownership of any inventions, original works of authorship, discoveries, concepts or ideas, which are unrelated to Consultant’s present work (or the actual or demonstrably anticipated research or development of the Company) under this Agreement; or that the Consultant developed entirely on his own time without using the Company’s equipment, supplies, facilities and does not contain any Company trade secrets, proprietary materials or any other protected intellectual property owned by the Company. Consultant represents that the exclusion of such Inventions from this Section 9 (Inventions) will not materially affect Consultant’s ability
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
# | |
# /etc/zshrc is sourced in interactive shells. It | |
# should contain commands to set up aliases, functions, | |
# options, key bindings, etc. | |
# | |
## shell functions | |
#setenv() { export $1=$2 } # csh compatibility | |
# Set prompts |
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
require 'ronin/scanners/nmap' | |
require 'ronin/database' | |
Ronin::Database.setup | |
Ronin::Scanners::Nmap.import(:targets => 'www.google.com') do |ip| | |
puts "[ #{ip} ]" | |
puts | |
ip.open_ports.each do |port| |
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
NAME=project | |
VERSION=0.0.1 | |
DIRS=etc lib bin sbin share | |
INSTALL_DIRS=`find $(DIRS) -type d 2>/dev/null` | |
INSTALL_FILES=`find $(DIRS) -type f 2>/dev/null` | |
DOC_FILES=*.md *.txt | |
PKG_DIR=pkg | |
PKG_NAME=$(NAME)-$(VERSION) |
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
require 'ronin/network/udp/proxy' | |
require 'hexdump' | |
Ronin::Network::UDP::Proxy.start(:port => 1337, :server => ['4.2.2.1', 53]) do |proxy| | |
hex = Hexdump::Dumper.new | |
proxy.on_client_data do |(client,(host,port)),server,data| | |
puts "#{host}:#{port} -> #{proxy}" | |
hex.dump(data) | |
end |
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
require 'ronin/network/tcp/proxy' | |
require 'hexdump' | |
Ronin::Network::TCP::Proxy.start(:port => 1337, :server => ['www.wired.com', 80]) do |proxy| | |
address = lambda { |socket| | |
addrinfo = socket.peeraddr | |
"#{addrinfo[3]}:#{addrinfo[1]}" | |
} | |
hex = Hexdump::Dumper.new |
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
ARGUMENT_FORMATS = { | |
string: /\S+/, | |
integer: /\d+/, | |
float: /\d*\.\d+/, | |
text: /.+/ | |
} | |
# | |
# All defined commands. | |
# |
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
require 'ronin/network/udp/proxy' | |
require 'hexdump' | |
Ronin::Network::UDP::Proxy.start([1337, 'localhost'], ['localhost', 1338]) do |proxy| | |
format_addr = lambda { |(socket,(host,port))| | |
"#{host}:#{port}" | |
} | |
proxy.on(:client_data) do |client,server,data| | |
puts "#{format_addr[client]} -> #{proxy}" |
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
require 'ronin/network/tcp/proxy' | |
require 'hexdump' | |
Ronin::Network::TCP::Proxy.start([1337, 'localhost'], ['localhost', 1338]) do |proxy| | |
format_addr = lambda { |(socket| | |
addr = socket.remote_address | |
"#{addr.ip_address}:#{addr.ip_port}" | |
} |
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
# | |
# Environment Variables: | |
# | |
# DM_EDGE - Bundle against the DataMapper git repositories at | |
# http://github.com/datamapper | |
# DM_BRANCH - The branch to use across all DataMapper git repositories. | |
# DM_ROOT - The path to the directory containing local copies of the DataMapper | |
# libraries. | |
# ADAPTER(S) - The list of DataMapper adapters to test with. | |
# (sqlite, postgres, mysql, oracle, sqlserver) |