Remove legacy AttackTracer repo content
Some checks failed
OfficeCom Sentinel Client / build-client (push) Has been cancelled

This commit is contained in:
OfficeCom Codex
2026-07-17 00:55:16 +02:00
parent 85e394f647
commit b5e06b885a
57 changed files with 98 additions and 3602 deletions

View File

@@ -4,7 +4,7 @@ using System.Net;
using System.Runtime.Versioning;
using System.Text.RegularExpressions;
namespace AttackTracerNinjaCli;
namespace OCSentinelCli;
[SupportedOSPlatform("windows")]
internal sealed class AttackScanner

View File

@@ -1,6 +1,6 @@
using System.Reflection;
namespace AttackTracerNinjaCli;
namespace OCSentinelCli;
internal static class BuildMetadata
{

View File

@@ -1,4 +1,4 @@
namespace AttackTracerNinjaCli.Commands;
namespace OCSentinelCli.Commands;
internal static class ScanAndUploadCommand
{

View File

@@ -1,7 +1,7 @@
using System.Text.Json;
using System.Runtime.Versioning;
namespace AttackTracerNinjaCli.Commands;
namespace OCSentinelCli.Commands;
[SupportedOSPlatform("windows")]
internal static class ScanCommand

View File

@@ -1,9 +1,9 @@
using AttackTracerNinjaCli.Configuration;
using OCSentinelCli.Configuration;
using System.Text.Json;
using AttackTracerNinjaCli.Security;
using AttackTracerNinjaCli.Transport;
using OCSentinelCli.Security;
using OCSentinelCli.Transport;
namespace AttackTracerNinjaCli.Commands;
namespace OCSentinelCli.Commands;
internal static class UploadCommand
{

View File

@@ -1,4 +1,4 @@
namespace AttackTracerNinjaCli.Commands;
namespace OCSentinelCli.Commands;
internal static class VersionCommand
{

View File

@@ -1,6 +1,6 @@
using System.Text.Json;
namespace AttackTracerNinjaCli;
namespace OCSentinelCli;
internal sealed record ScannerConfiguration
{

View File

@@ -1,6 +1,6 @@
using System.Text.Json;
namespace AttackTracerNinjaCli.Configuration;
namespace OCSentinelCli.Configuration;
internal sealed record ClientConfiguration
{

View File

@@ -1,7 +1,7 @@
using System.Text.Json;
using System.Text.Json.Serialization;
namespace AttackTracerNinjaCli;
namespace OCSentinelCli;
internal static class JsonOptions
{

View File

@@ -1,4 +1,4 @@
namespace AttackTracerNinjaCli;
namespace OCSentinelCli;
internal sealed record AttackEvent
{

View File

@@ -1,4 +1,4 @@
namespace AttackTracerNinjaCli.Models;
namespace OCSentinelCli.Models;
internal sealed record UploadResult
{

View File

@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>

View File

@@ -1,7 +1,7 @@
using System.Runtime.Versioning;
using AttackTracerNinjaCli.Commands;
using OCSentinelCli.Commands;
namespace AttackTracerNinjaCli;
namespace OCSentinelCli;
[SupportedOSPlatform("windows")]
internal static class Program

View File

@@ -1,4 +1,4 @@
namespace AttackTracerNinjaCli;
namespace OCSentinelCli;
internal sealed record ScanOptions
{

View File

@@ -1,7 +1,7 @@
using System.Security.Cryptography;
using System.Text;
namespace AttackTracerNinjaCli.Security;
namespace OCSentinelCli.Security;
internal static class ProtectedSecretStore
{

View File

@@ -1,9 +1,9 @@
using System.Net.Http.Headers;
using System.Security.Cryptography;
using System.Text;
using AttackTracerNinjaCli.Models;
using OCSentinelCli.Models;
namespace AttackTracerNinjaCli.Transport;
namespace OCSentinelCli.Transport;
internal sealed class N8nUploadClient
{

View File

@@ -1,6 +1,6 @@
using System.Globalization;
namespace AttackTracerNinjaCli;
namespace OCSentinelCli;
internal static class VulnerabilityCorrelation
{