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 restart a computer (Window, Linux & Mac )

How to restart a computer๐Ÿ’ป๐Ÿ–ฅ Today, Computers have become the in-thing in different work environments. This is caused by the dire need for work automation,as it would be put easily,as for computers to make work Easier  STEP 1:  Use the Start button on the screen. This is the most common way to restart or shut down a Windows PC. The Start button allows you to restart your entire computer, thereby closing all open programs, or to switch off and restart your computer. All of the aforementioned actions will be taken when you choose to shut down rather than restart. Here's how to carry out both. 1. In the lower-left corner of your screen, click the Start button. The Start menu can also be accessed by pressing the Windows key on your keyboard. 2. Select the icon for power. 3. When you press the power button, you can choose to shut down, restart, or sleep your computer. STEP 2:  Use Ctrl, Alt, and Delete The only tool needed for this technique is a keyboard. If your computer's ...

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.

Differences between Dahua cctv cameras and Hikvision Cctv Cameras.

When it comes to CCTV cameras, it can be overwhelming trying to decide which brand to choose. Two popular options are Aihua and HK-Vision. While both brands offer high-quality CCTV cameras, there are some key differences between them. First, let's take a look at dahua CCTV cameras. dahua is a Chinese company that has been in the CCTV industry for over 20 years. They offer a wide range of CCTV cameras, including bullet cameras, dome cameras, and PTZ cameras. One of the standout features of dahua CCTV cameras is their advanced image processing technology, which provides clear and detailed footage. They also offer a variety of resolution options, ranging from 1080P to 4K, allowing you to choose the level of detail that best fits your needs. Now, let's move on to HK-Vision CCTV cameras. HK-Vision is another Chinese company that has been in the CCTV industry for over a decade. They offer a range of CCTV cameras, including dome cameras, bullet cameras, and PTZ cameras. One of the key...

About Me

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