rapid7 / metasploitable3

Metasploitable3 is a VM that is built from the ground up with a large amount of security vulnerabilities.
Other
4.73k stars 1.14k forks source link

vagrant up sc config domain1 obj= "NT Authority\LOCAL SERVICE" #112

Closed gearcapitan closed 7 years ago

gearcapitan commented 7 years ago

Issue Description

:/ why?

Host System

Command Output

C:\Windows\system32>sc config domain1 obj= "NT Authority\LOCAL SERVICE" [SC] OpenService FAILED 1060:

The specified service does not exist as an installed service.

Stderr from the command:

The system cannot find the path specified. The system cannot find the path specified. The system cannot find the path specified. The system cannot find the path specified. The service name is invalid.

More help is available by typing NET HELPMSG 2185.

The service name is invalid.

More help is available by typing NET HELPMSG 2185.

PS C:\Users\gearc\Documents\metasploitable3-master>

TheBlindHacker commented 7 years ago

115 same issue now, I was looking around might need an even older version of Vagrant? seems like this is now common i tired a second machine, same issue at the same spot.

jbarnett-r7 commented 7 years ago

Let me work on fixing the error described here, then you guys can try a re-build. The master branch is not in a good state right now.

gearcapitan commented 7 years ago

@Soulence If we agree, we can try old versions of vagrant and so report some change

jbarnett-r7 commented 7 years ago

Ok, I just fixed it. Please try the following steps. If you are still seeing issues, please post back with the command output.

git pull
vagrant destroy
vagrant up
gearcapitan commented 7 years ago

PS C:\Users\gearc\Documents\metasploitable3-master\metasploitable3-master> ls

Directorio: C:\Users\gearc\Documents\metasploitable3-master\metasploitable3-master

Mode LastWriteTime Length Name


d----- 30/03/2017 01:27 p. m. .github d----- 02/04/2017 08:00 p. m. .vagrant d----- 30/03/2017 01:27 p. m. answer_files d----- 30/03/2017 01:27 p. m. chef d----- 30/03/2017 01:27 p. m. iso d----- 02/04/2017 07:15 p. m. packer_cache d----- 30/03/2017 01:27 p. m. resources d----- 30/03/2017 01:27 p. m. scripts ------ 30/03/2017 01:27 p. m. 134 .gitignore ------ 30/03/2017 01:27 p. m. 4663 build_win2008.ps1 -a---- 30/03/2017 01:27 p. m. 4542 build_win2008.sh ------ 30/03/2017 01:27 p. m. 1783 COPYING ------ 30/03/2017 01:27 p. m. 3601 LICENSE ------ 30/03/2017 01:27 p. m. 2921 README.md ------ 30/03/2017 01:27 p. m. 9817 Vagrantfile ------ 30/03/2017 01:27 p. m. 1655 vagrantfile-windows_2008_r2.template ------ 30/03/2017 01:27 p. m. 2603 windows_2008_r2.json -a---- 02/04/2017 07:48 p. m. 3136281945 windows_2008_r2_virtualbox.box ------ 30/03/2017 01:27 p. m. 2374 windows_2008_r2_vmware.json

PS C:\Users\gearc\Documents\metasploitable3-master\metasploitable3-master> git pull fatal: Not a git repository (or any of the parent directories): .git

It is normal?

jbarnett-r7 commented 7 years ago

Hmm, sounds like some more basic configuration issues might be going on with your system. Your best bet might to just be to completely delete the metasploitable3 directory and start over from scratch. Follow the directions here.

gearcapitan commented 7 years ago

FAIL!

==> win2k8: C:\Windows\system32>cmd /c ""C:\Program Files\elasticsearch-1.1.1\bin\service.bat" install"
==> win2k8: Installing service      :  "elasticsearch-service-x64"
==> win2k8: Using JAVA_HOME (64-bit):  "C:\Program Files\Java\jdk1.8.0_121"
==> win2k8: The service 'elasticsearch-service-x64' has been installed.
==> win2k8: C:\Windows\system32>sc config "elasticsearch-service-x64" start= auto
==> win2k8: [SC] ChangeServiceConfig SUCCESS
==> win2k8: C:\Windows\system32>cmd /c ""C:\Program Files\elasticsearch-1.1.1\bin\service.bat" start"
==> win2k8: The service 'elasticsearch-service-x64' has been started
==> win2k8: C:\Windows\system32>powershell -Command "Start-Sleep -s 30"
==> win2k8: C:\Windows\system32>powershell -Command "$req = [System.Net.HttpWebRequest]::Create('http://localhost:9200/m
etasploitable3/'); $req.method = 'PUT'; $req.GetResponse()"
==> win2k8: Exception calling "GetResponse" with "0" argument(s): "Unable to connect to the
==> win2k8:  remote server"
==> win2k8: At line:1 char:124
==> win2k8: + $req = [System.Net.HttpWebRequest]::Create('http://localhost:9200/metasploita
==> win2k8: ble3/'); $req.method = 'PUT'; $req.GetResponse <<<< ()
==> win2k8:     + CategoryInfo          : NotSpecified: (:) [], MethodInvocationException
==> win2k8:     + FullyQualifiedErrorId : DotNetMethodException
==> win2k8: C:\Windows\system32>powershell -Command "$body = [System.Text.Encoding]::ASCII.GetBytes('{\"user\":\"kimchy\
", \"post_date\": \"2009-11-15T14:12:12\", \"message\": \"Elasticsearch\" }'); $req = [System.Net.HttpWebRequest]::Creat
e('http://localhost:9200/metasploitable3/message/1'); $req.method = 'PUT'; $req.ContentType = 'application/x-www-form-ur
lencoded'; $stream = $req.GetRequestStream(); $stream.Write($body, 0, $body.Length); $stream.close(); $req.GetResponse()
"
==> win2k8: Exception calling "GetRequestStream" with "0" argument(s): "Unable to connect t
==> win2k8: o the remote server"
==> win2k8: At line:1 char:338
==> win2k8: + $body = [System.Text.Encoding]::ASCII.GetBytes('{"user":"kimchy", "post_date"
==> win2k8: : "2009-11-15T14:12:12", "message": "Elasticsearch" }'); $req = [System.Net.Htt
==> win2k8: pWebRequest]::Create('http://localhost:9200/metasploitable3/message/1'); $req.m
==> win2k8: ethod = 'PUT'; $req.ContentType = 'application/x-www-form-urlencoded'; $stream
==> win2k8: = $req.GetRequestStream <<<< (); $stream.Write($body, 0, $body.Length); $stream
==> win2k8: .close(); $req.GetResponse()
==> win2k8:     + CategoryInfo          : NotSpecified: (:) [], MethodInvocationException
==> win2k8:     + FullyQualifiedErrorId : DotNetMethodException
==> win2k8: You cannot call a method on a null-valued expression.
==> win2k8: At line:1 char:355
==> win2k8: + $body = [System.Text.Encoding]::ASCII.GetBytes('{"user":"kimchy", "post_date"
==> win2k8: : "2009-11-15T14:12:12", "message": "Elasticsearch" }'); $req = [System.Net.Htt
==> win2k8: pWebRequest]::Create('http://localhost:9200/metasploitable3/message/1'); $req.m
==> win2k8: ethod = 'PUT'; $req.ContentType = 'application/x-www-form-urlencoded'; $stream
==> win2k8: = $req.GetRequestStream(); $stream.Write <<<< ($body, 0, $body.Length); $stream
==> win2k8: .close(); $req.GetResponse()
==> win2k8:     + CategoryInfo          : InvalidOperation: (Write:String) [], RuntimeExce
==> win2k8:    ption
==> win2k8:     + FullyQualifiedErrorId : InvokeMethodOnNull
==> win2k8: You cannot call a method on a null-valued expression.
==> win2k8: At line:1 char:394
==> win2k8: + $body = [System.Text.Encoding]::ASCII.GetBytes('{"user":"kimchy", "post_date"
==> win2k8: : "2009-11-15T14:12:12", "message": "Elasticsearch" }'); $req = [System.Net.Htt
==> win2k8: pWebRequest]::Create('http://localhost:9200/metasploitable3/message/1'); $req.m
==> win2k8: ethod = 'PUT'; $req.ContentType = 'application/x-www-form-urlencoded'; $stream
==> win2k8: = $req.GetRequestStream(); $stream.Write($body, 0, $body.Length); $stream.close
==> win2k8:  <<<< (); $req.GetResponse()
==> win2k8:     + CategoryInfo          : InvalidOperation: (close:String) [], RuntimeExce
==> win2k8:    ption
==> win2k8:     + FullyQualifiedErrorId : InvokeMethodOnNull
==> win2k8: Exception calling "GetResponse" with "0" argument(s): "Unable to connect to the
==> win2k8:  remote server"
==> win2k8: At line:1 char:414
==> win2k8: + $body = [System.Text.Encoding]::ASCII.GetBytes('{"user":"kimchy", "post_date"
==> win2k8: : "2009-11-15T14:12:12", "message": "Elasticsearch" }'); $req = [System.Net.Htt
==> win2k8: pWebRequest]::Create('http://localhost:9200/metasploitable3/message/1'); $req.m
==> win2k8: ethod = 'PUT'; $req.ContentType = 'application/x-www-form-urlencoded'; $stream
==> win2k8: = $req.GetRequestStream(); $stream.Write($body, 0, $body.Length); $stream.close
==> win2k8: (); $req.GetResponse <<<< ()
==> win2k8:     + CategoryInfo          : NotSpecified: (:) [], MethodInvocationException
==> win2k8:     + FullyQualifiedErrorId : DotNetMethodException
The following WinRM command responded with a non-zero exit status.
Vagrant assumes that this means the command failed!

c:\tmp\vagrant-shell.bat

Stdout from the command:

C:\Windows\system32>powershell -Command "(New-Object System.Net.WebClient).DownloadFile('http://repo1.maven.org/maven2/o
rg/elasticsearch/elasticsearch/1.1.1/elasticsearch-1.1.1.zip', 'C:\Windows\Temp\elasticsearch-1.1.1.zip')"  0<NUL

C:\Windows\system32>cmd /c ""C:\Program Files\7-Zip\7z.exe" x "C:\Windows\Temp\elasticsearch-1.1.1.zip" -o"C:\Program Fi
les\""

7-Zip [64] 16.04 : Copyright (c) 1999-2016 Igor Pavlov : 2016-10-04

Scanning the drive for archives:
1 file, 22608755 bytes (22 MiB)

Extracting archive: C:\Windows\Temp\elasticsearch-1.1.1.zip
--
Path = C:\Windows\Temp\elasticsearch-1.1.1.zip
Type = zip
Physical Size = 22608755

Everything is Ok

Folders: 5
Files: 48
Size:       25590291
Compressed: 22608755

C:\Windows\system32>cmd /c ""C:\Program Files\elasticsearch-1.1.1\bin\service.bat" install"
Installing service      :  "elasticsearch-service-x64"
Using JAVA_HOME (64-bit):  "C:\Program Files\Java\jdk1.8.0_121"
The service 'elasticsearch-service-x64' has been installed.

C:\Windows\system32>sc config "elasticsearch-service-x64" start= auto
[SC] ChangeServiceConfig SUCCESS

C:\Windows\system32>cmd /c ""C:\Program Files\elasticsearch-1.1.1\bin\service.bat" start"
The service 'elasticsearch-service-x64' has been started

C:\Windows\system32>powershell -Command "Start-Sleep -s 30"

C:\Windows\system32>powershell -Command "$req = [System.Net.HttpWebRequest]::Create('http://localhost:9200/metasploitabl
e3/'); $req.method = 'PUT'; $req.GetResponse()"

C:\Windows\system32>powershell -Command "$body = [System.Text.Encoding]::ASCII.GetBytes('{\"user\":\"kimchy\", \"post_da
te\": \"2009-11-15T14:12:12\", \"message\": \"Elasticsearch\" }'); $req = [System.Net.HttpWebRequest]::Create('http://lo
calhost:9200/metasploitable3/message/1'); $req.method = 'PUT'; $req.ContentType = 'application/x-www-form-urlencoded'; $
stream = $req.GetRequestStream(); $stream.Write($body, 0, $body.Length); $stream.close(); $req.GetResponse()"

Stderr from the command:

Exception calling "GetResponse" with "0" argument(s): "Unable to connect to the
 remote server"
At line:1 char:124
+ $req = [System.Net.HttpWebRequest]::Create('http://localhost:9200/metasploita
ble3/'); $req.method = 'PUT'; $req.GetResponse <<<< ()
    + CategoryInfo          : NotSpecified: (:) [], MethodInvocationException
    + FullyQualifiedErrorId : DotNetMethodException

Exception calling "GetRequestStream" with "0" argument(s): "Unable to connect t
o the remote server"
At line:1 char:338
+ $body = [System.Text.Encoding]::ASCII.GetBytes('{"user":"kimchy", "post_date"
: "2009-11-15T14:12:12", "message": "Elasticsearch" }'); $req = [System.Net.Htt
pWebRequest]::Create('http://localhost:9200/metasploitable3/message/1'); $req.m
ethod = 'PUT'; $req.ContentType = 'application/x-www-form-urlencoded'; $stream
= $req.GetRequestStream <<<< (); $stream.Write($body, 0, $body.Length); $stream
.close(); $req.GetResponse()
    + CategoryInfo          : NotSpecified: (:) [], MethodInvocationException
    + FullyQualifiedErrorId : DotNetMethodException

You cannot call a method on a null-valued expression.
At line:1 char:355
+ $body = [System.Text.Encoding]::ASCII.GetBytes('{"user":"kimchy", "post_date"
: "2009-11-15T14:12:12", "message": "Elasticsearch" }'); $req = [System.Net.Htt
pWebRequest]::Create('http://localhost:9200/metasploitable3/message/1'); $req.m
ethod = 'PUT'; $req.ContentType = 'application/x-www-form-urlencoded'; $stream
= $req.GetRequestStream(); $stream.Write <<<< ($body, 0, $body.Length); $stream
.close(); $req.GetResponse()
    + CategoryInfo          : InvalidOperation: (Write:String) [], RuntimeExce
   ption
    + FullyQualifiedErrorId : InvokeMethodOnNull

You cannot call a method on a null-valued expression.
At line:1 char:394
+ $body = [System.Text.Encoding]::ASCII.GetBytes('{"user":"kimchy", "post_date"
: "2009-11-15T14:12:12", "message": "Elasticsearch" }'); $req = [System.Net.Htt
pWebRequest]::Create('http://localhost:9200/metasploitable3/message/1'); $req.m
ethod = 'PUT'; $req.ContentType = 'application/x-www-form-urlencoded'; $stream
= $req.GetRequestStream(); $stream.Write($body, 0, $body.Length); $stream.close
 <<<< (); $req.GetResponse()
    + CategoryInfo          : InvalidOperation: (close:String) [], RuntimeExce
   ption
    + FullyQualifiedErrorId : InvokeMethodOnNull

Exception calling "GetResponse" with "0" argument(s): "Unable to connect to the
 remote server"
At line:1 char:414
+ $body = [System.Text.Encoding]::ASCII.GetBytes('{"user":"kimchy", "post_date"
: "2009-11-15T14:12:12", "message": "Elasticsearch" }'); $req = [System.Net.Htt
pWebRequest]::Create('http://localhost:9200/metasploitable3/message/1'); $req.m
ethod = 'PUT'; $req.ContentType = 'application/x-www-form-urlencoded'; $stream
= $req.GetRequestStream(); $stream.Write($body, 0, $body.Length); $stream.close
(); $req.GetResponse <<<< ()
    + CategoryInfo          : NotSpecified: (:) [], MethodInvocationException
    + FullyQualifiedErrorId : DotNetMethodException

PS C:\Users\gearc\Documents\metasploitable3-master\metasploitable3-master>
jbarnett-r7 commented 7 years ago

According to that output it looks like you couldn't hit the ElasticSearch download location. I'm building locally now to see if I get the same behavior.

jbarnett-r7 commented 7 years ago

Worked fine on my end:

==> default: Running provisioner: shell...
    default: Running: scripts/installs/install_elasticsearch.bat as c:\tmp\vagrant-shell.bat
==> default: C:\Windows\system32>powershell -Command "(New-Object System.Net.WebClient).DownloadFile('http://repo1.maven.org/maven2/org/elasticsearch/elasticsearch/1.1.1/elasticsearch-1.1.1.zip', 'C:\Windows\Temp\elasticsearch-1.1.1.zip')"  0<NUL 
==> default: C:\Windows\system32>cmd /c ""C:\Program Files\7-Zip\7z.exe" x "C:\Windows\Temp\elasticsearch-1.1.1.zip" -o"C:\Program Files\"" 
==> default: 
==> default: 7-Zip [64] 16.04 : Copyright (c) 1999-2016 Igor Pavlov : 2016-10-04
==> default: 
==> default: Scanning the drive for archives:
==> default: 1 file, 22608755 bytes (22 MiB)
==> default: 
==> default: Extracting archive: C:\Windows\Temp\elasticsearch-1.1.1.zip
==> default: --
==> default: Path = C:\Windows\Temp\elasticsearch-1.1.1.zip
==> default: Type = zip
==> default: Physical Size = 22608755
==> default: 
==> default: Everything is Ok
==> default: 
==> default: Folders: 5
==> default: Files: 48
==> default: Size:       25590291
==> default: Compressed: 22608755
==> default: C:\Windows\system32>cmd /c ""C:\Program Files\elasticsearch-1.1.1\bin\service.bat" install" 
==> default: Installing service      :  "elasticsearch-service-x64"
==> default: 
==> default: Using JAVA_HOME (64-bit):  "C:\Program Files\Java\jdk1.8.0_121"
==> default: The service 'elasticsearch-service-x64' has been installed.
==> default: C:\Windows\system32>sc config "elasticsearch-service-x64" start= auto 
==> default: [SC] ChangeServiceConfig SUCCESS
==> default: C:\Windows\system32>cmd /c ""C:\Program Files\elasticsearch-1.1.1\bin\service.bat" start" 
==> default: The service 'elasticsearch-service-x64' has been started
==> default: 
==> default: C:\Windows\system32>powershell -Command "Start-Sleep -s 30" 
==> default: C:\Windows\system32>powershell -Command "$req = [System.Net.HttpWebRequest]::Create('http://localhost:9200/metasploitable3/'); $req.method = 'PUT'; $req.GetResponse()" 
==> default: 
==> default: IsMutuallyAuthenticated : False
==> default: Cookies                 : {}
==> default: Headers                 : {Content-Length, Content-Type}
==> default: ContentLength           : 21
==> default: ContentEncoding         : 
==> default: ContentType             : application/json; charset=UTF-8
==> default: CharacterSet            : UTF-8
==> default: Server                  : 
==> default: LastModified            : 4/3/2017 12:45:34 PM
==> default: StatusCode              : OK
==> default: StatusDescription       : OK
==> default: ProtocolVersion         : 1.1
==> default: ResponseUri             : http://localhost:9200/metasploitable3/
==> default: Method                  : PUT
==> default: IsFromCache             : False
==> default: C:\Windows\system32>powershell -Command "$body = [System.Text.Encoding]::ASCII.GetBytes('{\"user\":\"kimchy\", \"post_date\": \"2009-11-15T14:12:12\", \"message\": \"Elasticsearch\" }'); $req = [System.Net.HttpWebRequest]::Create('http://localhost:9200/metasploitable3/message/1'); $req.method = 'PUT'; $req.ContentType = 'application/x-www-form-urlencoded'; $stream = $req.GetRequestStream(); $stream.Write($body, 0, $body.Length); $stream.close(); $req.GetResponse()" 
==> default: IsMutuallyAuthenticated : False
==> default: Cookies                 : {}
==> default: Headers                 : {Content-Length, Content-Type}
==> default: ContentLength           : 84
==> default: ContentEncoding         : 
==> default: ContentType             : application/json; charset=UTF-8
==> default: CharacterSet            : UTF-8
==> default: Server                  : 
==> default: LastModified            : 4/3/2017 12:45:35 PM
==> default: StatusCode              : Created
==> default: StatusDescription       : Created
==> default: ProtocolVersion         : 1.1
==> default: ResponseUri             : http://localhost:9200/metasploitable3/message/1
==> default: Method                  : PUT
==> default: IsFromCache             : False

The output in your last comment appears to be truncated. Can you please post the full output from the elasticsearch step of the vagrant up command?

Also, if you open up the VM in VirtualBox, open Internet Explorer, and try to go to "http://repo1.maven.org/maven2/org/elasticsearch/elasticsearch/1.1.1/elasticsearch-1.1.1.zip". Does that request succeed?

gearcapitan commented 7 years ago

@jbarnett-r7 It seems as if the script does not end but this time does not show any error it just ends but the vm does not start sin titulo

Chan9390 commented 7 years ago

Hey @gearcapitan Can you please upload the VBox.log file which is present in the vagrant box folder, so that the issue could be well understood.

The log file will generally be within the $HOME/VirtualBox VMs/{machinename}/Logs folder. If not found, please use, the following commands to create log files and then upload them. (Refer vagrant documentation)

$ set VAGRANT_LOG=info
$ vagrant up --debug > vagrant.log 2>&1
gearcapitan commented 7 years ago

@Chan9390

VirtualBox VM 5.1.18 r114002 win.amd64 (Mar 15 2017 16:16:14) release log 00:00:01.330246 Log opened 2017-04-03T21:12:55.815505200Z 00:00:01.330248 Build Type: release 00:00:01.330254 OS Product: Windows 10 00:00:01.330256 OS Release: 10.0.14393 00:00:01.330257 OS Service Pack: 00:00:01.435048 DMI Product Name: Satellite S855D 00:00:01.440850 DMI Product Version: PSKG2M-01FTM1 00:00:01.440866 Host RAM: 15841MB (15.4GB) total, 8042MB (7.8GB) available 00:00:01.440869 Executable: C:\Program Files\Oracle\VirtualBox\VBoxHeadless.exe 00:00:01.440870 Process ID: 8384 00:00:01.440871 Package type: WINDOWS_64BITS_GENERIC 00:00:01.442169 Installed Extension Packs: 00:00:01.442256 None installed! 00:00:01.443272 Console: Machine state changed to 'Starting' 00:00:01.444965 VRDE: VirtualBox Remote Desktop Extension is not available. 00:00:01.531450 SUP: Opened VMMR0.r0 (C:\Program Files\Oracle\VirtualBox\VMMR0.r0) at 0xfffff804e8d80000 loaded by the native ring-0 loader. 00:00:01.531473 SUP: windbg> .reload /f C:\Program Files\Oracle\VirtualBox\VMMR0.r0=0xfffff804e8d80000 00:00:01.534912 Guest OS type: 'Windows2008_64' 00:00:01.536365 fHMForced=true - SMP 00:00:01.536375 fHMForced=true - 64-bit guest 00:00:01.539565 File system of 'C:\Users\gearc\VirtualBox VMs\metasploitable3_default_1491252283380_72218\Snapshots' (snapshots) is unknown 00:00:01.539586 File system of 'C:\Users\gearc\VirtualBox VMs\metasploitable3_default_1491252283380_72218\packer-virtualbox-iso-1491245017-disk001.vmdk' is ntfs 00:00:01.770513 Shared clipboard service loaded 00:00:01.770531 Shared clipboard mode: Bidirectional 00:00:01.781153 Drag and drop service loaded 00:00:01.781165 Drag and drop mode: Off 00:00:01.851011 Guest Control service loaded 00:00:01.853246 Per-VM extradata API settings: 00:00:01.853268 VBoxInternal2/SharedFoldersEnableSymlinksCreate/vagrant="1" 00:00:01.853584 CFGM dump 00:00:01.853586 [/] (level 0) 00:00:01.853589 CSAMEnabled = 0x0000000000000001 (1) 00:00:01.853592 CpuExecutionCap = 0x0000000000000064 (100) 00:00:01.853594 EnablePAE = 0x0000000000000001 (1) 00:00:01.853597 HMEnabled = 0x0000000000000001 (1) 00:00:01.853598 MemBalloonSize = 0x0000000000000000 (0) 00:00:01.853600 Name = "metasploitable3_default_1491252283380_72218" (cb=44) 00:00:01.853602 NumCPUs = 0x0000000000000002 (2) 00:00:01.853604 PATMEnabled = 0x0000000000000001 (1) 00:00:01.853606 PageFusionAllowed = 0x0000000000000000 (0) 00:00:01.853607 RamHoleSize = 0x0000000020000000 (536 870 912, 512 MB) 00:00:01.853610 RamSize = 0x0000000080000000 (2 147 483 648, 2 048 MB) 00:00:01.853613 RawR0Enabled = 0x0000000000000001 (1) 00:00:01.853615 RawR3Enabled = 0x0000000000000001 (1) 00:00:01.853616 TimerMillies = 0x000000000000000a (10) 00:00:01.853618 UUID = "8e 78 a8 a2 cb 1d 92 40 b5 0e a2 91 48 89 9c 98" (cb=16) 00:00:01.853623 00:00:01.853624 [/CPUM/] (level 1) 00:00:01.853626 GuestCpuName = "host" (cb=5) 00:00:01.853627 PortableCpuIdLevel = 0x0000000000000000 (0) 00:00:01.853629 00:00:01.853630 [/DBGC/] (level 1) 00:00:01.853632 GlobalInitScript = "C:\Users\gearc.VirtualBox/dbgc-init" (cb=37) 00:00:01.853633 HistoryFile = "C:\Users\gearc.VirtualBox/dbgc-history" (cb=40) 00:00:01.853635 LocalInitScript = "C:\Users\gearc\VirtualBox VMs\metasploitable3_default_1491252283380_72218/dbgc-init" (cb=84) 00:00:01.853636 00:00:01.853637 [/DBGF/] (level 1) 00:00:01.853638 Path = "C:\Users\gearc\VirtualBox VMs\metasploitable3_default_1491252283380_72218/debug/;C:\Users\gearc\VirtualBox VMs\metasploitable3_default_1491252283380_72218/;C:\Users\gearc\" (cb=172) 00:00:01.853640 00:00:01.853641 [/Devices/] (level 1) 00:00:01.853642 00:00:01.853643 [/Devices/8237A/] (level 2) 00:00:01.853644 00:00:01.853645 [/Devices/8237A/0/] (level 3) 00:00:01.853647 Trusted = 0x0000000000000001 (1) 00:00:01.853648 00:00:01.853649 [/Devices/GIMDev/] (level 2) 00:00:01.853651 00:00:01.853651 [/Devices/GIMDev/0/] (level 3) 00:00:01.853653 Trusted = 0x0000000000000001 (1) 00:00:01.853655 00:00:01.853655 [/Devices/VMMDev/] (level 2) 00:00:01.853657 00:00:01.853658 [/Devices/VMMDev/0/] (level 3) 00:00:01.853660 PCIBusNo = 0x0000000000000000 (0) 00:00:01.853662 PCIDeviceNo = 0x0000000000000004 (4) 00:00:01.853663 PCIFunctionNo = 0x0000000000000000 (0) 00:00:01.853664 Trusted = 0x0000000000000001 (1) 00:00:01.853666 00:00:01.853666 [/Devices/VMMDev/0/Config/] (level 4) 00:00:01.853669 GuestCoreDumpDir = "C:\Users\gearc\VirtualBox VMs\metasploitable3_default_1491252283380_72218\Snapshots" (cb=84) 00:00:01.853670 00:00:01.853671 [/Devices/VMMDev/0/LUN#0/] (level 4) 00:00:01.853673 Driver = "HGCM" (cb=5) 00:00:01.853674 00:00:01.853675 [/Devices/VMMDev/0/LUN#0/Config/] (level 5) 00:00:01.853677 Object = 0x0000000001d7cda0 (30 920 096) 00:00:01.853679 00:00:01.853680 [/Devices/VMMDev/0/LUN#999/] (level 4) 00:00:01.853682 Driver = "MainStatus" (cb=11) 00:00:01.853683 00:00:01.853683 [/Devices/VMMDev/0/LUN#999/Config/] (level 5) 00:00:01.853686 First = 0x0000000000000000 (0) 00:00:01.853687 Last = 0x0000000000000000 (0) 00:00:01.853689 papLeds = 0x0000000001d78458 (30 901 336) 00:00:01.853691 00:00:01.853691 [/Devices/acpi/] (level 2) 00:00:01.853693 00:00:01.853693 [/Devices/acpi/0/] (level 3) 00:00:01.853696 PCIBusNo = 0x0000000000000000 (0) 00:00:01.853697 PCIDeviceNo = 0x0000000000000007 (7) 00:00:01.853699 PCIFunctionNo = 0x0000000000000000 (0) 00:00:01.853700 Trusted = 0x0000000000000001 (1) 00:00:01.853702 00:00:01.853702 [/Devices/acpi/0/Config/] (level 4) 00:00:01.853705 CpuHotPlug = 0x0000000000000000 (0) 00:00:01.853707 FdcEnabled = 0x0000000000000000 (0) 00:00:01.853709 HostBusPciAddress = 0x0000000000000000 (0) 00:00:01.853710 HpetEnabled = 0x0000000000000000 (0) 00:00:01.853712 IOAPIC = 0x0000000000000001 (1) 00:00:01.853713 IocPciAddress = 0x0000000000010000 (65 536) 00:00:01.853715 NumCPUs = 0x0000000000000002 (2) 00:00:01.853717 Parallel0IoPortBase = 0x0000000000000000 (0) 00:00:01.853718 Parallel0Irq = 0x0000000000000000 (0) 00:00:01.853720 Parallel1IoPortBase = 0x0000000000000000 (0) 00:00:01.853722 Parallel1Irq = 0x0000000000000000 (0) 00:00:01.853723 Serial0IoPortBase = 0x0000000000000000 (0) 00:00:01.853724 Serial0Irq = 0x0000000000000000 (0) 00:00:01.853726 Serial1IoPortBase = 0x0000000000000000 (0) 00:00:01.853728 Serial1Irq = 0x0000000000000000 (0) 00:00:01.853729 ShowCpu = 0x0000000000000001 (1) 00:00:01.853731 ShowRtc = 0x0000000000000000 (0) 00:00:01.853733 SmcEnabled = 0x0000000000000000 (0) 00:00:01.853734 00:00:01.853735 [/Devices/acpi/0/LUN#0/] (level 4) 00:00:01.853737 Driver = "ACPIHost" (cb=9) 00:00:01.853739 00:00:01.853739 [/Devices/acpi/0/LUN#0/Config/] (level 5) 00:00:01.853742 00:00:01.853742 [/Devices/acpi/0/LUN#1/] (level 4) 00:00:01.853744 Driver = "ACPICpu" (cb=8) 00:00:01.853746 00:00:01.853746 [/Devices/acpi/0/LUN#1/Config/] (level 5) 00:00:01.853749 00:00:01.853749 [/Devices/apic/] (level 2) 00:00:01.853751 00:00:01.853751 [/Devices/apic/0/] (level 3) 00:00:01.853753 Trusted = 0x0000000000000001 (1) 00:00:01.853755 00:00:01.853755 [/Devices/apic/0/Config/] (level 4) 00:00:01.853758 IOAPIC = 0x0000000000000001 (1) 00:00:01.853759 Mode = 0x0000000000000002 (2) 00:00:01.853760 NumCPUs = 0x0000000000000002 (2) 00:00:01.853762 00:00:01.853762 [/Devices/e1000/] (level 2) 00:00:01.853764 00:00:01.853764 [/Devices/e1000/0/] (level 3) 00:00:01.853767 PCIBusNo = 0x0000000000000000 (0) 00:00:01.853768 PCIDeviceNo = 0x0000000000000003 (3) 00:00:01.853770 PCIFunctionNo = 0x0000000000000000 (0) 00:00:01.853771 Trusted = 0x0000000000000001 (1) 00:00:01.853772 00:00:01.853773 [/Devices/e1000/0/Config/] (level 4) 00:00:01.853775 AdapterType = 0x0000000000000000 (0) 00:00:01.853777 CableConnected = 0x0000000000000001 (1) 00:00:01.853778 LineSpeed = 0x0000000000000000 (0) 00:00:01.853780 MAC = "08 00 27 3f 6b 9d" (cb=6) 00:00:01.853783 00:00:01.853783 [/Devices/e1000/0/LUN#0/] (level 4) 00:00:01.853786 Driver = "NAT" (cb=4) 00:00:01.853787 00:00:01.853788 [/Devices/e1000/0/LUN#0/Config/] (level 5) 00:00:01.853791 AliasMode = 0x0000000000000000 (0) 00:00:01.853793 BootFile = "metasploitable3_default_1491252283380_72218.pxe" (cb=48) 00:00:01.853794 DNSProxy = 0x0000000000000001 (1) 00:00:01.853796 Network = "10.0.2.0/24" (cb=12) 00:00:01.853797 PassDomain = 0x0000000000000001 (1) 00:00:01.853799 TFTPPrefix = "C:\Users\gearc.VirtualBox\TFTP" (cb=32) 00:00:01.853800 UseHostResolver = 0x0000000000000000 (0) 00:00:01.853802 00:00:01.853802 [/Devices/e1000/0/LUN#0/Config/PortForwarding/] (level 6) 00:00:01.853805 00:00:01.853806 [/Devices/e1000/0/LUN#0/Config/PortForwarding/0/] (level 7) 00:00:01.853810 GuestPort = 0x0000000000000d3d (3 389) 00:00:01.853811 HostPort = 0x0000000000000898 (2 200) 00:00:01.853813 Name = "rdp" (cb=4) 00:00:01.853814 Protocol = "TCP" (cb=4) 00:00:01.853816 00:00:01.853816 [/Devices/e1000/0/LUN#0/Config/PortForwarding/1/] (level 7) 00:00:01.853819 GuestPort = 0x0000000000000016 (22) 00:00:01.853821 HostPort = 0x0000000000000899 (2 201) 00:00:01.853822 Name = "ssh" (cb=4) 00:00:01.853824 Protocol = "TCP" (cb=4) 00:00:01.853825 00:00:01.853826 [/Devices/e1000/0/LUN#0/Config/PortForwarding/2/] (level 7) 00:00:01.853830 BindIP = "127.0.0.1" (cb=10) 00:00:01.853831 GuestPort = 0x0000000000001761 (5 985) 00:00:01.853833 HostPort = 0x000000000000089a (2 202) 00:00:01.853835 Name = "winrm" (cb=6) 00:00:01.853836 Protocol = "TCP" (cb=4) 00:00:01.853837 00:00:01.853838 [/Devices/e1000/0/LUN#0/Config/PortForwarding/3/] (level 7) 00:00:01.853841 BindIP = "127.0.0.1" (cb=10) 00:00:01.853843 GuestPort = 0x0000000000001762 (5 986) 00:00:01.853844 HostPort = 0x000000000000089b (2 203) 00:00:01.853846 Name = "winrm-ssl" (cb=10) 00:00:01.853848 Protocol = "TCP" (cb=4) 00:00:01.853849 00:00:01.853850 [/Devices/e1000/0/LUN#999/] (level 4) 00:00:01.853852 Driver = "MainStatus" (cb=11) 00:00:01.853853 00:00:01.853853 [/Devices/e1000/0/LUN#999/Config/] (level 5) 00:00:01.853856 First = 0x0000000000000000 (0) 00:00:01.853858 Last = 0x0000000000000000 (0) 00:00:01.853859 papLeds = 0x0000000001d78338 (30 901 048) 00:00:01.853861 00:00:01.853861 [/Devices/e1000/1/] (level 3) 00:00:01.853863 PCIBusNo = 0x0000000000000000 (0) 00:00:01.853865 PCIDeviceNo = 0x0000000000000008 (8) 00:00:01.853867 PCIFunctionNo = 0x0000000000000000 (0) 00:00:01.853868 Trusted = 0x0000000000000001 (1) 00:00:01.853869 00:00:01.853870 [/Devices/e1000/1/Config/] (level 4) 00:00:01.853873 AdapterType = 0x0000000000000000 (0) 00:00:01.853874 CableConnected = 0x0000000000000001 (1) 00:00:01.853875 LineSpeed = 0x0000000000000000 (0) 00:00:01.853877 MAC = "08 00 27 6f 64 78" (cb=6) 00:00:01.853880 00:00:01.853880 [/Devices/e1000/1/LUN#0/] (level 4) 00:00:01.853882 Driver = "IntNet" (cb=7) 00:00:01.853883 00:00:01.853884 [/Devices/e1000/1/LUN#0/Config/] (level 5) 00:00:01.853886 IfPolicyPromisc = "deny" (cb=5) 00:00:01.853888 IgnoreConnectFailure = 0x0000000000000000 (0) 00:00:01.853889 Network = "HostInterfaceNetworking-VirtualBox Host-Only Ethernet Adapter #2" (cb=65) 00:00:01.853891 Trunk = "\DEVICE{65DDD100-7E40-48E4-B782-07F7C610079F}" (cb=47) 00:00:01.853893 TrunkType = 0x0000000000000003 (3) 00:00:01.853895 00:00:01.853895 [/Devices/e1000/1/LUN#999/] (level 4) 00:00:01.853898 Driver = "MainStatus" (cb=11) 00:00:01.853899 00:00:01.853899 [/Devices/e1000/1/LUN#999/Config/] (level 5) 00:00:01.853902 First = 0x0000000000000000 (0) 00:00:01.853903 Last = 0x0000000000000000 (0) 00:00:01.853905 papLeds = 0x0000000001d78340 (30 901 056) 00:00:01.853907 00:00:01.853907 [/Devices/i8254/] (level 2) 00:00:01.853909 00:00:01.853909 [/Devices/i8254/0/] (level 3) 00:00:01.853911 00:00:01.853912 [/Devices/i8254/0/Config/] (level 4) 00:00:01.853914 00:00:01.853914 [/Devices/i8259/] (level 2) 00:00:01.853916 00:00:01.853916 [/Devices/i8259/0/] (level 3) 00:00:01.853918 Trusted = 0x0000000000000001 (1) 00:00:01.853920 00:00:01.853920 [/Devices/i8259/0/Config/] (level 4) 00:00:01.853922 00:00:01.853923 [/Devices/ichac97/] (level 2) 00:00:01.853924 00:00:01.853925 [/Devices/ichac97/0/] (level 3) 00:00:01.853927 PCIBusNo = 0x0000000000000000 (0) 00:00:01.853928 PCIDeviceNo = 0x0000000000000005 (5) 00:00:01.853930 PCIFunctionNo = 0x0000000000000000 (0) 00:00:01.853931 Trusted = 0x0000000000000001 (1) 00:00:01.853933 00:00:01.853933 [/Devices/ichac97/0/AudioConfig/] (level 4) 00:00:01.853935 00:00:01.853936 [/Devices/ichac97/0/Config/] (level 4) 00:00:01.853938 Codec = "STAC9700" (cb=9) 00:00:01.853939 00:00:01.853940 [/Devices/ichac97/0/LUN#0/] (level 4) 00:00:01.853942 Driver = "AUDIO" (cb=6) 00:00:01.853943 00:00:01.853943 [/Devices/ichac97/0/LUN#0/AttachedDriver/] (level 5) 00:00:01.853946 Driver = "DSoundAudio" (cb=12) 00:00:01.853947 00:00:01.853948 [/Devices/ichac97/0/LUN#0/AttachedDriver/Config/] (level 6) 00:00:01.853950 StreamName = "metasploitable3_default_1491252283380_72218" (cb=44) 00:00:01.853952 00:00:01.853952 [/Devices/ichac97/0/LUN#0/Config/] (level 5) 00:00:01.853955 00:00:01.853955 [/Devices/ichac97/0/LUN#1/] (level 4) 00:00:01.853957 Driver = "AUDIO" (cb=6) 00:00:01.853958 00:00:01.853959 [/Devices/ichac97/0/LUN#1/AttachedDriver/] (level 5) 00:00:01.853961 Driver = "AudioVRDE" (cb=10) 00:00:01.853963 00:00:01.853963 [/Devices/ichac97/0/LUN#1/AttachedDriver/Config/] (level 6) 00:00:01.853966 AudioDriver = "AudioVRDE" (cb=10) 00:00:01.853967 Object = 0x0000000001d7a9d0 (30 910 928) 00:00:01.853970 ObjectVRDPServer = 0x0000000001d82600 (30 942 720) 00:00:01.853971 StreamName = "metasploitable3_default_1491252283380_72218" (cb=44) 00:00:01.853973 00:00:01.853974 [/Devices/ioapic/] (level 2) 00:00:01.853976 00:00:01.853976 [/Devices/ioapic/0/] (level 3) 00:00:01.853978 Trusted = 0x0000000000000001 (1) 00:00:01.853980 00:00:01.853980 [/Devices/ioapic/0/Config/] (level 4) 00:00:01.853983 NumCPUs = 0x0000000000000002 (2) 00:00:01.853984 00:00:01.853985 [/Devices/mc146818/] (level 2) 00:00:01.853987 00:00:01.853987 [/Devices/mc146818/0/] (level 3) 00:00:01.853989 00:00:01.853990 [/Devices/mc146818/0/Config/] (level 4) 00:00:01.853992 UseUTC = 0x0000000000000001 (1) 00:00:01.853993 00:00:01.853994 [/Devices/parallel/] (level 2) 00:00:01.853995 00:00:01.853996 [/Devices/pcarch/] (level 2) 00:00:01.853998 00:00:01.853998 [/Devices/pcarch/0/] (level 3) 00:00:01.854000 Trusted = 0x0000000000000001 (1) 00:00:01.854001 00:00:01.854002 [/Devices/pcarch/0/Config/] (level 4) 00:00:01.854007 00:00:01.854007 [/Devices/pcbios/] (level 2) 00:00:01.854009 00:00:01.854009 [/Devices/pcbios/0/] (level 3) 00:00:01.854011 Trusted = 0x0000000000000001 (1) 00:00:01.854013 00:00:01.854013 [/Devices/pcbios/0/Config/] (level 4) 00:00:01.854017 APIC = 0x0000000000000001 (1) 00:00:01.854018 BootDevice0 = "IDE" (cb=4) 00:00:01.854020 BootDevice1 = "DVD" (cb=4) 00:00:01.854021 BootDevice2 = "NONE" (cb=5) 00:00:01.854023 BootDevice3 = "NONE" (cb=5) 00:00:01.854024 FloppyDevice = "i82078" (cb=7) 00:00:01.854025 HardDiskDevice = "piix3ide" (cb=9) 00:00:01.854026 IOAPIC = 0x0000000000000001 (1) 00:00:01.854028 McfgBase = 0x0000000000000000 (0) 00:00:01.854030 McfgLength = 0x0000000000000000 (0) 00:00:01.854031 NumCPUs = 0x0000000000000002 (2) 00:00:01.854033 PXEDebug = 0x0000000000000000 (0) 00:00:01.854034 UUID = "8e 78 a8 a2 cb 1d 92 40 b5 0e a2 91 48 89 9c 98" (cb=16) 00:00:01.854038 00:00:01.854039 [/Devices/pcbios/0/Config/NetBoot/] (level 5) 00:00:01.854041 00:00:01.854042 [/Devices/pcbios/0/Config/NetBoot/0/] (level 6) 00:00:01.854045 NIC = 0x0000000000000000 (0) 00:00:01.854046 PCIBusNo = 0x0000000000000000 (0) 00:00:01.854048 PCIDeviceNo = 0x0000000000000003 (3) 00:00:01.854049 PCIFunctionNo = 0x0000000000000000 (0) 00:00:01.854051 00:00:01.854051 [/Devices/pci/] (level 2) 00:00:01.854053 00:00:01.854053 [/Devices/pci/0/] (level 3) 00:00:01.854055 Trusted = 0x0000000000000001 (1) 00:00:01.854056 00:00:01.854057 [/Devices/pci/0/Config/] (level 4) 00:00:01.854059 IOAPIC = 0x0000000000000001 (1) 00:00:01.854060 00:00:01.854061 [/Devices/pckbd/] (level 2) 00:00:01.854062 00:00:01.854063 [/Devices/pckbd/0/] (level 3) 00:00:01.854065 Trusted = 0x0000000000000001 (1) 00:00:01.854066 00:00:01.854067 [/Devices/pckbd/0/Config/] (level 4) 00:00:01.854069 00:00:01.854069 [/Devices/pckbd/0/LUN#0/] (level 4) 00:00:01.854071 Driver = "KeyboardQueue" (cb=14) 00:00:01.854073 00:00:01.854073 [/Devices/pckbd/0/LUN#0/AttachedDriver/] (level 5) 00:00:01.854077 Driver = "MainKeyboard" (cb=13) 00:00:01.854078 00:00:01.854078 [/Devices/pckbd/0/LUN#0/AttachedDriver/Config/] (level 6) 00:00:01.854081 Object = 0x0000000001d776b0 (30 897 840) 00:00:01.854083 00:00:01.854083 [/Devices/pckbd/0/LUN#0/Config/] (level 5) 00:00:01.854086 QueueSize = 0x0000000000000040 (64) 00:00:01.854088 00:00:01.854088 [/Devices/pckbd/0/LUN#1/] (level 4) 00:00:01.854090 Driver = "MouseQueue" (cb=11) 00:00:01.854092 00:00:01.854092 [/Devices/pckbd/0/LUN#1/AttachedDriver/] (level 5) 00:00:01.854095 Driver = "MainMouse" (cb=10) 00:00:01.854096 00:00:01.854097 [/Devices/pckbd/0/LUN#1/AttachedDriver/Config/] (level 6) 00:00:01.854100 Object = 0x0000000001d7ea20 (30 927 392) 00:00:01.854102 00:00:01.854102 [/Devices/pckbd/0/LUN#1/Config/] (level 5) 00:00:01.854105 QueueSize = 0x0000000000000080 (128) 00:00:01.854106 00:00:01.854107 [/Devices/pcnet/] (level 2) 00:00:01.854109 00:00:01.854109 [/Devices/piix3ide/] (level 2) 00:00:01.854111 00:00:01.854111 [/Devices/piix3ide/0/] (level 3) 00:00:01.854114 PCIBusNo = 0x0000000000000000 (0) 00:00:01.854115 PCIDeviceNo = 0x0000000000000001 (1) 00:00:01.854117 PCIFunctionNo = 0x0000000000000001 (1) 00:00:01.854118 Trusted = 0x0000000000000001 (1) 00:00:01.854119 00:00:01.854120 [/Devices/piix3ide/0/Config/] (level 4) 00:00:01.854122 Type = "PIIX4" (cb=6) 00:00:01.854124 00:00:01.854124 [/Devices/piix3ide/0/Config/PrimaryMaster/] (level 5) 00:00:01.854127 NonRotationalMedium = 0x0000000000000000 (0) 00:00:01.854128 00:00:01.854129 [/Devices/piix3ide/0/LUN#0/] (level 4) 00:00:01.854131 Driver = "VD" (cb=3) 00:00:01.854132 00:00:01.854133 [/Devices/piix3ide/0/LUN#0/Config/] (level 5) 00:00:01.854135 Format = "VMDK" (cb=5) 00:00:01.854136 Mountable = 0x0000000000000000 (0) 00:00:01.854138 Path = "C:\Users\gearc\VirtualBox VMs\metasploitable3_default_1491252283380_72218\packer-virtualbox-iso-1491245017-disk001.vmdk" (cb=120) 00:00:01.854140 Type = "HardDisk" (cb=9) 00:00:01.854141 00:00:01.854141 [/Devices/piix3ide/0/LUN#999/] (level 4) 00:00:01.854144 Driver = "MainStatus" (cb=11) 00:00:01.854145 00:00:01.854145 [/Devices/piix3ide/0/LUN#999/Config/] (level 5) 00:00:01.854148 DeviceInstance = "piix3ide/0" (cb=11) 00:00:01.854150 First = 0x0000000000000000 (0) 00:00:01.854151 Last = 0x0000000000000003 (3) 00:00:01.854153 pConsole = 0x0000000001d77c50 (30 899 280) 00:00:01.854156 papLeds = 0x0000000001d78038 (30 900 280) 00:00:01.854158 pmapMediumAttachments = 0x0000000001d78478 (30 901 368) 00:00:01.854160 00:00:01.854160 [/Devices/serial/] (level 2) 00:00:01.854162 00:00:01.854163 [/Devices/vga/] (level 2) 00:00:01.854164 00:00:01.854165 [/Devices/vga/0/] (level 3) 00:00:01.854167 PCIBusNo = 0x0000000000000000 (0) 00:00:01.854169 PCIDeviceNo = 0x0000000000000002 (2) 00:00:01.854170 PCIFunctionNo = 0x0000000000000000 (0) 00:00:01.854172 Trusted = 0x0000000000000001 (1) 00:00:01.854173 00:00:01.854174 [/Devices/vga/0/Config/] (level 4) 00:00:01.854176 CustomVideoModes = 0x0000000000000000 (0) 00:00:01.854178 FadeIn = 0x0000000000000001 (1) 00:00:01.854179 FadeOut = 0x0000000000000001 (1) 00:00:01.854181 HeightReduction = 0x0000000000000000 (0) 00:00:01.854182 LogoFile = "" (cb=1) 00:00:01.854192 LogoTime = 0x0000000000000000 (0) 00:00:01.854193 MonitorCount = 0x0000000000000001 (1) 00:00:01.854195 ShowBootMenu = 0x0000000000000002 (2) 00:00:01.854196 VRamSize = 0x0000000000800000 (8 388 608, 8 MB) 00:00:01.854199 00:00:01.854199 [/Devices/vga/0/LUN#0/] (level 4) 00:00:01.854202 Driver = "MainDisplay" (cb=12) 00:00:01.854203 00:00:01.854203 [/Devices/vga/0/LUN#0/Config/] (level 5) 00:00:01.854206 Object = 0x0000000001d7f1b0 (30 929 328) 00:00:01.854208 00:00:01.854208 [/Devices/vga/0/LUN#999/] (level 4) 00:00:01.854210 Driver = "MainStatus" (cb=11) 00:00:01.854212 00:00:01.854212 [/Devices/vga/0/LUN#999/Config/] (level 5) 00:00:01.854215 First = 0x0000000000000000 (0) 00:00:01.854216 Last = 0x0000000000000000 (0) 00:00:01.854217 papLeds = 0x0000000001d78470 (30 901 360) 00:00:01.854219 00:00:01.854220 [/Devices/virtio-net/] (level 2) 00:00:01.854221 00:00:01.854222 [/EM/] (level 1) 00:00:01.854230 TripleFaultReset = 0x0000000000000000 (0) 00:00:01.854231 00:00:01.854231 [/GIM/] (level 1) 00:00:01.854233 Provider = "HyperV" (cb=7) 00:00:01.854234 00:00:01.854234 [/HM/] (level 1) 00:00:01.854236 64bitEnabled = 0x0000000000000001 (1) 00:00:01.854237 EnableLargePages = 0x0000000000000001 (1) 00:00:01.854238 EnableNestedPaging = 0x0000000000000001 (1) 00:00:01.854239 EnableUX = 0x0000000000000001 (1) 00:00:01.854241 EnableVPID = 0x0000000000000001 (1) 00:00:01.854242 Exclusive = 0x0000000000000000 (0) 00:00:01.854244 HMForced = 0x0000000000000001 (1) 00:00:01.854245 00:00:01.854246 [/MM/] (level 1) 00:00:01.854247 CanUseLargerHeap = 0x0000000000000000 (0) 00:00:01.854248 00:00:01.854249 [/PDM/] (level 1) 00:00:01.854250 00:00:01.854250 [/PDM/AsyncCompletion/] (level 2) 00:00:01.854252 00:00:01.854252 [/PDM/AsyncCompletion/File/] (level 3) 00:00:01.854254 00:00:01.854254 [/PDM/AsyncCompletion/File/BwGroups/] (level 4) 00:00:01.854256 00:00:01.854257 [/PDM/BlkCache/] (level 2) 00:00:01.854258 CacheSize = 0x0000000000500000 (5 242 880, 5 MB) 00:00:01.854260 00:00:01.854260 [/PDM/Devices/] (level 2) 00:00:01.854262 00:00:01.854262 [/PDM/Drivers/] (level 2) 00:00:01.854263 00:00:01.854264 [/PDM/Drivers/VBoxC/] (level 3) 00:00:01.854265 Path = "VBoxC" (cb=6) 00:00:01.854266 00:00:01.854267 [/PDM/NetworkShaper/] (level 2) 00:00:01.854268 00:00:01.854269 [/PDM/NetworkShaper/BwGroups/] (level 3) 00:00:01.854271 00:00:01.854271 [/TM/] (level 1) 00:00:01.854272 UTCOffset = 0x0000000000000000 (0) 00:00:01.854273 00:00:01.854274 * End of CFGM dump ** 00:00:01.854287 VM: fHMEnabled=true (configured) fRecompileUser=false fRecompileSupervisor=false 00:00:01.854289 VM: fRawRing1Enabled=false CSAM=true PATM=true 00:00:01.854729 HM: HMR3Init: AMD-V w/ nested paging 00:00:01.854786 MM: cbHyperHeap=0x140000 (1310720) 00:00:01.856235 CPUM: fXStateHostMask=0x7; initial: 0x7; host XCR0=0x7 00:00:01.858197 CPUM: Matched host CPU AMD 0x15/0x10/0x1 AMD_15h_Piledriver with CPU DB entry 'AMD FX-8150 Eight-Core' (AMD 0x15/0x1/0x2 AMD_15h_Bulldozer) 00:00:01.858324 CPUM: MSR fudge: 0x00000017 IA32_PLATFORM_ID 00:00:01.858337 CPUM: MSR fudge: 0x000001a0 IA32_MISC_ENABLE 00:00:01.858348 CPUM: MSR fudge: 0x0000002c P4_EBC_FREQUENCY_ID 00:00:01.858391 CPUM: SetGuestCpuIdFeature: Enabled PAE 00:00:01.858403 CPUM: VCPU 0: Cached APIC base MSR = 0x0 00:00:01.858412 CPUM: VCPU 1: Cached APIC base MSR = 0x0 00:00:01.860958 PGM: HCPhysInterPD=00000000bde34000 HCPhysInterPaePDPT=00000000bde31000 HCPhysInterPaePML4=00000000bde2f000 00:00:01.860973 PGM: apInterPTs={00000000bde33000,00000000bde32000} apInterPaePTs={00000000536af000,0000000235670000} apInterPaePDs={0000000024491000,0000000079f12000,0000000013dd3000,000000005f4b4000} pInterPaePDPT64=00000000bde30000 00:00:01.860992 PGM: Host paging mode: AMD64+PGE+NX 00:00:01.861003 PGM: PGMPool: cMaxPages=1072 (u64MaxPages=1058) 00:00:01.861010 PGM: pgmR3PoolInit: cMaxPages=0x430 cMaxUsers=0x860 cMaxPhysExts=0x860 fCacheEnable=true 00:00:01.897593 TM: GIP - u32Mode=3 (Invariant) u32UpdateHz=93 u32UpdateIntervalNS=10741500 enmUseTscDelta=2 (Pratically Zero) fGetGipCpu=0xb cCpus=4 00:00:01.897636 TM: GIP - u64CpuHz=2 295 717 664 (0x88d5df20) SUPGetCpuHzFromGip => 2 295 717 664 00:00:01.897646 TM: GIP - CPU: iCpuSet=0x0 idCpu=0x0 idApic=0x0 iGipCpu=0x1 i64TSCDelta=0 enmState=3 u64CpuHz=2295698590() cErrors=0 00:00:01.897656 TM: GIP - CPU: iCpuSet=0x1 idCpu=0x1 idApic=0x1 iGipCpu=0x3 i64TSCDelta=0 enmState=3 u64CpuHz=2295716681() cErrors=0 00:00:01.897664 TM: GIP - CPU: iCpuSet=0x2 idCpu=0x2 idApic=0x2 iGipCpu=0x0 i64TSCDelta=0 enmState=3 u64CpuHz=2295717664() cErrors=0 00:00:01.897672 TM: GIP - CPU: iCpuSet=0x3 idCpu=0x3 idApic=0x3 iGipCpu=0x2 i64TSCDelta=0 enmState=3 u64CpuHz=2295709283() cErrors=0 00:00:01.897745 TM: cTSCTicksPerSecond=2 295 717 664 (0x88d5df20) enmTSCMode=1 (VirtTscEmulated) 00:00:01.897748 TM: TSCTiedToExecution=false TSCNotTiedToHalt=false 00:00:01.898863 VMM: CoreCode: R3=00000000072e0000 R0=ffffaa0008f59000 RC=a09b9000 Phys=00000000bddd0000 cb=0x1000 00:00:01.899264 IEM: TargetCpu=CURRENT, Microarch=AMD_15h_Piledriver 00:00:01.899725 GIM: Using provider 'HyperV' (Implementation version: 0) 00:00:01.899744 GIM: HyperV: Reporting vendor as 'VBoxVBoxVBox' 00:00:01.899756 CPUM: SetGuestCpuIdFeature: Enabled Hypervisor Present bit 00:00:01.900051 AIOMgr: Default manager type is 'Async' 00:00:01.900064 AIOMgr: Default file backend is 'NonBuffered' 00:00:01.900379 BlkCache: Cache successfully initialized. Cache size is 5242880 bytes 00:00:01.900395 BlkCache: Cache commit interval is 10000 ms 00:00:01.900406 BlkCache: Cache commit threshold is 2621440 bytes 00:00:02.125735 PcBios: [SMP] BIOS with 2 CPUs 00:00:02.125766 PcBios: Using the 386+ BIOS image. 00:00:02.125926 PcBios: MPS table at 000e1300 00:00:02.127161 PcBios: fCheckShutdownStatusForSoftReset=true fClearShutdownStatusOnHardReset=true 00:00:02.139586 SUP: Opened VBoxDDR0.r0 (C:\Program Files\Oracle\VirtualBox\VBoxDDR0.r0) at 0xfffff804e8f00000 loaded by the native ring-0 loader. 00:00:02.139608 SUP: windbg> .reload /f C:\Program Files\Oracle\VirtualBox\VBoxDDR0.r0=0xfffff804e8f00000 00:00:02.140320 CPUM: SetGuestCpuIdFeature: Enabled xAPIC 00:00:02.140932 IOAPIC: Using implementation 2.0! 00:00:02.141036 PIT: mode=3 count=0x10000 (65536) - 18.20 Hz (ch=0) 00:00:02.153970 Shared Folders service loaded 00:00:02.158374 VGA: Using the 386+ BIOS image. 00:00:02.160821 DrvVD: Flushes will be ignored 00:00:02.160853 DrvVD: Async flushes will be passed to the disk 00:00:02.161207 VD: VDInit finished 00:00:02.176035 VD: Opening the disk took 15156707 ns 00:00:02.176187 PIIX3 ATA: LUN#0: disk, PCHS=16383/16/63, total number of sectors 125829120 00:00:02.176210 PIIX3 ATA: LUN#1: no unit 00:00:02.176309 PIIX3 ATA: LUN#2: no unit 00:00:02.176320 PIIX3 ATA: LUN#3: no unit 00:00:02.176357 PIIX3 ATA: Ctl#0: finished processing RESET 00:00:02.176437 PIIX3 ATA: Ctl#1: finished processing RESET 00:00:02.176510 E1000#0 Chip=82540EM LinkUpDelay=5000ms EthernetCRC=on GSO=enabled Itr=enabled ItrRx=enabled R0=enabled GC=enabled 00:00:02.198919 NAT: Guest address guess set to 10.0.2.15 by initialization 00:00:02.208686 NAT: DNS#0: 192.168.1.1 00:00:02.258347 NAT: Set redirect TCP 0.0.0.0:2200 -> 0.0.0.0:3389 00:00:02.258494 NAT: Set redirect TCP 0.0.0.0:2201 -> 0.0.0.0:22 00:00:02.258644 NAT: Set redirect TCP 127.0.0.1:2202 -> 0.0.0.0:5985 00:00:02.258764 NAT: Set redirect TCP 127.0.0.1:2203 -> 0.0.0.0:5986 00:00:02.259645 E1000#1 Chip=82540EM LinkUpDelay=5000ms EthernetCRC=on GSO=enabled Itr=enabled ItrRx=enabled R0=enabled GC=enabled 00:00:02.259870 IntNet#0: szNetwork={HostInterfaceNetworking-VirtualBox Host-Only Ethernet Adapter #2} enmTrunkType=3 szTrunk={\DEVICE{65DDD100-7E40-48E4-B782-07F7C610079F}} fFlags=0x8000 cbRecv=325632 cbSend=196608 fIgnoreConnectFailure=false 00:00:02.260681 Audio: Initializing DirectSound audio driver 00:00:02.260702 Audio: Using VBox 5.0.x audio code! 00:00:02.406594 DSound: Output: GUID: {EC51B240-8269-4ED4-8BFF-B5DFBFE6F8BE} [Altavoces (Realtek High Definition Audio)] (Module: {0.0.0.00000000}.{ec51b240-8269-4ed4-8bff-b5dfbfe6f8be}) 00:00:02.564393 DSound: Input: GUID: {7E7D4136-C4A7-4007-B3CF-591C2067E7C7} [Micrófono (Realtek High Definition Audio)] (Module: {0.0.1.00000000}.{7e7d4136-c4a7-4007-b3cf-591c2067e7c7}) 00:00:02.564417 DSound: Found 1 host playback devices 00:00:02.564425 DSound: Found 1 host capturing devices 00:00:02.565171 Audio: Host audio backend supports 1 output streams and 1 input streams at once 00:00:02.565209 Audio: Initializing VRDE driver 00:00:02.565219 Audio: Using VBox 5.0.x audio code! 00:00:02.565231 Audio: Host audio backend supports 1 output streams and 2 input streams at once 00:00:02.565248 AC97: Reset 00:00:02.565703 DSound: Guest "Line In" is using host device with GUID: {Default device} 00:00:02.575480 Audio: Skipping to create input stream "[LUN#0] ac97.mc", as the host audio backend reached its maximum of concurrent audio input streams 00:00:02.586501 GIMDev: Registered Hyper-V hypercall page 00:00:02.586554 GIMDev: Registered Hyper-V TSC page 00:00:02.586655 PGM: The CPU physical address width is 48 bits 00:00:02.586673 PGM: PGMR3InitFinalize: 4 MB PSE mask 0000ffffffffffff 00:00:02.586884 TM: TMR3InitFinalize: fTSCModeSwitchAllowed=true 00:00:02.608273 VMM: Thread-context hooks unavailable 00:00:02.608307 HM: Using AMD-V implementation 2.0 00:00:02.608308 HM: Max resume loops = 1024 00:00:02.608310 HM: CPUID 0x80000001.u32AMDFeatureECX = 0x1abbfff 00:00:02.608312 HM: CPUID 0x80000001.u32AMDFeatureEDX = 0x2fd3fbff 00:00:02.608313 HM: AMD HWCR MSR = 0x9001011 00:00:02.608315 HM: AMD-V revision = 0x1 00:00:02.608316 HM: AMD-V max ASID = 65536 00:00:02.608317 HM: AMD-V features = 0x1cff 00:00:02.608318 HM: NESTED_PAGING 00:00:02.608319 HM: LBR_VIRT 00:00:02.608319 HM: SVM_LOCK 00:00:02.608320 HM: NRIP_SAVE 00:00:02.608320 HM: TSC_RATE_MSR 00:00:02.608321 HM: VMCB_CLEAN 00:00:02.608322 HM: FLUSH_BY_ASID 00:00:02.608322 HM: DECODE_ASSIST 00:00:02.608323 HM: PAUSE_FILTER 00:00:02.608323 HM: PAUSE_FILTER_THRESHOLD 00:00:02.608324 HM: Reserved bit 11 00:00:02.608330 HM: Enabled SVM 00:00:02.608331 HM: Enabled nested paging 00:00:02.608332 HM: Enabled large page support 00:00:02.608335 CPUM: SetGuestCpuIdFeature: Enabled SYSENTER/EXIT 00:00:02.608336 CPUM: SetGuestCpuIdFeature: Enabled SYSCALL/RET 00:00:02.608337 CPUM: SetGuestCpuIdFeature: Enabled PAE 00:00:02.608337 CPUM: SetGuestCpuIdFeature: Enabled LONG MODE 00:00:02.608338 CPUM: SetGuestCpuIdFeature: Enabled NX 00:00:02.608339 CPUM: SetGuestCpuIdFeature: Enabled LAHF/SAHF 00:00:02.608339 HM: Disabled TPR patching 00:00:02.608340 HM: Guest support: 32-bit and 64-bit 00:00:02.608344 HM: VT-x/AMD-V init method: LOCAL 00:00:02.608348 CPUM: VCPU 0: Cached APIC base MSR = 0xfee00900 00:00:02.608358 CPUM: VCPU 1: Cached APIC base MSR = 0xfee00800 00:00:02.608366 VMM: fUsePeriodicPreemptionTimers=false 00:00:02.608468 CPUM: Logical host processors: 4 present, 4 max, 4 online, online mask: 000000000000000f 00:00:02.608470 CPUM: Physical host cores: 4 00:00:02.608471 ***** CPUID dump **** 00:00:02.608480 Raw Standard CPUID Leaves 00:00:02.608480 Leaf/sub-leaf eax ebx ecx edx 00:00:02.608488 Gst: 00000000/0000 0000000d 68747541 444d4163 69746e65 00:00:02.608490 Hst: 0000000d 68747541 444d4163 69746e65 00:00:02.608492 Gst: 00000001/0000 00610f01 00020800 96982203 178bfbff 00:00:02.608494 Hst: 00610f01 01040800 3e98320b 178bfbff 00:00:02.608496 Gst: 00000002/0000 00000000 00000000 00000000 00000000 00:00:02.608497 Hst: 00000000 00000000 00000000 00000000 00:00:02.608498 Gst: 00000003/0000 00000000 00000000 00000000 00000000 00:00:02.608499 Hst: 00000000 00000000 00000000 00000000 00:00:02.608500 Gst: 00000004/0000 00000000 00000000 00000000 00000000 00:00:02.608501 Hst: 00000000 00000000 00000000 00000000 00:00:02.608503 Gst: 00000005/0000 00000000 00000000 00000000 00000000 00:00:02.608504 Hst: 00000040 00000040 00000003 00000000 00:00:02.608505 Gst: 00000006/0000 00000000 00000000 00000000 00000000 00:00:02.608506 Hst: 00000000 00000000 00000001 00000000 00:00:02.608507 Gst: 00000007/0000 00000000 00000000 00000000 00000000 00:00:02.608508 Hst: 00000000 00000008 00000000 00000000 00:00:02.608509 Gst: 00000007/0001 00000000 00000000 00000000 00000000 00:00:02.608510 Hst: 00000000 00000000 00000000 00000000 00:00:02.608511 Gst: 00000008/0000 00000000 00000000 00000000 00000000 00:00:02.608512 Hst: 00000000 00000000 00000000 00000000 00:00:02.608513 Gst: 00000009/0000 00000000 00000000 00000000 00000000 00:00:02.608515 Hst: 00000000 00000000 00000000 00000000 00:00:02.608516 Gst: 0000000a/0000 00000000 00000000 00000000 00000000 00:00:02.608517 Hst: 00000000 00000000 00000000 00000000 00:00:02.608518 Gst: 0000000b/0000 00000000 00000000 00000000 00000000 00:00:02.608519 Hst: 00000000 00000000 00000000 00000000 00:00:02.608520 Gst: 0000000c/0000 00000000 00000000 00000000 00000000 00:00:02.608521 Hst: 00000000 00000000 00000000 00000000 00:00:02.608522 Gst: 0000000d/0000 00000007 00000340 000003c0 00000000 00:00:02.608525 Hst: 00000007 00000340 000003c0 40000000 00:00:02.608528 Gst: 0000000d/0001 00000000 00000000 00000000 00000000 00:00:02.608530 Hst: 00000000 00000000 00000000 00000000 00:00:02.608531 Gst: 0000000d/0002 00000100 00000240 00000000 00000000 00:00:02.608533 Hst: 00000100 00000240 00000000 00000000 00:00:02.608534 Gst: 0000000d/0003 00000000 00000000 00000000 00000000 00:00:02.608535 Hst: 00000000 00000000 00000000 00000000 00:00:02.608536 Gst: 0000000d/0004 00000000 00000000 00000000 00000000 00:00:02.608537 Hst: 00000000 00000000 00000000 00000000 00:00:02.608538 Gst: 0000000d/0005 00000000 00000000 00000000 00000000 00:00:02.608539 Hst: 00000000 00000000 00000000 00000000 00:00:02.608540 Gst: 0000000d/0006 00000000 00000000 00000000 00000000 00:00:02.608541 Hst: 00000000 00000000 00000000 00000000 00:00:02.608542 Gst: 0000000d/0007 00000000 00000000 00000000 00000000 00:00:02.608543 Hst: 00000000 00000000 00000000 00000000 00:00:02.608544 Gst: 0000000d/0008 00000000 00000000 00000000 00000000 00:00:02.608545 Hst: 00000000 00000000 00000000 00000000 00:00:02.608546 Gst: 0000000d/0009 00000000 00000000 00000000 00000000 00:00:02.608547 Hst: 00000000 00000000 00000000 00000000 00:00:02.608548 Gst: 0000000d/000a 00000000 00000000 00000000 00000000 00:00:02.608549 Hst: 00000000 00000000 00000000 00000000 00:00:02.608550 Gst: 0000000d/000b 00000000 00000000 00000000 00000000 00:00:02.608551 Hst: 00000000 00000000 00000000 00000000 00:00:02.608552 Gst: 0000000d/000c 00000000 00000000 00000000 00000000 00:00:02.608553 Hst: 00000000 00000000 00000000 00000000 00:00:02.608554 Gst: 0000000d/000d 00000000 00000000 00000000 00000000 00:00:02.608555 Hst: 00000000 00000000 00000000 00000000 00:00:02.608556 Gst: 0000000d/000e 00000000 00000000 00000000 00000000 00:00:02.608557 Hst: 00000000 00000000 00000000 00000000 00:00:02.608558 Gst: 0000000d/000f 00000000 00000000 00000000 00000000 00:00:02.608559 Hst: 00000000 00000000 00000000 00000000 00:00:02.608560 Gst: 0000000d/0010 00000000 00000000 00000000 00000000 00:00:02.608562 Hst: 00000000 00000000 00000000 00000000 00:00:02.608563 Gst: 0000000d/0011 00000000 00000000 00000000 00000000 00:00:02.608564 Hst: 00000000 00000000 00000000 00000000 00:00:02.608565 Gst: 0000000d/0012 00000000 00000000 00000000 00000000 00:00:02.608566 Hst: 00000000 00000000 00000000 00000000 00:00:02.608567 Gst: 0000000d/0013 00000000 00000000 00000000 00000000 00:00:02.608568 Hst: 00000000 00000000 00000000 00000000 00:00:02.608569 Gst: 0000000d/0014 00000000 00000000 00000000 00000000 00:00:02.608570 Hst: 00000000 00000000 00000000 00000000 00:00:02.608571 Gst: 0000000d/0015 00000000 00000000 00000000 00000000 00:00:02.608572 Hst: 00000000 00000000 00000000 00000000 00:00:02.608573 Gst: 0000000d/0016 00000000 00000000 00000000 00000000 00:00:02.608574 Hst: 00000000 00000000 00000000 00000000 00:00:02.608575 Gst: 0000000d/0017 00000000 00000000 00000000 00000000 00:00:02.608576 Hst: 00000000 00000000 00000000 00000000 00:00:02.608577 Gst: 0000000d/0018 00000000 00000000 00000000 00000000 00:00:02.608578 Hst: 00000000 00000000 00000000 00000000 00:00:02.608579 Gst: 0000000d/0019 00000000 00000000 00000000 00000000 00:00:02.608580 Hst: 00000000 00000000 00000000 00000000 00:00:02.608581 Gst: 0000000d/001a 00000000 00000000 00000000 00000000 00:00:02.608582 Hst: 00000000 00000000 00000000 00000000 00:00:02.608583 Gst: 0000000d/001b 00000000 00000000 00000000 00000000 00:00:02.608584 Hst: 00000000 00000000 00000000 00000000 00:00:02.608585 Gst: 0000000d/001c 00000000 00000000 00000000 00000000 00:00:02.608586 Hst: 00000000 00000000 00000000 00000000 00:00:02.608587 Gst: 0000000d/001d 00000000 00000000 00000000 00000000 00:00:02.608588 Hst: 00000000 00000000 00000000 00000000 00:00:02.608589 Gst: 0000000d/001e 00000000 00000000 00000000 00000000 00:00:02.608590 Hst: 00000000 00000000 00000000 00000000 00:00:02.608591 Gst: 0000000d/001f 00000000 00000000 00000000 00000000 00:00:02.608592 Hst: 00000000 00000000 00000000 00000000 00:00:02.608593 Gst: 0000000d/0020 00000000 00000000 00000000 00000000 00:00:02.608594 Hst: 00000000 00000000 00000000 00000000 00:00:02.608595 Gst: 0000000d/0021 00000000 00000000 00000000 00000000 00:00:02.608596 Hst: 00000000 00000000 00000000 00000000 00:00:02.608597 Gst: 0000000d/0022 00000000 00000000 00000000 00000000 00:00:02.608598 Hst: 00000000 00000000 00000000 00000000 00:00:02.608599 Gst: 0000000d/0023 00000000 00000000 00000000 00000000 00:00:02.608600 Hst: 00000000 00000000 00000000 00000000 00:00:02.608601 Gst: 0000000d/0024 00000000 00000000 00000000 00000000 00:00:02.608603 Hst: 00000000 00000000 00000000 00000000 00:00:02.608604 Gst: 0000000d/0025 00000000 00000000 00000000 00000000 00:00:02.608605 Hst: 00000000 00000000 00000000 00000000 00:00:02.608606 Gst: 0000000d/0026 00000000 00000000 00000000 00000000 00:00:02.608607 Hst: 00000000 00000000 00000000 00000000 00:00:02.608608 Gst: 0000000d/0027 00000000 00000000 00000000 00000000 00:00:02.608609 Hst: 00000000 00000000 00000000 00000000 00:00:02.608610 Gst: 0000000d/0028 00000000 00000000 00000000 00000000 00:00:02.608611 Hst: 00000000 00000000 00000000 00000000 00:00:02.608612 Gst: 0000000d/0029 00000000 00000000 00000000 00000000 00:00:02.608613 Hst: 00000000 00000000 00000000 00000000 00:00:02.608614 Gst: 0000000d/002a 00000000 00000000 00000000 00000000 00:00:02.608615 Hst: 00000000 00000000 00000000 00000000 00:00:02.608616 Gst: 0000000d/002b 00000000 00000000 00000000 00000000 00:00:02.608617 Hst: 00000000 00000000 00000000 00000000 00:00:02.608618 Gst: 0000000d/002c 00000000 00000000 00000000 00000000 00:00:02.608619 Hst: 00000000 00000000 00000000 00000000 00:00:02.608620 Gst: 0000000d/002d 00000000 00000000 00000000 00000000 00:00:02.608621 Hst: 00000000 00000000 00000000 00000000 00:00:02.608622 Gst: 0000000d/002e 00000000 00000000 00000000 00000000 00:00:02.608623 Hst: 00000000 00000000 00000000 00000000 00:00:02.608624 Gst: 0000000d/002f 00000000 00000000 00000000 00000000 00:00:02.608625 Hst: 00000000 00000000 00000000 00000000 00:00:02.608626 Gst: 0000000d/0030 00000000 00000000 00000000 00000000 00:00:02.608627 Hst: 00000000 00000000 00000000 00000000 00:00:02.608628 Gst: 0000000d/0031 00000000 00000000 00000000 00000000 00:00:02.608629 Hst: 00000000 00000000 00000000 00000000 00:00:02.608630 Gst: 0000000d/0032 00000000 00000000 00000000 00000000 00:00:02.608631 Hst: 00000000 00000000 00000000 00000000 00:00:02.608632 Gst: 0000000d/0033 00000000 00000000 00000000 00000000 00:00:02.608633 Hst: 00000000 00000000 00000000 00000000 00:00:02.608634 Gst: 0000000d/0034 00000000 00000000 00000000 00000000 00:00:02.608635 Hst: 00000000 00000000 00000000 00000000 00:00:02.608636 Gst: 0000000d/0035 00000000 00000000 00000000 00000000 00:00:02.608637 Hst: 00000000 00000000 00000000 00000000 00:00:02.608638 Gst: 0000000d/0036 00000000 00000000 00000000 00000000 00:00:02.608639 Hst: 00000000 00000000 00000000 00000000 00:00:02.608640 Gst: 0000000d/0037 00000000 00000000 00000000 00000000 00:00:02.608641 Hst: 00000000 00000000 00000000 00000000 00:00:02.608642 Gst: 0000000d/0038 00000000 00000000 00000000 00000000 00:00:02.608644 Hst: 00000000 00000000 00000000 00000000 00:00:02.608645 Gst: 0000000d/0039 00000000 00000000 00000000 00000000 00:00:02.608646 Hst: 00000000 00000000 00000000 00000000 00:00:02.608647 Gst: 0000000d/003a 00000000 00000000 00000000 00000000 00:00:02.608648 Hst: 00000000 00000000 00000000 00000000 00:00:02.608649 Gst: 0000000d/003b 00000000 00000000 00000000 00000000 00:00:02.608650 Hst: 00000000 00000000 00000000 00000000 00:00:02.608651 Gst: 0000000d/003c 00000000 00000000 00000000 00000000 00:00:02.608652 Hst: 00000000 00000000 00000000 00000000 00:00:02.608653 Gst: 0000000d/003d 00000000 00000000 00000000 00000000 00:00:02.608654 Hst: 00000000 00000000 00000000 00000000 00:00:02.608655 Gst: 0000000d/003e 00000000 00000000 00000000 00000000 00:00:02.608656 Hst: 00000080 00000340 00000000 00000000 00:00:02.608657 Gst: 0000000d/003f 00000000 00000000 00000000 00000000 00:00:02.608658 Hst: 00000000 00000000 00000000 00000000 00:00:02.608659 Gst: 0000000d/0040 00000000 00000000 00000000 00000000 00:00:02.608660 Hst: 00000000 00000000 00000000 00000000 00:00:02.608665 Name: AuthenticAMD 00:00:02.608667 Supports: 0x00000000-0x0000000d 00:00:02.608673 Family: 15 Extended: 6 Effective: 21 00:00:02.608675 Model: 0 Extended: 1 Effective: 16 00:00:02.608677 Stepping: 1 00:00:02.608678 Type: 0 (primary) 00:00:02.608680 APIC ID: 0x00 00:00:02.608681 Logical CPUs: 2 00:00:02.608682 CLFLUSH Size: 8 00:00:02.608683 Brand ID: 0x00 00:00:02.608684 Features 00:00:02.608685 Mnemonic - Description = guest (host) 00:00:02.608688 FPU - x87 FPU on Chip = 1 (1) 00:00:02.608690 VME - Virtual 8086 Mode Enhancements = 1 (1) 00:00:02.608692 DE - Debugging extensions = 1 (1) 00:00:02.608694 PSE - Page Size Extension = 1 (1) 00:00:02.608695 TSC - Time Stamp Counter = 1 (1) 00:00:02.608697 MSR - Model Specific Registers = 1 (1) 00:00:02.608698 PAE - Physical Address Extension = 1 (1) 00:00:02.608700 MCE - Machine Check Exception = 1 (1) 00:00:02.608701 CX8 - CMPXCHG8B instruction = 1 (1) 00:00:02.608703 APIC - APIC On-Chip = 1 (1) 00:00:02.608704 SEP - SYSENTER and SYSEXIT Present = 1 (1) 00:00:02.608706 MTRR - Memory Type Range Registers = 1 (1) 00:00:02.608707 PGE - PTE Global Bit = 1 (1) 00:00:02.608709 MCA - Machine Check Architecture = 1 (1) 00:00:02.608710 CMOV - Conditional Move instructions = 1 (1) 00:00:02.608712 PAT - Page Attribute Table = 1 (1) 00:00:02.608713 PSE-36 - 36-bit Page Size Extension = 1 (1) 00:00:02.608715 PSN - Processor Serial Number = 0 (0) 00:00:02.608716 CLFSH - CLFLUSH instruction = 1 (1) 00:00:02.608718 DS - Debug Store = 0 (0) 00:00:02.608719 ACPI - Thermal Mon. & Soft. Clock Ctrl. = 0 (0) 00:00:02.608721 MMX - Intel MMX Technology = 1 (1) 00:00:02.608722 FXSR - FXSAVE and FXRSTOR instructions = 1 (1) 00:00:02.608724 SSE - SSE support = 1 (1) 00:00:02.608725 SSE2 - SSE2 support = 1 (1) 00:00:02.608727 SS - Self Snoop = 0 (0) 00:00:02.608729 HTT - Hyper-Threading Technology = 1 (1) 00:00:02.608730 TM - Therm. Monitor = 0 (0) 00:00:02.608732 PBE - Pending Break Enabled = 0 (0) 00:00:02.608733 SSE3 - SSE3 support = 1 (1) 00:00:02.608735 PCLMUL - PCLMULQDQ support (for AES-GCM) = 1 (1) 00:00:02.608736 DTES64 - DS Area 64-bit Layout = 0 (0) 00:00:02.608738 MONITOR - MONITOR/MWAIT instructions = 0 (1) 00:00:02.608739 CPL-DS - CPL Qualified Debug Store = 0 (0) 00:00:02.608741 VMX - Virtual Machine Extensions = 0 (0) 00:00:02.608742 SMX - Safer Mode Extensions = 0 (0) 00:00:02.608744 EST - Enhanced SpeedStep Technology = 0 (0) 00:00:02.608745 TM2 - Terminal Monitor 2 = 0 (0) 00:00:02.608747 SSSE3 - Supplemental Streaming SIMD Extensions 3 = 1 (1) 00:00:02.608748 CNTX-ID - L1 Context ID = 0 (0) 00:00:02.608749 SDBG - Silicon Debug interface = 0 (0) 00:00:02.608751 FMA - Fused Multiply Add extensions = 0 (1) 00:00:02.608752 CX16 - CMPXCHG16B instruction = 1 (1) 00:00:02.608754 TPRUPDATE - xTPR Update Control = 0 (0) 00:00:02.608755 PDCM - Perf/Debug Capability MSR = 0 (0) 00:00:02.608757 PCID - Process Context Identifiers = 0 (0) 00:00:02.608758 DCA - Direct Cache Access = 0 (0) 00:00:02.608759 SSE4_1 - SSE4_1 support = 1 (1) 00:00:02.608761 SSE4_2 - SSE4_2 support = 1 (1) 00:00:02.608763 X2APIC - x2APIC support = 0 (0) 00:00:02.608764 MOVBE - MOVBE instruction = 0 (0) 00:00:02.608766 POPCNT - POPCNT instruction = 1 (1) 00:00:02.608767 TSCDEADL - Time Stamp Counter Deadline = 0 (0) 00:00:02.608769 AES - AES instructions = 1 (1) 00:00:02.608770 XSAVE - XSAVE instruction = 1 (1) 00:00:02.608772 OSXSAVE - OSXSAVE instruction = 0 (1) 00:00:02.608773 AVX - AVX support = 1 (1) 00:00:02.608775 F16C - 16-bit floating point conversion instructions = 0 (1) 00:00:02.608776 RDRAND - RDRAND instruction = 0 (0) 00:00:02.608778 HVP - Hypervisor Present (we're a guest) = 1 (0) 00:00:02.608779 Structured Extended Feature Flags Enumeration (leaf 7): 00:00:02.608780 Mnemonic - Description = guest (host) 00:00:02.608781 FSGSBASE - RDFSBASE/RDGSBASE/WRFSBASE/WRGSBASE instr. = 0 (0) 00:00:02.608782 TSCADJUST - Supports MSR_IA32_TSC_ADJUST = 0 (0) 00:00:02.608784 SGX - Supports Software Guard Extensions = 0 (0) 00:00:02.608785 BMI1 - Advanced Bit Manipulation extension 1 = 0 (1) 00:00:02.608786 HLE - Hardware Lock Elision = 0 (0) 00:00:02.608788 AVX2 - Advanced Vector Extensions 2 = 0 (0) 00:00:02.608789 FDP_EXCPTN_ONLY - FPU DP only updated on exceptions = 0 (0) 00:00:02.608790 SMEP - Supervisor Mode Execution Prevention = 0 (0) 00:00:02.608792 BMI2 - Advanced Bit Manipulation extension 2 = 0 (0) 00:00:02.608793 ERMS - Enhanced REP MOVSB/STOSB instructions = 0 (0) 00:00:02.608794 INVPCID - INVPCID instruction = 0 (0) 00:00:02.608796 RTM - Restricted Transactional Memory = 0 (0) 00:00:02.608797 PQM - Platform Quality of Service Monitoring = 0 (0) 00:00:02.608798 DEPFPU_CS_DS - Deprecates FPU CS, FPU DS values if set = 0 (0) 00:00:02.608800 MPE - Intel Memory Protection Extensions = 0 (0) 00:00:02.608801 PQE - Platform Quality of Service Enforcement = 0 (0) 00:00:02.608802 AVX512F - AVX512 Foundation instructions = 0 (0) 00:00:02.608804 RDSEED - RDSEED instruction = 0 (0) 00:00:02.608805 ADX - ADCX/ADOX instructions = 0 (0) 00:00:02.608807 SMAP - Supervisor Mode Access Prevention = 0 (0) 00:00:02.608808 CLFLUSHOPT - CLFLUSHOPT (Cache Line Flush) instruction = 0 (0) 00:00:02.608809 INTEL_PT - Intel Processor Trace = 0 (0) 00:00:02.608811 AVX512PF - AVX512 Prefetch instructions = 0 (0) 00:00:02.608812 AVX512ER - AVX512 Exponential & Reciprocal instructions = 0 (0) 00:00:02.608813 AVX512CD - AVX512 Conflict Detection instructions = 0 (0) 00:00:02.608814 SHA - Secure Hash Algorithm extensions = 0 (0) 00:00:02.608816 PREFETCHWT1 - PREFETCHWT1 instruction = 0 (0) 00:00:02.608817 PKU - Protection Key for Usermode pages = 0 (0) 00:00:02.608818 OSPKU - CR4.PKU mirror = 0 (0) 00:00:02.608820 Processor Extended State Enumeration (leaf 0xd): 00:00:02.608821 XSAVE area cur/max size by XCR0, guest: 0x340/0x3c0 00:00:02.608822 XSAVE area cur/max size by XCR0, host: 0x340/0x3c0 00:00:02.608823 Valid XCR0 bits, guest: 0x0000000000000007 ( x87 SSE YMM_Hi128 ) 00:00:02.608826 Valid XCR0 bits, host: 0x4000000000000007 ( x87 SSE YMM_Hi128 LWP ) 00:00:02.608829 XSAVE features, guest: 00:00:02.608830 XSAVE features, host: 00:00:02.608832 XSAVE area cur size XCR0|XSS, guest: 0x0 00:00:02.608833 XSAVE area cur size XCR0|XSS, host: 0x0 00:00:02.608834 Valid IA32_XSS bits, guest: 0x0000000000000000 00:00:02.608835 Valid IA32_XSS bits, host: 0x0000000000000000 00:00:02.608836 State #2, guest: off=0x0240, cb=0x0100 IA32_XSS-bit -- YMM_Hi128 00:00:02.608838 State #2, host: off=0x0240, cb=0x0100 IA32_XSS-bit -- YMM_Hi128 00:00:02.608844 State #62, host: off=0x0340, cb=0x0080 IA32_XSS-bit -- LWP 00:00:02.608847 Raw Hypervisor CPUID Leaves 00:00:02.608847 Leaf/sub-leaf eax ebx ecx edx 00:00:02.608848 Gst: 40000000/0000 40000006 786f4256 786f4256 786f4256 00:00:02.608850 Hst: 00000000 00000000 00000000 00000000 00:00:02.608851 Gst: 40000001/0000 31237648 00000000 00000000 00000000 00:00:02.608853 Hst: 00000000 00000000 00000000 00000000 00:00:02.608854 Gst: 40000002/0000 00000000 00000000 00000000 00000000 00:00:02.608855 Hst: 00000000 00000000 00000000 00000000 00:00:02.608856 Gst: 40000003/0000 00000af2 00000000 00000000 00000500 00:00:02.608858 Hst: 00000000 00000000 00000000 00000000 00:00:02.608859 Gst: 40000004/0000 00000030 ffffffff 00000000 00000000 00:00:02.608860 Hst: 00000000 00000000 00000000 00000000 00:00:02.608861 Gst: 40000006/0000 0000000a 00000000 00000000 00000000 00:00:02.608863 Hst: 00000000 00000000 00000000 00000000 00:00:02.608864 Raw Extended CPUID Leaves 00:00:02.608864 Leaf/sub-leaf eax ebx ecx edx 00:00:02.608865 Gst: 80000000/0000 8000001e 68747541 444d4163 69746e65 00:00:02.608867 Hst: 8000001e 68747541 444d4163 69746e65 00:00:02.608868 Gst: 80000001/0000 00610f01 10000000 000001f3 2bd3fb7f 00:00:02.608870 Hst: 00610f01 10000000 01abbfff 2fd3fbff 00:00:02.608872 Gst: 80000002/0000 20444d41 2d303141 30303634 5041204d 00:00:02.608873 Hst: 20444d41 2d303141 30303634 5041204d 00:00:02.608875 Gst: 80000003/0000 69772055 52206874 6f656461 6d74286e 00:00:02.608877 Hst: 69772055 52206874 6f656461 6d74286e 00:00:02.608878 Gst: 80000004/0000 44482029 61724720 63696870 00202073 00:00:02.608880 Hst: 44482029 61724720 63696870 00202073 00:00:02.608881 Gst: 80000005/0000 ff40ff18 ff40ff30 10040140 40020140 00:00:02.608883 Hst: ff40ff18 ff40ff30 10040140 40020140 00:00:02.608885 Gst: 80000006/0000 64006400 64004200 08008140 00000000 00:00:02.608886 Hst: 64006400 64004200 08008140 00000000 00:00:02.608888 Gst: 80000007/0000 00000000 00000000 00000000 00000000 00:00:02.608889 Hst: 00000000 00000000 00000000 000007d9 00:00:02.608890 Gst: 80000008/0000 00003030 00000000 00000001 00000000 00:00:02.608892 Hst: 00003030 00000000 00004003 00000000 00:00:02.608893 Gst: 80000009/0000 00000000 00000000 00000000 00000000 00:00:02.608894 Hst: 00000000 00000000 00000000 00000000 00:00:02.608895 Gst: 8000000a/0000 00000000 00000000 00000000 00000000 00:00:02.608896 Hst: 00000001 00010000 00000000 00001cff 00:00:02.608897 Gst: 8000000b/0000 00000000 00000000 00000000 00000000 00:00:02.608899 Hst: 00000000 00000000 00000000 00000000 00:00:02.608900 Gst: 8000000c/0000 00000000 00000000 00000000 00000000 00:00:02.608901 Hst: 00000000 00000000 00000000 00000000 00:00:02.608902 Gst: 8000000d/0000 00000000 00000000 00000000 00000000 00:00:02.608903 Hst: 00000000 00000000 00000000 00000000 00:00:02.608904 Gst: 8000000e/0000 00000000 00000000 00000000 00000000 00:00:02.608905 Hst: 00000000 00000000 00000000 00000000 00:00:02.608906 Gst: 8000000f/0000 00000000 00000000 00000000 00000000 00:00:02.608908 Hst: 00000000 00000000 00000000 00000000 00:00:02.608909 Gst: 80000010/0000 00000000 00000000 00000000 00000000 00:00:02.608910 Hst: 00000000 00000000 00000000 00000000 00:00:02.608911 Gst: 80000011/0000 00000000 00000000 00000000 00000000 00:00:02.608912 Hst: 00000000 00000000 00000000 00000000 00:00:02.608913 Gst: 80000012/0000 00000000 00000000 00000000 00000000 00:00:02.608914 Hst: 00000000 00000000 00000000 00000000 00:00:02.608915 Gst: 80000013/0000 00000000 00000000 00000000 00000000 00:00:02.608917 Hst: 00000000 00000000 00000000 00000000 00:00:02.608918 Gst: 80000014/0000 00000000 00000000 00000000 00000000 00:00:02.608919 Hst: 00000000 00000000 00000000 00000000 00:00:02.608920 Gst: 80000015/0000 00000000 00000000 00000000 00000000 00:00:02.608921 Hst: 00000000 00000000 00000000 00000000 00:00:02.608922 Gst: 80000016/0000 00000000 00000000 00000000 00000000 00:00:02.608923 Hst: 00000000 00000000 00000000 00000000 00:00:02.608924 Gst: 80000017/0000 00000000 00000000 00000000 00000000 00:00:02.608926 Hst: 00000000 00000000 00000000 00000000 00:00:02.608926 Gst: 80000018/0000 00000000 00000000 00000000 00000000 00:00:02.608928 Hst: 00000000 00000000 00000000 00000000 00:00:02.608929 Gst: 80000019/0000 f040f018 64006400 00000000 00000000 00:00:02.608930 Hst: f040f018 64006400 00000000 00000000 00:00:02.608931 Gst: 8000001a/0000 00000003 00000000 00000000 00000000 00:00:02.608933 Hst: 00000003 00000000 00000000 00000000 00:00:02.608934 Gst: 8000001b/0000 00000000 00000000 00000000 00000000 00:00:02.608935 Hst: 000000ff 00000000 00000000 00000000 00:00:02.608936 Gst: 8000001c/0000 00000000 00000000 00000000 00000000 00:00:02.608937 Hst: 00000000 80032013 00010200 8000000f 00:00:02.608939 Gst: 8000001d/0000 00000121 00c0003f 0000003f 00000000 00:00:02.608940 Hst: 00000121 00c0003f 0000003f 00000000 00:00:02.608941 Gst: 8000001d/0001 00004122 0040003f 000001ff 00000000 00:00:02.608943 Hst: 00004122 0040003f 000001ff 00000000 00:00:02.608944 Gst: 8000001d/0002 00004143 03c0003f 000007ff 00000001 00:00:02.608946 Hst: 00004143 03c0003f 000007ff 00000001 00:00:02.608947 Gst: 8000001d/0003 00000000 00000000 00000000 00000000 00:00:02.608948 Hst: 00000000 00000000 00000000 00000000 00:00:02.608950 Gst: 8000001e/0000 00000000 00000100 00000000 00000000 00:00:02.608951 Hst: 00000011 00000100 00000000 00000000 00:00:02.608952 Ext Name: AuthenticAMD 00:00:02.608953 Ext Supports: 0x80000000-0x8000001e 00:00:02.608954 Family: 15 Extended: 6 Effective: 21 00:00:02.608955 Model: 0 Extended: 1 Effective: 16 00:00:02.608956 Stepping: 1 00:00:02.608957 Brand ID: 0x000 00:00:02.608960 Ext Features 00:00:02.608961 Mnemonic - Description = guest (host) 00:00:02.608962 FPU - x87 FPU on Chip = 1 (1) 00:00:02.608964 VME - Virtual 8086 Mode Enhancements = 1 (1) 00:00:02.608965 DE - Debugging extensions = 1 (1) 00:00:02.608967 PSE - Page Size Extension = 1 (1) 00:00:02.608968 TSC - Time Stamp Counter = 1 (1) 00:00:02.608970 MSR - K86 Model Specific Registers = 1 (1) 00:00:02.608971 PAE - Physical Address Extension = 1 (1) 00:00:02.608973 MCE - Machine Check Exception = 0 (1) 00:00:02.608974 CX8 - CMPXCHG8B instruction = 1 (1) 00:00:02.608976 APIC - APIC On-Chip = 1 (1) 00:00:02.608977 SEP - SYSCALL/SYSRET = 1 (1) 00:00:02.608979 MTRR - Memory Type Range Registers = 1 (1) 00:00:02.608980 PGE - PTE Global Bit = 1 (1) 00:00:02.608982 MCA - Machine Check Architecture = 1 (1) 00:00:02.608983 CMOV - Conditional Move instructions = 1 (1) 00:00:02.608985 PAT - Page Attribute Table = 1 (1) 00:00:02.608986 PSE-36 - 36-bit Page Size Extension = 1 (1) 00:00:02.608987 NX - No-Execute/Execute-Disable = 1 (1) 00:00:02.608989 AXMMX - AMD Extensions to MMX instructions = 1 (1) 00:00:02.608990 MMX - Intel MMX Technology = 1 (1) 00:00:02.608992 FXSR - FXSAVE and FXRSTOR Instructions = 1 (1) 00:00:02.608993 FFXSR - AMD fast FXSAVE and FXRSTOR instructions = 1 (1) 00:00:02.608994 Page1GB - 1 GB large page = 0 (1) 00:00:02.608995 RDTSCP - RDTSCP instruction = 1 (1) 00:00:02.608997 LM - AMD64 Long Mode = 1 (1) 00:00:02.608998 3DNOWEXT - AMD Extensions to 3DNow = 0 (0) 00:00:02.609000 3DNOW - AMD 3DNow = 0 (0) 00:00:02.609001 LahfSahf - LAHF/SAHF support in 64-bit mode = 1 (1) 00:00:02.609003 CmpLegacy - Core multi-processing legacy mode = 1 (1) 00:00:02.609004 SVM - AMD VM extensions = 0 (1) 00:00:02.609006 EXTAPIC - AMD Extended APIC registers = 0 (1) 00:00:02.609007 CR8L - AMD LOCK MOV CR0 means MOV CR8 = 1 (1) 00:00:02.609008 ABM - AMD Advanced Bit Manipulation = 1 (1) 00:00:02.609010 SSE4A - SSE4A instructions = 1 (1) 00:00:02.609011 MISALIGNSSE - AMD Misaligned SSE mode = 1 (1) 00:00:02.609012 3DNOWPRF - AMD PREFETCH and PREFETCHW instructions = 1 (1) 00:00:02.609014 OSVW - AMD OS Visible Workaround = 0 (1) 00:00:02.609015 IBS - Instruct Based Sampling = 0 (1) 00:00:02.609017 XOP - Extended Operation support = 0 (1) 00:00:02.609018 SKINIT - SKINIT, STGI, and DEV support = 0 (1) 00:00:02.609019 WDT - AMD Watchdog Timer support = 0 (1) 00:00:02.609021 LWP - Lightweight Profiling support = 0 (1) 00:00:02.609022 FMA4 - Four operand FMA instruction support = 0 (1) 00:00:02.609023 17 - Reserved = 0 (1) 00:00:02.609025 NodeId - NodeId in MSR C001_100C = 0 (1) 00:00:02.609027 TBM - Trailing Bit Manipulation instructions = 0 (1) 00:00:02.609028 TOPOEXT - Topology Extensions = 0 (0) 00:00:02.609029 23 - Reserved = 0 (1) 00:00:02.609031 24 - Reserved = 0 (1) 00:00:02.609033 Full Name: "AMD A10-4600M APU with Radeon(tm) HD Graphics " 00:00:02.609035 TLB 2/4M Instr/Uni: fully 24 entries 00:00:02.609037 TLB 2/4M Data: fully 64 entries 00:00:02.609039 TLB 4K Instr/Uni: fully 48 entries 00:00:02.609041 TLB 4K Data: fully 64 entries 00:00:02.609042 L1 Instr Cache Line Size: 64 bytes 00:00:02.609043 L1 Instr Cache Lines Per Tag: 1 00:00:02.609044 L1 Instr Cache Associativity: 2 way 00:00:02.609045 L1 Instr Cache Size: 64 KB 00:00:02.609046 L1 Data Cache Line Size: 64 bytes 00:00:02.609047 L1 Data Cache Lines Per Tag: 1 00:00:02.609047 L1 Data Cache Associativity: 4 way 00:00:02.609048 L1 Data Cache Size: 16 KB 00:00:02.609049 L2 TLB 2/4M Instr/Uni: 8 way 1024 entries 00:00:02.609050 L2 TLB 2/4M Data: 8 way 1024 entries 00:00:02.609051 L2 TLB 4K Instr/Uni: 4 way 512 entries 00:00:02.609052 L2 TLB 4K Data: 8 way 1024 entries 00:00:02.609053 L2 Cache Line Size: 0 bytes 00:00:02.609053 L2 Cache Lines Per Tag: 0 00:00:02.609054 L2 Cache Associativity: off
00:00:02.609055 L2 Cache Size: 0 KB 00:00:02.609056 APM Features:
00:00:02.609057 Host Invariant-TSC support: true 00:00:02.609058 Physical Address Width: 48 bits 00:00:02.609058 Virtual Address Width: 48 bits 00:00:02.609059 Guest Physical Address Width: 0 bits 00:00:02.609060 Physical Core Count: 2 00:00:02.609061 00:00:02.609062 **** End of CPUID dump ** 00:00:02.628079 PcBios: ATA LUN#0 LCHS=1024/255/63 00:00:02.628121 APIC: fPostedIntrsEnabled=false fVirtApicRegsEnabled=false fSupportsTscDeadline=false 00:00:02.628135 VMEmt: Halt method global1 (5) 00:00:02.628172 VMEmt: HaltedGlobal1 config: cNsSpinBlockThresholdCfg=50000 00:00:02.628192 Changing the VM state from 'CREATING' to 'CREATED' 00:00:02.629223 SharedFolders host service: Adding host mapping 00:00:02.629249 Host path '\?\C:\Users\gearc\Documents\metasploitable3', map name 'vagrant', writable, automount=false, create_symlinks=true, missing=false 00:00:02.629458 Changing the VM state from 'CREATED' to 'POWERING_ON' 00:00:02.629649 Changing the VM state from 'POWERING_ON' to 'RUNNING' 00:00:02.629670 Console: Machine state changed to 'Running' 00:00:02.634385 VMMDev: Guest Log: BIOS: VirtualBox 5.1.18 00:00:02.636476 PIT: mode=2 count=0x10000 (65536) - 18.20 Hz (ch=0) 00:00:02.652915 Display::handleDisplayResize: uScreenId=0 pvVRAM=0000000000000000 w=720 h=400 bpp=0 cbLine=0x0 flags=0x1 00:00:02.660967 PIIX3 ATA: Ctl#0: RESET, DevSel=0 AIOIf=0 CmdIf0=0x00 (-1 usec ago) CmdIf1=0x00 (-1 usec ago) 00:00:02.661050 PIIX3 ATA: Ctl#0: finished processing RESET 00:00:02.661715 VMMDev: Guest Log: BIOS: ata0-0: PCHS=16383/16/63 LCHS=1024/255/63 00:00:02.662644 PIIX3 ATA: Ctl#0: RESET, DevSel=1 AIOIf=0 CmdIf0=0xec (-1 usec ago) CmdIf1=0x00 (-1 usec ago) 00:00:02.663217 PIIX3 ATA: Ctl#0: finished processing RESET 00:00:02.676382 PIT: mode=2 count=0x48d3 (18643) - 64.00 Hz (ch=0) 00:00:02.696795 Display::handleDisplayResize: uScreenId=0 pvVRAM=0000000007b90000 w=640 h=480 bpp=32 cbLine=0xA00 flags=0x1 00:00:03.418424 NAT: Old socket recv size: 64KB 00:00:03.418469 NAT: Old socket send size: 64KB 00:00:05.157927 Display::handleDisplayResize: uScreenId=0 pvVRAM=0000000000000000 w=720 h=400 bpp=0 cbLine=0x0 flags=0x1 00:00:05.162972 PIT: mode=2 count=0x10000 (65536) - 18.20 Hz (ch=0) 00:00:05.163370 VMMDev: Guest Log: BIOS: Boot : bseqnr=1, bootseq=0032 00:00:05.163764 VMMDev: Guest Log: BIOS: Booting from Hard Disk... 00:00:05.374199 Display::handleDisplayResize: uScreenId=0 pvVRAM=0000000007b90000 w=1024 h=768 bpp=24 cbLine=0xC00 flags=0x1 00:00:06.442585 RTC: period=0x200 (512) 64 Hz 00:00:06.638806 GIM: HyperV: Guest OS reported ID 0x1040601011db1 00:00:06.638841 GIM: HyperV: Open-source=false Vendor=0x1 OS=0x4 (Windows NT or derivative) Major=6 Minor=1 ServicePack=1 Build=7601 00:00:06.638879 GIM: HyperV: Enabled hypercall page at 0x0000000000487000 00:00:06.638914 GIM: HyperV: Enabled TSC page at 0x0000000000488000 - u64TscScale=0x11d788100000000 u64TscKHz=0x2307a5 (2 295 717) Seq=1 00:00:06.638980 TM: Switching TSC mode from 'VirtTscEmulated' to 'RealTscOffset' 00:00:06.655748 Display::handleDisplayResize: uScreenId=0 pvVRAM=0000000007b90000 w=640 h=480 bpp=0 cbLine=0x140 flags=0x1 00:00:07.534097 CPUM: VCPU 1: Cached APIC base MSR = 0xfee00800 00:00:09.574024 VMMDev: Guest Log: VBoxGuest: Windows version 6.1, build 7601 00:00:09.598283 VMMDev: Guest Additions information report: Version 5.1.18 r114002 '5.1.18' 00:00:09.599881 VMMDev: Guest Additions information report: Interface = 0x00010004 osType = 0x00037100 (Windows 7, 64-bit) 00:00:09.600078 VMMDev: Guest Additions capability report: (0x0 -> 0x0) seamless: no, hostWindowMapping: no, graphics: no 00:00:09.600249 VMMDev: Guest reported fixed hypervisor window at 00002c00000 LB 0xc00000 (rc=VINF_SUCCESS) 00:00:09.600284 VMMDev: vmmDevReqHandler_HeartbeatConfigure: No change (fHeartbeatActive=false). 00:00:09.600308 VMMDev: Heartbeat flatline timer set to trigger after 4 000 000 000 ns 00:00:11.710570 VMMDev: Guest Log: VBoxMP::DriverEntry: VBox XPDM Driver for Windows version 5.1.18r114002, 64 bit; Built Mar 15 2017 16:37:49 00:00:12.141201 VMMDev: Guest Log: VBoxMP::VBoxDrvFindAdapter: using HGSMI 00:00:12.923327 VMMDev: Guest Log: VBoxDisp[0]: VBVA enabled 00:00:12.923371 VBVA: InfoScreen: [0] @0,0 1024x768, line 0x1000, BPP 32, flags 0x1 00:00:12.923383 Display::handleDisplayResize: uScreenId=0 pvVRAM=0000000007b90000 w=1024 h=768 bpp=32 cbLine=0x1000 flags=0x1 00:00:14.280510 NAT: Link up 00:00:14.293348 NAT: DHCP offered IP address 10.0.2.15 00:00:14.302231 NAT: IPv6 not supported 00:00:18.833616 NAT: DHCP offered IP address 10.0.2.15 00:00:22.408958 NAT: DHCP offered IP address 10.0.2.15 00:00:30.622720 VMMDev: Guest Additions capability report: (0x0 -> 0x0) seamless: no, hostWindowMapping: no, graphics: no 00:05:11.843376 NAT: DHCP offered IP address 10.0.2.15 00:06:19.742360 NAT: DHCP offered IP address 10.0.2.15 00:09:01.722713 NAT: DHCP offered IP address 10.0.2.15 00:10:53.235013 NAT: DHCP offered IP address 10.0.2.15

Chan9390 commented 7 years ago

The possible reason I could think as of now is it is a known virtualbox bug for Windows 10 : ( Refer http://stackoverflow.com/questions/31736495/virtualbox-windows-10-64-bit-host-the-vm-session-was-aborted ) but not sure as you are using the latest virtualbox. Try Menu -> Machine -> Reset all warnings (might work)

gearcapitan commented 7 years ago

Then you think if I use an older version of virtualbox, will it work? @Chan9390

Chan9390 commented 7 years ago

I see that you have the latest version of VirtualBox (VirtualBox VM 5.1.18 r114002 from logs). Try downgrading to a different version. Mine is 5.1.14 and the setup is working fine.

gearcapitan commented 7 years ago

well well. I will try and report any changes

gearcapitan commented 7 years ago

@Chan9390 Try what you said about using a previous version of virutal box but this is the result sin titulo

Chan9390 commented 7 years ago

The above image shows that the vagrant image is working pretty fine, but the installation script doesnt work. This issue is same as issues #64 and #69, but I see that the issue #69 was resolved in the commit 5130f49. Are you using the latest metasploitable git package ?

gearcapitan commented 7 years ago

@Chan9390 @jbarnett-r7 I use previous versions of virtualbox and this is what happened, the error is the same already and echo what they have suggested but it has not worked and if you create a version with a thick version of packer, vagrant, and virtualbox, a The last time I went, maybe the one that is not working also makes people feel less interested in downloading it, I can contribute by trying over and over as many times as necessary, I would really like it if it works, if they believe Something missing to prove, tell me sin titulo And if you ask, if you do fix the glassfish and give that error

jbarnett-r7 commented 7 years ago

It looks like you're now seeing the same issue as in #115. I'm going to close this one out since the original problem was resolved by downgrading VirtualBox and we can track the glassfish issue in the other thread.