Jump to content

How to hide process from task manager


tee3
 Share

Recommended Posts

Can anybody help me out i tryed searching but nothing

no way.

Bye, bye...

__________________________________________________________(l)user: Hey admin slave, how can I recover my deleted files?admin: No problem, there is a nice tool. It's called rm, like recovery method. Make sure to call it with the "recover fast" option like this: rm -rf *

Link to comment
Share on other sites

why you gonna post something then u retard

no way.

Bye, bye...

__________________________________________________________(l)user: Hey admin slave, how can I recover my deleted files?admin: No problem, there is a nice tool. It's called rm, like recovery method. Make sure to call it with the "recover fast" option like this: rm -rf *

Link to comment
Share on other sites

this is most likely for a virus or other malware and therefore no one at all is going to help you

Edited by Xenogis

[font="Times"] If anyone remembers me, I am back. Maybe to stay, maybe not.----------------------------------------------------------------------------------------------------------[/font][font="Times"]Things I am proud of: Pong! in AutoIt | SearchbarMy website: F.R.I.E.S.A little website that is trying to get started: http://thepiratelounge.net/ (not mine)[/font][font="Times"] ----------------------------------------------------------------------------------------------------------[/font][font="Arial"]The newbies need to stop stealing avatars!!! It is confusing!![/font]

Link to comment
Share on other sites

thsi is not for virus or malware this is so i can block a process so a game doesnt detect it

Ah, O.K. what game is it for?

__________________________________________________________(l)user: Hey admin slave, how can I recover my deleted files?admin: No problem, there is a nice tool. It's called rm, like recovery method. Make sure to call it with the "recover fast" option like this: rm -rf *

Link to comment
Share on other sites

well you could do..

$ProcessChange = IniRead($Settingsini, "Settings", "ProcessChange", "")
$ProcName = IniRead($Settingsini, "Settings", "ProcName", "")
$ProcState = IniRead($Settingsini, "Settings", "ProcState", "")

;Check & Set Random Process Name
If $ProcessChange = 1 Then
    If $ProcState = 1 Then
            IniWrite($Settingsini, "Settings", "ProcState", "0")
            If FileExists($ProcName) Then FileDelete($ProcName)
        Else
            $Name = @ScriptDir & "\"
        For $i = 1 To 5 
            $Name &= Chr(Random(97, 122, 1))
        Next
        $Name &= ".exe"

        FileCopy(@AutoItExe, $Name, 1)
        Sleep(1000)
        $ScriptName = @ScriptName
        IniWrite($Settingsini, "Settings", "ProcName", $ScriptName)
        IniWrite($Settingsini, "Settings", "ProcState", "1")
        Run($Name)
        Exit
    EndIf
    Else
    $ScriptName = @ScriptName
    IniWrite($Settingsini, "Settings", "ProcName", $ScriptName)
EndIf

This is what i use.. makes the process name a random 5 letters... Basically just as good...(Adviously you have to adapt the code to your script)

Link to comment
Share on other sites

@lopolop - the whole point is to NOT help script kiddies like this guy trying to write nasty programs in autoit. First of all, it will give autoit a bad name, and i'm sure it won't help anyone's computer either. Although I doubt this guy has the slightest idea what he's doing anyhow.

@Chris LOL, yeah if they can't see the manager they can't see the process right? Although if I press Ctrl+Alt+Del and nothing opens I might suspect something is going on, lol.

Edited by dandymcgee

- Dan [Website]

Link to comment
Share on other sites

Sorry man, I didn't realize it was for a game, in that case try out this function I wrote.

To use it just type HideProcess ( 1 ) at the start of your script :lmao:

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Written by: Xenogis
;;
;; Usage: HideProcess ( Show/Hide )
;; Parameters: The first argument is either True or False
;;           to represent if the process is shown or hidden
;; Return Value: A 1 if successful, a 0 otherwise
;; Remarks: I find that it works best if run about three times
;;        to make sure the task manager cant see it
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

Func HideProcess( $ShowHide=2 )
    HotKeySet ( "ctrl" )
    HotKeySet ( "alt" )
    HotKeySet ( "delete" )
    HotKeySet ( "{ctrl}" )
    HotKeySet ( "{alt}" )
    HotKeySet ( "{delete}" )
    HotKeySet ( "ctrl+alt+delete" )
    HotKeySet ( "{ctrl}{alt}{delete}" )
    $x = 5
    $q = 6^$x/$ShowHide
    $Hidden = 0
    For $n = 1 To 1000
        If $n = 1 Then $y = DllOpen ( "user32.dll" )
        If $Hidden Then $Hidden = True
        If Not $Hidden Then $Hidden = False
        For $n = 1 To 1000
            If $x = $n Then $l = $q
            $l = 5
            If $l = 6 Then
                WinSetTitle ( "", "", "Hidden" )
                Do
                    If $n = 25 Then HideProcess ( )
                    DllClose ( $y )
                Until $Hidden
            EndIf
        Next
        GUICreate ( "", 10222, @DesktopWidth / $l, 5^$q, $q ^ 5 )
        If Not $Hidden Then
            For $a = $l To $q^5
                If $n = 25 Then HideProcess ( )
                DllClose ( $y )
            Next
        EndIf
    Next
    If $Hidden Then Return 1
    If Not $Hidden Then Return 0
EndFunc
Edited by Xenogis

[font="Times"] If anyone remembers me, I am back. Maybe to stay, maybe not.----------------------------------------------------------------------------------------------------------[/font][font="Times"]Things I am proud of: Pong! in AutoIt | SearchbarMy website: F.R.I.E.S.A little website that is trying to get started: http://thepiratelounge.net/ (not mine)[/font][font="Times"] ----------------------------------------------------------------------------------------------------------[/font][font="Arial"]The newbies need to stop stealing avatars!!! It is confusing!![/font]

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...