CVE-2018-3646 - Exposure of Sensitive Information to an Unauthorized Actor

Severity

47%

Complexity

34%

Confidentiality

115%

Systems with microprocessors utilizing speculative execution and address translations may allow unauthorized disclosure of information residing in the L1 data cache to an attacker with local user access with guest OS privilege via a terminal page fault and a side-channel analysis.

Systems with microprocessors utilizing speculative execution and address translations may allow unauthorized disclosure of information residing in the L1 data cache to an attacker with local user access with guest OS privilege via a terminal page fault and a side-channel analysis.

CVSS 3.0 Base Score 5.6. CVSS Attack Vector: local. CVSS Attack Complexity: high. CVSS Vector: (CVSS:3.0/AV:L/AC:H/PR:L/UI:N/S:C/C:H/I:N/A:N).

CVSS 2.0 Base Score 4.7. CVSS Attack Vector: local. CVSS Attack Complexity: medium. CVSS Vector: (AV:L/AC:M/Au:N/C:C/I:N/A:N).

Demo Examples

Exposure of Sensitive Information to an Unauthorized Actor

CWE-200

The following code checks validity of the supplied username and password and notifies the user of a successful or failed login.


               
}
}
print "Login Successful";
print "Login Failed - incorrect password";
print "Login Failed - unknown username";

In the above code, there are different messages for when an incorrect username is supplied, versus when the username is correct but the password is wrong. This difference enables a potential attacker to understand the state of the login function, and could allow an attacker to discover a valid username by trying different values until the incorrect password message is returned. In essence, this makes it easier for an attacker to obtain half of the necessary authentication credentials.

While this type of information may be helpful to a user, it is also useful to a potential attacker. In the above example, the message for both failed cases should be the same, such as:


               
"Login Failed - incorrect username or password"

Exposure of Sensitive Information to an Unauthorized Actor

CWE-200

This code tries to open a database connection, and prints any exceptions that occur.


               
}
openDbConnection();
//print exception message that includes exception message and configuration file location
echo 'Check credentials in config file at: ', $Mysql_config_location, '\n';

If an exception occurs, the printed message exposes the location of the configuration file the script is using. An attacker can use this information to target the configuration file (perhaps exploiting a Path Traversal weakness). If the file can be read, the attacker could gain credentials for accessing the database. The attacker may also be able to replace the file with a malicious one, causing the application to use an arbitrary database.

Exposure of Sensitive Information to an Unauthorized Actor

CWE-200

In the example below, the method getUserBankAccount retrieves a bank account object from a database using the supplied username and account number to query the database. If an SQLException is raised when querying the database, an error message is created and output to a log file.


               
}
return userAccount;
}
userAccount = (BankAccount)queryResult.getObject(accountNumber);
Logger.getLogger(BankManager.class.getName()).log(Level.SEVERE, logMessage, ex);

The error message that is created includes information about the database query that may contain sensitive information about the database or query logic. In this case, the error message will expose the table name and column names used in the database. This data could be used to simplify other attacks, such as SQL injection (CWE-89) to directly access the database.

Exposure of Sensitive Information to an Unauthorized Actor

CWE-200

This code stores location information about the current user:


               
}...
Log.e("ExampleActivity", "Caught exception: " + e + " While on User:" + User.toString());

When the application encounters an exception it will write the user object to the log. Because the user object contains location information, the user's location is also written to the log.

Exposure of Sensitive Information to an Unauthorized Actor

CWE-200

The following is an actual MySQL error statement:


               
Warning: mysql_pconnect(): Access denied for user: 'root@localhost' (Using password: N1nj4) in /usr/local/www/wi-data/includes/database.inc on line 4

The error clearly exposes the database credentials.

Exposure of Sensitive Information to an Unauthorized Actor

CWE-200

This code displays some information on a web page.


               
Social Security Number: <%= ssn %></br>Credit Card Number: <%= ccn %>

The code displays a user's credit card and social security numbers, even though they aren't absolutely necessary.

Exposure of Sensitive Information to an Unauthorized Actor

CWE-200

The following program changes its behavior based on a debug flag.


               
} %>

The code writes sensitive debug information to the client browser if the "debugEnabled" flag is set to true .

Exposure of Sensitive Information to an Unauthorized Actor

CWE-200

This code uses location to determine the user's current US State location.

First the application must declare that it requires the ACCESS_FINE_LOCATION permission in the application's manifest.xml:


               
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>

During execution, a call to getLastLocation() will return a location based on the application's location permissions. In this case the application has permission for the most accurate location possible:


               
deriveStateFromCoords(userCurrLocation);

While the application needs this information, it does not need to use the ACCESS_FINE_LOCATION permission, as the ACCESS_COARSE_LOCATION permission will be sufficient to identify which US state the user is in.

Overview

Type

Intel Core

First reported 6 years ago

2018-08-14 19:29:00

Last updated 5 years ago

2019-04-23 19:32:00

Affected Software

Intel Core I3 330E

330e

Intel Core I3 330M

330m

Intel Core I3 330UM

330um

Intel Core I3 350M

350m

Intel Core I3 370M

370m

Intel Core I3 380M

380m

Intel Core I3 380UM

380um

Intel Core I3 390M

390m

Intel Core I3 530

530

Intel Core I3 540

540

Intel Core I3 550

550

Intel Core I3 560

560

Intel Core I3 2100

2100

Intel Core I3 2100T

2100t

Intel Core I3 2102

2102

Intel Core I3 2105

2105

Intel Core I3 2115C

2115c

Intel Core I3 2120

2120

Intel Core I3 2120T

2120t

Intel Core I3 2125

2125

Intel Core I3 2130

2130

Intel Core I3 2310E

2310e

Intel Core I3 2310M

2310m

Intel Core I3 2312M

2312m

Intel Core I3 2328M

2328m

Intel Core I3 2330E

2330e

Intel Core I3 2330M

2330m

Intel Core I3 2340UE

2340ue

Intel Core I3 2348M

2348m

Intel Core I3 2350M

2350m

Intel Core I3 2357M

2357m

Intel Core I3 2365M

2365m

Intel Core I3 2367M

2367m

Intel Core I3 2370M

2370m

Intel Core I3 2375M

2375m

Intel Core I3 2377M

2377m

Intel Core I3 3110M

3110m

Intel Core I3 3115C

3115c

Intel Core I3 3120M

3120m

Intel Core I3 3120ME

3120me

Intel Core I3 3130M

3130m

Intel Core I3 3210

3210

Intel Core I3 3217U

3217u

Intel Core I3 3217UE

3217ue

Intel Core I3 3220

3220

Intel Core I3 3220T

3220t

Intel Core I3 3225

3225

Intel Core I3 3227U

3227u

Intel Core I3 3229Y

3229y

Intel Core I3 3240

3240

Intel Core I3 3240T

3240t

Intel Core I3 3245

3245

Intel Core I3 3250

3250

Intel Core I3 3250T

3250t

Intel Core I3 4000M

4000m

Intel Core I3 4005U

4005u

Intel Core I3 4010U

4010u

Intel Core I3 4010Y

4010y

Intel Core I3 4012Y

4012y

Intel Core I3 4020Y

4020y

Intel Core I3 4025U

4025u

Intel Core I3 4030U

4030u

Intel Core I3 4030Y

4030y

Intel Core I3 4100E

4100e

Intel Core I3 4100M

4100m

Intel Core I3 4100U

4100u

Intel Core I3 4102E

4102e

Intel Core I3 4110E

4110e

Intel Core I3 4110M

4110m

Intel Core I3 4112E

4112e

Intel Core I3 4120U

4120u

Intel Core I3 4130

4130

Intel Core I3 4130T

4130t

Intel Core I3 4150

4150

Intel Core I3 4150T

4150t

Intel Core I3 4158U

4158u

Intel Core I3 4160

4160

Intel Core I3 4160T

4160t

Intel Core I3 4170

4170

Intel Core I3 4170T

4170t

Intel Core I3 4330

4330

Intel Core I3 4330T

4330t

Intel Core I3 4330TE

4330te

Intel Core I3 4340

4340

Intel Core I3 4340TE

4340te

Intel Core I3 4350

4350

Intel Core I3 4350T

4350t

Intel Core I3 4360

4360

Intel Core I3 4360T

4360t

Intel Core I3 4370

4370

Intel Core I3 4370T

4370t

Intel Core I3 5005U

5005u

Intel Core I3 5010U

5010u

Intel Core I3 5015U

5015u

Intel Core I3 5020U

5020u

Intel Core I3 5157U

5157u

Intel Core I3 6006U

6006u

Intel Core I3 6098P

6098p

Intel Core I3 6100

6100

Intel Core I3 6100E

6100e

Intel Core I3 6100H

6100h

Intel Core I3 6100T

6100t

Intel Core I3 6100TE

6100te

Intel Core I3 6100U

6100u

Intel Core I3 6102E

6102e

Intel Core I3 6157U

6157u

Intel Core I3 6167U

6167u

Intel Core I3 6300

6300

Intel Core I3 6300T

6300t

Intel Core I3 6320

6320

Intel Core I3 8100

8100

Intel Core I3 8350K

8350k

Intel Core I5 430M

430m

Intel Core I5 430UM

430um

Intel Core I5 450M

450m

Intel Core I5 460M

460m

Intel Core I5 470UM

470um

Intel Core I5 480M

480m

Intel Core I5 520E

520e

Intel Core I5 520M

520m

Intel Core I5 520UM

520um

Intel Core I5 540M

540m

Intel Core I5 540UM

540um

Intel Core I5 560M

560m

Intel Core I5 560UM

560um

Intel Core I5 580M

580m

Intel Core I5 650

650

Intel Core I5 655K

655k

Intel Core I5 660

660

Intel Core I5 661

661

Intel Core I5 670

670

Intel Core I5 680

680

Intel Core I5 750

750

Intel Core I5 750S

750s

Intel Core I5 760

760

Intel Core I5 2300

2300

Intel Core I5 2310

2310

Intel Core I5 2320

2320

Intel Core I5 2380P

2380p

Intel Core I5 2390T

2390t

Intel Core I5 2400

2400

Intel Core I5 2400S

2400s

Intel Core I5 2405S

2405s

Intel Core I5 2410M

2410m

Intel Core I5 2430M

2430m

Intel Core I5 2435M

2435m

Intel Core I5 2450M

2450m

Intel Core I5 2450P

2450p

Intel Core I5 2467M

2467m

Intel Core I5 2500

2500

Intel Core I5 2500K

2500k

Intel Core I5 2500S

2500s

Intel Core I5 2500T

2500t

Intel Core I5 2510E

2510e

Intel Core I5 2515E

2515e

Intel Core I5 2520M

2520m

Intel Core I5 2537M

2537m

Intel Core I5 2540M

2540m

Intel Core I5 2550K

2550k

Intel Core I5 2557M

2557m

Intel Core I5 3210M

3210m

Intel Core I5 3230M

3230m

Intel Core I5 3317U

3317u

Intel Core I5 3320M

3320m

Intel Core I5 3330

3330

Intel Core I5 3330S

3330s

Intel Core I5 3337U

3337u

Intel Core I5 3339Y

3339y

Intel Core I5 3340

3340

Intel Core I5 3340M

3340m

Intel Core I5 3340S

3340s

Intel Core I5 3350P

3350p

Intel Core I5 3360M

3360m

Intel Core I5 3380M

3380m

Intel Core I5 3427U

3427u

Intel Core I5 3437U

3437u

Intel Core I5 3439Y

3439y

Intel Core I5 3450

3450

Intel Core I5 3450S

3450s

Intel Core I5 3470

3470

Intel Core I5 3470S

3470s

Intel Core I5 3470T

3470t

Intel Core I5 3475S

3475s

Intel Core I5 3550

3550

Intel Core I5 3550S

3550s

Intel Core I5 3570

3570

Intel Core I5 3570K

3570k

Intel Core I5 3570S

3570s

Intel Core I5 3570T

3570t

Intel Core I5 3610ME

3610me

Intel Core I5 4200H

4200h

Intel Core I5 4200M

4200m

Intel Core I5 4200U

4200u

Intel Core I5 4200Y

4200y

Intel Core I5 4202Y

4202y

Intel Core I5 4210H

4210h

Intel Core I5 4210M

4210m

Intel Core I5 4210U

4210u

Intel Core I5 4210Y

4210y

Intel Core I5 4220Y

4220y

Intel Core I5 4250U

4250u

Intel Core I5 4258U

4258u

Intel Core I5 4260U

4260u

Intel Core I5 4278U

4278u

Intel Core I5 4288U

4288u

Intel Core I5 4300M

4300m

Intel Core I5 4300U

4300u

Intel Core I5 4300Y

4300y

Intel Core I5 4302Y

4302y

Intel Core I5 4308U

4308u

Intel Core I5 4310M

4310m

Intel Core I5 4310U

4310u

Intel Core I5 4330M

4330m

Intel Core I5 4340M

4340m

Intel Core I5 4350U

4350u

Intel Core I5 4360U

4360u

Intel Core I5 4400E

4400e

Intel Core I5 4402E

4402e

Intel Core I5 4402EC

4402ec

Intel Core I5 4410E

4410e

Intel Core I5 4422E

4422e

Intel Core I5 4430

4430

Intel Core I5 4430S

4430s

Intel Core I5 4440

4440

Intel Core I5 4440S

4440s

Intel Core I5 4460

4460

Intel Core I5 4460S

4460s

Intel Core I5 4460T

4460t

Intel Core I5 4570

4570

Intel Core I5 4570R

4570r

Intel Core I5 4570S

4570s

Intel Core I5 4570T

4570t

Intel Core I5 4570TE

4570te

Intel Core I5 4590

4590

Intel Core I5 4590S

4590s

Intel Core I5 4590T

4590t

Intel Core I5 4670

4670

Intel Core I5 4670K

4670k

Intel Core I5 4670R

4670r

Intel Core I5 4670S

4670s

Intel Core I5 4670T

4670t

Intel Core I5 4690

4690

Intel Core I5 4690K

4690k

Intel Core I5 4690S

4690s

Intel Core I5 4690T

4690t

Intel Core I5 5200U

5200u

Intel Core I5 5250U

5250u

Intel Core I5 5257U

5257u

Intel Core I5 5287U

5287u

Intel Core I5 5300U

5300u

Intel Core I5 5350H

5350h

Intel Core I5 5350U

5350u

Intel Core I5 5575R

5575r

Intel Core I5 5675C

5675c

Intel Core I5 5675R

5675r

Intel Core I5 6200U

6200u

Intel Core I5 6260U

6260u

Intel Core I5 6267U

6267u

Intel Core I5 6287U

6287u

Intel Core I5 6300HQ

6300hq

Intel Core I5 6300U

6300u

Intel Core I5 6350HQ

6350hq

Intel Core I5 6360U

6360u

Intel Core I5 6400

6400

Intel Core I5 6400T

6400t

Intel Core I5 6402P

6402p

Intel Core I5 6440EQ

6440eq

Intel Core I5 6440HQ

6440hq

Intel Core I5 6442EQ

6442eq

Intel Core I5 6500

6500

Intel Core I5 6500T

6500t

Intel Core I5 6500TE

6500te

Intel Core I5 6585R

6585r

Intel Core I5 6600

6600

Intel Core I5 6600K

6600k

Intel Core I5 6600T

6600t

Intel Core I5 6685R

6685r

Intel Core I5 8250U

8250u

Intel Core I5 8350U

8350u

Intel Core I5 8400

8400

Intel Core I5 8600K

8600k

Intel Core I7 7Y75

7y75

Intel Core I7 610E

610e

Intel Core I7 620LE

620le

Intel Core I7 620LM

620lm

Intel Core I7 620M

620m

Intel Core I7 620UE

620ue

Intel Core I7 620UM

620um

Intel Core I7 640LM

640lm

Intel Core I7 640M

640m

Intel Core I7 640UM

640um

Intel Core I7 660LM

660lm

Intel Core I7 660UE

660ue

Intel Core I7 660UM

660um

Intel Core I7 680UM

680um

Intel Core I7 720QM

720qm

Intel Core I7 740QM

740qm

Intel Core I7 820QM

820qm

Intel Core I7 840QM

840qm

Intel Core I7 860

860

Intel Core I7 860S

860s

Intel Core I7 870

870

Intel Core I7 870S

870s

Intel Core I7 875K

875k

Intel Core I7 880

880

Intel Core I7 920

920

Intel Core I7 920XM

920xm

Intel Core I7 930

930

Intel Core I7 940

940

Intel Core I7 940XM

940xm

Intel Core I7 950

950

Intel Core I7 960

960

Intel Core I7 965

965

Intel Core I7 970

970

Intel Core I7 975

975

Intel Core I7 980

980

Intel Core I7 980X

980x

Intel Core I7 990X

990x

Intel Core I7 2600

2600

Intel Core I7 2600K

2600k

Intel Core I7 2600S

2600s

Intel Core I7 2610UE

2610ue

Intel Core I7 2617M

2617m

Intel Core I7 2620M

2620m

Intel Core I7 2629M

2629m

Intel Core I7 2630QM

2630qm

Intel Core I7 2635QM

2635qm

Intel Core I7 2637M

2637m

Intel Core I7 2640M

2640m

Intel Core I7 2649M

2649m

Intel Core I7 2655LE

2655le

Intel Core I7 2657M

2657m

Intel Core I7 2670QM

2670qm

Intel Core I7 2675QM

2675qm

Intel Core I7 2677M

2677m

Intel Core I7 2700K

2700k

Intel Core I7 2710QE

2710qe

Intel Core I7 2715QE

2715qe

Intel Core I7 2720QM

2720qm

Intel Core I7 2760QM

2760qm

Intel Core I7 2820QM

2820qm

Intel Core I7 2860QM

2860qm

Intel Core I7 2920XM

2920xm

Intel Core I7 2960XM

2960xm

Intel Core I7 3517U

3517u

Intel Core I7 3517UE

3517ue

Intel Core I7 3520M

3520m

Intel Core I7 3537U

3537u

Intel Core I7 3540M

3540m

Intel Core I7 3555LE

3555le

Intel Core I7 3610QE

3610qe

Intel Core I7 3610QM

3610qm

Intel Core I7 3612QE

3612qe

Intel Core I7 3612QM

3612qm

Intel Core I7 3615QE

3615qe

Intel Core I7 3615QM

3615qm

Intel Core I7 3630QM

3630qm

Intel Core I7 3632QM

3632qm

Intel Core I7 3635QM

3635qm

Intel Core I7 3667U

3667u

Intel Core I7 3687U

3687u

Intel Core I7 3689Y

3689y

Intel Core I7 3720QM

3720qm

Intel Core I7 3740QM

3740qm

Intel Core I7 3770

3770

Intel Core I7 3770K

3770k

Intel Core I7 3770S

3770s

Intel Core I7 3770T

3770t

Intel Core I7 3820QM

3820qm

Intel Core I7 3840QM

3840qm

Intel Core I7 4500U

4500u

Intel Core I7 4510U

4510u

Intel Core I7 4550U

4550u

Intel Core I7 4558U

4558u

Intel Core I7 4578U

4578u

Intel Core I7 4600M

4600m

Intel Core I7 4600U

4600u

Intel Core I7 4610M

4610m

Intel Core I7 4610Y

4610y

Intel Core I7 4650U

4650u

Intel Core I7 4700EC

4700ec

Intel Core I7 4700EQ

4700eq

Intel Core I7 4700HQ

4700hq

Intel Core I7 4700MQ

4700mq

Intel Core I7 4702EC

4702ec

Intel Core I7 4702HQ

4702hq

Intel Core I7 4702MQ

4702mq

Intel Core I7 4710HQ

4710hq

Intel Core I7 4710MQ

4710mq

Intel Core I7 4712HQ

4712hq

Intel Core I7 4712MQ

4712mq

Intel Core I7 4720HQ

4720hq

Intel Core I7 4722HQ

4722hq

Intel Core I7 4750HQ

4750hq

Intel Core I7 4760HQ

4760hq

Intel Core I7 4765T

4765t

Intel Core I7 4770

4770

Intel Core I7 4770HQ

4770hq

Intel Core I7 4770K

4770k

Intel Core I7 4770R

4770r

Intel Core I7 4770S

4770s

Intel Core I7 4770T

4770t

Intel Core I7 4770TE

4770te

Intel Core I7 4771

4771

Intel Core I7 4785T

4785t

Intel Core I7 4790

4790

Intel Core I7 4790K

4790k

Intel Core I7 4790S

4790s

Intel Core I7 4790T

4790t

Intel Core I7 4800MQ

4800mq

Intel Core I7 4810MQ

4810mq

Intel Core I7 4850HQ

4850hq

Intel Core I7 4860HQ

4860hq

Intel Core I7 4870HQ

4870hq

Intel Core I7 4900MQ

4900mq

Intel Core I7 4910MQ

4910mq

Intel Core I7 4950HQ

4950hq

Intel Core I7 4960HQ

4960hq

Intel Core I7 4980HQ

4980hq

Intel Core I7 5500U

5500u

Intel Core I7 5550U

5550u

Intel Core I7 5557U

5557u

Intel Core I7 5600U

5600u

Intel Core I7 5650U

5650u

Intel Core I7 5700EQ

5700eq

Intel Core I7 5700HQ

5700hq

Intel Core I7 5750HQ

5750hq

Intel Core I7 5775C

5775c

Intel Core I7 5775R

5775r

Intel Core I7 5850EQ

5850eq

Intel Core I7 5850HQ

5850hq

Intel Core I7 5950HQ

5950hq

Intel Core I7 7500U

7500u

Intel Core I7 7560U

7560u

Intel Core I7 7567U

7567u

Intel Core I7 7600U

7600u

Intel Core I7 7660U

7660u

Intel Core I7 7700

7700

Intel Core I7 7700HQ

7700hq

Intel Core I7 7700K

7700k

Intel Core I7 7700T

7700t

Intel Core I7 7820EQ

7820eq

Intel Core I7 7820HK

7820hk

Intel Core I7 7820HQ

7820hq

Intel Core I7 7920HQ

7920hq

Intel Core I7 8550U

8550u

Intel Core I7 8650U

8650u

Intel Core I7 8700

8700

Intel Core I7 8700K

8700k

Intel Core M 5Y10

5y10

Intel Core M 5Y10A

5y10a

Intel Core M 5Y10C

5y10c

Intel Core M 5Y31

5y31

Intel Core M 5Y51

5y51

Intel Core M 5Y70

5y70

Intel Core M 5Y71

5y71

Intel Core M3 6Y30

6y30

Intel Core M3 7Y30

7y30

Intel Core M3 7Y32

7y32

Intel Core M5 6Y54

6y54

Intel Core M5 6Y57

6y57

Intel Core M7 6Y75

6y75

References

http://support.lenovo.com/us/en/solutions/LEN-24163

Third Party Advisory

http://www.huawei.com/en/psirt/security-advisories/huawei-sa-20180815-01-cpu-en

Third Party Advisory

105080

Third Party Advisory, VDB Entry

1041451

Third Party Advisory, VDB Entry

1042004

http://www.vmware.com/security/advisories/VMSA-2018-0020.html

Third Party Advisory

http://xenbits.xen.org/xsa/advisory-273.html

Third Party Advisory

RHSA-2018:2384

Third Party Advisory

RHSA-2018:2387

Third Party Advisory

RHSA-2018:2388

Third Party Advisory

RHSA-2018:2389

Third Party Advisory

RHSA-2018:2390

Third Party Advisory

RHSA-2018:2391

Third Party Advisory

RHSA-2018:2392

Third Party Advisory

RHSA-2018:2393

Third Party Advisory

RHSA-2018:2394

Third Party Advisory

RHSA-2018:2395

Third Party Advisory

RHSA-2018:2396

Third Party Advisory

RHSA-2018:2402

Third Party Advisory

RHSA-2018:2403

Third Party Advisory

RHSA-2018:2404

Third Party Advisory

RHSA-2018:2602

RHSA-2018:2603

https://cert-portal.siemens.com/productcert/pdf/ssa-254686.pdf

https://cert-portal.siemens.com/productcert/pdf/ssa-608355.pdf

https://foreshadowattack.eu/

Technical Description, Third Party Advisory

https://help.ecostruxureit.com/display/public/UADCE725/Security+fixes+in+StruxureWare+Data+Center+Expert+v7.6.0

[debian-lts-announce] 20180828 [SECURITY] [DLA 1481-1] linux-4.9 security update

[debian-lts-announce] 20180916 [SECURITY] [DLA 1506-1] intel-microcode security update

FEDORA-2018-f8cba144ae

Third Party Advisory

FEDORA-2018-1c80fea1cd

Third Party Advisory

https://portal.msrc.microsoft.com/en-US/security-guidance/advisory/ADV180018

https://psirt.global.sonicwall.com/vuln-detail/SNWLID-2018-0010

Third Party Advisory

FreeBSD-SA-18:09

Third Party Advisory

GLSA-201810-06

https://security.netapp.com/advisory/ntap-20180815-0001/

Third Party Advisory

https://software.intel.com/security-software-guidance/software-guidance/l1-terminal-fault

Mitigation, Vendor Advisory

https://support.f5.com/csp/article/K31300402

Third Party Advisory

https://support.hpe.com/hpsc/doc/public/display?docLocale=en_US&docId=emr_na-hpesbhf03874en_us

Third Party Advisory

20180814 CPU Side-Channel Information Disclosure Vulnerabilities: August 2018

Third Party Advisory

USN-3740-1

Third Party Advisory

USN-3740-2

Third Party Advisory

USN-3741-1

Third Party Advisory

USN-3741-2

USN-3742-1

Third Party Advisory

USN-3742-2

Third Party Advisory

USN-3756-1

USN-3823-1

DSA-4274

DSA-4279

https://www.intel.com/content/www/us/en/security-center/advisory/intel-sa-00161.html

Vendor Advisory

VU#982149

https://www.oracle.com/technetwork/security-advisory/cpuapr2019-5072813.html

https://www.oracle.com/technetwork/security-advisory/cpujan2019-5072801.html

https://www.synology.com/support/security/Synology_SA_18_45

Third Party Advisory

Stay updated

ExploitPedia is constantly evolving. Sign up to receive a notification when we release additional functionality.

Get in touch

If you'd like to report a bug or have any suggestions for improvements then please do get in touch with us using this form. We will get back to you as soon as we can.