Mark all libraries as defaulting to 8-bit strings

This commit is contained in:
HD Moore
2012-06-29 00:18:28 -05:00
parent c45b1037f1
commit d656e3185f
920 changed files with 927 additions and 3 deletions
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
# A Convenience to load all field classes and yaml handling.
# XXX: Pretty certian this monkeypatch isn't required in Metasploit.
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
# Class for packed binary data, with defined bitfields and accessors for them.
# See {intro.txt}[link:../doc/files/intro_txt.html] for an overview.
#
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
class BitStruct
# Class for fixed length binary strings of characters.
# Declared with BitStruct.char.
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
class BitStruct
class << self
# Define a char string field in the current subclass of BitStruct,
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
class BitStruct
# Class for floats (single and double precision) in network order.
# Declared with BitStruct.float.
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
require 'bit-struct/char-field'
class BitStruct
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
require 'bit-struct/bit-struct'
class BitStruct
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
require 'bit-struct/char-field'
class BitStruct
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
class BitStruct
# Class for fixed length padding.
class PadField < Field
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
class BitStruct
# Class for signed integers in network order, 1-16 bits, or 8n bits.
# Declared with BitStruct.signed.
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
class BitStruct
# Class for null-terminated printable text strings.
# Declared with BitStruct.text.
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
class BitStruct
# Class for unsigned integers in network order, 1-16 bits, or 8n bits.
# Declared with BitStruct.unsigned.
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
require 'bit-struct/vector'
class BitStruct
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
# A Vector is, like a BitStruct, a String. It retains all of the String
# methods, except for #[], #[]=, and #each. These methods operate on entries
# instead of chars. Other methods, including #length and #slice, are unchanged.
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
require 'yaml'
class BitStruct
+1
View File
@@ -1,4 +1,5 @@
#!/usr/bin/env ruby
# -*- coding: binary -*-
#
# FASTLIB is a mechanism for loading large sets of libraries in a way that is
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
###
#
# framework-base
+1
View File
@@ -1,4 +1,5 @@
#!/usr/bin/env ruby
# -*- coding: binary -*-
require 'test/unit'
require 'msf/base'
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
require 'fileutils'
module Msf
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
require 'rex'
require 'msf/base'
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
module Msf
###
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
module Msf
class PersistentStorage
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
module Msf
module Serializer
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
require 'msf/base'
require 'msf/base/sessions/scriptable'
require 'shellwords'
@@ -1,4 +1,5 @@
#!/usr/bin/env ruby
# -*- coding: binary -*-
require 'test/unit'
require 'msf/base'
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
##
# $Id$
##
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
##
# $Id$
##
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
##
# $Id$
##
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
##
# $Id$
##
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
##
# $Id$
##
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
##
# $Id: meterpreter_options.rb 10595 2010-10-08 04:11:47Z hdm $
##
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
##
# $Id$
##
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
##
# $Id$
##
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
##
# $Id$
##
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
module Msf::Session
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
##
# $Id$
##
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
require 'msf/base'
require 'rex/services/local_relay'
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
##
# $Id$
##
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
# Buffer management
require 'msf/base/simple/buffer'
require 'msf/base/simple/statistics'
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
module Msf
module Simple
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
##
# $Id$
##
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
module Msf
module Simple
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
require 'msf/base'
module Msf
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
require 'msf/base/simple'
module Msf
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
require 'msf/base'
module Msf
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
require 'msf/base'
module Msf
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
##
# $Id$
##
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
module Msf
module Simple
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
module Msf
module Simple
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
###
#
# framework-core
+1
View File
@@ -1,4 +1,5 @@
#!/usr/bin/env ruby
# -*- coding: binary -*-
require 'test/unit'
require 'msf/core'
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
require 'msf/core/module'
module Msf
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
module Msf
###
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
module Msf
###
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
##
# $Id$
##
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
module Msf
###
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
module Msf
###
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
module Msf
###
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
require 'rex/proto/iax2/client'
module Msf
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
require 'open3'
require 'fileutils'
require 'rex/proto/ntlm/crypt'
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
##
# $Id$
##
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
require 'action_dispatch/http/mime_type'
module Msf
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
##
# $Id$
##
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
require 'rex/parser/nmap_nokogiri'
require 'rex/parser/nmap_xml'
require 'open3'
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
###
# $Id$
###
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
module Msf
###
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
##
# $Id$
##
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
module Msf
###
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
module Msf
###
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
module Msf
###
#
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
###
#
# This file contains constants that are referenced by the core
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
module Msf
###
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
# Check Rex::Parser.nokogiri_loaded for status of the Nokogiri parsers
require 'rex/parser/nmap_nokogiri'
require 'rex/parser/nexpose_simple_nokogiri'
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
module Msf
##
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
require "active_record"
require 'msf/core'
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
# $Id$
require 'msf/core'
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
require 'msf/core'
module Msf
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
require 'msf/core'
module Msf
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
require 'msf/core'
module Msf
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
require 'msf/core'
module Msf
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
require 'msf/core'
###
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
require 'msf/core'
###
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
module Msf
module Encoding
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
require 'msf/core'
module Msf
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
require 'msf/core'
module Msf
+1
View File
@@ -1,4 +1,5 @@
#!/usr/bin/env ruby
# -*- coding: binary -*-
$:.unshift(File.join(File.dirname(__FILE__), '..', '..'))
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
require 'msf/core'
require 'msf/core/module'
+1
View File
@@ -1,4 +1,5 @@
#!/usr/bin/env ruby
# -*- coding: binary -*-
$:.unshift(File.join(File.dirname(__FILE__), '..', '..'))
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
require 'msf/core'
require 'msf/core/exploit/tcp'
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
require 'msf/core'
module Msf
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
##
# $Id$
##
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
module Msf
###
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
module Msf
###
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
module Msf
###
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
##
# $Id$
##
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
##
# $Id$
##
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
##
# $Id$
##
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
##
# $Id$
##
+1
View File
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
##
# $Id$
##
@@ -1,3 +1,4 @@
# -*- coding: binary -*-
##
# $Id: $
##

Some files were not shown because too many files have changed in this diff Show More