From b76b8331fb74c31851683a791f87f6308f357658 Mon Sep 17 00:00:00 2001 From: Postmodern Date: Mon, 25 Nov 2024 17:23:41 -0800 Subject: [PATCH] Updated the copyright years. --- README.md | 2 +- lib/ronin.rb | 2 +- lib/ronin/cli.rb | 2 +- lib/ronin/cli/binary_template.rb | 2 +- lib/ronin/cli/char_set_options.rb | 2 +- lib/ronin/cli/cipher_command.rb | 2 +- lib/ronin/cli/command.rb | 2 +- lib/ronin/cli/commands/asn.rb | 2 +- lib/ronin/cli/commands/banner_grab.rb | 2 +- lib/ronin/cli/commands/bitflip.rb | 2 +- lib/ronin/cli/commands/bitsquat.rb | 2 +- lib/ronin/cli/commands/cert_dump.rb | 2 +- lib/ronin/cli/commands/cert_gen.rb | 2 +- lib/ronin/cli/commands/cert_grab.rb | 2 +- lib/ronin/cli/commands/completion.rb | 2 +- lib/ronin/cli/commands/decode.rb | 2 +- lib/ronin/cli/commands/decrypt.rb | 2 +- lib/ronin/cli/commands/dns.rb | 2 +- lib/ronin/cli/commands/dns_proxy.rb | 2 +- lib/ronin/cli/commands/email_addr.rb | 2 +- lib/ronin/cli/commands/encode.rb | 2 +- lib/ronin/cli/commands/encrypt.rb | 2 +- lib/ronin/cli/commands/entropy.rb | 2 +- lib/ronin/cli/commands/escape.rb | 2 +- lib/ronin/cli/commands/extract.rb | 2 +- lib/ronin/cli/commands/grep.rb | 2 +- lib/ronin/cli/commands/hexdump.rb | 2 +- lib/ronin/cli/commands/highlight.rb | 2 +- lib/ronin/cli/commands/hmac.rb | 2 +- lib/ronin/cli/commands/homoglyph.rb | 2 +- lib/ronin/cli/commands/host.rb | 2 +- lib/ronin/cli/commands/http.rb | 2 +- lib/ronin/cli/commands/ip.rb | 2 +- lib/ronin/cli/commands/iprange.rb | 2 +- lib/ronin/cli/commands/irb.rb | 2 +- lib/ronin/cli/commands/md5.rb | 2 +- lib/ronin/cli/commands/netcat.rb | 2 +- lib/ronin/cli/commands/new.rb | 2 +- lib/ronin/cli/commands/new/dns_listener.rb | 2 +- lib/ronin/cli/commands/new/dns_proxy.rb | 2 +- lib/ronin/cli/commands/new/exploit.rb | 2 +- lib/ronin/cli/commands/new/http_listener.rb | 2 +- lib/ronin/cli/commands/new/nokogiri.rb | 2 +- lib/ronin/cli/commands/new/payload.rb | 2 +- lib/ronin/cli/commands/new/project.rb | 2 +- lib/ronin/cli/commands/new/script.rb | 2 +- lib/ronin/cli/commands/new/web_app.rb | 2 +- lib/ronin/cli/commands/new/web_server.rb | 2 +- lib/ronin/cli/commands/new/web_spider.rb | 2 +- lib/ronin/cli/commands/pack.rb | 2 +- lib/ronin/cli/commands/proxy.rb | 2 +- lib/ronin/cli/commands/public_suffix_list.rb | 2 +- lib/ronin/cli/commands/quote.rb | 2 +- lib/ronin/cli/commands/rot.rb | 2 +- lib/ronin/cli/commands/sha1.rb | 2 +- lib/ronin/cli/commands/sha256.rb | 2 +- lib/ronin/cli/commands/sha512.rb | 2 +- lib/ronin/cli/commands/strings.rb | 2 +- lib/ronin/cli/commands/tips.rb | 2 +- lib/ronin/cli/commands/tld_list.rb | 2 +- lib/ronin/cli/commands/typo.rb | 2 +- lib/ronin/cli/commands/typosquat.rb | 2 +- lib/ronin/cli/commands/unescape.rb | 2 +- lib/ronin/cli/commands/unhexdump.rb | 2 +- lib/ronin/cli/commands/unpack.rb | 2 +- lib/ronin/cli/commands/unquote.rb | 2 +- lib/ronin/cli/commands/url.rb | 2 +- lib/ronin/cli/commands/xor.rb | 2 +- lib/ronin/cli/dns.rb | 2 +- lib/ronin/cli/file_processor_command.rb | 2 +- lib/ronin/cli/host_and_port.rb | 2 +- lib/ronin/cli/http_shell.rb | 2 +- lib/ronin/cli/key_options.rb | 2 +- lib/ronin/cli/method_options.rb | 2 +- lib/ronin/cli/pattern_options.rb | 2 +- lib/ronin/cli/printing/http.rb | 2 +- lib/ronin/cli/printing/syntax_highlighting.rb | 2 +- lib/ronin/cli/ruby_shell.rb | 2 +- lib/ronin/cli/string_methods_command.rb | 2 +- lib/ronin/cli/string_processor_command.rb | 2 +- lib/ronin/cli/typo_options.rb | 2 +- lib/ronin/cli/value_processor_command.rb | 2 +- lib/ronin/root.rb | 2 +- lib/ronin/version.rb | 2 +- 84 files changed, 84 insertions(+), 84 deletions(-) diff --git a/README.md b/README.md index 0230852e4..a07c773db 100644 --- a/README.md +++ b/README.md @@ -993,7 +993,7 @@ docker run --mount type=bind,source="$HOME",target=/home/ronin -it ronin ## License -Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) Ronin is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lib/ronin.rb b/lib/ronin.rb index 522b64b86..aee176963 100644 --- a/lib/ronin.rb +++ b/lib/ronin.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli.rb b/lib/ronin/cli.rb index 7f2227188..2b2f51682 100644 --- a/lib/ronin/cli.rb +++ b/lib/ronin/cli.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/binary_template.rb b/lib/ronin/cli/binary_template.rb index da4b03db6..826138096 100644 --- a/lib/ronin/cli/binary_template.rb +++ b/lib/ronin/cli/binary_template.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/char_set_options.rb b/lib/ronin/cli/char_set_options.rb index a84203afa..f29c350e4 100644 --- a/lib/ronin/cli/char_set_options.rb +++ b/lib/ronin/cli/char_set_options.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/cipher_command.rb b/lib/ronin/cli/cipher_command.rb index ccf8df937..b0181cfc5 100644 --- a/lib/ronin/cli/cipher_command.rb +++ b/lib/ronin/cli/cipher_command.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/command.rb b/lib/ronin/cli/command.rb index 44b30bd4a..3a08a081f 100644 --- a/lib/ronin/cli/command.rb +++ b/lib/ronin/cli/command.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/commands/asn.rb b/lib/ronin/cli/commands/asn.rb index 99cf4a3ed..3b1f9664b 100644 --- a/lib/ronin/cli/commands/asn.rb +++ b/lib/ronin/cli/commands/asn.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/commands/banner_grab.rb b/lib/ronin/cli/commands/banner_grab.rb index 5eb3e6ac7..7f42770d7 100644 --- a/lib/ronin/cli/commands/banner_grab.rb +++ b/lib/ronin/cli/commands/banner_grab.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/commands/bitflip.rb b/lib/ronin/cli/commands/bitflip.rb index 7712f1e59..b90b67124 100644 --- a/lib/ronin/cli/commands/bitflip.rb +++ b/lib/ronin/cli/commands/bitflip.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/commands/bitsquat.rb b/lib/ronin/cli/commands/bitsquat.rb index c564a15c4..945b46615 100644 --- a/lib/ronin/cli/commands/bitsquat.rb +++ b/lib/ronin/cli/commands/bitsquat.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/commands/cert_dump.rb b/lib/ronin/cli/commands/cert_dump.rb index e813c4b89..30bdc011b 100644 --- a/lib/ronin/cli/commands/cert_dump.rb +++ b/lib/ronin/cli/commands/cert_dump.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/commands/cert_gen.rb b/lib/ronin/cli/commands/cert_gen.rb index 3d566f57a..6cdf14b8c 100644 --- a/lib/ronin/cli/commands/cert_gen.rb +++ b/lib/ronin/cli/commands/cert_gen.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/commands/cert_grab.rb b/lib/ronin/cli/commands/cert_grab.rb index d1cf3644a..9e85c7c8b 100644 --- a/lib/ronin/cli/commands/cert_grab.rb +++ b/lib/ronin/cli/commands/cert_grab.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/commands/completion.rb b/lib/ronin/cli/commands/completion.rb index 1ae04f89e..35986e219 100644 --- a/lib/ronin/cli/commands/completion.rb +++ b/lib/ronin/cli/commands/completion.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/commands/decode.rb b/lib/ronin/cli/commands/decode.rb index 646b1cc67..30ba07bb4 100644 --- a/lib/ronin/cli/commands/decode.rb +++ b/lib/ronin/cli/commands/decode.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/commands/decrypt.rb b/lib/ronin/cli/commands/decrypt.rb index 2cccfa9e9..f289ba623 100644 --- a/lib/ronin/cli/commands/decrypt.rb +++ b/lib/ronin/cli/commands/decrypt.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/commands/dns.rb b/lib/ronin/cli/commands/dns.rb index 575cc17e7..06dbdaf45 100644 --- a/lib/ronin/cli/commands/dns.rb +++ b/lib/ronin/cli/commands/dns.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/commands/dns_proxy.rb b/lib/ronin/cli/commands/dns_proxy.rb index 8a20bf6f8..b2deec120 100644 --- a/lib/ronin/cli/commands/dns_proxy.rb +++ b/lib/ronin/cli/commands/dns_proxy.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/commands/email_addr.rb b/lib/ronin/cli/commands/email_addr.rb index 870cad540..d4cb46b43 100644 --- a/lib/ronin/cli/commands/email_addr.rb +++ b/lib/ronin/cli/commands/email_addr.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/commands/encode.rb b/lib/ronin/cli/commands/encode.rb index a5a49a604..c392f5836 100644 --- a/lib/ronin/cli/commands/encode.rb +++ b/lib/ronin/cli/commands/encode.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/commands/encrypt.rb b/lib/ronin/cli/commands/encrypt.rb index 5c36dd83f..d092081e4 100644 --- a/lib/ronin/cli/commands/encrypt.rb +++ b/lib/ronin/cli/commands/encrypt.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/commands/entropy.rb b/lib/ronin/cli/commands/entropy.rb index 5782ce167..de17704bd 100644 --- a/lib/ronin/cli/commands/entropy.rb +++ b/lib/ronin/cli/commands/entropy.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/commands/escape.rb b/lib/ronin/cli/commands/escape.rb index ba1664618..819890fc6 100644 --- a/lib/ronin/cli/commands/escape.rb +++ b/lib/ronin/cli/commands/escape.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/commands/extract.rb b/lib/ronin/cli/commands/extract.rb index 460b67afb..264f3d754 100644 --- a/lib/ronin/cli/commands/extract.rb +++ b/lib/ronin/cli/commands/extract.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/commands/grep.rb b/lib/ronin/cli/commands/grep.rb index 0970054d2..052b64223 100644 --- a/lib/ronin/cli/commands/grep.rb +++ b/lib/ronin/cli/commands/grep.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/commands/hexdump.rb b/lib/ronin/cli/commands/hexdump.rb index 89744623d..36ef542fb 100644 --- a/lib/ronin/cli/commands/hexdump.rb +++ b/lib/ronin/cli/commands/hexdump.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/commands/highlight.rb b/lib/ronin/cli/commands/highlight.rb index 5cfde2f74..e41830aef 100644 --- a/lib/ronin/cli/commands/highlight.rb +++ b/lib/ronin/cli/commands/highlight.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/commands/hmac.rb b/lib/ronin/cli/commands/hmac.rb index ed25fa4dc..6352b9250 100644 --- a/lib/ronin/cli/commands/hmac.rb +++ b/lib/ronin/cli/commands/hmac.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/commands/homoglyph.rb b/lib/ronin/cli/commands/homoglyph.rb index fc7f9407b..dccd1f929 100644 --- a/lib/ronin/cli/commands/homoglyph.rb +++ b/lib/ronin/cli/commands/homoglyph.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/commands/host.rb b/lib/ronin/cli/commands/host.rb index c044a8c00..268bba244 100644 --- a/lib/ronin/cli/commands/host.rb +++ b/lib/ronin/cli/commands/host.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/commands/http.rb b/lib/ronin/cli/commands/http.rb index 6bdbb1e1d..67411d911 100644 --- a/lib/ronin/cli/commands/http.rb +++ b/lib/ronin/cli/commands/http.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/commands/ip.rb b/lib/ronin/cli/commands/ip.rb index 2c28f154d..1af7a3c70 100644 --- a/lib/ronin/cli/commands/ip.rb +++ b/lib/ronin/cli/commands/ip.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/commands/iprange.rb b/lib/ronin/cli/commands/iprange.rb index 842ad8698..09517d151 100644 --- a/lib/ronin/cli/commands/iprange.rb +++ b/lib/ronin/cli/commands/iprange.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/commands/irb.rb b/lib/ronin/cli/commands/irb.rb index afa5bb182..65b6128a7 100644 --- a/lib/ronin/cli/commands/irb.rb +++ b/lib/ronin/cli/commands/irb.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/commands/md5.rb b/lib/ronin/cli/commands/md5.rb index 6644b91ec..deb258719 100644 --- a/lib/ronin/cli/commands/md5.rb +++ b/lib/ronin/cli/commands/md5.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/commands/netcat.rb b/lib/ronin/cli/commands/netcat.rb index 519425411..f975ae128 100644 --- a/lib/ronin/cli/commands/netcat.rb +++ b/lib/ronin/cli/commands/netcat.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/commands/new.rb b/lib/ronin/cli/commands/new.rb index 37510713f..1b20807f2 100644 --- a/lib/ronin/cli/commands/new.rb +++ b/lib/ronin/cli/commands/new.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/commands/new/dns_listener.rb b/lib/ronin/cli/commands/new/dns_listener.rb index a1b56151b..a55d6cd78 100644 --- a/lib/ronin/cli/commands/new/dns_listener.rb +++ b/lib/ronin/cli/commands/new/dns_listener.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/commands/new/dns_proxy.rb b/lib/ronin/cli/commands/new/dns_proxy.rb index 9e06e283f..3f9c3431b 100644 --- a/lib/ronin/cli/commands/new/dns_proxy.rb +++ b/lib/ronin/cli/commands/new/dns_proxy.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/commands/new/exploit.rb b/lib/ronin/cli/commands/new/exploit.rb index 6904a42f3..1537cbd71 100644 --- a/lib/ronin/cli/commands/new/exploit.rb +++ b/lib/ronin/cli/commands/new/exploit.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/commands/new/http_listener.rb b/lib/ronin/cli/commands/new/http_listener.rb index a2833269a..56f68b897 100644 --- a/lib/ronin/cli/commands/new/http_listener.rb +++ b/lib/ronin/cli/commands/new/http_listener.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/commands/new/nokogiri.rb b/lib/ronin/cli/commands/new/nokogiri.rb index 560245d3f..6af822f35 100644 --- a/lib/ronin/cli/commands/new/nokogiri.rb +++ b/lib/ronin/cli/commands/new/nokogiri.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/commands/new/payload.rb b/lib/ronin/cli/commands/new/payload.rb index 164a565bb..d2cc840a7 100644 --- a/lib/ronin/cli/commands/new/payload.rb +++ b/lib/ronin/cli/commands/new/payload.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/commands/new/project.rb b/lib/ronin/cli/commands/new/project.rb index f4b4756e7..34c3d9384 100644 --- a/lib/ronin/cli/commands/new/project.rb +++ b/lib/ronin/cli/commands/new/project.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/commands/new/script.rb b/lib/ronin/cli/commands/new/script.rb index deff86273..c9bea8731 100644 --- a/lib/ronin/cli/commands/new/script.rb +++ b/lib/ronin/cli/commands/new/script.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/commands/new/web_app.rb b/lib/ronin/cli/commands/new/web_app.rb index dfa95a696..5f49078bf 100644 --- a/lib/ronin/cli/commands/new/web_app.rb +++ b/lib/ronin/cli/commands/new/web_app.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/commands/new/web_server.rb b/lib/ronin/cli/commands/new/web_server.rb index 5523e8007..cb0d691bb 100644 --- a/lib/ronin/cli/commands/new/web_server.rb +++ b/lib/ronin/cli/commands/new/web_server.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/commands/new/web_spider.rb b/lib/ronin/cli/commands/new/web_spider.rb index afac4f1d3..b1bf63975 100644 --- a/lib/ronin/cli/commands/new/web_spider.rb +++ b/lib/ronin/cli/commands/new/web_spider.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/commands/pack.rb b/lib/ronin/cli/commands/pack.rb index 819ab9a2e..b7fb7742a 100644 --- a/lib/ronin/cli/commands/pack.rb +++ b/lib/ronin/cli/commands/pack.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/commands/proxy.rb b/lib/ronin/cli/commands/proxy.rb index 446a90787..e8789bb1c 100644 --- a/lib/ronin/cli/commands/proxy.rb +++ b/lib/ronin/cli/commands/proxy.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/commands/public_suffix_list.rb b/lib/ronin/cli/commands/public_suffix_list.rb index 232b729d7..547ef5d67 100644 --- a/lib/ronin/cli/commands/public_suffix_list.rb +++ b/lib/ronin/cli/commands/public_suffix_list.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/commands/quote.rb b/lib/ronin/cli/commands/quote.rb index e5de0e3af..5e3f10cdd 100644 --- a/lib/ronin/cli/commands/quote.rb +++ b/lib/ronin/cli/commands/quote.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/commands/rot.rb b/lib/ronin/cli/commands/rot.rb index 68db3686f..bcec5aeef 100644 --- a/lib/ronin/cli/commands/rot.rb +++ b/lib/ronin/cli/commands/rot.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/commands/sha1.rb b/lib/ronin/cli/commands/sha1.rb index f81823fca..cefd3d1b5 100644 --- a/lib/ronin/cli/commands/sha1.rb +++ b/lib/ronin/cli/commands/sha1.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/commands/sha256.rb b/lib/ronin/cli/commands/sha256.rb index 1f601e1f0..0721d9044 100644 --- a/lib/ronin/cli/commands/sha256.rb +++ b/lib/ronin/cli/commands/sha256.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/commands/sha512.rb b/lib/ronin/cli/commands/sha512.rb index ca3e85800..d7f1dce37 100644 --- a/lib/ronin/cli/commands/sha512.rb +++ b/lib/ronin/cli/commands/sha512.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/commands/strings.rb b/lib/ronin/cli/commands/strings.rb index 2d40f8f44..9f3f12622 100644 --- a/lib/ronin/cli/commands/strings.rb +++ b/lib/ronin/cli/commands/strings.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/commands/tips.rb b/lib/ronin/cli/commands/tips.rb index 5347d70f8..057a01aef 100644 --- a/lib/ronin/cli/commands/tips.rb +++ b/lib/ronin/cli/commands/tips.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/commands/tld_list.rb b/lib/ronin/cli/commands/tld_list.rb index 507503fa0..19996e576 100644 --- a/lib/ronin/cli/commands/tld_list.rb +++ b/lib/ronin/cli/commands/tld_list.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/commands/typo.rb b/lib/ronin/cli/commands/typo.rb index 62bfc2d3e..a7e4fb3f4 100644 --- a/lib/ronin/cli/commands/typo.rb +++ b/lib/ronin/cli/commands/typo.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/commands/typosquat.rb b/lib/ronin/cli/commands/typosquat.rb index 036981501..681eb1768 100644 --- a/lib/ronin/cli/commands/typosquat.rb +++ b/lib/ronin/cli/commands/typosquat.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/commands/unescape.rb b/lib/ronin/cli/commands/unescape.rb index aaa827a6b..b450b3ba8 100644 --- a/lib/ronin/cli/commands/unescape.rb +++ b/lib/ronin/cli/commands/unescape.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/commands/unhexdump.rb b/lib/ronin/cli/commands/unhexdump.rb index 53f1a5789..c33fdc5c2 100644 --- a/lib/ronin/cli/commands/unhexdump.rb +++ b/lib/ronin/cli/commands/unhexdump.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/commands/unpack.rb b/lib/ronin/cli/commands/unpack.rb index c73794ef2..3600067ee 100644 --- a/lib/ronin/cli/commands/unpack.rb +++ b/lib/ronin/cli/commands/unpack.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/commands/unquote.rb b/lib/ronin/cli/commands/unquote.rb index 46a43885e..2bf02d917 100644 --- a/lib/ronin/cli/commands/unquote.rb +++ b/lib/ronin/cli/commands/unquote.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/commands/url.rb b/lib/ronin/cli/commands/url.rb index 1fc080e0e..c901e3bdb 100644 --- a/lib/ronin/cli/commands/url.rb +++ b/lib/ronin/cli/commands/url.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/commands/xor.rb b/lib/ronin/cli/commands/xor.rb index 0d0224632..4f7507614 100644 --- a/lib/ronin/cli/commands/xor.rb +++ b/lib/ronin/cli/commands/xor.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/dns.rb b/lib/ronin/cli/dns.rb index ba09bb387..eb0b8e795 100644 --- a/lib/ronin/cli/dns.rb +++ b/lib/ronin/cli/dns.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/file_processor_command.rb b/lib/ronin/cli/file_processor_command.rb index 9e0087a9e..4c5289678 100644 --- a/lib/ronin/cli/file_processor_command.rb +++ b/lib/ronin/cli/file_processor_command.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/host_and_port.rb b/lib/ronin/cli/host_and_port.rb index 3c8d8f148..64e1054dd 100644 --- a/lib/ronin/cli/host_and_port.rb +++ b/lib/ronin/cli/host_and_port.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/http_shell.rb b/lib/ronin/cli/http_shell.rb index 8d506af99..882c9dc6e 100644 --- a/lib/ronin/cli/http_shell.rb +++ b/lib/ronin/cli/http_shell.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/key_options.rb b/lib/ronin/cli/key_options.rb index be1d1d8c4..9f300a6a2 100644 --- a/lib/ronin/cli/key_options.rb +++ b/lib/ronin/cli/key_options.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/method_options.rb b/lib/ronin/cli/method_options.rb index 73ef0a1d9..3a2eb99c7 100644 --- a/lib/ronin/cli/method_options.rb +++ b/lib/ronin/cli/method_options.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/pattern_options.rb b/lib/ronin/cli/pattern_options.rb index c26fd0e6a..a90d05e77 100644 --- a/lib/ronin/cli/pattern_options.rb +++ b/lib/ronin/cli/pattern_options.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/printing/http.rb b/lib/ronin/cli/printing/http.rb index f759acb21..2e10de2f3 100644 --- a/lib/ronin/cli/printing/http.rb +++ b/lib/ronin/cli/printing/http.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/printing/syntax_highlighting.rb b/lib/ronin/cli/printing/syntax_highlighting.rb index f3e851911..6816be814 100644 --- a/lib/ronin/cli/printing/syntax_highlighting.rb +++ b/lib/ronin/cli/printing/syntax_highlighting.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/ruby_shell.rb b/lib/ronin/cli/ruby_shell.rb index 822a485b8..70c340cd9 100644 --- a/lib/ronin/cli/ruby_shell.rb +++ b/lib/ronin/cli/ruby_shell.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/string_methods_command.rb b/lib/ronin/cli/string_methods_command.rb index a3ddcfeca..58732be75 100644 --- a/lib/ronin/cli/string_methods_command.rb +++ b/lib/ronin/cli/string_methods_command.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/string_processor_command.rb b/lib/ronin/cli/string_processor_command.rb index 6ddc31b8f..902901f52 100644 --- a/lib/ronin/cli/string_processor_command.rb +++ b/lib/ronin/cli/string_processor_command.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/typo_options.rb b/lib/ronin/cli/typo_options.rb index d5aab19fc..ae1945a05 100644 --- a/lib/ronin/cli/typo_options.rb +++ b/lib/ronin/cli/typo_options.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/cli/value_processor_command.rb b/lib/ronin/cli/value_processor_command.rb index 33b667b79..de3e7340b 100644 --- a/lib/ronin/cli/value_processor_command.rb +++ b/lib/ronin/cli/value_processor_command.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/root.rb b/lib/ronin/root.rb index f8336c771..213504d42 100644 --- a/lib/ronin/root.rb +++ b/lib/ronin/root.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/lib/ronin/version.rb b/lib/ronin/version.rb index e2ae6c98d..319ec084e 100644 --- a/lib/ronin/version.rb +++ b/lib/ronin/version.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true # -# Copyright (c) 2006-2023 Hal Brodigan (postmodern.mod3 at gmail.com) +# Copyright (c) 2006-2024 Hal Brodigan (postmodern.mod3 at gmail.com) # # Ronin is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by