ronin-support 0.1.0.pre2 → 0.1.0.pre3

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.
Files changed (86) hide show
  1. data/COPYING.txt +158 -497
  2. data/ChangeLog.md +1 -0
  3. data/Gemfile +3 -9
  4. data/README.md +11 -14
  5. data/gemspec.yml +1 -1
  6. data/lib/ronin/extensions.rb +11 -13
  7. data/lib/ronin/extensions/file.rb +11 -13
  8. data/lib/ronin/extensions/ip_addr.rb +11 -13
  9. data/lib/ronin/extensions/kernel.rb +11 -13
  10. data/lib/ronin/extensions/meta.rb +11 -13
  11. data/lib/ronin/extensions/string.rb +11 -13
  12. data/lib/ronin/formatting.rb +11 -13
  13. data/lib/ronin/formatting/binary.rb +11 -13
  14. data/lib/ronin/formatting/digest.rb +11 -13
  15. data/lib/ronin/formatting/extensions.rb +11 -13
  16. data/lib/ronin/formatting/extensions/binary.rb +11 -13
  17. data/lib/ronin/formatting/extensions/binary/file.rb +11 -13
  18. data/lib/ronin/formatting/extensions/binary/integer.rb +11 -13
  19. data/lib/ronin/formatting/extensions/binary/string.rb +11 -13
  20. data/lib/ronin/formatting/extensions/digest.rb +11 -13
  21. data/lib/ronin/formatting/extensions/digest/file.rb +11 -13
  22. data/lib/ronin/formatting/extensions/digest/string.rb +11 -13
  23. data/lib/ronin/formatting/extensions/http.rb +11 -13
  24. data/lib/ronin/formatting/extensions/http/integer.rb +11 -13
  25. data/lib/ronin/formatting/extensions/http/string.rb +11 -13
  26. data/lib/ronin/formatting/extensions/text.rb +11 -13
  27. data/lib/ronin/formatting/extensions/text/array.rb +11 -13
  28. data/lib/ronin/formatting/extensions/text/string.rb +11 -13
  29. data/lib/ronin/formatting/http.rb +11 -13
  30. data/lib/ronin/formatting/text.rb +11 -13
  31. data/lib/ronin/network.rb +11 -13
  32. data/lib/ronin/network/esmtp.rb +11 -13
  33. data/lib/ronin/network/extensions.rb +11 -13
  34. data/lib/ronin/network/extensions/esmtp.rb +11 -13
  35. data/lib/ronin/network/extensions/esmtp/net.rb +11 -13
  36. data/lib/ronin/network/extensions/http.rb +11 -13
  37. data/lib/ronin/network/extensions/http/net.rb +11 -13
  38. data/lib/ronin/network/extensions/imap.rb +11 -13
  39. data/lib/ronin/network/extensions/imap/net.rb +11 -13
  40. data/lib/ronin/network/extensions/pop3.rb +11 -13
  41. data/lib/ronin/network/extensions/pop3/net.rb +11 -13
  42. data/lib/ronin/network/extensions/smtp.rb +11 -13
  43. data/lib/ronin/network/extensions/smtp/net.rb +11 -13
  44. data/lib/ronin/network/extensions/ssl.rb +11 -13
  45. data/lib/ronin/network/extensions/ssl/net.rb +11 -13
  46. data/lib/ronin/network/extensions/tcp.rb +11 -13
  47. data/lib/ronin/network/extensions/tcp/net.rb +11 -13
  48. data/lib/ronin/network/extensions/telnet.rb +11 -13
  49. data/lib/ronin/network/extensions/telnet/net.rb +11 -13
  50. data/lib/ronin/network/extensions/udp.rb +11 -13
  51. data/lib/ronin/network/extensions/udp/net.rb +11 -13
  52. data/lib/ronin/network/http.rb +11 -13
  53. data/lib/ronin/network/http/exceptions.rb +11 -13
  54. data/lib/ronin/network/http/exceptions/unknown_request.rb +11 -13
  55. data/lib/ronin/network/http/http.rb +11 -13
  56. data/lib/ronin/network/http/proxy.rb +11 -13
  57. data/lib/ronin/network/imap.rb +11 -13
  58. data/lib/ronin/network/network.rb +11 -13
  59. data/lib/ronin/network/pop3.rb +11 -13
  60. data/lib/ronin/network/smtp.rb +11 -13
  61. data/lib/ronin/network/smtp/email.rb +11 -13
  62. data/lib/ronin/network/smtp/smtp.rb +11 -13
  63. data/lib/ronin/network/ssl.rb +11 -13
  64. data/lib/ronin/network/tcp.rb +11 -13
  65. data/lib/ronin/network/telnet.rb +11 -13
  66. data/lib/ronin/network/udp.rb +11 -13
  67. data/lib/ronin/path.rb +11 -13
  68. data/lib/ronin/support.rb +11 -13
  69. data/lib/ronin/support/inflector.rb +9 -10
  70. data/lib/ronin/support/version.rb +12 -14
  71. data/lib/ronin/templates.rb +11 -13
  72. data/lib/ronin/templates/erb.rb +11 -13
  73. data/lib/ronin/templates/template.rb +11 -13
  74. data/spec/extensions/ip_addr_spec.rb +5 -5
  75. data/spec/extensions/kernel_spec.rb +1 -1
  76. data/spec/extensions/string_spec.rb +6 -6
  77. data/spec/formatting/binary/integer_spec.rb +3 -3
  78. data/spec/formatting/binary/string_spec.rb +11 -11
  79. data/spec/formatting/digest/string_spec.rb +5 -5
  80. data/spec/formatting/http/integer_spec.rb +3 -3
  81. data/spec/formatting/http/string_spec.rb +5 -5
  82. data/spec/formatting/text/array_spec.rb +5 -5
  83. data/spec/formatting/text/string_spec.rb +5 -5
  84. data/spec/network/http/proxy_spec.rb +0 -2
  85. data/spec/path_spec.rb +9 -7
  86. metadata +4 -4
@@ -1,22 +1,20 @@
1
1
  #
2
- # Ronin - A Ruby platform for exploit development and security research.
2
+ # Copyright (c) 2006-2011 Hal Brodigan (postmodern.mod3 at gmail.com)
3
3
  #
4
- # Copyright (c) 2006-2010 Hal Brodigan (postmodern.mod3 at gmail.com)
4
+ # This file is part of Ronin Support.
5
5
  #
6
- # This library is free software; you can redistribute it and/or
7
- # modify it under the terms of the GNU Lesser General Public
8
- # License as published by the Free Software Foundation; either
9
- # version 2.1 of the License, or (at your option) any later version.
6
+ # Ronin Support is free software: you can redistribute it and/or modify
7
+ # it under the terms of the GNU Lesser General Public License as publishe by
8
+ # the Free Software Foundation, either version 3 of the License, or
9
+ # (at your option) any later version.
10
10
  #
11
- # This library is distributed in the hope that it will be useful,
11
+ # Ronin Support is distributed in the hope that it will be useful,
12
12
  # but WITHOUT ANY WARRANTY; without even the implied warranty of
13
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14
- # Lesser General Public License for more details.
13
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
+ # GNU Lesser General Public License for more details.
15
15
  #
16
- # You should have received a copy of the GNU Lesser General Public
17
- # License along with this library; if not, write to the Free Software
18
- # Foundation, Inc., 51 Franklin Street, Fifth Floor,
19
- # Boston, MA 02110-1301 USA
16
+ # You should have received a copy of the GNU Lesser General Public License
17
+ # along with Ronin Support. If not, see <http://www.gnu.org/licenses/>.
20
18
  #
21
19
 
22
20
  require 'ronin/extensions/ip_addr'
@@ -1,22 +1,20 @@
1
1
  #
2
- # Ronin - A Ruby platform for exploit development and security research.
2
+ # Copyright (c) 2006-2011 Hal Brodigan (postmodern.mod3 at gmail.com)
3
3
  #
4
- # Copyright (c) 2006-2010 Hal Brodigan (postmodern.mod3 at gmail.com)
4
+ # This file is part of Ronin Support.
5
5
  #
6
- # This library is free software; you can redistribute it and/or
7
- # modify it under the terms of the GNU Lesser General Public
8
- # License as published by the Free Software Foundation; either
9
- # version 2.1 of the License, or (at your option) any later version.
6
+ # Ronin Support is free software: you can redistribute it and/or modify
7
+ # it under the terms of the GNU Lesser General Public License as publishe by
8
+ # the Free Software Foundation, either version 3 of the License, or
9
+ # (at your option) any later version.
10
10
  #
11
- # This library is distributed in the hope that it will be useful,
11
+ # Ronin Support is distributed in the hope that it will be useful,
12
12
  # but WITHOUT ANY WARRANTY; without even the implied warranty of
13
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14
- # Lesser General Public License for more details.
13
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
+ # GNU Lesser General Public License for more details.
15
15
  #
16
- # You should have received a copy of the GNU Lesser General Public
17
- # License along with this library; if not, write to the Free Software
18
- # Foundation, Inc., 51 Franklin Street, Fifth Floor,
19
- # Boston, MA 02110-1301 USA
16
+ # You should have received a copy of the GNU Lesser General Public License
17
+ # along with Ronin Support. If not, see <http://www.gnu.org/licenses/>.
20
18
  #
21
19
 
22
20
  require 'ronin/network/extensions/imap'
@@ -1,22 +1,20 @@
1
1
  #
2
- # Ronin - A Ruby platform for exploit development and security research.
2
+ # Copyright (c) 2006-2011 Hal Brodigan (postmodern.mod3 at gmail.com)
3
3
  #
4
- # Copyright (c) 2006-2010 Hal Brodigan (postmodern.mod3 at gmail.com)
4
+ # This file is part of Ronin Support.
5
5
  #
6
- # This library is free software; you can redistribute it and/or
7
- # modify it under the terms of the GNU Lesser General Public
8
- # License as published by the Free Software Foundation; either
9
- # version 2.1 of the License, or (at your option) any later version.
6
+ # Ronin Support is free software: you can redistribute it and/or modify
7
+ # it under the terms of the GNU Lesser General Public License as publishe by
8
+ # the Free Software Foundation, either version 3 of the License, or
9
+ # (at your option) any later version.
10
10
  #
11
- # This library is distributed in the hope that it will be useful,
11
+ # Ronin Support is distributed in the hope that it will be useful,
12
12
  # but WITHOUT ANY WARRANTY; without even the implied warranty of
13
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14
- # Lesser General Public License for more details.
13
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
+ # GNU Lesser General Public License for more details.
15
15
  #
16
- # You should have received a copy of the GNU Lesser General Public
17
- # License along with this library; if not, write to the Free Software
18
- # Foundation, Inc., 51 Franklin Street, Fifth Floor,
19
- # Boston, MA 02110-1301 USA
16
+ # You should have received a copy of the GNU Lesser General Public License
17
+ # along with Ronin Support. If not, see <http://www.gnu.org/licenses/>.
20
18
  #
21
19
 
22
20
  require 'ronin/extensions/ip_addr'
@@ -1,22 +1,20 @@
1
1
  #
2
- # Ronin - A Ruby platform for exploit development and security research.
2
+ # Copyright (c) 2006-2011 Hal Brodigan (postmodern.mod3 at gmail.com)
3
3
  #
4
- # Copyright (c) 2006-2010 Hal Brodigan (postmodern.mod3 at gmail.com)
4
+ # This file is part of Ronin Support.
5
5
  #
6
- # This library is free software; you can redistribute it and/or
7
- # modify it under the terms of the GNU Lesser General Public
8
- # License as published by the Free Software Foundation; either
9
- # version 2.1 of the License, or (at your option) any later version.
6
+ # Ronin Support is free software: you can redistribute it and/or modify
7
+ # it under the terms of the GNU Lesser General Public License as publishe by
8
+ # the Free Software Foundation, either version 3 of the License, or
9
+ # (at your option) any later version.
10
10
  #
11
- # This library is distributed in the hope that it will be useful,
11
+ # Ronin Support is distributed in the hope that it will be useful,
12
12
  # but WITHOUT ANY WARRANTY; without even the implied warranty of
13
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14
- # Lesser General Public License for more details.
13
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
+ # GNU Lesser General Public License for more details.
15
15
  #
16
- # You should have received a copy of the GNU Lesser General Public
17
- # License along with this library; if not, write to the Free Software
18
- # Foundation, Inc., 51 Franklin Street, Fifth Floor,
19
- # Boston, MA 02110-1301 USA
16
+ # You should have received a copy of the GNU Lesser General Public License
17
+ # along with Ronin Support. If not, see <http://www.gnu.org/licenses/>.
20
18
  #
21
19
 
22
20
  require 'ronin/network/extensions/pop3'
@@ -1,22 +1,20 @@
1
1
  #
2
- # Ronin - A Ruby platform for exploit development and security research.
2
+ # Copyright (c) 2006-2011 Hal Brodigan (postmodern.mod3 at gmail.com)
3
3
  #
4
- # Copyright (c) 2006-2010 Hal Brodigan (postmodern.mod3 at gmail.com)
4
+ # This file is part of Ronin Support.
5
5
  #
6
- # This library is free software; you can redistribute it and/or
7
- # modify it under the terms of the GNU Lesser General Public
8
- # License as published by the Free Software Foundation; either
9
- # version 2.1 of the License, or (at your option) any later version.
6
+ # Ronin Support is free software: you can redistribute it and/or modify
7
+ # it under the terms of the GNU Lesser General Public License as publishe by
8
+ # the Free Software Foundation, either version 3 of the License, or
9
+ # (at your option) any later version.
10
10
  #
11
- # This library is distributed in the hope that it will be useful,
11
+ # Ronin Support is distributed in the hope that it will be useful,
12
12
  # but WITHOUT ANY WARRANTY; without even the implied warranty of
13
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14
- # Lesser General Public License for more details.
13
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
+ # GNU Lesser General Public License for more details.
15
15
  #
16
- # You should have received a copy of the GNU Lesser General Public
17
- # License along with this library; if not, write to the Free Software
18
- # Foundation, Inc., 51 Franklin Street, Fifth Floor,
19
- # Boston, MA 02110-1301 USA
16
+ # You should have received a copy of the GNU Lesser General Public License
17
+ # along with Ronin Support. If not, see <http://www.gnu.org/licenses/>.
20
18
  #
21
19
 
22
20
  require 'ronin/network/smtp/email'
@@ -1,22 +1,20 @@
1
1
  #
2
- # Ronin - A Ruby platform for exploit development and security research.
2
+ # Copyright (c) 2006-2011 Hal Brodigan (postmodern.mod3 at gmail.com)
3
3
  #
4
- # Copyright (c) 2006-2010 Hal Brodigan (postmodern.mod3 at gmail.com)
4
+ # This file is part of Ronin Support.
5
5
  #
6
- # This library is free software; you can redistribute it and/or
7
- # modify it under the terms of the GNU Lesser General Public
8
- # License as published by the Free Software Foundation; either
9
- # version 2.1 of the License, or (at your option) any later version.
6
+ # Ronin Support is free software: you can redistribute it and/or modify
7
+ # it under the terms of the GNU Lesser General Public License as publishe by
8
+ # the Free Software Foundation, either version 3 of the License, or
9
+ # (at your option) any later version.
10
10
  #
11
- # This library is distributed in the hope that it will be useful,
11
+ # Ronin Support is distributed in the hope that it will be useful,
12
12
  # but WITHOUT ANY WARRANTY; without even the implied warranty of
13
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14
- # Lesser General Public License for more details.
13
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
+ # GNU Lesser General Public License for more details.
15
15
  #
16
- # You should have received a copy of the GNU Lesser General Public
17
- # License along with this library; if not, write to the Free Software
18
- # Foundation, Inc., 51 Franklin Street, Fifth Floor,
19
- # Boston, MA 02110-1301 USA
16
+ # You should have received a copy of the GNU Lesser General Public License
17
+ # along with Ronin Support. If not, see <http://www.gnu.org/licenses/>.
20
18
  #
21
19
 
22
20
  module Ronin
@@ -1,22 +1,20 @@
1
1
  #
2
- # Ronin - A Ruby platform for exploit development and security research.
2
+ # Copyright (c) 2006-2011 Hal Brodigan (postmodern.mod3 at gmail.com)
3
3
  #
4
- # Copyright (c) 2006-2010 Hal Brodigan (postmodern.mod3 at gmail.com)
4
+ # This file is part of Ronin Support.
5
5
  #
6
- # This library is free software; you can redistribute it and/or
7
- # modify it under the terms of the GNU Lesser General Public
8
- # License as published by the Free Software Foundation; either
9
- # version 2.1 of the License, or (at your option) any later version.
6
+ # Ronin Support is free software: you can redistribute it and/or modify
7
+ # it under the terms of the GNU Lesser General Public License as publishe by
8
+ # the Free Software Foundation, either version 3 of the License, or
9
+ # (at your option) any later version.
10
10
  #
11
- # This library is distributed in the hope that it will be useful,
11
+ # Ronin Support is distributed in the hope that it will be useful,
12
12
  # but WITHOUT ANY WARRANTY; without even the implied warranty of
13
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14
- # Lesser General Public License for more details.
13
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
+ # GNU Lesser General Public License for more details.
15
15
  #
16
- # You should have received a copy of the GNU Lesser General Public
17
- # License along with this library; if not, write to the Free Software
18
- # Foundation, Inc., 51 Franklin Street, Fifth Floor,
19
- # Boston, MA 02110-1301 USA
16
+ # You should have received a copy of the GNU Lesser General Public License
17
+ # along with Ronin Support. If not, see <http://www.gnu.org/licenses/>.
20
18
  #
21
19
 
22
20
  require 'ronin/network/smtp/email'
@@ -1,22 +1,20 @@
1
1
  #
2
- # Ronin - A Ruby platform for exploit development and security research.
2
+ # Copyright (c) 2006-2011 Hal Brodigan (postmodern.mod3 at gmail.com)
3
3
  #
4
- # Copyright (c) 2006-2010 Hal Brodigan (postmodern.mod3 at gmail.com)
4
+ # This file is part of Ronin Support.
5
5
  #
6
- # This library is free software; you can redistribute it and/or
7
- # modify it under the terms of the GNU Lesser General Public
8
- # License as published by the Free Software Foundation; either
9
- # version 2.1 of the License, or (at your option) any later version.
6
+ # Ronin Support is free software: you can redistribute it and/or modify
7
+ # it under the terms of the GNU Lesser General Public License as publishe by
8
+ # the Free Software Foundation, either version 3 of the License, or
9
+ # (at your option) any later version.
10
10
  #
11
- # This library is distributed in the hope that it will be useful,
11
+ # Ronin Support is distributed in the hope that it will be useful,
12
12
  # but WITHOUT ANY WARRANTY; without even the implied warranty of
13
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14
- # Lesser General Public License for more details.
13
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
+ # GNU Lesser General Public License for more details.
15
15
  #
16
- # You should have received a copy of the GNU Lesser General Public
17
- # License along with this library; if not, write to the Free Software
18
- # Foundation, Inc., 51 Franklin Street, Fifth Floor,
19
- # Boston, MA 02110-1301 USA
16
+ # You should have received a copy of the GNU Lesser General Public License
17
+ # along with Ronin Support. If not, see <http://www.gnu.org/licenses/>.
20
18
  #
21
19
 
22
20
  require 'ronin/network/extensions/ssl'
@@ -1,22 +1,20 @@
1
1
  #
2
- # Ronin - A Ruby platform for exploit development and security research.
2
+ # Copyright (c) 2006-2011 Hal Brodigan (postmodern.mod3 at gmail.com)
3
3
  #
4
- # Copyright (c) 2006-2010 Hal Brodigan (postmodern.mod3 at gmail.com)
4
+ # This file is part of Ronin Support.
5
5
  #
6
- # This library is free software; you can redistribute it and/or
7
- # modify it under the terms of the GNU Lesser General Public
8
- # License as published by the Free Software Foundation; either
9
- # version 2.1 of the License, or (at your option) any later version.
6
+ # Ronin Support is free software: you can redistribute it and/or modify
7
+ # it under the terms of the GNU Lesser General Public License as publishe by
8
+ # the Free Software Foundation, either version 3 of the License, or
9
+ # (at your option) any later version.
10
10
  #
11
- # This library is distributed in the hope that it will be useful,
11
+ # Ronin Support is distributed in the hope that it will be useful,
12
12
  # but WITHOUT ANY WARRANTY; without even the implied warranty of
13
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14
- # Lesser General Public License for more details.
13
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
+ # GNU Lesser General Public License for more details.
15
15
  #
16
- # You should have received a copy of the GNU Lesser General Public
17
- # License along with this library; if not, write to the Free Software
18
- # Foundation, Inc., 51 Franklin Street, Fifth Floor,
19
- # Boston, MA 02110-1301 USA
16
+ # You should have received a copy of the GNU Lesser General Public License
17
+ # along with Ronin Support. If not, see <http://www.gnu.org/licenses/>.
20
18
  #
21
19
 
22
20
  require 'ronin/network/extensions/tcp'
@@ -1,22 +1,20 @@
1
1
  #
2
- # Ronin - A Ruby platform for exploit development and security research.
2
+ # Copyright (c) 2006-2011 Hal Brodigan (postmodern.mod3 at gmail.com)
3
3
  #
4
- # Copyright (c) 2006-2010 Hal Brodigan (postmodern.mod3 at gmail.com)
4
+ # This file is part of Ronin Support.
5
5
  #
6
- # This library is free software; you can redistribute it and/or
7
- # modify it under the terms of the GNU Lesser General Public
8
- # License as published by the Free Software Foundation; either
9
- # version 2.1 of the License, or (at your option) any later version.
6
+ # Ronin Support is free software: you can redistribute it and/or modify
7
+ # it under the terms of the GNU Lesser General Public License as publishe by
8
+ # the Free Software Foundation, either version 3 of the License, or
9
+ # (at your option) any later version.
10
10
  #
11
- # This library is distributed in the hope that it will be useful,
11
+ # Ronin Support is distributed in the hope that it will be useful,
12
12
  # but WITHOUT ANY WARRANTY; without even the implied warranty of
13
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14
- # Lesser General Public License for more details.
13
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
+ # GNU Lesser General Public License for more details.
15
15
  #
16
- # You should have received a copy of the GNU Lesser General Public
17
- # License along with this library; if not, write to the Free Software
18
- # Foundation, Inc., 51 Franklin Street, Fifth Floor,
19
- # Boston, MA 02110-1301 USA
16
+ # You should have received a copy of the GNU Lesser General Public License
17
+ # along with Ronin Support. If not, see <http://www.gnu.org/licenses/>.
20
18
  #
21
19
 
22
20
  require 'ronin/network/extensions/telnet'
@@ -1,22 +1,20 @@
1
1
  #
2
- # Ronin - A Ruby platform for exploit development and security research.
2
+ # Copyright (c) 2006-2011 Hal Brodigan (postmodern.mod3 at gmail.com)
3
3
  #
4
- # Copyright (c) 2006-2010 Hal Brodigan (postmodern.mod3 at gmail.com)
4
+ # This file is part of Ronin Support.
5
5
  #
6
- # This library is free software; you can redistribute it and/or
7
- # modify it under the terms of the GNU Lesser General Public
8
- # License as published by the Free Software Foundation; either
9
- # version 2.1 of the License, or (at your option) any later version.
6
+ # Ronin Support is free software: you can redistribute it and/or modify
7
+ # it under the terms of the GNU Lesser General Public License as publishe by
8
+ # the Free Software Foundation, either version 3 of the License, or
9
+ # (at your option) any later version.
10
10
  #
11
- # This library is distributed in the hope that it will be useful,
11
+ # Ronin Support is distributed in the hope that it will be useful,
12
12
  # but WITHOUT ANY WARRANTY; without even the implied warranty of
13
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14
- # Lesser General Public License for more details.
13
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
+ # GNU Lesser General Public License for more details.
15
15
  #
16
- # You should have received a copy of the GNU Lesser General Public
17
- # License along with this library; if not, write to the Free Software
18
- # Foundation, Inc., 51 Franklin Street, Fifth Floor,
19
- # Boston, MA 02110-1301 USA
16
+ # You should have received a copy of the GNU Lesser General Public License
17
+ # along with Ronin Support. If not, see <http://www.gnu.org/licenses/>.
20
18
  #
21
19
 
22
20
  require 'ronin/network/extensions/udp'
@@ -1,22 +1,20 @@
1
1
  #
2
- # Ronin - A Ruby platform for exploit development and security research.
2
+ # Copyright (c) 2006-2011 Hal Brodigan (postmodern.mod3 at gmail.com)
3
3
  #
4
- # Copyright (c) 2006-2010 Hal Brodigan (postmodern.mod3 at gmail.com)
4
+ # This file is part of Ronin Support.
5
5
  #
6
- # This library is free software; you can redistribute it and/or
7
- # modify it under the terms of the GNU Lesser General Public
8
- # License as published by the Free Software Foundation; either
9
- # version 2.1 of the License, or (at your option) any later version.
6
+ # Ronin Support is free software: you can redistribute it and/or modify
7
+ # it under the terms of the GNU Lesser General Public License as publishe by
8
+ # the Free Software Foundation, either version 3 of the License, or
9
+ # (at your option) any later version.
10
10
  #
11
- # This library is distributed in the hope that it will be useful,
11
+ # Ronin Support is distributed in the hope that it will be useful,
12
12
  # but WITHOUT ANY WARRANTY; without even the implied warranty of
13
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14
- # Lesser General Public License for more details.
13
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
+ # GNU Lesser General Public License for more details.
15
15
  #
16
- # You should have received a copy of the GNU Lesser General Public
17
- # License along with this library; if not, write to the Free Software
18
- # Foundation, Inc., 51 Franklin Street, Fifth Floor,
19
- # Boston, MA 02110-1301 USA
16
+ # You should have received a copy of the GNU Lesser General Public License
17
+ # along with Ronin Support. If not, see <http://www.gnu.org/licenses/>.
20
18
  #
21
19
 
22
20
  require 'pathname'
@@ -1,22 +1,20 @@
1
1
  #
2
- # Ronin Support - A support library for Ronin.
2
+ # Copyright (c) 2006-2011 Hal Brodigan (postmodern.mod3 at gmail.com)
3
3
  #
4
- # Copyright (c) 2010 Hal Brodigan (postmodern.mod3 at gmail.com)
4
+ # This file is part of Ronin Support.
5
5
  #
6
- # This library is free software; you can redistribute it and/or
7
- # modify it under the terms of the GNU Lesser General Public
8
- # License as published by the Free Software Foundation; either
9
- # version 2.1 of the License, or (at your option) any later version.
6
+ # Ronin Support is free software: you can redistribute it and/or modify
7
+ # it under the terms of the GNU Lesser General Public License as publishe by
8
+ # the Free Software Foundation, either version 3 of the License, or
9
+ # (at your option) any later version.
10
10
  #
11
- # This library is distributed in the hope that it will be useful,
11
+ # Ronin Support is distributed in the hope that it will be useful,
12
12
  # but WITHOUT ANY WARRANTY; without even the implied warranty of
13
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14
- # Lesser General Public License for more details.
13
+ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
+ # GNU Lesser General Public License for more details.
15
15
  #
16
- # You should have received a copy of the GNU Lesser General Public
17
- # License along with this library; if not, write to the Free Software
18
- # Foundation, Inc., 51 Franklin Street, Fifth Floor,
19
- # Boston, MA 02110-1301 USA
16
+ # You should have received a copy of the GNU Lesser General Public License
17
+ # along with Ronin Support. If not, see <http://www.gnu.org/licenses/>.
20
18
  #
21
19
 
22
20
  require 'ronin/extensions'