<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.expertiza.ncsu.edu/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Rmuddur</id>
	<title>Expertiza_Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.expertiza.ncsu.edu/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Rmuddur"/>
	<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=Special:Contributions/Rmuddur"/>
	<updated>2026-05-16T20:33:44Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.41.0</generator>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=User:Rjain9&amp;diff=105853</id>
		<title>User:Rjain9</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=User:Rjain9&amp;diff=105853"/>
		<updated>2016-11-15T03:30:28Z</updated>

		<summary type="html">&lt;p&gt;Rmuddur: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;font size=&amp;quot;5&amp;quot;&amp;gt;M1654: Improve network security features for Servo (cookies and strict referrer policies)&amp;lt;/font&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=='''Introduction'''==&lt;br /&gt;
=== Servo ===&lt;br /&gt;
[https://servo.org/ Servo] is a modern high-performance browser engine designed for both application and embedded use which is written in Rust. It is created by Mozilla Research and is being built by a global community of individual contributors and companies such as Mozilla and Samsung.&lt;br /&gt;
&lt;br /&gt;
=== HTTP Cookie ===&lt;br /&gt;
An [https://en.wikipedia.org/wiki/HTTP_cookie HTTP Cookie] is a small part of data which is sent by the website to the user's computer and is stored by the user's web browser while the user is browsing. A cookie is mainly used for recording a user's browsing activity or to remember stateful information for the websites.&lt;br /&gt;
&lt;br /&gt;
=== Rust ===&lt;br /&gt;
[https://doc.rust-lang.org/book/ Rust] is a systems programming language developed and maintained by Mozilla. It is used as a multi-paradigm, compiled programming language for creating highly safe systems. Rust can be used for a variety of jobs including and not restricted to embedding into other languages, creating modular and optimized programs adhering to space-time constraints and can also be used to develop low-level code for writing device drivers.&lt;br /&gt;
&lt;br /&gt;
=='''Project Description'''==&lt;br /&gt;
The goal of this project is to implement newer, more secure standards, and complete missing pieces of existing ones, in order to increase the security available to users of the Servo browser. The project entails adding improved network security features for Servo engine by implementing a maximum number of cookies per host, and restricting insecure cookies from overwriting secure ones. The initial steps for this project have been completed as part of the OSS Project.&lt;br /&gt;
&lt;br /&gt;
=='''Tasks'''==&lt;br /&gt;
&lt;br /&gt;
1) Compile Servo and ensure that it runs on tests/html/about-mozilla.html&lt;br /&gt;
&lt;br /&gt;
2) Redesign CookieStorage to store cookies in a HashMap where the key is the base domain of the cookie's source (ie. &amp;quot;www.google.co.uk&amp;quot; becomes &amp;quot;google.co.uk&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
3) Store a max_per_host limit in CookieStorage that is checked when adding new cookies; evict the oldest cookie if the limit is reached (add tests to tests/unit/net/cookie.rs)&lt;br /&gt;
&lt;br /&gt;
4) Implement the [https://datatracker.ietf.org/doc/draft-ietf-httpbis-cookie-alone/?include_text=1 Leave Secure Cookies Alone] specification - ensure that newly created insecure cookies cannot override existing secure cookies (add tests to tests/unit/net/cookie.rs)&lt;br /&gt;
&lt;br /&gt;
The current implementation of CookieStorage utilizes vector of Cookies. No restrictions are placed on the number of cookies that can be added per host.The proposed change will refactor CookieStorage to use HashMap with Base host as key. There would a limit on the maximum number of cookies per host. Changes will also include, implementation of '''Deprecate modification of 'secure' cookies from non-secure origins''' which update RFC6265 by removing the ability for a non-secure origin to set cookies with a 'secure' flag, and to overwrite cookies whose 'secure' flag is set.&lt;br /&gt;
&lt;br /&gt;
Since this contains refactoring, all existing unit testcases need to pass. Additionally, new unit test cases will be written for validating implementation of aforementioned specification.&lt;br /&gt;
&lt;br /&gt;
=='''Approach'''==&lt;br /&gt;
First step would be to update the vector to HasMap by maintaining the wrapper functions used on the CookieStporage class. Upon completion of the task, all the unit test cases should pass. This would provide an additional checkpoint to verify the integrity of the new CookieStorage class's behavior.&lt;br /&gt;
&lt;br /&gt;
Subsequent steps would include refactoring of the code so that the existing functionality is retained with added feature and advantages provided by HashMaps like faster search.&lt;br /&gt;
&lt;br /&gt;
RFC implementation would be possible after the code refactor of CookieStorage class. Most of the RFC related changes are related to maintaining the content of the map. So this step would be penultimate step of the project.&lt;br /&gt;
&lt;br /&gt;
Team would follow Test Driven Development, so unit tests would be written first wherever required and production code would be written to make the testcases pass.&lt;br /&gt;
&lt;br /&gt;
We would follow Pair Programming to minimize errors and maximize the productivity. We are going to adhere to industry set standards which provide better QoS and stable product.&lt;br /&gt;
&lt;br /&gt;
=='''Continuous Integration'''==&lt;br /&gt;
Continuous Integration, being a key element in Test Driven Development. Our team will setup our own Travis server to ensure code sanity.&lt;br /&gt;
==Test Plan==&lt;br /&gt;
There is no manual testing in this project. Existing unit tests will ensure that refactoring has not broken any functionality. New unit test cases would be written for validating &amp;quot;Leave Secure Cookies Alone&amp;quot; specification.&lt;br /&gt;
&lt;br /&gt;
1) Unit test for checking &amp;quot;secure-only-flag&amp;quot; is set.&lt;br /&gt;
2) Unit test for &amp;quot;domain&amp;quot; domain-matches the &amp;quot;domain&amp;quot; of the newly created cookie, or vice-versa.&lt;br /&gt;
3) Unit test to validate The &amp;quot;path&amp;quot; of the newly created cookie path-matches the &amp;quot;path&amp;quot; of the existing cookie.&lt;br /&gt;
&lt;br /&gt;
Please note that since lot of unit tests are already in place. We are not required to write many new test cases. After refactoring, if CI passes without any dip in code coverage then we can say refactoring is successful.&lt;br /&gt;
=='''Files to be modified'''==&lt;br /&gt;
* /servo/components/cookie_storage.rs&lt;br /&gt;
* /servo/components/net/cookie.rs&lt;br /&gt;
* /servo/test/unit/cookie.rs&lt;br /&gt;
* /servo/components/servo/cargo.toml&lt;br /&gt;
* /servo/components/servo/cargo.lock&lt;br /&gt;
&lt;br /&gt;
=='''Key People'''==&lt;br /&gt;
=== Developers ===&lt;br /&gt;
* Guru Darshan &lt;br /&gt;
* Raghavendra Nayak&lt;br /&gt;
* Rishi Jain&lt;br /&gt;
* Tsung-Ying Chuang&lt;br /&gt;
=== Mentor ===&lt;br /&gt;
* Ed Gehringer&lt;/div&gt;</summary>
		<author><name>Rmuddur</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=User:Rjain9&amp;diff=105850</id>
		<title>User:Rjain9</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=User:Rjain9&amp;diff=105850"/>
		<updated>2016-11-15T03:26:33Z</updated>

		<summary type="html">&lt;p&gt;Rmuddur: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;font size=&amp;quot;5&amp;quot;&amp;gt;M1654: Improve network security features for Servo (cookies and strict referrer policies)&amp;lt;/font&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=='''Introduction'''==&lt;br /&gt;
=== Servo ===&lt;br /&gt;
[https://servo.org/ Servo] is a modern high-performance browser engine designed for both application and embedded use which is written in Rust. It is created by Mozilla Research and is being built by a global community of individual contributors and companies such as Mozilla and Samsung.&lt;br /&gt;
&lt;br /&gt;
=== HTTP Cookie ===&lt;br /&gt;
An [https://en.wikipedia.org/wiki/HTTP_cookie HTTP Cookie] is a small part of data which is sent by the website to the user's computer and is stored by the user's web browser while the user is browsing. A cookie is mainly used for recording a user's browsing activity or to remember stateful information for the websites.&lt;br /&gt;
&lt;br /&gt;
=== Rust ===&lt;br /&gt;
[https://doc.rust-lang.org/book/ Rust] is a systems programming language developed and maintained by Mozilla. It is used as a multi-paradigm, compiled programming language for creating highly safe systems. Rust can be used for a variety of jobs including and not restricted to embedding into other languages, creating modular and optimized programs adhering to space-time constraints and can also be used to develop low-level code for writing device drivers.&lt;br /&gt;
&lt;br /&gt;
=='''Project Description'''==&lt;br /&gt;
The goal of this project is to implement newer, more secure standards, and complete missing pieces of existing ones, in order to increase the security available to users of the Servo browser. The project entails adding improved network security features for Servo engine by implementing a maximum number of cookies per host, and restricting insecure cookies from overwriting secure ones. The initial steps for this project have been completed as part of the OSS Project.&lt;br /&gt;
&lt;br /&gt;
=='''Tasks'''==&lt;br /&gt;
&lt;br /&gt;
1) Compile Servo and ensure that it runs on tests/html/about-mozilla.html&lt;br /&gt;
&lt;br /&gt;
2) Redesign CookieStorage to store cookies in a HashMap where the key is the base domain of the cookie's source (ie. &amp;quot;www.google.co.uk&amp;quot; becomes &amp;quot;google.co.uk&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
3) Store a max_per_host limit in CookieStorage that is checked when adding new cookies; evict the oldest cookie if the limit is reached (add tests to tests/unit/net/cookie.rs)&lt;br /&gt;
&lt;br /&gt;
4) Implement the [https://datatracker.ietf.org/doc/draft-ietf-httpbis-cookie-alone/?include_text=1 Leave Secure Cookies Alone] specification - ensure that newly created insecure cookies cannot override existing secure cookies (add tests to tests/unit/net/cookie.rs)&lt;br /&gt;
&lt;br /&gt;
The current implementation of CookieStorage utilizes vector of Cookies. No restrictions are placed on the number of cookies that can be added per host.The proposed change will refactor CookieStorage to use HashMap with Base host as key. There would a limit on the maximum number of cookies per host. Changes will also include, implementation of '''Deprecate modification of 'secure' cookies from non-secure origins''' which update RFC6265 by removing the ability for a non-secure origin to set cookies with a 'secure' flag, and to overwrite cookies whose 'secure' flag is set.&lt;br /&gt;
&lt;br /&gt;
Since this contains refactoring, all existing unit testcases need to pass. Additionally, new unit test cases will be written for validating implementation of aforementioned specification.&lt;br /&gt;
&lt;br /&gt;
=='''Approach'''==&lt;br /&gt;
First step would be to update the vector to HasMap by maintaining the wrapper functions used on the CookieStporage class. Upon completion of the task, all the unit test cases should pass. This would provide an additional checkpoint to verify the integrity of the new CookieStorage class's behavior.&lt;br /&gt;
&lt;br /&gt;
Subsequent steps would include refactoring of the code so that the existing functionality is retained with added feature and advantages provided by HashMaps like faster search.&lt;br /&gt;
&lt;br /&gt;
RFC implementation would be possible after the code refactor of CookieStorage class. Most of the RFC related changes are related to maintaining the content of the map. So this step would be penultimate step of the project.&lt;br /&gt;
&lt;br /&gt;
Team would follow Test Driven Development, so unit tests would be written first wherever required and production code would be written to make the testcases pass.&lt;br /&gt;
&lt;br /&gt;
We would follow Pair Programming to minimize errors and maximize the productivity. We are going to adhere to industry set standards which provide better QoS and stable product.&lt;br /&gt;
&lt;br /&gt;
=='''Continuous Integration'''==&lt;br /&gt;
Continuous Integration, being a key element in Test Driven Development. Our team will setup our own Travis server to ensure code sanity.&lt;br /&gt;
==Test Plan==&lt;br /&gt;
There is no manual testing in this project. Existing unit tests will ensure that refactoring has not broken any functionality. New unit test cases would be written for validating &amp;quot;Leave Secure Cookies Alone&amp;quot; specification.&lt;br /&gt;
&lt;br /&gt;
1) Unit test for checking &amp;quot;secure-only-flag&amp;quot; is set.&lt;br /&gt;
2) Unit test for &amp;quot;domain&amp;quot; domain-matches the &amp;quot;domain&amp;quot; of the newly created cookie, or vice-versa.&lt;br /&gt;
3) Unit test to validate The &amp;quot;path&amp;quot; of the newly created cookie path-matches the &amp;quot;path&amp;quot; of the existing cookie.&lt;br /&gt;
&lt;br /&gt;
=='''Files to be modified'''==&lt;br /&gt;
* /servo/components/cookie_storage.rs&lt;br /&gt;
* /servo/components/net/cookie.rs&lt;br /&gt;
* /servo/test/unit/cookie.rs&lt;br /&gt;
* /servo/components/servo/cargo.toml&lt;br /&gt;
* /servo/components/servo/cargo.lock&lt;br /&gt;
&lt;br /&gt;
=='''Key People'''==&lt;br /&gt;
=== Developers ===&lt;br /&gt;
* Guru Darshan &lt;br /&gt;
* Raghavendra Nayak&lt;br /&gt;
* Rishi Jain&lt;br /&gt;
* Tsung-Ying Chuang&lt;br /&gt;
=== Mentor ===&lt;br /&gt;
* Ed Gehringer&lt;/div&gt;</summary>
		<author><name>Rmuddur</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=User:Rjain9&amp;diff=105848</id>
		<title>User:Rjain9</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=User:Rjain9&amp;diff=105848"/>
		<updated>2016-11-15T03:25:13Z</updated>

		<summary type="html">&lt;p&gt;Rmuddur: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;font size=&amp;quot;5&amp;quot;&amp;gt;M1654: Improve network security features for Servo (cookies and strict referrer policies)&amp;lt;/font&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=='''Introduction'''==&lt;br /&gt;
=== Servo ===&lt;br /&gt;
[https://servo.org/ Servo] is a modern high-performance browser engine designed for both application and embedded use which is written in Rust. It is created by Mozilla Research and is being built by a global community of individual contributors and companies such as Mozilla and Samsung.&lt;br /&gt;
&lt;br /&gt;
=== HTTP Cookie ===&lt;br /&gt;
An [https://en.wikipedia.org/wiki/HTTP_cookie HTTP Cookie] is a small part of data which is sent by the website to the user's computer and is stored by the user's web browser while the user is browsing. A cookie is mainly used for recording a user's browsing activity or to remember stateful information for the websites.&lt;br /&gt;
&lt;br /&gt;
=== Rust ===&lt;br /&gt;
[https://doc.rust-lang.org/book/ Rust] is a systems programming language developed and maintained by Mozilla. It is used as a multi-paradigm, compiled programming language for creating highly safe systems. Rust can be used for a variety of jobs including and not restricted to embedding into other languages, creating modular and optimized programs adhering to space-time constraints and can also be used to develop low-level code for writing device drivers.&lt;br /&gt;
&lt;br /&gt;
=='''Project Description'''==&lt;br /&gt;
The goal of this project is to implement newer, more secure standards, and complete missing pieces of existing ones, in order to increase the security available to users of the Servo browser. The project entails adding improved network security features for Servo engine by implementing a maximum number of cookies per host, and restricting insecure cookies from overwriting secure ones. The initial steps for this project have been completed as part of the OSS Project.&lt;br /&gt;
&lt;br /&gt;
=='''Tasks'''==&lt;br /&gt;
&lt;br /&gt;
1) Compile Servo and ensure that it runs on tests/html/about-mozilla.html&lt;br /&gt;
&lt;br /&gt;
2) Redesign CookieStorage to store cookies in a HashMap where the key is the base domain of the cookie's source (ie. &amp;quot;www.google.co.uk&amp;quot; becomes &amp;quot;google.co.uk&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
3) Store a max_per_host limit in CookieStorage that is checked when adding new cookies; evict the oldest cookie if the limit is reached (add tests to tests/unit/net/cookie.rs)&lt;br /&gt;
&lt;br /&gt;
4) Implement the [https://datatracker.ietf.org/doc/draft-ietf-httpbis-cookie-alone/?include_text=1 Leave Secure Cookies Alone] specification - ensure that newly created insecure cookies cannot override existing secure cookies (add tests to tests/unit/net/cookie.rs)&lt;br /&gt;
&lt;br /&gt;
The current implementation of CookieStorage utilizes vector of Cookies. No restrictions are placed on the number of cookies that can be added per host.The proposed change will refactor CookieStorage to use HashMap with Base host as key. There would a limit on the maximum number of cookies per host. Changes will also include, implementation of '''Deprecate modification of 'secure' cookies from non-secure origins''' which update RFC6265 by removing the ability for a non-secure origin to set cookies with a 'secure' flag, and to overwrite cookies whose 'secure' flag is set.&lt;br /&gt;
&lt;br /&gt;
Since this contains refactoring, all existing unit testcases need to pass. Additionally, new unit test cases will be written for validating implementation of aforementioned specification.&lt;br /&gt;
&lt;br /&gt;
=='''Approach'''==&lt;br /&gt;
First step would be to update the vector to HasMap by maintaining the wrapper functions used on the CookieStporage class. Upon completion of the task, all the unit test cases should pass. This would provide an additional checkpoint to verify the integrity of the new CookieStorage class's behavior.&lt;br /&gt;
&lt;br /&gt;
Subsequent steps would include refactoring of the code so that the existing functionality is retained with added feature and advantages provided by HashMaps like faster search.&lt;br /&gt;
&lt;br /&gt;
RFC implementation would be possible after the code refactor of CookieStorage class. Most of the RFC related changes are related to maintaining the content of the map. So this step would be penultimate step of the project.&lt;br /&gt;
&lt;br /&gt;
Team would follow Test Driven Development, so unit tests would be written first wherever required and production code would be written to make the testcases pass.&lt;br /&gt;
&lt;br /&gt;
We would follow Pair Programming to minimize errors and maximize the productivity. We are going to adhere to industry set standards which provide better QoS and stable product.&lt;br /&gt;
&lt;br /&gt;
=='''Continuous Integration'''==&lt;br /&gt;
Continuous Integration, being a key element in Test Driven Development. Our team will setup our own Travis server to ensure code sanity.&lt;br /&gt;
==Test Plan==&lt;br /&gt;
There is no manual testing in this project. Existing unit tests will ensure that refactoring has not broken any functionality. New unit test cases would be written for validating &amp;quot;Leave Secure Cookies Alone&amp;quot; specification.&lt;br /&gt;
&lt;br /&gt;
1) Unit test for checking &amp;quot;secure-only-flag&amp;quot; is set.&lt;br /&gt;
2) Unit test for &amp;quot;domain&amp;quot; domain-matches the &amp;quot;domain&amp;quot; of the newly created cookie, or vice-versa.&lt;br /&gt;
3) Unit test to validate The &amp;quot;path&amp;quot; of the newly created cookie path-matches the &amp;quot;path&amp;quot; of the existing cookie.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=='''Files to be modified'''==&lt;br /&gt;
* /servo/components/cookie_storage.rs&lt;br /&gt;
* /servo/components/net/cookie.rs&lt;br /&gt;
* /servo/test/unit/cookie.rs&lt;br /&gt;
* /servo/components/servo/cargo.toml&lt;br /&gt;
* /servo/components/servo/cargo.lock&lt;br /&gt;
&lt;br /&gt;
=='''Key People'''==&lt;br /&gt;
=== Developers ===&lt;br /&gt;
* Guru Darshan &lt;br /&gt;
* Raghavendra Nayak&lt;br /&gt;
* Rishi Jain&lt;br /&gt;
* Tsung-Ying Chuang&lt;br /&gt;
=== Mentor ===&lt;br /&gt;
* Ed Gehringer&lt;/div&gt;</summary>
		<author><name>Rmuddur</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=User:Rjain9&amp;diff=105846</id>
		<title>User:Rjain9</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=User:Rjain9&amp;diff=105846"/>
		<updated>2016-11-15T03:20:35Z</updated>

		<summary type="html">&lt;p&gt;Rmuddur: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;font size=&amp;quot;5&amp;quot;&amp;gt;M1654: Improve network security features for Servo (cookies and strict referrer policies)&amp;lt;/font&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
=='''Introduction'''==&lt;br /&gt;
=== Servo ===&lt;br /&gt;
[https://servo.org/ Servo] is a modern high-performance browser engine designed for both application and embedded use which is written in Rust. It is created by Mozilla Research and is being built by a global community of individual contributors and companies such as Mozilla and Samsung.&lt;br /&gt;
&lt;br /&gt;
=== HTTP Cookie ===&lt;br /&gt;
An [https://en.wikipedia.org/wiki/HTTP_cookie HTTP Cookie] is a small part of data which is sent by the website to the user's computer and is stored by the user's web browser while the user is browsing. A cookie is mainly used for recording a user's browsing activity or to remember stateful information for the websites.&lt;br /&gt;
&lt;br /&gt;
=== Rust ===&lt;br /&gt;
[https://doc.rust-lang.org/book/ Rust] is a systems programming language developed and maintained by Mozilla. It is used as a multi-paradigm, compiled programming language for creating highly safe systems. Rust can be used for a variety of jobs including and not restricted to embedding into other languages, creating modular and optimized programs adhering to space-time constraints and can also be used to develop low-level code for writing device drivers.&lt;br /&gt;
&lt;br /&gt;
=='''Project Description'''==&lt;br /&gt;
The goal of this project is to implement newer, more secure standards, and complete missing pieces of existing ones, in order to increase the security available to users of the Servo browser. The project entails adding improved network security features for Servo engine by implementing a maximum number of cookies per host, and restricting insecure cookies from overwriting secure ones. The initial steps for this project have been completed as part of the OSS Project.&lt;br /&gt;
&lt;br /&gt;
=='''Tasks'''==&lt;br /&gt;
&lt;br /&gt;
1) Compile Servo and ensure that it runs on tests/html/about-mozilla.html&lt;br /&gt;
&lt;br /&gt;
2) Redesign CookieStorage to store cookies in a HashMap where the key is the base domain of the cookie's source (ie. &amp;quot;www.google.co.uk&amp;quot; becomes &amp;quot;google.co.uk&amp;quot;)&lt;br /&gt;
&lt;br /&gt;
3) Store a max_per_host limit in CookieStorage that is checked when adding new cookies; evict the oldest cookie if the limit is reached (add tests to tests/unit/net/cookie.rs)&lt;br /&gt;
&lt;br /&gt;
4) Implement the [https://datatracker.ietf.org/doc/draft-ietf-httpbis-cookie-alone/?include_text=1 Leave Secure Cookies Alone] specification - ensure that newly created insecure cookies cannot override existing secure cookies (add tests to tests/unit/net/cookie.rs)&lt;br /&gt;
&lt;br /&gt;
The current implementation of CookieStorage utilizes vector of Cookies. No restrictions are placed on the number of cookies that can be added per host.The proposed change will refactor CookieStorage to use HashMap with Base host as key. There would a limit on the maximum number of cookies per host. Changes will also include, implementation of '''Deprecate modification of 'secure' cookies from non-secure origins''' which update RFC6265 by removing the ability for a non-secure origin to set cookies with a 'secure' flag, and to overwrite cookies whose 'secure' flag is set.&lt;br /&gt;
&lt;br /&gt;
Since this contains refactoring, all existing unit testcases need to pass. Additionally, new unit test cases will be written for validating implementation of aforementioned specification.&lt;br /&gt;
&lt;br /&gt;
=='''Approach'''==&lt;br /&gt;
First step would be to update the vector to HasMap by maintaining the wrapper functions used on the CookieStporage class. Upon completion of the task, all the unit test cases should pass. This would provide an additional checkpoint to verify the integrity of the new CookieStorage class's behavior.&lt;br /&gt;
&lt;br /&gt;
Subsequent steps would include refactoring of the code so that the existing functionality is retained with added feature and advantages provided by HashMaps like faster search.&lt;br /&gt;
&lt;br /&gt;
RFC implementation would be possible after the code refactor of CookieStorage class. Most of the RFC related changes are related to maintaining the content of the map. So this step would be penultimate step of the project.&lt;br /&gt;
&lt;br /&gt;
Team would follow Test Driven Development, so unit tests would be written first wherever required and production code would be written to make the testcases pass.&lt;br /&gt;
&lt;br /&gt;
We would follow Pair Programming to minimize errors and maximize the productivity. We are going to adhere to industry set standards which provide better QoS and stable product.&lt;br /&gt;
&lt;br /&gt;
=='''Continuous Integration'''==&lt;br /&gt;
Continuous Integration, being a key element in Test Driven Development. Our team will setup our own Travis server to ensure code sanity.&lt;br /&gt;
==Test Plan==&lt;br /&gt;
There is no manual testing in this project. Existing unit tests will ensure that refactoring has not broken any functionality. New unit test cases would be written for validating &amp;quot;Leave Secure Cookies Alone&amp;quot; specification.&lt;br /&gt;
&lt;br /&gt;
=='''Files to be modified'''==&lt;br /&gt;
* /servo/components/cookie_storage.rs&lt;br /&gt;
* /servo/components/net/cookie.rs&lt;br /&gt;
* /servo/test/unit/cookie.rs&lt;br /&gt;
* /servo/components/servo/cargo.toml&lt;br /&gt;
* /servo/components/servo/cargo.lock&lt;br /&gt;
&lt;br /&gt;
=='''Key People'''==&lt;br /&gt;
=== Developers ===&lt;br /&gt;
* Guru Darshan &lt;br /&gt;
* Raghavendra Nayak&lt;br /&gt;
* Rishi Jain&lt;br /&gt;
* Tsung-Ying Chuang&lt;br /&gt;
=== Mentor ===&lt;br /&gt;
* Ed Gehringer&lt;/div&gt;</summary>
		<author><name>Rmuddur</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2016&amp;diff=103374</id>
		<title>CSC/ECE 517 Fall 2016</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2016&amp;diff=103374"/>
		<updated>2016-10-29T00:02:19Z</updated>

		<summary type="html">&lt;p&gt;Rmuddur: /* Writing Assignments 2 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[http://www.example.com link title]==Calibration Assignment Submissions==&lt;br /&gt;
*[[Calibration Assignment Submission (Firebrick JS)]]&lt;br /&gt;
*[[Calibration Assignment Submission (Active Job)]]&lt;br /&gt;
==Writing Assignments 2==&lt;br /&gt;
*[[CSC/ECE 517 Fall 2016/E1666. Test team functionality]]&lt;br /&gt;
*[[CSC/ECE 517 Fall 2016/E1643. Refactor Suggestion controller]]&lt;br /&gt;
*[[CSC/ECE 517 Fall 2016/E1631. Refactoring Bidding Interface]]&lt;br /&gt;
*[[CSC/ECE 517 Fall 2016/E1674.Refactor leaderboard.rb and write unit tests]]&lt;br /&gt;
*[[CSC/ECE 517 Fall 2016/E1671. Unit Tests for participants.rb Hierarchy]]&lt;br /&gt;
*[[CSC/ECE 517 Fall 2016/E1668.Test e-mailing functionality]]&lt;br /&gt;
*[[CSC/ECE 517 Fall 2016/E1658. Refractor lottery_controller.rb and write integration tests]]&lt;br /&gt;
*[[CSC/ECE 517 Fall 2016/E1660. Review requirements and thresholds]]&lt;br /&gt;
*[[CSC/ECE 517 Fall 2016/E1650. Sort instructor views alphabetically by default]]&lt;br /&gt;
*[[CSC/ECE 517 Fall 2016/E1644. Refactor and test Teams Controller]]&lt;br /&gt;
*[[CSC/ECE 517 Fall 2016/E1659. Refactor on_the_fly_calc.rb]]&lt;br /&gt;
*[[CSC/ECE 517 Fall 2016/E1657. Introduce a Student View for instructors]]&lt;br /&gt;
*[[CSC/ECE 517 Fall 2016/E1653. Fix and improve rubric criteria]]&lt;br /&gt;
*[[CSC/ECE 517 Fall 2016/E1642. Refactor review_response_map.rb]]&lt;br /&gt;
*[[CSC/ECE_517_Fall_2016/E1664:_Feature_Test_Assignment_Creation]]&lt;br /&gt;
*[[CSC/ECE 517 Fall 2016/E1666. Test team functionality]]&lt;br /&gt;
*[[CSC/ECE_517_Fall_2016/E1654. Improve_date-picker_and_deadlines]]&lt;br /&gt;
*[[CSC/ECE_517_Fall_2016/E1652 Fix teammate advertisements and requests to join a team ]]&lt;br /&gt;
*[[CSC/ECE_517_Fall_2016/E1662. UI issues/fixes]]&lt;br /&gt;
*[[CSC/ECE_517_Fall_2016/E1673. Refactor question_type.rb]]&lt;br /&gt;
*[[CSC/ECE_517_Fall_2016/E1675. Timestamp for student file &amp;amp; hyperlink submissions]]&lt;br /&gt;
*[[CSC/ECE_517_Fall_2016/E1640. Refactor response.rb and response_helper.rb]]&lt;br /&gt;
*[[CSC/ECE 517 Fall 2016/E1634. Refactor and write unit test of due_date.rb and deadline_helper.rb]]&lt;br /&gt;
*[[CSC/ECE_517_Fall_2016/M1654._Improve_network_security_features]]&lt;/div&gt;</summary>
		<author><name>Rmuddur</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2016&amp;diff=103358</id>
		<title>CSC/ECE 517 Fall 2016</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2016&amp;diff=103358"/>
		<updated>2016-10-28T23:58:53Z</updated>

		<summary type="html">&lt;p&gt;Rmuddur: /* Writing Assignments 2 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[http://www.example.com link title]==Calibration Assignment Submissions==&lt;br /&gt;
*[[Calibration Assignment Submission (Firebrick JS)]]&lt;br /&gt;
*[[Calibration Assignment Submission (Active Job)]]&lt;br /&gt;
==Writing Assignments 2==&lt;br /&gt;
*[[CSC/ECE 517 Fall 2016/E1666. Test team functionality]]&lt;br /&gt;
*[[CSC/ECE 517 Fall 2016/E1643. Refactor Suggestion controller]]&lt;br /&gt;
*[[CSC/ECE 517 Fall 2016/E1631. Refactoring Bidding Interface]]&lt;br /&gt;
*[[CSC/ECE 517 Fall 2016/E1674.Refactor leaderboard.rb and write unit tests]]&lt;br /&gt;
*[[CSC/ECE 517 Fall 2016/E1671. Unit Tests for participants.rb Hierarchy]]&lt;br /&gt;
*[[CSC/ECE 517 Fall 2016/E1668.Test e-mailing functionality]]&lt;br /&gt;
*[[CSC/ECE 517 Fall 2016/E1658. Refractor lottery_controller.rb and write integration tests]]&lt;br /&gt;
*[[CSC/ECE 517 Fall 2016/E1660. Review requirements and thresholds]]&lt;br /&gt;
*[[CSC/ECE 517 Fall 2016/E1650. Sort instructor views alphabetically by default]]&lt;br /&gt;
*[[CSC/ECE 517 Fall 2016/E1644. Refactor and test Teams Controller]]&lt;br /&gt;
*[[CSC/ECE 517 Fall 2016/E1659. Refactor on_the_fly_calc.rb]]&lt;br /&gt;
*[[CSC/ECE 517 Fall 2016/E1657. Introduce a Student View for instructors]]&lt;br /&gt;
*[[CSC/ECE 517 Fall 2016/E1653. Fix and improve rubric criteria]]&lt;br /&gt;
*[[CSC/ECE 517 Fall 2016/E1642. Refactor review_response_map.rb]]&lt;br /&gt;
*[[CSC/ECE_517_Fall_2016/E1664:_Feature_Test_Assignment_Creation]]&lt;br /&gt;
*[[CSC/ECE 517 Fall 2016/E1666. Test team functionality]]&lt;br /&gt;
*[[CSC/ECE_517_Fall_2016/E1654. Improve_date-picker_and_deadlines]]&lt;br /&gt;
*[[CSC/ECE_517_Fall_2016/E1652 Fix teammate advertisements and requests to join a team ]]&lt;br /&gt;
*[[CSC/ECE_517_Fall_2016/E1662. UI issues/fixes]]&lt;br /&gt;
*[[CSC/ECE_517_Fall_2016/E1673. Refactor question_type.rb]]&lt;br /&gt;
*[[CSC/ECE_517_Fall_2016/E1675. Timestamp for student file &amp;amp; hyperlink submissions]]&lt;br /&gt;
*[[CSC/ECE_517_Fall_2016/E1640. Refactor response.rb and response_helper.rb]]&lt;br /&gt;
*[[CSC/ECE 517 Fall 2016/E1634. Refactor and write unit test of due_date.rb and deadline_helper.rb]]&lt;br /&gt;
*[CSC/ECE 517 Fall 2016/M1654. Improve Network Security Features http://wiki.expertiza.ncsu.edu/index.php/CSC/ECE_517_Fall_2016/M1654._Improve_network_security_features]&lt;/div&gt;</summary>
		<author><name>Rmuddur</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2016/M1654._Improve_network_security_features&amp;diff=103349</id>
		<title>CSC/ECE 517 Fall 2016/M1654. Improve network security features</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2016/M1654._Improve_network_security_features&amp;diff=103349"/>
		<updated>2016-10-28T23:54:13Z</updated>

		<summary type="html">&lt;p&gt;Rmuddur: /* Servo */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;font size=&amp;quot;5&amp;quot;&amp;gt;M1654: Improve network security features for Servo (cookies and strict referrer policies)&amp;lt;/font&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Servo supports standard [HTTP cookies] and parts of the Referral-Policy web standard. The project aims at increasing the security available to Servo browser users by implementing secure standards and complete the missing parts of the existing implementations. The project involves adding &amp;quot;strict&amp;quot; version of existing referrer policies.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=='''Introduction'''==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Rust ===&lt;br /&gt;
[https://doc.rust-lang.org/book/ Rust] is a systems programming language developed and maintained by Mozilla. It is used as a multi-paradigm, compiled programming language for creating highly safe systems. Rust can be used for a variety of jobs including and not restricted to embedding into other languages, creating modular and optimized programs adhering to space-time constraints and can also be used to develop low-level code for writing device drivers.&lt;br /&gt;
&lt;br /&gt;
=== Servo ===&lt;br /&gt;
[https://servo.org/ Servo] is a modern high-performance browser engine designed for both application and embedded use which is written in Rust. It is created by Mozilla Research and is being built by a global community of individual contributors and companies such as Mozilla and Samsung.&lt;br /&gt;
&lt;br /&gt;
=== Referrer Policy ===&lt;br /&gt;
Referrer is a HTTP header field which contains the source of the URL that requested the web page. Referrer-policy dictates algorithm used to generate Referrer header when a new web page is requested.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=='''Project Description'''==&lt;br /&gt;
The project entails adding improved network security features for Servo engine by supplementing the existing Referrer-policies with 'strict origin' and 'strict origin when cross origin' policies.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
A brief description of the list of tasks assigned as part of the project is as follows:&lt;br /&gt;
&lt;br /&gt;
1) Compile Servo and ensure that it runs on tests/html/about-mozilla.html&lt;br /&gt;
&lt;br /&gt;
2) Email the mozilla.dev.servo mailing list (be sure to subscribe first!) introducing your group and asking any necessary questions&lt;br /&gt;
&lt;br /&gt;
3) Implement strict-origin and strict-origin-when-cross-origin referrer policies (see determine_request_referrer and determine_policy_for_token)&lt;br /&gt;
&lt;br /&gt;
4) Add support for the new strict policy values in the Referrer-Policy HTTP header (source)&lt;br /&gt;
&lt;br /&gt;
5) Add tests for the new policy values in tests/unit/net/http_loader.rs (run with ./mach test-unit -p net)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Referrer Policies added in this project ===&lt;br /&gt;
==== Strict Origin ====&lt;br /&gt;
[https://w3c.github.io/webappsec-referrer-policy/#referrer-policy-strict-origin Strict Origin] Referrer Policy dictates that the Referrer in HTTP header is always filled with the stripped URL of the origin and not the complete URL.&lt;br /&gt;
&lt;br /&gt;
==== Strict origin When Cross Origin ====&lt;br /&gt;
[https://w3c.github.io/webappsec-referrer-policy/#referrer-policy-strict-origin-when-cross-origin Strict Origin When Cross Origin] Referrer Policy dictates that the Referrer in HTTP header is filled with the stripped URL of the origin if the request is sent to a URL different from the origin and the complete URL is sent when making [https://en.wikipedia.org/wiki/Same-origin_policy same origin] requests.&lt;br /&gt;
&lt;br /&gt;
== '''Implementation''' ==&lt;br /&gt;
Strict Origin and Strict Origin When Cross origin Referrer policy implementations have been added to the codebase. The pull request for Servo repository is available [https://github.com/rjain9/servo/pull/1 here] and Hyper is available [https://github.com/hyperium/hyper/pull/943 here]&lt;br /&gt;
&lt;br /&gt;
Referrer policy implementation&amp;lt;br&amp;gt;&lt;br /&gt;
[[File:Ubs.jpg]]&amp;lt;br&amp;gt;&lt;br /&gt;
Selected Test case changes &amp;lt;br&amp;gt;&lt;br /&gt;
[[File:Ubs1.jpg]]&lt;br /&gt;
&lt;br /&gt;
For complete changes please refer aforementioned url.&lt;br /&gt;
&lt;br /&gt;
== '''Testing''' ==&lt;br /&gt;
Various testcase scenerios involving request from HTTP to HTTPS URLs and vice-versa have been added in [https://github.com/rjain9/servo/pull/1 tests/unit/net/http_loader.rs]. Full functionality coverage has been taken case of by ensuring that all same origin and cross origin test cases have been included.&lt;/div&gt;</summary>
		<author><name>Rmuddur</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2016/M1654._Improve_network_security_features&amp;diff=103345</id>
		<title>CSC/ECE 517 Fall 2016/M1654. Improve network security features</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2016/M1654._Improve_network_security_features&amp;diff=103345"/>
		<updated>2016-10-28T23:52:49Z</updated>

		<summary type="html">&lt;p&gt;Rmuddur: /* Rust */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;font size=&amp;quot;5&amp;quot;&amp;gt;M1654: Improve network security features for Servo (cookies and strict referrer policies)&amp;lt;/font&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Servo supports standard [HTTP cookies] and parts of the Referral-Policy web standard. The project aims at increasing the security available to Servo browser users by implementing secure standards and complete the missing parts of the existing implementations. The project involves adding &amp;quot;strict&amp;quot; version of existing referrer policies.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=='''Introduction'''==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Rust ===&lt;br /&gt;
[https://doc.rust-lang.org/book/ Rust] is a systems programming language developed and maintained by Mozilla. It is used as a multi-paradigm, compiled programming language for creating highly safe systems. Rust can be used for a variety of jobs including and not restricted to embedding into other languages, creating modular and optimized programs adhering to space-time constraints and can also be used to develop low-level code for writing device drivers.&lt;br /&gt;
&lt;br /&gt;
=== Servo ===&lt;br /&gt;
Servo is a modern high-performance browser engine designed for both application and embedded use which is written in Rust. It is created by Mozilla Research and is being built by a global community of individual contributors and companies such as Mozilla and Samsung.&lt;br /&gt;
&lt;br /&gt;
=== Referrer Policy ===&lt;br /&gt;
Referrer is a HTTP header field which contains the source of the URL that requested the web page. Referrer-policy dictates algorithm used to generate Referrer header when a new web page is requested.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=='''Project Description'''==&lt;br /&gt;
The project entails adding improved network security features for Servo engine by supplementing the existing Referrer-policies with 'strict origin' and 'strict origin when cross origin' policies.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
A brief description of the list of tasks assigned as part of the project is as follows:&lt;br /&gt;
&lt;br /&gt;
1) Compile Servo and ensure that it runs on tests/html/about-mozilla.html&lt;br /&gt;
&lt;br /&gt;
2) Email the mozilla.dev.servo mailing list (be sure to subscribe first!) introducing your group and asking any necessary questions&lt;br /&gt;
&lt;br /&gt;
3) Implement strict-origin and strict-origin-when-cross-origin referrer policies (see determine_request_referrer and determine_policy_for_token)&lt;br /&gt;
&lt;br /&gt;
4) Add support for the new strict policy values in the Referrer-Policy HTTP header (source)&lt;br /&gt;
&lt;br /&gt;
5) Add tests for the new policy values in tests/unit/net/http_loader.rs (run with ./mach test-unit -p net)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Referrer Policies added in this project ===&lt;br /&gt;
==== Strict Origin ====&lt;br /&gt;
[https://w3c.github.io/webappsec-referrer-policy/#referrer-policy-strict-origin Strict Origin] Referrer Policy dictates that the Referrer in HTTP header is always filled with the stripped URL of the origin and not the complete URL.&lt;br /&gt;
&lt;br /&gt;
==== Strict origin When Cross Origin ====&lt;br /&gt;
[https://w3c.github.io/webappsec-referrer-policy/#referrer-policy-strict-origin-when-cross-origin Strict Origin When Cross Origin] Referrer Policy dictates that the Referrer in HTTP header is filled with the stripped URL of the origin if the request is sent to a URL different from the origin and the complete URL is sent when making [https://en.wikipedia.org/wiki/Same-origin_policy same origin] requests.&lt;br /&gt;
&lt;br /&gt;
== '''Implementation''' ==&lt;br /&gt;
Strict Origin and Strict Origin When Cross origin Referrer policy implementations have been added to the codebase. The pull request for Servo repository is available [https://github.com/rjain9/servo/pull/1 here] and Hyper is available [https://github.com/hyperium/hyper/pull/943 here]&lt;br /&gt;
&lt;br /&gt;
Referrer policy implementation&amp;lt;br&amp;gt;&lt;br /&gt;
[[File:Ubs.jpg]]&amp;lt;br&amp;gt;&lt;br /&gt;
Selected Test case changes &amp;lt;br&amp;gt;&lt;br /&gt;
[[File:Ubs1.jpg]]&lt;br /&gt;
&lt;br /&gt;
For complete changes please refer aforementioned url.&lt;br /&gt;
&lt;br /&gt;
== '''Testing''' ==&lt;br /&gt;
Various testcase scenerios involving request from HTTP to HTTPS URLs and vice-versa have been added in [https://github.com/rjain9/servo/pull/1 tests/unit/net/http_loader.rs]. Full functionality coverage has been taken case of by ensuring that all same origin and cross origin test cases have been included.&lt;/div&gt;</summary>
		<author><name>Rmuddur</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2016/M1654._Improve_network_security_features&amp;diff=103340</id>
		<title>CSC/ECE 517 Fall 2016/M1654. Improve network security features</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2016/M1654._Improve_network_security_features&amp;diff=103340"/>
		<updated>2016-10-28T23:52:06Z</updated>

		<summary type="html">&lt;p&gt;Rmuddur: /* Implementation */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;font size=&amp;quot;5&amp;quot;&amp;gt;M1654: Improve network security features for Servo (cookies and strict referrer policies)&amp;lt;/font&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Servo supports standard [HTTP cookies] and parts of the Referral-Policy web standard. The project aims at increasing the security available to Servo browser users by implementing secure standards and complete the missing parts of the existing implementations. The project involves adding &amp;quot;strict&amp;quot; version of existing referrer policies.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=='''Introduction'''==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Rust ===&lt;br /&gt;
Rust is a systems programming language developed and maintained by Mozilla. It is used as a multi-paradigm, compiled programming language for creating highly safe systems. Rust can be used for a variety of jobs including and not restricted to embedding into other languages, creating modular and optimized programs adhering to space-time constraints and can also be used to develop low-level code for writing device drivers.[https://doc.rust-lang.org/book/ title]&lt;br /&gt;
&lt;br /&gt;
=== Servo ===&lt;br /&gt;
Servo is a modern high-performance browser engine designed for both application and embedded use which is written in Rust. It is created by Mozilla Research and is being built by a global community of individual contributors and companies such as Mozilla and Samsung.&lt;br /&gt;
&lt;br /&gt;
=== Referrer Policy ===&lt;br /&gt;
Referrer is a HTTP header field which contains the source of the URL that requested the web page. Referrer-policy dictates algorithm used to generate Referrer header when a new web page is requested.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=='''Project Description'''==&lt;br /&gt;
The project entails adding improved network security features for Servo engine by supplementing the existing Referrer-policies with 'strict origin' and 'strict origin when cross origin' policies.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
A brief description of the list of tasks assigned as part of the project is as follows:&lt;br /&gt;
&lt;br /&gt;
1) Compile Servo and ensure that it runs on tests/html/about-mozilla.html&lt;br /&gt;
&lt;br /&gt;
2) Email the mozilla.dev.servo mailing list (be sure to subscribe first!) introducing your group and asking any necessary questions&lt;br /&gt;
&lt;br /&gt;
3) Implement strict-origin and strict-origin-when-cross-origin referrer policies (see determine_request_referrer and determine_policy_for_token)&lt;br /&gt;
&lt;br /&gt;
4) Add support for the new strict policy values in the Referrer-Policy HTTP header (source)&lt;br /&gt;
&lt;br /&gt;
5) Add tests for the new policy values in tests/unit/net/http_loader.rs (run with ./mach test-unit -p net)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Referrer Policies added in this project ===&lt;br /&gt;
==== Strict Origin ====&lt;br /&gt;
[https://w3c.github.io/webappsec-referrer-policy/#referrer-policy-strict-origin Strict Origin] Referrer Policy dictates that the Referrer in HTTP header is always filled with the stripped URL of the origin and not the complete URL.&lt;br /&gt;
&lt;br /&gt;
==== Strict origin When Cross Origin ====&lt;br /&gt;
[https://w3c.github.io/webappsec-referrer-policy/#referrer-policy-strict-origin-when-cross-origin Strict Origin When Cross Origin] Referrer Policy dictates that the Referrer in HTTP header is filled with the stripped URL of the origin if the request is sent to a URL different from the origin and the complete URL is sent when making [https://en.wikipedia.org/wiki/Same-origin_policy same origin] requests.&lt;br /&gt;
&lt;br /&gt;
== '''Implementation''' ==&lt;br /&gt;
Strict Origin and Strict Origin When Cross origin Referrer policy implementations have been added to the codebase. The pull request for Servo repository is available [https://github.com/rjain9/servo/pull/1 here] and Hyper is available [https://github.com/hyperium/hyper/pull/943 here]&lt;br /&gt;
&lt;br /&gt;
Referrer policy implementation&amp;lt;br&amp;gt;&lt;br /&gt;
[[File:Ubs.jpg]]&amp;lt;br&amp;gt;&lt;br /&gt;
Selected Test case changes &amp;lt;br&amp;gt;&lt;br /&gt;
[[File:Ubs1.jpg]]&lt;br /&gt;
&lt;br /&gt;
For complete changes please refer aforementioned url.&lt;br /&gt;
&lt;br /&gt;
== '''Testing''' ==&lt;br /&gt;
Various testcase scenerios involving request from HTTP to HTTPS URLs and vice-versa have been added in [https://github.com/rjain9/servo/pull/1 tests/unit/net/http_loader.rs]. Full functionality coverage has been taken case of by ensuring that all same origin and cross origin test cases have been included.&lt;/div&gt;</summary>
		<author><name>Rmuddur</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2016/M1654._Improve_network_security_features&amp;diff=103337</id>
		<title>CSC/ECE 517 Fall 2016/M1654. Improve network security features</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2016/M1654._Improve_network_security_features&amp;diff=103337"/>
		<updated>2016-10-28T23:51:00Z</updated>

		<summary type="html">&lt;p&gt;Rmuddur: /* Implementation */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;font size=&amp;quot;5&amp;quot;&amp;gt;M1654: Improve network security features for Servo (cookies and strict referrer policies)&amp;lt;/font&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Servo supports standard [HTTP cookies] and parts of the Referral-Policy web standard. The project aims at increasing the security available to Servo browser users by implementing secure standards and complete the missing parts of the existing implementations. The project involves adding &amp;quot;strict&amp;quot; version of existing referrer policies.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=='''Introduction'''==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Rust ===&lt;br /&gt;
Rust is a systems programming language developed and maintained by Mozilla. It is used as a multi-paradigm, compiled programming language for creating highly safe systems. Rust can be used for a variety of jobs including and not restricted to embedding into other languages, creating modular and optimized programs adhering to space-time constraints and can also be used to develop low-level code for writing device drivers.[https://doc.rust-lang.org/book/ title]&lt;br /&gt;
&lt;br /&gt;
=== Servo ===&lt;br /&gt;
Servo is a modern high-performance browser engine designed for both application and embedded use which is written in Rust. It is created by Mozilla Research and is being built by a global community of individual contributors and companies such as Mozilla and Samsung.&lt;br /&gt;
&lt;br /&gt;
=== Referrer Policy ===&lt;br /&gt;
Referrer is a HTTP header field which contains the source of the URL that requested the web page. Referrer-policy dictates algorithm used to generate Referrer header when a new web page is requested.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=='''Project Description'''==&lt;br /&gt;
The project entails adding improved network security features for Servo engine by supplementing the existing Referrer-policies with 'strict origin' and 'strict origin when cross origin' policies.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
A brief description of the list of tasks assigned as part of the project is as follows:&lt;br /&gt;
&lt;br /&gt;
1) Compile Servo and ensure that it runs on tests/html/about-mozilla.html&lt;br /&gt;
&lt;br /&gt;
2) Email the mozilla.dev.servo mailing list (be sure to subscribe first!) introducing your group and asking any necessary questions&lt;br /&gt;
&lt;br /&gt;
3) Implement strict-origin and strict-origin-when-cross-origin referrer policies (see determine_request_referrer and determine_policy_for_token)&lt;br /&gt;
&lt;br /&gt;
4) Add support for the new strict policy values in the Referrer-Policy HTTP header (source)&lt;br /&gt;
&lt;br /&gt;
5) Add tests for the new policy values in tests/unit/net/http_loader.rs (run with ./mach test-unit -p net)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Referrer Policies added in this project ===&lt;br /&gt;
==== Strict Origin ====&lt;br /&gt;
[https://w3c.github.io/webappsec-referrer-policy/#referrer-policy-strict-origin Strict Origin] Referrer Policy dictates that the Referrer in HTTP header is always filled with the stripped URL of the origin and not the complete URL.&lt;br /&gt;
&lt;br /&gt;
==== Strict origin When Cross Origin ====&lt;br /&gt;
[https://w3c.github.io/webappsec-referrer-policy/#referrer-policy-strict-origin-when-cross-origin Strict Origin When Cross Origin] Referrer Policy dictates that the Referrer in HTTP header is filled with the stripped URL of the origin if the request is sent to a URL different from the origin and the complete URL is sent when making [https://en.wikipedia.org/wiki/Same-origin_policy same origin] requests.&lt;br /&gt;
&lt;br /&gt;
== '''Implementation''' ==&lt;br /&gt;
Strict Origin and Strict Origin When Cross origin Referrer policy implementations have been added to the codebase. The pull request for Servo repository is available [https://github.com/rjain9/servo/pull/1 here] and Hyper is available [https://github.com/hyperium/hyper/pull/943 here]&lt;br /&gt;
&lt;br /&gt;
Referrer policy implementation&amp;lt;br&amp;gt;&lt;br /&gt;
[[File:Ubs.jpg]]&amp;lt;br&amp;gt;&lt;br /&gt;
Test case changes &amp;lt;br&amp;gt;&lt;br /&gt;
[[File:Ubs1.jpg]]&lt;br /&gt;
&lt;br /&gt;
== '''Testing''' ==&lt;br /&gt;
Various testcase scenerios involving request from HTTP to HTTPS URLs and vice-versa have been added in [https://github.com/rjain9/servo/pull/1 tests/unit/net/http_loader.rs]. Full functionality coverage has been taken case of by ensuring that all same origin and cross origin test cases have been included.&lt;/div&gt;</summary>
		<author><name>Rmuddur</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=File:Ubs1.jpg&amp;diff=103333</id>
		<title>File:Ubs1.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=File:Ubs1.jpg&amp;diff=103333"/>
		<updated>2016-10-28T23:49:35Z</updated>

		<summary type="html">&lt;p&gt;Rmuddur: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Rmuddur</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2016/M1654._Improve_network_security_features&amp;diff=103328</id>
		<title>CSC/ECE 517 Fall 2016/M1654. Improve network security features</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2016/M1654._Improve_network_security_features&amp;diff=103328"/>
		<updated>2016-10-28T23:47:03Z</updated>

		<summary type="html">&lt;p&gt;Rmuddur: /* Implementation */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;font size=&amp;quot;5&amp;quot;&amp;gt;M1654: Improve network security features for Servo (cookies and strict referrer policies)&amp;lt;/font&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Servo supports standard [HTTP cookies] and parts of the Referral-Policy web standard. The project aims at increasing the security available to Servo browser users by implementing secure standards and complete the missing parts of the existing implementations. The project involves adding &amp;quot;strict&amp;quot; version of existing referrer policies.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=='''Introduction'''==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Rust ===&lt;br /&gt;
Rust is a systems programming language developed and maintained by Mozilla. It is used as a multi-paradigm, compiled programming language for creating highly safe systems. Rust can be used for a variety of jobs including and not restricted to embedding into other languages, creating modular and optimized programs adhering to space-time constraints and can also be used to develop low-level code for writing device drivers.[https://doc.rust-lang.org/book/ title]&lt;br /&gt;
&lt;br /&gt;
=== Servo ===&lt;br /&gt;
Servo is a modern high-performance browser engine designed for both application and embedded use which is written in Rust. It is created by Mozilla Research and is being built by a global community of individual contributors and companies such as Mozilla and Samsung.&lt;br /&gt;
&lt;br /&gt;
=== Referrer Policy ===&lt;br /&gt;
Referrer is a HTTP header field which contains the source of the URL that requested the web page. Referrer-policy dictates algorithm used to generate Referrer header when a new web page is requested.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=='''Project Description'''==&lt;br /&gt;
The project entails adding improved network security features for Servo engine by supplementing the existing Referrer-policies with 'strict origin' and 'strict origin when cross origin' policies.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
A brief description of the list of tasks assigned as part of the project is as follows:&lt;br /&gt;
&lt;br /&gt;
1) Compile Servo and ensure that it runs on tests/html/about-mozilla.html&lt;br /&gt;
&lt;br /&gt;
2) Email the mozilla.dev.servo mailing list (be sure to subscribe first!) introducing your group and asking any necessary questions&lt;br /&gt;
&lt;br /&gt;
3) Implement strict-origin and strict-origin-when-cross-origin referrer policies (see determine_request_referrer and determine_policy_for_token)&lt;br /&gt;
&lt;br /&gt;
4) Add support for the new strict policy values in the Referrer-Policy HTTP header (source)&lt;br /&gt;
&lt;br /&gt;
5) Add tests for the new policy values in tests/unit/net/http_loader.rs (run with ./mach test-unit -p net)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Referrer Policies added in this project ===&lt;br /&gt;
==== Strict Origin ====&lt;br /&gt;
[https://w3c.github.io/webappsec-referrer-policy/#referrer-policy-strict-origin Strict Origin] Referrer Policy dictates that the Referrer in HTTP header is always filled with the stripped URL of the origin and not the complete URL.&lt;br /&gt;
&lt;br /&gt;
==== Strict origin When Cross Origin ====&lt;br /&gt;
[https://w3c.github.io/webappsec-referrer-policy/#referrer-policy-strict-origin-when-cross-origin Strict Origin When Cross Origin] Referrer Policy dictates that the Referrer in HTTP header is filled with the stripped URL of the origin if the request is sent to a URL different from the origin and the complete URL is sent when making [https://en.wikipedia.org/wiki/Same-origin_policy same origin] requests.&lt;br /&gt;
&lt;br /&gt;
== '''Implementation''' ==&lt;br /&gt;
Strict Origin and Strict Origin When Cross origin Referrer policy implementations have been added to the codebase. The pull request for Servo repository is available [https://github.com/rjain9/servo/pull/1 here] and Hyper is available [https://github.com/hyperium/hyper/pull/943 here]&lt;br /&gt;
&lt;br /&gt;
Referrer policy implementation&amp;lt;br&amp;gt;&lt;br /&gt;
[[File:Ubs.jpg]]&lt;br /&gt;
&lt;br /&gt;
== '''Testing''' ==&lt;br /&gt;
Various testcase scenerios involving request from HTTP to HTTPS URLs and vice-versa have been added in [https://github.com/rjain9/servo/pull/1 tests/unit/net/http_loader.rs]. Full functionality coverage has been taken case of by ensuring that all same origin and cross origin test cases have been included.&lt;/div&gt;</summary>
		<author><name>Rmuddur</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2016/M1654._Improve_network_security_features&amp;diff=103327</id>
		<title>CSC/ECE 517 Fall 2016/M1654. Improve network security features</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=CSC/ECE_517_Fall_2016/M1654._Improve_network_security_features&amp;diff=103327"/>
		<updated>2016-10-28T23:46:49Z</updated>

		<summary type="html">&lt;p&gt;Rmuddur: Added file&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;font size=&amp;quot;5&amp;quot;&amp;gt;M1654: Improve network security features for Servo (cookies and strict referrer policies)&amp;lt;/font&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Servo supports standard [HTTP cookies] and parts of the Referral-Policy web standard. The project aims at increasing the security available to Servo browser users by implementing secure standards and complete the missing parts of the existing implementations. The project involves adding &amp;quot;strict&amp;quot; version of existing referrer policies.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=='''Introduction'''==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Rust ===&lt;br /&gt;
Rust is a systems programming language developed and maintained by Mozilla. It is used as a multi-paradigm, compiled programming language for creating highly safe systems. Rust can be used for a variety of jobs including and not restricted to embedding into other languages, creating modular and optimized programs adhering to space-time constraints and can also be used to develop low-level code for writing device drivers.[https://doc.rust-lang.org/book/ title]&lt;br /&gt;
&lt;br /&gt;
=== Servo ===&lt;br /&gt;
Servo is a modern high-performance browser engine designed for both application and embedded use which is written in Rust. It is created by Mozilla Research and is being built by a global community of individual contributors and companies such as Mozilla and Samsung.&lt;br /&gt;
&lt;br /&gt;
=== Referrer Policy ===&lt;br /&gt;
Referrer is a HTTP header field which contains the source of the URL that requested the web page. Referrer-policy dictates algorithm used to generate Referrer header when a new web page is requested.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=='''Project Description'''==&lt;br /&gt;
The project entails adding improved network security features for Servo engine by supplementing the existing Referrer-policies with 'strict origin' and 'strict origin when cross origin' policies.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
A brief description of the list of tasks assigned as part of the project is as follows:&lt;br /&gt;
&lt;br /&gt;
1) Compile Servo and ensure that it runs on tests/html/about-mozilla.html&lt;br /&gt;
&lt;br /&gt;
2) Email the mozilla.dev.servo mailing list (be sure to subscribe first!) introducing your group and asking any necessary questions&lt;br /&gt;
&lt;br /&gt;
3) Implement strict-origin and strict-origin-when-cross-origin referrer policies (see determine_request_referrer and determine_policy_for_token)&lt;br /&gt;
&lt;br /&gt;
4) Add support for the new strict policy values in the Referrer-Policy HTTP header (source)&lt;br /&gt;
&lt;br /&gt;
5) Add tests for the new policy values in tests/unit/net/http_loader.rs (run with ./mach test-unit -p net)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Referrer Policies added in this project ===&lt;br /&gt;
==== Strict Origin ====&lt;br /&gt;
[https://w3c.github.io/webappsec-referrer-policy/#referrer-policy-strict-origin Strict Origin] Referrer Policy dictates that the Referrer in HTTP header is always filled with the stripped URL of the origin and not the complete URL.&lt;br /&gt;
&lt;br /&gt;
==== Strict origin When Cross Origin ====&lt;br /&gt;
[https://w3c.github.io/webappsec-referrer-policy/#referrer-policy-strict-origin-when-cross-origin Strict Origin When Cross Origin] Referrer Policy dictates that the Referrer in HTTP header is filled with the stripped URL of the origin if the request is sent to a URL different from the origin and the complete URL is sent when making [https://en.wikipedia.org/wiki/Same-origin_policy same origin] requests.&lt;br /&gt;
&lt;br /&gt;
== '''Implementation''' ==&lt;br /&gt;
Strict Origin and Strict Origin When Cross origin Referrer policy implementations have been added to the codebase. The pull request for Servo repository is available [https://github.com/rjain9/servo/pull/1 here] and Hyper is available [https://github.com/hyperium/hyper/pull/943 here]&lt;br /&gt;
&lt;br /&gt;
Referrer policy implementation&lt;br /&gt;
[[File:Ubs.jpg]]&lt;br /&gt;
&lt;br /&gt;
== '''Testing''' ==&lt;br /&gt;
Various testcase scenerios involving request from HTTP to HTTPS URLs and vice-versa have been added in [https://github.com/rjain9/servo/pull/1 tests/unit/net/http_loader.rs]. Full functionality coverage has been taken case of by ensuring that all same origin and cross origin test cases have been included.&lt;/div&gt;</summary>
		<author><name>Rmuddur</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=File:Ubs.jpg&amp;diff=103324</id>
		<title>File:Ubs.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=File:Ubs.jpg&amp;diff=103324"/>
		<updated>2016-10-28T23:45:03Z</updated>

		<summary type="html">&lt;p&gt;Rmuddur: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Rmuddur</name></author>
	</entry>
	<entry>
		<id>https://wiki.expertiza.ncsu.edu/index.php?title=File:Ubs.png&amp;diff=103305</id>
		<title>File:Ubs.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.expertiza.ncsu.edu/index.php?title=File:Ubs.png&amp;diff=103305"/>
		<updated>2016-10-28T23:32:55Z</updated>

		<summary type="html">&lt;p&gt;Rmuddur: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Rmuddur</name></author>
	</entry>
</feed>