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::Service; # # Service.pm # Written by Douglas_Lankshear@ActiveWare.com # # subsequently hacked by Gurusamy Sarathy <gsar@cpan.org> # $VERSION = '0.07'; require Exporter; require DynaLoader; require Win32 unless defined &Win32::IsWinNT; die "The Win32::Service module works only on Windows NT" unless Win32::IsWinNT(); @ISA= qw( Exporter DynaLoader ); @EXPORT_OK = qw( StartService StopService GetStatus PauseService ResumeService GetServices ); =head1 NAME Win32::Service - Manage system services in Perl =head1 SYNOPSIS use Win32::Service; =head1 DESCRIPTION This module offers control over the administration of system services. =head1 FUNCTIONS =head2 NOTE: All of the functions return false if they fail, unless otherwise noted. If hostName is an empty string, the local machine is assumed. =over 10 =item StartService(hostName, serviceName) Start the service serviceName on machine hostName. =item StopService(hostName, serviceName) Stop the service serviceName on the machine hostName. =item GetStatus(hostName, serviceName, status) Get the status of a service. The third argument must be a hash reference that will be populated with entries corresponding to the SERVICE_STATUS structure of the Win32 API. See the Win32 Platform SDK documentation for details of this structure. =item PauseService(hostName, serviceName) =item ResumeService(hostName, serviceName) =item GetServices(hostName, hashref) Enumerates both active and inactive Win32 services at the specified host. The hashref is populated with the descriptive service names as keys and the short names as the values. =back =cut sub AUTOLOAD { my($constname); ($constname = $AUTOLOAD) =~ s/.*:://; #reset $! to zero to reset any current errors. local $! = 0; my $val = constant($constname); if ($! != 0) { if($! =~ /Invalid/) { $AutoLoader::AUTOLOAD = $AUTOLOAD; goto &AutoLoader::AUTOLOAD; } else { ($pack,$file,$line) = caller; die "Your vendor has not defined Win32::Service macro $constname, used in $file at line $line."; } } eval "sub $AUTOLOAD { $val }"; goto &$AUTOLOAD; } bootstrap Win32::Service; 1; __END__