Skip to content

Commit 09ec106

Browse files
committed
Update licensing information and documentation for clarity
- Changed copyright year from 2025 to 2026 in main.go. - Updated licensing terms in main.go to reflect GNU General Public License v3.0. - Revised README.md to specify licensing under GPL v3.0 and clarify usage terms. - Modified index.md to indicate licensing under GPL v3.0 with a link to the LICENSE file.
1 parent b75875b commit 09ec106

File tree

3 files changed

+17
-16
lines changed

3 files changed

+17
-16
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![Build](https://img.shields.io/github/actions/workflow/status/TMHSDigital/subenum/go.yml?branch=main&label=build)](https://github.com/TMHSDigital/subenum/actions)
44
[![Go Report Card](https://goreportcard.com/badge/github.com/TMHSDigital/subenum)](https://goreportcard.com/report/github.com/TMHSDigital/subenum)
55
[![Release](https://img.shields.io/github/v/release/TMHSDigital/subenum)](https://github.com/TMHSDigital/subenum/releases)
6-
[![License](https://img.shields.io/github/license/TMHSDigital/subenum)](LICENSE)
6+
[![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](LICENSE)
77
[![Docker](https://img.shields.io/badge/docker-supported-0db7ed)](docs/docker.md)
88
[![CodeQL](https://img.shields.io/github/actions/workflow/status/TMHSDigital/subenum/codeql.yml?label=CodeQL)](https://github.com/TMHSDigital/subenum/actions/workflows/codeql.yml)
99

@@ -206,7 +206,7 @@ This software is provided for **educational and authorized security testing purp
206206
- Do not use this tool for unauthorized access, data collection, or disruption of services.
207207
- Users are solely responsible for compliance with all applicable laws.
208208

209-
The developers explicitly prohibit malicious use. See [LICENSE](LICENSE) for full terms.
209+
This software is licensed under the GNU General Public License v3.0. See [LICENSE](LICENSE) for full terms. Derivatives must also be distributed under GPL-3.0.
210210

211211
---
212212

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,4 +92,4 @@ This tool is provided for **educational and legitimate security testing purposes
9292

9393
## License
9494

95-
This project is licensed under the MIT License with additional restrictions against malicious use.
95+
This project is licensed under the GNU General Public License v3.0. See the [LICENSE](https://github.com/TMHSDigital/subenum/blob/main/LICENSE) file for full terms.

main.go

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,21 @@
1-
// Copyright (c) 2025 TM Hospitality Strategies
2-
//
31
// subenum - A Go-based CLI tool for subdomain enumeration.
2+
// Copyright (C) 2026 TM Hospitality Strategies
3+
//
4+
// This program is free software: you can redistribute it and/or modify
5+
// it under the terms of the GNU General Public License as published by
6+
// the Free Software Foundation, either version 3 of the License, or
7+
// (at your option) any later version.
48
//
5-
// IMPORTANT LEGAL NOTICE:
6-
// This tool is provided for educational and legitimate security testing purposes ONLY.
7-
// Usage of this tool against any domain without explicit permission from the domain
8-
// owner may violate applicable local, national, and/or international laws.
9+
// This program is distributed in the hope that it will be useful,
10+
// but WITHOUT ANY WARRANTY; without even the implied warranty of
11+
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12+
// GNU General Public License for more details.
913
//
10-
// Users MUST:
11-
// 1. Only scan domains they own or have explicit permission to test.
12-
// 2. Comply with all applicable laws and regulations.
13-
// 3. Use this tool responsibly and ethically.
14+
// You should have received a copy of the GNU General Public License
15+
// along with this program. If not, see <https://www.gnu.org/licenses/>.
1416
//
15-
// The developer(s) explicitly prohibit any malicious or unauthorized use of this tool
16-
// and assume no liability for any misuse or damages resulting from its use.
17-
// See the LICENSE file for full terms and conditions.
17+
// For authorized use only. Only scan domains you own or have explicit
18+
// written permission to test.
1819

1920
package main
2021

0 commit comments

Comments
 (0)