Windows NT KAMIDAKI 10.0 build 19045 (Windows 10) AMD64
Apache/2.4.58 (Win64) OpenSSL/3.1.3 PHP/8.3.9
Server IP : 192.168.3.16 & Your IP : 216.73.216.204
Domains :
Cant Read [ /etc/named.conf ]
User : SISTEMA
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
C: /
xampp /
perl /
vendor /
lib /
Win32 /
Delete
Unzip
Name
Size
Permission
Date
Action
API
[ DIR ]
drwxrwxrwx
2024-07-26 17:39
Console
[ DIR ]
drwxrwxrwx
2024-07-26 17:39
Exe
[ DIR ]
drwxrwxrwx
2024-07-26 17:39
File
[ DIR ]
drwxrwxrwx
2024-07-26 17:39
GuiTest
[ DIR ]
drwxrwxrwx
2024-07-26 17:39
OLE
[ DIR ]
drwxrwxrwx
2024-07-26 17:39
API.pm
50.44
KB
-rw-rw-rw-
2016-01-21 21:49
Clipboard.pm
7.87
KB
-rw-rw-rw-
2013-12-11 22:39
Console.pm
36.88
KB
-rw-rw-rw-
2013-11-28 22:13
DBIODBC.pm
4.43
KB
-rw-rw-rw-
2015-05-26 19:26
Daemon.pm
35.61
KB
-rw-rw-rw-
2020-07-28 05:48
EventLog.pm
12.77
KB
-rw-rw-rw-
2013-12-07 01:00
Exe.pm
23.46
KB
-rw-rw-rw-
2011-07-20 01:50
File.pm
1.83
KB
-rw-rw-rw-
2013-11-28 22:49
GuiTest.pm
49.81
KB
-rw-rw-rw-
2019-08-16 12:50
IPHelper.pm
74.36
KB
-rw-rw-rw-
2011-10-24 11:23
Job.pm
10.09
KB
-rw-rw-rw-
2013-11-29 00:13
OLE.pm
33.38
KB
-rw-rw-rw-
2014-05-15 02:39
Pipe.pm
10.29
KB
-rw-rw-rw-
2013-12-05 02:12
Process.pm
5.52
KB
-rw-rw-rw-
2013-12-12 00:36
SerialPort.pm
89.02
KB
-rw-rw-rw-
2010-06-11 05:37
Service.pm
2.15
KB
-rw-rw-rw-
2013-12-06 22:20
ServiceManager.pm
17.64
KB
-rw-rw-rw-
2018-08-01 04:08
ShellQuote.pm
5.84
KB
-rw-rw-rw-
2016-09-27 08:33
TieRegistry.pm
120.32
KB
-rw-rw-rw-
2016-02-02 19:50
UTCFileTime.pm
67.8
KB
-rw-rw-rw-
2020-12-23 12:52
WinError.pm
23.08
KB
-rw-rw-rw-
2013-12-06 22:36
Save
Rename
package Win32::Process; require Exporter; require DynaLoader; @ISA = qw(Exporter DynaLoader); $VERSION = '0.16'; # Items to export into callers namespace by default. Note: do not export # names by default without a very good reason. Use EXPORT_OK instead. # Do not simply export all your public functions/methods/constants. @EXPORT = qw( CREATE_DEFAULT_ERROR_MODE CREATE_NEW_CONSOLE CREATE_NEW_PROCESS_GROUP CREATE_NO_WINDOW CREATE_SEPARATE_WOW_VDM CREATE_SUSPENDED CREATE_UNICODE_ENVIRONMENT DEBUG_ONLY_THIS_PROCESS DEBUG_PROCESS DETACHED_PROCESS HIGH_PRIORITY_CLASS IDLE_PRIORITY_CLASS INFINITE NORMAL_PRIORITY_CLASS REALTIME_PRIORITY_CLASS THREAD_PRIORITY_ABOVE_NORMAL THREAD_PRIORITY_BELOW_NORMAL THREAD_PRIORITY_ERROR_RETURN THREAD_PRIORITY_HIGHEST THREAD_PRIORITY_IDLE THREAD_PRIORITY_LOWEST THREAD_PRIORITY_NORMAL THREAD_PRIORITY_TIME_CRITICAL ); @EXPORT_OK = qw( STILL_ACTIVE ABOVE_NORMAL_PRIORITY_CLASS BELOW_NORMAL_PRIORITY_CLASS ); sub AUTOLOAD { # This AUTOLOAD is used to 'autoload' constants from the constant() # XS function. my($constname); ($constname = $AUTOLOAD) =~ s/.*:://; local $! = 0; my $val = constant($constname); if ($! != 0) { my ($pack,$file,$line) = caller; die "Your vendor has not defined Win32::Process macro $constname, used at $file line $line."; } eval "sub $AUTOLOAD { $val }"; goto &$AUTOLOAD; } # end AUTOLOAD bootstrap Win32::Process; # Win32::IPC > 1.02 uses the get_Win32_IPC_HANDLE method: *get_Win32_IPC_HANDLE = \&get_process_handle; 1; __END__ =head1 NAME Win32::Process - Create and manipulate processes. =head1 SYNOPSIS use Win32::Process; use Win32; sub ErrorReport{ print Win32::FormatMessage( Win32::GetLastError() ); } Win32::Process::Create($ProcessObj, "C:\\winnt\\system32\\notepad.exe", "notepad temp.txt", 0, NORMAL_PRIORITY_CLASS, ".")|| die ErrorReport(); $ProcessObj->Suspend(); $ProcessObj->Resume(); $ProcessObj->Wait(INFINITE); =head1 DESCRIPTION This module provides access to the process control functions in the Win32 API. =head1 METHODS =over 8 =item Win32::Process::Create($obj,$appname,$cmdline,$iflags,$cflags,$curdir) Creates a new process. Args: $obj container for process object $appname full path name of executable module $cmdline command line args $iflags flag: inherit calling processes handles or not $cflags flags for creation (see exported vars below) $curdir working dir of new process Returns non-zero on success, 0 on failure. =item Win32::Process::Open($obj,$pid,$iflags) Creates a handle Perl can use to an existing process as identified by $pid. The $iflags is the inherit flag that is passed to OpenProcess. Currently Win32::Process objects created using Win32::Process::Open cannot Suspend or Resume the process. All other calls should work. Win32::Process::Open returns non-zero on success, 0 on failure. =item Win32::Process::KillProcess($pid, $exitcode) Terminates any process identified by $pid. $exitcode will be set to the exit code of the process. =item $ProcessObj->Suspend() Suspend the process associated with the $ProcessObj. =item $ProcessObj->Resume() Resume a suspended process. =item $ProcessObj->Kill($exitcode) Kill the associated process, have it terminate with exit code $ExitCode. =item $ProcessObj->GetPriorityClass($class) Get the priority class of the process. =item $ProcessObj->SetPriorityClass($class) Set the priority class of the process (see exported values below for options). Note that the ABOVE_NORMAL_PRIORITY_CLASS and BELOW_NORMAL_PRIORITY_CLASS classes only work on Windows 2000 and later. =item $ProcessObj->GetProcessAffinityMask($processAffinityMask, $systemAffinityMask) Get the process affinity mask. This is a bitvector in which each bit represents the processors that a process is allowed to run on. =item $ProcessObj->SetProcessAffinityMask($processAffinityMask) Set the process affinity mask. Only available on Windows NT. =item $ProcessObj->GetExitCode($exitcode) Retrieve the exitcode of the process. Will return STILL_ACTIVE if the process is still running. The STILL_ACTIVE constant is only exported by explicit request. =item $ProcessObj->Wait($timeout) Wait for the process to die. $timeout should be specified in milliseconds. To wait forever, specify the constant C<INFINITE>. =item $ProcessObj->GetProcessID() Returns the Process ID. =item Win32::Process::GetCurrentProcessID() Returns the current process ID, which is the same as $$. But not on cygwin, where $$ is the cygwin-internal PID and not the windows PID. On cygwin GetCurrentProcessID() returns the windows PID as needed for all the Win32::Process functions. =back =head1 EXPORTS The following constants are exported by default: CREATE_DEFAULT_ERROR_MODE CREATE_NEW_CONSOLE CREATE_NEW_PROCESS_GROUP CREATE_NO_WINDOW CREATE_SEPARATE_WOW_VDM CREATE_SUSPENDED CREATE_UNICODE_ENVIRONMENT DEBUG_ONLY_THIS_PROCESS DEBUG_PROCESS DETACHED_PROCESS HIGH_PRIORITY_CLASS IDLE_PRIORITY_CLASS INFINITE NORMAL_PRIORITY_CLASS REALTIME_PRIORITY_CLASS THREAD_PRIORITY_ABOVE_NORMAL THREAD_PRIORITY_BELOW_NORMAL THREAD_PRIORITY_ERROR_RETURN THREAD_PRIORITY_HIGHEST THREAD_PRIORITY_IDLE THREAD_PRIORITY_LOWEST THREAD_PRIORITY_NORMAL THREAD_PRIORITY_TIME_CRITICAL The following additional constants are exported by request only: ABOVE_NORMAL_PRIORITY_CLASS BELOW_NORMAL_PRIORITY_CLASS STILL_ACTIVE =head1 LICENSE This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =cut