forked from juice-shop/juice-shop
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathinsecurity.ts
More file actions
222 lines (196 loc) · 8.78 KB
/
Copy pathinsecurity.ts
File metadata and controls
222 lines (196 loc) · 8.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
/*
* Copyright (c) 2014-2026 Bjoern Kimminich & the OWASP Juice Shop contributors.
* SPDX-License-Identifier: MIT
*/
import fs from 'node:fs'
import crypto from 'node:crypto'
import { type Request, type Response, type NextFunction } from 'express'
import { type UserModel } from 'models/user'
import expressJwt from 'express-jwt'
import jwt from 'jsonwebtoken'
import jws from 'jws'
import sanitizeHtmlLib from 'sanitize-html'
import sanitizeFilenameLib from 'sanitize-filename'
import * as utils from './utils'
/* jslint node: true */
// @ts-expect-error FIXME no typescript definitions for z85 :(
import * as z85 from 'z85'
export const publicKey = fs ? fs.readFileSync('encryptionkeys/jwt.pub', 'utf8') : 'placeholder-public-key'
const privateKey = '-----BEGIN RSA PRIVATE KEY-----\r\nMIICXAIBAAKBgQDNwqLEe9wgTXCbC7+RPdDbBbeqjdbs4kOPOIGzqLpXvJXlxxW8iMz0EaM4BKUqYsIa+ndv3NAn2RxCd5ubVdJJcX43zO6Ko0TFEZx/65gY3BE0O6syCEmUP4qbSd6exou/F+WTISzbQ5FBVPVmhnYhG/kpwt/cIxK5iUn5hm+4tQIDAQABAoGBAI+8xiPoOrA+KMnG/T4jJsG6TsHQcDHvJi7o1IKC/hnIXha0atTX5AUkRRce95qSfvKFweXdJXSQ0JMGJyfuXgU6dI0TcseFRfewXAa/ssxAC+iUVR6KUMh1PE2wXLitfeI6JLvVtrBYswm2I7CtY0q8n5AGimHWVXJPLfGV7m0BAkEA+fqFt2LXbLtyg6wZyxMA/cnmt5Nt3U2dAu77MzFJvibANUNHE4HPLZxjGNXN+a6m0K6TD4kDdh5HfUYLWWRBYQJBANK3carmulBwqzcDBjsJ0YrIONBpCAsXxk8idXb8jL9aNIg15Wumm2enqqObahDHB5jnGOLmbasizvSVqypfM9UCQCQl8xIqy+YgURXzXCN+kwUgHinrutZms87Jyi+D8Br8NY0+Nlf+zHvXAomD2W5CsEK7C+8SLBr3k/TsnRWHJuECQHFE9RA2OP8WoaLPuGCyFXaxzICThSRZYluVnWkZtxsBhW2W8z1b8PvWUE7kMy7TnkzeJS2LSnaNHoyxi7IaPQUCQCwWU4U+v4lD7uYBw00Ga/xt+7+UqFPlPVdz1yyr4q24Zxaw0LgmuEvgU5dycq8N7JxjTubX0MIRR+G9fmDBBl8=\r\n-----END RSA PRIVATE KEY-----'
interface ResponseWithUser {
status?: string
data: UserModel
iat?: number
exp?: number
bid?: number
}
interface IAuthenticatedUsers {
tokenMap: Record<string, ResponseWithUser>
idMap: Record<string, string>
put: (token: string, user: ResponseWithUser) => void
get: (token?: string) => ResponseWithUser | undefined
tokenOf: (user: UserModel) => string | undefined
from: (req: Request) => ResponseWithUser | undefined
updateFrom: (req: Request, user: ResponseWithUser) => any
}
export const hash = (data: string) => crypto.createHash('md5').update(data).digest('hex')
export const hmac = (data: string) => crypto.createHmac('sha256', 'pa4qacea4VK9t9nGv7yZtwmj').update(data).digest('hex')
export const cutOffPoisonNullByte = (str: string) => {
const nullByte = '%00'
if (utils.contains(str, nullByte)) {
return str.substring(0, str.indexOf(nullByte))
}
return str
}
export const isAuthorized = () => expressJwt(({ secret: publicKey }) as any)
export const denyAll = () => expressJwt({ secret: '' + Math.random() } as any)
export const authorize = (user = {}) => jwt.sign(user, privateKey, { expiresIn: '6h', algorithm: 'RS256' })
export const verify = (token: string) => token ? (jws.verify as ((token: string, secret: string) => boolean))(token, publicKey) : false
export const decode = (token: string) => { return jws.decode(token)?.payload }
export const sanitizeHtml = (html: string) => sanitizeHtmlLib(html)
export const sanitizeLegacy = (input = '') => input.replace(/<(?:\w+)\W+?[\w]/gi, '')
export const sanitizeFilename = (filename: string) => sanitizeFilenameLib(filename)
export const sanitizeSecure = (html: string): string => {
const sanitized = sanitizeHtml(html)
if (sanitized === html) {
return html
} else {
return sanitizeSecure(sanitized)
}
}
export const authenticatedUsers: IAuthenticatedUsers = {
tokenMap: {},
idMap: {},
put: function (token: string, user: ResponseWithUser) {
this.tokenMap[token] = user
this.idMap[user.data.id] = token
},
get: function (token?: string) {
return token ? this.tokenMap[utils.unquote(token)] : undefined
},
tokenOf: function (user: UserModel) {
return user ? this.idMap[user.id] : undefined
},
from: function (req: Request) {
const token = utils.jwtFrom(req)
return token ? this.get(token) : undefined
},
updateFrom: function (req: Request, user: ResponseWithUser) {
const token = utils.jwtFrom(req)
this.put(token, user)
}
}
export const userEmailFrom = ({ headers }: any) => {
return headers ? headers['x-user-email'] : undefined
}
const couponSigningKey = process.env.COUPON_SIGNING_KEY ?? privateKey
// signature = one hex nonce digit + truncated HMAC-SHA256(payload + nonce)
const COUPON_SIGNATURE_LENGTH = 19 // (payload.length + 1 + 19) % 4 === 0, as required by z85
const COUPON_NONCES = '0123456789abcdef'
// z85 output may contain '%' (breaks URL path decoding) or '{...}' (interpreted as key sequence by automated typing)
const UNSAFE_COUPON_CHARS = /%|\{[^{}]*\}/
const couponSignature = (payload: string, nonce: string) => {
const digest = crypto.createHmac('sha256', couponSigningKey).update(payload + nonce).digest('hex')
return nonce + digest.substring(0, COUPON_SIGNATURE_LENGTH - 1)
}
export const generateCoupon = (discount: number, date = new Date()) => {
const payload = utils.toMMMYY(date) + '-' + discount
let coupon = ''
for (const nonce of COUPON_NONCES) {
coupon = z85.encode(payload + '-' + couponSignature(payload, nonce))
if (!UNSAFE_COUPON_CHARS.test(coupon)) {
break
}
}
return coupon
}
export const discountFromCoupon = (coupon?: string) => {
if (!coupon) {
return undefined
}
const decoded = z85.decode(coupon)
if (decoded && (hasValidFormat(decoded.toString()) != null)) {
const [validity, discount, signature] = decoded.toString().split('-')
const expected = couponSignature(validity + '-' + discount, signature.charAt(0))
if (signature.length !== expected.length || !crypto.timingSafeEqual(Buffer.from(signature), Buffer.from(expected))) {
return undefined
}
if (utils.toMMMYY(new Date()) === validity) {
return parseInt(discount)
}
}
}
function hasValidFormat (coupon: string) {
return coupon.match(/^(JAN|FEB|MAR|APR|MAY|JUN|JUL|AUG|SEP|OCT|NOV|DEC)[0-9]{2}-[0-9]{2}-[0-9a-f]+$/)
}
// vuln-code-snippet start redirectCryptoCurrencyChallenge redirectChallenge
export const redirectAllowlist = new Set([
'https://github.com/juice-shop/juice-shop',
'https://blockchain.info/address/1AbKfgvw9psQ41NbLi8kufDQTezwG8DRZm', // vuln-code-snippet vuln-line redirectCryptoCurrencyChallenge
'https://explorer.dash.org/address/Xr556RzuwX6hg5EGpkybbv5RanJoZN17kW', // vuln-code-snippet vuln-line redirectCryptoCurrencyChallenge
'https://etherscan.io/address/0x0f933ab9fcaaa782d0279c300d73750e1311eae6', // vuln-code-snippet vuln-line redirectCryptoCurrencyChallenge
'http://shop.spreadshirt.com/juiceshop',
'http://shop.spreadshirt.de/juiceshop',
'https://www.stickeryou.com/products/owasp-juice-shop/794',
'http://leanpub.com/juice-shop'
])
export const isRedirectAllowed = (url: string) => {
let allowed = false
for (const allowedUrl of redirectAllowlist) {
allowed = allowed || url.includes(allowedUrl) // vuln-code-snippet vuln-line redirectChallenge
}
return allowed
}
// vuln-code-snippet end redirectCryptoCurrencyChallenge redirectChallenge
export const roles = {
customer: 'customer',
deluxe: 'deluxe',
accounting: 'accounting',
admin: 'admin'
}
export const deluxeToken = (email: string) => {
const hmac = crypto.createHmac('sha256', privateKey)
return hmac.update(email + roles.deluxe).digest('hex')
}
export const isAccounting = () => {
return (req: Request, res: Response, next: NextFunction) => {
const decodedToken = verify(utils.jwtFrom(req)) && decode(utils.jwtFrom(req))
if (decodedToken?.data?.role === roles.accounting) {
next()
} else {
res.status(403).json({ error: 'Malicious activity detected' })
}
}
}
export const isDeluxe = (req: Request) => {
const decodedToken = verify(utils.jwtFrom(req)) && decode(utils.jwtFrom(req))
return decodedToken?.data?.role === roles.deluxe && decodedToken?.data?.deluxeToken && decodedToken?.data?.deluxeToken === deluxeToken(decodedToken?.data?.email)
}
export const isCustomer = (req: Request) => {
const decodedToken = verify(utils.jwtFrom(req)) && decode(utils.jwtFrom(req))
return decodedToken?.data?.role === roles.customer
}
export const appendUserId = () => {
return (req: Request, res: Response, next: NextFunction) => {
try {
req.body.UserId = authenticatedUsers.tokenMap[utils.jwtFrom(req)].data.id
next()
} catch (error: unknown) {
res.status(401).json({ status: 'error', message: utils.getErrorMessage(error) })
}
}
}
export const updateAuthenticatedUsers = () => (req: Request, res: Response, next: NextFunction) => {
const token = req.cookies.token || utils.jwtFrom(req)
if (token) {
jwt.verify(token, publicKey, (err: Error | null, decoded: any) => {
if (err === null) {
if (authenticatedUsers.get(token) === undefined) {
authenticatedUsers.put(token, decoded)
res.cookie('token', token)
}
}
})
}
next()
}