SlideShare une entreprise Scribd logo
1  sur  28
Télécharger pour lire hors ligne
1
Nifty stuff that you can
still do with Android
Xavier 'xEU' Martin
HES 2013
May 2th 2013
2
Thank You!
 This presentation is a compilation of
original research done by the following
people:
 Tim Strazzere (Black Hat USA 2012)
 Patrick Schulz
3
Speaker's bio
 Bootstrapping Immunapp
Immunapp is a developer library and a SaaS dashboard
that helps Android app developers fight against rampant
malware which are repackaged versions of legitimate
apps.
 Past work
RE'ed Video game console : Dreamcast, PlayStation2.
Code & tools were used in Code Breaker (cheat device)
4
Outline
 Android architecture
 Dynamic DEX file loading
 Self modifying Dalvik bytecode
5
Android
 Applications are (mostly) written in Java
 Classes are merged onto a single file, suitable for
Dalvik virtual machine
 Deployed in APK file
– AndroidManifest.xml : describe application (package
name, components, required permissions,
compatibility level)
– Certificate, digests of files
– Assets : image, video, audio
– Native code : .so libraries
– Classes.dex : Dalvik virtual machine
6
classes.dex – Dalvik
EXecutable
 Application sourcecode : java
 Compiled onto regular .class files
 Android specific steps
 Merge multiple classes onto a single file
 Convert bytecode, from stack machines
(JVM) to register-based architecture
(Dalvik)
7
DexClassLoader
 Application wants to load another dex file
– Legitimate usage : in-app purchase
– Abuse : from Command&Control server
 API
– DexClassLoader(String dexPath, String
optimizedDirectory, String libraryPath,
ClassLoader parent)
– Needs dex file on disk
8
Under the hood
 Dalvik internals: dvm_dalvik_system_DexFile
const DalvikNativeMethod dvm_dalvik_system_DexFile[] = {
{ "openDexFile", "(Ljava/lang/String;Ljava/lang/String;I)I",
Dalvik_dalvik_system_DexFile_openDexFile },
{ "openDexFile", "([B)I",
Dalvik_dalvik_system_DexFile_openDexFile_bytearray },
{ "closeDexFile", "(I)V",
Dalvik_dalvik_system_DexFile_closeDexFile },
{ "defineClass", "(Ljava/lang/String;Ljava/lang/ClassLoader;I)Ljava/lang/Class;",
Dalvik_dalvik_system_DexFile_defineClass },
{ "getClassNameList", "(I)[Ljava/lang/String;",
Dalvik_dalvik_system_DexFile_getClassNameList },
{ "isDexOptNeeded", "(Ljava/lang/String;)Z",
Dalvik_dalvik_system_DexFile_isDexOptNeeded },
{ NULL, NULL, NULL },
};
9
dvm_dalvik_system_DexFile
 Application must use native code (JNI, .so
library)
 OnLoad method + dlsym
JNINativeMethod *dvm_dalvik_system_DexFile;
JNIEXPORT jint JNI_OnLoad(JavaVM* vm, void* reserved) {
void *ldvm = (void*)dlopen("libdvm.so", RTLD_LAZY);
dvm_dalvik_system_DexFile = (JNINativeMethod*)dlsym(ldvm, "dvm_dalvik_system_DexFile");
10
OpenDexFile
 From dvm_dalvik_system_DexFile
 Find matching name
 Check for correct signature ([B)I
 Get pointer
11
OpenDexFile
void (*openDexFile)(const u4* args, JValue* pResult);
lookup(openDexFile, "dvm_dalvik_system_DexFile", "([B)I", &openDexFile)
int lookup (JNINativeMethod *table, const char *name, const char *sig, void (**fnPtrout)
(u4 const *, union JValue *)) {
int i = 0;
while (table[i].name != NULL) {
if ( (strcmp(name, table[i].name) == 0) && (strcmp(sig, table[i].signature) == 0) ) {
*fnPtrout = table[i].fnPtr;
return 1;
}
i++;
}
return 0;
}
12
OpenDexFile
 Invoke
ArrayObject *ao; // header+dex content
u4 args[] = { (u4)ao };
JValue pResult ;
jint result ;
openDexFile(args, &pResult);
result = (jint)pResult.l;
return result;
13
Under the hood
 Dalvik internals: dvm_dalvik_system_DexFile
const DalvikNativeMethod dvm_dalvik_system_DexFile[] = {
{ "openDexFile", "(Ljava/lang/String;Ljava/lang/String;I)I",
Dalvik_dalvik_system_DexFile_openDexFile },
{ "openDexFile", "([B)I",
Dalvik_dalvik_system_DexFile_openDexFile_bytearray },
{ "closeDexFile", "(I)V",
Dalvik_dalvik_system_DexFile_closeDexFile },
{ "defineClass", "(Ljava/lang/String;Ljava/lang/ClassLoader;I)Ljava/lang/Class;",
Dalvik_dalvik_system_DexFile_defineClass },
{ "getClassNameList", "(I)[Ljava/lang/String;",
Dalvik_dalvik_system_DexFile_getClassNameList },
{ "isDexOptNeeded", "(Ljava/lang/String;)Z",
Dalvik_dalvik_system_DexFile_isDexOptNeeded },
{ NULL, NULL, NULL },
};
14
Dex Loading
 getClassNameList (I)[Ljava/lang/String;
– List of classes available from loaded
dex
 defineClass
(Ljava/lang/String;Ljava/lang/ClassLoader
;I)Ljava/lang/Class;
– Oddity : expect / as separator
(com.a.b.c.d => com/a/b/c/d)
15
Dex Loading
int cookie = openDexFile(...);
Class<?> cls = null;
String as[] = getClassNameList(cookie);
for(int z=0; z<as.length; z++) {
if(as[z].equals("com.immunapp.hes2013.MainActivity")) {
cls=defineClass(as[z].replace('.', '/'), context.getClassLoader(), cookie );
} else {
defineClass(as[z].replace('.', '/'), context.getClassLoader(), cookie );
}
}
if(cls!=null) {
Intent intent = new Intent(this, newcls);
startActivity(intent);
}
16
Self modifying Dalvik
Bytecode
 JNI again
 /proc/self/maps
49143000­49145000 r­­s 00003000 1f:01 1013       /data/app/com.immunapp.hes2013.bc­1.apk
49145000­49146000 r­­s 0003f000 1f:01 1013       /data/app/com.immunapp.hes2013.bc­1.apk
49146000­491b5000 r­­p 00000000 1f:01 857        
/data/dalvik­cache/data@app@com.immunapp.hes2013.bc­1.apk@classes.dex
491b5000­491be000 rw­p 00000000 00:07 14251      /dev/ashmem/dalvik­aux­structure (deleted)
491bf000­491c6000 r­xp 00000000 1f:01 837    
/data/app­lib/com.immunapp.hes2013.bc­1/libdextest.so
17
Self modifying Dalvik
Bytecode
 Search in memory : look for DEX
signature
dexn035
 It'll be aligned on _SC_PAGESIZE, at
offset 0x28
18
Self modifying Dalvik
Bytecode
 DEX is found : easy part
 Parse it
https://source.android.com/tech/dalvik
/dex-format.html
19
Self modifying Dalvik
Bytecode
 DEX header
– String table
– Method table
– Class Def table
20
Self modifying Dalvik
Bytecode
 DEX format
Variable-length quantity, ULEB128
127 0x7F
128 0x80 0x01
Strings : MUTF-8 (Modified UTF-8)
Encoding
21
Self modifying Dalvik
Bytecode
 Finding the right place
– 1st pass : search class
– 2nd pass : look for your method
 encoded_method
– code_off uleb128
– offset from the start of the file to the code structure
for this method, or 0 if this method is either abstract
or native.
– The offset should be to a location in the data section.
22
Self modifying Dalvik
Bytecode
 bytecode
– insns ushort[insns_size]
(offset 0x10)
– actual array of bytecode, described in
a document "Bytecode for the Dalvik
VM".
23
Self modifying Dalvik
Bytecode
 Unlock memory
Align address to closest _SC_PAGESIZE
mprotect((unsigned char*)aligned,
PROT_WRITE | PROT_READ, len);
 Insert your payload
memcpy((unsigned char*)code_off,
opcodes, len);
24
Self modifying Dalvik
Bytecode
 Unlock memory
Align address to closest _SC_PAGESIZE
mprotect((unsigned char*)aligned,
PROT_WRITE | PROT_READ, len);
 Insert your payload
memcpy((unsigned char*)code_off,
opcodes, len);
25
Self modifying Dalvik
Bytecode
 Sample
public static int dummyMethod() {
return 42;
// bytecode:
/*
13 00 2A 00 const/16 v0, 0x2A
0F 00 return v0
*/
}
26
Self modifying Dalvik
Bytecode
 sample
native static int searchDex();
native static int patchDex(int addr,
String methodName, byte[] opcode);
27
Self modifying Dalvik
Bytecode
 sample
int dexInMemory = searchDex();
patchDex(dexInMemory, "dummyMethod",
new byte[] { 0x13, 0x00, 0x55, 0x00,
0x0F, 0x00 });
int r = dummyMethod();
Log.d("dummy()", ""+r);
28
Self modifying Dalvik
Bytecode
I/bytecode( 9205): 49145000­49146000 r­­s 00034000 1f:01 1759       /data/app/com.example.sample4­1.apk
I/bytecode( 9205): 49146000­491b5000 r­­p 00000000 1f:01 1456       
/data/dalvik­cache/data@app@com.immunapp.hes2013.bc­1.apk@classes.dex
I/bytecode( 9205): 491b5000­491be000 rw­p 00000000 00:07 123159     /dev/ashmem/dalvik­aux­structure (deleted)
I/bytecode( 9205): 491bf000­491c2000 r­xp 00000000 1f:01 1409       
/data/app­lib/com.immunapp.hes2013.bc­1/libdextest.so
I/bytecode( 9205): 491c2000­491c3000 r­­p 00002000 1f:01 1409       
/data/app­lib/com.immunapp.hes2013.bc­1/libdextest.so
I/bytecode( 9205): 491c3000­491c4000 rw­p 00003000 1f:01 1409       
/data/app­lib/com.immunapp.hes2013.bc­1/libdextest.so
I/bytecode( 9205): be95d000­be972000 rw­p befeb000 00:00 0          [stack]
I/bytecode( 9205): found at 49146000, dex at 49146028
I/bytecode( 9205): methodName=dummyMethod (11)
I/bytecode( 9205): opcodes length=6
I/bytecode( 9205): string_ids_size=00000fac
I/bytecode( 9205): string_ids_off=00000070
I/bytecode( 9205): method_ids_size=00000d81
I/bytecode( 9205): method_ids_off=000085d4
I/bytecode( 9205): method[3280] 000007fe
I/bytecode( 9205): class_defs_size=0000013f
I/bytecode( 9205): class_defs_off=0000f1dc
I/bytecode( 9205): found method[3280] at 0002b470 : 491714a8
I/bytecode( 9205): aligned page 49171000
I/bytecode( 9205): unlocked
I/bytecode( 9205): bytecode patched
D/dummy() ( 9205): 85

Contenu connexe

Tendances

Vk.amberfog.com gtug part1_introduction2_javaandroid_gtug
Vk.amberfog.com gtug part1_introduction2_javaandroid_gtugVk.amberfog.com gtug part1_introduction2_javaandroid_gtug
Vk.amberfog.com gtug part1_introduction2_javaandroid_gtug
ketan_patel25
 
I Know You Want Me - Unplugging PlugX
I Know You Want Me - Unplugging PlugXI Know You Want Me - Unplugging PlugX
I Know You Want Me - Unplugging PlugX
Takahiro Haruyama
 

Tendances (20)

A client-side vulnerability under the microscope!
A client-side vulnerability under the microscope!A client-side vulnerability under the microscope!
A client-side vulnerability under the microscope!
 
APAN 2014 Bandung E-Culture Working Group Introduction to Linked Data
APAN 2014 Bandung E-Culture Working Group Introduction to Linked DataAPAN 2014 Bandung E-Culture Working Group Introduction to Linked Data
APAN 2014 Bandung E-Culture Working Group Introduction to Linked Data
 
Py jail talk
Py jail talkPy jail talk
Py jail talk
 
sqlmap - security development in Python
sqlmap - security development in Pythonsqlmap - security development in Python
sqlmap - security development in Python
 
Vk.amberfog.com gtug part1_introduction2_javaandroid_gtug
Vk.amberfog.com gtug part1_introduction2_javaandroid_gtugVk.amberfog.com gtug part1_introduction2_javaandroid_gtug
Vk.amberfog.com gtug part1_introduction2_javaandroid_gtug
 
Java cheat sheet
Java cheat sheet Java cheat sheet
Java cheat sheet
 
Dart London hackathon
Dart  London hackathonDart  London hackathon
Dart London hackathon
 
EKON 12 Running OpenLDAP
EKON 12 Running OpenLDAP EKON 12 Running OpenLDAP
EKON 12 Running OpenLDAP
 
I Know You Want Me - Unplugging PlugX
I Know You Want Me - Unplugging PlugXI Know You Want Me - Unplugging PlugX
I Know You Want Me - Unplugging PlugX
 
Object oriented programming with python
Object oriented programming with pythonObject oriented programming with python
Object oriented programming with python
 
LatJUG. Java Bytecode Fundamentals
LatJUG. Java Bytecode FundamentalsLatJUG. Java Bytecode Fundamentals
LatJUG. Java Bytecode Fundamentals
 
It all starts with the ' (SQL injection from attacker's point of view)
It all starts with the ' (SQL injection from attacker's point of view)It all starts with the ' (SQL injection from attacker's point of view)
It all starts with the ' (SQL injection from attacker's point of view)
 
Riding the Overflow - Then and Now
Riding the Overflow - Then and NowRiding the Overflow - Then and Now
Riding the Overflow - Then and Now
 
Java Programming Guide Quick Reference
Java Programming Guide Quick ReferenceJava Programming Guide Quick Reference
Java Programming Guide Quick Reference
 
12 virtualmachine
12 virtualmachine12 virtualmachine
12 virtualmachine
 
R. herves. clean code (theme)2
R. herves. clean code (theme)2R. herves. clean code (theme)2
R. herves. clean code (theme)2
 
Object oriented programming in python
Object oriented programming in pythonObject oriented programming in python
Object oriented programming in python
 
Java for beginners
Java for beginnersJava for beginners
Java for beginners
 
Protocol T50: Five months later... So what?
Protocol T50: Five months later... So what?Protocol T50: Five months later... So what?
Protocol T50: Five months later... So what?
 
Java 5 PSM for DDS: Initial Submission (out of date)
Java 5 PSM for DDS: Initial Submission (out of date)Java 5 PSM for DDS: Initial Submission (out of date)
Java 5 PSM for DDS: Initial Submission (out of date)
 

En vedette

Letter to CORE workshop participants, jankowski, 11sept2010
Letter to CORE workshop participants, jankowski, 11sept2010Letter to CORE workshop participants, jankowski, 11sept2010
Letter to CORE workshop participants, jankowski, 11sept2010
Nick Jankowski
 
Esade Internet para ONGs Madrid 2009 Online
Esade Internet para ONGs Madrid 2009   OnlineEsade Internet para ONGs Madrid 2009   Online
Esade Internet para ONGs Madrid 2009 Online
Jordi Duran i Batidor
 

En vedette (7)

Seminar presentation
Seminar presentationSeminar presentation
Seminar presentation
 
The Power of Video
The Power of VideoThe Power of Video
The Power of Video
 
Syllabaus, ljubljana practicum, digital tools and scholarship, jankowski, dra...
Syllabaus, ljubljana practicum, digital tools and scholarship, jankowski, dra...Syllabaus, ljubljana practicum, digital tools and scholarship, jankowski, dra...
Syllabaus, ljubljana practicum, digital tools and scholarship, jankowski, dra...
 
Letter to CORE workshop participants, jankowski, 11sept2010
Letter to CORE workshop participants, jankowski, 11sept2010Letter to CORE workshop participants, jankowski, 11sept2010
Letter to CORE workshop participants, jankowski, 11sept2010
 
Esade Internet para ONGs Madrid 2009 Online
Esade Internet para ONGs Madrid 2009   OnlineEsade Internet para ONGs Madrid 2009   Online
Esade Internet para ONGs Madrid 2009 Online
 
Jankowski, KCL CeRch presentation, enhanced scholarly publications, with note...
Jankowski, KCL CeRch presentation, enhanced scholarly publications, with note...Jankowski, KCL CeRch presentation, enhanced scholarly publications, with note...
Jankowski, KCL CeRch presentation, enhanced scholarly publications, with note...
 
Workshop - Blogs als Portfoliowerkzeug (Tutorenschulung WS2013)
Workshop - Blogs als Portfoliowerkzeug (Tutorenschulung WS2013)Workshop - Blogs als Portfoliowerkzeug (Tutorenschulung WS2013)
Workshop - Blogs als Portfoliowerkzeug (Tutorenschulung WS2013)
 

Similaire à [HES2013] Nifty stuff that you can still do with android by Xavier Martin

the productive programer: mechanics
the productive programer: mechanicsthe productive programer: mechanics
the productive programer: mechanics
elliando dias
 
Ts archiving
Ts   archivingTs   archiving
Ts archiving
Confiz
 
Android NDK and the x86 Platform
Android NDK and the x86 PlatformAndroid NDK and the x86 Platform
Android NDK and the x86 Platform
Sebastian Mauer
 

Similaire à [HES2013] Nifty stuff that you can still do with android by Xavier Martin (20)

為什麼Method數超過65535會build fail?
為什麼Method數超過65535會build fail?為什麼Method數超過65535會build fail?
為什麼Method數超過65535會build fail?
 
Devtools cheatsheet
Devtools cheatsheetDevtools cheatsheet
Devtools cheatsheet
 
Devtools cheatsheet
Devtools cheatsheetDevtools cheatsheet
Devtools cheatsheet
 
the productive programer: mechanics
the productive programer: mechanicsthe productive programer: mechanics
the productive programer: mechanics
 
Android basics
Android basicsAndroid basics
Android basics
 
Forensic Memory Analysis of Android's Dalvik Virtual Machine
Forensic Memory Analysis of Android's Dalvik Virtual MachineForensic Memory Analysis of Android's Dalvik Virtual Machine
Forensic Memory Analysis of Android's Dalvik Virtual Machine
 
Demo Eclipse Science
Demo Eclipse ScienceDemo Eclipse Science
Demo Eclipse Science
 
Demo eclipse science
Demo eclipse scienceDemo eclipse science
Demo eclipse science
 
Readme
ReadmeReadme
Readme
 
Formbook - In-depth malware analysis (Botconf 2018)
Formbook - In-depth malware analysis (Botconf 2018)Formbook - In-depth malware analysis (Botconf 2018)
Formbook - In-depth malware analysis (Botconf 2018)
 
Getting Native with NDK
Getting Native with NDKGetting Native with NDK
Getting Native with NDK
 
Chasing the Adder. A tale from the APT world...
Chasing the Adder. A tale from the APT world...Chasing the Adder. A tale from the APT world...
Chasing the Adder. A tale from the APT world...
 
SFDX Presentation
SFDX PresentationSFDX Presentation
SFDX Presentation
 
Hadoop HDFS Concepts
Hadoop HDFS ConceptsHadoop HDFS Concepts
Hadoop HDFS Concepts
 
Using the Android Native Development Kit (NDK)
Using the Android Native Development Kit (NDK)Using the Android Native Development Kit (NDK)
Using the Android Native Development Kit (NDK)
 
Ts archiving
Ts   archivingTs   archiving
Ts archiving
 
IstSec'14 - İbrahim BALİÇ - Automated Malware Analysis
IstSec'14 - İbrahim BALİÇ -  Automated Malware AnalysisIstSec'14 - İbrahim BALİÇ -  Automated Malware Analysis
IstSec'14 - İbrahim BALİÇ - Automated Malware Analysis
 
Android NDK and the x86 Platform
Android NDK and the x86 PlatformAndroid NDK and the x86 Platform
Android NDK and the x86 Platform
 
NvFX GTC 2013
NvFX GTC 2013NvFX GTC 2013
NvFX GTC 2013
 
Eric Lafortune - The Jack and Jill build system
Eric Lafortune - The Jack and Jill build systemEric Lafortune - The Jack and Jill build system
Eric Lafortune - The Jack and Jill build system
 

Plus de Hackito Ergo Sum

Plus de Hackito Ergo Sum (6)

[HES2013] Hacking apple accessories to pown iDevices – Wake up Neo! Your phon...
[HES2013] Hacking apple accessories to pown iDevices – Wake up Neo! Your phon...[HES2013] Hacking apple accessories to pown iDevices – Wake up Neo! Your phon...
[HES2013] Hacking apple accessories to pown iDevices – Wake up Neo! Your phon...
 
[HES2013] Frida IRE – a tool for scriptable dynamic instrumentation in userla...
[HES2013] Frida IRE – a tool for scriptable dynamic instrumentation in userla...[HES2013] Frida IRE – a tool for scriptable dynamic instrumentation in userla...
[HES2013] Frida IRE – a tool for scriptable dynamic instrumentation in userla...
 
[HES2013] Paparazzi over ip by Daniel Mende
[HES2013] Paparazzi over ip by Daniel Mende[HES2013] Paparazzi over ip by Daniel Mende
[HES2013] Paparazzi over ip by Daniel Mende
 
[HES2014] HackRF A Low Cost Software Defined Radio Platform by Benjamin Vernoux
[HES2014] HackRF A Low Cost Software Defined Radio Platform by Benjamin Vernoux[HES2014] HackRF A Low Cost Software Defined Radio Platform by Benjamin Vernoux
[HES2014] HackRF A Low Cost Software Defined Radio Platform by Benjamin Vernoux
 
[HES2013] Information Warfare: mistakes from the MoDs by Raoul “Nobody” Chiesa
[HES2013] Information Warfare: mistakes from the MoDs by Raoul “Nobody” Chiesa[HES2013] Information Warfare: mistakes from the MoDs by Raoul “Nobody” Chiesa
[HES2013] Information Warfare: mistakes from the MoDs by Raoul “Nobody” Chiesa
 
[HES2013] Virtually secure, analysis to remote root 0day on an industry leadi...
[HES2013] Virtually secure, analysis to remote root 0day on an industry leadi...[HES2013] Virtually secure, analysis to remote root 0day on an industry leadi...
[HES2013] Virtually secure, analysis to remote root 0day on an industry leadi...
 

Dernier

TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service provider
mohitmore19
 
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdfintroduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
VishalKumarJha10
 

Dernier (20)

AI & Machine Learning Presentation Template
AI & Machine Learning Presentation TemplateAI & Machine Learning Presentation Template
AI & Machine Learning Presentation Template
 
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdfLearn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
Learn the Fundamentals of XCUITest Framework_ A Beginner's Guide.pdf
 
%in kempton park+277-882-255-28 abortion pills for sale in kempton park
%in kempton park+277-882-255-28 abortion pills for sale in kempton park %in kempton park+277-882-255-28 abortion pills for sale in kempton park
%in kempton park+277-882-255-28 abortion pills for sale in kempton park
 
VTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learnVTU technical seminar 8Th Sem on Scikit-learn
VTU technical seminar 8Th Sem on Scikit-learn
 
Sector 18, Noida Call girls :8448380779 Model Escorts | 100% verified
Sector 18, Noida Call girls :8448380779 Model Escorts | 100% verifiedSector 18, Noida Call girls :8448380779 Model Escorts | 100% verified
Sector 18, Noida Call girls :8448380779 Model Escorts | 100% verified
 
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time ApplicationsUnveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
Unveiling the Tech Salsa of LAMs with Janus in Real-Time Applications
 
Software Quality Assurance Interview Questions
Software Quality Assurance Interview QuestionsSoftware Quality Assurance Interview Questions
Software Quality Assurance Interview Questions
 
LEVEL 5 - SESSION 1 2023 (1).pptx - PDF 123456
LEVEL 5   - SESSION 1 2023 (1).pptx - PDF 123456LEVEL 5   - SESSION 1 2023 (1).pptx - PDF 123456
LEVEL 5 - SESSION 1 2023 (1).pptx - PDF 123456
 
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdfThe Ultimate Test Automation Guide_ Best Practices and Tips.pdf
The Ultimate Test Automation Guide_ Best Practices and Tips.pdf
 
A Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docxA Secure and Reliable Document Management System is Essential.docx
A Secure and Reliable Document Management System is Essential.docx
 
TECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service providerTECUNIQUE: Success Stories: IT Service provider
TECUNIQUE: Success Stories: IT Service provider
 
Pharm-D Biostatistics and Research methodology
Pharm-D Biostatistics and Research methodologyPharm-D Biostatistics and Research methodology
Pharm-D Biostatistics and Research methodology
 
10 Trends Likely to Shape Enterprise Technology in 2024
10 Trends Likely to Shape Enterprise Technology in 202410 Trends Likely to Shape Enterprise Technology in 2024
10 Trends Likely to Shape Enterprise Technology in 2024
 
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
 
%in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park %in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park
 
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdfintroduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
introduction-to-automotive Andoid os-csimmonds-ndctechtown-2021.pdf
 
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected WorkerHow To Troubleshoot Collaboration Apps for the Modern Connected Worker
How To Troubleshoot Collaboration Apps for the Modern Connected Worker
 
Unlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language ModelsUnlocking the Future of AI Agents with Large Language Models
Unlocking the Future of AI Agents with Large Language Models
 
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
 
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
 

[HES2013] Nifty stuff that you can still do with android by Xavier Martin