-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Werewolf the Apocalypse 5 #116
Conversation
const auspices = await Auspices.findAll(); | ||
res.json(auspices); | ||
} catch (err) { | ||
res.status(404).send(err); |
Check warning
Code scanning / CodeQL
Information exposure through a stack trace Medium
stack trace information
const renown_types = await RenownTypes.findAll(); | ||
res.json(renown_types); | ||
} catch (err) { | ||
res.status(404).send(err); |
Check warning
Code scanning / CodeQL
Information exposure through a stack trace Medium
stack trace information
}); | ||
res.json(native_gifts); | ||
} catch (err) { | ||
res.status(404).send(err); |
Check warning
Code scanning / CodeQL
Information exposure through a stack trace Medium
stack trace information
}); | ||
res.json(gifts); | ||
} catch (err) { | ||
res.status(404).send(err); |
Check warning
Code scanning / CodeQL
Information exposure through a stack trace Medium
stack trace information
const garou = await Garou.findByPk(req.params.id); | ||
res.json(garou); | ||
} catch (err) { | ||
res.status(404).send(err); |
Check warning
Code scanning / CodeQL
Information exposure through a stack trace Medium
stack trace information
const rites = await Rites.findAll(); | ||
res.json(rites); | ||
} catch (err) { | ||
res.status(404).send(err); |
Check warning
Code scanning / CodeQL
Information exposure through a stack trace Medium
stack trace information
garou.destroy(); | ||
res.status(200).send("Deletion successful"); | ||
} catch (err) { | ||
res.status(404).send(err); |
Check warning
Code scanning / CodeQL
Exception text reinterpreted as HTML Medium
Exception text
Exception text
Exception text
const garou = await Garou.findByPk(req.params.id); | ||
res.json(garou); | ||
} catch (err) { | ||
res.status(404).send(err); |
Check warning
Code scanning / CodeQL
Information exposure through a stack trace Medium
stack trace information
const garou = await Garou.findByPk(req.params.id); | ||
res.json(garou); | ||
} catch (err) { | ||
res.status(404).send(err); |
Check warning
Code scanning / CodeQL
Exception text reinterpreted as HTML Medium
Exception text
|
||
res.status(200).send(results); | ||
} catch (err) { | ||
res.status(404).send(err); |
Check warning
Code scanning / CodeQL
Exception text reinterpreted as HTML Medium
Exception text
|
||
res.status(200).send(results); | ||
} catch (err) { | ||
res.status(404).send(err); |
Check warning
Code scanning / CodeQL
Information exposure through a stack trace Medium
stack trace information
|
||
res.status(200).send("Garou updated!"); | ||
} catch (err) { | ||
res.status(404).send(err); |
Check warning
Code scanning / CodeQL
Information exposure through a stack trace Medium
stack trace information
|
||
res.status(200).send("Garou updated!"); | ||
} catch (err) { | ||
res.status(404).send(err); |
Check warning
Code scanning / CodeQL
Exception text reinterpreted as HTML Medium
Exception text
Exception text
Exception text
|
||
res.status(200).json(newGarou.id); | ||
} catch (err) { | ||
res.status(403).send(err); |
Check warning
Code scanning / CodeQL
Information exposure through a stack trace Medium
stack trace information
|
||
res.status(200).json(newGarou.id); | ||
} catch (err) { | ||
res.status(403).send(err); |
Check warning
Code scanning / CodeQL
Exception text reinterpreted as HTML Medium
No description provided.