librex 0.0.54 → 0.0.63

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,70 +0,0 @@
1
- #!/usr/bin/env ruby -I..
2
-
3
- =begin
4
-
5
- The Metasploit Rex library is provided under the 3-clause BSD license.
6
-
7
- Copyright (c) 2005-2006, Rapid7 LLC
8
- All rights reserved.
9
-
10
- Redistribution and use in source and binary forms, with or without modification,
11
- are permitted provided that the following conditions are met:
12
-
13
- * Redistributions of source code must retain the above copyright notice, this
14
- list of conditions and the following disclaimer.
15
-
16
- * Redistributions in binary form must reproduce the above copyright notice,
17
- this list of conditions and the following disclaimer in the documentation
18
- and/or other materials provided with the distribution.
19
-
20
- * Neither the name of Rapid7 LLC nor the names of its contributors may be
21
- used to endorse or promote products derived from this software without
22
- specific prior written permission.
23
-
24
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
25
- ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
26
- WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
27
- DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
28
- ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
29
- (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
30
- LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
31
- ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
32
- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
33
- SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34
-
35
- =end
36
-
37
- require 'test/unit'
38
-
39
- require 'rex/exceptions.rb.ut'
40
- require 'rex/transformer.rb.ut'
41
- require 'rex/text.rb.ut'
42
- require 'rex/file.rb.ut'
43
-
44
- require 'rex/encoder/xdr.rb.ut'
45
-
46
- require 'rex/encoding/xor/generic.rb.ut'
47
- require 'rex/encoding/xor/byte.rb.ut'
48
- require 'rex/encoding/xor/word.rb.ut'
49
- require 'rex/encoding/xor/dword.rb.ut'
50
- require 'rex/encoding/xor/dword_additive.rb.ut'
51
-
52
- require 'rex/socket.rb.ut'
53
- require 'rex/socket/tcp.rb.ut'
54
- require 'rex/socket/ssl_tcp.rb.ut'
55
- require 'rex/socket/tcp_server.rb.ut'
56
- require 'rex/socket/udp.rb.ut'
57
- require 'rex/socket/parameters.rb.ut'
58
- require 'rex/socket/comm/local.rb.ut'
59
- require 'rex/socket/switch_board.rb.ut'
60
- require 'rex/socket/subnet_walker.rb.ut'
61
-
62
- require 'rex/proto.rb.ts'
63
-
64
- require 'rex/parser/arguments.rb.ut'
65
-
66
- require 'rex/ui/text/color.rb.ut'
67
- require 'rex/ui/text/table.rb.ut'
68
-
69
- require 'rex/exploitation/egghunter.rb.ut'
70
- require 'rex/exploitation/seh.rb.ut'