Skip to content

Instantly share code, notes, and snippets.

View aunali1's full-sized avatar
🎯
Focusing

Aun-Ali Zaidi aunali1

🎯
Focusing
View GitHub Profile

Keybase proof

I hereby claim:

  • I am aunali1 on github.
  • I am aunali1 (https://keybase.io/aunali1) on keybase.
  • I have a public key ASC7e2emrZem8nwrNamDmthqhJBpyynX2RuCQ1MVIyOSYQo

To claim this, I am signing this object:

@aunali1
aunali1 / steam-sysinfo.txt
Created September 23, 2018 00:18
Steam System Information
Computer Information:
Manufacturer: Unknown
Model: Unknown
Form Factor: Desktop
No Touch Input Detected
Processor Information:
CPU Vendor: GenuineIntel
CPU Brand: Intel(R) Core(TM) i7-6800K CPU @ 3.40GHz
CPU Family: 0x6
@aunali1
aunali1 / spectre.c
Created January 5, 2018 01:52
Spectre PoC
// Compile with: gcc -O1 -o spectre spectre.c
//
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#ifdef _MSC_VER
#include <intrin.h> /* for rdtscp and clflush */
#pragma optimize("gt",on)
#else
#include <x86intrin.h> /* for rdtscp and clflush */