Does anyone NOT have a group?
What happened in the lecture - pls help me <3
All of these have very confusing flow diagrams… but try to understand them if you can
Heres an SSO example: https://easywiki.quoccabank.com/
You need to bruteforce this week: (seclists):
Whats the problem here?
Anyone have an example of a secret?
All shapes and sizes!
git add --all && git commit -m "Adding my .env file because fun" && git push
.gitignore
your .env
file. Everytime.
If you accidentally PUSH secrets… things get hard. Look into squashing commits. Or you just have to delete the whole repository.
Storing Secrets in places like
Honestly, just find out if what you are using has any SECURE secrets management and use that.
HTTP Strict Transport Security
Not much else to say… use https.
Content Security Policy
Helps mitigate XSS and injection attacks by specifying which locations resources can be loaded from
Content-Security-Policy: default-src ‘self’; img-src ‘self’ cdn.example.com;`
default-src
-> restricts what URLs resources can be fetched from the document.
Including:
self
means the same origin, or same domain and scheme.
img-src
directive overrides the default-src
directive and provide a policy specific to loading images.
automating requests in python