Databrokers Cybersecurity Shit post pinned «https://t.me/anticouncil»
Channel name was changed to «Databrokers Cybersecurity Shit post»
Our first lesson for web exploitation, will be web fundamentals
🕊2
L1 • What is HTTP/HTTPS (First thing you should learn)
Http = Hypertext Transfer protocol it is basically the protocol browsers use to communicate with web servers.
Https = Http but with TLS encryption it basically encrypts the connection between your browser and the server ensuring more security.
• Why HTTPS is more secure than HTTP
Http: isn't good security because traffic can be read or modified
Https: is good due to encryption preventing that and the fact it lets the server prove itself using TLS certificate.
Http = Hypertext Transfer protocol it is basically the protocol browsers use to communicate with web servers.
Https = Http but with TLS encryption it basically encrypts the connection between your browser and the server ensuring more security.
• Why HTTPS is more secure than HTTP
Http: isn't good security because traffic can be read or modified
Https: is good due to encryption preventing that and the fact it lets the server prove itself using TLS certificate.
❤1
Obviously I can't just immediately teach you guys how to exploit a website
You must first know how a website works before you can exploit one.
You must first know how a website works before you can exploit one.
❤1
L2 • HTTP Requests vs Responses
Request = What your browser sends to a web server when it wants something, like opening a webpage or logging into an account.
Response = What the server sends back after receiving the request.
• Example
Request:
"GET /login HTTP/1.1"
This means the browser is asking the server for the "/login" page using the GET method.
Response:
"HTTP/1.1 200 OK"
This means the server successfully received the request and is sending the requested page back.
Basically, request = what you send and response = what you get back.
Request = What your browser sends to a web server when it wants something, like opening a webpage or logging into an account.
Response = What the server sends back after receiving the request.
• Example
Request:
"GET /login HTTP/1.1"
This means the browser is asking the server for the "/login" page using the GET method.
Response:
"HTTP/1.1 200 OK"
This means the server successfully received the request and is sending the requested page back.
Basically, request = what you send and response = what you get back.
❤2
Databrokers Cybersecurity Shit post pinned «Obviously I can't just immediately teach you guys how to exploit a website You must first know how a website works before you can exploit one.»