<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://wiki.owasp.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Heyvenki</id>
		<title>OWASP - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="https://wiki.owasp.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Heyvenki"/>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php/Special:Contributions/Heyvenki"/>
		<updated>2026-05-26T18:41:23Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.27.2</generator>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=OWASP_Periodic_Table_of_Vulnerabilities_-_SQL_Injection&amp;diff=151052</id>
		<title>OWASP Periodic Table of Vulnerabilities - SQL Injection</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=OWASP_Periodic_Table_of_Vulnerabilities_-_SQL_Injection&amp;diff=151052"/>
				<updated>2013-05-06T15:41:23Z</updated>
		
		<summary type="html">&lt;p&gt;Heyvenki: /* Custom Code Solution */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== SQL Injection ==&lt;br /&gt;
&lt;br /&gt;
=== Root Cause Summary ===&lt;br /&gt;
Applications that have insufficient input validations or non-validated literal strings concatenated into a dynamic SQL Statement and subsequently interpreted as code by the SQL Engine&lt;br /&gt;
&lt;br /&gt;
=== Browser / Standards Solution ===&lt;br /&gt;
&lt;br /&gt;
None&lt;br /&gt;
&lt;br /&gt;
=== Perimeter Solution ===&lt;br /&gt;
Web Application Firewalls (WAFs) can help in reducing SQL Injection attacks by filtering popular and well known attack inputs. WAFs are driven by a set of predefined rules that can help mitigate SQL Inection attacks to a certain extent.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Complexity: High&amp;lt;br&amp;gt;&lt;br /&gt;
Impact: High&lt;br /&gt;
&lt;br /&gt;
=== Generic Framework Solution ===&lt;br /&gt;
* '''Parametric Queries''' - Use parametric queries to execute any SQL commands&lt;br /&gt;
* '''Input Validation''' - Validate all inputs that are passed to the SQL statement for accuracy of datatypes, boundary limits and accepted characterset&lt;br /&gt;
* '''Escape Sequences''' - In cases where it is not possible to use parametric queries (like legacy code), ensure that the SQL engine sensitive characters are escaped appropriately. [ [[To provide a seperate link for this]] ]&lt;br /&gt;
&lt;br /&gt;
Complexity: Low&amp;lt;br&amp;gt;&lt;br /&gt;
Impact: High&lt;br /&gt;
&lt;br /&gt;
=== Custom Framework Solution ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Complexity: Medium&amp;lt;br&amp;gt;&lt;br /&gt;
Impact: High&lt;br /&gt;
&lt;br /&gt;
=== Custom Code Solution ===&lt;br /&gt;
* When building custom solutions, make sure that SQL queries are constructed dynamically with table names and views after through  and proper validation of the schema and the table/view.&lt;br /&gt;
* As a precuationay measure, ensure that the tables have appropriate access control through policies&lt;br /&gt;
* Whenever possible, when building custom solutions, use the underlying databases prepared queries library.&lt;br /&gt;
&lt;br /&gt;
Complexity: High&amp;lt;br&amp;gt;&lt;br /&gt;
Impact: High&lt;br /&gt;
&lt;br /&gt;
=== Discussion / Controversy ===&lt;br /&gt;
&lt;br /&gt;
=== References ===&lt;/div&gt;</summary>
		<author><name>Heyvenki</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=OWASP_Periodic_Table_of_Vulnerabilities_-_SQL_Injection&amp;diff=151051</id>
		<title>OWASP Periodic Table of Vulnerabilities - SQL Injection</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=OWASP_Periodic_Table_of_Vulnerabilities_-_SQL_Injection&amp;diff=151051"/>
				<updated>2013-05-06T15:39:46Z</updated>
		
		<summary type="html">&lt;p&gt;Heyvenki: /* References */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== SQL Injection ==&lt;br /&gt;
&lt;br /&gt;
=== Root Cause Summary ===&lt;br /&gt;
Applications that have insufficient input validations or non-validated literal strings concatenated into a dynamic SQL Statement and subsequently interpreted as code by the SQL Engine&lt;br /&gt;
&lt;br /&gt;
=== Browser / Standards Solution ===&lt;br /&gt;
&lt;br /&gt;
None&lt;br /&gt;
&lt;br /&gt;
=== Perimeter Solution ===&lt;br /&gt;
Web Application Firewalls (WAFs) can help in reducing SQL Injection attacks by filtering popular and well known attack inputs. WAFs are driven by a set of predefined rules that can help mitigate SQL Inection attacks to a certain extent.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Complexity: High&amp;lt;br&amp;gt;&lt;br /&gt;
Impact: High&lt;br /&gt;
&lt;br /&gt;
=== Generic Framework Solution ===&lt;br /&gt;
* '''Parametric Queries''' - Use parametric queries to execute any SQL commands&lt;br /&gt;
* '''Input Validation''' - Validate all inputs that are passed to the SQL statement for accuracy of datatypes, boundary limits and accepted characterset&lt;br /&gt;
* '''Escape Sequences''' - In cases where it is not possible to use parametric queries (like legacy code), ensure that the SQL engine sensitive characters are escaped appropriately. [ [[To provide a seperate link for this]] ]&lt;br /&gt;
&lt;br /&gt;
Complexity: Low&amp;lt;br&amp;gt;&lt;br /&gt;
Impact: High&lt;br /&gt;
&lt;br /&gt;
=== Custom Framework Solution ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Complexity: Medium&amp;lt;br&amp;gt;&lt;br /&gt;
Impact: High&lt;br /&gt;
&lt;br /&gt;
=== Custom Code Solution ===&lt;br /&gt;
* When building custom solutions, make sure that SQL queries are not constructed dynamically with the table names and views. If that is unavoidable, validate the schema and the table/view names before constructing the SQL query.&lt;br /&gt;
* As a precuationay measure, ensure that the tables have appropriate access control through policies&lt;br /&gt;
* Whenever possible, when building custom solutions, use the underlying databases prepared queries library.&lt;br /&gt;
&lt;br /&gt;
Complexity: High&amp;lt;br&amp;gt;&lt;br /&gt;
Impact: High&lt;br /&gt;
&lt;br /&gt;
=== Discussion / Controversy ===&lt;br /&gt;
&lt;br /&gt;
=== References ===&lt;/div&gt;</summary>
		<author><name>Heyvenki</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=OWASP_Periodic_Table_of_Vulnerabilities_-_SQL_Injection&amp;diff=151050</id>
		<title>OWASP Periodic Table of Vulnerabilities - SQL Injection</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=OWASP_Periodic_Table_of_Vulnerabilities_-_SQL_Injection&amp;diff=151050"/>
				<updated>2013-05-06T15:39:27Z</updated>
		
		<summary type="html">&lt;p&gt;Heyvenki: /* Discussion / Controversy */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== SQL Injection ==&lt;br /&gt;
&lt;br /&gt;
=== Root Cause Summary ===&lt;br /&gt;
Applications that have insufficient input validations or non-validated literal strings concatenated into a dynamic SQL Statement and subsequently interpreted as code by the SQL Engine&lt;br /&gt;
&lt;br /&gt;
=== Browser / Standards Solution ===&lt;br /&gt;
&lt;br /&gt;
None&lt;br /&gt;
&lt;br /&gt;
=== Perimeter Solution ===&lt;br /&gt;
Web Application Firewalls (WAFs) can help in reducing SQL Injection attacks by filtering popular and well known attack inputs. WAFs are driven by a set of predefined rules that can help mitigate SQL Inection attacks to a certain extent.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Complexity: High&amp;lt;br&amp;gt;&lt;br /&gt;
Impact: High&lt;br /&gt;
&lt;br /&gt;
=== Generic Framework Solution ===&lt;br /&gt;
* '''Parametric Queries''' - Use parametric queries to execute any SQL commands&lt;br /&gt;
* '''Input Validation''' - Validate all inputs that are passed to the SQL statement for accuracy of datatypes, boundary limits and accepted characterset&lt;br /&gt;
* '''Escape Sequences''' - In cases where it is not possible to use parametric queries (like legacy code), ensure that the SQL engine sensitive characters are escaped appropriately. [ [[To provide a seperate link for this]] ]&lt;br /&gt;
&lt;br /&gt;
Complexity: Low&amp;lt;br&amp;gt;&lt;br /&gt;
Impact: High&lt;br /&gt;
&lt;br /&gt;
=== Custom Framework Solution ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Complexity: Medium&amp;lt;br&amp;gt;&lt;br /&gt;
Impact: High&lt;br /&gt;
&lt;br /&gt;
=== Custom Code Solution ===&lt;br /&gt;
* When building custom solutions, make sure that SQL queries are not constructed dynamically with the table names and views. If that is unavoidable, validate the schema and the table/view names before constructing the SQL query.&lt;br /&gt;
* As a precuationay measure, ensure that the tables have appropriate access control through policies&lt;br /&gt;
* Whenever possible, when building custom solutions, use the underlying databases prepared queries library.&lt;br /&gt;
&lt;br /&gt;
Complexity: High&amp;lt;br&amp;gt;&lt;br /&gt;
Impact: High&lt;br /&gt;
&lt;br /&gt;
=== Discussion / Controversy ===&lt;br /&gt;
&lt;br /&gt;
=== References ===&lt;br /&gt;
[http://projects.webappsec.org/w/page/13246938/Insufficient%20Anti-automation Insufficient Anti-automation (WASC TC)]&amp;lt;br&amp;gt;&lt;br /&gt;
[http://projects.webappsec.org/w/page/13246915/Brute%20Force Brute Force (WASC TC)]&amp;lt;br&amp;gt;&lt;br /&gt;
[[Testing for Brute Force (OWASP-AT-004)| Testing for Brute Force (OWASP Testing Guide)]]&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>Heyvenki</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=OWASP_Periodic_Table_of_Vulnerabilities_-_SQL_Injection&amp;diff=151049</id>
		<title>OWASP Periodic Table of Vulnerabilities - SQL Injection</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=OWASP_Periodic_Table_of_Vulnerabilities_-_SQL_Injection&amp;diff=151049"/>
				<updated>2013-05-06T15:39:13Z</updated>
		
		<summary type="html">&lt;p&gt;Heyvenki: /* Custom Framework Solution */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== SQL Injection ==&lt;br /&gt;
&lt;br /&gt;
=== Root Cause Summary ===&lt;br /&gt;
Applications that have insufficient input validations or non-validated literal strings concatenated into a dynamic SQL Statement and subsequently interpreted as code by the SQL Engine&lt;br /&gt;
&lt;br /&gt;
=== Browser / Standards Solution ===&lt;br /&gt;
&lt;br /&gt;
None&lt;br /&gt;
&lt;br /&gt;
=== Perimeter Solution ===&lt;br /&gt;
Web Application Firewalls (WAFs) can help in reducing SQL Injection attacks by filtering popular and well known attack inputs. WAFs are driven by a set of predefined rules that can help mitigate SQL Inection attacks to a certain extent.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Complexity: High&amp;lt;br&amp;gt;&lt;br /&gt;
Impact: High&lt;br /&gt;
&lt;br /&gt;
=== Generic Framework Solution ===&lt;br /&gt;
* '''Parametric Queries''' - Use parametric queries to execute any SQL commands&lt;br /&gt;
* '''Input Validation''' - Validate all inputs that are passed to the SQL statement for accuracy of datatypes, boundary limits and accepted characterset&lt;br /&gt;
* '''Escape Sequences''' - In cases where it is not possible to use parametric queries (like legacy code), ensure that the SQL engine sensitive characters are escaped appropriately. [ [[To provide a seperate link for this]] ]&lt;br /&gt;
&lt;br /&gt;
Complexity: Low&amp;lt;br&amp;gt;&lt;br /&gt;
Impact: High&lt;br /&gt;
&lt;br /&gt;
=== Custom Framework Solution ===&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Complexity: Medium&amp;lt;br&amp;gt;&lt;br /&gt;
Impact: High&lt;br /&gt;
&lt;br /&gt;
=== Custom Code Solution ===&lt;br /&gt;
* When building custom solutions, make sure that SQL queries are not constructed dynamically with the table names and views. If that is unavoidable, validate the schema and the table/view names before constructing the SQL query.&lt;br /&gt;
* As a precuationay measure, ensure that the tables have appropriate access control through policies&lt;br /&gt;
* Whenever possible, when building custom solutions, use the underlying databases prepared queries library.&lt;br /&gt;
&lt;br /&gt;
Complexity: High&amp;lt;br&amp;gt;&lt;br /&gt;
Impact: High&lt;br /&gt;
&lt;br /&gt;
=== Discussion / Controversy ===&lt;br /&gt;
&lt;br /&gt;
Generic framework solution requires too much overhead to track request limits. Request rate limiting should be done in perimeter, not framework. Should combine with Denial of Service (Application-Based)? Custom Code solution is the same as Custom Framework Solution; Custom Code solution should be pushed into framework.&lt;br /&gt;
&lt;br /&gt;
=== References ===&lt;br /&gt;
[http://projects.webappsec.org/w/page/13246938/Insufficient%20Anti-automation Insufficient Anti-automation (WASC TC)]&amp;lt;br&amp;gt;&lt;br /&gt;
[http://projects.webappsec.org/w/page/13246915/Brute%20Force Brute Force (WASC TC)]&amp;lt;br&amp;gt;&lt;br /&gt;
[[Testing for Brute Force (OWASP-AT-004)| Testing for Brute Force (OWASP Testing Guide)]]&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>Heyvenki</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=OWASP_Periodic_Table_of_Vulnerabilities_-_SQL_Injection&amp;diff=151048</id>
		<title>OWASP Periodic Table of Vulnerabilities - SQL Injection</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=OWASP_Periodic_Table_of_Vulnerabilities_-_SQL_Injection&amp;diff=151048"/>
				<updated>2013-05-06T15:38:30Z</updated>
		
		<summary type="html">&lt;p&gt;Heyvenki: /* Custom Code Solution */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== SQL Injection ==&lt;br /&gt;
&lt;br /&gt;
=== Root Cause Summary ===&lt;br /&gt;
Applications that have insufficient input validations or non-validated literal strings concatenated into a dynamic SQL Statement and subsequently interpreted as code by the SQL Engine&lt;br /&gt;
&lt;br /&gt;
=== Browser / Standards Solution ===&lt;br /&gt;
&lt;br /&gt;
None&lt;br /&gt;
&lt;br /&gt;
=== Perimeter Solution ===&lt;br /&gt;
Web Application Firewalls (WAFs) can help in reducing SQL Injection attacks by filtering popular and well known attack inputs. WAFs are driven by a set of predefined rules that can help mitigate SQL Inection attacks to a certain extent.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Complexity: High&amp;lt;br&amp;gt;&lt;br /&gt;
Impact: High&lt;br /&gt;
&lt;br /&gt;
=== Generic Framework Solution ===&lt;br /&gt;
* '''Parametric Queries''' - Use parametric queries to execute any SQL commands&lt;br /&gt;
* '''Input Validation''' - Validate all inputs that are passed to the SQL statement for accuracy of datatypes, boundary limits and accepted characterset&lt;br /&gt;
* '''Escape Sequences''' - In cases where it is not possible to use parametric queries (like legacy code), ensure that the SQL engine sensitive characters are escaped appropriately. [ [[To provide a seperate link for this]] ]&lt;br /&gt;
&lt;br /&gt;
Complexity: Low&amp;lt;br&amp;gt;&lt;br /&gt;
Impact: High&lt;br /&gt;
&lt;br /&gt;
=== Custom Framework Solution ===&lt;br /&gt;
&lt;br /&gt;
Provide a common configuration functionality available to any feature/function. Configuration settings should allow multiple per-user rate limits as well as global rate limits to prevent denial of service.&lt;br /&gt;
&lt;br /&gt;
Complexity: Low&amp;lt;br&amp;gt;&lt;br /&gt;
Impact: High&lt;br /&gt;
&lt;br /&gt;
=== Custom Code Solution ===&lt;br /&gt;
* When building custom solutions, make sure that SQL queries are not constructed dynamically with the table names and views. If that is unavoidable, validate the schema and the table/view names before constructing the SQL query.&lt;br /&gt;
* As a precuationay measure, ensure that the tables have appropriate access control through policies&lt;br /&gt;
* Whenever possible, when building custom solutions, use the underlying databases prepared queries library.&lt;br /&gt;
&lt;br /&gt;
Complexity: High&amp;lt;br&amp;gt;&lt;br /&gt;
Impact: High&lt;br /&gt;
&lt;br /&gt;
=== Discussion / Controversy ===&lt;br /&gt;
&lt;br /&gt;
Generic framework solution requires too much overhead to track request limits. Request rate limiting should be done in perimeter, not framework. Should combine with Denial of Service (Application-Based)? Custom Code solution is the same as Custom Framework Solution; Custom Code solution should be pushed into framework.&lt;br /&gt;
&lt;br /&gt;
=== References ===&lt;br /&gt;
[http://projects.webappsec.org/w/page/13246938/Insufficient%20Anti-automation Insufficient Anti-automation (WASC TC)]&amp;lt;br&amp;gt;&lt;br /&gt;
[http://projects.webappsec.org/w/page/13246915/Brute%20Force Brute Force (WASC TC)]&amp;lt;br&amp;gt;&lt;br /&gt;
[[Testing for Brute Force (OWASP-AT-004)| Testing for Brute Force (OWASP Testing Guide)]]&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>Heyvenki</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=OWASP_Periodic_Table_of_Vulnerabilities_-_SQL_Injection&amp;diff=151042</id>
		<title>OWASP Periodic Table of Vulnerabilities - SQL Injection</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=OWASP_Periodic_Table_of_Vulnerabilities_-_SQL_Injection&amp;diff=151042"/>
				<updated>2013-05-06T07:04:33Z</updated>
		
		<summary type="html">&lt;p&gt;Heyvenki: /* Generic Framework Solution */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== SQL Injection ==&lt;br /&gt;
&lt;br /&gt;
=== Root Cause Summary ===&lt;br /&gt;
Applications that have insufficient input validations or non-validated literal strings concatenated into a dynamic SQL Statement and subsequently interpreted as code by the SQL Engine&lt;br /&gt;
&lt;br /&gt;
=== Browser / Standards Solution ===&lt;br /&gt;
&lt;br /&gt;
None&lt;br /&gt;
&lt;br /&gt;
=== Perimeter Solution ===&lt;br /&gt;
Web Application Firewalls (WAFs) can help in reducing SQL Injection attacks by filtering popular and well known attack inputs. WAFs are driven by a set of predefined rules that can help mitigate SQL Inection attacks to a certain extent.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Complexity: High&amp;lt;br&amp;gt;&lt;br /&gt;
Impact: High&lt;br /&gt;
&lt;br /&gt;
=== Generic Framework Solution ===&lt;br /&gt;
* '''Parametric Queries''' - Use parametric queries to execute any SQL commands&lt;br /&gt;
* '''Input Validation''' - Validate all inputs that are passed to the SQL statement for accuracy of datatypes, boundary limits and accepted characterset&lt;br /&gt;
* '''Escape Sequences''' - In cases where it is not possible to use parametric queries (like legacy code), ensure that the SQL engine sensitive characters are escaped appropriately. [ [[To provide a seperate link for this]] ]&lt;br /&gt;
&lt;br /&gt;
Complexity: Low&amp;lt;br&amp;gt;&lt;br /&gt;
Impact: High&lt;br /&gt;
&lt;br /&gt;
=== Custom Framework Solution ===&lt;br /&gt;
&lt;br /&gt;
Provide a common configuration functionality available to any feature/function. Configuration settings should allow multiple per-user rate limits as well as global rate limits to prevent denial of service.&lt;br /&gt;
&lt;br /&gt;
Complexity: Low&amp;lt;br&amp;gt;&lt;br /&gt;
Impact: High&lt;br /&gt;
&lt;br /&gt;
=== Custom Code Solution ===&lt;br /&gt;
Any feature sensitive to high transaction rates should expose configurable rate limits per user or globally per feature.&lt;br /&gt;
&lt;br /&gt;
Complexity: Low&amp;lt;br&amp;gt;&lt;br /&gt;
Impact: High&lt;br /&gt;
&lt;br /&gt;
=== Discussion / Controversy ===&lt;br /&gt;
&lt;br /&gt;
Generic framework solution requires too much overhead to track request limits. Request rate limiting should be done in perimeter, not framework. Should combine with Denial of Service (Application-Based)? Custom Code solution is the same as Custom Framework Solution; Custom Code solution should be pushed into framework.&lt;br /&gt;
&lt;br /&gt;
=== References ===&lt;br /&gt;
[http://projects.webappsec.org/w/page/13246938/Insufficient%20Anti-automation Insufficient Anti-automation (WASC TC)]&amp;lt;br&amp;gt;&lt;br /&gt;
[http://projects.webappsec.org/w/page/13246915/Brute%20Force Brute Force (WASC TC)]&amp;lt;br&amp;gt;&lt;br /&gt;
[[Testing for Brute Force (OWASP-AT-004)| Testing for Brute Force (OWASP Testing Guide)]]&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>Heyvenki</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=OWASP_Periodic_Table_of_Vulnerabilities_-_SQL_Injection&amp;diff=151041</id>
		<title>OWASP Periodic Table of Vulnerabilities - SQL Injection</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=OWASP_Periodic_Table_of_Vulnerabilities_-_SQL_Injection&amp;diff=151041"/>
				<updated>2013-05-06T06:58:53Z</updated>
		
		<summary type="html">&lt;p&gt;Heyvenki: /* Root Cause Summary */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== SQL Injection ==&lt;br /&gt;
&lt;br /&gt;
=== Root Cause Summary ===&lt;br /&gt;
Applications that have insufficient input validations or non-validated literal strings concatenated into a dynamic SQL Statement and subsequently interpreted as code by the SQL Engine&lt;br /&gt;
&lt;br /&gt;
=== Browser / Standards Solution ===&lt;br /&gt;
&lt;br /&gt;
None&lt;br /&gt;
&lt;br /&gt;
=== Perimeter Solution ===&lt;br /&gt;
Web Application Firewalls (WAFs) can help in reducing SQL Injection attacks by filtering popular and well known attack inputs. WAFs are driven by a set of predefined rules that can help mitigate SQL Inection attacks to a certain extent.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Complexity: High&amp;lt;br&amp;gt;&lt;br /&gt;
Impact: High&lt;br /&gt;
&lt;br /&gt;
=== Generic Framework Solution ===&lt;br /&gt;
* '''Parametric Queries''' - Use parametric queries to execute any SQL commands&lt;br /&gt;
* '''Input Validation''' - Validate all inputs that are passed to the SQL statement for accuracy of datatypes, boundary limits and accepted characterset&lt;br /&gt;
* '''Escape Sequences''' - In cases where it is not possible to use parametric queries (like legacy code), ensure that the SQL engine sensitive characters are escaped appropriately. [[To provide a seperate link for this]]&lt;br /&gt;
&lt;br /&gt;
Complexity: Low&amp;lt;br&amp;gt;&lt;br /&gt;
Impact: High&lt;br /&gt;
&lt;br /&gt;
=== Custom Framework Solution ===&lt;br /&gt;
&lt;br /&gt;
Provide a common configuration functionality available to any feature/function. Configuration settings should allow multiple per-user rate limits as well as global rate limits to prevent denial of service.&lt;br /&gt;
&lt;br /&gt;
Complexity: Low&amp;lt;br&amp;gt;&lt;br /&gt;
Impact: High&lt;br /&gt;
&lt;br /&gt;
=== Custom Code Solution ===&lt;br /&gt;
Any feature sensitive to high transaction rates should expose configurable rate limits per user or globally per feature.&lt;br /&gt;
&lt;br /&gt;
Complexity: Low&amp;lt;br&amp;gt;&lt;br /&gt;
Impact: High&lt;br /&gt;
&lt;br /&gt;
=== Discussion / Controversy ===&lt;br /&gt;
&lt;br /&gt;
Generic framework solution requires too much overhead to track request limits. Request rate limiting should be done in perimeter, not framework. Should combine with Denial of Service (Application-Based)? Custom Code solution is the same as Custom Framework Solution; Custom Code solution should be pushed into framework.&lt;br /&gt;
&lt;br /&gt;
=== References ===&lt;br /&gt;
[http://projects.webappsec.org/w/page/13246938/Insufficient%20Anti-automation Insufficient Anti-automation (WASC TC)]&amp;lt;br&amp;gt;&lt;br /&gt;
[http://projects.webappsec.org/w/page/13246915/Brute%20Force Brute Force (WASC TC)]&amp;lt;br&amp;gt;&lt;br /&gt;
[[Testing for Brute Force (OWASP-AT-004)| Testing for Brute Force (OWASP Testing Guide)]]&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>Heyvenki</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=OWASP_Periodic_Table_of_Vulnerabilities_-_SQL_Injection&amp;diff=151040</id>
		<title>OWASP Periodic Table of Vulnerabilities - SQL Injection</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=OWASP_Periodic_Table_of_Vulnerabilities_-_SQL_Injection&amp;diff=151040"/>
				<updated>2013-05-06T06:52:27Z</updated>
		
		<summary type="html">&lt;p&gt;Heyvenki: /* Generic Framework Solution */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== SQL Injection ==&lt;br /&gt;
&lt;br /&gt;
=== Root Cause Summary ===&lt;br /&gt;
Applications that have insufficient input validations and allow an external user to manipulate the SQL commands and retrieve results that would result in a compromise of the data.&lt;br /&gt;
&lt;br /&gt;
=== Browser / Standards Solution ===&lt;br /&gt;
&lt;br /&gt;
None&lt;br /&gt;
&lt;br /&gt;
=== Perimeter Solution ===&lt;br /&gt;
Web Application Firewalls (WAFs) can help in reducing SQL Injection attacks by filtering popular and well known attack inputs. WAFs are driven by a set of predefined rules that can help mitigate SQL Inection attacks to a certain extent.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Complexity: High&amp;lt;br&amp;gt;&lt;br /&gt;
Impact: High&lt;br /&gt;
&lt;br /&gt;
=== Generic Framework Solution ===&lt;br /&gt;
* '''Parametric Queries''' - Use parametric queries to execute any SQL commands&lt;br /&gt;
* '''Input Validation''' - Validate all inputs that are passed to the SQL statement for accuracy of datatypes, boundary limits and accepted characterset&lt;br /&gt;
* '''Escape Sequences''' - In cases where it is not possible to use parametric queries (like legacy code), ensure that the SQL engine sensitive characters are escaped appropriately. [[To provide a seperate link for this]]&lt;br /&gt;
&lt;br /&gt;
Complexity: Low&amp;lt;br&amp;gt;&lt;br /&gt;
Impact: High&lt;br /&gt;
&lt;br /&gt;
=== Custom Framework Solution ===&lt;br /&gt;
&lt;br /&gt;
Provide a common configuration functionality available to any feature/function. Configuration settings should allow multiple per-user rate limits as well as global rate limits to prevent denial of service.&lt;br /&gt;
&lt;br /&gt;
Complexity: Low&amp;lt;br&amp;gt;&lt;br /&gt;
Impact: High&lt;br /&gt;
&lt;br /&gt;
=== Custom Code Solution ===&lt;br /&gt;
Any feature sensitive to high transaction rates should expose configurable rate limits per user or globally per feature.&lt;br /&gt;
&lt;br /&gt;
Complexity: Low&amp;lt;br&amp;gt;&lt;br /&gt;
Impact: High&lt;br /&gt;
&lt;br /&gt;
=== Discussion / Controversy ===&lt;br /&gt;
&lt;br /&gt;
Generic framework solution requires too much overhead to track request limits. Request rate limiting should be done in perimeter, not framework. Should combine with Denial of Service (Application-Based)? Custom Code solution is the same as Custom Framework Solution; Custom Code solution should be pushed into framework.&lt;br /&gt;
&lt;br /&gt;
=== References ===&lt;br /&gt;
[http://projects.webappsec.org/w/page/13246938/Insufficient%20Anti-automation Insufficient Anti-automation (WASC TC)]&amp;lt;br&amp;gt;&lt;br /&gt;
[http://projects.webappsec.org/w/page/13246915/Brute%20Force Brute Force (WASC TC)]&amp;lt;br&amp;gt;&lt;br /&gt;
[[Testing for Brute Force (OWASP-AT-004)| Testing for Brute Force (OWASP Testing Guide)]]&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>Heyvenki</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=OWASP_Periodic_Table_of_Vulnerabilities_-_SQL_Injection&amp;diff=151039</id>
		<title>OWASP Periodic Table of Vulnerabilities - SQL Injection</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=OWASP_Periodic_Table_of_Vulnerabilities_-_SQL_Injection&amp;diff=151039"/>
				<updated>2013-05-06T06:50:14Z</updated>
		
		<summary type="html">&lt;p&gt;Heyvenki: /* Generic Framework Solution */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== SQL Injection ==&lt;br /&gt;
&lt;br /&gt;
=== Root Cause Summary ===&lt;br /&gt;
Applications that have insufficient input validations and allow an external user to manipulate the SQL commands and retrieve results that would result in a compromise of the data.&lt;br /&gt;
&lt;br /&gt;
=== Browser / Standards Solution ===&lt;br /&gt;
&lt;br /&gt;
None&lt;br /&gt;
&lt;br /&gt;
=== Perimeter Solution ===&lt;br /&gt;
Web Application Firewalls (WAFs) can help in reducing SQL Injection attacks by filtering popular and well known attack inputs. WAFs are driven by a set of predefined rules that can help mitigate SQL Inection attacks to a certain extent.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Complexity: High&amp;lt;br&amp;gt;&lt;br /&gt;
Impact: High&lt;br /&gt;
&lt;br /&gt;
=== Generic Framework Solution ===&lt;br /&gt;
* '''Parametric Queries''' - Use parametric queries to execute any SQL commands&lt;br /&gt;
* '''Input Validation''' - Validate all inputs that are passed to the SQL statement for accuracy of datatypes, boundary limits and accepted characterset&lt;br /&gt;
&lt;br /&gt;
Provide configurable per-user/session request rate limits. For authenticated transactions, limits should be configurable on a per-user or per-session basis. Configuration should allow combining multiple limits of the form &amp;quot;# of requests per time period&amp;quot;. For example, an administrator should be combine &amp;quot;10 requests per minute&amp;quot; with &amp;quot;500 requests per day&amp;quot; in order to simultaneously apply policies which prevent users from automatic crawling/screen scraping as well as longer-term slow leeching activities.&lt;br /&gt;
&lt;br /&gt;
Complexity: Low&amp;lt;br&amp;gt;&lt;br /&gt;
Impact: High&lt;br /&gt;
&lt;br /&gt;
=== Custom Framework Solution ===&lt;br /&gt;
&lt;br /&gt;
Provide a common configuration functionality available to any feature/function. Configuration settings should allow multiple per-user rate limits as well as global rate limits to prevent denial of service.&lt;br /&gt;
&lt;br /&gt;
Complexity: Low&amp;lt;br&amp;gt;&lt;br /&gt;
Impact: High&lt;br /&gt;
&lt;br /&gt;
=== Custom Code Solution ===&lt;br /&gt;
Any feature sensitive to high transaction rates should expose configurable rate limits per user or globally per feature.&lt;br /&gt;
&lt;br /&gt;
Complexity: Low&amp;lt;br&amp;gt;&lt;br /&gt;
Impact: High&lt;br /&gt;
&lt;br /&gt;
=== Discussion / Controversy ===&lt;br /&gt;
&lt;br /&gt;
Generic framework solution requires too much overhead to track request limits. Request rate limiting should be done in perimeter, not framework. Should combine with Denial of Service (Application-Based)? Custom Code solution is the same as Custom Framework Solution; Custom Code solution should be pushed into framework.&lt;br /&gt;
&lt;br /&gt;
=== References ===&lt;br /&gt;
[http://projects.webappsec.org/w/page/13246938/Insufficient%20Anti-automation Insufficient Anti-automation (WASC TC)]&amp;lt;br&amp;gt;&lt;br /&gt;
[http://projects.webappsec.org/w/page/13246915/Brute%20Force Brute Force (WASC TC)]&amp;lt;br&amp;gt;&lt;br /&gt;
[[Testing for Brute Force (OWASP-AT-004)| Testing for Brute Force (OWASP Testing Guide)]]&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>Heyvenki</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=OWASP_Periodic_Table_of_Vulnerabilities_-_SQL_Injection&amp;diff=151038</id>
		<title>OWASP Periodic Table of Vulnerabilities - SQL Injection</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=OWASP_Periodic_Table_of_Vulnerabilities_-_SQL_Injection&amp;diff=151038"/>
				<updated>2013-05-06T06:48:09Z</updated>
		
		<summary type="html">&lt;p&gt;Heyvenki: /* Generic Framework Solution */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== SQL Injection ==&lt;br /&gt;
&lt;br /&gt;
=== Root Cause Summary ===&lt;br /&gt;
Applications that have insufficient input validations and allow an external user to manipulate the SQL commands and retrieve results that would result in a compromise of the data.&lt;br /&gt;
&lt;br /&gt;
=== Browser / Standards Solution ===&lt;br /&gt;
&lt;br /&gt;
None&lt;br /&gt;
&lt;br /&gt;
=== Perimeter Solution ===&lt;br /&gt;
Web Application Firewalls (WAFs) can help in reducing SQL Injection attacks by filtering popular and well known attack inputs. WAFs are driven by a set of predefined rules that can help mitigate SQL Inection attacks to a certain extent.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Complexity: High&amp;lt;br&amp;gt;&lt;br /&gt;
Impact: High&lt;br /&gt;
&lt;br /&gt;
=== Generic Framework Solution ===&lt;br /&gt;
* '''Parametric Queries''' - Use parametric queries for executing any SQL commands.&lt;br /&gt;
&lt;br /&gt;
Provide configurable per-user/session request rate limits. For authenticated transactions, limits should be configurable on a per-user or per-session basis. Configuration should allow combining multiple limits of the form &amp;quot;# of requests per time period&amp;quot;. For example, an administrator should be combine &amp;quot;10 requests per minute&amp;quot; with &amp;quot;500 requests per day&amp;quot; in order to simultaneously apply policies which prevent users from automatic crawling/screen scraping as well as longer-term slow leeching activities.&lt;br /&gt;
&lt;br /&gt;
Complexity: Low&amp;lt;br&amp;gt;&lt;br /&gt;
Impact: High&lt;br /&gt;
&lt;br /&gt;
=== Custom Framework Solution ===&lt;br /&gt;
&lt;br /&gt;
Provide a common configuration functionality available to any feature/function. Configuration settings should allow multiple per-user rate limits as well as global rate limits to prevent denial of service.&lt;br /&gt;
&lt;br /&gt;
Complexity: Low&amp;lt;br&amp;gt;&lt;br /&gt;
Impact: High&lt;br /&gt;
&lt;br /&gt;
=== Custom Code Solution ===&lt;br /&gt;
Any feature sensitive to high transaction rates should expose configurable rate limits per user or globally per feature.&lt;br /&gt;
&lt;br /&gt;
Complexity: Low&amp;lt;br&amp;gt;&lt;br /&gt;
Impact: High&lt;br /&gt;
&lt;br /&gt;
=== Discussion / Controversy ===&lt;br /&gt;
&lt;br /&gt;
Generic framework solution requires too much overhead to track request limits. Request rate limiting should be done in perimeter, not framework. Should combine with Denial of Service (Application-Based)? Custom Code solution is the same as Custom Framework Solution; Custom Code solution should be pushed into framework.&lt;br /&gt;
&lt;br /&gt;
=== References ===&lt;br /&gt;
[http://projects.webappsec.org/w/page/13246938/Insufficient%20Anti-automation Insufficient Anti-automation (WASC TC)]&amp;lt;br&amp;gt;&lt;br /&gt;
[http://projects.webappsec.org/w/page/13246915/Brute%20Force Brute Force (WASC TC)]&amp;lt;br&amp;gt;&lt;br /&gt;
[[Testing for Brute Force (OWASP-AT-004)| Testing for Brute Force (OWASP Testing Guide)]]&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>Heyvenki</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=OWASP_Periodic_Table_of_Vulnerabilities_-_SQL_Injection&amp;diff=151037</id>
		<title>OWASP Periodic Table of Vulnerabilities - SQL Injection</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=OWASP_Periodic_Table_of_Vulnerabilities_-_SQL_Injection&amp;diff=151037"/>
				<updated>2013-05-06T06:45:42Z</updated>
		
		<summary type="html">&lt;p&gt;Heyvenki: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== SQL Injection ==&lt;br /&gt;
&lt;br /&gt;
=== Root Cause Summary ===&lt;br /&gt;
Applications that have insufficient input validations and allow an external user to manipulate the SQL commands and retrieve results that would result in a compromise of the data.&lt;br /&gt;
&lt;br /&gt;
=== Browser / Standards Solution ===&lt;br /&gt;
&lt;br /&gt;
None&lt;br /&gt;
&lt;br /&gt;
=== Perimeter Solution ===&lt;br /&gt;
Web Application Firewalls (WAFs) can help in reducing SQL Injection attacks by filtering popular and well known attack inputs. WAFs are driven by a set of predefined rules that can help mitigate SQL Inection attacks to a certain extent.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Complexity: High&amp;lt;br&amp;gt;&lt;br /&gt;
Impact: High&lt;br /&gt;
&lt;br /&gt;
=== Generic Framework Solution ===&lt;br /&gt;
*[[Parametric Queries]] - Use parametric queries for executing any SQL commands.&lt;br /&gt;
&lt;br /&gt;
Provide configurable per-user/session request rate limits. For authenticated transactions, limits should be configurable on a per-user or per-session basis. Configuration should allow combining multiple limits of the form &amp;quot;# of requests per time period&amp;quot;. For example, an administrator should be combine &amp;quot;10 requests per minute&amp;quot; with &amp;quot;500 requests per day&amp;quot; in order to simultaneously apply policies which prevent users from automatic crawling/screen scraping as well as longer-term slow leeching activities.&lt;br /&gt;
&lt;br /&gt;
Complexity: Low&amp;lt;br&amp;gt;&lt;br /&gt;
Impact: High&lt;br /&gt;
&lt;br /&gt;
=== Custom Framework Solution ===&lt;br /&gt;
&lt;br /&gt;
Provide a common configuration functionality available to any feature/function. Configuration settings should allow multiple per-user rate limits as well as global rate limits to prevent denial of service.&lt;br /&gt;
&lt;br /&gt;
Complexity: Low&amp;lt;br&amp;gt;&lt;br /&gt;
Impact: High&lt;br /&gt;
&lt;br /&gt;
=== Custom Code Solution ===&lt;br /&gt;
Any feature sensitive to high transaction rates should expose configurable rate limits per user or globally per feature.&lt;br /&gt;
&lt;br /&gt;
Complexity: Low&amp;lt;br&amp;gt;&lt;br /&gt;
Impact: High&lt;br /&gt;
&lt;br /&gt;
=== Discussion / Controversy ===&lt;br /&gt;
&lt;br /&gt;
Generic framework solution requires too much overhead to track request limits. Request rate limiting should be done in perimeter, not framework. Should combine with Denial of Service (Application-Based)? Custom Code solution is the same as Custom Framework Solution; Custom Code solution should be pushed into framework.&lt;br /&gt;
&lt;br /&gt;
=== References ===&lt;br /&gt;
[http://projects.webappsec.org/w/page/13246938/Insufficient%20Anti-automation Insufficient Anti-automation (WASC TC)]&amp;lt;br&amp;gt;&lt;br /&gt;
[http://projects.webappsec.org/w/page/13246915/Brute%20Force Brute Force (WASC TC)]&amp;lt;br&amp;gt;&lt;br /&gt;
[[Testing for Brute Force (OWASP-AT-004)| Testing for Brute Force (OWASP Testing Guide)]]&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>Heyvenki</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=OWASP_Periodic_Table_of_Vulnerabilities_-_SQL_Injection&amp;diff=151036</id>
		<title>OWASP Periodic Table of Vulnerabilities - SQL Injection</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=OWASP_Periodic_Table_of_Vulnerabilities_-_SQL_Injection&amp;diff=151036"/>
				<updated>2013-05-06T06:39:03Z</updated>
		
		<summary type="html">&lt;p&gt;Heyvenki: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== SQL Injection ==&lt;br /&gt;
&lt;br /&gt;
=== Root Cause Summary ===&lt;br /&gt;
Applications that have insufficient input validations and allow an external user to manipulate the SQL commands and retrieve results that would result in a compromise of the data.&lt;br /&gt;
&lt;br /&gt;
=== Browser / Standards Solution ===&lt;br /&gt;
&lt;br /&gt;
None&lt;br /&gt;
&lt;br /&gt;
=== Perimeter Solution ===&lt;br /&gt;
Web Application Firewalls (WAFs) can help in reducing SQL Injection attacks by filtering popular and well known attack inputs. WAFs are driven by a set of predefined rules that can help mitigate SQL Inection attacks to a certain extent.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Complexity: High&amp;lt;br&amp;gt;&lt;br /&gt;
Impact: High&lt;br /&gt;
&lt;br /&gt;
=== Generic Framework Solution ===&lt;br /&gt;
Provide configurable per-user/session request rate limits. For authenticated transactions, limits should be configurable on a per-user or per-session basis. Configuration should allow combining multiple limits of the form &amp;quot;# of requests per time period&amp;quot;. For example, an administrator should be combine &amp;quot;10 requests per minute&amp;quot; with &amp;quot;500 requests per day&amp;quot; in order to simultaneously apply policies which prevent users from automatic crawling/screen scraping as well as longer-term slow leeching activities.&lt;br /&gt;
&lt;br /&gt;
Complexity: Low&amp;lt;br&amp;gt;&lt;br /&gt;
Impact: High&lt;br /&gt;
&lt;br /&gt;
=== Custom Framework Solution ===&lt;br /&gt;
&lt;br /&gt;
Provide a common configuration functionality available to any feature/function. Configuration settings should allow multiple per-user rate limits as well as global rate limits to prevent denial of service.&lt;br /&gt;
&lt;br /&gt;
Complexity: Low&amp;lt;br&amp;gt;&lt;br /&gt;
Impact: High&lt;br /&gt;
&lt;br /&gt;
=== Custom Code Solution ===&lt;br /&gt;
Any feature sensitive to high transaction rates should expose configurable rate limits per user or globally per feature.&lt;br /&gt;
&lt;br /&gt;
Complexity: Low&amp;lt;br&amp;gt;&lt;br /&gt;
Impact: High&lt;br /&gt;
&lt;br /&gt;
=== Discussion / Controversy ===&lt;br /&gt;
&lt;br /&gt;
Generic framework solution requires too much overhead to track request limits. Request rate limiting should be done in perimeter, not framework. Should combine with Denial of Service (Application-Based)? Custom Code solution is the same as Custom Framework Solution; Custom Code solution should be pushed into framework.&lt;br /&gt;
&lt;br /&gt;
=== References ===&lt;br /&gt;
[http://projects.webappsec.org/w/page/13246938/Insufficient%20Anti-automation Insufficient Anti-automation (WASC TC)]&amp;lt;br&amp;gt;&lt;br /&gt;
[http://projects.webappsec.org/w/page/13246915/Brute%20Force Brute Force (WASC TC)]&amp;lt;br&amp;gt;&lt;br /&gt;
[[Testing for Brute Force (OWASP-AT-004)| Testing for Brute Force (OWASP Testing Guide)]]&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>Heyvenki</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=OWASP_Periodic_Table_of_Vulnerabilities_-_SQL_Injection&amp;diff=151035</id>
		<title>OWASP Periodic Table of Vulnerabilities - SQL Injection</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=OWASP_Periodic_Table_of_Vulnerabilities_-_SQL_Injection&amp;diff=151035"/>
				<updated>2013-05-06T06:37:44Z</updated>
		
		<summary type="html">&lt;p&gt;Heyvenki: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== SQL Injection ==&lt;br /&gt;
&lt;br /&gt;
=== Root Cause Summary ===&lt;br /&gt;
Applications have insufficient input validations that allow an external user to manipulate the SQL commands and retrieve results that would result in a compromise of the data.&lt;br /&gt;
&lt;br /&gt;
=== Browser / Standards Solution ===&lt;br /&gt;
&lt;br /&gt;
None&lt;br /&gt;
&lt;br /&gt;
=== Perimeter Solution ===&lt;br /&gt;
Web Application Firewalls (WAF) can help in reducing SQL Injection attacks by filtering popular and well known attack inputs. WAFs are driven by a set of predefined rules that can help mitigate SQL Inection attacks to a certain extent.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Complexity: High&amp;lt;br&amp;gt;&lt;br /&gt;
Impact: High&lt;br /&gt;
&lt;br /&gt;
=== Generic Framework Solution ===&lt;br /&gt;
Provide configurable per-user/session request rate limits. For authenticated transactions, limits should be configurable on a per-user or per-session basis. Configuration should allow combining multiple limits of the form &amp;quot;# of requests per time period&amp;quot;. For example, an administrator should be combine &amp;quot;10 requests per minute&amp;quot; with &amp;quot;500 requests per day&amp;quot; in order to simultaneously apply policies which prevent users from automatic crawling/screen scraping as well as longer-term slow leeching activities.&lt;br /&gt;
&lt;br /&gt;
Complexity: Low&amp;lt;br&amp;gt;&lt;br /&gt;
Impact: High&lt;br /&gt;
&lt;br /&gt;
=== Custom Framework Solution ===&lt;br /&gt;
&lt;br /&gt;
Provide a common configuration functionality available to any feature/function. Configuration settings should allow multiple per-user rate limits as well as global rate limits to prevent denial of service.&lt;br /&gt;
&lt;br /&gt;
Complexity: Low&amp;lt;br&amp;gt;&lt;br /&gt;
Impact: High&lt;br /&gt;
&lt;br /&gt;
=== Custom Code Solution ===&lt;br /&gt;
Any feature sensitive to high transaction rates should expose configurable rate limits per user or globally per feature.&lt;br /&gt;
&lt;br /&gt;
Complexity: Low&amp;lt;br&amp;gt;&lt;br /&gt;
Impact: High&lt;br /&gt;
&lt;br /&gt;
=== Discussion / Controversy ===&lt;br /&gt;
&lt;br /&gt;
Generic framework solution requires too much overhead to track request limits. Request rate limiting should be done in perimeter, not framework. Should combine with Denial of Service (Application-Based)? Custom Code solution is the same as Custom Framework Solution; Custom Code solution should be pushed into framework.&lt;br /&gt;
&lt;br /&gt;
=== References ===&lt;br /&gt;
[http://projects.webappsec.org/w/page/13246938/Insufficient%20Anti-automation Insufficient Anti-automation (WASC TC)]&amp;lt;br&amp;gt;&lt;br /&gt;
[http://projects.webappsec.org/w/page/13246915/Brute%20Force Brute Force (WASC TC)]&amp;lt;br&amp;gt;&lt;br /&gt;
[[Testing for Brute Force (OWASP-AT-004)| Testing for Brute Force (OWASP Testing Guide)]]&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>Heyvenki</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=OWASP_Periodic_Table_of_Vulnerabilities_-_SQL_Injection&amp;diff=151034</id>
		<title>OWASP Periodic Table of Vulnerabilities - SQL Injection</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=OWASP_Periodic_Table_of_Vulnerabilities_-_SQL_Injection&amp;diff=151034"/>
				<updated>2013-05-06T06:14:57Z</updated>
		
		<summary type="html">&lt;p&gt;Heyvenki: Created page with &amp;quot; == SQL Injection ==  === Root Cause Summary === &amp;lt;&amp;lt;Fill in the root cause summy&amp;gt;&amp;gt;  === Browser / Standards Solution ===  None  === Perimeter Solution === Perimeter technologie...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;br /&gt;
== SQL Injection ==&lt;br /&gt;
&lt;br /&gt;
=== Root Cause Summary ===&lt;br /&gt;
&amp;lt;&amp;lt;Fill in the root cause summy&amp;gt;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Browser / Standards Solution ===&lt;br /&gt;
&lt;br /&gt;
None&lt;br /&gt;
&lt;br /&gt;
=== Perimeter Solution ===&lt;br /&gt;
Perimeter technologies including geocaching/proxy services must support automatic and/or manual &amp;quot;panic button&amp;quot; anti-automation, enforcing progressive CAPTCHA for unvalidated requests, triggering on excessive 5XX responses, or direct signal from application.&lt;br /&gt;
&lt;br /&gt;
Complexity: High&amp;lt;br&amp;gt;&lt;br /&gt;
Impact: Medium&lt;br /&gt;
&lt;br /&gt;
=== Generic Framework Solution ===&lt;br /&gt;
Provide configurable per-user/session request rate limits. For authenticated transactions, limits should be configurable on a per-user or per-session basis. Configuration should allow combining multiple limits of the form &amp;quot;# of requests per time period&amp;quot;. For example, an administrator should be combine &amp;quot;10 requests per minute&amp;quot; with &amp;quot;500 requests per day&amp;quot; in order to simultaneously apply policies which prevent users from automatic crawling/screen scraping as well as longer-term slow leeching activities.&lt;br /&gt;
&lt;br /&gt;
Complexity: Low&amp;lt;br&amp;gt;&lt;br /&gt;
Impact: High&lt;br /&gt;
&lt;br /&gt;
=== Custom Framework Solution ===&lt;br /&gt;
&lt;br /&gt;
Provide a common configuration functionality available to any feature/function. Configuration settings should allow multiple per-user rate limits as well as global rate limits to prevent denial of service.&lt;br /&gt;
&lt;br /&gt;
Complexity: Low&amp;lt;br&amp;gt;&lt;br /&gt;
Impact: High&lt;br /&gt;
&lt;br /&gt;
=== Custom Code Solution ===&lt;br /&gt;
Any feature sensitive to high transaction rates should expose configurable rate limits per user or globally per feature.&lt;br /&gt;
&lt;br /&gt;
Complexity: Low&amp;lt;br&amp;gt;&lt;br /&gt;
Impact: High&lt;br /&gt;
&lt;br /&gt;
=== Discussion / Controversy ===&lt;br /&gt;
&lt;br /&gt;
Generic framework solution requires too much overhead to track request limits. Request rate limiting should be done in perimeter, not framework. Should combine with Denial of Service (Application-Based)? Custom Code solution is the same as Custom Framework Solution; Custom Code solution should be pushed into framework.&lt;br /&gt;
&lt;br /&gt;
=== References ===&lt;br /&gt;
[http://projects.webappsec.org/w/page/13246938/Insufficient%20Anti-automation Insufficient Anti-automation (WASC TC)]&amp;lt;br&amp;gt;&lt;br /&gt;
[http://projects.webappsec.org/w/page/13246915/Brute%20Force Brute Force (WASC TC)]&amp;lt;br&amp;gt;&lt;br /&gt;
[[Testing for Brute Force (OWASP-AT-004)| Testing for Brute Force (OWASP Testing Guide)]]&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>Heyvenki</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=Chennai&amp;diff=134322</id>
		<title>Chennai</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=Chennai&amp;diff=134322"/>
				<updated>2012-08-14T04:03:49Z</updated>
		
		<summary type="html">&lt;p&gt;Heyvenki: /* OWASP Chennai Chapter Meeting - 31 July 2010 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Chapter Template|chaptername=Chennai|extra=The chapter leaders are [mailto:venki@owasp.org Venkatesh Jagannathan] and [mailto:cumapathy@owasp.org Chandrasekar Umapathy]|mailinglistsite=http://lists.owasp.org/mailman/listinfo/owasp-chennai|emailarchives=http://lists.owasp.org/pipermail/owasp-chennai}}&lt;br /&gt;
&lt;br /&gt;
==== Local News ====&lt;br /&gt;
&amp;lt;paypal&amp;gt;Chennai&amp;lt;/paypal&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Stay Tuned ==&lt;br /&gt;
&lt;br /&gt;
Receive SMS Alerts - http://labs.google.co.in/smschannels/subscribe/OwaspChennai&lt;br /&gt;
&lt;br /&gt;
== Security Articles ==&lt;br /&gt;
March 2008 - '''A Checklist for Identifying Vulnerabilities''' - Vulnerabilities are holes in the application design / development / deployment that enable attackers to take advantage of the flaws present in the application... &lt;br /&gt;
[[https://www.owasp.org/images/c/c5/Vulnerability_Checklist.doc More]&lt;br /&gt;
&lt;br /&gt;
==== Chapter Meetings ====&lt;br /&gt;
&lt;br /&gt;
== OWASP Chennai Chapter Meeting - 11 August 2012==&lt;br /&gt;
&lt;br /&gt;
  09:30a – 09:35a =&amp;gt; &amp;lt;B&amp;gt;Opening the meeting&amp;lt;/B&amp;gt;&lt;br /&gt;
  09:36a – 10:35a =&amp;gt; &amp;lt;B&amp;gt;Big Data Security - Dr. T V Gopal [[https://www.owasp.org/images/e/ee/OWASP_BigDataGenSecurity.pdf Download Presentation]]&amp;lt;/B&amp;gt;&lt;br /&gt;
  10:36a – 11:05a =&amp;gt; &amp;lt;B&amp;gt;Break + Networking&amp;lt;/B&amp;gt;&lt;br /&gt;
  11:06a – 12:05n =&amp;gt; &amp;lt;B&amp;gt;SQL Injection &amp;amp; Basic Clickjacking - Vinod [[https://www.owasp.org/images/d/d5/Owasp_sql_inj_basic_clickjacking.pdf Download Presentation]]&amp;lt;/B&amp;gt;&lt;br /&gt;
  12:06p – 12:15p =&amp;gt; &amp;lt;B&amp;gt;Closing Remarks&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Venue:&lt;br /&gt;
----&lt;br /&gt;
&amp;lt;B&amp;gt;&lt;br /&gt;
Cognizant Technology Solutions,&lt;br /&gt;
Academy Auditorium,&lt;br /&gt;
5/535, Old Mahabalipuram Road,&lt;br /&gt;
Okkiam Thoraipakkam&lt;br /&gt;
Chennai - 600 096&lt;br /&gt;
&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== OWASP Chennai Chapter Meeting - 27 Jan 2012 ==&lt;br /&gt;
&lt;br /&gt;
  09:30a – 09:35a =&amp;gt; &amp;lt;B&amp;gt;Opening the meeting&amp;lt;/B&amp;gt;&lt;br /&gt;
  09:36a – 10:35a =&amp;gt; &amp;lt;B&amp;gt;Digital Forensics by Ms. Kala Bhaskar&amp;lt;/B&amp;gt;&lt;br /&gt;
  10:36a – 11:05a =&amp;gt; &amp;lt;B&amp;gt;Break + Networking&amp;lt;/B&amp;gt;&lt;br /&gt;
  11:06a – 12:05n =&amp;gt; &amp;lt;B&amp;gt;Identity &amp;amp; Access Management systems by Geetha [[https://www.owasp.org/images/0/01/AIM_-OWASP-Re.pdf Download Presentation]]&amp;lt;/B&amp;gt;&lt;br /&gt;
  12:06p – 12:10p =&amp;gt; &amp;lt;B&amp;gt;Closing remarks&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Venue:&lt;br /&gt;
----&lt;br /&gt;
&amp;lt;B&amp;gt;&lt;br /&gt;
Cognizant Technology Solutions,&lt;br /&gt;
Academy Auditorium,&lt;br /&gt;
5/535, Old Mahabalipuram Road,&lt;br /&gt;
Okkiam Thoraipakkam&lt;br /&gt;
Chennai - 600 096&lt;br /&gt;
&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== OWASP Chennai Chapter Meeting - 07 May 2011==&lt;br /&gt;
&lt;br /&gt;
  09:30a – 09:35a =&amp;gt; &amp;lt;B&amp;gt;Opening the meeting&amp;lt;/B&amp;gt;&lt;br /&gt;
  09:36a – 10:35a =&amp;gt; &amp;lt;B&amp;gt;Hacking - Tips &amp;amp; Tricks - Aananth [[https://www.owasp.org/images/c/c6/Hacking-Tips-and-Tricks.pdf Download Presentation]]&amp;lt;/B&amp;gt;&lt;br /&gt;
  10:36a – 11:05a =&amp;gt; &amp;lt;B&amp;gt;Break + Networking&amp;lt;/B&amp;gt;&lt;br /&gt;
  11:06a – 12:05n =&amp;gt; &amp;lt;B&amp;gt;Cyber Terrorism - Siva Kathiresan [[https://www.owasp.org/images/d/de/CyberTerrorism.pdf Download Presentation]]&amp;lt;/B&amp;gt;&lt;br /&gt;
  12:06p – 12:15p =&amp;gt; &amp;lt;B&amp;gt;Closing Remarks&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Venue:&lt;br /&gt;
----&lt;br /&gt;
&amp;lt;B&amp;gt;&lt;br /&gt;
Cognizant Technology Solutions,&lt;br /&gt;
Academy Auditorium,&lt;br /&gt;
5/535, Old Mahabalipuram Road,&lt;br /&gt;
Okkiam Thoraipakkam&lt;br /&gt;
Chennai - 600 096&lt;br /&gt;
&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== OWASP Chennai Chapter Meeting - 08 January 2011==&lt;br /&gt;
&lt;br /&gt;
  09:30a – 09:35a =&amp;gt; &amp;lt;B&amp;gt;Opening the meeting&amp;lt;/B&amp;gt;&lt;br /&gt;
  09:36a – 10:35a =&amp;gt; &amp;lt;B&amp;gt;Cloud Security - Ezhil Arasan Babaraj [[https://www.owasp.org/images/c/cc/Cloud_Security_%E2%80%93_An_Overview.pdf Download Presentation]]&amp;lt;/B&amp;gt;&lt;br /&gt;
  10:36a – 11:05a =&amp;gt; &amp;lt;B&amp;gt;Break + Networking&amp;lt;/B&amp;gt;&lt;br /&gt;
  11:06a – 12:05n =&amp;gt; &amp;lt;B&amp;gt;PCI DSS - Kuppuswamy M [[https://www.owasp.org/images/9/90/PCI-DSS.pdf Download Presentation]]&amp;lt;/B&amp;gt;&lt;br /&gt;
  12:06p – 12:15p =&amp;gt; &amp;lt;B&amp;gt;Closing Remarks&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Venue:&lt;br /&gt;
----&lt;br /&gt;
&amp;lt;B&amp;gt;&lt;br /&gt;
Cognizant Technology Solutions,&lt;br /&gt;
Academy Auditorium,&lt;br /&gt;
5/535, Old Mahabalipuram Road,&lt;br /&gt;
Okkiam Thoraipakkam&lt;br /&gt;
Chennai - 600 096&lt;br /&gt;
&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== OWASP Chennai Chapter Meeting - 31 July 2010 ==&lt;br /&gt;
&lt;br /&gt;
  09:30a – 09:35a =&amp;gt; &amp;lt;B&amp;gt;Opening the meeting&amp;lt;/B&amp;gt;&lt;br /&gt;
  09:36a – 10:30a =&amp;gt; &amp;lt;B&amp;gt;Application Security (Jamuna, Chief Guest) [[https://www.owasp.org/images/f/f4/Application_Security.pdf Download Presentation]]&amp;lt;/B&amp;gt;&lt;br /&gt;
  10:31a – 11:00a =&amp;gt; &amp;lt;B&amp;gt;Break + Networking&amp;lt;/B&amp;gt;&lt;br /&gt;
  11:01a – 12:00n =&amp;gt; &amp;lt;B&amp;gt;Threat Modeling [[https://www.owasp.org/images/a/a6/AdvancedThreatModeling.pdf Download Presentation]]&amp;lt;/B&amp;gt;&lt;br /&gt;
  12:01p – 01:00p =&amp;gt; &amp;lt;B&amp;gt;Web 2.0 Security Testing [[https://www.owasp.org/images/8/83/Web_2.0_Security_Testing.pdf Download Presentation]]&amp;lt;/B&amp;gt;&lt;br /&gt;
  01:01p – 01:05p =&amp;gt; &amp;lt;B&amp;gt;Closing remarks&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Venue:&lt;br /&gt;
----&lt;br /&gt;
&amp;lt;B&amp;gt;&lt;br /&gt;
Cognizant Technology Solutions,&lt;br /&gt;
Academy Auditorium,&lt;br /&gt;
5/535, Old Mahabalipuram Road,&lt;br /&gt;
Okkiam Thoraipakkam&lt;br /&gt;
Chennai - 600 096&lt;br /&gt;
&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== OWASP Chennai Chapter Meeting - 17 May 2009 ==&lt;br /&gt;
&lt;br /&gt;
  09:30a to 09:45a &amp;lt;B&amp;gt;Introduction to OWASP &amp;amp; Welcome statement Presented by Chandrasekar Umapathy&amp;lt;/B&amp;gt;&lt;br /&gt;
  09:45a to 10:20a &amp;lt;B&amp;gt;Presentation by KrishnaKumar Madhavan on Security Challenges Faced in Globalization&amp;lt;/B&amp;gt;&lt;br /&gt;
  10:45a to 11:00a &amp;lt;B&amp;gt;Coffee/Tea break&amp;lt;/B&amp;gt;&lt;br /&gt;
  11:00a to 11:45a &amp;lt;B&amp;gt;Presentation by  Abhay Bhargav on Application Security Risk - The Full Circle&amp;lt;/B&amp;gt;&lt;br /&gt;
  12:00n to 12:45p &amp;lt;B&amp;gt; Presentation by Murugan IPS on Mobile Crimes&amp;lt;/B&amp;gt;&lt;br /&gt;
  12:45P to 12:50p &amp;lt;B&amp;gt; Closing Session &amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== OWASP Chennai Chapter Meeting - 21 March 2009 ==&lt;br /&gt;
The first meeting of the year 2009. The agenda will be:&lt;br /&gt;
&lt;br /&gt;
  09:30a to 10:00a &amp;lt;B&amp;gt;Introductions &amp;amp; Welcome statement&amp;lt;/B&amp;gt;&lt;br /&gt;
  10:00a to 10:45a &amp;lt;B&amp;gt;Presentation by Lavakumar on vulnerability in Flex Applications [[https://www.owasp.org/images/e/e3/FlashSecurity.ppt Download Presentation]]&amp;lt;/B&amp;gt;&lt;br /&gt;
  10:45a to 11:00a &amp;lt;B&amp;gt;Coffee/Tea break&amp;lt;/B&amp;gt;&lt;br /&gt;
  11:00a to 12:00n &amp;lt;B&amp;gt;Presentation by Venki on top 25 programming errors [[https://www.owasp.org/images/1/11/Top25ProgrammingErrors.ppt Download Presentation]]&amp;lt;/B&amp;gt;&lt;br /&gt;
  12:00n to 12:01p &amp;lt;B&amp;gt;Closing Session&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For any questions, call +91-9840148148&lt;br /&gt;
&lt;br /&gt;
Venue:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;B&amp;gt;5/535, Old Mahabalipuram Road,&lt;br /&gt;
&lt;br /&gt;
Okkiam Thoraipakkam&lt;br /&gt;
&lt;br /&gt;
Chennai - 600 096&lt;br /&gt;
&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You are all invited.&lt;br /&gt;
&lt;br /&gt;
== You are Invited for the OWASP Chennai chapter Kick off Meeting - 2 February 2007 ==&lt;br /&gt;
This first meeting will serve as an introduction to OWASP and will have a discussion centered around our activities for the year 2007. &lt;br /&gt;
&lt;br /&gt;
The agenda:&lt;br /&gt;
 &lt;br /&gt;
  14.00 - 14.15: Welcome &amp;amp; Member Introduction&lt;br /&gt;
  14.15 - 14.30: OWASP Introduction, Anand,Cognizant &lt;br /&gt;
  14.30 - 15.30: Presentation on Phishing, Sreemathy Varadan, Cognizant [[https://www.owasp.org/images/a/a3/Phishing.ppt Download Presentation]]&lt;br /&gt;
  15.30 - 16.00: Discussion - Meeting Schedule for 2007, Chennai Chapter Activities&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Cognizant Technology solutions will be the sponsor for this meeting and the location would be &lt;br /&gt;
  Third Floor, &lt;br /&gt;
  Elnet Software City,&lt;br /&gt;
  T.S.140, Block 2&amp;amp;9 C.P.T.Road, &lt;br /&gt;
  Taramani,&lt;br /&gt;
  Chennai - 600113&lt;br /&gt;
&lt;br /&gt;
For any queries, pls call 044-42284056.&lt;br /&gt;
&lt;br /&gt;
Pls confirm your participation by sending a mail to owasp@cognizant.com&lt;br /&gt;
&lt;br /&gt;
Pls note that all OWASP chapter meetings are free and there will not be any vendor pitches or sales presentations at OWASP meetings]&lt;br /&gt;
&lt;br /&gt;
==== Chennai OWASP Chapter Leaders ====&lt;br /&gt;
The chapter leaders are [mailto:venki@owasp.org Venkatesh Jagannathan] and [mailto:cumapathy@owasp.org Chandrasekar Umapathy]&lt;br /&gt;
__NOTOC__&lt;br /&gt;
&amp;lt;headertabs/&amp;gt;&lt;br /&gt;
[[Category:India]]&lt;/div&gt;</summary>
		<author><name>Heyvenki</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=File:Web_2.0_Security_Testing.pdf&amp;diff=134321</id>
		<title>File:Web 2.0 Security Testing.pdf</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=File:Web_2.0_Security_Testing.pdf&amp;diff=134321"/>
				<updated>2012-08-14T04:01:42Z</updated>
		
		<summary type="html">&lt;p&gt;Heyvenki: Web 2.0 Security Testing&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Web 2.0 Security Testing&lt;/div&gt;</summary>
		<author><name>Heyvenki</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=File:Application_Security.pdf&amp;diff=134320</id>
		<title>File:Application Security.pdf</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=File:Application_Security.pdf&amp;diff=134320"/>
				<updated>2012-08-14T04:00:36Z</updated>
		
		<summary type="html">&lt;p&gt;Heyvenki: Web Application Security&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Web Application Security&lt;/div&gt;</summary>
		<author><name>Heyvenki</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=File:AdvancedThreatModeling.pdf&amp;diff=134319</id>
		<title>File:AdvancedThreatModeling.pdf</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=File:AdvancedThreatModeling.pdf&amp;diff=134319"/>
				<updated>2012-08-14T03:59:59Z</updated>
		
		<summary type="html">&lt;p&gt;Heyvenki: Advanced Threat Modeling&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Advanced Threat Modeling&lt;/div&gt;</summary>
		<author><name>Heyvenki</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=Chennai&amp;diff=134318</id>
		<title>Chennai</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=Chennai&amp;diff=134318"/>
				<updated>2012-08-14T03:54:06Z</updated>
		
		<summary type="html">&lt;p&gt;Heyvenki: /* OWASP Chennai Chapter Meeting - 07 May 2011 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Chapter Template|chaptername=Chennai|extra=The chapter leaders are [mailto:venki@owasp.org Venkatesh Jagannathan] and [mailto:cumapathy@owasp.org Chandrasekar Umapathy]|mailinglistsite=http://lists.owasp.org/mailman/listinfo/owasp-chennai|emailarchives=http://lists.owasp.org/pipermail/owasp-chennai}}&lt;br /&gt;
&lt;br /&gt;
==== Local News ====&lt;br /&gt;
&amp;lt;paypal&amp;gt;Chennai&amp;lt;/paypal&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Stay Tuned ==&lt;br /&gt;
&lt;br /&gt;
Receive SMS Alerts - http://labs.google.co.in/smschannels/subscribe/OwaspChennai&lt;br /&gt;
&lt;br /&gt;
== Security Articles ==&lt;br /&gt;
March 2008 - '''A Checklist for Identifying Vulnerabilities''' - Vulnerabilities are holes in the application design / development / deployment that enable attackers to take advantage of the flaws present in the application... &lt;br /&gt;
[[https://www.owasp.org/images/c/c5/Vulnerability_Checklist.doc More]&lt;br /&gt;
&lt;br /&gt;
==== Chapter Meetings ====&lt;br /&gt;
&lt;br /&gt;
== OWASP Chennai Chapter Meeting - 11 August 2012==&lt;br /&gt;
&lt;br /&gt;
  09:30a – 09:35a =&amp;gt; &amp;lt;B&amp;gt;Opening the meeting&amp;lt;/B&amp;gt;&lt;br /&gt;
  09:36a – 10:35a =&amp;gt; &amp;lt;B&amp;gt;Big Data Security - Dr. T V Gopal [[https://www.owasp.org/images/e/ee/OWASP_BigDataGenSecurity.pdf Download Presentation]]&amp;lt;/B&amp;gt;&lt;br /&gt;
  10:36a – 11:05a =&amp;gt; &amp;lt;B&amp;gt;Break + Networking&amp;lt;/B&amp;gt;&lt;br /&gt;
  11:06a – 12:05n =&amp;gt; &amp;lt;B&amp;gt;SQL Injection &amp;amp; Basic Clickjacking - Vinod [[https://www.owasp.org/images/d/d5/Owasp_sql_inj_basic_clickjacking.pdf Download Presentation]]&amp;lt;/B&amp;gt;&lt;br /&gt;
  12:06p – 12:15p =&amp;gt; &amp;lt;B&amp;gt;Closing Remarks&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Venue:&lt;br /&gt;
----&lt;br /&gt;
&amp;lt;B&amp;gt;&lt;br /&gt;
Cognizant Technology Solutions,&lt;br /&gt;
Academy Auditorium,&lt;br /&gt;
5/535, Old Mahabalipuram Road,&lt;br /&gt;
Okkiam Thoraipakkam&lt;br /&gt;
Chennai - 600 096&lt;br /&gt;
&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== OWASP Chennai Chapter Meeting - 27 Jan 2012 ==&lt;br /&gt;
&lt;br /&gt;
  09:30a – 09:35a =&amp;gt; &amp;lt;B&amp;gt;Opening the meeting&amp;lt;/B&amp;gt;&lt;br /&gt;
  09:36a – 10:35a =&amp;gt; &amp;lt;B&amp;gt;Digital Forensics by Ms. Kala Bhaskar&amp;lt;/B&amp;gt;&lt;br /&gt;
  10:36a – 11:05a =&amp;gt; &amp;lt;B&amp;gt;Break + Networking&amp;lt;/B&amp;gt;&lt;br /&gt;
  11:06a – 12:05n =&amp;gt; &amp;lt;B&amp;gt;Identity &amp;amp; Access Management systems by Geetha [[https://www.owasp.org/images/0/01/AIM_-OWASP-Re.pdf Download Presentation]]&amp;lt;/B&amp;gt;&lt;br /&gt;
  12:06p – 12:10p =&amp;gt; &amp;lt;B&amp;gt;Closing remarks&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Venue:&lt;br /&gt;
----&lt;br /&gt;
&amp;lt;B&amp;gt;&lt;br /&gt;
Cognizant Technology Solutions,&lt;br /&gt;
Academy Auditorium,&lt;br /&gt;
5/535, Old Mahabalipuram Road,&lt;br /&gt;
Okkiam Thoraipakkam&lt;br /&gt;
Chennai - 600 096&lt;br /&gt;
&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== OWASP Chennai Chapter Meeting - 07 May 2011==&lt;br /&gt;
&lt;br /&gt;
  09:30a – 09:35a =&amp;gt; &amp;lt;B&amp;gt;Opening the meeting&amp;lt;/B&amp;gt;&lt;br /&gt;
  09:36a – 10:35a =&amp;gt; &amp;lt;B&amp;gt;Hacking - Tips &amp;amp; Tricks - Aananth [[https://www.owasp.org/images/c/c6/Hacking-Tips-and-Tricks.pdf Download Presentation]]&amp;lt;/B&amp;gt;&lt;br /&gt;
  10:36a – 11:05a =&amp;gt; &amp;lt;B&amp;gt;Break + Networking&amp;lt;/B&amp;gt;&lt;br /&gt;
  11:06a – 12:05n =&amp;gt; &amp;lt;B&amp;gt;Cyber Terrorism - Siva Kathiresan [[https://www.owasp.org/images/d/de/CyberTerrorism.pdf Download Presentation]]&amp;lt;/B&amp;gt;&lt;br /&gt;
  12:06p – 12:15p =&amp;gt; &amp;lt;B&amp;gt;Closing Remarks&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Venue:&lt;br /&gt;
----&lt;br /&gt;
&amp;lt;B&amp;gt;&lt;br /&gt;
Cognizant Technology Solutions,&lt;br /&gt;
Academy Auditorium,&lt;br /&gt;
5/535, Old Mahabalipuram Road,&lt;br /&gt;
Okkiam Thoraipakkam&lt;br /&gt;
Chennai - 600 096&lt;br /&gt;
&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== OWASP Chennai Chapter Meeting - 08 January 2011==&lt;br /&gt;
&lt;br /&gt;
  09:30a – 09:35a =&amp;gt; &amp;lt;B&amp;gt;Opening the meeting&amp;lt;/B&amp;gt;&lt;br /&gt;
  09:36a – 10:35a =&amp;gt; &amp;lt;B&amp;gt;Cloud Security - Ezhil Arasan Babaraj [[https://www.owasp.org/images/c/cc/Cloud_Security_%E2%80%93_An_Overview.pdf Download Presentation]]&amp;lt;/B&amp;gt;&lt;br /&gt;
  10:36a – 11:05a =&amp;gt; &amp;lt;B&amp;gt;Break + Networking&amp;lt;/B&amp;gt;&lt;br /&gt;
  11:06a – 12:05n =&amp;gt; &amp;lt;B&amp;gt;PCI DSS - Kuppuswamy M [[https://www.owasp.org/images/9/90/PCI-DSS.pdf Download Presentation]]&amp;lt;/B&amp;gt;&lt;br /&gt;
  12:06p – 12:15p =&amp;gt; &amp;lt;B&amp;gt;Closing Remarks&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Venue:&lt;br /&gt;
----&lt;br /&gt;
&amp;lt;B&amp;gt;&lt;br /&gt;
Cognizant Technology Solutions,&lt;br /&gt;
Academy Auditorium,&lt;br /&gt;
5/535, Old Mahabalipuram Road,&lt;br /&gt;
Okkiam Thoraipakkam&lt;br /&gt;
Chennai - 600 096&lt;br /&gt;
&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== OWASP Chennai Chapter Meeting - 31 July 2010 ==&lt;br /&gt;
&lt;br /&gt;
  09:30a – 09:35a =&amp;gt; &amp;lt;B&amp;gt;Opening the meeting&amp;lt;/B&amp;gt;&lt;br /&gt;
  09:36a – 10:30a =&amp;gt; &amp;lt;B&amp;gt;Application Security (Jamuna, Chief Guest)&amp;lt;/B&amp;gt;&lt;br /&gt;
  10:31a – 11:00a =&amp;gt; &amp;lt;B&amp;gt;Break + Networking&amp;lt;/B&amp;gt;&lt;br /&gt;
  11:01a – 12:00n =&amp;gt; &amp;lt;B&amp;gt;Threat Modeling&amp;lt;/B&amp;gt;&lt;br /&gt;
  12:01p – 01:00p =&amp;gt; &amp;lt;B&amp;gt;Web 2.0 Security Testing&amp;lt;/B&amp;gt;&lt;br /&gt;
  01:01p – 01:05p =&amp;gt; &amp;lt;B&amp;gt;Closing remarks&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Venue:&lt;br /&gt;
----&lt;br /&gt;
&amp;lt;B&amp;gt;&lt;br /&gt;
Cognizant Technology Solutions,&lt;br /&gt;
Academy Auditorium,&lt;br /&gt;
5/535, Old Mahabalipuram Road,&lt;br /&gt;
Okkiam Thoraipakkam&lt;br /&gt;
Chennai - 600 096&lt;br /&gt;
&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== OWASP Chennai Chapter Meeting - 17 May 2009 ==&lt;br /&gt;
&lt;br /&gt;
  09:30a to 09:45a &amp;lt;B&amp;gt;Introduction to OWASP &amp;amp; Welcome statement Presented by Chandrasekar Umapathy&amp;lt;/B&amp;gt;&lt;br /&gt;
  09:45a to 10:20a &amp;lt;B&amp;gt;Presentation by KrishnaKumar Madhavan on Security Challenges Faced in Globalization&amp;lt;/B&amp;gt;&lt;br /&gt;
  10:45a to 11:00a &amp;lt;B&amp;gt;Coffee/Tea break&amp;lt;/B&amp;gt;&lt;br /&gt;
  11:00a to 11:45a &amp;lt;B&amp;gt;Presentation by  Abhay Bhargav on Application Security Risk - The Full Circle&amp;lt;/B&amp;gt;&lt;br /&gt;
  12:00n to 12:45p &amp;lt;B&amp;gt; Presentation by Murugan IPS on Mobile Crimes&amp;lt;/B&amp;gt;&lt;br /&gt;
  12:45P to 12:50p &amp;lt;B&amp;gt; Closing Session &amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== OWASP Chennai Chapter Meeting - 21 March 2009 ==&lt;br /&gt;
The first meeting of the year 2009. The agenda will be:&lt;br /&gt;
&lt;br /&gt;
  09:30a to 10:00a &amp;lt;B&amp;gt;Introductions &amp;amp; Welcome statement&amp;lt;/B&amp;gt;&lt;br /&gt;
  10:00a to 10:45a &amp;lt;B&amp;gt;Presentation by Lavakumar on vulnerability in Flex Applications [[https://www.owasp.org/images/e/e3/FlashSecurity.ppt Download Presentation]]&amp;lt;/B&amp;gt;&lt;br /&gt;
  10:45a to 11:00a &amp;lt;B&amp;gt;Coffee/Tea break&amp;lt;/B&amp;gt;&lt;br /&gt;
  11:00a to 12:00n &amp;lt;B&amp;gt;Presentation by Venki on top 25 programming errors [[https://www.owasp.org/images/1/11/Top25ProgrammingErrors.ppt Download Presentation]]&amp;lt;/B&amp;gt;&lt;br /&gt;
  12:00n to 12:01p &amp;lt;B&amp;gt;Closing Session&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For any questions, call +91-9840148148&lt;br /&gt;
&lt;br /&gt;
Venue:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;B&amp;gt;5/535, Old Mahabalipuram Road,&lt;br /&gt;
&lt;br /&gt;
Okkiam Thoraipakkam&lt;br /&gt;
&lt;br /&gt;
Chennai - 600 096&lt;br /&gt;
&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You are all invited.&lt;br /&gt;
&lt;br /&gt;
== You are Invited for the OWASP Chennai chapter Kick off Meeting - 2 February 2007 ==&lt;br /&gt;
This first meeting will serve as an introduction to OWASP and will have a discussion centered around our activities for the year 2007. &lt;br /&gt;
&lt;br /&gt;
The agenda:&lt;br /&gt;
 &lt;br /&gt;
  14.00 - 14.15: Welcome &amp;amp; Member Introduction&lt;br /&gt;
  14.15 - 14.30: OWASP Introduction, Anand,Cognizant &lt;br /&gt;
  14.30 - 15.30: Presentation on Phishing, Sreemathy Varadan, Cognizant [[https://www.owasp.org/images/a/a3/Phishing.ppt Download Presentation]]&lt;br /&gt;
  15.30 - 16.00: Discussion - Meeting Schedule for 2007, Chennai Chapter Activities&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Cognizant Technology solutions will be the sponsor for this meeting and the location would be &lt;br /&gt;
  Third Floor, &lt;br /&gt;
  Elnet Software City,&lt;br /&gt;
  T.S.140, Block 2&amp;amp;9 C.P.T.Road, &lt;br /&gt;
  Taramani,&lt;br /&gt;
  Chennai - 600113&lt;br /&gt;
&lt;br /&gt;
For any queries, pls call 044-42284056.&lt;br /&gt;
&lt;br /&gt;
Pls confirm your participation by sending a mail to owasp@cognizant.com&lt;br /&gt;
&lt;br /&gt;
Pls note that all OWASP chapter meetings are free and there will not be any vendor pitches or sales presentations at OWASP meetings]&lt;br /&gt;
&lt;br /&gt;
==== Chennai OWASP Chapter Leaders ====&lt;br /&gt;
The chapter leaders are [mailto:venki@owasp.org Venkatesh Jagannathan] and [mailto:cumapathy@owasp.org Chandrasekar Umapathy]&lt;br /&gt;
__NOTOC__&lt;br /&gt;
&amp;lt;headertabs/&amp;gt;&lt;br /&gt;
[[Category:India]]&lt;/div&gt;</summary>
		<author><name>Heyvenki</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=Chennai&amp;diff=134317</id>
		<title>Chennai</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=Chennai&amp;diff=134317"/>
				<updated>2012-08-14T03:51:15Z</updated>
		
		<summary type="html">&lt;p&gt;Heyvenki: /* OWASP Chennai Chapter Meeting - 31 July 2010 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Chapter Template|chaptername=Chennai|extra=The chapter leaders are [mailto:venki@owasp.org Venkatesh Jagannathan] and [mailto:cumapathy@owasp.org Chandrasekar Umapathy]|mailinglistsite=http://lists.owasp.org/mailman/listinfo/owasp-chennai|emailarchives=http://lists.owasp.org/pipermail/owasp-chennai}}&lt;br /&gt;
&lt;br /&gt;
==== Local News ====&lt;br /&gt;
&amp;lt;paypal&amp;gt;Chennai&amp;lt;/paypal&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Stay Tuned ==&lt;br /&gt;
&lt;br /&gt;
Receive SMS Alerts - http://labs.google.co.in/smschannels/subscribe/OwaspChennai&lt;br /&gt;
&lt;br /&gt;
== Security Articles ==&lt;br /&gt;
March 2008 - '''A Checklist for Identifying Vulnerabilities''' - Vulnerabilities are holes in the application design / development / deployment that enable attackers to take advantage of the flaws present in the application... &lt;br /&gt;
[[https://www.owasp.org/images/c/c5/Vulnerability_Checklist.doc More]&lt;br /&gt;
&lt;br /&gt;
==== Chapter Meetings ====&lt;br /&gt;
&lt;br /&gt;
== OWASP Chennai Chapter Meeting - 11 August 2012==&lt;br /&gt;
&lt;br /&gt;
  09:30a – 09:35a =&amp;gt; &amp;lt;B&amp;gt;Opening the meeting&amp;lt;/B&amp;gt;&lt;br /&gt;
  09:36a – 10:35a =&amp;gt; &amp;lt;B&amp;gt;Big Data Security - Dr. T V Gopal [[https://www.owasp.org/images/e/ee/OWASP_BigDataGenSecurity.pdf Download Presentation]]&amp;lt;/B&amp;gt;&lt;br /&gt;
  10:36a – 11:05a =&amp;gt; &amp;lt;B&amp;gt;Break + Networking&amp;lt;/B&amp;gt;&lt;br /&gt;
  11:06a – 12:05n =&amp;gt; &amp;lt;B&amp;gt;SQL Injection &amp;amp; Basic Clickjacking - Vinod [[https://www.owasp.org/images/d/d5/Owasp_sql_inj_basic_clickjacking.pdf Download Presentation]]&amp;lt;/B&amp;gt;&lt;br /&gt;
  12:06p – 12:15p =&amp;gt; &amp;lt;B&amp;gt;Closing Remarks&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Venue:&lt;br /&gt;
----&lt;br /&gt;
&amp;lt;B&amp;gt;&lt;br /&gt;
Cognizant Technology Solutions,&lt;br /&gt;
Academy Auditorium,&lt;br /&gt;
5/535, Old Mahabalipuram Road,&lt;br /&gt;
Okkiam Thoraipakkam&lt;br /&gt;
Chennai - 600 096&lt;br /&gt;
&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== OWASP Chennai Chapter Meeting - 27 Jan 2012 ==&lt;br /&gt;
&lt;br /&gt;
  09:30a – 09:35a =&amp;gt; &amp;lt;B&amp;gt;Opening the meeting&amp;lt;/B&amp;gt;&lt;br /&gt;
  09:36a – 10:35a =&amp;gt; &amp;lt;B&amp;gt;Digital Forensics by Ms. Kala Bhaskar&amp;lt;/B&amp;gt;&lt;br /&gt;
  10:36a – 11:05a =&amp;gt; &amp;lt;B&amp;gt;Break + Networking&amp;lt;/B&amp;gt;&lt;br /&gt;
  11:06a – 12:05n =&amp;gt; &amp;lt;B&amp;gt;Identity &amp;amp; Access Management systems by Geetha [[https://www.owasp.org/images/0/01/AIM_-OWASP-Re.pdf Download Presentation]]&amp;lt;/B&amp;gt;&lt;br /&gt;
  12:06p – 12:10p =&amp;gt; &amp;lt;B&amp;gt;Closing remarks&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Venue:&lt;br /&gt;
----&lt;br /&gt;
&amp;lt;B&amp;gt;&lt;br /&gt;
Cognizant Technology Solutions,&lt;br /&gt;
Academy Auditorium,&lt;br /&gt;
5/535, Old Mahabalipuram Road,&lt;br /&gt;
Okkiam Thoraipakkam&lt;br /&gt;
Chennai - 600 096&lt;br /&gt;
&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== OWASP Chennai Chapter Meeting - 07 May 2011==&lt;br /&gt;
&lt;br /&gt;
  09:30a – 09:35a =&amp;gt; &amp;lt;B&amp;gt;Opening the meeting&amp;lt;/B&amp;gt;&lt;br /&gt;
  09:36a – 10:35a =&amp;gt; &amp;lt;B&amp;gt;Hacking - Tips &amp;amp; Tricks - Aananth [[https://www.owasp.org/images/c/c6/Hacking-Tips-and-Tricks.pdf Download Presentation]]&amp;lt;/B&amp;gt;&lt;br /&gt;
  10:36a – 11:05a =&amp;gt; &amp;lt;B&amp;gt;Break + Networking&amp;lt;/B&amp;gt;&lt;br /&gt;
  11:06a – 12:05n =&amp;gt; &amp;lt;B&amp;gt;Cyber Terrorism - Siva Kathiresan [[https://www.owasp.org/images/d/de/CyberTerrorism.pdf Download Presentation]]&amp;lt;/B&amp;gt;&lt;br /&gt;
  12:06p – 12:15p =&amp;gt; &amp;lt;B&amp;gt;Closing Remarks&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Venue:&lt;br /&gt;
----&lt;br /&gt;
&amp;lt;B&amp;gt;&lt;br /&gt;
Cognizant Technology Solutions,&lt;br /&gt;
Academy Auditorium,&lt;br /&gt;
5/535, Old Mahabalipuram Road,&lt;br /&gt;
Okkiam Thoraipakkam&lt;br /&gt;
Chennai - 600 096&lt;br /&gt;
&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== OWASP Chennai Chapter Meeting - 31 July 2010 ==&lt;br /&gt;
&lt;br /&gt;
  09:30a – 09:35a =&amp;gt; &amp;lt;B&amp;gt;Opening the meeting&amp;lt;/B&amp;gt;&lt;br /&gt;
  09:36a – 10:30a =&amp;gt; &amp;lt;B&amp;gt;Application Security (Jamuna, Chief Guest)&amp;lt;/B&amp;gt;&lt;br /&gt;
  10:31a – 11:00a =&amp;gt; &amp;lt;B&amp;gt;Break + Networking&amp;lt;/B&amp;gt;&lt;br /&gt;
  11:01a – 12:00n =&amp;gt; &amp;lt;B&amp;gt;Threat Modeling&amp;lt;/B&amp;gt;&lt;br /&gt;
  12:01p – 01:00p =&amp;gt; &amp;lt;B&amp;gt;Web 2.0 Security Testing&amp;lt;/B&amp;gt;&lt;br /&gt;
  01:01p – 01:05p =&amp;gt; &amp;lt;B&amp;gt;Closing remarks&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Venue:&lt;br /&gt;
----&lt;br /&gt;
&amp;lt;B&amp;gt;&lt;br /&gt;
Cognizant Technology Solutions,&lt;br /&gt;
Academy Auditorium,&lt;br /&gt;
5/535, Old Mahabalipuram Road,&lt;br /&gt;
Okkiam Thoraipakkam&lt;br /&gt;
Chennai - 600 096&lt;br /&gt;
&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== OWASP Chennai Chapter Meeting - 17 May 2009 ==&lt;br /&gt;
&lt;br /&gt;
  09:30a to 09:45a &amp;lt;B&amp;gt;Introduction to OWASP &amp;amp; Welcome statement Presented by Chandrasekar Umapathy&amp;lt;/B&amp;gt;&lt;br /&gt;
  09:45a to 10:20a &amp;lt;B&amp;gt;Presentation by KrishnaKumar Madhavan on Security Challenges Faced in Globalization&amp;lt;/B&amp;gt;&lt;br /&gt;
  10:45a to 11:00a &amp;lt;B&amp;gt;Coffee/Tea break&amp;lt;/B&amp;gt;&lt;br /&gt;
  11:00a to 11:45a &amp;lt;B&amp;gt;Presentation by  Abhay Bhargav on Application Security Risk - The Full Circle&amp;lt;/B&amp;gt;&lt;br /&gt;
  12:00n to 12:45p &amp;lt;B&amp;gt; Presentation by Murugan IPS on Mobile Crimes&amp;lt;/B&amp;gt;&lt;br /&gt;
  12:45P to 12:50p &amp;lt;B&amp;gt; Closing Session &amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== OWASP Chennai Chapter Meeting - 21 March 2009 ==&lt;br /&gt;
The first meeting of the year 2009. The agenda will be:&lt;br /&gt;
&lt;br /&gt;
  09:30a to 10:00a &amp;lt;B&amp;gt;Introductions &amp;amp; Welcome statement&amp;lt;/B&amp;gt;&lt;br /&gt;
  10:00a to 10:45a &amp;lt;B&amp;gt;Presentation by Lavakumar on vulnerability in Flex Applications [[https://www.owasp.org/images/e/e3/FlashSecurity.ppt Download Presentation]]&amp;lt;/B&amp;gt;&lt;br /&gt;
  10:45a to 11:00a &amp;lt;B&amp;gt;Coffee/Tea break&amp;lt;/B&amp;gt;&lt;br /&gt;
  11:00a to 12:00n &amp;lt;B&amp;gt;Presentation by Venki on top 25 programming errors [[https://www.owasp.org/images/1/11/Top25ProgrammingErrors.ppt Download Presentation]]&amp;lt;/B&amp;gt;&lt;br /&gt;
  12:00n to 12:01p &amp;lt;B&amp;gt;Closing Session&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For any questions, call +91-9840148148&lt;br /&gt;
&lt;br /&gt;
Venue:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;B&amp;gt;5/535, Old Mahabalipuram Road,&lt;br /&gt;
&lt;br /&gt;
Okkiam Thoraipakkam&lt;br /&gt;
&lt;br /&gt;
Chennai - 600 096&lt;br /&gt;
&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You are all invited.&lt;br /&gt;
&lt;br /&gt;
== You are Invited for the OWASP Chennai chapter Kick off Meeting - 2 February 2007 ==&lt;br /&gt;
This first meeting will serve as an introduction to OWASP and will have a discussion centered around our activities for the year 2007. &lt;br /&gt;
&lt;br /&gt;
The agenda:&lt;br /&gt;
 &lt;br /&gt;
  14.00 - 14.15: Welcome &amp;amp; Member Introduction&lt;br /&gt;
  14.15 - 14.30: OWASP Introduction, Anand,Cognizant &lt;br /&gt;
  14.30 - 15.30: Presentation on Phishing, Sreemathy Varadan, Cognizant [[https://www.owasp.org/images/a/a3/Phishing.ppt Download Presentation]]&lt;br /&gt;
  15.30 - 16.00: Discussion - Meeting Schedule for 2007, Chennai Chapter Activities&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Cognizant Technology solutions will be the sponsor for this meeting and the location would be &lt;br /&gt;
  Third Floor, &lt;br /&gt;
  Elnet Software City,&lt;br /&gt;
  T.S.140, Block 2&amp;amp;9 C.P.T.Road, &lt;br /&gt;
  Taramani,&lt;br /&gt;
  Chennai - 600113&lt;br /&gt;
&lt;br /&gt;
For any queries, pls call 044-42284056.&lt;br /&gt;
&lt;br /&gt;
Pls confirm your participation by sending a mail to owasp@cognizant.com&lt;br /&gt;
&lt;br /&gt;
Pls note that all OWASP chapter meetings are free and there will not be any vendor pitches or sales presentations at OWASP meetings]&lt;br /&gt;
&lt;br /&gt;
==== Chennai OWASP Chapter Leaders ====&lt;br /&gt;
The chapter leaders are [mailto:venki@owasp.org Venkatesh Jagannathan] and [mailto:cumapathy@owasp.org Chandrasekar Umapathy]&lt;br /&gt;
__NOTOC__&lt;br /&gt;
&amp;lt;headertabs/&amp;gt;&lt;br /&gt;
[[Category:India]]&lt;/div&gt;</summary>
		<author><name>Heyvenki</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=File:PCI-DSS.pdf&amp;diff=134316</id>
		<title>File:PCI-DSS.pdf</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=File:PCI-DSS.pdf&amp;diff=134316"/>
				<updated>2012-08-14T03:47:19Z</updated>
		
		<summary type="html">&lt;p&gt;Heyvenki: PCI DSS&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;PCI DSS&lt;/div&gt;</summary>
		<author><name>Heyvenki</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=File:Cloud_Security_%E2%80%93_An_Overview.pdf&amp;diff=134315</id>
		<title>File:Cloud Security – An Overview.pdf</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=File:Cloud_Security_%E2%80%93_An_Overview.pdf&amp;diff=134315"/>
				<updated>2012-08-14T03:46:42Z</updated>
		
		<summary type="html">&lt;p&gt;Heyvenki: Cloud Security&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Cloud Security&lt;/div&gt;</summary>
		<author><name>Heyvenki</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=File:CyberTerrorism.pdf&amp;diff=134314</id>
		<title>File:CyberTerrorism.pdf</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=File:CyberTerrorism.pdf&amp;diff=134314"/>
				<updated>2012-08-14T03:43:42Z</updated>
		
		<summary type="html">&lt;p&gt;Heyvenki: Cyber Terrorism&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Cyber Terrorism&lt;/div&gt;</summary>
		<author><name>Heyvenki</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=File:Hacking-Tips-and-Tricks.pdf&amp;diff=134313</id>
		<title>File:Hacking-Tips-and-Tricks.pdf</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=File:Hacking-Tips-and-Tricks.pdf&amp;diff=134313"/>
				<updated>2012-08-14T03:42:47Z</updated>
		
		<summary type="html">&lt;p&gt;Heyvenki: Hacking-Tips&amp;amp;Tricks&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hacking-Tips&amp;amp;Tricks&lt;/div&gt;</summary>
		<author><name>Heyvenki</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=Chennai&amp;diff=134312</id>
		<title>Chennai</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=Chennai&amp;diff=134312"/>
				<updated>2012-08-14T03:38:41Z</updated>
		
		<summary type="html">&lt;p&gt;Heyvenki: /* OWASP Chennai Chapter Meeting - 27 Jan 2012 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Chapter Template|chaptername=Chennai|extra=The chapter leaders are [mailto:venki@owasp.org Venkatesh Jagannathan] and [mailto:cumapathy@owasp.org Chandrasekar Umapathy]|mailinglistsite=http://lists.owasp.org/mailman/listinfo/owasp-chennai|emailarchives=http://lists.owasp.org/pipermail/owasp-chennai}}&lt;br /&gt;
&lt;br /&gt;
==== Local News ====&lt;br /&gt;
&amp;lt;paypal&amp;gt;Chennai&amp;lt;/paypal&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Stay Tuned ==&lt;br /&gt;
&lt;br /&gt;
Receive SMS Alerts - http://labs.google.co.in/smschannels/subscribe/OwaspChennai&lt;br /&gt;
&lt;br /&gt;
== Security Articles ==&lt;br /&gt;
March 2008 - '''A Checklist for Identifying Vulnerabilities''' - Vulnerabilities are holes in the application design / development / deployment that enable attackers to take advantage of the flaws present in the application... &lt;br /&gt;
[[https://www.owasp.org/images/c/c5/Vulnerability_Checklist.doc More]&lt;br /&gt;
&lt;br /&gt;
==== Chapter Meetings ====&lt;br /&gt;
&lt;br /&gt;
== OWASP Chennai Chapter Meeting - 11 August 2012==&lt;br /&gt;
&lt;br /&gt;
  09:30a – 09:35a =&amp;gt; &amp;lt;B&amp;gt;Opening the meeting&amp;lt;/B&amp;gt;&lt;br /&gt;
  09:36a – 10:35a =&amp;gt; &amp;lt;B&amp;gt;Big Data Security - Dr. T V Gopal [[https://www.owasp.org/images/e/ee/OWASP_BigDataGenSecurity.pdf Download Presentation]]&amp;lt;/B&amp;gt;&lt;br /&gt;
  10:36a – 11:05a =&amp;gt; &amp;lt;B&amp;gt;Break + Networking&amp;lt;/B&amp;gt;&lt;br /&gt;
  11:06a – 12:05n =&amp;gt; &amp;lt;B&amp;gt;SQL Injection &amp;amp; Basic Clickjacking - Vinod [[https://www.owasp.org/images/d/d5/Owasp_sql_inj_basic_clickjacking.pdf Download Presentation]]&amp;lt;/B&amp;gt;&lt;br /&gt;
  12:06p – 12:15p =&amp;gt; &amp;lt;B&amp;gt;Closing Remarks&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Venue:&lt;br /&gt;
----&lt;br /&gt;
&amp;lt;B&amp;gt;&lt;br /&gt;
Cognizant Technology Solutions,&lt;br /&gt;
Academy Auditorium,&lt;br /&gt;
5/535, Old Mahabalipuram Road,&lt;br /&gt;
Okkiam Thoraipakkam&lt;br /&gt;
Chennai - 600 096&lt;br /&gt;
&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== OWASP Chennai Chapter Meeting - 27 Jan 2012 ==&lt;br /&gt;
&lt;br /&gt;
  09:30a – 09:35a =&amp;gt; &amp;lt;B&amp;gt;Opening the meeting&amp;lt;/B&amp;gt;&lt;br /&gt;
  09:36a – 10:35a =&amp;gt; &amp;lt;B&amp;gt;Digital Forensics by Ms. Kala Bhaskar&amp;lt;/B&amp;gt;&lt;br /&gt;
  10:36a – 11:05a =&amp;gt; &amp;lt;B&amp;gt;Break + Networking&amp;lt;/B&amp;gt;&lt;br /&gt;
  11:06a – 12:05n =&amp;gt; &amp;lt;B&amp;gt;Identity &amp;amp; Access Management systems by Geetha [[https://www.owasp.org/images/0/01/AIM_-OWASP-Re.pdf Download Presentation]]&amp;lt;/B&amp;gt;&lt;br /&gt;
  12:06p – 12:10p =&amp;gt; &amp;lt;B&amp;gt;Closing remarks&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Venue:&lt;br /&gt;
----&lt;br /&gt;
&amp;lt;B&amp;gt;&lt;br /&gt;
Cognizant Technology Solutions,&lt;br /&gt;
Academy Auditorium,&lt;br /&gt;
5/535, Old Mahabalipuram Road,&lt;br /&gt;
Okkiam Thoraipakkam&lt;br /&gt;
Chennai - 600 096&lt;br /&gt;
&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== OWASP Chennai Chapter Meeting - 31 July 2010 ==&lt;br /&gt;
&lt;br /&gt;
  09:30a – 09:35a =&amp;gt; &amp;lt;B&amp;gt;Opening the meeting&amp;lt;/B&amp;gt;&lt;br /&gt;
  09:36a – 10:30a =&amp;gt; &amp;lt;B&amp;gt;Application Security (Jamuna, Chief Guest)&amp;lt;/B&amp;gt;&lt;br /&gt;
  10:31a – 11:00a =&amp;gt; &amp;lt;B&amp;gt;Break + Networking&amp;lt;/B&amp;gt;&lt;br /&gt;
  11:01a – 12:00n =&amp;gt; &amp;lt;B&amp;gt;Threat Modeling&amp;lt;/B&amp;gt;&lt;br /&gt;
  12:01p – 01:00p =&amp;gt; &amp;lt;B&amp;gt;Web 2.0 Security Testing&amp;lt;/B&amp;gt;&lt;br /&gt;
  01:01p – 01:05p =&amp;gt; &amp;lt;B&amp;gt;Closing remarks&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Venue:&lt;br /&gt;
----&lt;br /&gt;
&amp;lt;B&amp;gt;&lt;br /&gt;
Cognizant Technology Solutions,&lt;br /&gt;
Academy Auditorium,&lt;br /&gt;
5/535, Old Mahabalipuram Road,&lt;br /&gt;
Okkiam Thoraipakkam&lt;br /&gt;
Chennai - 600 096&lt;br /&gt;
&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== OWASP Chennai Chapter Meeting - 17 May 2009 ==&lt;br /&gt;
&lt;br /&gt;
  09:30a to 09:45a &amp;lt;B&amp;gt;Introduction to OWASP &amp;amp; Welcome statement Presented by Chandrasekar Umapathy&amp;lt;/B&amp;gt;&lt;br /&gt;
  09:45a to 10:20a &amp;lt;B&amp;gt;Presentation by KrishnaKumar Madhavan on Security Challenges Faced in Globalization&amp;lt;/B&amp;gt;&lt;br /&gt;
  10:45a to 11:00a &amp;lt;B&amp;gt;Coffee/Tea break&amp;lt;/B&amp;gt;&lt;br /&gt;
  11:00a to 11:45a &amp;lt;B&amp;gt;Presentation by  Abhay Bhargav on Application Security Risk - The Full Circle&amp;lt;/B&amp;gt;&lt;br /&gt;
  12:00n to 12:45p &amp;lt;B&amp;gt; Presentation by Murugan IPS on Mobile Crimes&amp;lt;/B&amp;gt;&lt;br /&gt;
  12:45P to 12:50p &amp;lt;B&amp;gt; Closing Session &amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== OWASP Chennai Chapter Meeting - 21 March 2009 ==&lt;br /&gt;
The first meeting of the year 2009. The agenda will be:&lt;br /&gt;
&lt;br /&gt;
  09:30a to 10:00a &amp;lt;B&amp;gt;Introductions &amp;amp; Welcome statement&amp;lt;/B&amp;gt;&lt;br /&gt;
  10:00a to 10:45a &amp;lt;B&amp;gt;Presentation by Lavakumar on vulnerability in Flex Applications [[https://www.owasp.org/images/e/e3/FlashSecurity.ppt Download Presentation]]&amp;lt;/B&amp;gt;&lt;br /&gt;
  10:45a to 11:00a &amp;lt;B&amp;gt;Coffee/Tea break&amp;lt;/B&amp;gt;&lt;br /&gt;
  11:00a to 12:00n &amp;lt;B&amp;gt;Presentation by Venki on top 25 programming errors [[https://www.owasp.org/images/1/11/Top25ProgrammingErrors.ppt Download Presentation]]&amp;lt;/B&amp;gt;&lt;br /&gt;
  12:00n to 12:01p &amp;lt;B&amp;gt;Closing Session&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For any questions, call +91-9840148148&lt;br /&gt;
&lt;br /&gt;
Venue:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;B&amp;gt;5/535, Old Mahabalipuram Road,&lt;br /&gt;
&lt;br /&gt;
Okkiam Thoraipakkam&lt;br /&gt;
&lt;br /&gt;
Chennai - 600 096&lt;br /&gt;
&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You are all invited.&lt;br /&gt;
&lt;br /&gt;
== You are Invited for the OWASP Chennai chapter Kick off Meeting - 2 February 2007 ==&lt;br /&gt;
This first meeting will serve as an introduction to OWASP and will have a discussion centered around our activities for the year 2007. &lt;br /&gt;
&lt;br /&gt;
The agenda:&lt;br /&gt;
 &lt;br /&gt;
  14.00 - 14.15: Welcome &amp;amp; Member Introduction&lt;br /&gt;
  14.15 - 14.30: OWASP Introduction, Anand,Cognizant &lt;br /&gt;
  14.30 - 15.30: Presentation on Phishing, Sreemathy Varadan, Cognizant [[https://www.owasp.org/images/a/a3/Phishing.ppt Download Presentation]]&lt;br /&gt;
  15.30 - 16.00: Discussion - Meeting Schedule for 2007, Chennai Chapter Activities&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Cognizant Technology solutions will be the sponsor for this meeting and the location would be &lt;br /&gt;
  Third Floor, &lt;br /&gt;
  Elnet Software City,&lt;br /&gt;
  T.S.140, Block 2&amp;amp;9 C.P.T.Road, &lt;br /&gt;
  Taramani,&lt;br /&gt;
  Chennai - 600113&lt;br /&gt;
&lt;br /&gt;
For any queries, pls call 044-42284056.&lt;br /&gt;
&lt;br /&gt;
Pls confirm your participation by sending a mail to owasp@cognizant.com&lt;br /&gt;
&lt;br /&gt;
Pls note that all OWASP chapter meetings are free and there will not be any vendor pitches or sales presentations at OWASP meetings]&lt;br /&gt;
&lt;br /&gt;
==== Chennai OWASP Chapter Leaders ====&lt;br /&gt;
The chapter leaders are [mailto:venki@owasp.org Venkatesh Jagannathan] and [mailto:cumapathy@owasp.org Chandrasekar Umapathy]&lt;br /&gt;
__NOTOC__&lt;br /&gt;
&amp;lt;headertabs/&amp;gt;&lt;br /&gt;
[[Category:India]]&lt;/div&gt;</summary>
		<author><name>Heyvenki</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=Chennai&amp;diff=134311</id>
		<title>Chennai</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=Chennai&amp;diff=134311"/>
				<updated>2012-08-14T03:37:42Z</updated>
		
		<summary type="html">&lt;p&gt;Heyvenki: /* OWASP Chennai Chapter Meeting - 31 July 2010 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Chapter Template|chaptername=Chennai|extra=The chapter leaders are [mailto:venki@owasp.org Venkatesh Jagannathan] and [mailto:cumapathy@owasp.org Chandrasekar Umapathy]|mailinglistsite=http://lists.owasp.org/mailman/listinfo/owasp-chennai|emailarchives=http://lists.owasp.org/pipermail/owasp-chennai}}&lt;br /&gt;
&lt;br /&gt;
==== Local News ====&lt;br /&gt;
&amp;lt;paypal&amp;gt;Chennai&amp;lt;/paypal&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Stay Tuned ==&lt;br /&gt;
&lt;br /&gt;
Receive SMS Alerts - http://labs.google.co.in/smschannels/subscribe/OwaspChennai&lt;br /&gt;
&lt;br /&gt;
== Security Articles ==&lt;br /&gt;
March 2008 - '''A Checklist for Identifying Vulnerabilities''' - Vulnerabilities are holes in the application design / development / deployment that enable attackers to take advantage of the flaws present in the application... &lt;br /&gt;
[[https://www.owasp.org/images/c/c5/Vulnerability_Checklist.doc More]&lt;br /&gt;
&lt;br /&gt;
==== Chapter Meetings ====&lt;br /&gt;
&lt;br /&gt;
== OWASP Chennai Chapter Meeting - 11 August 2012==&lt;br /&gt;
&lt;br /&gt;
  09:30a – 09:35a =&amp;gt; &amp;lt;B&amp;gt;Opening the meeting&amp;lt;/B&amp;gt;&lt;br /&gt;
  09:36a – 10:35a =&amp;gt; &amp;lt;B&amp;gt;Big Data Security - Dr. T V Gopal [[https://www.owasp.org/images/e/ee/OWASP_BigDataGenSecurity.pdf Download Presentation]]&amp;lt;/B&amp;gt;&lt;br /&gt;
  10:36a – 11:05a =&amp;gt; &amp;lt;B&amp;gt;Break + Networking&amp;lt;/B&amp;gt;&lt;br /&gt;
  11:06a – 12:05n =&amp;gt; &amp;lt;B&amp;gt;SQL Injection &amp;amp; Basic Clickjacking - Vinod [[https://www.owasp.org/images/d/d5/Owasp_sql_inj_basic_clickjacking.pdf Download Presentation]]&amp;lt;/B&amp;gt;&lt;br /&gt;
  12:06p – 12:15p =&amp;gt; &amp;lt;B&amp;gt;Closing Remarks&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Venue:&lt;br /&gt;
----&lt;br /&gt;
&amp;lt;B&amp;gt;&lt;br /&gt;
Cognizant Technology Solutions,&lt;br /&gt;
Academy Auditorium,&lt;br /&gt;
5/535, Old Mahabalipuram Road,&lt;br /&gt;
Okkiam Thoraipakkam&lt;br /&gt;
Chennai - 600 096&lt;br /&gt;
&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== OWASP Chennai Chapter Meeting - 27 Jan 2012 ==&lt;br /&gt;
&lt;br /&gt;
  09:30a – 09:35a =&amp;gt; &amp;lt;B&amp;gt;Opening the meeting&amp;lt;/B&amp;gt;&lt;br /&gt;
  09:36a – 10:35a =&amp;gt; &amp;lt;B&amp;gt;Digital Forensics by Ms. Kala Bhaskar&amp;lt;/B&amp;gt;&lt;br /&gt;
  10:36a – 11:05a =&amp;gt; &amp;lt;B&amp;gt;Break + Networking&amp;lt;/B&amp;gt;&lt;br /&gt;
  11:06a – 12:05n =&amp;gt; &amp;lt;B&amp;gt;Identity &amp;amp; Access Management systems by Geetha &amp;lt;/B&amp;gt;&lt;br /&gt;
  12:06p – 12:10p =&amp;gt; &amp;lt;B&amp;gt;Closing remarks&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Venue:&lt;br /&gt;
----&lt;br /&gt;
&amp;lt;B&amp;gt;&lt;br /&gt;
Cognizant Technology Solutions,&lt;br /&gt;
Academy Auditorium,&lt;br /&gt;
5/535, Old Mahabalipuram Road,&lt;br /&gt;
Okkiam Thoraipakkam&lt;br /&gt;
Chennai - 600 096&lt;br /&gt;
&amp;lt;/B&amp;gt;&lt;br /&gt;
== OWASP Chennai Chapter Meeting - 31 July 2010 ==&lt;br /&gt;
&lt;br /&gt;
  09:30a – 09:35a =&amp;gt; &amp;lt;B&amp;gt;Opening the meeting&amp;lt;/B&amp;gt;&lt;br /&gt;
  09:36a – 10:30a =&amp;gt; &amp;lt;B&amp;gt;Application Security (Jamuna, Chief Guest)&amp;lt;/B&amp;gt;&lt;br /&gt;
  10:31a – 11:00a =&amp;gt; &amp;lt;B&amp;gt;Break + Networking&amp;lt;/B&amp;gt;&lt;br /&gt;
  11:01a – 12:00n =&amp;gt; &amp;lt;B&amp;gt;Threat Modeling&amp;lt;/B&amp;gt;&lt;br /&gt;
  12:01p – 01:00p =&amp;gt; &amp;lt;B&amp;gt;Web 2.0 Security Testing&amp;lt;/B&amp;gt;&lt;br /&gt;
  01:01p – 01:05p =&amp;gt; &amp;lt;B&amp;gt;Closing remarks&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Venue:&lt;br /&gt;
----&lt;br /&gt;
&amp;lt;B&amp;gt;&lt;br /&gt;
Cognizant Technology Solutions,&lt;br /&gt;
Academy Auditorium,&lt;br /&gt;
5/535, Old Mahabalipuram Road,&lt;br /&gt;
Okkiam Thoraipakkam&lt;br /&gt;
Chennai - 600 096&lt;br /&gt;
&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== OWASP Chennai Chapter Meeting - 17 May 2009 ==&lt;br /&gt;
&lt;br /&gt;
  09:30a to 09:45a &amp;lt;B&amp;gt;Introduction to OWASP &amp;amp; Welcome statement Presented by Chandrasekar Umapathy&amp;lt;/B&amp;gt;&lt;br /&gt;
  09:45a to 10:20a &amp;lt;B&amp;gt;Presentation by KrishnaKumar Madhavan on Security Challenges Faced in Globalization&amp;lt;/B&amp;gt;&lt;br /&gt;
  10:45a to 11:00a &amp;lt;B&amp;gt;Coffee/Tea break&amp;lt;/B&amp;gt;&lt;br /&gt;
  11:00a to 11:45a &amp;lt;B&amp;gt;Presentation by  Abhay Bhargav on Application Security Risk - The Full Circle&amp;lt;/B&amp;gt;&lt;br /&gt;
  12:00n to 12:45p &amp;lt;B&amp;gt; Presentation by Murugan IPS on Mobile Crimes&amp;lt;/B&amp;gt;&lt;br /&gt;
  12:45P to 12:50p &amp;lt;B&amp;gt; Closing Session &amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== OWASP Chennai Chapter Meeting - 21 March 2009 ==&lt;br /&gt;
The first meeting of the year 2009. The agenda will be:&lt;br /&gt;
&lt;br /&gt;
  09:30a to 10:00a &amp;lt;B&amp;gt;Introductions &amp;amp; Welcome statement&amp;lt;/B&amp;gt;&lt;br /&gt;
  10:00a to 10:45a &amp;lt;B&amp;gt;Presentation by Lavakumar on vulnerability in Flex Applications [[https://www.owasp.org/images/e/e3/FlashSecurity.ppt Download Presentation]]&amp;lt;/B&amp;gt;&lt;br /&gt;
  10:45a to 11:00a &amp;lt;B&amp;gt;Coffee/Tea break&amp;lt;/B&amp;gt;&lt;br /&gt;
  11:00a to 12:00n &amp;lt;B&amp;gt;Presentation by Venki on top 25 programming errors [[https://www.owasp.org/images/1/11/Top25ProgrammingErrors.ppt Download Presentation]]&amp;lt;/B&amp;gt;&lt;br /&gt;
  12:00n to 12:01p &amp;lt;B&amp;gt;Closing Session&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For any questions, call +91-9840148148&lt;br /&gt;
&lt;br /&gt;
Venue:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;B&amp;gt;5/535, Old Mahabalipuram Road,&lt;br /&gt;
&lt;br /&gt;
Okkiam Thoraipakkam&lt;br /&gt;
&lt;br /&gt;
Chennai - 600 096&lt;br /&gt;
&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You are all invited.&lt;br /&gt;
&lt;br /&gt;
== You are Invited for the OWASP Chennai chapter Kick off Meeting - 2 February 2007 ==&lt;br /&gt;
This first meeting will serve as an introduction to OWASP and will have a discussion centered around our activities for the year 2007. &lt;br /&gt;
&lt;br /&gt;
The agenda:&lt;br /&gt;
 &lt;br /&gt;
  14.00 - 14.15: Welcome &amp;amp; Member Introduction&lt;br /&gt;
  14.15 - 14.30: OWASP Introduction, Anand,Cognizant &lt;br /&gt;
  14.30 - 15.30: Presentation on Phishing, Sreemathy Varadan, Cognizant [[https://www.owasp.org/images/a/a3/Phishing.ppt Download Presentation]]&lt;br /&gt;
  15.30 - 16.00: Discussion - Meeting Schedule for 2007, Chennai Chapter Activities&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Cognizant Technology solutions will be the sponsor for this meeting and the location would be &lt;br /&gt;
  Third Floor, &lt;br /&gt;
  Elnet Software City,&lt;br /&gt;
  T.S.140, Block 2&amp;amp;9 C.P.T.Road, &lt;br /&gt;
  Taramani,&lt;br /&gt;
  Chennai - 600113&lt;br /&gt;
&lt;br /&gt;
For any queries, pls call 044-42284056.&lt;br /&gt;
&lt;br /&gt;
Pls confirm your participation by sending a mail to owasp@cognizant.com&lt;br /&gt;
&lt;br /&gt;
Pls note that all OWASP chapter meetings are free and there will not be any vendor pitches or sales presentations at OWASP meetings]&lt;br /&gt;
&lt;br /&gt;
==== Chennai OWASP Chapter Leaders ====&lt;br /&gt;
The chapter leaders are [mailto:venki@owasp.org Venkatesh Jagannathan] and [mailto:cumapathy@owasp.org Chandrasekar Umapathy]&lt;br /&gt;
__NOTOC__&lt;br /&gt;
&amp;lt;headertabs/&amp;gt;&lt;br /&gt;
[[Category:India]]&lt;/div&gt;</summary>
		<author><name>Heyvenki</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=File:AIM_-OWASP-Re.pdf&amp;diff=134310</id>
		<title>File:AIM -OWASP-Re.pdf</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=File:AIM_-OWASP-Re.pdf&amp;diff=134310"/>
				<updated>2012-08-14T03:34:26Z</updated>
		
		<summary type="html">&lt;p&gt;Heyvenki: Access &amp;amp; Identity Management&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Access &amp;amp; Identity Management&lt;/div&gt;</summary>
		<author><name>Heyvenki</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=Chennai&amp;diff=134309</id>
		<title>Chennai</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=Chennai&amp;diff=134309"/>
				<updated>2012-08-14T03:27:58Z</updated>
		
		<summary type="html">&lt;p&gt;Heyvenki: /* OWASP Chennai Chapter Meeting - 11 August 2012 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Chapter Template|chaptername=Chennai|extra=The chapter leaders are [mailto:venki@owasp.org Venkatesh Jagannathan] and [mailto:cumapathy@owasp.org Chandrasekar Umapathy]|mailinglistsite=http://lists.owasp.org/mailman/listinfo/owasp-chennai|emailarchives=http://lists.owasp.org/pipermail/owasp-chennai}}&lt;br /&gt;
&lt;br /&gt;
==== Local News ====&lt;br /&gt;
&amp;lt;paypal&amp;gt;Chennai&amp;lt;/paypal&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Stay Tuned ==&lt;br /&gt;
&lt;br /&gt;
Receive SMS Alerts - http://labs.google.co.in/smschannels/subscribe/OwaspChennai&lt;br /&gt;
&lt;br /&gt;
== Security Articles ==&lt;br /&gt;
March 2008 - '''A Checklist for Identifying Vulnerabilities''' - Vulnerabilities are holes in the application design / development / deployment that enable attackers to take advantage of the flaws present in the application... &lt;br /&gt;
[[https://www.owasp.org/images/c/c5/Vulnerability_Checklist.doc More]&lt;br /&gt;
&lt;br /&gt;
==== Chapter Meetings ====&lt;br /&gt;
&lt;br /&gt;
== OWASP Chennai Chapter Meeting - 11 August 2012==&lt;br /&gt;
&lt;br /&gt;
  09:30a – 09:35a =&amp;gt; &amp;lt;B&amp;gt;Opening the meeting&amp;lt;/B&amp;gt;&lt;br /&gt;
  09:36a – 10:35a =&amp;gt; &amp;lt;B&amp;gt;Big Data Security - Dr. T V Gopal [[https://www.owasp.org/images/e/ee/OWASP_BigDataGenSecurity.pdf Download Presentation]]&amp;lt;/B&amp;gt;&lt;br /&gt;
  10:36a – 11:05a =&amp;gt; &amp;lt;B&amp;gt;Break + Networking&amp;lt;/B&amp;gt;&lt;br /&gt;
  11:06a – 12:05n =&amp;gt; &amp;lt;B&amp;gt;SQL Injection &amp;amp; Basic Clickjacking - Vinod [[https://www.owasp.org/images/d/d5/Owasp_sql_inj_basic_clickjacking.pdf Download Presentation]]&amp;lt;/B&amp;gt;&lt;br /&gt;
  12:06p – 12:15p =&amp;gt; &amp;lt;B&amp;gt;Closing Remarks&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Venue:&lt;br /&gt;
----&lt;br /&gt;
&amp;lt;B&amp;gt;&lt;br /&gt;
Cognizant Technology Solutions,&lt;br /&gt;
Academy Auditorium,&lt;br /&gt;
5/535, Old Mahabalipuram Road,&lt;br /&gt;
Okkiam Thoraipakkam&lt;br /&gt;
Chennai - 600 096&lt;br /&gt;
&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== OWASP Chennai Chapter Meeting - 31 July 2010 ==&lt;br /&gt;
&lt;br /&gt;
  09:30a – 09:35a =&amp;gt; &amp;lt;B&amp;gt;Opening the meeting&amp;lt;/B&amp;gt;&lt;br /&gt;
  09:36a – 10:30a =&amp;gt; &amp;lt;B&amp;gt;Application Security (Jamuna, Chief Guest)&amp;lt;/B&amp;gt;&lt;br /&gt;
  10:31a – 11:00a =&amp;gt; &amp;lt;B&amp;gt;Break + Networking&amp;lt;/B&amp;gt;&lt;br /&gt;
  11:01a – 12:00n =&amp;gt; &amp;lt;B&amp;gt;Threat Modeling&amp;lt;/B&amp;gt;&lt;br /&gt;
  12:01p – 01:00p =&amp;gt; &amp;lt;B&amp;gt;Web 2.0 Security Testing&amp;lt;/B&amp;gt;&lt;br /&gt;
  01:01p – 01:05p =&amp;gt; &amp;lt;B&amp;gt;Closing remarks&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Venue:&lt;br /&gt;
----&lt;br /&gt;
&amp;lt;B&amp;gt;&lt;br /&gt;
Cognizant Technology Solutions,&lt;br /&gt;
Academy Auditorium,&lt;br /&gt;
5/535, Old Mahabalipuram Road,&lt;br /&gt;
Okkiam Thoraipakkam&lt;br /&gt;
Chennai - 600 096&lt;br /&gt;
&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== OWASP Chennai Chapter Meeting - 17 May 2009 ==&lt;br /&gt;
&lt;br /&gt;
  09:30a to 09:45a &amp;lt;B&amp;gt;Introduction to OWASP &amp;amp; Welcome statement Presented by Chandrasekar Umapathy&amp;lt;/B&amp;gt;&lt;br /&gt;
  09:45a to 10:20a &amp;lt;B&amp;gt;Presentation by KrishnaKumar Madhavan on Security Challenges Faced in Globalization&amp;lt;/B&amp;gt;&lt;br /&gt;
  10:45a to 11:00a &amp;lt;B&amp;gt;Coffee/Tea break&amp;lt;/B&amp;gt;&lt;br /&gt;
  11:00a to 11:45a &amp;lt;B&amp;gt;Presentation by  Abhay Bhargav on Application Security Risk - The Full Circle&amp;lt;/B&amp;gt;&lt;br /&gt;
  12:00n to 12:45p &amp;lt;B&amp;gt; Presentation by Murugan IPS on Mobile Crimes&amp;lt;/B&amp;gt;&lt;br /&gt;
  12:45P to 12:50p &amp;lt;B&amp;gt; Closing Session &amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== OWASP Chennai Chapter Meeting - 21 March 2009 ==&lt;br /&gt;
The first meeting of the year 2009. The agenda will be:&lt;br /&gt;
&lt;br /&gt;
  09:30a to 10:00a &amp;lt;B&amp;gt;Introductions &amp;amp; Welcome statement&amp;lt;/B&amp;gt;&lt;br /&gt;
  10:00a to 10:45a &amp;lt;B&amp;gt;Presentation by Lavakumar on vulnerability in Flex Applications [[https://www.owasp.org/images/e/e3/FlashSecurity.ppt Download Presentation]]&amp;lt;/B&amp;gt;&lt;br /&gt;
  10:45a to 11:00a &amp;lt;B&amp;gt;Coffee/Tea break&amp;lt;/B&amp;gt;&lt;br /&gt;
  11:00a to 12:00n &amp;lt;B&amp;gt;Presentation by Venki on top 25 programming errors [[https://www.owasp.org/images/1/11/Top25ProgrammingErrors.ppt Download Presentation]]&amp;lt;/B&amp;gt;&lt;br /&gt;
  12:00n to 12:01p &amp;lt;B&amp;gt;Closing Session&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For any questions, call +91-9840148148&lt;br /&gt;
&lt;br /&gt;
Venue:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;B&amp;gt;5/535, Old Mahabalipuram Road,&lt;br /&gt;
&lt;br /&gt;
Okkiam Thoraipakkam&lt;br /&gt;
&lt;br /&gt;
Chennai - 600 096&lt;br /&gt;
&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You are all invited.&lt;br /&gt;
&lt;br /&gt;
== You are Invited for the OWASP Chennai chapter Kick off Meeting - 2 February 2007 ==&lt;br /&gt;
This first meeting will serve as an introduction to OWASP and will have a discussion centered around our activities for the year 2007. &lt;br /&gt;
&lt;br /&gt;
The agenda:&lt;br /&gt;
 &lt;br /&gt;
  14.00 - 14.15: Welcome &amp;amp; Member Introduction&lt;br /&gt;
  14.15 - 14.30: OWASP Introduction, Anand,Cognizant &lt;br /&gt;
  14.30 - 15.30: Presentation on Phishing, Sreemathy Varadan, Cognizant [[https://www.owasp.org/images/a/a3/Phishing.ppt Download Presentation]]&lt;br /&gt;
  15.30 - 16.00: Discussion - Meeting Schedule for 2007, Chennai Chapter Activities&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Cognizant Technology solutions will be the sponsor for this meeting and the location would be &lt;br /&gt;
  Third Floor, &lt;br /&gt;
  Elnet Software City,&lt;br /&gt;
  T.S.140, Block 2&amp;amp;9 C.P.T.Road, &lt;br /&gt;
  Taramani,&lt;br /&gt;
  Chennai - 600113&lt;br /&gt;
&lt;br /&gt;
For any queries, pls call 044-42284056.&lt;br /&gt;
&lt;br /&gt;
Pls confirm your participation by sending a mail to owasp@cognizant.com&lt;br /&gt;
&lt;br /&gt;
Pls note that all OWASP chapter meetings are free and there will not be any vendor pitches or sales presentations at OWASP meetings]&lt;br /&gt;
&lt;br /&gt;
==== Chennai OWASP Chapter Leaders ====&lt;br /&gt;
The chapter leaders are [mailto:venki@owasp.org Venkatesh Jagannathan] and [mailto:cumapathy@owasp.org Chandrasekar Umapathy]&lt;br /&gt;
__NOTOC__&lt;br /&gt;
&amp;lt;headertabs/&amp;gt;&lt;br /&gt;
[[Category:India]]&lt;/div&gt;</summary>
		<author><name>Heyvenki</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=Chennai&amp;diff=134308</id>
		<title>Chennai</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=Chennai&amp;diff=134308"/>
				<updated>2012-08-14T03:25:29Z</updated>
		
		<summary type="html">&lt;p&gt;Heyvenki: /* OWASP Chennai Chapter Meeting - 31 July 2010 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Chapter Template|chaptername=Chennai|extra=The chapter leaders are [mailto:venki@owasp.org Venkatesh Jagannathan] and [mailto:cumapathy@owasp.org Chandrasekar Umapathy]|mailinglistsite=http://lists.owasp.org/mailman/listinfo/owasp-chennai|emailarchives=http://lists.owasp.org/pipermail/owasp-chennai}}&lt;br /&gt;
&lt;br /&gt;
==== Local News ====&lt;br /&gt;
&amp;lt;paypal&amp;gt;Chennai&amp;lt;/paypal&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Stay Tuned ==&lt;br /&gt;
&lt;br /&gt;
Receive SMS Alerts - http://labs.google.co.in/smschannels/subscribe/OwaspChennai&lt;br /&gt;
&lt;br /&gt;
== Security Articles ==&lt;br /&gt;
March 2008 - '''A Checklist for Identifying Vulnerabilities''' - Vulnerabilities are holes in the application design / development / deployment that enable attackers to take advantage of the flaws present in the application... &lt;br /&gt;
[[https://www.owasp.org/images/c/c5/Vulnerability_Checklist.doc More]&lt;br /&gt;
&lt;br /&gt;
==== Chapter Meetings ====&lt;br /&gt;
&lt;br /&gt;
== OWASP Chennai Chapter Meeting - 11 August 2012==&lt;br /&gt;
&lt;br /&gt;
  09:30a – 09:35a =&amp;gt; &amp;lt;B&amp;gt;Opening the meeting&amp;lt;/B&amp;gt;&lt;br /&gt;
  09:36a – 10:35a =&amp;gt; &amp;lt;B&amp;gt;Big Data Security&amp;lt;/B&amp;gt;&lt;br /&gt;
  10:36a – 11:05a =&amp;gt; &amp;lt;B&amp;gt;Break + Networking&amp;lt;/B&amp;gt;&lt;br /&gt;
  11:06a – 12:05n =&amp;gt; &amp;lt;B&amp;gt;SQL Injection &amp;amp; Basic Clickjacking&amp;lt;/B&amp;gt;&lt;br /&gt;
  12:06p – 12:15p =&amp;gt; &amp;lt;B&amp;gt;Closing Remarks&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Venue:&lt;br /&gt;
----&lt;br /&gt;
&amp;lt;B&amp;gt;&lt;br /&gt;
Cognizant Technology Solutions,&lt;br /&gt;
Academy Auditorium,&lt;br /&gt;
5/535, Old Mahabalipuram Road,&lt;br /&gt;
Okkiam Thoraipakkam&lt;br /&gt;
Chennai - 600 096&lt;br /&gt;
&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== OWASP Chennai Chapter Meeting - 31 July 2010 ==&lt;br /&gt;
&lt;br /&gt;
  09:30a – 09:35a =&amp;gt; &amp;lt;B&amp;gt;Opening the meeting&amp;lt;/B&amp;gt;&lt;br /&gt;
  09:36a – 10:30a =&amp;gt; &amp;lt;B&amp;gt;Application Security (Jamuna, Chief Guest)&amp;lt;/B&amp;gt;&lt;br /&gt;
  10:31a – 11:00a =&amp;gt; &amp;lt;B&amp;gt;Break + Networking&amp;lt;/B&amp;gt;&lt;br /&gt;
  11:01a – 12:00n =&amp;gt; &amp;lt;B&amp;gt;Threat Modeling&amp;lt;/B&amp;gt;&lt;br /&gt;
  12:01p – 01:00p =&amp;gt; &amp;lt;B&amp;gt;Web 2.0 Security Testing&amp;lt;/B&amp;gt;&lt;br /&gt;
  01:01p – 01:05p =&amp;gt; &amp;lt;B&amp;gt;Closing remarks&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Venue:&lt;br /&gt;
----&lt;br /&gt;
&amp;lt;B&amp;gt;&lt;br /&gt;
Cognizant Technology Solutions,&lt;br /&gt;
Academy Auditorium,&lt;br /&gt;
5/535, Old Mahabalipuram Road,&lt;br /&gt;
Okkiam Thoraipakkam&lt;br /&gt;
Chennai - 600 096&lt;br /&gt;
&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== OWASP Chennai Chapter Meeting - 17 May 2009 ==&lt;br /&gt;
&lt;br /&gt;
  09:30a to 09:45a &amp;lt;B&amp;gt;Introduction to OWASP &amp;amp; Welcome statement Presented by Chandrasekar Umapathy&amp;lt;/B&amp;gt;&lt;br /&gt;
  09:45a to 10:20a &amp;lt;B&amp;gt;Presentation by KrishnaKumar Madhavan on Security Challenges Faced in Globalization&amp;lt;/B&amp;gt;&lt;br /&gt;
  10:45a to 11:00a &amp;lt;B&amp;gt;Coffee/Tea break&amp;lt;/B&amp;gt;&lt;br /&gt;
  11:00a to 11:45a &amp;lt;B&amp;gt;Presentation by  Abhay Bhargav on Application Security Risk - The Full Circle&amp;lt;/B&amp;gt;&lt;br /&gt;
  12:00n to 12:45p &amp;lt;B&amp;gt; Presentation by Murugan IPS on Mobile Crimes&amp;lt;/B&amp;gt;&lt;br /&gt;
  12:45P to 12:50p &amp;lt;B&amp;gt; Closing Session &amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== OWASP Chennai Chapter Meeting - 21 March 2009 ==&lt;br /&gt;
The first meeting of the year 2009. The agenda will be:&lt;br /&gt;
&lt;br /&gt;
  09:30a to 10:00a &amp;lt;B&amp;gt;Introductions &amp;amp; Welcome statement&amp;lt;/B&amp;gt;&lt;br /&gt;
  10:00a to 10:45a &amp;lt;B&amp;gt;Presentation by Lavakumar on vulnerability in Flex Applications [[https://www.owasp.org/images/e/e3/FlashSecurity.ppt Download Presentation]]&amp;lt;/B&amp;gt;&lt;br /&gt;
  10:45a to 11:00a &amp;lt;B&amp;gt;Coffee/Tea break&amp;lt;/B&amp;gt;&lt;br /&gt;
  11:00a to 12:00n &amp;lt;B&amp;gt;Presentation by Venki on top 25 programming errors [[https://www.owasp.org/images/1/11/Top25ProgrammingErrors.ppt Download Presentation]]&amp;lt;/B&amp;gt;&lt;br /&gt;
  12:00n to 12:01p &amp;lt;B&amp;gt;Closing Session&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For any questions, call +91-9840148148&lt;br /&gt;
&lt;br /&gt;
Venue:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;B&amp;gt;5/535, Old Mahabalipuram Road,&lt;br /&gt;
&lt;br /&gt;
Okkiam Thoraipakkam&lt;br /&gt;
&lt;br /&gt;
Chennai - 600 096&lt;br /&gt;
&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You are all invited.&lt;br /&gt;
&lt;br /&gt;
== You are Invited for the OWASP Chennai chapter Kick off Meeting - 2 February 2007 ==&lt;br /&gt;
This first meeting will serve as an introduction to OWASP and will have a discussion centered around our activities for the year 2007. &lt;br /&gt;
&lt;br /&gt;
The agenda:&lt;br /&gt;
 &lt;br /&gt;
  14.00 - 14.15: Welcome &amp;amp; Member Introduction&lt;br /&gt;
  14.15 - 14.30: OWASP Introduction, Anand,Cognizant &lt;br /&gt;
  14.30 - 15.30: Presentation on Phishing, Sreemathy Varadan, Cognizant [[https://www.owasp.org/images/a/a3/Phishing.ppt Download Presentation]]&lt;br /&gt;
  15.30 - 16.00: Discussion - Meeting Schedule for 2007, Chennai Chapter Activities&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Cognizant Technology solutions will be the sponsor for this meeting and the location would be &lt;br /&gt;
  Third Floor, &lt;br /&gt;
  Elnet Software City,&lt;br /&gt;
  T.S.140, Block 2&amp;amp;9 C.P.T.Road, &lt;br /&gt;
  Taramani,&lt;br /&gt;
  Chennai - 600113&lt;br /&gt;
&lt;br /&gt;
For any queries, pls call 044-42284056.&lt;br /&gt;
&lt;br /&gt;
Pls confirm your participation by sending a mail to owasp@cognizant.com&lt;br /&gt;
&lt;br /&gt;
Pls note that all OWASP chapter meetings are free and there will not be any vendor pitches or sales presentations at OWASP meetings]&lt;br /&gt;
&lt;br /&gt;
==== Chennai OWASP Chapter Leaders ====&lt;br /&gt;
The chapter leaders are [mailto:venki@owasp.org Venkatesh Jagannathan] and [mailto:cumapathy@owasp.org Chandrasekar Umapathy]&lt;br /&gt;
__NOTOC__&lt;br /&gt;
&amp;lt;headertabs/&amp;gt;&lt;br /&gt;
[[Category:India]]&lt;/div&gt;</summary>
		<author><name>Heyvenki</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=File:Owasp_sql_inj_basic_clickjacking.pdf&amp;diff=134307</id>
		<title>File:Owasp sql inj basic clickjacking.pdf</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=File:Owasp_sql_inj_basic_clickjacking.pdf&amp;diff=134307"/>
				<updated>2012-08-14T03:21:14Z</updated>
		
		<summary type="html">&lt;p&gt;Heyvenki: SQL Injection &amp;amp; Basic Clickjacking...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;SQL Injection &amp;amp; Basic Clickjacking...&lt;/div&gt;</summary>
		<author><name>Heyvenki</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=File:OWASP_BigDataGenSecurity.pdf&amp;diff=134306</id>
		<title>File:OWASP BigDataGenSecurity.pdf</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=File:OWASP_BigDataGenSecurity.pdf&amp;diff=134306"/>
				<updated>2012-08-14T03:19:31Z</updated>
		
		<summary type="html">&lt;p&gt;Heyvenki: Big Data - General Security&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Big Data - General Security&lt;/div&gt;</summary>
		<author><name>Heyvenki</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=OWASP_Trainers/Volunteer_6&amp;diff=94388</id>
		<title>OWASP Trainers/Volunteer 6</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=OWASP_Trainers/Volunteer_6&amp;diff=94388"/>
				<updated>2010-11-30T06:26:33Z</updated>
		
		<summary type="html">&lt;p&gt;Heyvenki: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:&amp;lt;includeonly&amp;gt;{{{1}}}&amp;lt;/includeonly&amp;gt;&amp;lt;noinclude&amp;gt;OWASP Trainers Volunteers Tab&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| trainer_name1 = Venkatesh Jagannathan&lt;br /&gt;
| trainer_email1 = venki@owasp.org&lt;br /&gt;
| trainer_wiki_username1 = venki &amp;lt;!--Please replace this text by your wiki username --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| project_interested_in_presenting = OWASP Top 10, Threat Modeling, Secure Coding Practices/Guidelines&lt;br /&gt;
|-&lt;br /&gt;
| project_already_presented_name1 = OWASP Top 10&lt;br /&gt;
| project_already_presented_url_1 = http://www.owasp.org/index.php/Top_10_2010&lt;br /&gt;
| project_already_presented_name2 = Threat Modeling&lt;br /&gt;
| project_already_presented_url_2 = http://www.owasp.org/index.php/Threat_modeling&lt;br /&gt;
| project_already_presented_name3 = Secure Coding Practices&lt;br /&gt;
| project_already_presented_url_3 = http://www.owasp.org/index.php/Secure_Coding_Principles&lt;br /&gt;
| project_already_presented_name4 = &lt;br /&gt;
| project_already_presented_url_4 = &lt;br /&gt;
| project_already_presented_name5 = &lt;br /&gt;
| project_already_presented_url_5 = &lt;br /&gt;
|-&lt;br /&gt;
| current_location = Chennai, India  &lt;br /&gt;
|-&lt;br /&gt;
| trainer_name_mask = &amp;lt;!--Please replace DO NOT EDIT this string --&amp;gt; Volunteer_6 &lt;br /&gt;
| trainer_home_page = &amp;lt;!--Please replace DO NOT EDIT this string --&amp;gt; OWASP_Trainers/Volunteer_6 &lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Heyvenki</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=OWASP_Trainers/Volunteer_6&amp;diff=94387</id>
		<title>OWASP Trainers/Volunteer 6</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=OWASP_Trainers/Volunteer_6&amp;diff=94387"/>
				<updated>2010-11-30T06:26:04Z</updated>
		
		<summary type="html">&lt;p&gt;Heyvenki: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:&amp;lt;includeonly&amp;gt;{{{1}}}&amp;lt;/includeonly&amp;gt;&amp;lt;noinclude&amp;gt;OWASP Trainers Volunteers Tab&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| trainer_name1 = Venkatesh Jagannathan&lt;br /&gt;
| trainer_email1 = venki@owasp.org&lt;br /&gt;
| trainer_wiki_username1 = venki &amp;lt;!--Please replace this text by your wiki username --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| project_interested_in_presenting = OWASP Top 10, Threat Modeling, Secure Coding Practices/Guidelines, Top 25 Programming Errors&lt;br /&gt;
|-&lt;br /&gt;
| project_already_presented_name1 = OWASP Top 10&lt;br /&gt;
| project_already_presented_url_1 = http://www.owasp.org/index.php/Top_10_2010&lt;br /&gt;
| project_already_presented_name2 = Threat Modeling&lt;br /&gt;
| project_already_presented_url_2 = http://www.owasp.org/index.php/Threat_modeling&lt;br /&gt;
| project_already_presented_name3 = Secure Coding Practices&lt;br /&gt;
| project_already_presented_url_3 = http://www.owasp.org/index.php/Secure_Coding_Principles&lt;br /&gt;
| project_already_presented_name4 = &lt;br /&gt;
| project_already_presented_url_4 = &lt;br /&gt;
| project_already_presented_name5 = &lt;br /&gt;
| project_already_presented_url_5 = &lt;br /&gt;
|-&lt;br /&gt;
| current_location = Chennai, India  &lt;br /&gt;
|-&lt;br /&gt;
| trainer_name_mask = &amp;lt;!--Please replace DO NOT EDIT this string --&amp;gt; Volunteer_6 &lt;br /&gt;
| trainer_home_page = &amp;lt;!--Please replace DO NOT EDIT this string --&amp;gt; OWASP_Trainers/Volunteer_6 &lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Heyvenki</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=OWASP_Trainers/Volunteer_6&amp;diff=94386</id>
		<title>OWASP Trainers/Volunteer 6</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=OWASP_Trainers/Volunteer_6&amp;diff=94386"/>
				<updated>2010-11-30T06:23:12Z</updated>
		
		<summary type="html">&lt;p&gt;Heyvenki: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:&amp;lt;includeonly&amp;gt;{{{1}}}&amp;lt;/includeonly&amp;gt;&amp;lt;noinclude&amp;gt;OWASP Trainers Volunteers Tab&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| trainer_name1 = Venkatesh Jagannathan&lt;br /&gt;
| trainer_email1 = venki@owasp.org&lt;br /&gt;
| trainer_wiki_username1 = venki &amp;lt;!--Please replace this text by your wiki username --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| project_interested_in_presenting = OWASP Top 10, Threat Modeling, Secure Coding Practices/Guidelines, Top 25 Programming Errors&lt;br /&gt;
|-&lt;br /&gt;
| project_already_presented_name1 = OWASP Top 10&lt;br /&gt;
| project_already_presented_url_1 = http://www.owasp.org/index.php/Top_10_2010&lt;br /&gt;
| project_already_presented_name2 = Threat Modeling&lt;br /&gt;
| project_already_presented_url_2 = http://www.owasp.org/index.php/Threat_modeling&lt;br /&gt;
| project_already_presented_name3 = Secure Coding Practices&lt;br /&gt;
| project_already_presented_url_3 = http://www.owasp.org/index.php/Secure_Coding_Principles&lt;br /&gt;
| project_already_presented_name4 = Top 25 Prgramming Errors (SANS)&lt;br /&gt;
| project_already_presented_url_4 = http://www.sans.org/top25-software-errors/&lt;br /&gt;
| project_already_presented_name5 = &lt;br /&gt;
| project_already_presented_url_5 = &lt;br /&gt;
|-&lt;br /&gt;
| current_location = Chennai, India  &lt;br /&gt;
|-&lt;br /&gt;
| trainer_name_mask = &amp;lt;!--Please replace DO NOT EDIT this string --&amp;gt; Volunteer_6 &lt;br /&gt;
| trainer_home_page = &amp;lt;!--Please replace DO NOT EDIT this string --&amp;gt; OWASP_Trainers/Volunteer_6 &lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Heyvenki</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=OWASP_Trainers/Volunteer_6&amp;diff=94385</id>
		<title>OWASP Trainers/Volunteer 6</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=OWASP_Trainers/Volunteer_6&amp;diff=94385"/>
				<updated>2010-11-30T06:19:11Z</updated>
		
		<summary type="html">&lt;p&gt;Heyvenki: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:&amp;lt;includeonly&amp;gt;{{{1}}}&amp;lt;/includeonly&amp;gt;&amp;lt;noinclude&amp;gt;OWASP Trainers Volunteers Tab&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| trainer_name1 = Venkatesh Jagannathan&lt;br /&gt;
| trainer_email1 = venki@owasp.org&lt;br /&gt;
| trainer_wiki_username1 = venki &amp;lt;!--Please replace this text by your wiki username --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| project_interested_in_presenting = OWASP Top 10, Threat Modeling, Secure Coding Practices/Guidelines, Top 25 Programming Errors&lt;br /&gt;
|-&lt;br /&gt;
| project_already_presented_name1 = OWASP Top 10&lt;br /&gt;
| project_already_presented_url_1 = http://www.owasp.org/index.php/Top_10_2010&lt;br /&gt;
| project_already_presented_name2 = Threat Modeling&lt;br /&gt;
| project_already_presented_url_2 = &lt;br /&gt;
| project_already_presented_name3 = &lt;br /&gt;
| project_already_presented_url_3 = &lt;br /&gt;
| project_already_presented_name4 = &lt;br /&gt;
| project_already_presented_url_4 = &lt;br /&gt;
| project_already_presented_name5 = &lt;br /&gt;
| project_already_presented_url_5 = &lt;br /&gt;
|-&lt;br /&gt;
| current_location = Chennai, India  &lt;br /&gt;
|-&lt;br /&gt;
| trainer_name_mask = &amp;lt;!--Please replace DO NOT EDIT this string --&amp;gt; Volunteer_6 &lt;br /&gt;
| trainer_home_page = &amp;lt;!--Please replace DO NOT EDIT this string --&amp;gt; OWASP_Trainers/Volunteer_6 &lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Heyvenki</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=User:Venki&amp;diff=94384</id>
		<title>User:Venki</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=User:Venki&amp;diff=94384"/>
				<updated>2010-11-30T06:11:44Z</updated>
		
		<summary type="html">&lt;p&gt;Heyvenki: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Venkatesh Jagannathan, often known as Venki, has been in the field of software engineering for more than 15 years (and still counting). He has had various experiences in developing applications in C++, VC++, Java, .NET and Python. For the last 3+ years, Venki has been focussing on application security. His background of security in web application development has been around Threat Modeling, Secure Coding Practices. He has been instrumental in training various groups of people, across platforms, on, thinking secure design and writing secure code.&lt;br /&gt;
&lt;br /&gt;
Venki is currently heading the R &amp;amp; D wing of the Digital Security Practice within Cognizant and is based out of Chennai. He is responsible for building frameworks, innovation and training on security within his organization.&lt;br /&gt;
&lt;br /&gt;
Venki is one of the chapter leads of Chennai OWASP Chapter.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
* For Venki's detailed resume, please see the profile in LinkedIn [http://www.linkedin.com/in/heyvenki page].&lt;br /&gt;
&lt;br /&gt;
* Venki can be reached on Email at [mailto:venki@owasp.org Venki].&lt;/div&gt;</summary>
		<author><name>Heyvenki</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=OWASP_Trainers/Volunteer_6&amp;diff=94383</id>
		<title>OWASP Trainers/Volunteer 6</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=OWASP_Trainers/Volunteer_6&amp;diff=94383"/>
				<updated>2010-11-30T05:53:55Z</updated>
		
		<summary type="html">&lt;p&gt;Heyvenki: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:&amp;lt;includeonly&amp;gt;{{{1}}}&amp;lt;/includeonly&amp;gt;&amp;lt;noinclude&amp;gt;OWASP Trainers Volunteers Tab&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| trainer_name1 = Venkatesh Jagannathan&lt;br /&gt;
| trainer_email1 = venki@owasp.org&lt;br /&gt;
| trainer_wiki_username1 = venki &amp;lt;!--Please replace this text by your wiki username --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| project_interested_in_presenting = OWASP Top 10, Threat Modeling, Secure Coding Practices/Guidelines, Top 25 Programming Errors&lt;br /&gt;
|-&lt;br /&gt;
| project_already_presented_name1 = Threat Modeling &lt;br /&gt;
| project_already_presented_url_1 = &amp;lt;!--Please replace this text by the project's LINK you have already presented --&amp;gt;&lt;br /&gt;
| project_already_presented_name2 = Top 25 Programming Errors (from SANS)&lt;br /&gt;
| project_already_presented_url_2 = &lt;br /&gt;
| project_already_presented_name3 = &lt;br /&gt;
| project_already_presented_url_3 = &lt;br /&gt;
| project_already_presented_name4 = &lt;br /&gt;
| project_already_presented_url_4 = &lt;br /&gt;
| project_already_presented_name5 = &lt;br /&gt;
| project_already_presented_url_5 = &lt;br /&gt;
|-&lt;br /&gt;
| current_location = Chennai, India  &lt;br /&gt;
|-&lt;br /&gt;
| trainer_name_mask = &amp;lt;!--Please replace DO NOT EDIT this string --&amp;gt; Volunteer_6 &lt;br /&gt;
| trainer_home_page = &amp;lt;!--Please replace DO NOT EDIT this string --&amp;gt; OWASP_Trainers/Volunteer_6 &lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Heyvenki</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=OWASP_Trainers/Volunteer_6&amp;diff=94382</id>
		<title>OWASP Trainers/Volunteer 6</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=OWASP_Trainers/Volunteer_6&amp;diff=94382"/>
				<updated>2010-11-30T05:51:22Z</updated>
		
		<summary type="html">&lt;p&gt;Heyvenki: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:&amp;lt;includeonly&amp;gt;{{{1}}}&amp;lt;/includeonly&amp;gt;&amp;lt;noinclude&amp;gt;OWASP Trainers Volunteers Tab&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| trainer_name1 = Venkatesh Jagannathan&lt;br /&gt;
| trainer_email1 = venki@owasp.org&lt;br /&gt;
| trainer_wiki_username1 = heyvenki &amp;lt;!--Please replace this text by your wiki username --&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
| project_interested_in_presenting = OWASP Top 10, Threat Modeling, Secure Coding Practices/Guidelines&lt;br /&gt;
|-&lt;br /&gt;
| project_already_presented_name1 = &amp;lt;!--Please replace this text by the project's NAME you have already presented --&amp;gt; &lt;br /&gt;
| project_already_presented_url_1 = &amp;lt;!--Please replace this text by the project's LINK you have already presented --&amp;gt;&lt;br /&gt;
| project_already_presented_name2 = &lt;br /&gt;
| project_already_presented_url_2 = &lt;br /&gt;
| project_already_presented_name3 = &lt;br /&gt;
| project_already_presented_url_3 = &lt;br /&gt;
| project_already_presented_name4 = &lt;br /&gt;
| project_already_presented_url_4 = &lt;br /&gt;
| project_already_presented_name5 = &lt;br /&gt;
| project_already_presented_url_5 = &lt;br /&gt;
|-&lt;br /&gt;
| current_location = Chennai, India  &lt;br /&gt;
|-&lt;br /&gt;
| trainer_name_mask = &amp;lt;!--Please replace DO NOT EDIT this string --&amp;gt; Volunteer_6 &lt;br /&gt;
| trainer_home_page = &amp;lt;!--Please replace DO NOT EDIT this string --&amp;gt; OWASP_Trainers/Volunteer_6 &lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>Heyvenki</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=User:Venki&amp;diff=94381</id>
		<title>User:Venki</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=User:Venki&amp;diff=94381"/>
				<updated>2010-11-30T05:45:33Z</updated>
		
		<summary type="html">&lt;p&gt;Heyvenki: Venki's Profile&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Venkatesh Jagannathan, often known as Venki, has been in the field of software engineering for more than 15 years (and still counting). He has had various experiences in developing applications in C++, VC++, Java, .NET and Python. For the last 3+ years, Venki has been focussing on application security. His background of security in web application development has been around Threat Modeling, Secure Coding Practices. He has been instrumental in training various groups of people, across platforms, on, thinking secure design and writing secure code.&lt;br /&gt;
&lt;br /&gt;
Venki is currently heading the R &amp;amp; D wing of the Digital Security Practice within Cognizant and is based out of Chennai. He is responsible for building frameworks, innovation and training on security within his organization.&lt;br /&gt;
&lt;br /&gt;
Venki is one of the chapter leads of Chennai OWASP Chapter.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
For Venki's detailed resume, please see the profile in LinkedIn [http://www.linkedin.com/in/heyvenki page].&lt;br /&gt;
&lt;br /&gt;
* Venki can be reached on Email at [mailto:venki@owasp.org Venki].&lt;/div&gt;</summary>
		<author><name>Heyvenki</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=Chennai&amp;diff=87137</id>
		<title>Chennai</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=Chennai&amp;diff=87137"/>
				<updated>2010-07-30T12:37:35Z</updated>
		
		<summary type="html">&lt;p&gt;Heyvenki: /*Chapter Meetings*/&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Chapter Template|chaptername=Chennai|extra=The chapter leaders are [mailto:venki@owasp.org Venkatesh Jagannathan] and [mailto:cumapathy@owasp.org Chandrasekar Umapathy]|mailinglistsite=http://lists.owasp.org/mailman/listinfo/owasp-chennai|emailarchives=http://lists.owasp.org/pipermail/owasp-chennai}}&lt;br /&gt;
&lt;br /&gt;
==== Local News ====&lt;br /&gt;
&amp;lt;paypal&amp;gt;Chennai&amp;lt;/paypal&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Stay Tuned ==&lt;br /&gt;
&lt;br /&gt;
Receive SMS Alerts - http://labs.google.co.in/smschannels/subscribe/OwaspChennai&lt;br /&gt;
&lt;br /&gt;
== Security Articles ==&lt;br /&gt;
March 2008 - '''A Checklist for Identifying Vulnerabilities''' - Vulnerabilities are holes in the application design / development / deployment that enable attackers to take advantage of the flaws present in the application... &lt;br /&gt;
[[https://www.owasp.org/images/c/c5/Vulnerability_Checklist.doc More]&lt;br /&gt;
&lt;br /&gt;
==== Chapter Meetings ====&lt;br /&gt;
&lt;br /&gt;
== OWASP Chennai Chapter Meeting - 31 July 2010 ==&lt;br /&gt;
&lt;br /&gt;
  09:30a – 09:35a =&amp;gt; &amp;lt;B&amp;gt;Opening the meeting&amp;lt;/B&amp;gt;&lt;br /&gt;
  09:36a – 10:30a =&amp;gt; &amp;lt;B&amp;gt;Application Security (Jamuna, Chief Guest)&amp;lt;/B&amp;gt;&lt;br /&gt;
  10:31a – 11:00a =&amp;gt; &amp;lt;B&amp;gt;Break + Networking&amp;lt;/B&amp;gt;&lt;br /&gt;
  11:01a – 12:00n =&amp;gt; &amp;lt;B&amp;gt;Threat Modeling&amp;lt;/B&amp;gt;&lt;br /&gt;
  12:01p – 01:00p =&amp;gt; &amp;lt;B&amp;gt;Web 2.0 Security Testing&amp;lt;/B&amp;gt;&lt;br /&gt;
  01:01p – 01:05p =&amp;gt; &amp;lt;B&amp;gt;Closing remarks&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Venue:&lt;br /&gt;
----&lt;br /&gt;
&amp;lt;B&amp;gt;&lt;br /&gt;
Cognizant Technology Solutions,&lt;br /&gt;
Academy Auditorium,&lt;br /&gt;
5/535, Old Mahabalipuram Road,&lt;br /&gt;
Okkiam Thoraipakkam&lt;br /&gt;
Chennai - 600 096&lt;br /&gt;
&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== OWASP Chennai Chapter Meeting - 17 May 2009 ==&lt;br /&gt;
&lt;br /&gt;
  09:30a to 09:45a &amp;lt;B&amp;gt;Introduction to OWASP &amp;amp; Welcome statement Presented by Chandrasekar Umapathy&amp;lt;/B&amp;gt;&lt;br /&gt;
  09:45a to 10:20a &amp;lt;B&amp;gt;Presentation by KrishnaKumar Madhavan on Security Challenges Faced in Globalization&amp;lt;/B&amp;gt;&lt;br /&gt;
  10:45a to 11:00a &amp;lt;B&amp;gt;Coffee/Tea break&amp;lt;/B&amp;gt;&lt;br /&gt;
  11:00a to 11:45a &amp;lt;B&amp;gt;Presentation by  Abhay Bhargav on Application Security Risk - The Full Circle&amp;lt;/B&amp;gt;&lt;br /&gt;
  12:00n to 12:45p &amp;lt;B&amp;gt; Presentation by Murugan IPS on Mobile Crimes&amp;lt;/B&amp;gt;&lt;br /&gt;
  12:45P to 12:50p &amp;lt;B&amp;gt; Closing Session &amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== OWASP Chennai Chapter Meeting - 21 March 2009 ==&lt;br /&gt;
The first meeting of the year 2009. The agenda will be:&lt;br /&gt;
&lt;br /&gt;
  09:30a to 10:00a &amp;lt;B&amp;gt;Introductions &amp;amp; Welcome statement&amp;lt;/B&amp;gt;&lt;br /&gt;
  10:00a to 10:45a &amp;lt;B&amp;gt;Presentation by Lavakumar on vulnerability in Flex Applications [[https://www.owasp.org/images/e/e3/FlashSecurity.ppt Download Presentation]]&amp;lt;/B&amp;gt;&lt;br /&gt;
  10:45a to 11:00a &amp;lt;B&amp;gt;Coffee/Tea break&amp;lt;/B&amp;gt;&lt;br /&gt;
  11:00a to 12:00n &amp;lt;B&amp;gt;Presentation by Venki on top 25 programming errors [[https://www.owasp.org/images/1/11/Top25ProgrammingErrors.ppt Download Presentation]]&amp;lt;/B&amp;gt;&lt;br /&gt;
  12:00n to 12:01p &amp;lt;B&amp;gt;Closing Session&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For any questions, call +91-9840148148&lt;br /&gt;
&lt;br /&gt;
Venue:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;B&amp;gt;5/535, Old Mahabalipuram Road,&lt;br /&gt;
&lt;br /&gt;
Okkiam Thoraipakkam&lt;br /&gt;
&lt;br /&gt;
Chennai - 600 096&lt;br /&gt;
&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You are all invited.&lt;br /&gt;
&lt;br /&gt;
== You are Invited for the OWASP Chennai chapter Kick off Meeting - 2 February 2007 ==&lt;br /&gt;
This first meeting will serve as an introduction to OWASP and will have a discussion centered around our activities for the year 2007. &lt;br /&gt;
&lt;br /&gt;
The agenda:&lt;br /&gt;
 &lt;br /&gt;
  14.00 - 14.15: Welcome &amp;amp; Member Introduction&lt;br /&gt;
  14.15 - 14.30: OWASP Introduction, Anand,Cognizant &lt;br /&gt;
  14.30 - 15.30: Presentation on Phishing, Sreemathy Varadan, Cognizant [[https://www.owasp.org/images/a/a3/Phishing.ppt Download Presentation]]&lt;br /&gt;
  15.30 - 16.00: Discussion - Meeting Schedule for 2007, Chennai Chapter Activities&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Cognizant Technology solutions will be the sponsor for this meeting and the location would be &lt;br /&gt;
  Third Floor, &lt;br /&gt;
  Elnet Software City,&lt;br /&gt;
  T.S.140, Block 2&amp;amp;9 C.P.T.Road, &lt;br /&gt;
  Taramani,&lt;br /&gt;
  Chennai - 600113&lt;br /&gt;
&lt;br /&gt;
For any queries, pls call 044-42284056.&lt;br /&gt;
&lt;br /&gt;
Pls confirm your participation by sending a mail to owasp@cognizant.com&lt;br /&gt;
&lt;br /&gt;
Pls note that all OWASP chapter meetings are free and there will not be any vendor pitches or sales presentations at OWASP meetings]&lt;br /&gt;
&lt;br /&gt;
==== Chennai OWASP Chapter Leaders ====&lt;br /&gt;
The chapter leaders are [mailto:venki@owasp.org Venkatesh Jagannathan] and [mailto:cumapathy@owasp.org Chandrasekar Umapathy]&lt;br /&gt;
__NOTOC__&lt;br /&gt;
&amp;lt;headertabs/&amp;gt;&lt;br /&gt;
[[Category:India]]&lt;/div&gt;</summary>
		<author><name>Heyvenki</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=Chennai&amp;diff=87136</id>
		<title>Chennai</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=Chennai&amp;diff=87136"/>
				<updated>2010-07-30T12:29:44Z</updated>
		
		<summary type="html">&lt;p&gt;Heyvenki: /* Chapter Meetings */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Chapter Template|chaptername=Chennai|extra=The chapter leaders are [mailto:venki@owasp.org Venkatesh Jagannathan] and [mailto:cumapathy@owasp.org Chandrasekar Umapathy]|mailinglistsite=http://lists.owasp.org/mailman/listinfo/owasp-chennai|emailarchives=http://lists.owasp.org/pipermail/owasp-chennai}}&lt;br /&gt;
&lt;br /&gt;
==== Local News ====&lt;br /&gt;
&amp;lt;paypal&amp;gt;Chennai&amp;lt;/paypal&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Stay Tuned ==&lt;br /&gt;
&lt;br /&gt;
Receive SMS Alerts - http://labs.google.co.in/smschannels/subscribe/OwaspChennai&lt;br /&gt;
&lt;br /&gt;
== Security Articles ==&lt;br /&gt;
March 2008 - '''A Checklist for Identifying Vulnerabilities''' - Vulnerabilities are holes in the application design / development / deployment that enable attackers to take advantage of the flaws present in the application... &lt;br /&gt;
[[https://www.owasp.org/images/c/c5/Vulnerability_Checklist.doc More]&lt;br /&gt;
&lt;br /&gt;
==== Chapter Meetings ====&lt;br /&gt;
&lt;br /&gt;
==== Chapter Meetings ====&lt;br /&gt;
['''OWASP Chennai Chapter Meeting - 31 July 2010''']&lt;br /&gt;
&lt;br /&gt;
  9:30a – 9:35a =&amp;gt; &amp;lt;B&amp;gt;Opening the meeting&amp;lt;/B&amp;gt;&lt;br /&gt;
  9:36a – 10:30a =&amp;gt; &amp;lt;B&amp;gt;Application Security (Jamuna, Chief Guest)&amp;lt;/B&amp;gt;&lt;br /&gt;
  10:31a – 11:00a =&amp;gt; &amp;lt;B&amp;gt;Break + Networking&amp;lt;/B&amp;gt;&lt;br /&gt;
  11:01a – 12:00n =&amp;gt; &amp;lt;B&amp;gt;Threat Modeling&amp;lt;/B&amp;gt;&lt;br /&gt;
  12:01p – 01:00p =&amp;gt; &amp;lt;B&amp;gt;Web 2.0 Security Testing&amp;lt;/B&amp;gt;&lt;br /&gt;
  01:01p –  01:05p =&amp;gt; &amp;lt;B&amp;gt;Closing remarks&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[&lt;br /&gt;
'''OWASP Chennai Chapter Meeting - 17 May 2009''']]&lt;br /&gt;
&lt;br /&gt;
  09:30a to 09:45a &amp;lt;B&amp;gt;Introduction to OWASP &amp;amp; Welcome statement Presented by Chandrasekar Umapathy&amp;lt;/B&amp;gt;&lt;br /&gt;
  09:45a to 10:20a &amp;lt;B&amp;gt;Presentation by KrishnaKumar Madhavan on Security Challenges Faced in Globalization&amp;lt;/B&amp;gt;&lt;br /&gt;
  10:45a to 11:00a &amp;lt;B&amp;gt;Coffee/Tea break&amp;lt;/B&amp;gt;&lt;br /&gt;
  11:00a to 11:45a &amp;lt;B&amp;gt;Presentation by  Abhay Bhargav on Application Security Risk - The Full Circle&amp;lt;/B&amp;gt;&lt;br /&gt;
  12:00n to 12:45p &amp;lt;B&amp;gt; Presentation by Murugan IPS on Mobile Crimes&amp;lt;/B&amp;gt;&lt;br /&gt;
  12:45P to 12:50p &amp;lt;B&amp;gt; Closing Session &amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== OWASP Chennai Chapter Meeting - 21 March 2009 ==&lt;br /&gt;
The first meeting of the year 2009. The agenda will be:&lt;br /&gt;
&lt;br /&gt;
  09:30a to 10:00a &amp;lt;B&amp;gt;Introductions &amp;amp; Welcome statement&amp;lt;/B&amp;gt;&lt;br /&gt;
  10:00a to 10:45a &amp;lt;B&amp;gt;Presentation by Lavakumar on vulnerability in Flex Applications [[https://www.owasp.org/images/e/e3/FlashSecurity.ppt Download Presentation]]&amp;lt;/B&amp;gt;&lt;br /&gt;
  10:45a to 11:00a &amp;lt;B&amp;gt;Coffee/Tea break&amp;lt;/B&amp;gt;&lt;br /&gt;
  11:00a to 12:00n &amp;lt;B&amp;gt;Presentation by Venki on top 25 programming errors [[https://www.owasp.org/images/1/11/Top25ProgrammingErrors.ppt Download Presentation]]&amp;lt;/B&amp;gt;&lt;br /&gt;
  12:00n to 12:01p &amp;lt;B&amp;gt;Closing Session&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For any questions, call +91-9840148148&lt;br /&gt;
&lt;br /&gt;
Venue:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;B&amp;gt;5/535, Old Mahabalipuram Road,&lt;br /&gt;
&lt;br /&gt;
Okkiam Thoraipakkam&lt;br /&gt;
&lt;br /&gt;
Chennai - 600 096&lt;br /&gt;
&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You are all invited.&lt;br /&gt;
&lt;br /&gt;
== You are Invited for the OWASP Chennai chapter Kick off Meeting - 2 February 2007 ==&lt;br /&gt;
This first meeting will serve as an introduction to OWASP and will have a discussion centered around our activities for the year 2007. &lt;br /&gt;
&lt;br /&gt;
The agenda:&lt;br /&gt;
 &lt;br /&gt;
  14.00 - 14.15: Welcome &amp;amp; Member Introduction&lt;br /&gt;
  14.15 - 14.30: OWASP Introduction, Anand,Cognizant &lt;br /&gt;
  14.30 - 15.30: Presentation on Phishing, Sreemathy Varadan, Cognizant [[https://www.owasp.org/images/a/a3/Phishing.ppt Download Presentation]]&lt;br /&gt;
  15.30 - 16.00: Discussion - Meeting Schedule for 2007, Chennai Chapter Activities&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Cognizant Technology solutions will be the sponsor for this meeting and the location would be &lt;br /&gt;
  Third Floor, &lt;br /&gt;
  Elnet Software City,&lt;br /&gt;
  T.S.140, Block 2&amp;amp;9 C.P.T.Road, &lt;br /&gt;
  Taramani,&lt;br /&gt;
  Chennai - 600113&lt;br /&gt;
&lt;br /&gt;
For any queries, pls call 044-42284056.&lt;br /&gt;
&lt;br /&gt;
Pls confirm your participation by sending a mail to owasp@cognizant.com&lt;br /&gt;
&lt;br /&gt;
Pls note that all OWASP chapter meetings are free and there will not be any vendor pitches or sales presentations at OWASP meetings]&lt;br /&gt;
&lt;br /&gt;
==== Chennai OWASP Chapter Leaders ====&lt;br /&gt;
The chapter leaders are [mailto:venki@owasp.org Venkatesh Jagannathan] and [mailto:cumapathy@owasp.org Chandrasekar Umapathy]&lt;br /&gt;
__NOTOC__&lt;br /&gt;
&amp;lt;headertabs/&amp;gt;&lt;br /&gt;
[[Category:India]]&lt;/div&gt;</summary>
		<author><name>Heyvenki</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=Chennai&amp;diff=57853</id>
		<title>Chennai</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=Chennai&amp;diff=57853"/>
				<updated>2009-04-02T10:50:05Z</updated>
		
		<summary type="html">&lt;p&gt;Heyvenki: /* OWASP Chennai Chapter Meeting - 21 March 2009 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Chapter Template|chaptername=Chennai|extra=The chapter leaders are [mailto:venki@owasp.org Venkatesh Jagannathan] and [mailto:cumapathy@owasp.org Chandrasekar Umapathy]|mailinglistsite=http://lists.owasp.org/mailman/listinfo/owasp-chennai|emailarchives=http://lists.owasp.org/pipermail/owasp-chennai}}&lt;br /&gt;
&lt;br /&gt;
==== Local News ====&lt;br /&gt;
&amp;lt;paypal&amp;gt;Chennai&amp;lt;/paypal&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Stay Tuned ==&lt;br /&gt;
&lt;br /&gt;
Receive SMS Alerts - http://labs.google.co.in/smschannels/subscribe/OwaspChennai&lt;br /&gt;
&lt;br /&gt;
== Security Articles ==&lt;br /&gt;
March 2008 - '''A Checklist for Identifying Vulnerabilities''' - Vulnerabilities are holes in the application design / development / deployment that enable attackers to take advantage of the flaws present in the application... &lt;br /&gt;
[[https://www.owasp.org/images/c/c5/Vulnerability_Checklist.doc More]&lt;br /&gt;
&lt;br /&gt;
==== Chapter Meetings ====&lt;br /&gt;
== OWASP Chennai Chapter Meeting - 21 March 2009 ==&lt;br /&gt;
The first meeting of the year 2009. The agenda will be:&lt;br /&gt;
&lt;br /&gt;
  09:30a to 10:00a &amp;lt;B&amp;gt;Introductions &amp;amp; Welcome statement&amp;lt;/B&amp;gt;&lt;br /&gt;
  10:00a to 10:45a &amp;lt;B&amp;gt;Presentation by Lavakumar on vulnerability in Flex Applications [[https://www.owasp.org/images/e/e3/FlashSecurity.ppt Download Presentation]]&amp;lt;/B&amp;gt;&lt;br /&gt;
  10:45a to 11:00a &amp;lt;B&amp;gt;Coffee/Tea break&amp;lt;/B&amp;gt;&lt;br /&gt;
  11:00a to 12:00n &amp;lt;B&amp;gt;Presentation by Venki on top 25 programming errors [[https://www.owasp.org/images/1/11/Top25ProgrammingErrors.ppt Download Presentation]]&amp;lt;/B&amp;gt;&lt;br /&gt;
  12:00n to 12:01p &amp;lt;B&amp;gt;Closing Session&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For any questions, call +91-9840148148&lt;br /&gt;
&lt;br /&gt;
Venue:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;B&amp;gt;5/535, Old Mahabalipuram Road,&lt;br /&gt;
&lt;br /&gt;
Okkiam Thoraipakkam&lt;br /&gt;
&lt;br /&gt;
Chennai - 600 096&lt;br /&gt;
&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You are all invited.&lt;br /&gt;
&lt;br /&gt;
== You are Invited for the OWASP Chennai chapter Kick off Meeting - 2 February 2007 ==&lt;br /&gt;
This first meeting will serve as an introduction to OWASP and will have a discussion centered around our activities for the year 2007. &lt;br /&gt;
&lt;br /&gt;
The agenda:&lt;br /&gt;
 &lt;br /&gt;
  14.00 - 14.15: Welcome &amp;amp; Member Introduction&lt;br /&gt;
  14.15 - 14.30: OWASP Introduction, Anand,Cognizant &lt;br /&gt;
  14.30 - 15.30: Presentation on Phishing, Sreemathy Varadan, Cognizant [[https://www.owasp.org/images/a/a3/Phishing.ppt Download Presentation]]&lt;br /&gt;
  15.30 - 16.00: Discussion - Meeting Schedule for 2007, Chennai Chapter Activities&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Cognizant Technology solutions will be the sponsor for this meeting and the location would be &lt;br /&gt;
  Third Floor, &lt;br /&gt;
  Elnet Software City,&lt;br /&gt;
  T.S.140, Block 2&amp;amp;9 C.P.T.Road, &lt;br /&gt;
  Taramani,&lt;br /&gt;
  Chennai - 600113&lt;br /&gt;
&lt;br /&gt;
For any queries, pls call 044-42284056.&lt;br /&gt;
&lt;br /&gt;
Pls confirm your participation by sending a mail to owasp@cognizant.com&lt;br /&gt;
&lt;br /&gt;
Pls note that all OWASP chapter meetings are free and there will not be any vendor pitches or sales presentations at OWASP meetings]&lt;br /&gt;
&lt;br /&gt;
==== Chennai OWASP Chapter Leaders ====&lt;br /&gt;
The chapter leaders are [mailto:venki@owasp.org Venkatesh Jagannathan] and [mailto:cumapathy@owasp.org Chandrasekar Umapathy]&lt;br /&gt;
__NOTOC__&lt;br /&gt;
&amp;lt;headertabs/&amp;gt;&lt;br /&gt;
[[Category:India]]&lt;/div&gt;</summary>
		<author><name>Heyvenki</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=File:Top25ProgrammingErrors.ppt&amp;diff=57851</id>
		<title>File:Top25ProgrammingErrors.ppt</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=File:Top25ProgrammingErrors.ppt&amp;diff=57851"/>
				<updated>2009-04-02T10:47:01Z</updated>
		
		<summary type="html">&lt;p&gt;Heyvenki: Chennai OWASP Meeting - Top 25 Programming Errors&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Chennai OWASP Meeting - Top 25 Programming Errors&lt;/div&gt;</summary>
		<author><name>Heyvenki</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=File:FlashSecurity.ppt&amp;diff=57850</id>
		<title>File:FlashSecurity.ppt</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=File:FlashSecurity.ppt&amp;diff=57850"/>
				<updated>2009-04-02T10:45:05Z</updated>
		
		<summary type="html">&lt;p&gt;Heyvenki: Chennai OWASP meeting - Presentation on Flash Security&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Chennai OWASP meeting - Presentation on Flash Security&lt;/div&gt;</summary>
		<author><name>Heyvenki</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=Chennai&amp;diff=57116</id>
		<title>Chennai</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=Chennai&amp;diff=57116"/>
				<updated>2009-03-20T21:19:31Z</updated>
		
		<summary type="html">&lt;p&gt;Heyvenki: /* OWASP Chennai Chapter Meeting - 21 March 2009 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Chapter Template|chaptername=Chennai|extra=The chapter leaders are [mailto:venki@owasp.org Venkatesh Jagannathan] and [mailto:cumapathy@owasp.org Chandrasekar Umapathy]|mailinglistsite=http://lists.owasp.org/mailman/listinfo/owasp-chennai|emailarchives=http://lists.owasp.org/pipermail/owasp-chennai}}&lt;br /&gt;
&lt;br /&gt;
==== Local News ====&lt;br /&gt;
&amp;lt;paypal&amp;gt;Chennai&amp;lt;/paypal&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Stay Tuned ==&lt;br /&gt;
&lt;br /&gt;
Receive SMS Alerts - http://labs.google.co.in/smschannels/subscribe/OwaspChennai&lt;br /&gt;
&lt;br /&gt;
== Security Articles ==&lt;br /&gt;
March 2008 - '''A Checklist for Identifying Vulnerabilities''' - Vulnerabilities are holes in the application design / development / deployment that enable attackers to take advantage of the flaws present in the application... &lt;br /&gt;
[[https://www.owasp.org/images/c/c5/Vulnerability_Checklist.doc More]&lt;br /&gt;
&lt;br /&gt;
==== Chapter Meetings ====&lt;br /&gt;
== OWASP Chennai Chapter Meeting - 21 March 2009 ==&lt;br /&gt;
The first meeting of the year 2009. The agenda will be:&lt;br /&gt;
&lt;br /&gt;
  09:30a to 10:00a &amp;lt;B&amp;gt;Introductions &amp;amp; Welcome statement&amp;lt;/B&amp;gt;&lt;br /&gt;
  10:00a to 10:45a &amp;lt;B&amp;gt;Presentation by Lavakumar on vulnerability in Flex Applications&amp;lt;/B&amp;gt;&lt;br /&gt;
  10:45a to 11:00a &amp;lt;B&amp;gt;Coffee/Tea break&amp;lt;/B&amp;gt;&lt;br /&gt;
  11:00a to 12:00n &amp;lt;B&amp;gt;Presentation by Venki on top 25 programming errors&amp;lt;/B&amp;gt;&lt;br /&gt;
  12:00n to 12:01p &amp;lt;B&amp;gt;Closing Session&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For any questions, call +91-9840148148&lt;br /&gt;
&lt;br /&gt;
Venue:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;B&amp;gt;5/535, Old Mahabalipuram Road,&lt;br /&gt;
&lt;br /&gt;
Okkiam Thoraipakkam&lt;br /&gt;
&lt;br /&gt;
Chennai - 600 096&lt;br /&gt;
&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You are all invited.&lt;br /&gt;
&lt;br /&gt;
== You are Invited for the OWASP Chennai chapter Kick off Meeting - 2 February 2007 ==&lt;br /&gt;
This first meeting will serve as an introduction to OWASP and will have a discussion centered around our activities for the year 2007. &lt;br /&gt;
&lt;br /&gt;
The agenda:&lt;br /&gt;
 &lt;br /&gt;
  14.00 - 14.15: Welcome &amp;amp; Member Introduction&lt;br /&gt;
  14.15 - 14.30: OWASP Introduction, Anand,Cognizant &lt;br /&gt;
  14.30 - 15.30: Presentation on Phishing, Sreemathy Varadan, Cognizant [[https://www.owasp.org/images/a/a3/Phishing.ppt Download Presentation]]&lt;br /&gt;
  15.30 - 16.00: Discussion - Meeting Schedule for 2007, Chennai Chapter Activities&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Cognizant Technology solutions will be the sponsor for this meeting and the location would be &lt;br /&gt;
  Third Floor, &lt;br /&gt;
  Elnet Software City,&lt;br /&gt;
  T.S.140, Block 2&amp;amp;9 C.P.T.Road, &lt;br /&gt;
  Taramani,&lt;br /&gt;
  Chennai - 600113&lt;br /&gt;
&lt;br /&gt;
For any queries, pls call 044-42284056.&lt;br /&gt;
&lt;br /&gt;
Pls confirm your participation by sending a mail to owasp@cognizant.com&lt;br /&gt;
&lt;br /&gt;
Pls note that all OWASP chapter meetings are free and there will not be any vendor pitches or sales presentations at OWASP meetings]&lt;br /&gt;
&lt;br /&gt;
==== Chennai OWASP Chapter Leaders ====&lt;br /&gt;
The chapter leaders are [mailto:venki@owasp.org Venkatesh Jagannathan] and [mailto:cumapathy@owasp.org Chandrasekar Umapathy]&lt;br /&gt;
__NOTOC__&lt;br /&gt;
&amp;lt;headertabs/&amp;gt;&lt;br /&gt;
[[Category:India]]&lt;/div&gt;</summary>
		<author><name>Heyvenki</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=Chennai&amp;diff=56769</id>
		<title>Chennai</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=Chennai&amp;diff=56769"/>
				<updated>2009-03-16T09:51:41Z</updated>
		
		<summary type="html">&lt;p&gt;Heyvenki: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Chapter Template|chaptername=Chennai|extra=The chapter leaders are [mailto:venki@owasp.org Venkatesh Jagannathan] and [mailto:cumapathy@owasp.org Chandrasekar Umapathy]|mailinglistsite=http://lists.owasp.org/mailman/listinfo/owasp-chennai|emailarchives=http://lists.owasp.org/pipermail/owasp-chennai}}&lt;br /&gt;
&lt;br /&gt;
==== Local News ====&lt;br /&gt;
&amp;lt;paypal&amp;gt;Chennai&amp;lt;/paypal&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Security Articles ==&lt;br /&gt;
March 2008 - '''A Checklist for Identifying Vulnerabilities''' - Vulnerabilities are holes in the application design / development / deployment that enable attackers to take advantage of the flaws present in the application... &lt;br /&gt;
[[https://www.owasp.org/images/c/c5/Vulnerability_Checklist.doc More]&lt;br /&gt;
&lt;br /&gt;
==== Chapter Meetings ====&lt;br /&gt;
== OWASP Chennai Chapter Meeting - 21 March 2008 ==&lt;br /&gt;
The first meeting of the year 2009. The agenda will be:&lt;br /&gt;
&lt;br /&gt;
09:30a to 10:00a &amp;lt;B&amp;gt;Introductions &amp;amp; Welcome statement&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
10:00a to 10:45a &amp;lt;B&amp;gt;Presentation by Lavakumar on vulnerability in Flex Applications&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
10:45a to 11:00a &amp;lt;B&amp;gt;Coffee/Tea break&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
11:00a to 12:00n &amp;lt;B&amp;gt;Presentation by Venki on top 25 programming errors&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
12:00n to 12:01p &amp;lt;B&amp;gt;Closing Session&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For any questions, call +91-9840148148&lt;br /&gt;
&lt;br /&gt;
Venue:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;B&amp;gt;5/535, Old Mahabalipuram Road,&lt;br /&gt;
&lt;br /&gt;
Okkiam Thoraipakkam&lt;br /&gt;
&lt;br /&gt;
Chennai - 600 096&lt;br /&gt;
&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You are all invited.&lt;br /&gt;
&lt;br /&gt;
== You are Invited for the OWASP Chennai chapter Kick off Meeting - 2 February 2007 ==&lt;br /&gt;
This first meeting will serve as an introduction to OWASP and will have a discussion centered around our activities for the year 2007. &lt;br /&gt;
&lt;br /&gt;
The agenda:&lt;br /&gt;
 &lt;br /&gt;
  14.00 - 14.15: Welcome &amp;amp; Member Introduction&lt;br /&gt;
  14.15 - 14.30: OWASP Introduction, Anand,Cognizant &lt;br /&gt;
  14.30 - 15.30: Presentation on Phishing, Sreemathy Varadan, Cognizant [[https://www.owasp.org/images/a/a3/Phishing.ppt Download Presentation]]&lt;br /&gt;
  15.30 - 16.00: Discussion - Meeting Schedule for 2007, Chennai Chapter Activities&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Cognizant Technology solutions will be the sponsor for this meeting and the location would be &lt;br /&gt;
  Third Floor, &lt;br /&gt;
  Elnet Software City,&lt;br /&gt;
  T.S.140, Block 2&amp;amp;9 C.P.T.Road, &lt;br /&gt;
  Taramani,&lt;br /&gt;
  Chennai - 600113&lt;br /&gt;
&lt;br /&gt;
For any queries, pls call 044-42284056.&lt;br /&gt;
&lt;br /&gt;
Pls confirm your participation by sending a mail to owasp@cognizant.com&lt;br /&gt;
&lt;br /&gt;
Pls note that all OWASP chapter meetings are free and there will not be any vendor pitches or sales presentations at OWASP meetings]&lt;br /&gt;
&lt;br /&gt;
==== Chennai OWASP Chapter Leaders ====&lt;br /&gt;
The chapter leaders are [mailto:venki@owasp.org Venkatesh Jagannathan] and [mailto:cumapathy@owasp.org Chandrasekar Umapathy]&lt;br /&gt;
__NOTOC__&lt;br /&gt;
&amp;lt;headertabs/&amp;gt;&lt;br /&gt;
[[Category:India]]&lt;/div&gt;</summary>
		<author><name>Heyvenki</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=Chennai&amp;diff=56768</id>
		<title>Chennai</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=Chennai&amp;diff=56768"/>
				<updated>2009-03-16T09:50:28Z</updated>
		
		<summary type="html">&lt;p&gt;Heyvenki: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Chapter Template|chaptername=Chennai|extra=The chapter leaders are [mailto:venki@owasp.org Venkatesh Jagannathan] and [mailto:cumapathy@owasp.org Chandrasekar Umapathy]|mailinglistsite=http://lists.owasp.org/mailman/listinfo/owasp-chennai|emailarchives=http://lists.owasp.org/pipermail/owasp-chennai}}&lt;br /&gt;
&lt;br /&gt;
==== Local News ====&lt;br /&gt;
&amp;lt;paypal&amp;gt;Chennai&amp;lt;/paypal&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Security Articles ==&lt;br /&gt;
March 2008 - '''A Checklist for Identifying Vulnerabilities''' - Vulnerabilities are holes in the application design / development / deployment that enable attackers to take advantage of the flaws present in the application... &lt;br /&gt;
[[https://www.owasp.org/images/c/c5/Vulnerability_Checklist.doc More]&lt;br /&gt;
&lt;br /&gt;
==== Chapter Meetings ====&lt;br /&gt;
== OWASP Chennai Chapter Meeting - 21 March 2008 ==&lt;br /&gt;
The first meeting of the year 2009. The agenda will be:&lt;br /&gt;
&lt;br /&gt;
09:30a to 10:00a &amp;lt;B&amp;gt;Introductions &amp;amp; Welcome statement&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
10:00a to 10:45a &amp;lt;B&amp;gt;Presentation by Lavakumar on vulnerability in Flex Applications&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
10:45a to 11:00a &amp;lt;B&amp;gt;Coffee/Tea break&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
11:00a to 12:00n &amp;lt;B&amp;gt;Presentation by Venki on top 25 programming errors&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
12:00a to 12:10p &amp;lt;B&amp;gt;Closing and Plan for the next chapter meeting&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
For any questions, call +91-9840148148&lt;br /&gt;
&lt;br /&gt;
Venue:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;B&amp;gt;5/535, Old Mahabalipuram Road,&lt;br /&gt;
&lt;br /&gt;
Okkiam Thoraipakkam&lt;br /&gt;
&lt;br /&gt;
Chennai - 600 096&lt;br /&gt;
&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You are all invited.&lt;br /&gt;
&lt;br /&gt;
== You are Invited for the OWASP Chennai chapter Kick off Meeting - 2 February 2007 ==&lt;br /&gt;
This first meeting will serve as an introduction to OWASP and will have a discussion centered around our activities for the year 2007. &lt;br /&gt;
&lt;br /&gt;
The agenda:&lt;br /&gt;
 &lt;br /&gt;
  14.00 - 14.15: Welcome &amp;amp; Member Introduction&lt;br /&gt;
  14.15 - 14.30: OWASP Introduction, Anand,Cognizant &lt;br /&gt;
  14.30 - 15.30: Presentation on Phishing, Sreemathy Varadan, Cognizant [[https://www.owasp.org/images/a/a3/Phishing.ppt Download Presentation]]&lt;br /&gt;
  15.30 - 16.00: Discussion - Meeting Schedule for 2007, Chennai Chapter Activities&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Cognizant Technology solutions will be the sponsor for this meeting and the location would be &lt;br /&gt;
  Third Floor, &lt;br /&gt;
  Elnet Software City,&lt;br /&gt;
  T.S.140, Block 2&amp;amp;9 C.P.T.Road, &lt;br /&gt;
  Taramani,&lt;br /&gt;
  Chennai - 600113&lt;br /&gt;
&lt;br /&gt;
For any queries, pls call 044-42284056.&lt;br /&gt;
&lt;br /&gt;
Pls confirm your participation by sending a mail to owasp@cognizant.com&lt;br /&gt;
&lt;br /&gt;
Pls note that all OWASP chapter meetings are free and there will not be any vendor pitches or sales presentations at OWASP meetings]&lt;br /&gt;
&lt;br /&gt;
==== Chennai OWASP Chapter Leaders ====&lt;br /&gt;
The chapter leaders are [mailto:venki@owasp.org Venkatesh Jagannathan] and [mailto:cumapathy@owasp.org Chandrasekar Umapathy]&lt;br /&gt;
__NOTOC__&lt;br /&gt;
&amp;lt;headertabs/&amp;gt;&lt;br /&gt;
[[Category:India]]&lt;/div&gt;</summary>
		<author><name>Heyvenki</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=Chennai&amp;diff=56767</id>
		<title>Chennai</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=Chennai&amp;diff=56767"/>
				<updated>2009-03-16T09:48:15Z</updated>
		
		<summary type="html">&lt;p&gt;Heyvenki: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Chapter Template|chaptername=Chennai|extra=The chapter leaders are [mailto:venki@owasp.org Venkatesh Jagannathan] and [mailto:cumapathy@owasp.org Chandrasekar Umapathy]|mailinglistsite=http://lists.owasp.org/mailman/listinfo/owasp-chennai|emailarchives=http://lists.owasp.org/pipermail/owasp-chennai}}&lt;br /&gt;
&lt;br /&gt;
==== Local News ====&lt;br /&gt;
&amp;lt;paypal&amp;gt;Chennai&amp;lt;/paypal&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Security Articles ==&lt;br /&gt;
March 2008 - '''A Checklist for Identifying Vulnerabilities''' - Vulnerabilities are holes in the application design / development / deployment that enable attackers to take advantage of the flaws present in the application... &lt;br /&gt;
[[https://www.owasp.org/images/c/c5/Vulnerability_Checklist.doc More]&lt;br /&gt;
&lt;br /&gt;
==== Chapter Meetings ====&lt;br /&gt;
== You are Invited for the OWASP Chennai Chapter Meeting - 21 March 2008 ==&lt;br /&gt;
The first meeting of the year 2009. The agenda will be:&lt;br /&gt;
&lt;br /&gt;
09:30a to 10:00a &amp;lt;B&amp;gt;Introductions &amp;amp; Welcome statement&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
10:00a to 10:45a &amp;lt;B&amp;gt;Presentation by Lavakumar on vulnerability in Flex Applications&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
10:45a to 11:00a &amp;lt;B&amp;gt;Coffee/Tea break&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
11:00a to 12:00n &amp;lt;B&amp;gt;Presentation by Venki on top 25 programming errors&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
12:00a to 12:10p &amp;lt;B&amp;gt;Closing and Plan for the next chapter meeting&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Venue:&lt;br /&gt;
&amp;lt;B&amp;gt;5/535, Old Mahabalipuram Road,&lt;br /&gt;
&lt;br /&gt;
Okkiam Thoraipakkam&lt;br /&gt;
&lt;br /&gt;
Chennai - 600 096&lt;br /&gt;
&amp;lt;/B&amp;gt;&lt;br /&gt;
&lt;br /&gt;
You are all invited.&lt;br /&gt;
&lt;br /&gt;
== You are Invited for the OWASP Chennai chapter Kick off Meeting - 2 February 2007 ==&lt;br /&gt;
This first meeting will serve as an introduction to OWASP and will have a discussion centered around our activities for the year 2007. &lt;br /&gt;
&lt;br /&gt;
The agenda:&lt;br /&gt;
 &lt;br /&gt;
  14.00 - 14.15: Welcome &amp;amp; Member Introduction&lt;br /&gt;
  14.15 - 14.30: OWASP Introduction, Anand,Cognizant &lt;br /&gt;
  14.30 - 15.30: Presentation on Phishing, Sreemathy Varadan, Cognizant [[https://www.owasp.org/images/a/a3/Phishing.ppt Download Presentation]]&lt;br /&gt;
  15.30 - 16.00: Discussion - Meeting Schedule for 2007, Chennai Chapter Activities&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Cognizant Technology solutions will be the sponsor for this meeting and the location would be &lt;br /&gt;
  Third Floor, &lt;br /&gt;
  Elnet Software City,&lt;br /&gt;
  T.S.140, Block 2&amp;amp;9 C.P.T.Road, &lt;br /&gt;
  Taramani,&lt;br /&gt;
  Chennai - 600113&lt;br /&gt;
&lt;br /&gt;
For any queries, pls call 044-42284056.&lt;br /&gt;
&lt;br /&gt;
Pls confirm your participation by sending a mail to owasp@cognizant.com&lt;br /&gt;
&lt;br /&gt;
Pls note that all OWASP chapter meetings are free and there will not be any vendor pitches or sales presentations at OWASP meetings]&lt;br /&gt;
&lt;br /&gt;
==== Chennai OWASP Chapter Leaders ====&lt;br /&gt;
The chapter leaders are [mailto:venki@owasp.org Venkatesh Jagannathan] and [mailto:cumapathy@owasp.org Chandrasekar Umapathy]&lt;br /&gt;
__NOTOC__&lt;br /&gt;
&amp;lt;headertabs/&amp;gt;&lt;br /&gt;
[[Category:India]]&lt;/div&gt;</summary>
		<author><name>Heyvenki</name></author>	</entry>

	</feed>