|
System | : | Linux MiraNet 3.0.0-14-generic-pae #23-Ubuntu SMP Mon Nov 21 22:07:10 UTC 2011 i686 |
Software | : | Apache. PHP/5.3.6-13ubuntu3.10 |
ID | : | uid=65534(nobody) gid=65534(nogroup) groups=65534(nogroup)
|
|
Safe Mode | : | OFF |
Open_Basedir | : | OFF |
Freespace | : | 22.59 GB of 70.42 GB (32.08%) |
|
MySQL: ON MSSQL: OFF Oracle: OFF PostgreSQL: OFF Curl: OFF Sockets: ON Fetch: OFF Wget: ON Perl: ON |
Disabled Functions: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,
|
[ System Info ]
[ Processes ]
[ SQL Manager ]
[ Eval ]
[ Encoder ]
[ Mailer ]
[ Back Connection ]
[ Backdoor Server ]
[ Kernel Exploit Search ]
[ MD5 Decrypter ]
[ Reverse IP ]
[ Kill Shell ]
[ FTP Brute-Force ]
|
|
/
usr/
share/
pyshared/
landscape/
lib/
- drwxr-xr-x
|
Viewing file: vm_info.py (1.35 KB) -rw-r--r--Select action/file-type:  ( +) |  ( +) |  ( +) | Code ( +) | Session ( +) |  ( +) | SDB ( +) |  ( +) |  ( +) |  ( +) |  ( +) |  ( +) |
""" Network introspection utilities using ioctl and the /proc filesystem. """ import os
def get_vm_info(root_path="/"): """ This is a utility that returns the virtualization type
It loops through some possible configurations and return a string with the name of the technology being used or None if there's no match """ def join_root_path(path): return os.path.join(root_path, path)
xen_paths = ["proc/sys/xen", "sys/bus/xen", "proc/xen"] xen_paths = map(join_root_path, xen_paths)
vz_path = os.path.join(root_path, "proc/vz") if os.path.exists(vz_path): return "openvz"
elif filter(os.path.exists, xen_paths): return "xen"
cpu_info_path = os.path.join(root_path, "proc/cpuinfo") if os.path.exists(cpu_info_path): try: fd = open(cpu_info_path) cpuinfo = fd.read() if "QEMU Virtual CPU" in cpuinfo: return "kvm" finally: fd.close()
sys_vendor_path = os.path.join(root_path, "sys", "class", "dmi", "id", "sys_vendor") if os.path.exists(sys_vendor_path): try: fd = open(sys_vendor_path) file_content = fd.read() if "VMware, Inc." in file_content: return "vmware" finally: fd.close()
return ""
|