Summary
The key takeaways from this session are:
- HTTP cookies are used to make the protocol stateful.
You can pass them with
curlby using the-bparameter - Sessions are cookies used to identify a client.
Both
curland Python can account for sessions:curldoes so by saving and loading them from a cookie file with the-cand-cparameters, respectively- Python uses a
Sessionobject that stores cookies internally
- In path traversal attacks hackers can access files they shouldn't be allowed to by specifying the path to them
- A very useful tool for testing the existence of additional files is
dirb.
- A very useful tool for testing the existence of additional files is
- One of the most widely used repositories of lists of common names / passwords / anything is SecLists. Use it any time.