SlideShare uma empresa Scribd logo
1 de 59
Baixar para ler offline
Web應用程式以及資安問題的
       探討
     kewang




                 1
今日主題




今日主題
今日主題




OWASP
 Top 10
自我介紹




宜蘭讀書6年
自我介紹




任職大X資訊
自我介紹




2008/9/16
自我介紹




2011/8/24
自我介紹




 /
44   1072
自我介紹




據說比willie
 早退伍!
關於OWASP




開放Web軟體安全計畫
Open Web Application
   Security Project
OWASP目標




研議協助解決Web軟體安全之
  標準、工具與技術文件
目前五大資安困境




• IT人員不足
• 缺乏資安領域專業知識
• 功能性驗收為主
• 缺乏自動化工具
• 成本、效率導向專案模式不利
  確保專案品質          12
OWASP Top 10




#10
OWASP Top 10 - #10




      疏於限制URL存取
Failure to Restrict URL Access
OWASP Top 10 - #10


[WEB ROOT]
 /admin/[admin.html | index.html | index.jsp | index.asp | index.php]
 /products
 /sales
 ...
 index.html
 login.html
 ...
 /backup/
 /logs/
 /vulnerable.cgi
OWASP Top 10 - #10
OWASP Top 10 - #10 – 解決




• 阻擋存取所有不會在伺服器上執行的
  檔案
• 將所有需要加入權限控管的檔案,設
  定正確的權限
• 利用MVC架構(如RoR)控制所有需要
  加入權限控管的檔案
• 不要把使用者當笨蛋
                                 17
OWASP Top 10




#9
OWASP Top 10 - #9




     不安全的通訊
Insecure Communication
OWASP Top 10 - #9
OWASP Top 10 - #9 – 解決




使用SSL!
OWASP Top 10




#8
OWASP Top 10 - #8




     不安全的密碼儲存器
Insecure Cryptographic Storage
OWASP Top 10 - #8



• this is a text
   •   MD4: 24886fa61e16a6e5dd12fd180c878251
   •   MD5: 78821a05d282822e4abec190c061ba78
   •   SHA-1: 703c445982e074e33a05c161d221217f2facbf5e
   •   RSA:
       45683425c7df8a78f80d4801ff277888fdba7a72150541e8eca1d7329ca
       2cf53f8ca1f2d2dcd34513067b1f6db402bfee48143288f2b7b448da015
       e5a6b0aababb1f95ef4a653547c98c6492a552d0d7f7425c1663f4f3008
       91b6d0abc0ee17a499ad4f46ace65182c5bf26577021d49f26abb1a496
       1f3e9e7e339ff2b4e778a




                                                                 24
OWASP Top 10 - #8 – 解決



• 使用較安全的加密演算法
 – AES
 – RSA
 – SHA-256




                                   25
OWASP Top 10




#7
OWASP Top 10 - #7




 遭破壞的鑑別與連線管理
Broken Authentication and
   Session Management
OWASP Top 10 - #7
OWASP Top 10 - #7 – 解決



• 不要允許來自網址列或是外部request的
  session id
• 將隱密性的資料使用已註冊的email傳送
• 修改密碼時需要再次確認舊密碼
• 每個網頁都需要有登出連結




                                    29
OWASP Top 10




#6
OWASP Top 10 - #6




資訊揭露與不適當錯誤處置
Information Leakage and
 Improper Error Handling
OWASP Top 10 - #6




想不到例
子了啦…
OWASP Top 10 - #6 – 解決



• 確保每一個專案在開發時,都會有一個共同的
  例外處理方法(exception handling approach)
• 關閉/限制顯示錯誤資訊的大小




                                           33
OWASP Top 10




#5
OWASP Top 10 - #5




    跨網站的偽造要求
Cross-Site Request Forgery,
           CSRF
OWASP Top 10 - #5



• clickme.html
  – <body><iframe width=quot;1quot; height=quot;1quot;
    src=quot;attack.htmlquot;></iframe></body>
• attack.html
  – <body onload=quot;document.frm.submit() quot;><form
    name=quot;frmquot; method=quot;postquot;
    action=http://a.com/atk.cgi><input type=quot;hiddenquot;
    name=quot;artquot; value=quot;tttquot;><input type=quot;submitquot;
    value=quot;sendquot;></form>

                                                       36
OWASP Top 10 - #5 – 解決



• 在每個form加入一個隨機值,代表目前執行動
  作的使用者
• 針對敏感性資料的修改,在修改前請再次認證
• 不要把GET傳輸方式用在敏感性資料的修改




                                  37
OWASP Top 10




#4
OWASP Top 10 - #4




       不安全的物件參考
Insecure Direct Object Reference
OWASP Top 10 - #4



• <select name=quot;languagequot;><option
  value=quot;frquot;>Francais</option></select>
  …
  require_once
  ($_REQUEST['language'].quot;lang.phpquot;);




                                                40
OWASP Top 10 - #4



• 避免在HTML上顯示任何私人的檔案路徑,或
  是在HTML上使用id代表檔案名稱
• 可以利用白名單的方式驗證私人檔案路徑




                               41
OWASP Top 10




#3
OWASP Top 10 - #3




     惡意檔案執行
Malicious File Execution
OWASP Top 10 - #3




include $_REQUEST['file'];
OWASP Top 10 - #3 – 解決




require_once($safe['file'] .
        'inc.php');
OWASP Top 10
OWASP Top 10 - #2




  SQL
Injection
OWASP Top 10 - #2




駭客填空
 遊戲
OWASP Top 10 - #2



• strSQL = quot;SELECT * FROM users WHERE (name =
  'quot; + userName + quot;') and (pw = 'quot;+ passWord +quot;');quot;
  • userName = quot;' OR '1'='1quot;;
  • passWord = quot;' OR '1'='1quot;;
• strSQL = quot;SELECT * FROM users WHERE (name =
  '' OR '1'='1') and (pw = '' OR '1'='1');quot;




                                                      49
OWASP Top 10 - #2 – 解決



• Parameterized Query
  – SqlCommand sqlcmd = new
    SqlCommand(quot;INSERT INTO myTable (c1, c2, c3,
    c4) VALUES (@c1, @c2, @c3, @c4)quot;, sqlconn);
    sqlcmd.Parameters.AddWithValue(quot;@c1quot;, 1);
    sqlcmd.Parameters.AddWithValue(quot;@c2quot;, 2);
    sqlcmd.Parameters.AddWithValue(quot;@c3quot;, 3);
    sqlcmd.Parameters.AddWithValue(quot;@c4quot;, 4);



                                                 50
OWASP Top 10
OWASP Top 10 - #1
OWASP Top 10 - #1



• echo $_REQUEST['userinput'];
• <script>alert(document.cookie)</script>




                                                 53
OWASP Top 10 - #1 – 解決



• PHP
  – htmlentities()
  – htmlspecialchars()
• ASP.NET
  – Server.HtmlEncode()
  – Microsoft Anti-Cross Site Scripting Library




                                                      54
OWASP Top 10
程式碼安全品質



• [必要]
 – A1. 跨網站的入侵字串(XSS)
 – A2. 注入缺失(SQL Injection)
• [建議]
 – A3. 惡意檔案執行
 – A4. 不安全的物件參考
• [選擇]
 – A5. 跨網站的偽造要求(CSRF)

                                  56
Coming soon…




Google
 Maps
Coming soon…




Version
Control
System
沒了…




沒了…

Mais conteúdo relacionado

Mais procurados

微软客户端技术纵览
微软客户端技术纵览微软客户端技术纵览
微软客户端技术纵览
ntoskrnl
 

Mais procurados (19)

Rails Cache
Rails CacheRails Cache
Rails Cache
 
Mitigate Maliciousness -- jQuery Europe 2013
Mitigate Maliciousness -- jQuery Europe 2013Mitigate Maliciousness -- jQuery Europe 2013
Mitigate Maliciousness -- jQuery Europe 2013
 
Paranoia shanee EDL
Paranoia shanee EDLParanoia shanee EDL
Paranoia shanee EDL
 
B01 multiple
B01 multipleB01 multiple
B01 multiple
 
Using Phing for Fun and Profit
Using Phing for Fun and ProfitUsing Phing for Fun and Profit
Using Phing for Fun and Profit
 
Html22
Html22Html22
Html22
 
Testing
TestingTesting
Testing
 
Ruby on Rails Tutorial Part I
Ruby on Rails Tutorial Part IRuby on Rails Tutorial Part I
Ruby on Rails Tutorial Part I
 
Jumpstarting big data projects / Architectural Considerations of HDInsight Ap...
Jumpstarting big data projects / Architectural Considerations of HDInsight Ap...Jumpstarting big data projects / Architectural Considerations of HDInsight Ap...
Jumpstarting big data projects / Architectural Considerations of HDInsight Ap...
 
Show messagehello
Show messagehelloShow messagehello
Show messagehello
 
微软客户端技术纵览
微软客户端技术纵览微软客户端技术纵览
微软客户端技术纵览
 
SEASR and UIMA
SEASR and UIMASEASR and UIMA
SEASR and UIMA
 
shoubox script
shoubox scriptshoubox script
shoubox script
 
Memcache Injection (Hacktrick'15)
Memcache Injection (Hacktrick'15)Memcache Injection (Hacktrick'15)
Memcache Injection (Hacktrick'15)
 
сири тверді
сири твердісири тверді
сири тверді
 
SAS and 80/20
SAS and 80/20SAS and 80/20
SAS and 80/20
 
St 002
St 002St 002
St 002
 
Tecnologias Open Source para Alta Disponibilidade e Segurança de Aplicações Web
Tecnologias Open Source para  Alta Disponibilidade e Segurança de Aplicações WebTecnologias Open Source para  Alta Disponibilidade e Segurança de Aplicações Web
Tecnologias Open Source para Alta Disponibilidade e Segurança de Aplicações Web
 
As props
As propsAs props
As props
 

Destaque

UMiP推廣手冊V1.1
UMiP推廣手冊V1.1UMiP推廣手冊V1.1
UMiP推廣手冊V1.1
Mu Chun Wang
 
用jQuery玩弄你的網頁1
用jQuery玩弄你的網頁1用jQuery玩弄你的網頁1
用jQuery玩弄你的網頁1
Mu Chun Wang
 
How to Study and Do Research
How to Study and Do ResearchHow to Study and Do Research
How to Study and Do Research
Mu Chun Wang
 
Firebase introduction
Firebase introductionFirebase introduction
Firebase introduction
Mu Chun Wang
 
第一次避免被數位洪流淹死就上手
第一次避免被數位洪流淹死就上手第一次避免被數位洪流淹死就上手
第一次避免被數位洪流淹死就上手
Mu Chun Wang
 
Ruby on rails探索
Ruby on rails探索Ruby on rails探索
Ruby on rails探索
Mu Chun Wang
 
成功的道路是沒有捷徑的
成功的道路是沒有捷徑的成功的道路是沒有捷徑的
成功的道路是沒有捷徑的
Mu Chun Wang
 
宜大資工所簡介
宜大資工所簡介宜大資工所簡介
宜大資工所簡介
Mu Chun Wang
 
版本控制系統介紹
版本控制系統介紹版本控制系統介紹
版本控制系統介紹
Mu Chun Wang
 
邱爾德教授 - Effective Oral Presentation
邱爾德教授 - Effective Oral Presentation邱爾德教授 - Effective Oral Presentation
邱爾德教授 - Effective Oral Presentation
Mu Chun Wang
 
山寨機的藍海戰略
山寨機的藍海戰略山寨機的藍海戰略
山寨機的藍海戰略
Mu Chun Wang
 
Using Maven to build Java & Android program
Using Maven to build Java & Android programUsing Maven to build Java & Android program
Using Maven to build Java & Android program
Mu Chun Wang
 

Destaque (20)

網路安全
網路安全網路安全
網路安全
 
UMiP推廣手冊V1.1
UMiP推廣手冊V1.1UMiP推廣手冊V1.1
UMiP推廣手冊V1.1
 
用jQuery玩弄你的網頁1
用jQuery玩弄你的網頁1用jQuery玩弄你的網頁1
用jQuery玩弄你的網頁1
 
How to Study and Do Research
How to Study and Do ResearchHow to Study and Do Research
How to Study and Do Research
 
新生說明會 Presentation
新生說明會 Presentation新生說明會 Presentation
新生說明會 Presentation
 
微網誌介紹
微網誌介紹微網誌介紹
微網誌介紹
 
Firebase introduction
Firebase introductionFirebase introduction
Firebase introduction
 
第一次避免被數位洪流淹死就上手
第一次避免被數位洪流淹死就上手第一次避免被數位洪流淹死就上手
第一次避免被數位洪流淹死就上手
 
Ruby on rails探索
Ruby on rails探索Ruby on rails探索
Ruby on rails探索
 
重新探討HTML
重新探討HTML重新探討HTML
重新探討HTML
 
Ogg簡介
Ogg簡介Ogg簡介
Ogg簡介
 
成功的道路是沒有捷徑的
成功的道路是沒有捷徑的成功的道路是沒有捷徑的
成功的道路是沒有捷徑的
 
新生說明會_slide
新生說明會_slide新生說明會_slide
新生說明會_slide
 
宜大資工所簡介
宜大資工所簡介宜大資工所簡介
宜大資工所簡介
 
版本控制系統介紹
版本控制系統介紹版本控制系統介紹
版本控制系統介紹
 
如何利用 Docker 強化網站安全
如何利用 Docker 強化網站安全如何利用 Docker 強化網站安全
如何利用 Docker 強化網站安全
 
邱爾德教授 - Effective Oral Presentation
邱爾德教授 - Effective Oral Presentation邱爾德教授 - Effective Oral Presentation
邱爾德教授 - Effective Oral Presentation
 
How to build a scalable SNS using HBase
How to build a scalable SNS using HBaseHow to build a scalable SNS using HBase
How to build a scalable SNS using HBase
 
山寨機的藍海戰略
山寨機的藍海戰略山寨機的藍海戰略
山寨機的藍海戰略
 
Using Maven to build Java & Android program
Using Maven to build Java & Android programUsing Maven to build Java & Android program
Using Maven to build Java & Android program
 

Semelhante a Web應用程式以及資安問題的探討

Ruby on Rails 2.1 What's New Chinese Version
Ruby on Rails 2.1 What's New Chinese VersionRuby on Rails 2.1 What's New Chinese Version
Ruby on Rails 2.1 What's New Chinese Version
Libin Pan
 
Windows 7兼容性系列课程(3):有针对的兼容性开发(上)
Windows 7兼容性系列课程(3):有针对的兼容性开发(上)Windows 7兼容性系列课程(3):有针对的兼容性开发(上)
Windows 7兼容性系列课程(3):有针对的兼容性开发(上)
Chui-Wen Chiu
 
企业级搜索引擎Solr交流
企业级搜索引擎Solr交流企业级搜索引擎Solr交流
企业级搜索引擎Solr交流
chuan liang
 
1242626441API2 upload
1242626441API2 upload1242626441API2 upload
1242626441API2 upload
51 lecture
 
421 Ch
421 Ch421 Ch
421 Ch
anjaan
 

Semelhante a Web應用程式以及資安問題的探討 (20)

20090418 イケテルRails勉強会 第1部Rails編
20090418 イケテルRails勉強会 第1部Rails編20090418 イケテルRails勉強会 第1部Rails編
20090418 イケテルRails勉強会 第1部Rails編
 
What Can Compilers Do for Us?
What Can Compilers Do for Us?What Can Compilers Do for Us?
What Can Compilers Do for Us?
 
Spring基础教程
Spring基础教程Spring基础教程
Spring基础教程
 
Ruby on Rails 2.1 What's New Chinese Version
Ruby on Rails 2.1 What's New Chinese VersionRuby on Rails 2.1 What's New Chinese Version
Ruby on Rails 2.1 What's New Chinese Version
 
QQ
QQQQ
QQ
 
T1
T1T1
T1
 
Working With Rails
Working With RailsWorking With Rails
Working With Rails
 
Ontology-based Content Management System (ICIM 2008)
Ontology-based Content Management System (ICIM 2008)Ontology-based Content Management System (ICIM 2008)
Ontology-based Content Management System (ICIM 2008)
 
aws step-function 分享
aws step-function 分享aws step-function 分享
aws step-function 分享
 
IPV9人类共同的理想/IPv9 - The common ideal for human being
IPV9人类共同的理想/IPv9 - The common ideal for human beingIPV9人类共同的理想/IPv9 - The common ideal for human being
IPV9人类共同的理想/IPv9 - The common ideal for human being
 
Gorm @ gopher china
Gorm @ gopher chinaGorm @ gopher china
Gorm @ gopher china
 
Dev004奚江華
Dev004奚江華Dev004奚江華
Dev004奚江華
 
4200 Kte7.0 Training V1.0
4200 Kte7.0 Training V1.04200 Kte7.0 Training V1.0
4200 Kte7.0 Training V1.0
 
Windows 7兼容性系列课程(3):有针对的兼容性开发(上)
Windows 7兼容性系列课程(3):有针对的兼容性开发(上)Windows 7兼容性系列课程(3):有针对的兼容性开发(上)
Windows 7兼容性系列课程(3):有针对的兼容性开发(上)
 
企业级搜索引擎Solr交流
企业级搜索引擎Solr交流企业级搜索引擎Solr交流
企业级搜索引擎Solr交流
 
1242626441API2 upload
1242626441API2 upload1242626441API2 upload
1242626441API2 upload
 
Jslunch6
Jslunch6Jslunch6
Jslunch6
 
421 Ch
421 Ch421 Ch
421 Ch
 
Spring Framework勉強会
Spring  Framework勉強会Spring  Framework勉強会
Spring Framework勉強会
 
Development toolsforteamdevelopment
Development toolsforteamdevelopmentDevelopment toolsforteamdevelopment
Development toolsforteamdevelopment
 

Mais de Mu Chun Wang

Mais de Mu Chun Wang (20)

如何在有限資源下實現十年的後端服務演進
如何在有限資源下實現十年的後端服務演進如何在有限資源下實現十年的後端服務演進
如何在有限資源下實現十年的後端服務演進
 
深入淺出 autocomplete
深入淺出 autocomplete深入淺出 autocomplete
深入淺出 autocomplete
 
你畢業後要任職的軟體業到底都在做些什麼事
你畢業後要任職的軟體業到底都在做些什麼事你畢業後要任職的軟體業到底都在做些什麼事
你畢業後要任職的軟體業到底都在做些什麼事
 
網路服務就是一連串搜尋的集合體
網路服務就是一連串搜尋的集合體網路服務就是一連串搜尋的集合體
網路服務就是一連串搜尋的集合體
 
老司機帶你上手 PostgreSQL 關聯式資料庫系統
老司機帶你上手 PostgreSQL 關聯式資料庫系統老司機帶你上手 PostgreSQL 關聯式資料庫系統
老司機帶你上手 PostgreSQL 關聯式資料庫系統
 
使用 PostgreSQL 及 MongoDB 從零開始建置社群必備的按讚追蹤功能
使用 PostgreSQL 及 MongoDB 從零開始建置社群必備的按讚追蹤功能使用 PostgreSQL 及 MongoDB 從零開始建置社群必備的按讚追蹤功能
使用 PostgreSQL 及 MongoDB 從零開始建置社群必備的按讚追蹤功能
 
Funliday 新創生活甘苦談
Funliday 新創生活甘苦談Funliday 新創生活甘苦談
Funliday 新創生活甘苦談
 
大解密!用 PostgreSQL 提升 350 倍的 Funliday 推薦景點計算速度
大解密!用 PostgreSQL 提升 350 倍的 Funliday 推薦景點計算速度大解密!用 PostgreSQL 提升 350 倍的 Funliday 推薦景點計算速度
大解密!用 PostgreSQL 提升 350 倍的 Funliday 推薦景點計算速度
 
如何使用 iframe 製作一個易於更新及更安全的前端套件
如何使用 iframe 製作一個易於更新及更安全的前端套件如何使用 iframe 製作一個易於更新及更安全的前端套件
如何使用 iframe 製作一個易於更新及更安全的前端套件
 
pppr - 解決 JavaScript 無法被搜尋引擎正確索引的問題
pppr - 解決 JavaScript 無法被搜尋引擎正確索引的問題pppr - 解決 JavaScript 無法被搜尋引擎正確索引的問題
pppr - 解決 JavaScript 無法被搜尋引擎正確索引的問題
 
模糊也是一種美 - 從 BlurHash 探討前後端上傳圖片架構
模糊也是一種美 - 從 BlurHash 探討前後端上傳圖片架構模糊也是一種美 - 從 BlurHash 探討前後端上傳圖片架構
模糊也是一種美 - 從 BlurHash 探討前後端上傳圖片架構
 
Google Maps 開始收費了該怎麼辦?
Google Maps 開始收費了該怎麼辦?Google Maps 開始收費了該怎麼辦?
Google Maps 開始收費了該怎麼辦?
 
Git 可以做到的事
Git 可以做到的事Git 可以做到的事
Git 可以做到的事
 
那些大家常忽略的 Cache-Control
那些大家常忽略的 Cache-Control那些大家常忽略的 Cache-Control
那些大家常忽略的 Cache-Control
 
如何利用 OpenAPI 及 WebHooks 讓老舊的網路服務也可程式化
如何利用 OpenAPI 及 WebHooks 讓老舊的網路服務也可程式化如何利用 OpenAPI 及 WebHooks 讓老舊的網路服務也可程式化
如何利用 OpenAPI 及 WebHooks 讓老舊的網路服務也可程式化
 
如何與全世界分享你的 Library
如何與全世界分享你的 Library如何與全世界分享你的 Library
如何與全世界分享你的 Library
 
如何與 Git 優雅地在樹上唱歌
如何與 Git 優雅地在樹上唱歌如何與 Git 優雅地在樹上唱歌
如何與 Git 優雅地在樹上唱歌
 
API Blueprint - API 文件規範的三大領頭之一
API Blueprint - API 文件規範的三大領頭之一API Blueprint - API 文件規範的三大領頭之一
API Blueprint - API 文件規範的三大領頭之一
 
團體共同協作與版本管理 - 01認識共同協作
團體共同協作與版本管理 - 01認識共同協作團體共同協作與版本管理 - 01認識共同協作
團體共同協作與版本管理 - 01認識共同協作
 
Git 經驗分享
Git 經驗分享Git 經驗分享
Git 經驗分享
 

Último

Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Safe Software
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
WSO2
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
panagenda
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Victor Rentea
 

Último (20)

Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024AXA XL - Insurer Innovation Award Americas 2024
AXA XL - Insurer Innovation Award Americas 2024
 
Strategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a FresherStrategies for Landing an Oracle DBA Job as a Fresher
Strategies for Landing an Oracle DBA Job as a Fresher
 
Architecting Cloud Native Applications
Architecting Cloud Native ApplicationsArchitecting Cloud Native Applications
Architecting Cloud Native Applications
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
 
CNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In PakistanCNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In Pakistan
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
Ransomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfRansomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdf
 
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challenges
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
MS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectorsMS Copilot expands with MS Graph connectors
MS Copilot expands with MS Graph connectors
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 

Web應用程式以及資安問題的探討