Add LICENSE
This commit is contained in:
parent
1ffccd6e77
commit
757ece5967
@ -1,4 +1,5 @@
|
||||
// File: Configuration/AppSettings.cs
|
||||
/* This software is licensed by the MIT License, see LICENSE file */
|
||||
/* Copyright © 2024-2025 Gregory Lirent */
|
||||
|
||||
namespace WebmrAPI.Configuration
|
||||
{
|
||||
|
@ -1,4 +1,5 @@
|
||||
// File: Controllers/ProcessController.cs
|
||||
/* This software is licensed by the MIT License, see LICENSE file */
|
||||
/* Copyright © 2024-2025 Gregory Lirent */
|
||||
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
using System.Text.Json;
|
||||
|
@ -1,4 +1,5 @@
|
||||
// File: Exceptions/GettingModuleInfoException.cs
|
||||
/* This software is licensed by the MIT License, see LICENSE file */
|
||||
/* Copyright © 2024-2025 Gregory Lirent */
|
||||
|
||||
namespace WebmrAPI.Exceptions
|
||||
{
|
||||
|
@ -1,4 +1,5 @@
|
||||
// File: Exceptions/MemoryRegionException.cs
|
||||
/* This software is licensed by the MIT License, see LICENSE file */
|
||||
/* Copyright © 2024-2025 Gregory Lirent */
|
||||
|
||||
namespace WebmrAPI.Exceptions
|
||||
{
|
||||
|
@ -1,4 +1,5 @@
|
||||
// File: Exceptions/ProcessAccessDeniedException.cs
|
||||
/* This software is licensed by the MIT License, see LICENSE file */
|
||||
/* Copyright © 2024-2025 Gregory Lirent */
|
||||
|
||||
namespace WebmrAPI.Exceptions
|
||||
{
|
||||
|
@ -1,4 +1,5 @@
|
||||
// File: Exceptions/ProcessMonitorException.cs
|
||||
/* This software is licensed by the MIT License, see LICENSE file */
|
||||
/* Copyright © 2024-2025 Gregory Lirent */
|
||||
|
||||
namespace WebmrAPI.Exceptions
|
||||
{
|
||||
|
8
LICENSE
Normal file
8
LICENSE
Normal file
@ -0,0 +1,8 @@
|
||||
MIT License
|
||||
Copyright (c) <2024-2025> <Gregory Lirent>
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
@ -1,4 +1,5 @@
|
||||
// File: Models/MemoryRegion.cs
|
||||
/* This software is licensed by the MIT License, see LICENSE file */
|
||||
/* Copyright © 2024-2025 Gregory Lirent */
|
||||
|
||||
using System.Text.Json.Serialization;
|
||||
using WebmrAPI.Utils;
|
||||
|
@ -1,4 +1,5 @@
|
||||
// File: Models/MemoryRegionInfo.cs
|
||||
/* This software is licensed by the MIT License, see LICENSE file */
|
||||
/* Copyright © 2024-2025 Gregory Lirent */
|
||||
|
||||
using WebmrAPI.Utils;
|
||||
|
||||
|
@ -1,4 +1,5 @@
|
||||
// File: Models/ProcessBaseInfo.cs
|
||||
/* This software is licensed by the MIT License, see LICENSE file */
|
||||
/* Copyright © 2024-2025 Gregory Lirent */
|
||||
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
|
@ -1,4 +1,5 @@
|
||||
// File: Models/ProcessInfo.cs
|
||||
/* This software is licensed by the MIT License, see LICENSE file */
|
||||
/* Copyright © 2024-2025 Gregory Lirent */
|
||||
|
||||
using System.Runtime.Versioning;
|
||||
using System.Text.Json.Serialization;
|
||||
|
@ -1,4 +1,5 @@
|
||||
// File: Models/ProcessModuleInfo.cs
|
||||
/* This software is licensed by the MIT License, see LICENSE file */
|
||||
/* Copyright © 2024-2025 Gregory Lirent */
|
||||
|
||||
using System.Text.Json.Serialization;
|
||||
|
||||
|
@ -1,4 +1,5 @@
|
||||
// File: Models/ProcessThreadInfo.cs
|
||||
/* This software is licensed by the MIT License, see LICENSE file */
|
||||
/* Copyright © 2024-2025 Gregory Lirent */
|
||||
|
||||
using System.Text.Json.Serialization;
|
||||
using WebmrAPI.Utils;
|
||||
|
@ -1,4 +1,5 @@
|
||||
// File: Program.cs
|
||||
/* This software is licensed by the MIT License, see LICENSE file */
|
||||
/* Copyright © 2024-2025 Gregory Lirent */
|
||||
|
||||
using Microsoft.Extensions.Options;
|
||||
using System.Runtime.Versioning;
|
||||
|
@ -1,4 +1,5 @@
|
||||
// File: Services/ProcessMonitor.cs
|
||||
/* This software is licensed by the MIT License, see LICENSE file */
|
||||
/* Copyright © 2024-2025 Gregory Lirent */
|
||||
|
||||
using Microsoft.Extensions.Options;
|
||||
using System.Runtime.Versioning;
|
||||
|
@ -1,4 +1,5 @@
|
||||
// File: Services/Scanners/AbstractCpuScanner.cs
|
||||
/* This software is licensed by the MIT License, see LICENSE file */
|
||||
/* Copyright © 2024-2025 Gregory Lirent */
|
||||
|
||||
using WebmrAPI.Utils;
|
||||
|
||||
|
@ -1,4 +1,5 @@
|
||||
// File: Services/Scanners/AbstractScanner.cs
|
||||
/* This software is licensed by the MIT License, see LICENSE file */
|
||||
/* Copyright © 2024-2025 Gregory Lirent */
|
||||
|
||||
using WebmrAPI.Utils;
|
||||
|
||||
|
@ -1,4 +1,5 @@
|
||||
// File: Services/Scanners/IScanProvider.cs
|
||||
/* This software is licensed by the MIT License, see LICENSE file */
|
||||
/* Copyright © 2024-2025 Gregory Lirent */
|
||||
|
||||
namespace WebmrAPI.Services.Scanners
|
||||
{
|
||||
|
@ -1,4 +1,5 @@
|
||||
// File: Services/Scanners/IScannable.cs
|
||||
/* This software is licensed by the MIT License, see LICENSE file */
|
||||
/* Copyright © 2024-2025 Gregory Lirent */
|
||||
|
||||
namespace WebmrAPI.Services.Scanners
|
||||
{
|
||||
|
@ -1,4 +1,5 @@
|
||||
// File: Services/Scanners/MemoryRegionScanner.cs
|
||||
/* This software is licensed by the MIT License, see LICENSE file */
|
||||
/* Copyright © 2024-2025 Gregory Lirent */
|
||||
|
||||
using WebmrAPI.Exceptions;
|
||||
using WebmrAPI.Models;
|
||||
|
@ -1,4 +1,5 @@
|
||||
// File: Services/Scanners/ModuleScanner.cs
|
||||
/* This software is licensed by the MIT License, see LICENSE file */
|
||||
/* Copyright © 2024-2025 Gregory Lirent */
|
||||
|
||||
using System.Diagnostics;
|
||||
using WebmrAPI.Exceptions;
|
||||
|
@ -1,4 +1,5 @@
|
||||
// File: Services/Scanners/ProcessScanner.cs
|
||||
/* This software is licensed by the MIT License, see LICENSE file */
|
||||
/* Copyright © 2024-2025 Gregory Lirent */
|
||||
|
||||
using System.Diagnostics;
|
||||
using System.Management;
|
||||
|
@ -1,4 +1,5 @@
|
||||
// File: Services/Scanners/ScanProvider.cs
|
||||
/* This software is licensed by the MIT License, see LICENSE file */
|
||||
/* Copyright © 2024-2025 Gregory Lirent */
|
||||
|
||||
using WebmrAPI.Models;
|
||||
|
||||
|
@ -1,6 +1,5 @@
|
||||
// File: Services/Scanners/ScanQueue.cs
|
||||
|
||||
using System.Diagnostics;
|
||||
/* This software is licensed by the MIT License, see LICENSE file */
|
||||
/* Copyright © 2024-2025 Gregory Lirent */
|
||||
|
||||
namespace WebmrAPI.Services.Scanners
|
||||
{
|
||||
|
@ -1,4 +1,5 @@
|
||||
// File: Services/Scanners/ScanTarget.cs
|
||||
/* This software is licensed by the MIT License, see LICENSE file */
|
||||
/* Copyright © 2024-2025 Gregory Lirent */
|
||||
|
||||
namespace WebmrAPI.Services.Scanners
|
||||
{
|
||||
|
@ -1,4 +1,5 @@
|
||||
// File: Services/Scanners/ThreadScanner.cs
|
||||
/* This software is licensed by the MIT License, see LICENSE file */
|
||||
/* Copyright © 2024-2025 Gregory Lirent */
|
||||
|
||||
using System.Diagnostics;
|
||||
using WebmrAPI.Models;
|
||||
|
@ -1,4 +1,5 @@
|
||||
// File: Utils/ConcurrentObject.cs
|
||||
/* This software is licensed by the MIT License, see LICENSE file */
|
||||
/* Copyright © 2024-2025 Gregory Lirent */
|
||||
|
||||
namespace WebmrAPI.Utils
|
||||
{
|
||||
|
@ -1,4 +1,5 @@
|
||||
// File: Utils/JsonEnumConverter.cs
|
||||
/* This software is licensed by the MIT License, see LICENSE file */
|
||||
/* Copyright © 2024-2025 Gregory Lirent */
|
||||
|
||||
using System.Text.Json;
|
||||
using System.Text.Json.Serialization;
|
||||
|
@ -1,4 +1,5 @@
|
||||
// File: Utils/LazyConcurrentContainer.cs
|
||||
/* This software is licensed by the MIT License, see LICENSE file */
|
||||
/* Copyright © 2024-2025 Gregory Lirent */
|
||||
|
||||
using System.Collections.Concurrent;
|
||||
|
||||
|
@ -1,4 +1,5 @@
|
||||
// File: Utils/WindowsProcess.cs
|
||||
/* This software is licensed by the MIT License, see LICENSE file */
|
||||
/* Copyright © 2024-2025 Gregory Lirent */
|
||||
|
||||
using System.Runtime.InteropServices;
|
||||
using System.Runtime.Versioning;
|
||||
|
Loading…
Reference in New Issue
Block a user