diff options
-rw-r--r-- | SharpRIDHijack/Program.cs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/SharpRIDHijack/Program.cs b/SharpRIDHijack/Program.cs index 14157ae..d2a41b0 100644 --- a/SharpRIDHijack/Program.cs +++ b/SharpRIDHijack/Program.cs @@ -250,6 +250,10 @@ namespace SharpRIDHijack {
static void Main(string[] args)
{
+ Console.WriteLine("offensive security tool designed for performing RID (Relative Identifier) hijacking");
+ Console.WriteLine("author: heqnx - https://heqnx.com");
+ Console.WriteLine();
+
if (args.Length == 0 || string.IsNullOrWhiteSpace(args[0]))
{
Utils.LogError($"Usage: {AppDomain.CurrentDomain.FriendlyName} <username>");
@@ -269,4 +273,4 @@ namespace SharpRIDHijack }
}
}
-}
\ No newline at end of file +}
|