Skip to main content

Ice Network KYC Step #3 quiz answers

Ice Network KYC Step #3 quiz answers Ques 1: What strategies does the ice project employee to showcase the value and trust were the less of its digital currency in order to Garner broader adoption? Ques 1: How does the eyes project aim to demonstrate the value and reliability of its digital coin to gain wider acceptance? Ans : by building trust with owners and users. Ques 2: what is the primary role of the ecosystem growth and innovation pool fund within the ice network? Ans : to foster Innovation and expand the ecosystem. Ques 3: what kind of bonuses do you receive for Tier 1 friend referred by you and Tier 2 friends referred by your Tier 1 friends in the ice project? Ans : 25% for Tier 1 and 5% for Tier 2 Ques 4: what details are available on the team screen within the ice project app?? Ans : the current check in activity of your referrals. Ques 5: what is the fate of coins owned by users who become inactive within the ice project? Ans : They are gradually lost through progressive s...

THE HTTP PROTOCOL - Easily Explained



THE HTTP PROTOCOL

>  The hypertext transfer protocol (HTTP) is the core communications protocol used to access the World Wide Web and is used by all of today’s web applications. 

>  It is a simple protocol that was originally developed for retrieving static text-based resources, and has since been extended and leveraged in various ways to enable it to support the complex distributed applications that are now

commonplace.


> HTTP uses a message-based model in which a client sends a request message, and the server returns a response message.

>  The protocol is essentially connectionless: although HTTP uses the stateful TCP protocol as its transport mechanism, each exchange of request and response is an autonomous transaction, and may use a different TCP connection.


HTTP comprised of HTTP Request and HTTP request


 HTTP REQUESTS


> All HTTP messages (requests and responses) consist of one or more headers, each on a separate line, followed by a mandatory blank line, followed by an

optional message body. A typical HTTP request is as follows:


GET /books/search.asp?q=JettblazeBlog HTTP/1.1

Accept: image/gif, image/xxbitmap, image/jpeg, image/pjpeg, 

application/xshockwaveflash, application/vnd.msexcel, 

application/vnd.mspowerpoint, application/msword, /

Referer: http://JettblazeBlog.com/books/default.asp

Accept-Language: en-gb,en-us;q=0.5

Accept-Encoding: gzip, deflate

User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1)

Host: JettblazeBlog.com

Cookie: lang=en; JSESSIONID=0000tI8rk7joMx44S2Uu85nSWc_:vsnlc503


> The first line of every HTTP request consists of three items, separated by

spaces:

> A verb indicating the HTTP method. The most commonly used method

is GET, whose function is to retrieve a resource from the web server. GET requests do not have a message body, so there is no further data follow ing the blank line after the message headers.

> The requested URL. The URL functions as a name for the resource being requested, together with an optional query string containing parameters that the client is passing to that resource. The query string is indicated by the ? character in the URL, and in the example there is a single parameter with the name q and the value hackerzh0me.

> The HTTP version being used. The only HTTP versions in common use on the Internet are 1.0 and 1.1, and most browsers use version 1.1 by

default (even though we have http version 2 nd 3). There are a few differences between the specifications of these two versions; however, the only difference you are likely to encounter when attacking web applications is that in version 1.1 the Host request header is mandatory.


Some other points of interest in the example request are:

> The Referer header is used to indicate the URL from which the request originated (for example, because the user clicked a link on that page).

Note that this header was misspelled in the original HTTP specification, and the misspelled version has been retained ever since.

🔹 The User-Agent header is used to provide information about the browser or other client software that generated the request. Note that

the Mozilla prefix is included by most browsers for historical reasons —

this was the User-Agent string used by the originally dominant Net -scape browser, and other browsers wished to assert to web sites that they were compatible with this standard. As with many quirks from

computing history, it has become so established that it is still retained, even on the current version of Internet Explorer, which made the

request shown in the example.

🔹 The Host header is used to specify the hostname that appeared in the full URL being accessed. This is necessary when multiple web sites are

hosted on the same server, because the URL sent in the first line of the request does not normally contain a hostname. 

🔹 The Cookie header is used to submit additional parameters that the server has issued to the client

➖➖➖➖➖➖➖➖➖➖➖➖➖➖

Keep supporting us ❤️➖@www.jettblaze.blogspot.com

➖➖➖➖➖➖➖➖➖➖➖➖➖➖

❇️ The HTTP Protocol

➖➖➖➖➖➖➖➖➖➖➖➖


🔹 The hypertext transfer protocol (HTTP) is the core communications protocol used to access the World Wide Web and is used by all of today’s web applications. 

🔹 It is a simple protocol that was originally developed for retrieving static text-based resources, and has since been extended and leveraged in various ways to enable it to support the complex distributed applications that are now

commonplace.


🔹 HTTP uses a message-based model in which a client sends a request message, and the server returns a response message.

🔹 The protocol is essentially connectionless: although HTTP uses the stateful TCP protocol as its transport mechanism, each exchange of request and response is an autonomous transaction, and may use a different TCP connection.


HTTP comprised of HTTP Request and HTTP request


❇️ HTTP Requests


🔹 All HTTP messages (requests and responses) consist of one or more headers, each on a separate line, followed by a mandatory blank line, followed by an

optional message body. A typical HTTP request is as follows:


GET /books/search.asp?q=JettblazeBlog HTTP/1.1

Accept: image/gif, image/xxbitmap, image/jpeg, image/pjpeg, 

application/xshockwaveflash, application/vnd.msexcel, 

application/vnd.mspowerpoint, application/msword, /

Referer: http://JettblazeBlog.com/books/default.asp

Accept-Language: en-gb,en-us;q=0.5

Accept-Encoding: gzip, deflate

User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1)

Host: JettblazeBlog.com

Cookie: lang=en; JSESSIONID=0000tI8rk7joMx44S2Uu85nSWc_:vsnlc503


💠 The first line of every HTTP request consists of three items, separated by

spaces:

🔹 A verb indicating the HTTP method. The most commonly used method

is GET, whose function is to retrieve a resource from the web server. GET requests do not have a message body, so there is no further data follow ing the blank line after the message headers.

🔹 The requested URL. The URL functions as a name for the resource being requested, together with an optional query string containing parameters that the client is passing to that resource. The query string is indicated by the ? character in the URL, and in the example there is a single parameter with the name q and the value hackerzh0me.

🔹 The HTTP version being used. The only HTTP versions in common use on the Internet are 1.0 and 1.1, and most browsers use version 1.1 by

default (even though we have http version 2 nd 3). There are a few differences between the specifications of these two versions; however, the only difference you are likely to encounter when attacking web applications is that in version 1.1 the Host request header is mandatory.


Some other points of interest in the example request are:

🔹 The Referer header is used to indicate the URL from which the request originated (for example, because the user clicked a link on that page).

Note that this header was misspelled in the original HTTP specification, and the misspelled version has been retained ever since.

🔹 The User-Agent header is used to provide information about the browser or other client software that generated the request. Note that

the Mozilla prefix is included by most browsers for historical reasons —

this was the User-Agent string used by the originally dominant Net -scape browser, and other browsers wished to assert to web sites that they were compatible with this standard. As with many quirks from

computing history, it has become so established that it is still retained, even on the current version of Internet Explorer, which made the

request shown in the example.

🔹 The Host header is used to specify the hostname that appeared in the full URL being accessed. This is necessary when multiple web sites are

hosted on the same server, because the URL sent in the first line of the request does not normally contain a hostname. 

🔹 The Cookie header is used to submit additional parameters that the server has issued to the client


Thank you for being here and as always.

Any question, Business Adverts or enquiries
Jettblaze@gmail.com

#WithGodWeMove



➖➖➖➖➖➖➖➖➖➖➖➖➖➖

Keep supporting us ❤️➖@www.jettblaze.blogspot.com➖

Comments

Popular posts from this blog

How to Use the Enhanced Tracking Protection on Mozilla Firefox and Enable It. (2022 Approved 100%).

 How to Use the Enhanced Tracking Protection and Enable It. > The most recent version of the Firefox browser has the Enhanced Tracking Protection function enabled. ----- Standard protection is used by default, but you can change it to Strict for more robust protection. Here's how to go about it. Step 1: Open the Firefox web browser on your computer. Step 2: Next, select the hamburger menu (three horizontal lines) in the top-right corner of the screen. Step 3: Select Settings from the menu of choices. Step 4: Click the Privacy & Security tab on the left side of the Settings screen. Step 5: The Enhanced Tracking Protection settings are located on the right. Selecting the Strict option will provide you stronger protection. Step 6: Select Custom and select the trackers and scripts you wish to ban if you want to manually decide which ones to block. And It's a Wrap!!  I'm done now! You're done now. This is how the Firefox browser's Enhanced Tracking prevention feat...

👇👇👇 31 Free Fully Paid Courses Full links 👇👇👇

👇👇👇     31 Paid Courses Full links   👇👇👇   ‍ 🔰Hadoop Fundamentals🔰 Drive Folder 🔰Cybersecurity Collection🔰 Drive Folder 🔰Machine Learning for Apps🔰 Drive Folder 🔰Advanced React and Redux🔰 Drive Folder 🔰Web Developer Nanodegree🔰 Drive Folder 🔰Computer Vision Nanodegree🔰 Drive Folder 🔰Millionaire DJ FL Studio 12 - Pro Music Production Course🔰 Drive Folder 🔰Pentester Academy - x86 Assembly Language and Shellcoding on Linux🔰 Drive Folder 🔰Kali linux - Complete Training Program from Scratch course🔰 Drive Folder 🔰Complete Machine Learning and Data Science Zero to Mastery🔰 Drive Folder 🔰Python Ethical Hacking  Build tools for ethical hacking🔰 Drive Folder 🔰Deep Learning With TensorFlow Videos🔰 Drive Folder 🔰Bug Bounty Hunting Guide to an Advanced Earning Method🔰 Drive Folder 🔰Build Responsive Real World Websites with HTML5 and CSS3🔰 Drive Folder 🔰Deep Reinforcement Learning Nanodegree v1.0.0🔰 Drive Folder 🔰The Complete ASP...

How to install Social Fish Phishing Tool in termux

How to install Social Fish Phishing Tool / updated version in termux Social Fish Tool in Termux installation What's Up Guys, Alright, let's go into the installation steps Social Fish v1.6 in Termux.  UndeadSec   created the  SocialFish  tool. But a new version is made by  xHak9x .  This is the One of the best hacking tools i have used by far. It has alot of amazing templates,Eazy and quick  Guide to install Social Fish apt update apt upgrade pkg install git git clone https://github.com/xHak9x/SocialPhish cd SocialPhish chmod 777 socialphish.sh bash socialphish.sh  This tool has a total of 33 phishing templates. This tool almost has all social media platform templates (phishing pages). You know phishing is the best way to hack usernames and passwords.

About Me

My photo
JettBlaze
Web Designer & Developer | Software Developer | Tech Blogger | WordPress Expert | Graphic Designer