SlideShare a Scribd company logo
1 of 65
Download to read offline
March 28-31, 2017
1
2
3
4
5
6
7
8
9
10
11
12
FriedApples:
Jailbreak DIY
AlexHudeMaxBazaliy VladPutin
March 28-31, 2017
Who we are ? 1
2
3
4
5
6
7
8
9
10
11
12
o  Security research group
o  Focused on hardware and software exploitation
o  Made a various jailbreaks for iOS, tvOS, watchOS
o  Contributors to jailbreak community
March 28-31, 2017
o  Secure Boot Chain
o  Mandatory Code Signing
o  Sandbox
o  Exploit Mitigations
o  Data Protection
o  Secure Enclave Processor
1
2
3
4
5
6
7
8
9
10
11
12
iOS Security Overview
March 28-31, 2017
o  Disable OS restrictions
o  Gain full access to device
o  Install 3-rd party tools and apps
o  Exploit chain required
1
2
3
4
5
6
7
8
9
10
11
12
What is jailbreak ?
March 28-31, 2017
1
2
3
4
5
6
7
8
9
10
11
12
Jailbreak types
o  Tethered
- Re-exploit device on each boot manually
o  Untethered
- Re-exploit device on each boot automatically
March 28-31, 2017
1
2
3
4
5
6
7
8
9
10
11
12
Initial attack vector strategies
o  Application archive (IPA) based
o  USB payload based
o  WebKitSMSbaseband based
March 28-31, 2017
1
2
3
4
5
6
7
8
9
10
11
12
Making jailbreak if you have bugs
o  Write an exploit chain
o  Patch OS security restrictions
o  Install persistent binary
o  Add Cydiasshremote shell
March 28-31, 2017
1
2
3
4
5
6
7
8
9
10
11
12
Making jailbreak if you don't have bugs
o  Write an exploit chain Use public write-ups
o  Patch OS security restrictions
o  Install persistent binary
o  Add Cydiasshremote shell
March 28-31, 2017
Implementation
1
2
3
4
5
6
7
8
9
10
11
12
March 28-31, 2017
o  ROP
o  Binary with Mach-O bug
o  JavaScriptCore JIT region
o  Sign with devent certificate
Arbitrary code execution strategies 1
2
3
4
5
6
7
8
9
10
11
12
March 28-31, 2017
Bypassing sandbox strategies
o  TOCTOU  Symlinks
o  XPC
o  Kernel patch
1
2
3
4
5
6
7
8
9
10
11
12
March 28-31, 2017
Escalating privileges strategies
o  Code injection in system service
o  Kernel patch
1
2
3
4
5
6
7
8
9
10
11
12
March 28-31, 2017
13
14
15
16
17
18
19
20
21
22
23
24
Bypassing KASLR strategies
o  Information leak
o  Brute force
March 28-31, 2017
Bypassing DEP strategies
o  JavaScriptCore JIT
o  Userland mmapmprotect bug
o  Kernel patch
o  ROP chain
13
14
15
16
17
18
19
20
21
22
23
24
March 28-31, 2017
Seeking for patches in kernel
o  Static patchfinder (memmem)
memmem stringpattern, xref + instruction analysis
o  Dynamic patchfinder
syscall, sysctl, mach location, known structs + emulation
13
14
15
16
17
18
19
20
21
22
23
24
March 28-31, 2017
Kernel patches in detail
o  root
o  task_for_pid(0)
o  amfi
o  sandbox
o  __mac_mount
o  _mapForIO
13
14
15
16
17
18
19
20
21
22
23
24
March 28-31, 2017
Escalate privileges
o  Interesting APIs are restricted
o  task_for_pid, mount etc
13
14
15
16
17
18
19
20
21
22
23
24
March 28-31, 2017
Escalate privileges patch
o  Find setreuid
o  Find ruid/euid checks
o  Patch to skip reuid checks condition
13
14
15
16
17
18
19
20
21
22
23
24
March 28-31, 2017
Escalate privileges patch detailed 13
14
15
16
17
18
19
20
21
22
23
24
March 28-31, 2017
Kernel task
o  Easy access to kernel memory
o  Required for some kern utilities
13
14
15
16
17
18
19
20
21
22
23
24
March 28-31, 2017
Kernel task patch
o  Patch task_for_pid
o  Re-implement task_for_pid in ROP
o  Find kernel task in memory
13
14
15
16
17
18
19
20
21
22
23
24
March 28-31, 2017
Kernel task patch detailed 13
14
15
16
17
18
19
20
21
22
23
24
March 28-31, 2017
Kernel task patch detailed 13
14
15
16
17
18
19
20
21
22
23
24
March 28-31, 2017
Apple Mobile File Integrity (AMFI)
o  Run unsigned code
o  Fake entitlements
o  Get other process tasks
o  Restrictions on mmap, mprotect etc
13
14
15
16
17
18
19
20
21
22
23
24
March 28-31, 2017
AMFI patch
o  Patch amfi_get_out_of_my_way
o  Patch PE_i_can_has_debugger
o  Patch amfi mac policies
25
26
27
28
29
30
31
32
33
34
35
36
March 28-31, 2017
AMFI patch detailed 25
26
27
28
29
30
31
32
33
34
35
36
March 28-31, 2017
AMFI policy patch detailed 25
26
27
28
29
30
31
32
33
34
35
36
March 28-31, 2017
AMFI policy patch detailed 25
26
27
28
29
30
31
32
33
34
35
36
March 28-31, 2017
AMFI policies to patch 25
26
27
28
29
30
31
32
33
34
35
36
March 28-31, 2017
Sandbox
o  Access files out of mobile container
o  Unrestrict usage of system APIs
25
26
27
28
29
30
31
32
33
34
35
36
March 28-31, 2017
Sandbox patch
o  Patch sb_evaluate (allow all)
o  Hook sb_evaluate
o  Patch sandbox mac policies
25
26
27
28
29
30
31
32
33
34
35
36
March 28-31, 2017
Sandbox patch detailed 25
26
27
28
29
30
31
32
33
34
35
36
March 28-31, 2017
Sandbox patch detailed 25
26
27
28
29
30
31
32
33
34
35
36
March 28-31, 2017
Sandbox policies 25
26
27
28
29
30
31
32
33
34
35
36
March 28-31, 2017
__mac_mount
o  Remount system partition
o  Get write access to system partition
25
26
27
28
29
30
31
32
33
34
35
36
March 28-31, 2017
__mac_mount patch
o  Patch __mac_mount
o  Call mount_common from kernel
25
26
27
28
29
30
31
32
33
34
35
36
March 28-31, 2017
__mac_mount patch detailed 37
38
39
40
41
42
43
44
45
46
47
48
March 28-31, 2017
_mapForIO lock
o  “/” is mounted as read only
o  only “/private/var” can be written
37
38
39
40
41
42
43
44
45
46
47
48
March 28-31, 2017
_mapForIO lock patch
o  Patch _mapForIO
o  Patch PE_i_can_has_kernel_configuartion
37
38
39
40
41
42
43
44
45
46
47
48
March 28-31, 2017
_mapForIO lock patch detailed 37
38
39
40
41
42
43
44
45
46
47
48
March 28-31, 2017
Kernel Patch Protection
37
38
39
40
41
42
43
44
45
46
47
48
March 28-31, 2017
Bypassing KPP strategies
o  Checks for kernel pages, MMU, sysregs
o  Execution on EL3
o  Can’t disable, can race or …
37
38
39
40
41
42
43
44
45
46
47
48
March 28-31, 2017
How KPP works? 37
38
39
40
41
42
43
44
45
46
47
48
March 28-31, 2017
Original translation table 37
38
39
40
41
42
43
44
45
46
47
48
March 28-31, 2017
Create fake Level 1 table 37
38
39
40
41
42
43
44
45
46
47
48
March 28-31, 2017
Create fake Level 2 table 37
38
39
40
41
42
43
44
45
46
47
48
March 28-31, 2017
Create fake Level 3 table 37
38
39
40
41
42
43
44
45
46
47
48
March 28-31, 2017
Create fake pages 37
38
39
40
41
42
43
44
45
46
47
48
March 28-31, 2017
49
50
51
52
53
54
55
56
57
58
59
60
BBQit Framework
March 28-31, 2017
KPP bypass technique 49
50
51
52
53
54
55
56
57
58
59
60
March 28-31, 2017
KPP bypass technique (continue) 49
50
51
52
53
54
55
56
57
58
59
60
March 28-31, 2017
Achieving persistence strategies
o  Find service that spawns on boot
o  Check if it is running as root (optional)
o  Find userland codesign bug
o  Symlink system service to exec cs bypass
49
50
51
52
53
54
55
56
57
58
59
60
March 28-31, 2017
Achieving persistence example
o  JavaScriptCore jsc interpreter
o  Signed by Apple
o  Can execute code on RWX segment
o  Copy as system service to spawn on boot
49
50
51
52
53
54
55
56
57
58
59
60
March 28-31, 2017
Achieving persistence details 49
50
51
52
53
54
55
56
57
58
59
60
March 28-31, 2017
SSH
o  Copy dropbear or install Cydia
o  tcprelay.py -t 22:4222
o  Password ‘alpine’
49
50
51
52
53
54
55
56
57
58
59
60
March 28-31, 2017
Cydia
o  Copy tar to /bin/tar
o  tar -xvfp cydia.tar
o  Optional /.cydia_no_stash
o  Flush uicache using /usr/bin/uicache
49
50
51
52
53
54
55
56
57
58
59
60
March 28-31, 2017
o  New heap layout
o  AMFI and Sandbox hardening
o  KPP enhancements
iOS 10 security enhancements 49
50
51
52
53
54
55
56
57
58
59
60
March 28-31, 2017
o  MISValidateSignatureAndCopyInfo
Replace with CFEqual or similar will not work
o  validateCodeDirectoryHashInDaemon
possible race condition fixed
o  Policy patches still work
iOS 10 amfi mitigations 49
50
51
52
53
54
55
56
57
58
59
60
March 28-31, 2017
o  New operations
boot-arg-set, fs-snapshot*, system-package-check, ...
o  New hooks
_hook_iokit_check_nvram_get,
_hook_proc_check_set_host_special_port,
_hook_proc_check_get_cs_info ...
iOS 10 sandbox mitigations 49
50
51
52
53
54
55
56
57
58
59
60
March 28-31, 2017
o  New kernelcache layout
o  Now _got segments are protected
o  New hardware migrations on iPhone 7/Plus
iOS 10 KPP enhancements 49
50
51
52
53
54
55
56
57
58
59
60
March 28-31, 2017
KPP hardware mitigations
o  AMCC
o  Watch memory region for any access
o  Prevents writing inside region
o  Prevents exec outside region
61
62
63
64
65
66
67
68
69
70
71
72
March 28-31, 2017
KPP hardware mitigations 61
62
63
64
65
66
67
68
69
70
71
72
March 28-31, 2017
Future of jailbreaks
o  iOS is more secure on each release
o  More security on hardware side
o  Exploits will be more valuable
o  But there will be bugs and write-ups
61
62
63
64
65
66
67
68
69
70
71
72
March 28-31, 2017
Black Hat Sound Bytes
o  Jailbreak is doable with public bug info
o  Patches and KPP bypass from this talk
o  May the XNU source be with you
61
62
63
64
65
66
67
68
69
70
71
72
March 28-31, 2017
@FriedAppleTeam
@mbazaliy @getorix @in7egral
61
62
63
64
65
66
67
68
69
70
71
72

More Related Content

Similar to JailBreak DIY- Fried Apple

Velocity 2017 Performance analysis superpowers with Linux eBPF
Velocity 2017 Performance analysis superpowers with Linux eBPFVelocity 2017 Performance analysis superpowers with Linux eBPF
Velocity 2017 Performance analysis superpowers with Linux eBPFBrendan Gregg
 
State of the Trino Project
State of the Trino ProjectState of the Trino Project
State of the Trino ProjectMartin Traverso
 
Keynote 1 - Engineering Software Analytics Studies
Keynote 1 - Engineering Software Analytics StudiesKeynote 1 - Engineering Software Analytics Studies
Keynote 1 - Engineering Software Analytics StudiesESEM 2014
 
DevSecCon London 2017 - MacOS security, hardening and forensics 101 by Ben Hu...
DevSecCon London 2017 - MacOS security, hardening and forensics 101 by Ben Hu...DevSecCon London 2017 - MacOS security, hardening and forensics 101 by Ben Hu...
DevSecCon London 2017 - MacOS security, hardening and forensics 101 by Ben Hu...DevSecCon
 
USENIX ATC 2017 Performance Superpowers with Enhanced BPF
USENIX ATC 2017 Performance Superpowers with Enhanced BPFUSENIX ATC 2017 Performance Superpowers with Enhanced BPF
USENIX ATC 2017 Performance Superpowers with Enhanced BPFBrendan Gregg
 
Jörg Schad - NO ONE PUTS Java IN THE CONTAINER - Codemotion Milan 2017
Jörg Schad - NO ONE PUTS Java IN THE CONTAINER - Codemotion Milan 2017Jörg Schad - NO ONE PUTS Java IN THE CONTAINER - Codemotion Milan 2017
Jörg Schad - NO ONE PUTS Java IN THE CONTAINER - Codemotion Milan 2017Codemotion
 
7++ Reasons to Move Your C++ Code to Visual Studio 2017
7++ Reasons to Move Your C++ Code to Visual Studio 20177++ Reasons to Move Your C++ Code to Visual Studio 2017
7++ Reasons to Move Your C++ Code to Visual Studio 2017Microsoft Tech Community
 
Kernel Recipes 2016 - The kernel report
Kernel Recipes 2016 - The kernel reportKernel Recipes 2016 - The kernel report
Kernel Recipes 2016 - The kernel reportAnne Nicolas
 
Kernel Recipes 2017 - EBPF and XDP - Eric Leblond
Kernel Recipes 2017 - EBPF and XDP - Eric LeblondKernel Recipes 2017 - EBPF and XDP - Eric Leblond
Kernel Recipes 2017 - EBPF and XDP - Eric LeblondAnne Nicolas
 
От sysV к systemd
От sysV к systemdОт sysV к systemd
От sysV к systemdDenis Kovalev
 
20110114 Next Generation Sequencing Course
20110114 Next Generation Sequencing Course20110114 Next Generation Sequencing Course
20110114 Next Generation Sequencing CoursePierre Lindenbaum
 
Containers with systemd-nspawn
Containers with systemd-nspawnContainers with systemd-nspawn
Containers with systemd-nspawnGábor Nyers
 
How Many Linux Security Layers Are Enough?
How Many Linux Security Layers Are Enough?How Many Linux Security Layers Are Enough?
How Many Linux Security Layers Are Enough?Michael Boelen
 
Hacking Lab con ProxMox e Metasploitable
Hacking Lab con ProxMox e MetasploitableHacking Lab con ProxMox e Metasploitable
Hacking Lab con ProxMox e MetasploitableAndrea Draghetti
 
DEF CON 27 - NIKHIL MITTAL nikhil-mittal - race minimal rights and ace for ac...
DEF CON 27 - NIKHIL MITTAL nikhil-mittal - race minimal rights and ace for ac...DEF CON 27 - NIKHIL MITTAL nikhil-mittal - race minimal rights and ace for ac...
DEF CON 27 - NIKHIL MITTAL nikhil-mittal - race minimal rights and ace for ac...Felipe Prado
 
JEEConf 2017 - How to find deadlock not getting into it
JEEConf 2017 - How to find deadlock not getting into itJEEConf 2017 - How to find deadlock not getting into it
JEEConf 2017 - How to find deadlock not getting into itNikita Koval
 
Csw2016 wheeler barksdale-gruskovnjak-execute_mypacket
Csw2016 wheeler barksdale-gruskovnjak-execute_mypacketCsw2016 wheeler barksdale-gruskovnjak-execute_mypacket
Csw2016 wheeler barksdale-gruskovnjak-execute_mypacketCanSecWest
 
String Comparison Surprises: Did Postgres lose my data?
String Comparison Surprises: Did Postgres lose my data?String Comparison Surprises: Did Postgres lose my data?
String Comparison Surprises: Did Postgres lose my data?Jeremy Schneider
 

Similar to JailBreak DIY- Fried Apple (20)

Velocity 2017 Performance analysis superpowers with Linux eBPF
Velocity 2017 Performance analysis superpowers with Linux eBPFVelocity 2017 Performance analysis superpowers with Linux eBPF
Velocity 2017 Performance analysis superpowers with Linux eBPF
 
State of the Trino Project
State of the Trino ProjectState of the Trino Project
State of the Trino Project
 
Keynote 1 - Engineering Software Analytics Studies
Keynote 1 - Engineering Software Analytics StudiesKeynote 1 - Engineering Software Analytics Studies
Keynote 1 - Engineering Software Analytics Studies
 
DevSecCon London 2017 - MacOS security, hardening and forensics 101 by Ben Hu...
DevSecCon London 2017 - MacOS security, hardening and forensics 101 by Ben Hu...DevSecCon London 2017 - MacOS security, hardening and forensics 101 by Ben Hu...
DevSecCon London 2017 - MacOS security, hardening and forensics 101 by Ben Hu...
 
USENIX ATC 2017 Performance Superpowers with Enhanced BPF
USENIX ATC 2017 Performance Superpowers with Enhanced BPFUSENIX ATC 2017 Performance Superpowers with Enhanced BPF
USENIX ATC 2017 Performance Superpowers with Enhanced BPF
 
Jörg Schad - NO ONE PUTS Java IN THE CONTAINER - Codemotion Milan 2017
Jörg Schad - NO ONE PUTS Java IN THE CONTAINER - Codemotion Milan 2017Jörg Schad - NO ONE PUTS Java IN THE CONTAINER - Codemotion Milan 2017
Jörg Schad - NO ONE PUTS Java IN THE CONTAINER - Codemotion Milan 2017
 
SecurityPI - Hardening your IoT endpoints in Home.
SecurityPI - Hardening your IoT endpoints in Home. SecurityPI - Hardening your IoT endpoints in Home.
SecurityPI - Hardening your IoT endpoints in Home.
 
7++ Reasons to Move Your C++ Code to Visual Studio 2017
7++ Reasons to Move Your C++ Code to Visual Studio 20177++ Reasons to Move Your C++ Code to Visual Studio 2017
7++ Reasons to Move Your C++ Code to Visual Studio 2017
 
Kernel Recipes 2016 - The kernel report
Kernel Recipes 2016 - The kernel reportKernel Recipes 2016 - The kernel report
Kernel Recipes 2016 - The kernel report
 
Metasploitable
MetasploitableMetasploitable
Metasploitable
 
Kernel Recipes 2017 - EBPF and XDP - Eric Leblond
Kernel Recipes 2017 - EBPF and XDP - Eric LeblondKernel Recipes 2017 - EBPF and XDP - Eric Leblond
Kernel Recipes 2017 - EBPF and XDP - Eric Leblond
 
От sysV к systemd
От sysV к systemdОт sysV к systemd
От sysV к systemd
 
20110114 Next Generation Sequencing Course
20110114 Next Generation Sequencing Course20110114 Next Generation Sequencing Course
20110114 Next Generation Sequencing Course
 
Containers with systemd-nspawn
Containers with systemd-nspawnContainers with systemd-nspawn
Containers with systemd-nspawn
 
How Many Linux Security Layers Are Enough?
How Many Linux Security Layers Are Enough?How Many Linux Security Layers Are Enough?
How Many Linux Security Layers Are Enough?
 
Hacking Lab con ProxMox e Metasploitable
Hacking Lab con ProxMox e MetasploitableHacking Lab con ProxMox e Metasploitable
Hacking Lab con ProxMox e Metasploitable
 
DEF CON 27 - NIKHIL MITTAL nikhil-mittal - race minimal rights and ace for ac...
DEF CON 27 - NIKHIL MITTAL nikhil-mittal - race minimal rights and ace for ac...DEF CON 27 - NIKHIL MITTAL nikhil-mittal - race minimal rights and ace for ac...
DEF CON 27 - NIKHIL MITTAL nikhil-mittal - race minimal rights and ace for ac...
 
JEEConf 2017 - How to find deadlock not getting into it
JEEConf 2017 - How to find deadlock not getting into itJEEConf 2017 - How to find deadlock not getting into it
JEEConf 2017 - How to find deadlock not getting into it
 
Csw2016 wheeler barksdale-gruskovnjak-execute_mypacket
Csw2016 wheeler barksdale-gruskovnjak-execute_mypacketCsw2016 wheeler barksdale-gruskovnjak-execute_mypacket
Csw2016 wheeler barksdale-gruskovnjak-execute_mypacket
 
String Comparison Surprises: Did Postgres lose my data?
String Comparison Surprises: Did Postgres lose my data?String Comparison Surprises: Did Postgres lose my data?
String Comparison Surprises: Did Postgres lose my data?
 

More from mark-smith

How Your DRAM Becomes a Security Problem
How Your DRAM Becomes a Security ProblemHow Your DRAM Becomes a Security Problem
How Your DRAM Becomes a Security Problemmark-smith
 
Remotely Compromising iOS via Wi-Fi and Escaping the Sandbox
Remotely Compromising iOS via Wi-Fi and Escaping the SandboxRemotely Compromising iOS via Wi-Fi and Escaping the Sandbox
Remotely Compromising iOS via Wi-Fi and Escaping the Sandboxmark-smith
 
Applied Machine Learning for Data exfil and other fun topics
Applied Machine Learning for Data exfil and other fun topicsApplied Machine Learning for Data exfil and other fun topics
Applied Machine Learning for Data exfil and other fun topicsmark-smith
 
The linux kernel hidden inside windows 10
The linux kernel hidden inside windows 10The linux kernel hidden inside windows 10
The linux kernel hidden inside windows 10mark-smith
 
Exploiting Curiosity and Context
Exploiting Curiosity and ContextExploiting Curiosity and Context
Exploiting Curiosity and Contextmark-smith
 
Abusing belkin home automation devices
Abusing belkin home automation devicesAbusing belkin home automation devices
Abusing belkin home automation devicesmark-smith
 
Greed for Fame Benefits Large Scale Botnets
Greed for Fame Benefits Large Scale BotnetsGreed for Fame Benefits Large Scale Botnets
Greed for Fame Benefits Large Scale Botnetsmark-smith
 
How your smartphone cpu breaks software level security and privacy
How your smartphone cpu breaks software level security and privacyHow your smartphone cpu breaks software level security and privacy
How your smartphone cpu breaks software level security and privacymark-smith
 
Attacking Network Infrastructure to Generate a 4 Tbs DDoS
Attacking Network Infrastructure to Generate a 4 Tbs DDoSAttacking Network Infrastructure to Generate a 4 Tbs DDoS
Attacking Network Infrastructure to Generate a 4 Tbs DDoSmark-smith
 
How to Make People Click on a Dangerous Link Despite their Security Awareness
How to Make People Click on a Dangerous Link Despite their Security Awareness How to Make People Click on a Dangerous Link Despite their Security Awareness
How to Make People Click on a Dangerous Link Despite their Security Awareness mark-smith
 
Technologies and Policies for a Defensible Cyberspace
Technologies and Policies for a Defensible CyberspaceTechnologies and Policies for a Defensible Cyberspace
Technologies and Policies for a Defensible Cyberspacemark-smith
 
Technologies and Policies for a Defensible Cyberspace
Technologies and Policies for a Defensible CyberspaceTechnologies and Policies for a Defensible Cyberspace
Technologies and Policies for a Defensible Cyberspacemark-smith
 

More from mark-smith (12)

How Your DRAM Becomes a Security Problem
How Your DRAM Becomes a Security ProblemHow Your DRAM Becomes a Security Problem
How Your DRAM Becomes a Security Problem
 
Remotely Compromising iOS via Wi-Fi and Escaping the Sandbox
Remotely Compromising iOS via Wi-Fi and Escaping the SandboxRemotely Compromising iOS via Wi-Fi and Escaping the Sandbox
Remotely Compromising iOS via Wi-Fi and Escaping the Sandbox
 
Applied Machine Learning for Data exfil and other fun topics
Applied Machine Learning for Data exfil and other fun topicsApplied Machine Learning for Data exfil and other fun topics
Applied Machine Learning for Data exfil and other fun topics
 
The linux kernel hidden inside windows 10
The linux kernel hidden inside windows 10The linux kernel hidden inside windows 10
The linux kernel hidden inside windows 10
 
Exploiting Curiosity and Context
Exploiting Curiosity and ContextExploiting Curiosity and Context
Exploiting Curiosity and Context
 
Abusing belkin home automation devices
Abusing belkin home automation devicesAbusing belkin home automation devices
Abusing belkin home automation devices
 
Greed for Fame Benefits Large Scale Botnets
Greed for Fame Benefits Large Scale BotnetsGreed for Fame Benefits Large Scale Botnets
Greed for Fame Benefits Large Scale Botnets
 
How your smartphone cpu breaks software level security and privacy
How your smartphone cpu breaks software level security and privacyHow your smartphone cpu breaks software level security and privacy
How your smartphone cpu breaks software level security and privacy
 
Attacking Network Infrastructure to Generate a 4 Tbs DDoS
Attacking Network Infrastructure to Generate a 4 Tbs DDoSAttacking Network Infrastructure to Generate a 4 Tbs DDoS
Attacking Network Infrastructure to Generate a 4 Tbs DDoS
 
How to Make People Click on a Dangerous Link Despite their Security Awareness
How to Make People Click on a Dangerous Link Despite their Security Awareness How to Make People Click on a Dangerous Link Despite their Security Awareness
How to Make People Click on a Dangerous Link Despite their Security Awareness
 
Technologies and Policies for a Defensible Cyberspace
Technologies and Policies for a Defensible CyberspaceTechnologies and Policies for a Defensible Cyberspace
Technologies and Policies for a Defensible Cyberspace
 
Technologies and Policies for a Defensible Cyberspace
Technologies and Policies for a Defensible CyberspaceTechnologies and Policies for a Defensible Cyberspace
Technologies and Policies for a Defensible Cyberspace
 

Recently uploaded

Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝soniya singh
 
Chennai Call Girls Alwarpet Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Alwarpet Phone 🍆 8250192130 👅 celebrity escorts serviceChennai Call Girls Alwarpet Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Alwarpet Phone 🍆 8250192130 👅 celebrity escorts servicevipmodelshub1
 
Call Girls Service Adil Nagar 7001305949 Need escorts Service Pooja Vip
Call Girls Service Adil Nagar 7001305949 Need escorts Service Pooja VipCall Girls Service Adil Nagar 7001305949 Need escorts Service Pooja Vip
Call Girls Service Adil Nagar 7001305949 Need escorts Service Pooja VipCall Girls Lucknow
 
VIP Call Girls Kolkata Ananya 🤌 8250192130 🚀 Vip Call Girls Kolkata
VIP Call Girls Kolkata Ananya 🤌  8250192130 🚀 Vip Call Girls KolkataVIP Call Girls Kolkata Ananya 🤌  8250192130 🚀 Vip Call Girls Kolkata
VIP Call Girls Kolkata Ananya 🤌 8250192130 🚀 Vip Call Girls Kolkataanamikaraghav4
 
VIP Kolkata Call Girl Alambazar 👉 8250192130 Available With Room
VIP Kolkata Call Girl Alambazar 👉 8250192130  Available With RoomVIP Kolkata Call Girl Alambazar 👉 8250192130  Available With Room
VIP Kolkata Call Girl Alambazar 👉 8250192130 Available With Roomdivyansh0kumar0
 
Blepharitis inflammation of eyelid symptoms cause everything included along w...
Blepharitis inflammation of eyelid symptoms cause everything included along w...Blepharitis inflammation of eyelid symptoms cause everything included along w...
Blepharitis inflammation of eyelid symptoms cause everything included along w...Excelmac1
 
定制(Management毕业证书)新加坡管理大学毕业证成绩单原版一比一
定制(Management毕业证书)新加坡管理大学毕业证成绩单原版一比一定制(Management毕业证书)新加坡管理大学毕业证成绩单原版一比一
定制(Management毕业证书)新加坡管理大学毕业证成绩单原版一比一Fs
 
办理(UofR毕业证书)罗切斯特大学毕业证成绩单原版一比一
办理(UofR毕业证书)罗切斯特大学毕业证成绩单原版一比一办理(UofR毕业证书)罗切斯特大学毕业证成绩单原版一比一
办理(UofR毕业证书)罗切斯特大学毕业证成绩单原版一比一z xss
 
Packaging the Monolith - PHP Tek 2024 (Breaking it down one bite at a time)
Packaging the Monolith - PHP Tek 2024 (Breaking it down one bite at a time)Packaging the Monolith - PHP Tek 2024 (Breaking it down one bite at a time)
Packaging the Monolith - PHP Tek 2024 (Breaking it down one bite at a time)Dana Luther
 
Call Girls Near The Suryaa Hotel New Delhi 9873777170
Call Girls Near The Suryaa Hotel New Delhi 9873777170Call Girls Near The Suryaa Hotel New Delhi 9873777170
Call Girls Near The Suryaa Hotel New Delhi 9873777170Sonam Pathan
 
Font Performance - NYC WebPerf Meetup April '24
Font Performance - NYC WebPerf Meetup April '24Font Performance - NYC WebPerf Meetup April '24
Font Performance - NYC WebPerf Meetup April '24Paul Calvano
 
VIP Kolkata Call Girl Salt Lake 👉 8250192130 Available With Room
VIP Kolkata Call Girl Salt Lake 👉 8250192130  Available With RoomVIP Kolkata Call Girl Salt Lake 👉 8250192130  Available With Room
VIP Kolkata Call Girl Salt Lake 👉 8250192130 Available With Roomishabajaj13
 
Call Girls In The Ocean Pearl Retreat Hotel New Delhi 9873777170
Call Girls In The Ocean Pearl Retreat Hotel New Delhi 9873777170Call Girls In The Ocean Pearl Retreat Hotel New Delhi 9873777170
Call Girls In The Ocean Pearl Retreat Hotel New Delhi 9873777170Sonam Pathan
 
Potsdam FH学位证,波茨坦应用技术大学毕业证书1:1制作
Potsdam FH学位证,波茨坦应用技术大学毕业证书1:1制作Potsdam FH学位证,波茨坦应用技术大学毕业证书1:1制作
Potsdam FH学位证,波茨坦应用技术大学毕业证书1:1制作ys8omjxb
 
VIP Kolkata Call Girl Kestopur 👉 8250192130 Available With Room
VIP Kolkata Call Girl Kestopur 👉 8250192130  Available With RoomVIP Kolkata Call Girl Kestopur 👉 8250192130  Available With Room
VIP Kolkata Call Girl Kestopur 👉 8250192130 Available With Roomdivyansh0kumar0
 
定制(UAL学位证)英国伦敦艺术大学毕业证成绩单原版一比一
定制(UAL学位证)英国伦敦艺术大学毕业证成绩单原版一比一定制(UAL学位证)英国伦敦艺术大学毕业证成绩单原版一比一
定制(UAL学位证)英国伦敦艺术大学毕业证成绩单原版一比一Fs
 
Complet Documnetation for Smart Assistant Application for Disabled Person
Complet Documnetation   for Smart Assistant Application for Disabled PersonComplet Documnetation   for Smart Assistant Application for Disabled Person
Complet Documnetation for Smart Assistant Application for Disabled Personfurqan222004
 
定制(Lincoln毕业证书)新西兰林肯大学毕业证成绩单原版一比一
定制(Lincoln毕业证书)新西兰林肯大学毕业证成绩单原版一比一定制(Lincoln毕业证书)新西兰林肯大学毕业证成绩单原版一比一
定制(Lincoln毕业证书)新西兰林肯大学毕业证成绩单原版一比一Fs
 

Recently uploaded (20)

Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝
Call Girls in Uttam Nagar Delhi 💯Call Us 🔝8264348440🔝
 
Chennai Call Girls Alwarpet Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Alwarpet Phone 🍆 8250192130 👅 celebrity escorts serviceChennai Call Girls Alwarpet Phone 🍆 8250192130 👅 celebrity escorts service
Chennai Call Girls Alwarpet Phone 🍆 8250192130 👅 celebrity escorts service
 
Call Girls Service Adil Nagar 7001305949 Need escorts Service Pooja Vip
Call Girls Service Adil Nagar 7001305949 Need escorts Service Pooja VipCall Girls Service Adil Nagar 7001305949 Need escorts Service Pooja Vip
Call Girls Service Adil Nagar 7001305949 Need escorts Service Pooja Vip
 
VIP Call Girls Kolkata Ananya 🤌 8250192130 🚀 Vip Call Girls Kolkata
VIP Call Girls Kolkata Ananya 🤌  8250192130 🚀 Vip Call Girls KolkataVIP Call Girls Kolkata Ananya 🤌  8250192130 🚀 Vip Call Girls Kolkata
VIP Call Girls Kolkata Ananya 🤌 8250192130 🚀 Vip Call Girls Kolkata
 
Hot Sexy call girls in Rk Puram 🔝 9953056974 🔝 Delhi escort Service
Hot Sexy call girls in  Rk Puram 🔝 9953056974 🔝 Delhi escort ServiceHot Sexy call girls in  Rk Puram 🔝 9953056974 🔝 Delhi escort Service
Hot Sexy call girls in Rk Puram 🔝 9953056974 🔝 Delhi escort Service
 
VIP Kolkata Call Girl Alambazar 👉 8250192130 Available With Room
VIP Kolkata Call Girl Alambazar 👉 8250192130  Available With RoomVIP Kolkata Call Girl Alambazar 👉 8250192130  Available With Room
VIP Kolkata Call Girl Alambazar 👉 8250192130 Available With Room
 
Blepharitis inflammation of eyelid symptoms cause everything included along w...
Blepharitis inflammation of eyelid symptoms cause everything included along w...Blepharitis inflammation of eyelid symptoms cause everything included along w...
Blepharitis inflammation of eyelid symptoms cause everything included along w...
 
定制(Management毕业证书)新加坡管理大学毕业证成绩单原版一比一
定制(Management毕业证书)新加坡管理大学毕业证成绩单原版一比一定制(Management毕业证书)新加坡管理大学毕业证成绩单原版一比一
定制(Management毕业证书)新加坡管理大学毕业证成绩单原版一比一
 
办理(UofR毕业证书)罗切斯特大学毕业证成绩单原版一比一
办理(UofR毕业证书)罗切斯特大学毕业证成绩单原版一比一办理(UofR毕业证书)罗切斯特大学毕业证成绩单原版一比一
办理(UofR毕业证书)罗切斯特大学毕业证成绩单原版一比一
 
Packaging the Monolith - PHP Tek 2024 (Breaking it down one bite at a time)
Packaging the Monolith - PHP Tek 2024 (Breaking it down one bite at a time)Packaging the Monolith - PHP Tek 2024 (Breaking it down one bite at a time)
Packaging the Monolith - PHP Tek 2024 (Breaking it down one bite at a time)
 
young call girls in Uttam Nagar🔝 9953056974 🔝 Delhi escort Service
young call girls in Uttam Nagar🔝 9953056974 🔝 Delhi escort Serviceyoung call girls in Uttam Nagar🔝 9953056974 🔝 Delhi escort Service
young call girls in Uttam Nagar🔝 9953056974 🔝 Delhi escort Service
 
Call Girls Near The Suryaa Hotel New Delhi 9873777170
Call Girls Near The Suryaa Hotel New Delhi 9873777170Call Girls Near The Suryaa Hotel New Delhi 9873777170
Call Girls Near The Suryaa Hotel New Delhi 9873777170
 
Font Performance - NYC WebPerf Meetup April '24
Font Performance - NYC WebPerf Meetup April '24Font Performance - NYC WebPerf Meetup April '24
Font Performance - NYC WebPerf Meetup April '24
 
VIP Kolkata Call Girl Salt Lake 👉 8250192130 Available With Room
VIP Kolkata Call Girl Salt Lake 👉 8250192130  Available With RoomVIP Kolkata Call Girl Salt Lake 👉 8250192130  Available With Room
VIP Kolkata Call Girl Salt Lake 👉 8250192130 Available With Room
 
Call Girls In The Ocean Pearl Retreat Hotel New Delhi 9873777170
Call Girls In The Ocean Pearl Retreat Hotel New Delhi 9873777170Call Girls In The Ocean Pearl Retreat Hotel New Delhi 9873777170
Call Girls In The Ocean Pearl Retreat Hotel New Delhi 9873777170
 
Potsdam FH学位证,波茨坦应用技术大学毕业证书1:1制作
Potsdam FH学位证,波茨坦应用技术大学毕业证书1:1制作Potsdam FH学位证,波茨坦应用技术大学毕业证书1:1制作
Potsdam FH学位证,波茨坦应用技术大学毕业证书1:1制作
 
VIP Kolkata Call Girl Kestopur 👉 8250192130 Available With Room
VIP Kolkata Call Girl Kestopur 👉 8250192130  Available With RoomVIP Kolkata Call Girl Kestopur 👉 8250192130  Available With Room
VIP Kolkata Call Girl Kestopur 👉 8250192130 Available With Room
 
定制(UAL学位证)英国伦敦艺术大学毕业证成绩单原版一比一
定制(UAL学位证)英国伦敦艺术大学毕业证成绩单原版一比一定制(UAL学位证)英国伦敦艺术大学毕业证成绩单原版一比一
定制(UAL学位证)英国伦敦艺术大学毕业证成绩单原版一比一
 
Complet Documnetation for Smart Assistant Application for Disabled Person
Complet Documnetation   for Smart Assistant Application for Disabled PersonComplet Documnetation   for Smart Assistant Application for Disabled Person
Complet Documnetation for Smart Assistant Application for Disabled Person
 
定制(Lincoln毕业证书)新西兰林肯大学毕业证成绩单原版一比一
定制(Lincoln毕业证书)新西兰林肯大学毕业证成绩单原版一比一定制(Lincoln毕业证书)新西兰林肯大学毕业证成绩单原版一比一
定制(Lincoln毕业证书)新西兰林肯大学毕业证成绩单原版一比一
 

JailBreak DIY- Fried Apple