HTTP


Intro to http and https

HTTP stands for Hypertext Transfer Protocol. It offers set of rules and standards which govern how any information can be transmitted on the World Wide Web. It provides standard rules for web browsers & servers to communicate. It is an application layer network protocol that is built on top of TCP. It uses ...

Read more . . .

Symmetric vs Asymmetric Encryption

Encryption means decoding or locking the data to protect it from unauthorized access. It makes the plaintext data an unreadable form that doesn’t make sense to the reader. The encrypted data looks like a string of random alphabets and digits. Complex mathematical algorithms and digital keys are used to ...

Read more . . .

How to extract Cookie from a site  with Puppeteer by logging in?

Puppeteer is a Node library which provides a high-level API to control Chrome or Chromium over the DevTools Protocol. Puppeteer runs headless by default, but can be configured to run full (non-headless) Chrome or Chromium. Learn more about puppeteer

Read more . . .