diff --git a/VERSION b/VERSION index badcc90e3..985435d2c 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -Wapiti 3.1.6 +Wapiti 3.1.7 diff --git a/bin/wapiti b/bin/wapiti index 7694f7de8..d5e64d912 100755 --- a/bin/wapiti +++ b/bin/wapiti @@ -1,7 +1,7 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2017-2022 Nicolas SURRIBAS +# Copyright (C) 2017-2023 Nicolas SURRIBAS # # This program 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/bin/wapiti-getcookie b/bin/wapiti-getcookie index c2b6b770b..ad65a4d18 100755 --- a/bin/wapiti-getcookie +++ b/bin/wapiti-getcookie @@ -1,7 +1,7 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2017-2022 Nicolas Surribas +# Copyright (C) 2017-2023 Nicolas Surribas # # This program 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/doc/ChangeLog_Wapiti b/doc/ChangeLog_Wapiti index 6555c332f..25d0b16f6 100644 --- a/doc/ChangeLog_Wapiti +++ b/doc/ChangeLog_Wapiti @@ -1,3 +1,8 @@ +05/03/2023 + Wapiti 3.1.7 + Support for Python 3.11 + Upgrade optional sslyze dependency + 31/01/2023 Wapiti 3.1.6 Wappalyze: improve detection with DOM rules diff --git a/doc/wapiti-getcookie.1 b/doc/wapiti-getcookie.1 index 01bc6e916..b0f0da686 100644 --- a/doc/wapiti-getcookie.1 +++ b/doc/wapiti-getcookie.1 @@ -89,7 +89,7 @@ Example: \-d \'login=admin&password=letmein&submit=Login\' Wapiti is covered by the GNU General Public License (GPL), version 2\. Please read the LICENSE file for more information\. . .SH "COPYRIGHT" -Copyright (c) 2006\-2022 Nicolas Surribas\. +Copyright (c) 2006\-2023 Nicolas Surribas\. . .SH "AUTHORS" Nicolas Surribas is the main author, but the whole list of contributors is found in the separate AUTHORS file\. diff --git a/doc/wapiti-getcookie.1.html b/doc/wapiti-getcookie.1.html index f8e7ea590..93e316234 100644 --- a/doc/wapiti-getcookie.1.html +++ b/doc/wapiti-getcookie.1.html @@ -122,7 +122,7 @@

LICENSE

-

Copyright (c) 2006-2022 Nicolas Surribas.

+

Copyright (c) 2006-2023 Nicolas Surribas.

AUTHORS

diff --git a/doc/wapiti-getcookie.ronn b/doc/wapiti-getcookie.ronn index 8eb11dc6a..dca017158 100644 --- a/doc/wapiti-getcookie.ronn +++ b/doc/wapiti-getcookie.ronn @@ -51,7 +51,7 @@ Please read the LICENSE file for more information. ## COPYRIGHT -Copyright (c) 2006-2022 Nicolas Surribas. +Copyright (c) 2006-2023 Nicolas Surribas. ## AUTHORS diff --git a/doc/wapiti.1 b/doc/wapiti.1 index 77cfce736..d19e856e8 100644 --- a/doc/wapiti.1 +++ b/doc/wapiti.1 @@ -770,7 +770,7 @@ Show detailed options description\. More details are available in this manpage t Wapiti is covered by the GNU General Public License (GPL), version 2\. Please read the LICENSE file for more information\. . .SH "COPYRIGHT" -Copyright (c) 2006\-2022 Nicolas Surribas\. +Copyright (c) 2006\-2023 Nicolas Surribas\. . .SH "AUTHORS" Nicolas Surribas is the main author, but the whole list of contributors is found in the separate AUTHORS file\. diff --git a/doc/wapiti.1.html b/doc/wapiti.1.html index 528b85f64..79c911cc4 100644 --- a/doc/wapiti.1.html +++ b/doc/wapiti.1.html @@ -473,7 +473,7 @@

LICENSE

-

Copyright (c) 2006-2022 Nicolas Surribas.

+

Copyright (c) 2006-2023 Nicolas Surribas.

AUTHORS

diff --git a/doc/wapiti.ronn b/doc/wapiti.ronn index a64459545..574822f46 100644 --- a/doc/wapiti.ronn +++ b/doc/wapiti.ronn @@ -368,7 +368,7 @@ Please read the LICENSE file for more information. ## COPYRIGHT -Copyright (c) 2006-2022 Nicolas Surribas. +Copyright (c) 2006-2023 Nicolas Surribas. ## AUTHORS diff --git a/setup.py b/setup.py index 1bfedf6d0..6ecbae291 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ from setuptools import setup, find_packages from setuptools.command.test import test as TestCommand -VERSION = "3.1.6" +VERSION = "3.1.7" DOC_DIR = "share/doc/wapiti" diff --git a/wapitiCore/__init__.py b/wapitiCore/__init__.py index b086994f8..8d2d8fd58 100644 --- a/wapitiCore/__init__.py +++ b/wapitiCore/__init__.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2017-2022 Nicolas Surribas +# Copyright (C) 2017-2023 Nicolas Surribas # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -18,4 +18,4 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA parser_name = "html.parser" -WAPITI_VERSION = "3.1.6" +WAPITI_VERSION = "3.1.7" diff --git a/wapitiCore/attack/attack.py b/wapitiCore/attack/attack.py index 0321c6685..42c8cd3c6 100644 --- a/wapitiCore/attack/attack.py +++ b/wapitiCore/attack/attack.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2008-2022 Nicolas Surribas +# Copyright (C) 2008-2023 Nicolas Surribas # # This program 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/wapitiCore/attack/mod_backup.py b/wapitiCore/attack/mod_backup.py index 99457e743..fa07a53b4 100644 --- a/wapitiCore/attack/mod_backup.py +++ b/wapitiCore/attack/mod_backup.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2009-2022 Nicolas Surribas +# Copyright (C) 2009-2023 Nicolas Surribas # # Original authors : # Anthony DUBOCAGE diff --git a/wapitiCore/attack/mod_brute_login_form.py b/wapitiCore/attack/mod_brute_login_form.py index 0388b9284..caded2b4d 100644 --- a/wapitiCore/attack/mod_brute_login_form.py +++ b/wapitiCore/attack/mod_brute_login_form.py @@ -1,5 +1,5 @@ # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2020-2022 Nicolas Surribas +# Copyright (C) 2020-2023 Nicolas Surribas # # This program 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/wapitiCore/attack/mod_buster.py b/wapitiCore/attack/mod_buster.py index 29f71b421..c25ae988f 100644 --- a/wapitiCore/attack/mod_buster.py +++ b/wapitiCore/attack/mod_buster.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2014-2022 Nicolas Surribas +# Copyright (C) 2014-2023 Nicolas Surribas # # This program 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/wapitiCore/attack/mod_cookieflags.py b/wapitiCore/attack/mod_cookieflags.py index 60662c7be..05ae08c21 100644 --- a/wapitiCore/attack/mod_cookieflags.py +++ b/wapitiCore/attack/mod_cookieflags.py @@ -1,5 +1,5 @@ # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2020-2022 Nicolas Surribas +# Copyright (C) 2020-2023 Nicolas Surribas # # This program 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/wapitiCore/attack/mod_crlf.py b/wapitiCore/attack/mod_crlf.py index b1ab98ed0..58aaaee05 100644 --- a/wapitiCore/attack/mod_crlf.py +++ b/wapitiCore/attack/mod_crlf.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2008-2022 Nicolas Surribas +# Copyright (C) 2008-2023 Nicolas Surribas # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by @@ -37,7 +37,7 @@ class ModuleCrlf(Attack): MSG_VULN = "CRLF Injection" do_get = True do_post = True - payloads = (quote("http://www.google.fr\r\nwapiti: 3.1.6 version"), Flags()) + payloads = (quote("http://www.google.fr\r\nwapiti: 3.1.7 version"), Flags()) def __init__(self, crawler, persister, attack_options, stop_event, crawler_configuration): super().__init__(crawler, persister, attack_options, stop_event, crawler_configuration) diff --git a/wapitiCore/attack/mod_csp.py b/wapitiCore/attack/mod_csp.py index 47f0dfae3..85751c3d8 100644 --- a/wapitiCore/attack/mod_csp.py +++ b/wapitiCore/attack/mod_csp.py @@ -1,5 +1,5 @@ # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2020-2022 Nicolas Surribas +# Copyright (C) 2020-2023 Nicolas Surribas # # This program 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/wapitiCore/attack/mod_csrf.py b/wapitiCore/attack/mod_csrf.py index 64006fac2..050e7fafa 100644 --- a/wapitiCore/attack/mod_csrf.py +++ b/wapitiCore/attack/mod_csrf.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2020-2022 Nicolas Surribas +# Copyright (C) 2020-2023 Nicolas Surribas # # This program 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/wapitiCore/attack/mod_exec.py b/wapitiCore/attack/mod_exec.py index 6671a7e4c..42078577a 100644 --- a/wapitiCore/attack/mod_exec.py +++ b/wapitiCore/attack/mod_exec.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2008-2022 Nicolas Surribas +# Copyright (C) 2008-2023 Nicolas Surribas # # This program 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/wapitiCore/attack/mod_file.py b/wapitiCore/attack/mod_file.py index 7dfb9daa1..7d22e1223 100644 --- a/wapitiCore/attack/mod_file.py +++ b/wapitiCore/attack/mod_file.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2008-2022 Nicolas Surribas +# Copyright (C) 2008-2023 Nicolas Surribas # # This program 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/wapitiCore/attack/mod_htaccess.py b/wapitiCore/attack/mod_htaccess.py index 627678174..e30fcb1ee 100644 --- a/wapitiCore/attack/mod_htaccess.py +++ b/wapitiCore/attack/mod_htaccess.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2009-2022 Nicolas Surribas +# Copyright (C) 2009-2023 Nicolas Surribas # # Original authors : # Anthony DUBOCAGE diff --git a/wapitiCore/attack/mod_http_headers.py b/wapitiCore/attack/mod_http_headers.py index 29443ff06..203c0d773 100644 --- a/wapitiCore/attack/mod_http_headers.py +++ b/wapitiCore/attack/mod_http_headers.py @@ -1,5 +1,5 @@ # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2020-2022 Nicolas Surribas +# Copyright (C) 2020-2023 Nicolas Surribas # # This program 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/wapitiCore/attack/mod_methods.py b/wapitiCore/attack/mod_methods.py index 75a6a0a01..337d4462a 100644 --- a/wapitiCore/attack/mod_methods.py +++ b/wapitiCore/attack/mod_methods.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2018-2022 Nicolas Surribas +# Copyright (C) 2018-2023 Nicolas Surribas # # This program 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/wapitiCore/attack/mod_nikto.py b/wapitiCore/attack/mod_nikto.py index 053f8d864..116671153 100644 --- a/wapitiCore/attack/mod_nikto.py +++ b/wapitiCore/attack/mod_nikto.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2009-2022 Nicolas Surribas +# Copyright (C) 2009-2023 Nicolas Surribas # # This program 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/wapitiCore/attack/mod_permanentxss.py b/wapitiCore/attack/mod_permanentxss.py index 8f168905e..e2a78b53f 100644 --- a/wapitiCore/attack/mod_permanentxss.py +++ b/wapitiCore/attack/mod_permanentxss.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2008-2022 Nicolas Surribas +# Copyright (C) 2008-2023 Nicolas Surribas # # This program 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/wapitiCore/attack/mod_redirect.py b/wapitiCore/attack/mod_redirect.py index 0659760ac..cfeabc40c 100644 --- a/wapitiCore/attack/mod_redirect.py +++ b/wapitiCore/attack/mod_redirect.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2019-2022 Nicolas Surribas +# Copyright (C) 2019-2023 Nicolas Surribas # # This program 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/wapitiCore/attack/mod_shellshock.py b/wapitiCore/attack/mod_shellshock.py index 0aa8211ae..573bc0987 100644 --- a/wapitiCore/attack/mod_shellshock.py +++ b/wapitiCore/attack/mod_shellshock.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2014-2022 Nicolas Surribas +# Copyright (C) 2014-2023 Nicolas Surribas # # This program 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/wapitiCore/attack/mod_sql.py b/wapitiCore/attack/mod_sql.py index 47f977046..c1bea5a29 100644 --- a/wapitiCore/attack/mod_sql.py +++ b/wapitiCore/attack/mod_sql.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2008-2022 Nicolas Surribas +# Copyright (C) 2008-2023 Nicolas Surribas # # This program 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/wapitiCore/attack/mod_ssl.py b/wapitiCore/attack/mod_ssl.py index a3da0f5d2..30b1e7705 100644 --- a/wapitiCore/attack/mod_ssl.py +++ b/wapitiCore/attack/mod_ssl.py @@ -1,5 +1,5 @@ # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2021-2022 Nicolas Surribas +# Copyright (C) 2021-2023 Nicolas Surribas # # This program 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/wapitiCore/attack/mod_ssrf.py b/wapitiCore/attack/mod_ssrf.py index 1ace064ce..89cc9bf15 100644 --- a/wapitiCore/attack/mod_ssrf.py +++ b/wapitiCore/attack/mod_ssrf.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2018-2022 Nicolas Surribas +# Copyright (C) 2018-2023 Nicolas Surribas # # This program 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/wapitiCore/attack/mod_takeover.py b/wapitiCore/attack/mod_takeover.py index cbf46c67f..fce6899ea 100644 --- a/wapitiCore/attack/mod_takeover.py +++ b/wapitiCore/attack/mod_takeover.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2021-2022 Nicolas Surribas +# Copyright (C) 2021-2023 Nicolas Surribas # # This program 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/wapitiCore/attack/mod_timesql.py b/wapitiCore/attack/mod_timesql.py index 4578dc9d6..645617a8a 100644 --- a/wapitiCore/attack/mod_timesql.py +++ b/wapitiCore/attack/mod_timesql.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2008-2022 Nicolas Surribas +# Copyright (C) 2008-2023 Nicolas Surribas # # This program 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/wapitiCore/attack/mod_wapp.py b/wapitiCore/attack/mod_wapp.py index 590a5e5b8..1edc2431b 100644 --- a/wapitiCore/attack/mod_wapp.py +++ b/wapitiCore/attack/mod_wapp.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2020-2022 Nicolas Surribas +# Copyright (C) 2020-2023 Nicolas Surribas # # This program 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/wapitiCore/attack/mod_xss.py b/wapitiCore/attack/mod_xss.py index e0e99d744..d3b2c6b75 100644 --- a/wapitiCore/attack/mod_xss.py +++ b/wapitiCore/attack/mod_xss.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2008-2022 Nicolas Surribas +# Copyright (C) 2008-2023 Nicolas Surribas # # This program 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/wapitiCore/attack/mod_xxe.py b/wapitiCore/attack/mod_xxe.py index 4ac5397db..247e851fc 100644 --- a/wapitiCore/attack/mod_xxe.py +++ b/wapitiCore/attack/mod_xxe.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2019-2022 Nicolas Surribas +# Copyright (C) 2019-2023 Nicolas Surribas # # This program 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/wapitiCore/controller/wapiti.py b/wapitiCore/controller/wapiti.py index e33d85a60..db936ccf7 100644 --- a/wapitiCore/controller/wapiti.py +++ b/wapitiCore/controller/wapiti.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2022 Nicolas SURRIBAS +# Copyright (C) 2023 Nicolas SURRIBAS # # This program 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/wapitiCore/definitions/backup.py b/wapitiCore/definitions/backup.py index f0afaa4ec..160a3b77e 100644 --- a/wapitiCore/definitions/backup.py +++ b/wapitiCore/definitions/backup.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2021-2022 Nicolas Surribas +# Copyright (C) 2021-2023 Nicolas Surribas # # This program 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/wapitiCore/definitions/credentials.py b/wapitiCore/definitions/credentials.py index f09f00df8..0cbf02bed 100644 --- a/wapitiCore/definitions/credentials.py +++ b/wapitiCore/definitions/credentials.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2021-2022 Nicolas Surribas +# Copyright (C) 2021-2023 Nicolas Surribas # # This program 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/wapitiCore/definitions/crlf.py b/wapitiCore/definitions/crlf.py index 04749aabc..4fd917a59 100644 --- a/wapitiCore/definitions/crlf.py +++ b/wapitiCore/definitions/crlf.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2021-2022 Nicolas Surribas +# Copyright (C) 2021-2023 Nicolas Surribas # # This program 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/wapitiCore/definitions/csp.py b/wapitiCore/definitions/csp.py index 311b67185..c6f1966df 100644 --- a/wapitiCore/definitions/csp.py +++ b/wapitiCore/definitions/csp.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2021-2022 Nicolas Surribas +# Copyright (C) 2021-2023 Nicolas Surribas # # This program 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/wapitiCore/definitions/csrf.py b/wapitiCore/definitions/csrf.py index b1f053e53..5c47f0280 100644 --- a/wapitiCore/definitions/csrf.py +++ b/wapitiCore/definitions/csrf.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2021-2022 Nicolas Surribas +# Copyright (C) 2021-2023 Nicolas Surribas # # This program 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/wapitiCore/definitions/dangerous_resource.py b/wapitiCore/definitions/dangerous_resource.py index 9135177f3..f1c089a52 100644 --- a/wapitiCore/definitions/dangerous_resource.py +++ b/wapitiCore/definitions/dangerous_resource.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2021-2022 Nicolas Surribas +# Copyright (C) 2021-2023 Nicolas Surribas # # This program 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/wapitiCore/definitions/exec.py b/wapitiCore/definitions/exec.py index 22f28a658..67d35f8ec 100644 --- a/wapitiCore/definitions/exec.py +++ b/wapitiCore/definitions/exec.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2021-2022 Nicolas Surribas +# Copyright (C) 2021-2023 Nicolas Surribas # # This program 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/wapitiCore/definitions/file.py b/wapitiCore/definitions/file.py index 2daf5e949..7228d8079 100644 --- a/wapitiCore/definitions/file.py +++ b/wapitiCore/definitions/file.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2021-2022 Nicolas Surribas +# Copyright (C) 2021-2023 Nicolas Surribas # # This program 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/wapitiCore/definitions/fingerprint.py b/wapitiCore/definitions/fingerprint.py index d4bd26570..dbce01384 100644 --- a/wapitiCore/definitions/fingerprint.py +++ b/wapitiCore/definitions/fingerprint.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2021-2022 Nicolas Surribas +# Copyright (C) 2021-2023 Nicolas Surribas # # This program 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/wapitiCore/definitions/htaccess.py b/wapitiCore/definitions/htaccess.py index 40c4f8611..3367c275a 100644 --- a/wapitiCore/definitions/htaccess.py +++ b/wapitiCore/definitions/htaccess.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2021-2022 Nicolas Surribas +# Copyright (C) 2021-2023 Nicolas Surribas # # This program 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/wapitiCore/definitions/http_headers.py b/wapitiCore/definitions/http_headers.py index 500e9e00b..1c476b13b 100644 --- a/wapitiCore/definitions/http_headers.py +++ b/wapitiCore/definitions/http_headers.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2021-2022 Nicolas Surribas +# Copyright (C) 2021-2023 Nicolas Surribas # # This program 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/wapitiCore/definitions/http_only.py b/wapitiCore/definitions/http_only.py index fec31c2be..95dc7538f 100644 --- a/wapitiCore/definitions/http_only.py +++ b/wapitiCore/definitions/http_only.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2021-2022 Nicolas Surribas +# Copyright (C) 2021-2023 Nicolas Surribas # # This program 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/wapitiCore/definitions/internal_error.py b/wapitiCore/definitions/internal_error.py index 72f92bdac..55fa109c8 100644 --- a/wapitiCore/definitions/internal_error.py +++ b/wapitiCore/definitions/internal_error.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2021-2022 Nicolas Surribas +# Copyright (C) 2021-2023 Nicolas Surribas # # This program 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/wapitiCore/definitions/redirect.py b/wapitiCore/definitions/redirect.py index 7f73f24d3..9f5bbf846 100644 --- a/wapitiCore/definitions/redirect.py +++ b/wapitiCore/definitions/redirect.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2021-2022 Nicolas Surribas +# Copyright (C) 2021-2023 Nicolas Surribas # # This program 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/wapitiCore/definitions/resource_consumption.py b/wapitiCore/definitions/resource_consumption.py index 4535a1d01..8672f540f 100644 --- a/wapitiCore/definitions/resource_consumption.py +++ b/wapitiCore/definitions/resource_consumption.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2021-2022 Nicolas Surribas +# Copyright (C) 2021-2023 Nicolas Surribas # # This program 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/wapitiCore/definitions/secure_cookie.py b/wapitiCore/definitions/secure_cookie.py index aabdf9dcc..b628a0688 100644 --- a/wapitiCore/definitions/secure_cookie.py +++ b/wapitiCore/definitions/secure_cookie.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2021-2022 Nicolas Surribas +# Copyright (C) 2021-2023 Nicolas Surribas # # This program 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/wapitiCore/definitions/sql.py b/wapitiCore/definitions/sql.py index 7eac01623..5844cea78 100644 --- a/wapitiCore/definitions/sql.py +++ b/wapitiCore/definitions/sql.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2021-2022 Nicolas Surribas +# Copyright (C) 2021-2023 Nicolas Surribas # # This program 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/wapitiCore/definitions/ssl.py b/wapitiCore/definitions/ssl.py index 887112130..b9f966c29 100644 --- a/wapitiCore/definitions/ssl.py +++ b/wapitiCore/definitions/ssl.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2021-2022 Nicolas Surribas +# Copyright (C) 2021-2023 Nicolas Surribas # # This program 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/wapitiCore/definitions/ssrf.py b/wapitiCore/definitions/ssrf.py index 1a1b8ec29..ee9b61f16 100644 --- a/wapitiCore/definitions/ssrf.py +++ b/wapitiCore/definitions/ssrf.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2021-2022 Nicolas Surribas +# Copyright (C) 2021-2023 Nicolas Surribas # # This program 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/wapitiCore/definitions/stored_xss.py b/wapitiCore/definitions/stored_xss.py index 5c09e2962..a68fdc6eb 100644 --- a/wapitiCore/definitions/stored_xss.py +++ b/wapitiCore/definitions/stored_xss.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2021-2022 Nicolas Surribas +# Copyright (C) 2021-2023 Nicolas Surribas # # This program 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/wapitiCore/definitions/subdomain_takeovers.py b/wapitiCore/definitions/subdomain_takeovers.py index 2a5774b63..b33a99709 100644 --- a/wapitiCore/definitions/subdomain_takeovers.py +++ b/wapitiCore/definitions/subdomain_takeovers.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2021-2022 Nicolas Surribas +# Copyright (C) 2021-2023 Nicolas Surribas # # This program 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/wapitiCore/definitions/timesql.py b/wapitiCore/definitions/timesql.py index 3fa10feb5..8b9ec0d0f 100644 --- a/wapitiCore/definitions/timesql.py +++ b/wapitiCore/definitions/timesql.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2021-2022 Nicolas Surribas +# Copyright (C) 2021-2023 Nicolas Surribas # # This program 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/wapitiCore/definitions/xxe.py b/wapitiCore/definitions/xxe.py index 7278d3307..4a1d281e0 100644 --- a/wapitiCore/definitions/xxe.py +++ b/wapitiCore/definitions/xxe.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2021-2022 Nicolas Surribas +# Copyright (C) 2021-2023 Nicolas Surribas # # This program 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/wapitiCore/language/vulnerability.py b/wapitiCore/language/vulnerability.py index d38355a40..8e10bc575 100644 --- a/wapitiCore/language/vulnerability.py +++ b/wapitiCore/language/vulnerability.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2013-2022 Nicolas Surribas +# Copyright (C) 2013-2023 Nicolas Surribas # # This program 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/wapitiCore/main/banners.py b/wapitiCore/main/banners.py index a960a3d87..76791a350 100644 --- a/wapitiCore/main/banners.py +++ b/wapitiCore/main/banners.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2022 Nicolas SURRIBAS +# Copyright (C) 2023 Nicolas SURRIBAS # # This program 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/wapitiCore/main/getcookie.py b/wapitiCore/main/getcookie.py index 69816d221..1dff2a5ef 100644 --- a/wapitiCore/main/getcookie.py +++ b/wapitiCore/main/getcookie.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2006-2022 Nicolas Surribas +# Copyright (C) 2006-2023 Nicolas Surribas # # This program 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/wapitiCore/main/log.py b/wapitiCore/main/log.py index b3a4f7f08..77a17793a 100644 --- a/wapitiCore/main/log.py +++ b/wapitiCore/main/log.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2006-2022 Nicolas SURRIBAS +# Copyright (C) 2006-2023 Nicolas SURRIBAS # # This program 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/wapitiCore/main/wapiti.py b/wapitiCore/main/wapiti.py index 1c2ce3da9..d991173e1 100755 --- a/wapitiCore/main/wapiti.py +++ b/wapitiCore/main/wapiti.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2006-2022 Nicolas SURRIBAS +# Copyright (C) 2006-2023 Nicolas SURRIBAS # # This program 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/wapitiCore/net/auth.py b/wapitiCore/net/auth.py index 8263ff3f7..eb1f72dc9 100644 --- a/wapitiCore/net/auth.py +++ b/wapitiCore/net/auth.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2022 Nicolas SURRIBAS +# Copyright (C) 2023 Nicolas SURRIBAS # # This program 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/wapitiCore/net/classes.py b/wapitiCore/net/classes.py index 3fa819b0d..3ed3d9c54 100644 --- a/wapitiCore/net/classes.py +++ b/wapitiCore/net/classes.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2022 Nicolas SURRIBAS +# Copyright (C) 2023 Nicolas SURRIBAS # # This program 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/wapitiCore/net/cookies.py b/wapitiCore/net/cookies.py index b127e28ce..e80aa8a39 100644 --- a/wapitiCore/net/cookies.py +++ b/wapitiCore/net/cookies.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2022 Nicolas SURRIBAS +# Copyright (C) 2023 Nicolas SURRIBAS # # This program 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/wapitiCore/net/crawler.py b/wapitiCore/net/crawler.py index 6fc4b3ce2..55502e7e2 100644 --- a/wapitiCore/net/crawler.py +++ b/wapitiCore/net/crawler.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2006-2022 Nicolas SURRIBAS +# Copyright (C) 2006-2023 Nicolas SURRIBAS # # This program 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/wapitiCore/net/csp_utils.py b/wapitiCore/net/csp_utils.py index e4970397e..cad3ff872 100644 --- a/wapitiCore/net/csp_utils.py +++ b/wapitiCore/net/csp_utils.py @@ -1,5 +1,5 @@ # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2021-2022 Nicolas Surribas +# Copyright (C) 2021-2023 Nicolas Surribas # # This program 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/wapitiCore/net/explorer.py b/wapitiCore/net/explorer.py index 06ebef682..1d542c0af 100644 --- a/wapitiCore/net/explorer.py +++ b/wapitiCore/net/explorer.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2022 Nicolas SURRIBAS +# Copyright (C) 2023 Nicolas SURRIBAS # # This program 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/wapitiCore/net/intercepting_explorer.py b/wapitiCore/net/intercepting_explorer.py index 18ce15ee1..8f797fbed 100644 --- a/wapitiCore/net/intercepting_explorer.py +++ b/wapitiCore/net/intercepting_explorer.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2022 Nicolas SURRIBAS +# Copyright (C) 2023 Nicolas SURRIBAS # # This program 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/wapitiCore/net/jsoncookie.py b/wapitiCore/net/jsoncookie.py index 2a85651ee..d59ec0092 100644 --- a/wapitiCore/net/jsoncookie.py +++ b/wapitiCore/net/jsoncookie.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2012-2022 Nicolas Surribas +# Copyright (C) 2012-2023 Nicolas Surribas # # This program 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/wapitiCore/net/response.py b/wapitiCore/net/response.py index e7a9c2103..50f5e2168 100644 --- a/wapitiCore/net/response.py +++ b/wapitiCore/net/response.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2006-2022 Nicolas SURRIBAS +# Copyright (C) 2006-2023 Nicolas SURRIBAS # # This program 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/wapitiCore/net/scope.py b/wapitiCore/net/scope.py index 11bec84dc..7e7d235b4 100644 --- a/wapitiCore/net/scope.py +++ b/wapitiCore/net/scope.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2022 Nicolas SURRIBAS +# Copyright (C) 2023 Nicolas SURRIBAS # # This program 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/wapitiCore/net/sql_persister.py b/wapitiCore/net/sql_persister.py index c4659bf1e..4033786e4 100644 --- a/wapitiCore/net/sql_persister.py +++ b/wapitiCore/net/sql_persister.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2017-2022 Nicolas Surribas +# Copyright (C) 2017-2023 Nicolas Surribas # # This program 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/wapitiCore/net/xss_utils.py b/wapitiCore/net/xss_utils.py index 3b9cd73da..574a952bc 100644 --- a/wapitiCore/net/xss_utils.py +++ b/wapitiCore/net/xss_utils.py @@ -1,5 +1,5 @@ # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2020-2022 Nicolas Surribas +# Copyright (C) 2020-2023 Nicolas Surribas # # This program 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/wapitiCore/parsers/commandline.py b/wapitiCore/parsers/commandline.py index a656043bd..b32dd43d3 100644 --- a/wapitiCore/parsers/commandline.py +++ b/wapitiCore/parsers/commandline.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2022 Nicolas SURRIBAS +# Copyright (C) 2023 Nicolas SURRIBAS # # This program 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/wapitiCore/parsers/swf.py b/wapitiCore/parsers/swf.py index 2270d7636..95fbdbe81 100644 --- a/wapitiCore/parsers/swf.py +++ b/wapitiCore/parsers/swf.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2017-2022 Nicolas Surribas +# Copyright (C) 2017-2023 Nicolas Surribas # # This program 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/wapitiCore/report/__init__.py b/wapitiCore/report/__init__.py index 599fc6275..7e26652c9 100644 --- a/wapitiCore/report/__init__.py +++ b/wapitiCore/report/__init__.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2021-2022 Nicolas Surribas +# Copyright (C) 2021-2023 Nicolas Surribas # # This program 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/wapitiCore/report/csvreportgenerator.py b/wapitiCore/report/csvreportgenerator.py index c18aac949..42dc6b441 100644 --- a/wapitiCore/report/csvreportgenerator.py +++ b/wapitiCore/report/csvreportgenerator.py @@ -3,7 +3,7 @@ # CSV Report Generator Module for Wapiti Project # Wapiti Project (https://wapiti-scanner.github.io) # -# Copyright (C) 2021-2022 Nicolas SURRIBAS +# Copyright (C) 2021-2023 Nicolas SURRIBAS # # This program 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/wapitiCore/report/htmlreportgenerator.py b/wapitiCore/report/htmlreportgenerator.py index 0ec914df9..4e7342c5d 100644 --- a/wapitiCore/report/htmlreportgenerator.py +++ b/wapitiCore/report/htmlreportgenerator.py @@ -3,7 +3,7 @@ # HTML Report Generator Module for Wapiti Project # Wapiti Project (https://wapiti-scanner.github.io) # -# Copyright (C) 2017-2022 Nicolas SURRIBAS +# Copyright (C) 2017-2023 Nicolas SURRIBAS # # This program 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/wapitiCore/report/jsonreportgenerator.py b/wapitiCore/report/jsonreportgenerator.py index 035c1d0ac..a52b9a673 100644 --- a/wapitiCore/report/jsonreportgenerator.py +++ b/wapitiCore/report/jsonreportgenerator.py @@ -3,7 +3,7 @@ # JSON Report Generator Module for Wapiti Project # Wapiti Project (https://wapiti-scanner.github.io) # -# Copyright (C) 2014-2022 Nicolas SURRIBAS +# Copyright (C) 2014-2023 Nicolas SURRIBAS # # This program 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/wapitiCore/report/reportgenerator.py b/wapitiCore/report/reportgenerator.py index e58d1e8fe..81a5c5cdf 100644 --- a/wapitiCore/report/reportgenerator.py +++ b/wapitiCore/report/reportgenerator.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2008-2022 Nicolas Surribas +# Copyright (C) 2008-2023 Nicolas Surribas # # Original authors : # Alberto Pastor diff --git a/wapitiCore/report/txtreportgenerator.py b/wapitiCore/report/txtreportgenerator.py index da5465f98..b99c96679 100644 --- a/wapitiCore/report/txtreportgenerator.py +++ b/wapitiCore/report/txtreportgenerator.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2008-2022 Nicolas Surribas +# Copyright (C) 2008-2023 Nicolas Surribas # # This program 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/wapitiCore/report/xmlreportgenerator.py b/wapitiCore/report/xmlreportgenerator.py index 45db732ab..f2863e6ac 100644 --- a/wapitiCore/report/xmlreportgenerator.py +++ b/wapitiCore/report/xmlreportgenerator.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- # This file is part of the Wapiti project (https://wapiti-scanner.github.io) -# Copyright (C) 2008-2022 Nicolas Surribas +# Copyright (C) 2008-2023 Nicolas Surribas # # Original authors : # Alberto Pastor