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
# | |
# Gets the reverse diff (strings that have not changed) between 2 strings | |
# | |
# | |
# text1 = <<END | |
# This is the first test. | |
# Not really sure what else to put here... | |
# END | |
# | |
# text2 = <<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
=begin | |
Arachni | |
Copyright (c) 2010-2011 Tasos "Zapotek" Laskos <[email protected]> | |
This is free software; you can copy and distribute and modify | |
this program under the term of the GPL v2.0 License | |
(See LICENSE file for details) | |
=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 'openssl' | |
require "yaml" | |
require "base64" | |
# | |
# Simple hybrid crypto class using RSA for public key encryption and AES with CBC | |
# for bulk data encryption/decryption. | |
# | |
# RSA is used to encrypt the AES primitives which are used to encrypt the plaintext. | |
# |
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 'eventmachine' | |
module EventMachine::Protocols::ObjectProtocol | |
def serializer | |
Marshal | |
end | |
def receive_data data | |
(@buf ||= '') << data |
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 'eventmachine' | |
class Handler < EventMachine::Connection | |
def initialize( opts = {} ) | |
@role = opts[:role] | |
@ssl_opts = opts[:ssl] || {} | |
@ssl_opts[:verify_peer] = true | |
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 'socket' | |
require 'openssl' | |
require 'yaml' | |
require 'ap' | |
class Connection | |
def initialize( opts ) | |
@opts = opts |
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 'v8' | |
require 'open-uri' | |
require 'pp' | |
require 'ap' | |
require 'taka' | |
require 'ostruct' | |
# | |
# Monkey patch all elements to include a 'style' attribute | |
# |
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
# | |
# You need to grab the latest code from: | |
# https://github.com/Zapotek/arachni/tree/experimental | |
# | |
# for this to work. | |
# | |
# require_relative '../lib/arachni/ui/cli/output' | |
# require_relative '../lib/arachni' |
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
# Helps to see status messages when developing. | |
#require 'arachni/ui/cli/output' | |
# Only works with the latest code from the experimental branch. | |
require 'arachni' | |
# to avoid having to prefix every object's name with it | |
include Arachni | |
include Utilities |
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
# | |
# Test done on: Intel(R) Core(TM) i7-3930K CPU @ 3.20GHz | |
# | |
require 'yaml' | |
TIMES = 1000 | |
obj = [] | |
500.times { |i| obj << { 'key' * i => [ 'value' * i ] } } |
OlderNewer