<?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=Svieg</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=Svieg"/>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php/Special:Contributions/Svieg"/>
		<updated>2026-05-27T15:37:08Z</updated>
		<subtitle>User contributions</subtitle>
		<generator>MediaWiki 1.27.2</generator>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=Unrestricted_File_Upload&amp;diff=242061</id>
		<title>Unrestricted File Upload</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=Unrestricted_File_Upload&amp;diff=242061"/>
				<updated>2018-07-23T17:50:45Z</updated>
		
		<summary type="html">&lt;p&gt;Svieg: regex was not working properly, now should&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:Vulnerability}}&lt;br /&gt;
&lt;br /&gt;
Last revision (mm/dd/yy): '''{{REVISIONMONTH}}/{{REVISIONDAY}}/{{REVISIONYEAR}}''' &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
&lt;br /&gt;
Uploaded files represent a significant risk to applications. The first step in many attacks is to get some code to the system to be attacked. Then the attack only needs to find a way to get the code executed. Using a file upload helps the attacker accomplish the first step.&lt;br /&gt;
&lt;br /&gt;
The consequences of unrestricted file upload can vary, including complete system takeover, an overloaded file system or database, forwarding attacks to back-end systems, client-side attacks, or simple defacement. It depends on what the application does with the uploaded file and especially where it is stored. &lt;br /&gt;
&lt;br /&gt;
There are really two classes of problems here. The first is with the file metadata, like the path and file name. These are generally provided by the transport, such as HTTP multi-part encoding. This data may trick the application into overwriting a critical file or storing the file in a bad location. You must validate the metadata extremely carefully before using it.&lt;br /&gt;
&lt;br /&gt;
The other class of problem is with the file size or content. The range of problems here depends entirely on what the file is used for. See the examples below for some ideas about how files might be misused. To protect against this type of attack, you should analyse everything your application does with files and think carefully about what processing and interpreters are involved.&lt;br /&gt;
&lt;br /&gt;
== Risk Factors ==&lt;br /&gt;
&lt;br /&gt;
* The impact of this vulnerability is high, supposed code can be executed in the server context or on the client side. The likelihood of detection for the attacker is high. The prevalence is common. As a result the severity of this type of vulnerability is high.&lt;br /&gt;
* It is important to check a file upload module's access controls to examine the risks properly.&lt;br /&gt;
* Server-side attacks: The web server can be compromised by uploading and executing a web-shell which can run commands, browse system files, browse local resources, attack other servers, or exploit the local vulnerabilities, and so forth.&lt;br /&gt;
* Client-side attacks: Uploading malicious files can make the website vulnerable to client-side attacks such as [[Cross-site Scripting (XSS)|XSS]] or Cross-site Content Hijacking.&lt;br /&gt;
* Uploaded files can be abused to exploit other vulnerable sections of an application when a file on the same or a trusted server is needed (can again lead to client-side or server-side attacks)&lt;br /&gt;
* Uploaded files might trigger vulnerabilities in broken libraries/applications on the client side (e.g. iPhone MobileSafari LibTIFF Buffer Overflow).&lt;br /&gt;
* Uploaded files might trigger vulnerabilities in broken libraries/applications on the server side (e.g. ImageMagick flaw that called ImageTragick!).&lt;br /&gt;
* Uploaded files might trigger vulnerabilities in broken real-time monitoring tools (e.g. Symantec antivirus exploit by unpacking a RAR file)&lt;br /&gt;
* A malicious file such as a Unix shell script, a windows virus, an Excel file with a dangerous formula, or a reverse shell can be uploaded on the server in order to execute code by an administrator or webmaster later -- on the victim's machine.&lt;br /&gt;
* An attacker might be able to put a phishing page into the website or deface the website.&lt;br /&gt;
* The file storage server might be abused to host troublesome files including malwares, illegal software, or adult contents. Uploaded files might also contain malwares' command and control data, violence and harassment messages, or steganographic data that can be used by criminal organisations.&lt;br /&gt;
* Uploaded sensitive files might be accessible by unauthorised people.&lt;br /&gt;
* File uploaders may disclose internal information such as server internal paths in their error messages.&lt;br /&gt;
&lt;br /&gt;
== Examples ==&lt;br /&gt;
&lt;br /&gt;
=== Attacks on application platform ===&lt;br /&gt;
&lt;br /&gt;
* Upload .jsp file into web tree - jsp code executed as the web user &lt;br /&gt;
* Upload .gif file to be resized - image library flaw exploited &lt;br /&gt;
* Upload huge files - file space denial of service &lt;br /&gt;
* Upload file using malicious path or name - overwrite a critical file &lt;br /&gt;
* Upload file containing personal data - other users access it &lt;br /&gt;
* Upload file containing &amp;quot;tags&amp;quot; - tags get executed as part of being &amp;quot;included&amp;quot; in a web page&lt;br /&gt;
* Upload .rar file to be scanned by antivirus - command executed on a server running the vulnerable antivirus software&lt;br /&gt;
&lt;br /&gt;
=== Attacks on other systems ===&lt;br /&gt;
&lt;br /&gt;
* Upload .exe file into web tree - victims download trojaned executable &lt;br /&gt;
* Upload virus infected file - victims' machines infected &lt;br /&gt;
* Upload .html file containing script - victim experiences [[Cross-site Scripting (XSS)]]&lt;br /&gt;
* Upload .jpg file containing a Flash object - victim experiences Cross-site Content Hijacking.&lt;br /&gt;
* Upload .rar file to be scanned by antivirus - command executed on a client running the vulnerable antivirus software&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Weak Protections and Bypassing Methods ==&lt;br /&gt;
&lt;br /&gt;
=== Blacklisting File Extensions ===&lt;br /&gt;
&lt;br /&gt;
This protection might be bypassed by:&lt;br /&gt;
&lt;br /&gt;
* Finding missed extensions that can be executed on the server side or can be dangerous on the client side (e.g. &amp;quot;.php5&amp;quot;, &amp;quot;.pht&amp;quot;, &amp;quot;.phtml&amp;quot;, &amp;quot;.shtml&amp;quot;, &amp;quot;.asa&amp;quot;, &amp;quot;.cer&amp;quot;, &amp;quot;.asax&amp;quot;, &amp;quot;.swf&amp;quot;, or &amp;quot;.xap&amp;quot;).&lt;br /&gt;
* Finding flaws in a web server configuration when it parses files with double extensions or it executes them by providing a sensitive extension after a delimiter such as &amp;quot;/&amp;quot; or &amp;quot;;&amp;quot; character (e.g. &amp;quot;/file.jpg/index.php&amp;quot; when the &amp;quot;file.jpg&amp;quot; file contains PHP code and has been uploaded)&lt;br /&gt;
** In Apache, a php file might be executed using the double extension technique such as &amp;quot;file.php.jpg&amp;quot; when &amp;quot;.jpg&amp;quot; is allowed. &lt;br /&gt;
** In IIS6 (or prior versions), a script file can be executed by using one of these two methods:&lt;br /&gt;
*** by adding a semi-colon character after the forbidden extension and before the permitted one (e.g. &amp;quot;file.asp;.jpg&amp;quot;)&lt;br /&gt;
*** by renaming a script file's extension (e.g. &amp;quot;.asp&amp;quot;) to an allowed extension (e.g. &amp;quot;.txt&amp;quot;) in a folder that its name ends with the script's extension (e.g. &amp;quot;folder.asp\file.txt&amp;quot;). In Windows, it is possible to create a directory by using a file uploader and ADS (Alternate Data Stream). In this method, a filename that ends with &amp;quot;::$Index_Allocation&amp;quot; or &amp;quot;:$I30:$Index_Allocation&amp;quot; makes the file uploader to create a directory rather than a file (e.g. &amp;quot;folder.asp::$Index_Allocation&amp;quot; creates &amp;quot;folder.asp&amp;quot; as a directory).&lt;br /&gt;
* Changing a number of letters to their capital forms to bypass case sensitive rules (e.g. &amp;quot;file.aSp&amp;quot; or &amp;quot;file.PHp3&amp;quot;).&lt;br /&gt;
* Using Windows 8.3 feature, it is possible to replace the existing files by using their shortname (e.g. &amp;quot;web.config&amp;quot; can be replaced by &amp;quot;web~1.con&amp;quot; or &amp;quot;.htaccess&amp;quot; can be replaced by &amp;quot;HTACCE~1&amp;quot;)&lt;br /&gt;
* Finding characters that are converted to other useful characters during the file upload process. For instance, when running PHP on IIS, the &amp;quot;&amp;gt;&amp;quot;, &amp;quot;&amp;lt;&amp;quot;, and double quote &amp;quot; characters respectively convert to &amp;quot;?&amp;quot;, &amp;quot;*&amp;quot;, and &amp;quot;.&amp;quot; characters that can be used to replace existing files (e.g. &amp;quot;web&amp;lt;&amp;lt;&amp;quot; can replace the &amp;quot;web.config&amp;quot; file). In order to include the double quote character in the filename in a normal file upload request, the filename in the &amp;quot;Content-Disposition&amp;quot; header should use single quotes (e.g. filename='web&amp;quot;config' to replace the &amp;quot;web.config&amp;quot; file).&lt;br /&gt;
* Finding neutral characters after a filename such as trailing spaces and dots in Windows filesystem or dot and slash characters in a Linux filesystem. These characters at the end of a filename will be removed automatically (e.g. &amp;quot;file.asp ... ... . . .. ..&amp;quot;, &amp;quot;file.asp &amp;quot;, or &amp;quot;file.asp.&amp;quot;). Although slash or backslash characters are also normally problematic characters, they can be ignored in a normal file upload request as anything before these characters may count as the directory name on the server-side; that said, they should be tried for a thorough test (e.g. &amp;quot;test.php/&amp;quot; or &amp;quot;test.php.\&amp;quot;).&lt;br /&gt;
* Finding flaws in extension detection techniques. A web server may use the first extension after the first dot (&amp;quot;.&amp;quot;) in the provided filename or use a flawed algorithm to detect the extension when there is none or multiple dot characters (e.g. &amp;quot;file.txt.jpg.php&amp;quot;). &lt;br /&gt;
* Using control characters such as null character (0x00) after a forbidden extension and before a permitted one may lead to a bypass. In this method, all the strings after the Null character will be discarded when saving the files. Both URL-encoded and decoded version of the null character should be tried in a file upload request for a thorough test. &lt;br /&gt;
* Using NTFS alternate data stream (ADS) in Windows. In this case, a colon character &amp;quot;:&amp;quot; will be inserted after a forbidden extension and before a permitted one. As a result, an empty file with the forbidden extension will be created on the server (e.g. &amp;quot;file.asax:.jpg&amp;quot;). This file might be edited later using other techniques such as using its short filename. The &amp;quot;::$data&amp;quot; pattern can also be used to create non-empty files. Therefore, adding a dot character after this pattern might also be useful to bypass further restrictions (.e.g. &amp;quot;file.asp::$data.&amp;quot;)&lt;br /&gt;
* Flaws in the protection mechanism when it replaces dangerous extensions. For instance, &amp;quot;file.p.phphp&amp;quot; might be changed to &amp;quot;file.php&amp;quot; after going through this functionality.&lt;br /&gt;
* Flaws in the uploaded file usage for instance when a PHP application uses the &amp;quot;include&amp;quot; function to show the uploaded images.&lt;br /&gt;
* Combination of the above techniques.&lt;br /&gt;
&lt;br /&gt;
=== Beating getimagesize() ===&lt;br /&gt;
&lt;br /&gt;
The getimagesize() function will check if it is an image and will check &amp;quot;mime&amp;quot; to verify image type.&lt;br /&gt;
&lt;br /&gt;
Insecure Configuration :&lt;br /&gt;
&lt;br /&gt;
  &amp;lt;FilesMatch &amp;quot;.+\.ph(p([3457s]|\-s)?|t|tml)&amp;quot;&amp;gt;&lt;br /&gt;
  SetHandler application/x-httpd-php&lt;br /&gt;
  &amp;lt;/FileMatch&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Secure Configuration :&lt;br /&gt;
&lt;br /&gt;
  &amp;lt;FilesMatch &amp;quot;.+\.ph(p([3457s]|\-s)?|t|tml)$&amp;quot;&amp;gt;&lt;br /&gt;
  SetHandler application/x-httpd-php&lt;br /&gt;
  &amp;lt;/FileMatch&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If the service is up an running with the Insecure Configuration, any one can beat the getimagesize function by writing comments in GIF file.&lt;br /&gt;
&lt;br /&gt;
For that an end user need to install an utility in Kali/Ubuntu OS named 'gifsicle'&lt;br /&gt;
&lt;br /&gt;
  For Kali Linux : apt-get install gifsicle&lt;br /&gt;
  For Ubuntu : sudo apt-get install gifsicle&lt;br /&gt;
&lt;br /&gt;
Once installed, the below commands will help writing the commands in gif file.&lt;br /&gt;
&lt;br /&gt;
  gifsicle &amp;lt; mygif.gif -- comment &amp;quot;&amp;lt;?php echo 'Current PHP version: ' . phpversion(); ?&amp;gt;&amp;quot; &amp;gt; output.php.gif&lt;br /&gt;
&lt;br /&gt;
The above command will create an file with the name &amp;quot;output.php.gif&amp;quot; which simply need to be upload durning the check of file upload vulnerability.&lt;br /&gt;
&lt;br /&gt;
=== Whitelisting File Extensions ===&lt;br /&gt;
&lt;br /&gt;
Applications that check the file extensions using a whitelist method also need to validate the full filename to prevent any bypass. &lt;br /&gt;
&lt;br /&gt;
* The list of permitted extensions should be reviewed as it can contain malicious extensions as well. For instance, in case of having &amp;quot;.shtml&amp;quot; in the list, the application can be vulnerable to SSI attacks.&lt;br /&gt;
* Some of the bypass techniques for the blacklist methods such as using double extensions are also applicable here and should be checked. &lt;br /&gt;
&lt;br /&gt;
=== &amp;quot;Content-Type&amp;quot; Header Validation ===&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Content-Type&amp;quot; entity in the header of the request indicates the Internet media type of the message content. Sometimes web applications use this parameter in order to recognise a file as a valid one. For instance, they only accept the files with the &amp;quot;Content-Type&amp;quot; of &amp;quot;text/plain&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
* It is possible to bypass this protection by changing this parameter in the request header using a web proxy.&lt;br /&gt;
&lt;br /&gt;
=== Using a File Type Detector ===&lt;br /&gt;
&lt;br /&gt;
Sometimes web applications intentionally or unintentionally use some functions (or APIs) to check the file types in order to process them further. For instance, when an application resize an image file, it may just show an error message when non-image files are uploaded without saving them on the server. &lt;br /&gt;
&lt;br /&gt;
* If it reads the few first characters (or headers), it can be bypassed by inserting malicious code after some valid header or within the file's metadata. &lt;br /&gt;
* Inserting code in the comments section or those section that have no effect on the main file can also lead to a bypass.&lt;br /&gt;
* The inserted data can be obfuscated or encoded if the application detects a malicious code using specific patterns or signatures.&lt;br /&gt;
* Uploaded file can be crafted to create a malicious code in case of being compressed by the application.&lt;br /&gt;
&lt;br /&gt;
=== Other Interesting Test Cases ===&lt;br /&gt;
&lt;br /&gt;
* Uploading a file when another file with the same name already exists. This may show interesting error messages that can lead to information disclosure. Logical flaws might be found if the application renames the new file to keep it on the server.&lt;br /&gt;
* Uploading a file when another folder with the same name already exists. This may show interesting error messages that can lead to information disclosure. &lt;br /&gt;
* Uploading a file with a long name. This may show interesting error messages that can lead to information disclosure.&lt;br /&gt;
* Uploading a file multiple times at the same time. This may show interesting error messages that can lead to information disclosure. &lt;br /&gt;
* Uploading valid and invalid files in different formats such as compressed or XML files to detect any possible processing on the server side. &lt;br /&gt;
* Uploading a file with &amp;quot;.&amp;quot;, &amp;quot;..&amp;quot;, or &amp;quot;...&amp;quot; as its name. For instance, in Apache in Windows, if the application saves the uploaded files in &amp;quot;/www/uploads/&amp;quot; directory, the &amp;quot;.&amp;quot; filename will create a file called &amp;quot;uploads&amp;quot; in the &amp;quot;/www/&amp;quot; directory.&lt;br /&gt;
* Uploading files that may not be deleted easily such as &amp;quot;...:.jpg&amp;quot; in NTFS that makes the &amp;quot;...&amp;quot; file (this file can be deleted using command line). This may show interesting error messages that can lead to information disclosure.&lt;br /&gt;
* Uploading a file in Windows with invalid characters such as |&amp;lt;&amp;gt;*?&amp;quot; in its name. This may show interesting error messages that can lead to information disclosure.  &lt;br /&gt;
* Uploading a file in Windows using reserved (forbidden) names such as CON, PRN, AUX, NUL, COM1, COM2, COM3, COM4, COM5, COM6, COM7, COM8, COM9, LPT1, LPT2, LPT3, LPT4, LPT5, LPT6, LPT7, LPT8, and LPT9. This may show interesting error messages that can lead to information disclosure. Uploading a file with a reserved name may lead to denial of service if the application keeps the name and tries to save it with another extension (detecting it wrongly as an existing file).&lt;br /&gt;
* Cross-site content hijacking issues can be exploited by uploading a file with allowed name and extension but with Flash, PDF, or Silverlight contents. &lt;br /&gt;
* Uploading a &amp;quot;crossdomain.xml&amp;quot; or &amp;quot;clientaccesspolicy.xml&amp;quot; file can make a website vulnerable to cross-site content hijacking. These files should be uploaded to the root of the website to work. However, the &amp;quot;crossdomain.xml&amp;quot; file can be in a subdirectory as long as it is allowed in the root &amp;quot;crossdomain.xml&amp;quot; file.&lt;br /&gt;
&lt;br /&gt;
=== Important Notes in Testing File Uploaders ===&lt;br /&gt;
&lt;br /&gt;
* Do not try to replace the existing files during testing unless it is safe to proceed. For instance, replacing configuration files such as &amp;quot;web.config&amp;quot; or &amp;quot;.htaccess&amp;quot; file can lead to a denial of service attack for the whole website.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Prevention Methods (Solutions to be more secure) ==&lt;br /&gt;
In order to make a Windows server more secure, it is very important to follow the Microsoft security best practices first. For this purpose, some of the useful links are:&lt;br /&gt;
* IIS 6.0 Security Best Practices[http://technet.microsoft.com/en-us/library/cc782762(WS.10).aspx]&lt;br /&gt;
* Securing Sites with Web Site Permissions[http://technet.microsoft.com/en-us/library/cc756133(WS.10).aspx]&lt;br /&gt;
* IIS 6.0 Operations Guide[http://technet.microsoft.com/en-us/library/cc785089(WS.10).aspx]&lt;br /&gt;
* Improving Web Application Security: Threats and Countermeasures[http://msdn.microsoft.com/en-us/library/ms994921.aspx]&lt;br /&gt;
* Understanding the Built-In User and Group Accounts in IIS 7.0[http://learn.iis.net/page.aspx/140/understanding-the-built-in-user-and-group-accounts-in-iis-70/]&lt;br /&gt;
* IIS Security Checklist[http://windows.stanford.edu/docs/IISsecchecklist.htm]&lt;br /&gt;
And some special recommendations for the developers and webmasters:&lt;br /&gt;
* The file types allowed to be uploaded should be restricted to only those that are necessary for business functionality.&lt;br /&gt;
* Never accept a filename and its extension directly without having a whitelist filter.&lt;br /&gt;
* The application should perform filtering and content checking on any files which are uploaded to the server. Files should be thoroughly scanned and validated before being made available to other users. If in doubt, the file should be discarded.&lt;br /&gt;
* It is necessary to have a list of only permitted extensions on the web application. And, file extension can be selected from the list. For instance, it can be a &amp;quot;select case&amp;quot; syntax (in case of having VBScript) to choose the file extension in regards to the real file extension.&lt;br /&gt;
* All the control characters and Unicode ones should be removed from the filenames and their extensions without any exception. Also, the special characters such as &amp;quot;;&amp;quot;, &amp;quot;:&amp;quot;, &amp;quot;&amp;gt;&amp;quot;, &amp;quot;&amp;lt;&amp;quot;, &amp;quot;/&amp;quot; ,&amp;quot;\&amp;quot;, additional &amp;quot;.&amp;quot;, &amp;quot;*&amp;quot;, &amp;quot;%&amp;quot;, &amp;quot;$&amp;quot;, and so on should be discarded as well. If it is applicable and there is no need to have Unicode characters, it is highly recommended to only accept Alpha-Numeric characters and only 1 dot as an input for the file name and the extension; in which the file name and also the extension should not be empty at all (regular expression: [a-zA-Z0-9]{1,200}\.[a-zA-Z0-9]{1,10}).&lt;br /&gt;
* Limit the filename length. For instance, the maximum length of the name of a file plus its extension should be less than 255 characters (without any directory) in an NTFS partition.&lt;br /&gt;
* It is recommended to use an algorithm to determine the filenames. For instance, a filename can be a MD5 hash of the name of file plus the date of the day.&lt;br /&gt;
* Uploaded directory should not have any &amp;quot;execute&amp;quot; permission and all the script handlers should be removed from these directories.&lt;br /&gt;
* Limit the file size to a maximum value in order to prevent denial of service attacks (on file space or other web application’s functions such as the image resizer).&lt;br /&gt;
* Restrict small size files as they can lead to denial of service attacks. So, the minimum size of files should be considered.&lt;br /&gt;
* Use Cross Site Request Forgery protection methods.&lt;br /&gt;
* Prevent from overwriting a file in case of having the same hash for both.&lt;br /&gt;
* Use a virus scanner on the server (if it is applicable). Or, if the contents of files are not confidential, a free virus scanner website can be used. In this case, file should be stored with a random name and without any extension on the server first, and after the virus checking (uploading to a free virus scanner website and getting back the result), it can be renamed to its specific name and extension.&lt;br /&gt;
* Try to use POST method instead of PUT (or GET!)&lt;br /&gt;
* Log users’ activities. However, the logging mechanism should be secured against log forgery and code injection itself.&lt;br /&gt;
* In case of having compressed file extract functions, contents of the compressed file should be checked one by one as a new file.&lt;br /&gt;
* If it is possible, consider saving the files in a database rather than on the filesystem.&lt;br /&gt;
* If files should be saved in a filesystem, consider using an isolated server with a different domain to serve the uploaded files. &lt;br /&gt;
* File uploaders should be only accessible to authenticated and authorised users if possible.&lt;br /&gt;
* Write permission should be removed from files and folders other than the upload folders. The upload folders should not serve any &lt;br /&gt;
* Ensure that configuration files such as &amp;quot;.htaccess&amp;quot; or &amp;quot;web.config&amp;quot; cannot be replaced using file uploaders. Ensure that appropriate settings are available to ignore the &amp;quot;.htaccess&amp;quot; or &amp;quot;web.config&amp;quot; files if uploaded in the upload directories.&lt;br /&gt;
* Ensure that files with double extensions (e.g. &amp;quot;file.php.txt&amp;quot;) cannot be executed especially in Apache.&lt;br /&gt;
* Ensure that uploaded files cannot be accessed by unauthorised users.&lt;br /&gt;
* Adding the &amp;quot;Content-Disposition: Attachment&amp;quot; and &amp;quot;X-Content-Type-Options: nosniff&amp;quot; headers to the response of static files will secure the website against Flash or PDF-based cross-site content-hijacking attacks. It is recommended that this practice be performed for all of the files that users need to download in all the modules that deal with a file download. Although this method does not fully secure the website against attacks using Silverlight or similar objects, it can mitigate the risk of using Adobe Flash and PDF objects, especially when uploading PDF files is permitted.&lt;br /&gt;
* Flash/PDF (crossdomain.xml) or Silverlight (clientaccesspolicy.xml) cross-domain policy files should be removed if they are not in use and there is no business requirement for Flash or Silverlight applications to communicate with the website.&lt;br /&gt;
* Browser caching should be disabled for the corssdomain.xml and clientaccesspolicy.xml files. This enables the website to easily update the file or restrict access to the Web services if necessary. Once the client access policy file is checked, it remains in effect for the browser session so the impact of non-caching to the end-user is minimal. This can be raised as a low or informational risk issue based on the content of the target website and security and complexity of the policy file(s).&lt;br /&gt;
* CORS headers should be reviewed to only be enabled for static or publicly accessible data. Otherwise, the &amp;quot;Access-Control-Allow-Origin&amp;quot; header should only contain authorised addresses. Other CORS headers such as &amp;quot;Access-Control-Allow-Credentials&amp;quot; should only be used when they are required. Items within the CORS headers such as &amp;quot;Access-Control-Allow-Methods&amp;quot; or &amp;quot;Access-Control-Allow-Headers&amp;quot; should be reviewed and removed if they are not required.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Related [[Attacks]] ==&lt;br /&gt;
&lt;br /&gt;
* [[Path Traversal]]&lt;br /&gt;
* [[Path Manipulation]]&lt;br /&gt;
* [[Relative Path Traversal]]&lt;br /&gt;
* [[Windows_::DATA_alternate_data_stream]]&lt;br /&gt;
&lt;br /&gt;
==Related [[Vulnerabilities]]==&lt;br /&gt;
&lt;br /&gt;
* [[:Category:Input Validation Vulnerability]]&lt;br /&gt;
&lt;br /&gt;
== Related [[Controls]] ==&lt;br /&gt;
&lt;br /&gt;
* [[:Category:Input Validation]]&lt;br /&gt;
&lt;br /&gt;
== Related [[Threat Agent]] ==&lt;br /&gt;
&lt;br /&gt;
* [[:Category:External Threat Agent]]&lt;br /&gt;
* [[:Category:Internal Threat Agent]]&lt;br /&gt;
* [[:Category:Internet attacker]]&lt;br /&gt;
* [[:Category:Intranet attacker]]&lt;br /&gt;
&lt;br /&gt;
== Related [[Technical Impacts]] ==&lt;br /&gt;
&lt;br /&gt;
* [[System Access]]&lt;br /&gt;
* [[Security Bypass]]&lt;br /&gt;
* [[Exposure of system information]]&lt;br /&gt;
* [[Exposure of sensitive information]]&lt;br /&gt;
* [[Client Side Threat]]&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&lt;br /&gt;
* Improve File Uploaders’ Protections – Bypass Methods- Rev. 1.0 [http://soroush.secproject.com/blog/2010/03/improve-file-uploaders%e2%80%99-protections-rev-1-0/ ]&lt;br /&gt;
* 8 basic rules to implement secure file uploads - SANS - [http://software-security.sans.org/blog/2009/12/28/8-basic-rules-to-implement-secure-file-uploads]&lt;br /&gt;
* IIS6/ASP &amp;amp; file upload for fun and profit [http://blog.48bits.com/2010/09/28/iis6-asp-file-upload-for-fun-and-profit/]&lt;br /&gt;
* Secure file upload in PHP web applications [http://www.net-security.org/dl/articles/php-file-upload.pdf]&lt;br /&gt;
* Potentially Dangerous File Types [http://www.windowsitpro.com/Files/18/27072/Webtable_01.pdf]&lt;br /&gt;
* Image Upload XSS [http://ha.ckers.org/blog/20070603/image-upload-xss/]&lt;br /&gt;
* Code Execution Through Filenames in Uploads [http://ha.ckers.org/blog/20070620/code-execution-through-filenames-in-uploads/]&lt;br /&gt;
* Secure File Upload Check List With PHP [http://hungred.com/useful-information/secure-file-upload-check-list-php/]&lt;br /&gt;
* NTFS in WikiPedia [http://en.wikipedia.org/wiki/NTFS]&lt;br /&gt;
* NTFS Streams [http://msdn.microsoft.com/en-us/library/ff469210(v=PROT.10).aspx]&lt;br /&gt;
* NTFS - Glossary [http://inform.pucp.edu.pe/~inf232/Ntfs/ntfs_doc_v0.5/help/glossary.html]&lt;br /&gt;
* IIS 6.0 Security Best Practices [http://technet.microsoft.com/en-us/library/cc782762(WS.10).aspx]&lt;br /&gt;
* Securing Sites with Web Site Permissions [http://technet.microsoft.com/en-us/library/cc756133(WS.10).aspx]&lt;br /&gt;
* IIS 6.0 Operations Guide [http://technet.microsoft.com/en-us/library/cc785089(WS.10).aspx]&lt;br /&gt;
* Improving Web Application Security: Threats and Countermeasures [http://msdn.microsoft.com/en-us/library/ms994921.aspx]&lt;br /&gt;
* Understanding the Built-In User and Group Accounts in IIS 7.0 [http://learn.iis.net/page.aspx/140/understanding-the-built-in-user-and-group-accounts-in-iis-70/]&lt;br /&gt;
* IIS Security Checklist [http://windows.stanford.edu/docs/IISsecchecklist.htm]&lt;br /&gt;
* Microsoft IIS ASP Multiple Extensions Security Bypass [http://secunia.com/advisories/37831/]&lt;br /&gt;
* CVE-2009-4444 [http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-4444]&lt;br /&gt;
* CVE-2009-4445 [http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-4445]&lt;br /&gt;
* CVE-2009-1535 [http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-1535]&lt;br /&gt;
* MSDN - Naming Files, Paths, and Namespaces [https://msdn.microsoft.com/en-gb/library/windows/desktop/aa365247(v=vs.85).aspx]&lt;br /&gt;
* Even uploading a JPG file can lead to Cross-Site Content Hijacking (client-side attack) [https://soroush.secproject.com/blog/2014/05/even-uploading-a-jpg-file-can-lead-to-cross-domain-data-hijacking-client-side-attack/]&lt;br /&gt;
* Cross-Site Content (Data) Hijacking (XSCH) PoC Project [https://github.com/nccgroup/CrossSiteContentHijacking]&lt;br /&gt;
* iPhone MobileSafari LibTIFF Buffer Overflow [https://www.exploit-db.com/exploits/16862/]&lt;br /&gt;
* ImageMagick Is On Fire-CVE-2016–3714 [https://imagetragick.com/]&lt;br /&gt;
* Symantec Antivirus multiple remote memory corruption unpacking RAR CVE-2016-2207 [https://bugs.chromium.org/p/project-zero/issues/detail?id=810]&lt;br /&gt;
* File in the hole - HackPra Nov. 2012 [https://www.nds.rub.de/media/attachments/files/2012/11/File-in-the-hole.pdf]&lt;br /&gt;
* Self contained web shells and other attacks via .htaccess files [https://github.com/wireghoul/htshells]&lt;br /&gt;
* Upload a web.config File for Fun &amp;amp; Profit [https://soroush.secproject.com/blog/2014/07/upload-a-web-config-file-for-fun-profit/]&lt;br /&gt;
* PHP filesystem attack vectors - Take Two [http://www.ush.it/2009/07/26/php-filesystem-attack-vectors-take-two/]&lt;br /&gt;
* File Upload and PHP on IIS: &amp;gt;=? and &amp;lt;=* and &amp;quot;=. [https://soroush.secproject.com/blog/2014/07/file-upload-and-php-on-iis-wildcards/]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Authors ==&lt;br /&gt;
* [[User:Soroush Dalili|Soroush Dalili]]&lt;br /&gt;
* [[User:Dirk Wetter|Dirk Wetter]]&lt;br /&gt;
* [[User:Landon Mayo|Landon Mayo]]&lt;br /&gt;
* [[User:OWASP|OWASP]]&lt;br /&gt;
&lt;br /&gt;
__NOTOC__&lt;br /&gt;
&lt;br /&gt;
[[Category:OWASP ASDR Project]]&lt;br /&gt;
[[Category:File System]]&lt;br /&gt;
[[Category:Windows]]&lt;br /&gt;
[[Category:Unix]]&lt;br /&gt;
[[Category:Use of Dangerous API]]&lt;br /&gt;
[[Category:Vulnerability]]&lt;/div&gt;</summary>
		<author><name>Svieg</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=Unrestricted_File_Upload&amp;diff=241946</id>
		<title>Unrestricted File Upload</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=Unrestricted_File_Upload&amp;diff=241946"/>
				<updated>2018-07-18T15:35:24Z</updated>
		
		<summary type="html">&lt;p&gt;Svieg: /* Beating getimagesize() */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Template:Vulnerability}}&lt;br /&gt;
&lt;br /&gt;
Last revision (mm/dd/yy): '''{{REVISIONMONTH}}/{{REVISIONDAY}}/{{REVISIONYEAR}}''' &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Description ==&lt;br /&gt;
&lt;br /&gt;
Uploaded files represent a significant risk to applications. The first step in many attacks is to get some code to the system to be attacked. Then the attack only needs to find a way to get the code executed. Using a file upload helps the attacker accomplish the first step.&lt;br /&gt;
&lt;br /&gt;
The consequences of unrestricted file upload can vary, including complete system takeover, an overloaded file system or database, forwarding attacks to back-end systems, client-side attacks, or simple defacement. It depends on what the application does with the uploaded file and especially where it is stored. &lt;br /&gt;
&lt;br /&gt;
There are really two classes of problems here. The first is with the file metadata, like the path and file name. These are generally provided by the transport, such as HTTP multi-part encoding. This data may trick the application into overwriting a critical file or storing the file in a bad location. You must validate the metadata extremely carefully before using it.&lt;br /&gt;
&lt;br /&gt;
The other class of problem is with the file size or content. The range of problems here depends entirely on what the file is used for. See the examples below for some ideas about how files might be misused. To protect against this type of attack, you should analyse everything your application does with files and think carefully about what processing and interpreters are involved.&lt;br /&gt;
&lt;br /&gt;
== Risk Factors ==&lt;br /&gt;
&lt;br /&gt;
* The impact of this vulnerability is high, supposed code can be executed in the server context or on the client side. The likelihood of detection for the attacker is high. The prevalence is common. As a result the severity of this type of vulnerability is high.&lt;br /&gt;
* It is important to check a file upload module's access controls to examine the risks properly.&lt;br /&gt;
* Server-side attacks: The web server can be compromised by uploading and executing a web-shell which can run commands, browse system files, browse local resources, attack other servers, or exploit the local vulnerabilities, and so forth.&lt;br /&gt;
* Client-side attacks: Uploading malicious files can make the website vulnerable to client-side attacks such as [[Cross-site Scripting (XSS)|XSS]] or Cross-site Content Hijacking.&lt;br /&gt;
* Uploaded files can be abused to exploit other vulnerable sections of an application when a file on the same or a trusted server is needed (can again lead to client-side or server-side attacks)&lt;br /&gt;
* Uploaded files might trigger vulnerabilities in broken libraries/applications on the client side (e.g. iPhone MobileSafari LibTIFF Buffer Overflow).&lt;br /&gt;
* Uploaded files might trigger vulnerabilities in broken libraries/applications on the server side (e.g. ImageMagick flaw that called ImageTragick!).&lt;br /&gt;
* Uploaded files might trigger vulnerabilities in broken real-time monitoring tools (e.g. Symantec antivirus exploit by unpacking a RAR file)&lt;br /&gt;
* A malicious file such as a Unix shell script, a windows virus, an Excel file with a dangerous formula, or a reverse shell can be uploaded on the server in order to execute code by an administrator or webmaster later -- on the victim's machine.&lt;br /&gt;
* An attacker might be able to put a phishing page into the website or deface the website.&lt;br /&gt;
* The file storage server might be abused to host troublesome files including malwares, illegal software, or adult contents. Uploaded files might also contain malwares' command and control data, violence and harassment messages, or steganographic data that can be used by criminal organisations.&lt;br /&gt;
* Uploaded sensitive files might be accessible by unauthorised people.&lt;br /&gt;
* File uploaders may disclose internal information such as server internal paths in their error messages.&lt;br /&gt;
&lt;br /&gt;
== Examples ==&lt;br /&gt;
&lt;br /&gt;
=== Attacks on application platform ===&lt;br /&gt;
&lt;br /&gt;
* Upload .jsp file into web tree - jsp code executed as the web user &lt;br /&gt;
* Upload .gif file to be resized - image library flaw exploited &lt;br /&gt;
* Upload huge files - file space denial of service &lt;br /&gt;
* Upload file using malicious path or name - overwrite a critical file &lt;br /&gt;
* Upload file containing personal data - other users access it &lt;br /&gt;
* Upload file containing &amp;quot;tags&amp;quot; - tags get executed as part of being &amp;quot;included&amp;quot; in a web page&lt;br /&gt;
* Upload .rar file to be scanned by antivirus - command executed on a server running the vulnerable antivirus software&lt;br /&gt;
&lt;br /&gt;
=== Attacks on other systems ===&lt;br /&gt;
&lt;br /&gt;
* Upload .exe file into web tree - victims download trojaned executable &lt;br /&gt;
* Upload virus infected file - victims' machines infected &lt;br /&gt;
* Upload .html file containing script - victim experiences [[Cross-site Scripting (XSS)]]&lt;br /&gt;
* Upload .jpg file containing a Flash object - victim experiences Cross-site Content Hijacking.&lt;br /&gt;
* Upload .rar file to be scanned by antivirus - command executed on a client running the vulnerable antivirus software&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Weak Protections and Bypassing Methods ==&lt;br /&gt;
&lt;br /&gt;
=== Blacklisting File Extensions ===&lt;br /&gt;
&lt;br /&gt;
This protection might be bypassed by:&lt;br /&gt;
&lt;br /&gt;
* Finding missed extensions that can be executed on the server side or can be dangerous on the client side (e.g. &amp;quot;.php5&amp;quot;, &amp;quot;.pht&amp;quot;, &amp;quot;.phtml&amp;quot;, &amp;quot;.shtml&amp;quot;, &amp;quot;.asa&amp;quot;, &amp;quot;.cer&amp;quot;, &amp;quot;.asax&amp;quot;, &amp;quot;.swf&amp;quot;, or &amp;quot;.xap&amp;quot;).&lt;br /&gt;
* Finding flaws in a web server configuration when it parses files with double extensions or it executes them by providing a sensitive extension after a delimiter such as &amp;quot;/&amp;quot; or &amp;quot;;&amp;quot; character (e.g. &amp;quot;/file.jpg/index.php&amp;quot; when the &amp;quot;file.jpg&amp;quot; file contains PHP code and has been uploaded)&lt;br /&gt;
** In Apache, a php file might be executed using the double extension technique such as &amp;quot;file.php.jpg&amp;quot; when &amp;quot;.jpg&amp;quot; is allowed. &lt;br /&gt;
** In IIS6 (or prior versions), a script file can be executed by using one of these two methods:&lt;br /&gt;
*** by adding a semi-colon character after the forbidden extension and before the permitted one (e.g. &amp;quot;file.asp;.jpg&amp;quot;)&lt;br /&gt;
*** by renaming a script file's extension (e.g. &amp;quot;.asp&amp;quot;) to an allowed extension (e.g. &amp;quot;.txt&amp;quot;) in a folder that its name ends with the script's extension (e.g. &amp;quot;folder.asp\file.txt&amp;quot;). In Windows, it is possible to create a directory by using a file uploader and ADS (Alternate Data Stream). In this method, a filename that ends with &amp;quot;::$Index_Allocation&amp;quot; or &amp;quot;:$I30:$Index_Allocation&amp;quot; makes the file uploader to create a directory rather than a file (e.g. &amp;quot;folder.asp::$Index_Allocation&amp;quot; creates &amp;quot;folder.asp&amp;quot; as a directory).&lt;br /&gt;
* Changing a number of letters to their capital forms to bypass case sensitive rules (e.g. &amp;quot;file.aSp&amp;quot; or &amp;quot;file.PHp3&amp;quot;).&lt;br /&gt;
* Using Windows 8.3 feature, it is possible to replace the existing files by using their shortname (e.g. &amp;quot;web.config&amp;quot; can be replaced by &amp;quot;web~1.con&amp;quot; or &amp;quot;.htaccess&amp;quot; can be replaced by &amp;quot;HTACCE~1&amp;quot;)&lt;br /&gt;
* Finding characters that are converted to other useful characters during the file upload process. For instance, when running PHP on IIS, the &amp;quot;&amp;gt;&amp;quot;, &amp;quot;&amp;lt;&amp;quot;, and double quote &amp;quot; characters respectively convert to &amp;quot;?&amp;quot;, &amp;quot;*&amp;quot;, and &amp;quot;.&amp;quot; characters that can be used to replace existing files (e.g. &amp;quot;web&amp;lt;&amp;lt;&amp;quot; can replace the &amp;quot;web.config&amp;quot; file). In order to include the double quote character in the filename in a normal file upload request, the filename in the &amp;quot;Content-Disposition&amp;quot; header should use single quotes (e.g. filename='web&amp;quot;config' to replace the &amp;quot;web.config&amp;quot; file).&lt;br /&gt;
* Finding neutral characters after a filename such as trailing spaces and dots in Windows filesystem or dot and slash characters in a Linux filesystem. These characters at the end of a filename will be removed automatically (e.g. &amp;quot;file.asp ... ... . . .. ..&amp;quot;, &amp;quot;file.asp &amp;quot;, or &amp;quot;file.asp.&amp;quot;). Although slash or backslash characters are also normally problematic characters, they can be ignored in a normal file upload request as anything before these characters may count as the directory name on the server-side; that said, they should be tried for a thorough test (e.g. &amp;quot;test.php/&amp;quot; or &amp;quot;test.php.\&amp;quot;).&lt;br /&gt;
* Finding flaws in extension detection techniques. A web server may use the first extension after the first dot (&amp;quot;.&amp;quot;) in the provided filename or use a flawed algorithm to detect the extension when there is none or multiple dot characters (e.g. &amp;quot;file.txt.jpg.php&amp;quot;). &lt;br /&gt;
* Using control characters such as null character (0x00) after a forbidden extension and before a permitted one may lead to a bypass. In this method, all the strings after the Null character will be discarded when saving the files. Both URL-encoded and decoded version of the null character should be tried in a file upload request for a thorough test. &lt;br /&gt;
* Using NTFS alternate data stream (ADS) in Windows. In this case, a colon character &amp;quot;:&amp;quot; will be inserted after a forbidden extension and before a permitted one. As a result, an empty file with the forbidden extension will be created on the server (e.g. &amp;quot;file.asax:.jpg&amp;quot;). This file might be edited later using other techniques such as using its short filename. The &amp;quot;::$data&amp;quot; pattern can also be used to create non-empty files. Therefore, adding a dot character after this pattern might also be useful to bypass further restrictions (.e.g. &amp;quot;file.asp::$data.&amp;quot;)&lt;br /&gt;
* Flaws in the protection mechanism when it replaces dangerous extensions. For instance, &amp;quot;file.p.phphp&amp;quot; might be changed to &amp;quot;file.php&amp;quot; after going through this functionality.&lt;br /&gt;
* Flaws in the uploaded file usage for instance when a PHP application uses the &amp;quot;include&amp;quot; function to show the uploaded images.&lt;br /&gt;
* Combination of the above techniques.&lt;br /&gt;
&lt;br /&gt;
=== Beating getimagesize() ===&lt;br /&gt;
&lt;br /&gt;
The getimagesize() function will check if it is an image and will check &amp;quot;mime&amp;quot; to verify image type.&lt;br /&gt;
&lt;br /&gt;
Insecure Configuration :&lt;br /&gt;
&lt;br /&gt;
  &amp;lt;FilesMatch &amp;quot;.+\.ph(p[3457s]?|t|tml|\-s)&amp;quot;&amp;gt;&lt;br /&gt;
  SetHandler application/x-httpd-php&lt;br /&gt;
  &amp;lt;/FileMatch&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Secure Configuration :&lt;br /&gt;
&lt;br /&gt;
  &amp;lt;FilesMatch &amp;quot;.+\.ph(p[3457s]?|t|tml|\-s)$&amp;quot;&amp;gt;&lt;br /&gt;
  SetHandler application/x-httpd-php&lt;br /&gt;
  &amp;lt;/FileMatch&amp;gt;&lt;br /&gt;
&lt;br /&gt;
If the service is up an running with the Insecure Configuration, any one can beat the getimagesize function by writing comments in GIF file.&lt;br /&gt;
&lt;br /&gt;
For that an end user need to install an utility in Kali/Ubuntu OS named 'gifsicle'&lt;br /&gt;
&lt;br /&gt;
  For Kali Linux : apt-get install gifsicle&lt;br /&gt;
  For Ubuntu : sudo apt-get install gifsicle&lt;br /&gt;
&lt;br /&gt;
Once installed, the below commands will help writing the commands in gif file.&lt;br /&gt;
&lt;br /&gt;
  gifsicle &amp;lt; mygif.gif -- comment &amp;quot;&amp;lt;?php echo 'Current PHP version: ' . phpversion(); ?&amp;gt;&amp;quot; &amp;gt; output.php.gif&lt;br /&gt;
&lt;br /&gt;
The above command will create an file with the name &amp;quot;output.php.gif&amp;quot; which simply need to be upload durning the check of file upload vulnerability.&lt;br /&gt;
&lt;br /&gt;
=== Whitelisting File Extensions ===&lt;br /&gt;
&lt;br /&gt;
Applications that check the file extensions using a whitelist method also need to validate the full filename to prevent any bypass. &lt;br /&gt;
&lt;br /&gt;
* The list of permitted extensions should be reviewed as it can contain malicious extensions as well. For instance, in case of having &amp;quot;.shtml&amp;quot; in the list, the application can be vulnerable to SSI attacks.&lt;br /&gt;
* Some of the bypass techniques for the blacklist methods such as using double extensions are also applicable here and should be checked. &lt;br /&gt;
&lt;br /&gt;
=== &amp;quot;Content-Type&amp;quot; Header Validation ===&lt;br /&gt;
&lt;br /&gt;
&amp;quot;Content-Type&amp;quot; entity in the header of the request indicates the Internet media type of the message content. Sometimes web applications use this parameter in order to recognise a file as a valid one. For instance, they only accept the files with the &amp;quot;Content-Type&amp;quot; of &amp;quot;text/plain&amp;quot;. &lt;br /&gt;
&lt;br /&gt;
* It is possible to bypass this protection by changing this parameter in the request header using a web proxy.&lt;br /&gt;
&lt;br /&gt;
=== Using a File Type Detector ===&lt;br /&gt;
&lt;br /&gt;
Sometimes web applications intentionally or unintentionally use some functions (or APIs) to check the file types in order to process them further. For instance, when an application resize an image file, it may just show an error message when non-image files are uploaded without saving them on the server. &lt;br /&gt;
&lt;br /&gt;
* If it reads the few first characters (or headers), it can be bypassed by inserting malicious code after some valid header or within the file's metadata. &lt;br /&gt;
* Inserting code in the comments section or those section that have no effect on the main file can also lead to a bypass.&lt;br /&gt;
* The inserted data can be obfuscated or encoded if the application detects a malicious code using specific patterns or signatures.&lt;br /&gt;
* Uploaded file can be crafted to create a malicious code in case of being compressed by the application.&lt;br /&gt;
&lt;br /&gt;
=== Other Interesting Test Cases ===&lt;br /&gt;
&lt;br /&gt;
* Uploading a file when another file with the same name already exists. This may show interesting error messages that can lead to information disclosure. Logical flaws might be found if the application renames the new file to keep it on the server.&lt;br /&gt;
* Uploading a file when another folder with the same name already exists. This may show interesting error messages that can lead to information disclosure. &lt;br /&gt;
* Uploading a file with a long name. This may show interesting error messages that can lead to information disclosure.&lt;br /&gt;
* Uploading a file multiple times at the same time. This may show interesting error messages that can lead to information disclosure. &lt;br /&gt;
* Uploading valid and invalid files in different formats such as compressed or XML files to detect any possible processing on the server side. &lt;br /&gt;
* Uploading a file with &amp;quot;.&amp;quot;, &amp;quot;..&amp;quot;, or &amp;quot;...&amp;quot; as its name. For instance, in Apache in Windows, if the application saves the uploaded files in &amp;quot;/www/uploads/&amp;quot; directory, the &amp;quot;.&amp;quot; filename will create a file called &amp;quot;uploads&amp;quot; in the &amp;quot;/www/&amp;quot; directory.&lt;br /&gt;
* Uploading files that may not be deleted easily such as &amp;quot;...:.jpg&amp;quot; in NTFS that makes the &amp;quot;...&amp;quot; file (this file can be deleted using command line). This may show interesting error messages that can lead to information disclosure.&lt;br /&gt;
* Uploading a file in Windows with invalid characters such as |&amp;lt;&amp;gt;*?&amp;quot; in its name. This may show interesting error messages that can lead to information disclosure.  &lt;br /&gt;
* Uploading a file in Windows using reserved (forbidden) names such as CON, PRN, AUX, NUL, COM1, COM2, COM3, COM4, COM5, COM6, COM7, COM8, COM9, LPT1, LPT2, LPT3, LPT4, LPT5, LPT6, LPT7, LPT8, and LPT9. This may show interesting error messages that can lead to information disclosure. Uploading a file with a reserved name may lead to denial of service if the application keeps the name and tries to save it with another extension (detecting it wrongly as an existing file).&lt;br /&gt;
* Cross-site content hijacking issues can be exploited by uploading a file with allowed name and extension but with Flash, PDF, or Silverlight contents. &lt;br /&gt;
* Uploading a &amp;quot;crossdomain.xml&amp;quot; or &amp;quot;clientaccesspolicy.xml&amp;quot; file can make a website vulnerable to cross-site content hijacking. These files should be uploaded to the root of the website to work. However, the &amp;quot;crossdomain.xml&amp;quot; file can be in a subdirectory as long as it is allowed in the root &amp;quot;crossdomain.xml&amp;quot; file.&lt;br /&gt;
&lt;br /&gt;
=== Important Notes in Testing File Uploaders ===&lt;br /&gt;
&lt;br /&gt;
* Do not try to replace the existing files during testing unless it is safe to proceed. For instance, replacing configuration files such as &amp;quot;web.config&amp;quot; or &amp;quot;.htaccess&amp;quot; file can lead to a denial of service attack for the whole website.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Prevention Methods (Solutions to be more secure) ==&lt;br /&gt;
In order to make a Windows server more secure, it is very important to follow the Microsoft security best practices first. For this purpose, some of the useful links are:&lt;br /&gt;
* IIS 6.0 Security Best Practices[http://technet.microsoft.com/en-us/library/cc782762(WS.10).aspx]&lt;br /&gt;
* Securing Sites with Web Site Permissions[http://technet.microsoft.com/en-us/library/cc756133(WS.10).aspx]&lt;br /&gt;
* IIS 6.0 Operations Guide[http://technet.microsoft.com/en-us/library/cc785089(WS.10).aspx]&lt;br /&gt;
* Improving Web Application Security: Threats and Countermeasures[http://msdn.microsoft.com/en-us/library/ms994921.aspx]&lt;br /&gt;
* Understanding the Built-In User and Group Accounts in IIS 7.0[http://learn.iis.net/page.aspx/140/understanding-the-built-in-user-and-group-accounts-in-iis-70/]&lt;br /&gt;
* IIS Security Checklist[http://windows.stanford.edu/docs/IISsecchecklist.htm]&lt;br /&gt;
And some special recommendations for the developers and webmasters:&lt;br /&gt;
* The file types allowed to be uploaded should be restricted to only those that are necessary for business functionality.&lt;br /&gt;
* Never accept a filename and its extension directly without having a whitelist filter.&lt;br /&gt;
* The application should perform filtering and content checking on any files which are uploaded to the server. Files should be thoroughly scanned and validated before being made available to other users. If in doubt, the file should be discarded.&lt;br /&gt;
* It is necessary to have a list of only permitted extensions on the web application. And, file extension can be selected from the list. For instance, it can be a &amp;quot;select case&amp;quot; syntax (in case of having VBScript) to choose the file extension in regards to the real file extension.&lt;br /&gt;
* All the control characters and Unicode ones should be removed from the filenames and their extensions without any exception. Also, the special characters such as &amp;quot;;&amp;quot;, &amp;quot;:&amp;quot;, &amp;quot;&amp;gt;&amp;quot;, &amp;quot;&amp;lt;&amp;quot;, &amp;quot;/&amp;quot; ,&amp;quot;\&amp;quot;, additional &amp;quot;.&amp;quot;, &amp;quot;*&amp;quot;, &amp;quot;%&amp;quot;, &amp;quot;$&amp;quot;, and so on should be discarded as well. If it is applicable and there is no need to have Unicode characters, it is highly recommended to only accept Alpha-Numeric characters and only 1 dot as an input for the file name and the extension; in which the file name and also the extension should not be empty at all (regular expression: [a-zA-Z0-9]{1,200}\.[a-zA-Z0-9]{1,10}).&lt;br /&gt;
* Limit the filename length. For instance, the maximum length of the name of a file plus its extension should be less than 255 characters (without any directory) in an NTFS partition.&lt;br /&gt;
* It is recommended to use an algorithm to determine the filenames. For instance, a filename can be a MD5 hash of the name of file plus the date of the day.&lt;br /&gt;
* Uploaded directory should not have any &amp;quot;execute&amp;quot; permission and all the script handlers should be removed from these directories.&lt;br /&gt;
* Limit the file size to a maximum value in order to prevent denial of service attacks (on file space or other web application’s functions such as the image resizer).&lt;br /&gt;
* Restrict small size files as they can lead to denial of service attacks. So, the minimum size of files should be considered.&lt;br /&gt;
* Use Cross Site Request Forgery protection methods.&lt;br /&gt;
* Prevent from overwriting a file in case of having the same hash for both.&lt;br /&gt;
* Use a virus scanner on the server (if it is applicable). Or, if the contents of files are not confidential, a free virus scanner website can be used. In this case, file should be stored with a random name and without any extension on the server first, and after the virus checking (uploading to a free virus scanner website and getting back the result), it can be renamed to its specific name and extension.&lt;br /&gt;
* Try to use POST method instead of PUT (or GET!)&lt;br /&gt;
* Log users’ activities. However, the logging mechanism should be secured against log forgery and code injection itself.&lt;br /&gt;
* In case of having compressed file extract functions, contents of the compressed file should be checked one by one as a new file.&lt;br /&gt;
* If it is possible, consider saving the files in a database rather than on the filesystem.&lt;br /&gt;
* If files should be saved in a filesystem, consider using an isolated server with a different domain to serve the uploaded files. &lt;br /&gt;
* File uploaders should be only accessible to authenticated and authorised users if possible.&lt;br /&gt;
* Write permission should be removed from files and folders other than the upload folders. The upload folders should not serve any &lt;br /&gt;
* Ensure that configuration files such as &amp;quot;.htaccess&amp;quot; or &amp;quot;web.config&amp;quot; cannot be replaced using file uploaders. Ensure that appropriate settings are available to ignore the &amp;quot;.htaccess&amp;quot; or &amp;quot;web.config&amp;quot; files if uploaded in the upload directories.&lt;br /&gt;
* Ensure that files with double extensions (e.g. &amp;quot;file.php.txt&amp;quot;) cannot be executed especially in Apache.&lt;br /&gt;
* Ensure that uploaded files cannot be accessed by unauthorised users.&lt;br /&gt;
* Adding the &amp;quot;Content-Disposition: Attachment&amp;quot; and &amp;quot;X-Content-Type-Options: nosniff&amp;quot; headers to the response of static files will secure the website against Flash or PDF-based cross-site content-hijacking attacks. It is recommended that this practice be performed for all of the files that users need to download in all the modules that deal with a file download. Although this method does not fully secure the website against attacks using Silverlight or similar objects, it can mitigate the risk of using Adobe Flash and PDF objects, especially when uploading PDF files is permitted.&lt;br /&gt;
* Flash/PDF (crossdomain.xml) or Silverlight (clientaccesspolicy.xml) cross-domain policy files should be removed if they are not in use and there is no business requirement for Flash or Silverlight applications to communicate with the website.&lt;br /&gt;
* Browser caching should be disabled for the corssdomain.xml and clientaccesspolicy.xml files. This enables the website to easily update the file or restrict access to the Web services if necessary. Once the client access policy file is checked, it remains in effect for the browser session so the impact of non-caching to the end-user is minimal. This can be raised as a low or informational risk issue based on the content of the target website and security and complexity of the policy file(s).&lt;br /&gt;
* CORS headers should be reviewed to only be enabled for static or publicly accessible data. Otherwise, the &amp;quot;Access-Control-Allow-Origin&amp;quot; header should only contain authorised addresses. Other CORS headers such as &amp;quot;Access-Control-Allow-Credentials&amp;quot; should only be used when they are required. Items within the CORS headers such as &amp;quot;Access-Control-Allow-Methods&amp;quot; or &amp;quot;Access-Control-Allow-Headers&amp;quot; should be reviewed and removed if they are not required.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Related [[Attacks]] ==&lt;br /&gt;
&lt;br /&gt;
* [[Path Traversal]]&lt;br /&gt;
* [[Path Manipulation]]&lt;br /&gt;
* [[Relative Path Traversal]]&lt;br /&gt;
* [[Windows_::DATA_alternate_data_stream]]&lt;br /&gt;
&lt;br /&gt;
==Related [[Vulnerabilities]]==&lt;br /&gt;
&lt;br /&gt;
* [[:Category:Input Validation Vulnerability]]&lt;br /&gt;
&lt;br /&gt;
== Related [[Controls]] ==&lt;br /&gt;
&lt;br /&gt;
* [[:Category:Input Validation]]&lt;br /&gt;
&lt;br /&gt;
== Related [[Threat Agent]] ==&lt;br /&gt;
&lt;br /&gt;
* [[:Category:External Threat Agent]]&lt;br /&gt;
* [[:Category:Internal Threat Agent]]&lt;br /&gt;
* [[:Category:Internet attacker]]&lt;br /&gt;
* [[:Category:Intranet attacker]]&lt;br /&gt;
&lt;br /&gt;
== Related [[Technical Impacts]] ==&lt;br /&gt;
&lt;br /&gt;
* [[System Access]]&lt;br /&gt;
* [[Security Bypass]]&lt;br /&gt;
* [[Exposure of system information]]&lt;br /&gt;
* [[Exposure of sensitive information]]&lt;br /&gt;
* [[Client Side Threat]]&lt;br /&gt;
&lt;br /&gt;
== References ==&lt;br /&gt;
&lt;br /&gt;
* Improve File Uploaders’ Protections – Bypass Methods- Rev. 1.0 [http://soroush.secproject.com/blog/2010/03/improve-file-uploaders%e2%80%99-protections-rev-1-0/ ]&lt;br /&gt;
* 8 basic rules to implement secure file uploads - SANS - [http://software-security.sans.org/blog/2009/12/28/8-basic-rules-to-implement-secure-file-uploads]&lt;br /&gt;
* IIS6/ASP &amp;amp; file upload for fun and profit [http://blog.48bits.com/2010/09/28/iis6-asp-file-upload-for-fun-and-profit/]&lt;br /&gt;
* Secure file upload in PHP web applications [http://www.net-security.org/dl/articles/php-file-upload.pdf]&lt;br /&gt;
* Potentially Dangerous File Types [http://www.windowsitpro.com/Files/18/27072/Webtable_01.pdf]&lt;br /&gt;
* Image Upload XSS [http://ha.ckers.org/blog/20070603/image-upload-xss/]&lt;br /&gt;
* Code Execution Through Filenames in Uploads [http://ha.ckers.org/blog/20070620/code-execution-through-filenames-in-uploads/]&lt;br /&gt;
* Secure File Upload Check List With PHP [http://hungred.com/useful-information/secure-file-upload-check-list-php/]&lt;br /&gt;
* NTFS in WikiPedia [http://en.wikipedia.org/wiki/NTFS]&lt;br /&gt;
* NTFS Streams [http://msdn.microsoft.com/en-us/library/ff469210(v=PROT.10).aspx]&lt;br /&gt;
* NTFS - Glossary [http://inform.pucp.edu.pe/~inf232/Ntfs/ntfs_doc_v0.5/help/glossary.html]&lt;br /&gt;
* IIS 6.0 Security Best Practices [http://technet.microsoft.com/en-us/library/cc782762(WS.10).aspx]&lt;br /&gt;
* Securing Sites with Web Site Permissions [http://technet.microsoft.com/en-us/library/cc756133(WS.10).aspx]&lt;br /&gt;
* IIS 6.0 Operations Guide [http://technet.microsoft.com/en-us/library/cc785089(WS.10).aspx]&lt;br /&gt;
* Improving Web Application Security: Threats and Countermeasures [http://msdn.microsoft.com/en-us/library/ms994921.aspx]&lt;br /&gt;
* Understanding the Built-In User and Group Accounts in IIS 7.0 [http://learn.iis.net/page.aspx/140/understanding-the-built-in-user-and-group-accounts-in-iis-70/]&lt;br /&gt;
* IIS Security Checklist [http://windows.stanford.edu/docs/IISsecchecklist.htm]&lt;br /&gt;
* Microsoft IIS ASP Multiple Extensions Security Bypass [http://secunia.com/advisories/37831/]&lt;br /&gt;
* CVE-2009-4444 [http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-4444]&lt;br /&gt;
* CVE-2009-4445 [http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-4445]&lt;br /&gt;
* CVE-2009-1535 [http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2009-1535]&lt;br /&gt;
* MSDN - Naming Files, Paths, and Namespaces [https://msdn.microsoft.com/en-gb/library/windows/desktop/aa365247(v=vs.85).aspx]&lt;br /&gt;
* Even uploading a JPG file can lead to Cross-Site Content Hijacking (client-side attack) [https://soroush.secproject.com/blog/2014/05/even-uploading-a-jpg-file-can-lead-to-cross-domain-data-hijacking-client-side-attack/]&lt;br /&gt;
* Cross-Site Content (Data) Hijacking (XSCH) PoC Project [https://github.com/nccgroup/CrossSiteContentHijacking]&lt;br /&gt;
* iPhone MobileSafari LibTIFF Buffer Overflow [https://www.exploit-db.com/exploits/16862/]&lt;br /&gt;
* ImageMagick Is On Fire-CVE-2016–3714 [https://imagetragick.com/]&lt;br /&gt;
* Symantec Antivirus multiple remote memory corruption unpacking RAR CVE-2016-2207 [https://bugs.chromium.org/p/project-zero/issues/detail?id=810]&lt;br /&gt;
* File in the hole - HackPra Nov. 2012 [https://www.nds.rub.de/media/attachments/files/2012/11/File-in-the-hole.pdf]&lt;br /&gt;
* Self contained web shells and other attacks via .htaccess files [https://github.com/wireghoul/htshells]&lt;br /&gt;
* Upload a web.config File for Fun &amp;amp; Profit [https://soroush.secproject.com/blog/2014/07/upload-a-web-config-file-for-fun-profit/]&lt;br /&gt;
* PHP filesystem attack vectors - Take Two [http://www.ush.it/2009/07/26/php-filesystem-attack-vectors-take-two/]&lt;br /&gt;
* File Upload and PHP on IIS: &amp;gt;=? and &amp;lt;=* and &amp;quot;=. [https://soroush.secproject.com/blog/2014/07/file-upload-and-php-on-iis-wildcards/]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Authors ==&lt;br /&gt;
* [[User:Soroush Dalili|Soroush Dalili]]&lt;br /&gt;
* [[User:Dirk Wetter|Dirk Wetter]]&lt;br /&gt;
* [[User:Landon Mayo|Landon Mayo]]&lt;br /&gt;
* [[User:OWASP|OWASP]]&lt;br /&gt;
&lt;br /&gt;
__NOTOC__&lt;br /&gt;
&lt;br /&gt;
[[Category:OWASP ASDR Project]]&lt;br /&gt;
[[Category:File System]]&lt;br /&gt;
[[Category:Windows]]&lt;br /&gt;
[[Category:Unix]]&lt;br /&gt;
[[Category:Use of Dangerous API]]&lt;br /&gt;
[[Category:Vulnerability]]&lt;/div&gt;</summary>
		<author><name>Svieg</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=OWASP_Wordpress_Security_Implementation_Guideline&amp;diff=241902</id>
		<title>OWASP Wordpress Security Implementation Guideline</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=OWASP_Wordpress_Security_Implementation_Guideline&amp;diff=241902"/>
				<updated>2018-07-16T19:34:22Z</updated>
		
		<summary type="html">&lt;p&gt;Svieg: Fix typo&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Considerations =&lt;br /&gt;
This project aims for a unified approach on WordPress security design and implementation. It is definitely more than a checklist, it's a guide for secure implementation and an invitation to consider and to analyze each individual case. &lt;br /&gt;
&lt;br /&gt;
There is a long list of recommended resources for securing aspects of the WordPress implementation. The project is aimed to offer open source or free resources instead of commercial ones. Some plugins have a free version and a paid one that offers extra functionality. In such cases, the focus of the project was on the free version.&lt;br /&gt;
&lt;br /&gt;
= General security =&lt;br /&gt;
This section is meant to be just a reminder that all the other hardening measures are useless if an attacker can gain access to WordPress users’ computers. We’re not going to spend the time and effort to go into details but rather enumerate the common good practices each security conscious user should have in mind. There are plenty of good resources to help anyone accomplish security basics.&lt;br /&gt;
&lt;br /&gt;
== Device security ==&lt;br /&gt;
When we talk about devices capable of accessing the WordPress administration interface we don’t just talk about computers but mobile devices as well. The following is a list of items that needs to be taken into account when securing the devices that will be accessing the WordPress instances. Some of them may refer to PCs and mobile devices, others just to one of the devices.&lt;br /&gt;
&lt;br /&gt;
* Password protect the device&lt;br /&gt;
* Use strong passwords&lt;br /&gt;
* Keep the OS updated&lt;br /&gt;
* Encrypt the storage&lt;br /&gt;
* Have an anti-virus installed and updated&lt;br /&gt;
* Have a malware/spyware scanner installed and perform regular scans and updates&lt;br /&gt;
* Have a firewall installed and configured &lt;br /&gt;
* [http://www.cert.org/historical/tech_tips/securing-web-browser-index.cfm Secure your browser]&lt;br /&gt;
&lt;br /&gt;
= Infrastructure security =&lt;br /&gt;
Before hardening the core of WordPress an implementer must consider hardening the services on which the instance will be installed. Sometimes the underlying infrastructure is not under the control of the implementer. While there are things that can be hardened on WordPress to mitigate things that are supposed to be fixed on the infrastructure side, one should always consider defense in depth. The implementer can contact the infrastructure administrator and ask for specific hardening in order to further protect the applications that will be installed on top of that, in this case WordPress. &lt;br /&gt;
&lt;br /&gt;
The foundation of infrastructure hardening is operating system hardening. This is a broad subject and highly dependent on the OS, the main concerns being around privileges, access control, authentication and logging. It’s a topic outside the coverage of the current project and these are things that must be covered by experienced System Administrators.&lt;br /&gt;
&lt;br /&gt;
WordPress can be installed on a multitude of platforms but the main focus below is on the most common components, Apache and MySQL. The general rules though apply to all supported infrastructure components. &lt;br /&gt;
&lt;br /&gt;
Following best design practices, the tiers of the WordPress instance should be separated. However the presentation and application layers of WordPress are bound together. Thus only one separation is possible, the one with the database. For small applications it’s not a common practice, but for larger sites this becomes a must from a security but also a performance perspective. &lt;br /&gt;
&lt;br /&gt;
As was the case with general security, this is just a list of things that should be performed in order to harden the infrastructure and not the means to do it. &lt;br /&gt;
&lt;br /&gt;
== Apache hardening ==&lt;br /&gt;
* Update regularly&lt;br /&gt;
* Disable directory listing&lt;br /&gt;
* Secure the communication with the server by generating and using SSL certificates&lt;br /&gt;
* Disable unnecessary modules&lt;br /&gt;
** Good candidates for this are: ''userdir'', ''suexec'', ''cgi/cgid'', ''include'', ''autoindex''&lt;br /&gt;
* Run the daemon as a separate user and group&lt;br /&gt;
* Use ''Allow'' and ''Deny'' to restrict access to directories&lt;br /&gt;
* Use ''mod_security'' module to secure Apache&lt;br /&gt;
* Disable following of ''symbolic links''&lt;br /&gt;
* Turn off server sides includes and CGI execution&lt;br /&gt;
* Limit request size&lt;br /&gt;
* Configure other settings like ''TimeOut'', ''MaxClients'', ''KeepAliveTimeout'', ''LimitRequestFields'', ''LimitRequestFieldSize'' in order to prevent DoS attacks&lt;br /&gt;
* Enable and configure proper logging&lt;br /&gt;
* Modify server banner&lt;br /&gt;
&lt;br /&gt;
== PHP hardening ==&lt;br /&gt;
* Update regularly&lt;br /&gt;
* Don’t install PHP as a CGI binary&lt;br /&gt;
* Disable unnecessary PHP modules&lt;br /&gt;
* Disable unused potentially dangerous PHP functions (good examples: ''exec'',''passthru'',''shell_exec'',''system'', etc.)&lt;br /&gt;
* Log errors internally&lt;br /&gt;
* Disable verbose error reporting on the client side&lt;br /&gt;
* Turn off remote code execution (if it’s not needed; the core WordPress doesn’t need this functionality)&lt;br /&gt;
* Disable magic quotes&lt;br /&gt;
* Limit PHP access to file system&lt;br /&gt;
* Protect from DoS&lt;br /&gt;
** Control POST size&lt;br /&gt;
** Limit script time execution&lt;br /&gt;
** Limit memory usage&lt;br /&gt;
* Consider implementing the [http://www.suhosin.org/stories/index.html Suhoshin security extension]&lt;br /&gt;
* Hide the version of PHP in use&lt;br /&gt;
* Hide the .php extension&lt;br /&gt;
&lt;br /&gt;
== MySQL hardening ==&lt;br /&gt;
There is an entire [https://www.owasp.org/index.php/OWASP_Backend_Security_Project_MySQL_Hardening OWASP project dedicated to MySQL hardening]. The main action items are:&lt;br /&gt;
&lt;br /&gt;
* Update regularly&lt;br /&gt;
* Disable or restrict remote access&lt;br /&gt;
* Filesystem access restrictions and ACLs&lt;br /&gt;
* Designing a chroot-jail&lt;br /&gt;
* Encrypting network traffic (this is a must if the database layer is physically separated from the application layer)&lt;br /&gt;
* Encrypting raw databases on filesystem level&lt;br /&gt;
** Redundant if disk encryption is in place at the OS layer&lt;br /&gt;
** However, by using ''dmcrypt'', one can generate an extra layer of encryption&lt;br /&gt;
* Backup encryption&lt;br /&gt;
* Configuration&lt;br /&gt;
** Connectivity: maximum number of concurrent connections and related settings&lt;br /&gt;
** Logging&lt;br /&gt;
** Access control and privilege management&lt;br /&gt;
** Set up root password&lt;br /&gt;
** Rename root account&lt;br /&gt;
** Delete unused users and databases&lt;br /&gt;
** Remove installation history&lt;br /&gt;
&lt;br /&gt;
A PHP security checker is available [https://github.com/sektioneins/pcc here]. This is a one-page php file designed to analyze PHP configuration and rank the findings based on severity.&lt;br /&gt;
&lt;br /&gt;
== Remote access ==&lt;br /&gt;
* Don’t use FTP (use sFTP where possible)&lt;br /&gt;
* If SSH access is available, use [http://linux.die.net/man/1/scp scp] or [http://winscp.net/eng/index.php WinSCP] for file transfer &lt;br /&gt;
* Consider using VPN or [http://www.pentest.ro/ssh-tunnels-an-alternative-to-vpn/ SSH tunnels] to the server for accessing the WordPress administrative interface&lt;br /&gt;
&lt;br /&gt;
= WordPress security =&lt;br /&gt;
There are three main components of WordPress that need to be considered from a security perspective when implementing the solution.&lt;br /&gt;
&lt;br /&gt;
* Core – the basic default installation files that provide most of the functionality &lt;br /&gt;
* Plugins – special written code to improve and extend the basic functionality&lt;br /&gt;
* Theme – the presentation layer which may come with some limited extended functionality&lt;br /&gt;
&lt;br /&gt;
== Updates ==&lt;br /&gt;
It is of vital importance to keep WordPress core, plugins and themes updated. Once an update is released, it needs to be applied as soon as possible to close any security holes. &lt;br /&gt;
&lt;br /&gt;
Functional problems with updates must be considered. It is possible that an update will break some of the functionality so a backup is recommended before updating the core. &lt;br /&gt;
&lt;br /&gt;
=== WordPress Core ===&lt;br /&gt;
The WordPress core has three different types of updates:&lt;br /&gt;
&lt;br /&gt;
* Core development updates, known as the &amp;quot;bleeding edge&amp;quot;&lt;br /&gt;
* Minor core updates, such as maintenance and security releases&lt;br /&gt;
* Major core release updates&lt;br /&gt;
&lt;br /&gt;
Starting with version 3.7, automatic background updates were introduced by default for minor core updates releases (generally security updates). This default behavior can be overridden by editing the wp-config.php file and adding or modifying the following statement&lt;br /&gt;
&lt;br /&gt;
''define( 'WP_AUTO_UPDATE_CORE', true );''&lt;br /&gt;
&lt;br /&gt;
When set to true all updates will be enabled. Translations are updated by default with the minor core updates.&lt;br /&gt;
&lt;br /&gt;
=== Themes and Plugins ===&lt;br /&gt;
The themes and plugins can be updated automatically using filters. The best place to put a filter is in a [http://codex.wordpress.org/Must_Use_Plugins must-use plugin]. WordPress doesn’t recommend putting filters in the wp-config.php file because of conflicts with other parts of the code.&lt;br /&gt;
&lt;br /&gt;
To enable automatic updates for themes and plugins, add the following code&lt;br /&gt;
&lt;br /&gt;
''add_filter( 'auto_update_plugin', '__return_true' );''&lt;br /&gt;
&lt;br /&gt;
''add_filter( 'auto_update_theme', '__return_true' );''&lt;br /&gt;
&lt;br /&gt;
== Removal of unused plugins and themes ==&lt;br /&gt;
Depending on the server configuration, the files in the WordPress folder can be accessed from the Internet regardless of whether they are used or not. Even if a plugin is disabled, the files are still there and they are accessible from the Internet.&lt;br /&gt;
&lt;br /&gt;
When a new vulnerability is discovered, the attackers write scripts to look for the vulnerable files. Knowing the location of vulnerable plugins increases their chances of infiltrating a vulnerable instance. &lt;br /&gt;
&lt;br /&gt;
Any plugins and themes that are not actively used must be deleted. &lt;br /&gt;
&lt;br /&gt;
== Plugins &amp;amp; Themes Security ==&lt;br /&gt;
Plugins and themes are a great addition to the functionality offered by the WordPress core. WordPress’ success is based on these elements. It’s easy to develop a new theme, add new functions with plugins. This ease of development comes with the security downside. In the rush for functionality, the developers often forget about security. Looking at the [https://cve.mitre.org/cgi-bin/cvekey.cgi?keyword=wordpress CVE list for WordPress] it’s worth noticing that in the past years most of the security defects are affecting the plugins and themes and not WordPress core.&lt;br /&gt;
&lt;br /&gt;
Developing on top of WordPress should be regarded as a regular development job and follow a standard secure development lifecycle. Concrete action items for this chapter include source code review and penetration testing of plugins and themes.&lt;br /&gt;
&lt;br /&gt;
When choosing to use an already developed plugin by a 3&amp;lt;sup&amp;gt;rd&amp;lt;/sup&amp;gt; party, a security audit should be performed. Good differentiators for available plugins are:&lt;br /&gt;
&lt;br /&gt;
* Publication in the official plugin store at https://wordpress.org/plugins/&lt;br /&gt;
* User ratings and comments&lt;br /&gt;
* Version number (is it a young plugin/theme or has it faced the challenges of time?)&lt;br /&gt;
* Last update &lt;br /&gt;
* Update frequency &lt;br /&gt;
* Compatibility with the current version of the WordPress core&lt;br /&gt;
&lt;br /&gt;
In order to perform a source code audit, the following tools can be used:&lt;br /&gt;
&lt;br /&gt;
* [http://rips-scanner.sourceforge.net/ RIPS]&lt;br /&gt;
* [http://www.program-transformation.org/PHP/PhpSat PHP-sat]&lt;br /&gt;
* [http://www.scovetta.com/yasca.html Yasca]&lt;br /&gt;
* [http://resources.infosecinstitute.com/finding-bugs-in-php-using-grep/ Manual analysis using grep], [https://grepbugs.com/ GrepBugs]&lt;br /&gt;
&lt;br /&gt;
Things to pay extra attention during the source code audit:&lt;br /&gt;
&lt;br /&gt;
* Obfuscated code&lt;br /&gt;
* BASE64 encode function&lt;br /&gt;
* System call functions (exec, passthru, system, shell_exec, etc.)&lt;br /&gt;
* PHP code execution (eval, assert, preg_replace, etc.)&lt;br /&gt;
* Information disclosure functions (phpinfo, getenv, getmygid/pid/uid, etc.)&lt;br /&gt;
* Filesystem functions (fopen, bz/gzopen, chgrp/own/mod, etc.)&lt;br /&gt;
&lt;br /&gt;
== Backup ==&lt;br /&gt;
The backup process is essential. The configuration of the backup process can make the distinction between a clean and fast recovery or a loss of data and prolonged downtime.&lt;br /&gt;
&lt;br /&gt;
What needs to be included in the backup?&lt;br /&gt;
&lt;br /&gt;
* The WordPress Files&lt;br /&gt;
** WordPress Core Installation&lt;br /&gt;
** WordPress Plugins&lt;br /&gt;
** WordPress Themes&lt;br /&gt;
** Images and Files&lt;br /&gt;
** JavaScript and PHP scripts, and other code files&lt;br /&gt;
** Additional Files and Static Web Pages&lt;br /&gt;
* The Database&lt;br /&gt;
&lt;br /&gt;
It’s easy to say that a full backup of the /public_html folder is needed. However there are situations in which this is not feasible nor enough. There are situations in which large quantities of data is generated in the public folder (statistics, temporary data, etc.) that is useless in the backup process. There’s also the situation in which configuration files are placed outside the public directory. They also need backup.&lt;br /&gt;
&lt;br /&gt;
The plan is to identify the files and folders that must be part of the backup process and save these in a remote location.&lt;br /&gt;
&lt;br /&gt;
For database backup, the mysql command line can be used or administrative interfaces like phpMyAdmin. &lt;br /&gt;
&lt;br /&gt;
How often should the backup be performed? It all depends on how often the instance is updated from a content perspective. If there are multiple updates a day, it’s a good idea to have a daily backup. If there’s a new article every several days, than a weekly or monthly backup is the way to go.&lt;br /&gt;
&lt;br /&gt;
It’s a good practice to keep multiple backups and have them time stamped. This is because a breach might not be noticed immediately and a clean recovery can only be performed from a backup which is several iterations old. &lt;br /&gt;
&lt;br /&gt;
Verifying that the backup is functional is part of the process. A backup that does not allow quick and full recovery is useless. The idea is to have a clean server and perform a full recovery from the backup, then check all the functionality and make sure nothing is missing.&lt;br /&gt;
&lt;br /&gt;
=== Automation ===&lt;br /&gt;
The steps above are manual and labor intensive. There is a full list of plugins that can help this process: https://wordpress.org/plugins/tags/backup&lt;br /&gt;
&lt;br /&gt;
The one free alternative offering full backup capabilities that stands out of the list is [https://wordpress.org/plugins/backwpup/ BackWPup]. The free version can be used to save your complete installation including /wp-content/ and push it to an external Backup Service, like Dropbox, S3, FTP (not a good idea) and many more. &lt;br /&gt;
&lt;br /&gt;
From a security perspective, it’s worth noticing that an attacker who compromised the installation may be able to retrieve credentials and access the remote location of the backups, thus being able to manipulate or delete them. As a good precaution, on the remote side where the backups are stored, an independent process should take the backups and move them to a location inaccessible from the WordPress installation.&lt;br /&gt;
&lt;br /&gt;
== User roles and proper usage ==&lt;br /&gt;
Understanding the roles and properly assigning them to users is essential in the segregation of duties process. &lt;br /&gt;
&lt;br /&gt;
The WordPress roles are:&lt;br /&gt;
&lt;br /&gt;
* Super Admin – somebody with access to the site network administration features and all other features&lt;br /&gt;
* Administrator – somebody who has access to all the administration features within a single site&lt;br /&gt;
* Editor – somebody who can publish and manage posts including the posts of other users&lt;br /&gt;
* Author – somebody who can publish and manage their own posts&lt;br /&gt;
* Contributor – somebody who can write and manage their own posts but cannot publish them&lt;br /&gt;
* Subscriber – somebody who can only manage their profile&lt;br /&gt;
&lt;br /&gt;
The least privilege principle must be considered when assigning roles. &lt;br /&gt;
&lt;br /&gt;
A full list of privileges and a comparison between roles is available at http://codex.wordpress.org/Roles_and_Capabilities. &lt;br /&gt;
&lt;br /&gt;
Supporting plugins:&lt;br /&gt;
&lt;br /&gt;
* [https://wordpress.org/plugins/members/ Members Plugin]&lt;br /&gt;
* [https://wordpress.org/plugins/role-scoper/ Role Scoper Plugin]&lt;br /&gt;
* [http://wordpress.org/extend/plugins/user-access-manager/ User Access Manager]&lt;br /&gt;
* [http://wordpress.org/extend/plugins/advanced-access-manager/ Advanced Access Manager]&lt;br /&gt;
* [http://wordpress.org/extend/plugins/user-role-editor/ User Role Editor]&lt;br /&gt;
&lt;br /&gt;
== Restrict the access to the admin interface ==&lt;br /&gt;
Restricting the access to the admin interface should be considered as no regular user is in need of access to this area. For a site with few users it makes sense to whitelist their IP addresses. Additionally, the access can be restricted only to the localhost and have the users VPN in or create a tunnel to the server (if SSH is enabled) and then access the admin interface.&lt;br /&gt;
&lt;br /&gt;
To restrict the access to the wp-admin folder, a file called .htaccess needs to be created in that folder. The content of the file should be:&lt;br /&gt;
&lt;br /&gt;
''Order Deny,Allow''&lt;br /&gt;
&lt;br /&gt;
''Deny from all''&lt;br /&gt;
&lt;br /&gt;
''Allow from 127.0.0.1''&lt;br /&gt;
&lt;br /&gt;
Multiple IP addresses separated by whitespaces can be added and the use of wildcards (*) is permitted.&lt;br /&gt;
&lt;br /&gt;
== Prevent brute-forcing ==&lt;br /&gt;
Brute-forcing is the easy way in for an attacker. As discussed in the General Security chapter, a prerequisite for preventing bruteforcing is to have [https://www.owasp.org/index.php/Authentication_Cheat_Sheet#Password_Complexity strong passwords]. Apart from that, an additional layer of protection can be added in the form of [http://en.wikipedia.org/wiki/CAPTCHA CAPTCHA]. &lt;br /&gt;
&lt;br /&gt;
One good plugin candidate is [https://wordpress.org/plugins/google-captcha/ Google Captcha (reCAPTCHA)]. The advantage of this plugin is that it can be used to add the extra layer of protection on other areas as well (like registration and comments).&lt;br /&gt;
&lt;br /&gt;
CAPTCHA is not a perfect solution by any means. There are services offering real-time CAPTCHA solving for a few cents per challenge. However it takes seconds to solve a CAPTCHA even for a good service like this, thus this sort of attack becomes unfeasible.&lt;br /&gt;
&lt;br /&gt;
Another preventive measure is to lock-out accounts after a series of failed attempts. There is no plugin at the moment that can lock a user after several failed attempts for a period of time, there are plugins blocking IP addresses that are brute-forcing the login mechanism. This approach is not the best when dealing with distributed attacks.&lt;br /&gt;
&lt;br /&gt;
== Implement two factor authentication ==&lt;br /&gt;
To add another layer of security on the authentication mechanism, two factor authentication can be enabled. Two factor authentication is a method of securing accounts requiring that you not only know something (a password) to log in but also that you possess something (your mobile device). The benefit of this approach to security is that even if someone guesses your password, they need to have also stolen your possession in order to break into your account.&lt;br /&gt;
&lt;br /&gt;
Supporting plugins: &lt;br /&gt;
* Clef (unfortunately the product was retired in April 2017)&lt;br /&gt;
* Google Authenticator&lt;br /&gt;
* MiniOrange and other 2FA plugins&lt;br /&gt;
https://en-gb.wordpress.org/plugins/tags/2fa/&lt;br /&gt;
&lt;br /&gt;
== Remove or change the default administrator account ==&lt;br /&gt;
There are two main reasons for creating a new administrator or modifying the old one:&lt;br /&gt;
&lt;br /&gt;
* After the installation the default username is “admin”; an attacker trying to brute-force his way in will try default usernames&lt;br /&gt;
* The default id of the admin account is 1; an attacker who discovers a SQL injection is will try to update the user with id = 1&lt;br /&gt;
&lt;br /&gt;
Both tasks can be performed manually in the database without the need to delete the admin account or can be performed in the administration User Interface. Create a new administrator, log in with the new credentials and delete the default one.&lt;br /&gt;
&lt;br /&gt;
== Disable user registration if not needed ==&lt;br /&gt;
If user management is performed manually or through integration with other user management systems, there is no need for this functionality to be enabled in WordPress.&lt;br /&gt;
&lt;br /&gt;
To disable user registration, log in as an administrator, go to '''Settings -&amp;gt; General''' and make sure the '''“Anyone can register”''' box is unchecked.&lt;br /&gt;
&lt;br /&gt;
== Change the database prefix ==&lt;br /&gt;
In case a 0-day SQL injection vulnerability is discovered, an attacker will try to exploit the known tables from a default WordPress installation. To prevent this from happening, the default prefix of the tables needs to be changed. This can be performed in several ways:&lt;br /&gt;
&lt;br /&gt;
* During the installation process&lt;br /&gt;
* Manually via ''mysql'' command line or ''phpMyAdmin'' for all the tables; after this, the wp-config.php file must be configured to reflect the changes ($table_prefix = &amp;quot;ves1uaq3_&amp;quot;;)&lt;br /&gt;
* With a plugin ([https://wordpress.org/plugins/db-prefix-change/ Change DB Prefix])&lt;br /&gt;
&lt;br /&gt;
== Control comments ==&lt;br /&gt;
WordPress was initially a blogging platform so the ability to add comments was part of the success story. Things changed with the shift of WordPress towards a CMS so comments might not be necessary in all instances. There are several things that need to be considered when dealing with this topic:&lt;br /&gt;
&lt;br /&gt;
* Are comments needed? If not, they should be disabled. Log in as administrator. For new posts go to '''Settings -&amp;gt; Discussion''' and uncheck &amp;quot;'''Allow people to post comments on new articles'''&amp;quot;. For existing posts, go to '''Posts''', select all of them, '''Bulk Actions -&amp;gt; Edit''' and choose “'''do not allow'''” near '''Comments''' before hitting '''Update posts'''.&lt;br /&gt;
* If comments are required, who should be able to post them? If only registered users should be allowed to add comments, go to '''Settings -&amp;gt; Discussion''' and check the “'''Users must be registered and logged in to comment'''” box.&lt;br /&gt;
* Should comments be reviewed before publishing? If so, the “'''Comment must be manually approved'''” box must be checked.&lt;br /&gt;
* If comments are not reviewed before publishing, using an anti-spam plugin like the default [https://wordpress.org/plugins/akismet/ Akismet] is advised &lt;br /&gt;
&lt;br /&gt;
As a general rule of thumb, all the options under '''Settings -&amp;gt; Discussion '''should be carefully reviewed. &lt;br /&gt;
&lt;br /&gt;
== Check file permissions ==&lt;br /&gt;
Permissions on files and directories determine who is allowed to read, write and execute them. Permission settings will vary from situation to situation and between shared hosting and dedicated hosting.&lt;br /&gt;
&lt;br /&gt;
Following is a list of desired permissions on sensitive items and fallback options:&lt;br /&gt;
&lt;br /&gt;
* wp-config.php&lt;br /&gt;
** Desired: 400&lt;br /&gt;
** Fallback: 440, 600, 640&lt;br /&gt;
* uploads folder&lt;br /&gt;
** Desired: 755&lt;br /&gt;
** Fallback: 766, 777 (not recommended)&lt;br /&gt;
* .htaccess files&lt;br /&gt;
** Desired: 400&lt;br /&gt;
** Fallback: 440, 444, 600, 640&lt;br /&gt;
&lt;br /&gt;
== Delete readme.html and install.php ==&lt;br /&gt;
The readme.html file may reveal sensitive information and is not needed from a functional perspective. &lt;br /&gt;
&lt;br /&gt;
The install.php is a residue of the installation process and even though it does not allow it to be restarted it’s not needed and should be removed.&lt;br /&gt;
&lt;br /&gt;
The license.txt reveals the year of last Wordpress update - a fact that attackers can use to scan for outdated WordPress installations.&lt;br /&gt;
&lt;br /&gt;
Action item:&lt;br /&gt;
&lt;br /&gt;
* Delete the /&amp;lt;WordPress_root&amp;gt;/readme.html  /&amp;lt;WordPress_root&amp;gt;/license.txt and /&amp;lt;WordPress_root&amp;gt;/wp-admin/install.php files&lt;br /&gt;
&lt;br /&gt;
== Add blank index.php files where needed ==&lt;br /&gt;
Especially in shared environments where the settings of the web server are outside the control of the WordPress implementer, directory listing might be enabled. To add an extra layer of security, blank index.php files should be added to the folders that don’t have indexes in order to prevent browsing of the resources. The main folders that need to be considered are:&lt;br /&gt;
&lt;br /&gt;
* wp-includes&lt;br /&gt;
* wp-content&lt;br /&gt;
* wp-content/plugins&lt;br /&gt;
* wp-content/themes&lt;br /&gt;
* wp-content/uploads&lt;br /&gt;
&lt;br /&gt;
== Move wp-config.php file outside the web root folder ==&lt;br /&gt;
The wp-config.php file is a very important configuration file. It contains a lot of sensitive information about your WordPress site, like your database information for example.&lt;br /&gt;
&lt;br /&gt;
WordPress will automatically look for this file in the folder above the WordPress root folder if it does not exist in the root folder. Moving this file out of the public_html folder means the file will not be accessible from the Internet.&lt;br /&gt;
&lt;br /&gt;
== Create secret keys ==&lt;br /&gt;
Starting with the release of WordPress 2.6, a new set of security features for passwords and password hashing and cookie security is included. This feature works without doing anything, but it's not particularly powerful without some extra steps. In order to greatly increase the security of the WordPress installation, secret keys must be set up. This should be part of the standard installation process. Whenever there’s suspicion that the secret keys have been compromised, the administrator must change them. Changing the secret keys will invalidate all sessions so users will need to re-authenticate. &lt;br /&gt;
&lt;br /&gt;
Setting up or changing secret keys can be done by adding or editing the following lines to the wp-config.php file, right after the other define statements:&lt;br /&gt;
&lt;br /&gt;
''define('AUTH_KEY', 'put your unique phrase here');''&lt;br /&gt;
&lt;br /&gt;
''define('SECURE_AUTH_KEY', 'put your unique phrase here');''&lt;br /&gt;
&lt;br /&gt;
''define('LOGGED_IN_KEY', 'put your unique phrase here');''&lt;br /&gt;
&lt;br /&gt;
''define('NONCE_KEY', 'put your unique phrase here');''&lt;br /&gt;
&lt;br /&gt;
You don't have to remember the keys, just make them long, random and complicated -- or better yet, use the [https://api.wordpress.org/secret-key/1.1/salt/ online generator].&lt;br /&gt;
&lt;br /&gt;
== Enforce transport layer encryption for administrative tasks ==&lt;br /&gt;
It was discussed earlier that SSL should be configured and used to access the WordPress instance. Usually sites are available over port 80 and 443. This means that the users are free to choose if they use a clear text or an encrypted communication channel. &lt;br /&gt;
&lt;br /&gt;
In order to force the usage of SSL (at least) for sensitive actions, the following lines must be added to the wp-config.php file:&lt;br /&gt;
&lt;br /&gt;
''define('FORCE_SSL_LOGIN', true);''&lt;br /&gt;
&lt;br /&gt;
''define('FORCE_SSL_ADMIN', true);''&lt;br /&gt;
&lt;br /&gt;
== Use a Web Application Firewall (WAF) ==&lt;br /&gt;
A WAF should be in place at the web server layer. Because that is not always accessible to the implementer, a WAF plugin can be used to add this layer of protection.&lt;br /&gt;
&lt;br /&gt;
A good plugin candidate is [https://wordpress.org/plugins/ninjafirewall/ NinjaFirewall].&lt;br /&gt;
&lt;br /&gt;
== Security plugins ==&lt;br /&gt;
This section is a list of security plugins and a short description of their functionality. As previously mentioned, the focus is on free plugins.&lt;br /&gt;
&lt;br /&gt;
* [https://wordpress.org/plugins/better-wp-security/ iThemes Security] – iThemes Security (formerly Better WP Security) gives you over 30+ ways to secure and protect your WordPress site. In its free version it can obscure, detect, protect and recover a WordPress installation&lt;br /&gt;
* [https://wordpress.org/plugins/bulletproof-security/ BulletProof Security] – the free version offers:&lt;br /&gt;
** .htaccess Website Security Protection (Firewalls)&lt;br /&gt;
** Login Security &amp;amp; Monitoring&lt;br /&gt;
** DB Backup&lt;br /&gt;
** DB Backup Logging&lt;br /&gt;
** DB Table Prefix Changer&lt;br /&gt;
** Security Logging&lt;br /&gt;
** HTTP Error Logging&lt;br /&gt;
** FrontEnd/BackEnd Maintenance Mode&lt;br /&gt;
* [https://wordpress.org/plugins/all-in-one-wp-security-and-firewall/ All In One WP Security &amp;amp; Firewall]&lt;br /&gt;
** User Account/Login/Registration Security&lt;br /&gt;
** Database &amp;amp; File System Security&lt;br /&gt;
** htaccess and wp-config.php File Backup and Restore&lt;br /&gt;
** Blacklist Functionality&lt;br /&gt;
** Firewall Functionality&lt;br /&gt;
** Brute-force login attack prevention&lt;br /&gt;
** Security Scanner&lt;br /&gt;
* [https://wordpress.org/plugins/sucuri-scanner/ Sucuri Security - Auditing, Malware Scanner and Security Hardening]&lt;br /&gt;
** Security Activity Auditing&lt;br /&gt;
** File Integrity Monitoring&lt;br /&gt;
** Remote Malware Scanning&lt;br /&gt;
** Blacklist Monitoring&lt;br /&gt;
** Effective Security Hardening&lt;br /&gt;
** Post-Hack Security Actions&lt;br /&gt;
** Security Notifications&lt;br /&gt;
** Website Firewall (add on)&lt;br /&gt;
* [https://wordpress.org/plugins/wp-security-scan/ Acunetix WP Security] &amp;amp; [https://wordpress.org/plugins/secure-wordpress/faq/ Acunetix Secure WordPress] – these plugins check your WordPress website/blog for security vulnerabilities and suggests corrective actions such as:&lt;br /&gt;
** Passwords&lt;br /&gt;
** File permissions&lt;br /&gt;
** Database security&lt;br /&gt;
** x hiding&lt;br /&gt;
** WordPress admin protection/security&lt;br /&gt;
** Removes WP Generator META tag from core code&lt;br /&gt;
*[https://en-gb.wordpress.org/plugins/wordfence/ Wordfence Security Plugin] &lt;br /&gt;
**Web Application Firewall&lt;br /&gt;
**Threat Defence Feed&lt;br /&gt;
**Real-time blocking of known attackers&lt;br /&gt;
**Rate-limiting&lt;br /&gt;
**Login Security&lt;br /&gt;
**File integrity monitoring and scanning&lt;br /&gt;
**Real-time Monitoring &lt;br /&gt;
&lt;br /&gt;
== Disable the Plugin and Theme Editor ==&lt;br /&gt;
Occasionally you may wish to disable the plugin or theme editor to prevent overzealous users from being able to edit sensitive files and potentially crash the site. Disabling these also provides an additional layer of security if a hacker gains access to a well-privileged user account. &lt;br /&gt;
&lt;br /&gt;
Open your wp-config.php file and add the following constant:&lt;br /&gt;
&lt;br /&gt;
''define('DISALLOW_FILE_EDIT',true);''&lt;br /&gt;
&lt;br /&gt;
= Large-scale integration =&lt;br /&gt;
Implementing one WordPress site and maintaining it is a doable job for an administrator. In large corporate environments there may be hundreds of instances that need management, configuration and maintenance. This can easily become an unmanageable situation. When dealing with large number of instances, a centralized approach is needed.&lt;br /&gt;
&lt;br /&gt;
== Creating a standard image ==&lt;br /&gt;
The first step is to create a standard WordPress installation with all the security configuration and plugins in place. This should be a blank installation with no data that can be easily replicated when a new instance needs to be created. &lt;br /&gt;
&lt;br /&gt;
A process for new instances must be in place and approach at least the following subjects:&lt;br /&gt;
&lt;br /&gt;
* General configuration&lt;br /&gt;
* Database connectivity &lt;br /&gt;
* Setting the administrator account&lt;br /&gt;
&lt;br /&gt;
== LDAP integration &amp;amp; Single Sign On ==&lt;br /&gt;
User management for large WordPress sites can be a hassle. In corporate environments users are in general centrally managed and assigned to different groups. WordPress can make use of this already established situation. Whether it’s [http://en.wikipedia.org/wiki/Active_Directory Active Directory] or other LDAP compatible service, this establishment is already used in the organization trying to implement WordPress. It’s easy to set up groups based on WordPress roles and assign users to different groups, based on their required level of access. Once the integration is achieved, one can go further towards an elegant solution by implementing Single Sign On. &lt;br /&gt;
&lt;br /&gt;
Supporting plugins:&lt;br /&gt;
&lt;br /&gt;
* [https://wordpress.org/plugins/active-directory-integration/ Active Directory Integration]&lt;br /&gt;
* [https://wordpress.org/support/plugin/active-directory-sso Active Directory SSO]&lt;br /&gt;
* [https://wordpress.org/plugins/simple-ldap-login/ Simple LDAP Login]&lt;br /&gt;
&lt;br /&gt;
== Multisites ==&lt;br /&gt;
A large environment requires multiple instances of WordPress. Managing each individual instance can become impossible for a single person or a small team. This is where a built-in feature of WordPress comes in handy, [http://codex.wordpress.org/Create_A_Network multisite or network of sites].&lt;br /&gt;
&lt;br /&gt;
A multisite network can be very similar to a personal version of WordPress.com. End users can create their own sites on demand, just like end users of WordPress.com can create blogs on demand. If there’s no need to allow end users to create their own sites on demand, the administrator of the network can create a multisite network in which only he can add new sites.&lt;br /&gt;
&lt;br /&gt;
A multisite network is a collection of sites that all share the same WordPress installation. They can also share plugins and themes. The individual sites in the network are virtual sites in the sense that they do not have their own directories on your server, although they do have separate directories for media uploads within the shared installation, and they do have separate tables in the database.&lt;br /&gt;
&lt;br /&gt;
WordPress does a good job in providing the necessary documentation for:&lt;br /&gt;
&lt;br /&gt;
* [http://codex.wordpress.org/Create_A_Network Installation]&lt;br /&gt;
* [http://codex.wordpress.org/Multisite_Network_Administration Administration]&lt;br /&gt;
* [http://codex.wordpress.org/Debugging_a_WordPress_Network Debugging]&lt;br /&gt;
* [http://codex.wordpress.org/Migrating_Multiple_Blogs_into_WordPress_3.0_Multisite Migration]&lt;br /&gt;
&lt;br /&gt;
The benefit of the multisite feature is centralized management of security. Plugins can be checked once for security defects and when a stable and secure version is available it can be pushed to all the sites in the same time.&lt;br /&gt;
&lt;br /&gt;
This built-in solution might not always be the best choice. For example, all the plugins are shared between different sites and the administrators of those sites choose which plugins to enable and which to disable.&lt;br /&gt;
&lt;br /&gt;
== Unified management of multiple installations ==&lt;br /&gt;
If multiple separate instances of WordPress need to be managed centrally, there are several solutions (most of them have at least some form of commercial addons) that can accomplish the task:&lt;br /&gt;
&lt;br /&gt;
* [http://infinitewp.com/ InfinteWP] is a free, self-hosted multiple WordPress management platform that simplifies WordPress management tasks into simple clicks. Features:&lt;br /&gt;
** One master login&lt;br /&gt;
** One click updates&lt;br /&gt;
** Instant backup &amp;amp; restore&lt;br /&gt;
** Plugins &amp;amp; themes management&lt;br /&gt;
* [https://managewp.com/ ManageWP]&lt;br /&gt;
* [https://wpremote.com/ WPRemote] lets administrators monitor an unlimited number of WordPress websites. Through the WP Remote dashboard they can update WordPress and update plugins and themes. A snapshot (backup) of the websites can be downloaded from the interface&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Resources =&lt;br /&gt;
The project started with a discussion between [https://www.linkedin.com/in/dancatalinvasile Dan Vasile] (the initiator) and [https://www.linkedin.com/in/andersvinther Anders Vinther] who has already published [http://www.wpsecuritychecklist.com/ a guide] about secure WordPress implementation. Based on the information there, a part of the skeleton and content of the current project was created.&lt;br /&gt;
&lt;br /&gt;
== Browser security ==&lt;br /&gt;
* http://www.cert.org/historical/tech_tips/securing-web-browser-index.cfm&lt;br /&gt;
&lt;br /&gt;
== Apache hardening ==&lt;br /&gt;
* http://httpd.apache.org/docs/current/misc/security_tips.html&lt;br /&gt;
* http://www.tecmint.com/apache-security-tips/&lt;br /&gt;
* https://wiki.debian.org/Apache/Hardening&lt;br /&gt;
&lt;br /&gt;
== PHP hardening ==&lt;br /&gt;
* http://php.net/manual/en/security.php&lt;br /&gt;
* http://www.cyberciti.biz/tips/php-security-best-practices-tutorial.html&lt;br /&gt;
* http://www.suhosin.org/stories/index.html&lt;br /&gt;
&lt;br /&gt;
== MySQL hardening ==&lt;br /&gt;
* https://www.owasp.org/index.php/OWASP_Backend_Security_Project_MySQL_Hardening&lt;br /&gt;
* http://www.greensql.com/content/mysql-security-best-practices-hardening-mysql-tips&lt;br /&gt;
&lt;br /&gt;
== Wordpress ==&lt;br /&gt;
* http://codex.wordpress.org/Configuring_Automatic_Background_Updates&lt;br /&gt;
* http://stackoverflow.com/questions/3115559/exploitable-php-functions&lt;br /&gt;
* http://codex.wordpress.org/WordPress_Backups &lt;br /&gt;
* http://codex.wordpress.org/Roles_and_Capabilities&lt;br /&gt;
* http://en.support.wordpress.com/security/two-step-authentication/ &lt;br /&gt;
* http://codex.wordpress.org/Create_A_Network &lt;br /&gt;
* http://codex.wordpress.org/Before_You_Create_A_Network &lt;br /&gt;
* http://codex.wordpress.org/Migrating_Multiple_Blogs_into_WordPress_3.0_Multisite &lt;br /&gt;
* http://codex.wordpress.org/Editing_wp-config.php&lt;br /&gt;
&lt;br /&gt;
=Project About=&lt;br /&gt;
{{:Projects/OWASP_Wordpress_Security_Checklist_Project}} &lt;br /&gt;
&lt;br /&gt;
[[Category:OWASP Project]]&lt;br /&gt;
[[Category:WordPress]]&lt;/div&gt;</summary>
		<author><name>Svieg</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=Montr%C3%A9al&amp;diff=241350</id>
		<title>Montréal</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=Montr%C3%A9al&amp;diff=241350"/>
				<updated>2018-06-17T20:52:48Z</updated>
		
		<summary type="html">&lt;p&gt;Svieg: /* Insecurity in Information Technology */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Welcome &amp;amp; Bienvenue to the OWASP Montréal chapter ==&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:OWASP-Montreal-Logo.png|Logo OWASP Montréal]]&lt;br /&gt;
&lt;br /&gt;
The OWASP Foundation was established in 2001 as an open community and software security resource. Since then, OWASP has grown to be globally recognized as a credible source for application security standards. &amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
OWASP is an open community dedicated to enabling organizations to conceive, develop, acquire, operate, and maintain applications that can be trusted. All of the OWASP tools, documents, forums, and chapters are free and open to anyone interested in improving application security. We advocate approaching application security as a people, process, and technology problem because the most effective approaches to application security include improvements in all of these areas. &amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
OWASP is open to anyone. Anyone can attend OWASP's vendor agnostic local chapter meetings, participate in regional and global conferences, and contribute to the many OWASP projects. And anyone can start a new project, form a new chapter, or lend their expertise to help an OWASP Global Committee.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt;On parle français aussi ! Le chapitre de Montréal organise plusieurs activités gratuites afin de partager les connaissances en sécurité applicative avec la communauté de développeurs et gestionnaires. Suivez-nous sur les réseaux sociaux pour connaître les dates des conférences du midi et des workshops !&amp;lt;/b&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Top documentation from OWASP includes: &lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/index.php/Top_10_2013-Top_10 OWASP TOP 10 : The Ten Most Critical Web Application Security Risks]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/images/3/33/OWASP_Application_Security_Verification_Standard_3.0.1.pdf OWASP ASVS : Application Security Verification Standard]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/images/5/52/OWASP_Testing_Guide_v4.pdf OWASP Testing Guide : Penetration Testing Framework]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/images/7/78/OWASP_AlphaRelease_CodeReviewGuide2.0.pdf OWASP Code Review Guide : Source Code Analysis Framework]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/index.php/OWASP_Cheat_Sheet_Series OWASP Cheat Sheet : Best practices guidelines for developers]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org OWASP Global]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Chapter Leaders / Responsables du chapitre ===&lt;br /&gt;
&lt;br /&gt;
* [mailto:anne.gauthier@owasp.org Anne Gauthier], President/Présidente&lt;br /&gt;
* [mailto:michel.bourque{at}owasp.org Michel Bourque], Chapter coordinator and marketing manager/Coordination et Marketing&lt;br /&gt;
* [mailto:hugo.genesse(at)owasp.org Hugo Genesse], Web content and production manager/Site internet et Production &lt;br /&gt;
* [mailto:olivier.arteau(at)owasp.org Olivier Arteau], Logistic manager/Logistique&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt; Volunteers / Volontaires OWASP Montréal: &amp;lt;/b&amp;gt;&lt;br /&gt;
* Simon Lacasse, Web content / Site internet&lt;br /&gt;
* Julien Touche, Logistique&lt;br /&gt;
* Jean-François Gill&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;b&amp;gt; Reach our chapter / Joindre le chapitre &amp;lt;/b&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Follow OWASP's Montreal chapter's activities through social medias, register to events, watch the previous presentations and more! &lt;br /&gt;
&lt;br /&gt;
Suivez les activités du chapitre OWASP Montréal via les réseaux sociaux, inscrivez-vous aux activités, visualisez les anciennes présentations et plus encore! &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;b&amp;gt;[http://lists.owasp.org/mailman/listinfo/owasp-montreal Click here] to join the local chapter mailing list.&lt;br /&gt;
&amp;lt;br /&amp;gt;[http://lists.owasp.org/mailman/listinfo/owasp-montreal Inscrivez-vous ici] à la liste de courriels du chapitre afin de recevoir les dernières nouvelles!&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Want to be part of the community ? &lt;br /&gt;
Devenez membre de notre communauté ! &lt;br /&gt;
[https://www.owasp.org/index.php/Membership_Map Click here / Cliquer ici]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Eb_press_little.gif‎|OWASP Montreal Eventbrite|link=http://owaspmontreal.eventbrite.ca/]] &lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[Image:Yt-brand-standard-logo-630px.png‎|128px|YouTube OWASP Montreal Channel|link=http://www.youtube.com/owaspmontreal]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]   &lt;br /&gt;
[[Image:Speakerdecklogo.png‎|Slides of OWASP Montreal on SpeakerDeck |link=https://speakerdeck.com/owaspmontreal]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Twitter-bird-cropped-onwhite.png|@owaspmontreal on Twitter|link=https://twitter.com/owaspmontreal]]&lt;br /&gt;
[[Image:FacebookSquareLogo.png|OWASP Montreal Facebook page|link=https://www.facebook.com/owasp.montreal]]&lt;br /&gt;
[[Image:LinkedinSquareLogo.png|OWASP Montreal on LinkedIn|link=https://www.linkedin.com/groups/1379007/profile]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
&lt;br /&gt;
== What we do / Nos activités ==&lt;br /&gt;
&lt;br /&gt;
OWASP Montreal is a really active chapter. We organize monthly conferences and workshops. All our events are free and meant to improve the knowledge and awareness of the community's developers, managers and computer security specialists. To be aware of the next event and for additional information, follow us on social medias. &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
OWASP Montréal est un des chapitres les plus actifs. Nous organisons mensuellement des ateliers et conférences. Tous nos événements sont gratuits et ont pour but d'améliorer les connaissances de la communauté. Ils s'adressent donc autant aux gestionnaires qu'aux développeurs et aux spécialistes en sécurité informatique. Pour plus d'informations sur nos activités et pour être au courant des prochaines dates d'événement, suivez nous sur les réseaux sociaux. &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;We also contribute to the vast OWASP knowledge base / Nous contribuons aussi aux ressources d'OWASP&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We list here the projects that were started by our members under OWASP's banner. &amp;lt;br /&amp;gt;&lt;br /&gt;
Nous listons ici les projets commencé par nos membres sous la banière d'OWASP. &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/index.php/Vulnerability_Disclosure_Cheat_Sheet Vulnerability Disclosure Cheat Sheet]&lt;br /&gt;
&lt;br /&gt;
== Sponsorship &amp;amp; Membership / Commandite &amp;amp; Adhésion ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Btn_donate_SM.gif|link=http://www.regonline.com/donation_1044369]] to this chapter or become a local chapter supporter.&lt;br /&gt;
&lt;br /&gt;
Or consider the value of [[Membership | Individual, Corporate, or Academic Supporter membership]]. Ready to become a member? [[Image:Join_Now_BlueIcon.JPG|75px|link=https://myowasp.force.com/]]&lt;br /&gt;
&lt;br /&gt;
[http://www.regonline.com/donation_1044369 Donnez] au chapitre ou devenez commanditaire du chapitre local! &lt;br /&gt;
&lt;br /&gt;
[https://myowasp.force.com/ Devenez membre !] Pour en savoir davantage sur les avantages d’une adhésion individuelle, corporative ou en tant qu’institution d’enseignement, [https://www.owasp.org/index.php/Membership cliquez ici]. &lt;br /&gt;
&lt;br /&gt;
[[Category:OWASP Chapter]]&lt;br /&gt;
&lt;br /&gt;
== Chapter Supporters / Commanditaires du chapitre ==&lt;br /&gt;
&lt;br /&gt;
[https://www.owasp.org/images/9/91/OWASP_Membership_Flyer_Montreal.png All details available here / Pour tous les détails] [[File:Chapter-supporter-owasp-montreal.png|200px|link=]] &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Platinum / Platine ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Gosecure-2.png|GoSecure|link=http://www.gosecure.ca/]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[File:Desjardins2-400x400.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Gold / Or ===&lt;br /&gt;
&lt;br /&gt;
[[Image:PM_SCADA_Logo_Gris_Cybersecurite_FR.png|PM SCADA|link=http://pmscada.ca/en/]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Lunch &amp;amp; Learn / Workshops 2018 =&lt;br /&gt;
&lt;br /&gt;
== SecurityRAT - Handling of Security Requirements in SDLC ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Fri, 1 June 2018&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
OWASP dans le cadre des Midis conférence est heureux d'accueillir Daniel Kefer et Rene Reuter. Tous les deux viennent d'Allemagne et seront de passage à Montréal.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Nos conférenciers viendront présenter SecurityRAT, un projet OWASP pour gérer les requis de sécurité pendant le cycle de vie des dévelopements applicatifs (SDLC).&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Biographie :&amp;lt;br /&amp;gt;&lt;br /&gt;
Daniel Kefer travaille en sécurité depuis 2007 et a commencé en tant que pentester. Il travaille depuis 2011 chez 1&amp;amp;1 où il mène l'équipe AppSec interne.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
René Reuter est ingénieur sécurité depuis 6 ans. Il travaille chez Robert Bosch GmbH en tant que consultant en charge d'identifier les vulnérabilités et problèmes de conception dans les applications internes.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Insecurity in Information Technology ==&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wed, 16 May 2018&lt;br /&gt;
WHERE&lt;br /&gt;
 Marché Bonsecours, salle 1847&lt;br /&gt;
&lt;br /&gt;
OWASP dans le cadre des Midis conférence est heureux d'accueillir Greg Castle.&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
A lot is expected of software developers these days; they are expected to be experts in everything despite very little training. Throw in the IT security team (often with little-to-no knowledge of how to build software) telling developers what to do and how to do it, and the situation becomes strained. This silo-filled, tension-laced situation, coupled with short deadlines and pressure from management, often leads to stress, anxiety and less-than-ideal reactions from developers and security people alike.&amp;lt;br/&amp;gt;&lt;br /&gt;
This talk will explain how job insecurities can be brought out by IT leadership decisions, and how this can lead to real-life vulnerabilities in software. This is not a talk about “feelings”, this is a talk about creating programs, governance and policies that ensure security throughout the entire SDLC.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
No more laying blame and pointing fingers, it’s time to put our egos aside and focus on building high-quality software that is secure. The cause and effect of insecurities and other behavioral influencers, as well as several detailed and specific solutions will be presented that can be implemented at your own place of work, immediately. No more ambiguity or uncertainty from now on, only crystal-clear expectations.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Biographie :&amp;lt;br /&amp;gt;&lt;br /&gt;
Tanya Janca is a senior cloud advocate for Microsoft, specializing in application security; evangelizing software security and advocating for developers through public speaking, her open source project OWASP DevSlop, and various forms of teaching via workshops, blogs and community events. As an ethical hacker, OWASP Project and Chapter Leader, software developer, effective altruist and professional computer geek of 20+ years, she is a person who is truly fascinated by the ‘science’ of computer science.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Shipping in Pirate-Infested Waters: Practical Attack and Defense in Kubernetes ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Owasp-avril-2018.JPG  ]]&lt;br /&gt;
[[Image:Owasp-avril-2018-2.JPG ]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/ohTq0no0ZVU ]] [https://youtu.be/ohTq0no0ZVU Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 April 30 2018&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
OWASP dans le cadre des Midis conférence est heureux d'accueillir Greg Castle.&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
L'événement contiendra une diffusion de &amp;quot;Shipping in Pirate-Infested Waters: Practical Attack and Defense in Kubernetes&amp;quot; présenté à Kubecon 2017, suivi de 20 min de questions/réponses avec Greg par vidéoconférence.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Biographie :&amp;lt;br /&amp;gt;&lt;br /&gt;
Greg est Tech Lead pour l'équipe sécurité Kubernetes et Google Container Engine chez Google. Avant GKE, Greg a travaillé dans l'équipe de réponse aux incidents de sécurité de Google, dévelopant des outils opensource d'investigations et à l'amélioration de la sécurité de Macos. Avant google, il a occupé de nombreuses positions incluant pentester, incident responder et analyste forensics.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Operate PCI DSS infrastructure using DevOps approach ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Owasp-montreal-pci-dss-r.jpg  ]]&lt;br /&gt;
[[Image:Owasp-montreal-pci-dss-2-r.jpg ]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/owasp-operate-pcidss-infrastructure-using-devops-approch-dot-pptx-1]] [https://speakerdeck.com/owaspmontreal/owasp-operate-pcidss-infrastructure-using-devops-approch-dot-pptx-1 See the slides / Voir la présentation]&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 March 5 2018&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
OWASP dans le cadre des Midis conférence est heureux d'accueillir, M. Gaëtan Trivino.&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Notre conférencier viendra présenter l'influence de la culture devops sur les opérations d'un hébergeur international en particulier pour supporter les réglementations comme PCI DSS.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Biographie :&amp;lt;br /&amp;gt;&lt;br /&gt;
Gaëtan est DevOps technical leader orienté cloud et automatisation réseau. Il a traversé l'Atlantique avec sa famille pour explorer de nouvelles culture de travail et se lance dans la recherche du meilleur sirop d'érable!&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Lunch &amp;amp; Learn / Workshops 2015-2017 =&lt;br /&gt;
&lt;br /&gt;
== Pourquoi un hacker peut-il contourner les mesures et solutions de sécurité... ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hamilton-septembre-2017-1.JPG  ]]&lt;br /&gt;
[[Image:Hamilton-septembre-2017-2.JPG ]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/endpoint-bypass-charles-hamilton]] [https://speakerdeck.com/owaspmontreal/endpoint-bypass-charles-hamilton See the slides / Voir la présentation]&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 September 18th 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
OWASP dans le cadre des Midis conférence est heureux de lancer la saison 2017-2018 en accueillant, M. Charles F. Hamilton.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Notre conférencier viendra brosser un tableau des différents éléments qui expliquent pourquoi les mesures et les solutions de sécurité en générales qui ont la fonction de protéger les données, les applications, les réseaux ou les équipements critiques sont si souvent contournées ou carrément inefficaces contre les attaques ciblées.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Biographie :&amp;lt;br /&amp;gt;&lt;br /&gt;
Charles F. Hamilton est un consultant en sécurité et membre d’équipe « Red Team » de calibre international. Il se spécialise en test d’intrusion et la recherche de solution proactive de sécurité.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Cas d'attaques vécus : Internet des objets (IOT) - Attaques DDoS ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Cas_dattaques_vecus-r.jpg  ]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 June 19th 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
Pour clore la saison printanière 2017, OWASP Montréal est fier d'accueillir au Midi Conférence, M. Christian Shink qui fera un survol de cas d'attaques vécus, des techniques utilisées et des acteurs impliqués dans ces attaques.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
L'incorporation généralisée de dispositifs «intelligents» dans les objets de la vie de tous les jours modifie la façon dont les gens et les machines interagissent les uns avec les autres. Cette incorporation offre une promesse d'une meilleure qualité de vie, une meilleure efficacité. En contrepartie, leur déploiement introduit également des vulnérabilités à la fois dans l'infrastructure qu'ils soutiennent et sur lesquels ils comptent, ainsi que dans les processus qu'ils guident. Que ce soit au niveau applicatif ou des infrastructures, ces vulnérabilités sont exploitées par des acteurs malicieux pour générer des attaques de déni de service massives et sophistiquées. Nous tenterons également de tirer des leçons afin de tenter de minimiser ce type d'attaques dans le futur.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Christian Shink possède plus d’une dizaine d’années d’expérience en développement et sécurité d’applications. Avant de se joindre à Radware, Christian était à l’emploi d'une firme conseil où il a conseillé de nombreuses entreprises, dont de grandes banques américaines et Casinos. Il détient une certification CSSLP et est membre de l'ordre des ingénieurs du Québec.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== HOW TO! Threat Modeling Toolkit ==&lt;br /&gt;
&lt;br /&gt;
[[Image:OWASPMtl-JonathanMarcil-1.jpg]]&lt;br /&gt;
[[Image:OWASPMtl-JonathanMarcil-3.jpg]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/threat-modeling-toolkit]] [https://speakerdeck.com/owaspmontreal/threat-modeling-toolkit See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 May 23rd, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Shopify Montreal&lt;br /&gt;
&lt;br /&gt;
Threat Modeling is a great way to analyze security early in software development by structuring possible attacks, bad actors and countermeasures over a broad view of the targeted system. This talk will describe basic components of a threat model and how to use them effectively.&lt;br /&gt;
Threat Intelligence is where you gather knowledge about the environment and business assets to determine what are the actual threats. But how do you reconcile that with the current architecture in a useful manner?&lt;br /&gt;
The toolkit presented in this talk will enable you to systematically structure related information using graphical notations such as flow diagram and attack tree. In case you are wondering where to start in your organization, a quick lightweight risk rating methodology will also be proposed.&lt;br /&gt;
And in the end, you’ll see how we can all tie those together and get threat modeling to a point where it’s an efficient application security activity for communication. Doing this will prevent security reviews from missing important things even when chaos prevails during the realization of a project.&lt;br /&gt;
Modeling concepts will be demonstrated with an actual IoT device used as example.&lt;br /&gt;
Presentation will be done in english.&lt;br /&gt;
&lt;br /&gt;
Speaker Bio:&lt;br /&gt;
Jonathan Marcil is the former chapter leader of OWASP Montreal and is now Senior Application Security Engineer at Blizzard Entertainment in beautiful Orange County, California.&lt;br /&gt;
Jonathan has been involved with OWASP for many years and has been behind the Media Project which gathered and promoted AppSec conferences video content in the official OWASP YouTube channel. He was also part of NorthSec CTF event as a challenge designer specialized in Web and imaginative contraptions.&lt;br /&gt;
He is passionate about Application Security and enjoys architecture analysis, code review, threat modeling and debunking security tools. He holds a diploma in Software Engineering from ÉTS Montreal and has more than 15 years of experience in Information Technology and Security.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Merci à nos précieux commanditaires !&lt;br /&gt;
&lt;br /&gt;
== Security Testing: Unlocking the Benefits of a Hybrid Approach ==&lt;br /&gt;
[[Image:Security testing hybrid approach-r 3.jpg    ]]&lt;br /&gt;
[[Image:Security testing hybrid approach-r 4.jpg    ]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/hybrid-approach-to-security-testing]] [https://speakerdeck.com/owaspmontreal/hybrid-approach-to-security-testing See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 April 24th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
As part of their defensive efforts, businesses commonly commission cybersecurity assessments of their web applications; with the aim of identifying any weaknesses in the security controls and ensuring a continually strong cybersecurity posture of their systems.&lt;br /&gt;
&lt;br /&gt;
The classical approach of either secure code review (white box) or penetration testing (black box) assessment have proven to be effective in securing of web applications. The new trend, however, is moving towards the combination of these two approaches; expert consensus is rapidly recognizing the advantages of using a hybrid approach. When applied properly, a hybrid approach can build on the strengths of both white and black box testing, while compensating for their individual shortcomings.&lt;br /&gt;
&lt;br /&gt;
In this presentation, we will examine the details of secure code review and penetration testing, and run demos to contrast their respective strengths and weaknesses. We will also examine why a hybrid approach can produce more complete and relevant assessment results. To conclude, we will cover proven approaches, and practical techniques, on how you can start leveraging a hybrid approach to web application assessments today.&lt;br /&gt;
&lt;br /&gt;
Anne Gauthier is an application security analyst at GoSecure. Anne is also the president of the Montreal Chapter of OWASP – the industry standard for web application security. With a penetration testing background, she specializes in secure code reviews and in helping companies to improve their software development lifecycle (SDLC) according to industry best practices. Anne is CSSLP, GWAPT and GSSP-JAVA certified. She obtained a Software Engineering bachelor’s degree from Ecole de Technologie Supérieure in Montréal and is now pursuing a Master of Engineering (MEng) degree in Information Systems Security at Concordia University. She is the author of the Project 201 Security blog.&lt;br /&gt;
&lt;br /&gt;
Merci à nos précieux commanditaires !&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;HOW-TO&amp;quot; NIGHT ! Tout sur les CTFs (Capture The Flag) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Howto_ctf.jpg]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://docs.google.com/presentation/d/1zEsCcX-Nvq8Nz0k-B1zHejCDNT2oGZx8oUBgMbvvMM0/edit#slide=id.p ]] [https://docs.google.com/presentation/d/1zEsCcX-Nvq8Nz0k-B1zHejCDNT2oGZx8oUBgMbvvMM0/edit#slide=id.p See the slides / Voir la présentation (Laurent Desaulniers)]&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://docs.google.com/presentation/d/1c1P1d2mKe767j1Y0V9cK6De5cpnK4I7GI-ORiodbg1A/edit#slide=id.p ]] [https://docs.google.com/presentation/d/1c1P1d2mKe767j1Y0V9cK6De5cpnK4I7GI-ORiodbg1A/edit#slide=id.p See the slides / Voir la présentation (Charles Hamilton)]&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=http://obilodeau.github.io/slides/2017-04-04_how-not-to-suck-at-ctfs/ ]] [http://obilodeau.github.io/slides/2017-04-04_how-not-to-suck-at-ctfs/ See the slides / Voir la présentation (Olivier Bilodeau)]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 April 4th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Shopify&lt;br /&gt;
&lt;br /&gt;
Cette nouvelle soirée &amp;quot;How-To&amp;quot; Night d'OWASP Montréal vise à présenter les CTFs (une compétition Capture The Flag) et aider les équipes à démarrer et à continuer à évoluer dans leurs pratique de la cyber sécurité pratique. L'objectif est d'outiller les participants en leur fournissant des ressources techniques et des contacts afin de les aider à progresser.&lt;br /&gt;
&lt;br /&gt;
Les éléments discutés seront:&lt;br /&gt;
&lt;br /&gt;
- Composition optimale d’une équipe : Fonctionnement d’une équipe de CTF et les principaux rôles (chef d’équipe, cryptographie, application web, rétro ingénierie et les causes perdues).&lt;br /&gt;
&lt;br /&gt;
- Pourquoi faire des CTFs? Discussion sur les différents styles (jeopardy, attack/defense, etc.), quels sont les problèmes fréquemments rencontrés + plusieurs anecdotes intéressantes (et drôles).&lt;br /&gt;
&lt;br /&gt;
- Trucs de Mr. Unikoder : Le créateur du fameux site ringzer0team, soit un des plus gros sites pour apprendre la résolution de problèmes de CTF (https://ringzer0team.com/) Apprenez des trucs du meilleur, sur comment débuter et interpréter un challenge web, binaire et crypto avec des trucs réels du métier.&lt;br /&gt;
&lt;br /&gt;
Matériel requis :&lt;br /&gt;
&lt;br /&gt;
    Votre légendaire enthousiasme&lt;br /&gt;
&lt;br /&gt;
Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
&lt;br /&gt;
Places limitées. Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Shopify pour l'événement.&lt;br /&gt;
&lt;br /&gt;
Présentateurs :&lt;br /&gt;
&lt;br /&gt;
Charles Hamilton, Senior Consultant chez Mandiant, FireEye, Inc.&lt;br /&gt;
&lt;br /&gt;
Olivier Bilodeau, Cybersecurity Research Lead at GoSecure&lt;br /&gt;
&lt;br /&gt;
Laurent Desaulniers, Senior Security Solution Specialist at Bell Canada&lt;br /&gt;
&lt;br /&gt;
== NorthSec - Applied Security Event ==&lt;br /&gt;
[[Image:Nsec_2017_midi_conf.jpg]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/northsec-applied-security-event]] [https://speakerdeck.com/owaspmontreal/northsec-applied-security-event See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 April 4th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
NorthSec: La plus grande compétition et conférence en cyber sécurité au Canada&lt;br /&gt;
&lt;br /&gt;
NorthSec est un organisme sans but lucratif qui organise une conférence et une compétition de sécurité de type &amp;quot;Capture-The-Flag&amp;quot; (CTF) et des formations. Avec plus de 400 participants présents sur le site pour la compétition, c’est la plus grande compétition du genre au monde.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
La conférence, dans sa 3e année, attire des présentateurs internationaux avec du contenu technique exclusif. L’ajout des séances de travail (workshops) devrait plaire aux plus chevronnés des binaires.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Des formations de 3 jours sont offertes avant la conférence: &amp;quot;Advanced Web Application Security&amp;quot; par Philippe Arteau et &amp;quot;Malware and Memory Forensics&amp;quot; par Michael Ligh, co-auteur des livres &amp;quot;Malware Analyst Cookbook&amp;quot; et &amp;quot;The Art of Memory Forensics&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
NorthSec est situé au Marché Bonsecours dans le Vieux-Port de Montréal au printemps du 15 au 21 mai 2017.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
La présentation couvrira:&lt;br /&gt;
&lt;br /&gt;
- Le plan pour 2017&amp;lt;br /&amp;gt;&lt;br /&gt;
- Ce qui différencie NorthSec&amp;lt;br /&amp;gt;&lt;br /&gt;
- Comment équilibrer une compétition pour les débutants et les experts&amp;lt;br /&amp;gt;&lt;br /&gt;
- Comment bâtir une infrastructure basée sur les conteneurs qui gère 50 équipes dans quelques serveurs sans qu’ils ne se partagent de machines virtuelles&amp;lt;br /&amp;gt;&lt;br /&gt;
- Comment faire du pain au levain à grande échelle&amp;lt;br /&amp;gt;&lt;br /&gt;
- Présentation de quelques défis et solutions&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Les présentateurs:&lt;br /&gt;
&lt;br /&gt;
- Gabriel Tremblay, Président, Delve Labs&amp;lt;br /&amp;gt;&lt;br /&gt;
- Olivier Bilodeau, VP Formations, Co-fondateur MontréHack, GoSecure&amp;lt;br /&amp;gt;&lt;br /&gt;
- Pierre-David Oriol, VP Conférences, Delve Labs&amp;lt;br /&amp;gt;&lt;br /&gt;
- Benoit Guérette, VP Partenaires, Desjardins&amp;lt;br /&amp;gt;&lt;br /&gt;
- Laurent Desaulniers, Tisserand de drapeaux, Bell Canada&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Merci à nos précieux commanditaires !&lt;br /&gt;
&lt;br /&gt;
== Sécurité des applications : Les fondements ==&lt;br /&gt;
[[Image:Tanya.jpeg]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/securite-des-applications-les-fondements]] [https://speakerdeck.com/owaspmontreal/securite-des-applications-les-fondements See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 March 20th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
OWASP Montréal est fier d’accueillir au Midi Conférence du mois de mars, Mme Tanya Janca, Co-Leader du chapitre OWASP Ottawa et spécialiste de la sécurité applicative au sein du Gouvernement fédéral.&lt;br /&gt;
&lt;br /&gt;
La conférence « Les fondements de la sécurité des applications » sera présentée en anglais.&lt;br /&gt;
&lt;br /&gt;
Session Description : Everyone has heard about the problem; everyone is “getting hacked”. But what is the answer? From scanning your code with a vulnerability scanner to red teaming exercises, developer education programs and bug bounties, this talk will take the audience through all the possibilities of an extensive application security program, with a detailed explanation of each part.&lt;br /&gt;
&lt;br /&gt;
Bio : Tanya Janca is an application security evangelist, a web application penetration tester and vulnerability assessor, a secure code reviewer, an ethical hacker, the Co-Leader of the OWASP Ottawa chapter, and has been developing software since the late 90’s. She has worn many hats and done many things, including; Custom Apps, Ethical Hacking, COTS, Incident Response, Enterprise Architect, Project and People Management, and even Tech Support. She is currently helping the Government of Canada secure their web applications.&lt;br /&gt;
&lt;br /&gt;
Merci à notre commanditaire principal de cet événement: Ubitrak!&lt;br /&gt;
&lt;br /&gt;
== WORKSHOP ! Server Side Template Injection (SSTI) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-okiok-SSTI-r.jpg | WORKSHOP ! Server Side Template Injection (SSTI) ]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/workshop-server-side-template-injection-ssti]] [https://speakerdeck.com/owaspmontreal/workshop-server-side-template-injection-ssti See the slides / Voir la présentation]&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 22 Février 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Shopify Montréal&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
OWASP Montreal vous invite à un atelier portant sur la sécurité des applications web supportant les moteurs de template (Template Engine). Le principe de séparation entre la présentation du site (code HTML statique) et de son contenu dynamique facilite la création de documents HTML et la capacité à modifier l'apparence du site sans mélanger le traitement et le rendu de la page. L'utilisation de moteurs de template amène de nouveaux enjeux de sécurité. Les vulnérabilités de type Server Side Template Injection (SSTI) sont exploitables à travers les données (non fiables) fournies par l'utilisateur et conduisent à l'exécution de code arbitraire (RCE) sur le serveur hébergeant l'application web.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ce workshop a pour but d'introduire cette classe de vulnérabilité à travers différents cas d'implémentation (php, java, python).&lt;br /&gt;
Nous verrons comment identifier et exploiter ces vulnérabilités et de quelle manière un attaquant peut &lt;br /&gt;
s'y prendre pour exécuter du code arbitraire sur le serveur afin d'en prendre le contrôle.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Niveau : Intermédiaire&amp;lt;br /&amp;gt;&lt;br /&gt;
Matériel requis :&lt;br /&gt;
* Votre portable&lt;br /&gt;
* Votre distribution Linux/Unix de votre choix&lt;br /&gt;
* Votre proxy Web de votre choix&lt;br /&gt;
&lt;br /&gt;
Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
Places limitées. Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Shopify pour l'événement.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Présentateur : Gérôme Dieu&amp;lt;br /&amp;gt;&lt;br /&gt;
Gérôme Dieu cumule plus de 7 années d’expérience en technologies de l’information et en sécurité. &lt;br /&gt;
Il œuvre à titre de conseiller senior en sécurité de l’information au sein de la firme OKIOK. Ces dernières années, il a acquis une expertise dans le domaine de la sécurité des applications web aussi bien d'un point de vue offensif que défensif. En plus de réaliser des tests d’intrusion pour des clients internationaux, Gérôme s’implique dans la recherche et développement afin de maintenir à la fine pointe de la technologie les tests d'intrusion et d'analyse de vulnérabilités. &amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Merci à Shopify d'héberger l'événement !&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Shopify Logo-r.png| Shopify | link=https://www.shopify.com/]]&lt;br /&gt;
== Le courriel en 2017 – risques et menaces pour tous ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Zero spam 2.jpg|Le courriel en 2017 – risques et menaces pour tous]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://www.youtube.com/watch?v=HX2vcijcCWw ]] [https://www.youtube.com/watch?v=HX2vcijcCWw Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 Le 23 janvier 2017 à midi&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
Monsieur Poellhuber nous brossera un tableau du phénomène grandissant du rançongiciels et de l'hameçonnage, personnification.&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
- Par les années passées, la menace courriel se résumait principalement en un fort volume de contenu simplement indésirable. Aujourd’hui la menace a passablement évolué. Quels sont les véritables risques actuels associés au courriel ? Rançongiciels, hameçonnage, personnification. Cette conférence présentera les nouveaux défis de sécurité pour les organisations qui doivent composer avec des attaques de plus en plus sophistiquées et de plus en plus ciblées tout en protégeant leur réputation. Des exemples biens réels, drôles et moins drôles seront disséqués pour bien dessiner l’ampleur de l’enjeu.&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
M. David Poellhuber, Chef de l’exploitation, ZEROSPAM Sécurité Inc&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note biographique :&amp;lt;br /&amp;gt;&lt;br /&gt;
Monsieur David Poellhuber oeuvre dans l’industrie de la sécurité informatique depuis quinze ans. Il a été conférencier dans plusieurs forums de sécurité au Canada et est maintenant reconnu comme une autorité en matière de sécurité du courriel. Il a fondé ZEROSPAM Sécurité en 2003, le premier service Québécois externalisé de sécurité du courriel infonuagique qui se distingue par sa convivialité, son efficacité et ses technologies de détection proactives.&amp;lt;br /&amp;gt;&lt;br /&gt;
Audience :  Généralistes et spécialistes de la sécurité des TI &lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Merci à Ubitrack pour le repas et à Desjardins d'héberger l'événement!&lt;br /&gt;
&lt;br /&gt;
[[Image:Ubitrak-r2.jpg|Ubitrak|link=http://www.ubitrak.com/fr/]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&lt;br /&gt;
== Effective XSS Mitigation ==&lt;br /&gt;
&lt;br /&gt;
[[Image:XSS mitigation.jpg | Effective XSS Mitigation ]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=http://slides.com/olivierarteau/xss-mitigation ]] [http://slides.com/olivierarteau/xss-mitigation See the slides / Voir la présentation]&lt;br /&gt;
&lt;br /&gt;
WHEN &lt;br /&gt;
 18 Janvier 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Google Montréal&lt;br /&gt;
&lt;br /&gt;
FRANÇAIS/ENGLISH&amp;lt;br /&amp;gt;&lt;br /&gt;
La mitigation de XSS a été un sujet important au cours des dernières années. Les navigateurs ont implémenté, en autre, deux fonctionnalités pour mitiger leur impact : l'entête &amp;quot;XSS-Protection&amp;quot; et l'entête &amp;quot;Content-Security-Policy&amp;quot;. Par contre, obtenir une mitigation contre les XSS efficace est souvent plus complexe que l'on pense. Cet atelier couvrira les deux entêtes. Il expliquera comme il est possible de contourner ces protections et ce qu'il est possible de faire pour se protéger. Des exercices de type &amp;quot;offensif&amp;quot; et &amp;quot;défensif&amp;quot; seront proposés.&lt;br /&gt;
Mitigation for XSS as been an important topic in the last few years. Browsers have implemented two main functionalities to help mitigate the impact of XSS : the &amp;quot;XSS-Protection&amp;quot; header and the &amp;quot;Content-Security-Policy&amp;quot; header. But, getting an effective XSS mitigation of those headers is trickier than it may seem. This workshop will cover both of those headers. It will explain how bypass of those protection work and what you can do about it. It will have both &amp;quot;defensive&amp;quot; exercises and &amp;quot;offensive&amp;quot; exercises.&lt;br /&gt;
Niveau : débutant/intermédiaire&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Matériel requis :&lt;br /&gt;
&lt;br /&gt;
Votre portable&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
&lt;br /&gt;
Places limitées. Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Google pour l'événement.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Présentateur : Olivier Arteau&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Olivier Arteau est un professionnel en sécurité informatique depuis quelques années et fait partie de l’équipe de test d’intrusion de Desjardins. Il est aussi un amateur de CTF qui a gagné à plusieurs reprises le CTF du NorthSec avec l’équipe HackToute et participe fréquemment à d’autres CTF avec l’équipe DCIETS.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Merci à Google d'héberger l'événement! &lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-zap-4-r.jpg | Google | link=https://www.google.ca/ ]]&lt;br /&gt;
&lt;br /&gt;
== WORKSHOP ! Top 10 OWASP - Unleash the threats ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-top10.jpg | WORKSHOP! Top 10 OWASP - Unleash the threats ]]&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 30 novembre 2016 de 17h30 à 20h30&lt;br /&gt;
WHERE&lt;br /&gt;
 Immunio @ WeWork&lt;br /&gt;
&lt;br /&gt;
De nos jours, la sécurité applicative est essentielle dans l’écosystème des entreprises de toutes tailles. Les vecteurs d’attaques sont multiples, les vulnérabilités de sécurité dans les applications peuvent être désastreuses et les impacts d’un « Hack » peuvent être irréversibles pour l’entreprise; vols de données sensibles, perte de réputation, perte de $$$$$, etc.&lt;br /&gt;
L’objectif du workshop est de comprendre la base sur les vulnérabilités de sécurité dans les applications et les techniques d’exploitation utilisées par les pirates informatiques, en plus de connaître les bonnes pratiques de développement en matière de sécurité applicative. &lt;br /&gt;
Avec l'aide de WebGoat, Damn Vulnerable Web Application et de Kali Linux, vous pourrez participer&lt;br /&gt;
à l'exploitation des applications et découvrir les techniques utilisées par les attaquants.&lt;br /&gt;
&lt;br /&gt;
Niveau : débutant&lt;br /&gt;
&lt;br /&gt;
Matériel requis :&lt;br /&gt;
 Votre portable&lt;br /&gt;
 Kali Linux&lt;br /&gt;
 La VM du workshop, envoyée aux participants&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
&lt;br /&gt;
Places très limitées (nb = 10). Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Immunio &amp;amp; WeWork pour l'événement.&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Présentateur : Christian Leclerc&lt;br /&gt;
&lt;br /&gt;
Christian est spécialisé en conception et développement de solutions web sécuritaires. Tout au long de sa carrière, il a acquis une vaste expertise sur plusieurs types de technologies et méthodologies, intégré la sécurité dans le cycle de développement d’applications, effectué des revues de code sécurité, déployé des outils d’analyse des vulnérabilités et mis en place des systèmes d’authentification. De plus, il a participé à la conception et au développement de solutions sécuritaires de pointe comme la signature électronique à l’aide d’une infrastructure à clé publique (PKI), les authentifications fortes, le Registre des consentements au don d'organes et de tissus (RDOQ.org) et la migration de plusieurs applications web vers un environnement SOA (Service Oriented Architecture). &lt;br /&gt;
&amp;lt;br&amp;gt;Merci à Immunio &amp;amp; WeWork d'héberger l'événement!&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:Immunio-horizontal-r.png|Immunio|link=https://www.immun.io/]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[Image:Wework-r.jpg|WeWork|link=https://www.wework.com/]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Histoire d'un Hack ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Histoire-dun-hack-r.jpg | Histoire d'un Hack ]]&lt;br /&gt;
&lt;br /&gt;
WHEN &lt;br /&gt;
 21 novembre 2016 à midi&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
Pour son activité du mois de novembre, OWASP Montréal propose à la communauté de la sécurité des TI et aux gestionnaires de faire l'autopsie d'une attaque de haute voltige sur un site web et des outils mis à la disposition par OWASP.&lt;br /&gt;
 &lt;br /&gt;
Bernard Bolduc cumule plus de 17 années d’expérience en technologies de l’information et en sécurité. Il œuvre à titre de conseiller senior en sécurité de l’information au niveau d’entreprise de classe nationale et internationale.&lt;br /&gt;
 &lt;br /&gt;
Bernard se spécialise en sécurité Unix, applicative et en gestion de la sécurité des télécommunications. Il combine ces expertises techniques afin d’obtenir des résultats probants et efficaces pour ces clients des secteurs bancaire, télécommunication et multimédias, de l’énergie ou des services publiques. Tout au long de sa carrière, Bernard s’est toujours maintenu à jour sur les dernières menaces de sécurité technologique et commerciale en assistant à des formations spécialisées et d'échanger avec un grand nombre de partenaires dans l'industrie de la sécurité.&lt;br /&gt;
 &lt;br /&gt;
La conférence débute à midi.&lt;br /&gt;
 &lt;br /&gt;
La conférence vous donne droit à 1 CPE et pour les 50 premières personnes, un lunch gratuit.&lt;br /&gt;
 &lt;br /&gt;
Merci à Desjardins d'héberger l'événement!&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Workshop ! Création de votre première extension OWASP ZAP (ou BurpSuite) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-zap-mix.jpg | Workshop ! Création de votre première extension OWASP ZAP (ou BurpSuite)]]&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 11 novembre 2016 de 18h à 21h&lt;br /&gt;
&lt;br /&gt;
WHERE &lt;br /&gt;
 Google Montréal&lt;br /&gt;
&lt;br /&gt;
OWASP Zed Attack Proxy (ZAP) est un scanneur de vulnérabilités et un outil de débogage HTTP. Ce type d'outil est crucial dans un test d'intrusion web et contient un lot intéressant de fonctionnalités. Cela dit, il est possible d'étendre les fonctionnalités. Plusieurs types d'extension sont possibles : vue alternative pour les requêtes ou les réponses, scanneur passif des réponses, scanneur actif produisant des requêtes, etc.&lt;br /&gt;
&lt;br /&gt;
Plusieurs options seront données, par exemple :&lt;br /&gt;
&lt;br /&gt;
 Détection automatique de flag dans les sources&lt;br /&gt;
 Scanneur actif asynchrone DNS&lt;br /&gt;
 Ou votre propre idée&lt;br /&gt;
&lt;br /&gt;
Pour chacune des suggestions, des squelettes de code seront fournis pour les APIs de ZAP. Pour les utilisateurs de BurpSuite, des directives analogues seront également données.&lt;br /&gt;
&lt;br /&gt;
Niveau : débutant / intermédiaire&lt;br /&gt;
&lt;br /&gt;
Matériel requis&lt;br /&gt;
&lt;br /&gt;
 Votre portable&lt;br /&gt;
 [https://www.owasp.org/index.php/OWASP_Zed_Attack_Proxy_Project OWASP ZAP (gratuit)]&lt;br /&gt;
 [https://portswigger.net/burp/download.html BurpSuite]&lt;br /&gt;
 Éditeur de code pour Java, Python ou Ruby&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Présentateur : Philippe Arteau&lt;br /&gt;
&lt;br /&gt;
Philippe est un chercheur en cybersécurité chez GoSecure. Il est l'auteur de l'outil d'analyse statique Java &amp;quot;Find Security Bugs&amp;quot;. Il a découvert des vulnérabilités importantes dans les logiciels populaires tels que Google Chrome, Dropbox, Paypal, RunKeeper et Jira. Il a présenté dans différentes conférences incluant Black Hat USA, Black Hat Europe, ATL Sec Con, NorthSec, Hackfest (QC) et JavaOne. Il a développé de nombreux plug-ins pour les outils de proxy BurpSuite et OWASP ZAP (Retire.js, Reissue Request Script, PDF preview et Image Metadata). Il a fait également des contributions à d'autres plug-ins comme J2eeScan.&lt;br /&gt;
&lt;br /&gt;
Merci à Google d'héberger l'événement! &lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-zap-4-r.jpg | Google | link=https://www.google.ca/ ]]&lt;br /&gt;
&lt;br /&gt;
==Logiciel de rançon (Ransomware) s'attaque au domaine de la santé==&lt;br /&gt;
&lt;br /&gt;
[[Image:HackingHealth-2.jpg | Logiciel de rançon (Ransomware) s'attaque au domaine de la santé ]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/ransomware-and-healthcare-hacking-health ]] [https://speakerdeck.com/owaspmontreal/ransomware-and-healthcare-hacking-health See the slides / Voir la présentation]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;(Conférence en anglais)&lt;br /&gt;
Pour le lancement de la saison 2016 - 2017, OWASP Montréal propose à la communauté de la sécurité des TI et aux gestionnaires de la santé une incursion dans le monde du logiciel malveillant ciblant le domaine de la santé.&amp;lt;br /&amp;gt;&lt;br /&gt;
Cette conférence s'intége dans le Coopérathon co-organisé par le Mouvement Desjardins et Hacking Health.&amp;lt;/b&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Le domaine de la santé serait devenu une cible privilégiée des campagnes de ransomware parce que l'industrie a souvent payé la rançon demandée pour récupérer les données confidentielles et vitales de ses clients. Monsieur Ed Gershfang nous brossera un portrait du phénomène et des meilleures pratiques à mettre en place en matière de sécurité applicative.&lt;br /&gt;
Ed Gershfang possède une expérience solide dans l'infrastructure informatique et plus de 6 ans d'expérience dans les domaines de la sécurité de l'information, de la vulnérabilité, de la gouvernance et de la gestion des risques. Il était directeur de la sécurité pour la société PeriGen, un chef de file de développement de logiciels médicaux en Israël.&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== La sécurité applicative vue par un pentesteur ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Juin2016-OWASPMtl.jpg | OWASP Montréal reçoit Mario Contestabile, Pentester de renom ]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
From Left to Right : Isabelle Lusseyran, Head of Development at Hacking Health. Eduard Gershfang Information Security Analyst at WSP | Parsons Brinckerhoff.&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/owasp-montreal-recoit-mario-contestabile ]] [https://speakerdeck.com/owaspmontreal/owasp-montreal-recoit-mario-contestabile See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Pour clore la saison 2015 – 2016, OWASP Montréal est fier d’accueillir au Midi Conférence un des architectes de renom du développement applicatif au Canada, monsieur Mario Contestabile.&lt;br /&gt;
En tant qu’auteur de plusieurs centaines de tests d’intrusion, il connait tous les rouages de ce qu’est véritablement une application Web «sécurisée». Mais avez-vous déjà remarqué que les rapports de tests d’intrusion mentionnent rarement, voir jamais : «Votre site est très difficile à pirater. Félicitations !» ?&lt;br /&gt;
Et qu’en est-il de ces rapports qui contiennent des dizaines de soi-disant vulnérabilités ? Est-ce que cela signifie d’emblée que l’application devrait être mise hors ligne ?  &lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Lors de cette conférence, nous examinerons des rapports concrets (ambigus) de vulnérabilités et nous les analyserons afin de mieux comprendre si elles représentent une véritable menace, ou si elles ne servent qu’à «remplir» les rapports.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Avec son expertise en protection et en attaque d’applications Web, il abordera les points suivants :&lt;br /&gt;
Comment pouvez-vous sélectionner des systèmes de façon à mieux exécuter des protections de sécurité ?&lt;br /&gt;
Éviter certains pièges dans votre application Web qui rendent les attaques plus faciles et la protection plus difficile.&lt;br /&gt;
De nos jours, que peuvent faire les développeurs à l’intérieur de systèmes communs, qui puisse me rendre la tâche plus ardue en tant que « hacker »?&lt;br /&gt;
Pouvons-nous exiger de meilleurs rapports de la part des firmes de sécurité?&lt;br /&gt;
À quoi devrions-nous nous attendre de la part d’un « pentesters »?&lt;br /&gt;
Comment pouvons-nous savoir si le « pentester » a vérifié les failles de l’application et qu’il n’a pas simplement utilisé un scanneur?&lt;br /&gt;
Et enfin, comment pouvons-nous aider les « ethical hackers » à obtenir un meilleur rendement lors d’un test d’intrusion?&lt;br /&gt;
Il expliquera le sujet en détails, et ensemble, nous verrons de quelles façons les développeurs d’applications peuvent exploiter le savoir-faire des « pentesters », et comment nous pouvons faire en sorte qu’une application Web soit protégée.&lt;br /&gt;
Biographie :&lt;br /&gt;
Mario Contestabile est reconnu comme l’un des experts en sécurité les plus réputés au Canada. Son expertise, construire et protéger votre plateforme applicative. Ancien développeur C++ et Java, Mario partage ses nombreuses connaissances en « ethical hacking » et en développement de codes sécurisé.  &lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Tuesday, 14 June 2016 from 12:00 PM to 1:00 PM (EDT) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Comment protéger les applications mobiles? ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Avril2016-OWASPMtl.png | Comment protéger les applications mobiles? ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/comment-proteger-les-applications-mobiles ]] [https://speakerdeck.com/owaspmontreal/comment-proteger-les-applications-mobiles See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Dans le cadre des Midis Conférence à l'Espace Desjardins, l'équipe OWASP Montréal vous invite à assister à une présentation sur les vulnérabilités les plus communes associées aux appareils mobiles. &lt;br /&gt;
Marie-Claire Willig détaillera entre autres comment stocker de façon sécuritaire les données de l’application mobile ainsi que protéger l’application contre des attaques externes. Des outils simples vous seront dévoilés pour détecter ces vulnérabilités.&lt;br /&gt;
Marie-Claire est une professionnelle d'expérience en sécurité appliquée.&lt;br /&gt;
Une grande partie de son intérêt professionnel réside actuellement dans un domaine assez niche, soit la revue de code sécuritaire, un fondement important de tout cycle de développement sécuritaire en entreprise.&lt;br /&gt;
Au sein de l'équipe de sécurité technologique Desjardins, elle est, en autre, responsable de former les développeurs (Java et .NET principalement) afin de les sensibiliser aux meilleures pratiques de développement sécuritaire.&lt;br /&gt;
Également, elle est une professionnelle des tests d'intrusion sur les applications web, les applications mobiles ainsi que l'infrastructure réseau.&lt;br /&gt;
Bienvenue à tous&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 20 April 2016 from 12:15 PM to 1:00 PM (EDT) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== NorthSec, Le plus gros événement de cybersécurité appliquée au Canada ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Mars2016-OWASPMtl.jpg | NorthSec, Le plus gros événement de cybersécurité appliquée au Canada ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/YQtvltQYs7Y]] [https://youtu.be/YQtvltQYs7Y Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
OWASP Montréal est fier d’inviter au Midi Conférence de mars, NorthSec est le plus gros événement de sécurité appliquée au Canada qui comprend deux jours de formation, deux jours de conférences ainsi qu’une compétition du genre « capture the flag » (CTF) de trois jours.&lt;br /&gt;
Gabriel Tremblay, Benoit Guerette, Pierre-David Oriol et Laurent Desaulniers viendront vous parler de cet organisme sans but lucratif dynamique qui est géré par une équipe de bénévoles passionnés qui donnent à chaque année leur énergie et leur temps pour soutenir la communauté de la sécurité de l’information.&lt;br /&gt;
Le volet compétition, l’épreuve maîtresse, est présentée sous forme d’un scénario qui rend cohérent une centaine de défis techniques. Les équipes de participants attaquent l’infrastructure de compétition pour soutirer des drapeaux (flags) à travers un ensemble de vulnérabilités présentes comme de l’injection SQL, des XSS ou encore l’exploitation d’exécutables sur systèmes embarqués. Quelques exemples de défis des années passées seront également présentés.&lt;br /&gt;
Le volet conférence, qui est à sa 2ème année, met de l’avant plusieurs présentations techniques touchant la sécurité applicative mais aussi l’éthique et leurs impacts sociaux. Certaines présentations confirmées seront dévoilés.&lt;br /&gt;
Le tout nouveau volet formation propose deux formations en sécurité applicative de calibre international (anglais) : “Advanced Web Security Testing with Burp Pro” et “Modern Object-Oriented Malware Reverse Engineering”.&lt;br /&gt;
Venez aussi, découvrir comment l'équipe est partie d'une idée en 2012 pour se rendre à un évènement d'envergure, qui rassemblera plus de 600 professionnels, étudiants et autres passionnés de sécurité appliquée lors de la 4ème édition qui aura lieu du 17 au 22 mai 2016 au Marché Bonsecours.&lt;br /&gt;
Finalement, la mission, la vision ainsi que les activités sociales de la semaine de NorthSec sont aussi au menu de cette présentation qui sera suivie d’une période de questions.&lt;br /&gt;
&lt;br /&gt;
Gabriel Tremblay, Delve Labs, Président&lt;br /&gt;
Benoit Guerette, Desjardins, VP Finances&lt;br /&gt;
&lt;br /&gt;
Pierre-David Oriol, Delve Labs, VP Conférence&lt;br /&gt;
Laurent Desaulniers, Bell Canada, Artisant de drapeaux&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 23 March 2016 from 12:00 PM to 1:00 PM (EDT) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== La sécurité applicative et l'hameçonnage - February 24th ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Fevrier2016-OWASPMtl.jpg | La sécurité applicative et l'hameçonnage ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/1RYlOiIENjQ]] [https://youtu.be/1RYlOiIENjQ Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
De nos jours, une des méthodes les plus efficaces pour contourner les périmètres de sécurité externes est l'hameçonnage conjointement avec l’abus de certaines technologies Web.&lt;br /&gt;
&lt;br /&gt;
Dans le cadre ses activités, OWASP Montréal est heureux d'inviter d'accueillir, l'équipe OKIOK qui présentera les impacts liés à ce type d'attaque, tel que vu et expérimenté en entreprise ainsi que les plans d'action pour traiter ces risques. La présentation abordera aussi bien la sécurité web et applicatives, des systèmes informatiques ainsi que de la sécurité physique de centres de données. &lt;br /&gt;
&lt;br /&gt;
    Capture d'informations sensibles par imitations de portails Web ;&lt;br /&gt;
    Authentification Web par 2-facteurs ;&lt;br /&gt;
    Injection SMTP dans des formulaires Web ;&lt;br /&gt;
    Attaque de type “Drive-by-download”;&lt;br /&gt;
    Prise de contrôle à distance à travers des flux HTTP;&lt;br /&gt;
    Attaque de CSRF à partir de courriels ;&lt;br /&gt;
    Attaque d'hameçonnage basée sur des achats par Internet (ex : PayPal).&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
When&lt;br /&gt;
 Wednesday, 24 February 2016 from 12:00 PM to 1:15 PM (EST) - Add to Calendar &lt;br /&gt;
Where&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest Montreal, Quebec CA&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Internet of {Things, Threats} - January 20th ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Janvier2016-OWASPMtl-R.png | Internet of {Things, Threats} ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=http://gosecure.github.io/presentations/2016-01-20_owasp-mtl/internet-of-threats.html ]] [http://gosecure.github.io/presentations/2016-01-20_owasp-mtl/internet-of-threats.html See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
De plus en plus de périphériques se retrouvent connectés sur Internet. Sous la bannière &amp;quot;Internet of Things&amp;quot; (IoT) ces équipements, que ce soit une pompe à insuline ou un système de caméra de sécurité, tournent généralement sous un système GNU/Linux embarqué d'architecture MIPS ou ARM. La difficulté de mettre à jour ces équipements ainsi que le peu d'effort mis dans la sécurité des systèmes ou la sécurité applicative en font des cibles de choix. Ces derniers mois, nous avons analysé plusieurs logiciels malveillants ciblant ces architectures. Que ce soit par l'exploitation d'une vulnérabilité (Shellshock) ou encore un défaut de configuration, ces systèmes exposés sur Internet peuvent être compromis.&lt;br /&gt;
&lt;br /&gt;
Notre présentation couvrira quelques une de ces analyses:&lt;br /&gt;
&lt;br /&gt;
* Linux/Moose, un malware se propageant automatiquement qui fraude les réseaux sociaux (par exemple Facebook, Twitter et YouTube)&lt;br /&gt;
* LizardSquad et acteurs étrangers qui utilisent des systèmes embarqués compromis pour réaliser des dénis de service distribué (DDoS) &lt;br /&gt;
* Win32/RBrute est un logiciel malveillant qui tente de changer les paramètres de routeurs dans le but de faire du &amp;quot;DNS poisoning&amp;quot;. Il a été distribué par le populaire botnet Sality.&lt;br /&gt;
* Un kit d'exploits qui utilise seulement le navigateur de leur victime avec le même objectif, c'est-à-dire faire du &amp;quot;DNS poisoning&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Enfin, des conseils seront proposés à l'audience pour l'aider à se protéger de ces menaces.&lt;br /&gt;
&lt;br /&gt;
'''Thomas Dupuy''' (twitter: @nyx__o)&lt;br /&gt;
&lt;br /&gt;
Thomas est chercheur en logiciel malveillant chez ESET Canada Recherche. Bon vivant, Thomas déjeune en &amp;quot;reversant&amp;quot; des binaires, contribue à quelques projets open source durant le diner (yara, yara rules, pefile, APTnotes) et la nuit participe à des &amp;quot;Hacking Games&amp;quot; (Capture The Flag). Curieux de nature Thomas analyse des malware aux architectures &amp;quot;exotiques&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Olivier Bilodeau''' (twitter: @obilodeau)&lt;br /&gt;
&lt;br /&gt;
Olivier Bilodeau is the head of Cybersecurity Research at GoSecure a consultancy firm specializing in cybersecurity services for the public and private sector. With more than 10 years of infosec experience, Olivier worked on Unix servers at Bell Canada, managed a portion of Air Canada's network, wrote open source network access control software at Inverse and worked as a Malware Researcher at ESET. He likes to reverse engineer everything that crosses his path, participate in information security capture-the-flag competitions, hack open source code and brew beer. He has spoken at various conferences (Defcon, Botconf, VirusBulletin, Derbycon, ...), used to lecture on information security at ETS University in Montreal, drives the NorthSec Hacker Jeopardy and co-organizes the MontreHack capture-the-flag training initiative. His primary research interests include reverse-engineering tools, Linux and/or embedded malware and honeypots.&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Survivre aux attaques DDOS applicatives ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Decembre2015-OWASPMtl.jpg | Survivre aux attaques DDOS applicatives ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Survivre aux attaques DDOS (Distributed Denial-Of-Service) applicatives.&lt;br /&gt;
Cette conférence s'adresse aux professionnels et gestionnaires des TI.&lt;br /&gt;
Conférencier : Christian Shink, ing., CSSLP, ingénieur système chez Radware, manufacturier spécialisé dans la prévention des attaques DDOS. Il fut également consultant en sécurité applicative chez In Fidem.&lt;br /&gt;
Objectifs de la conférence:&lt;br /&gt;
Présenter les tendances actuelles en matière d'attaques DDOS applicatives.&lt;br /&gt;
Renseigner les participants sur les techniques et stratégies pour contrer ces attaques illustrées à partir de cas vécus.&lt;br /&gt;
Démystifier certains mythes en ce qui concernent les façons efficaces de protéger les applications contre des attaques DDOS.&lt;br /&gt;
Date : 16 décembre 2015&lt;br /&gt;
Heure : 11h45&lt;br /&gt;
La conférence débute à 12h00 et se termine à 12:55.&lt;br /&gt;
Un lunch sera servi.&lt;br /&gt;
Réservez maintenant!&lt;br /&gt;
1 CPE&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 16 December 2015 from 11:45 AM to 1:00 PM (EST) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec &lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Sécurité des applications - Systèmes de contrôles industriels ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Novembre2015-OWASPMtl-R.png | Sécurité des applications - Systèmes de contrôles industriels ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/0eAZpyiQQ9A]] [https://youtu.be/0eAZpyiQQ9A Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&lt;br /&gt;
La sécurité des applications et les systèmes de contrôles industriels.&lt;br /&gt;
Cette conférence s'adresse aux professionnels et gestionnaires des TI desinfrastructures critiques qui exploitent ou gèrent des systèmes de contrôles industriels(SCI) et SCADA (surveillance et d'acquisition de données).&amp;lt;br /&amp;gt;&lt;br /&gt;
Conférenciers : Robert Nastas, CSSA. Gestionnaire de projet et Youssef Jad, Architecte Cyber sécurité, ICS-CERT&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Objectifs de la conférence:&lt;br /&gt;
* Démystifier le domaine d'affaires.&lt;br /&gt;
* Renseigner les participants sur les bonnes pratiques de sécurité desapplications liées au secteur industriel.&lt;br /&gt;
* Proposer aux professionnels et gestionnaires des TI responsables dessystèmes SCADA et SCI des pistes de solutions aux enjeux de sécurité.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
L'équipe OWASP Montréal vous remercie d'avoir assisté en grand nombre à la conférence, 'La sécurité des applications et les systèmes de contrôles industriels'.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 18 November 2015 from 11:45 AM to 1:00 PM (EST) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Les préoccupations actuelles de hauts dirigeants en matière de cybersécurité et de sécurité applicative ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Septembre2015-OWASPMtl.jpg | Les préoccupations actuelles de hauts dirigeants en matière de cybersécurité et de sécurité applicative ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/un-regard-sur-la-securite-de-linformation-en-2015-par-eric-hebert ]] [https://speakerdeck.com/owaspmontreal/un-regard-sur-la-securite-de-linformation-en-2015-par-eric-hebert See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Pour le lancement des activités corporatives de la saison 2015 - 2016, le 8 septembre prochain à 12:00, l'équipe OWASP Montréal convie les gestionnaires et artisants de la sécurité des TIC à venir entendre monsieur Éric Hébert qui nous présentera son interprétation des préoccupations actuelles de hauts dirigeants en matière de cybersécurité et de sécurité applicative. L'événement se tiendra au complexe Desjardins à la salle &amp;quot;Espace Desjardins&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
''' ÉRIC G. HÉBERT, CISM, CISSP ''' &amp;lt;br /&amp;gt;&lt;br /&gt;
Après plus de 20 ans passés dans le domaine de la sécurité des technologies de l’information, Éric se spécialise dans la mise en œuvre et la gestion d'équipes performantes, capables de relever les plus hauts défis de la cybersécurité moderne.&amp;lt;br /&amp;gt;&lt;br /&gt;
Capable de dialoguer avec les hauts dirigeants, il sait traduire et vulgariser les enjeux techniques complexes tout en respectant la nature et l'appétence au risque de ses clients. Dynamique et pourvu d'une expérience couvrant presque toutes les sphères de la SI, il fonce dans le respect de la culture établie tout en implantant des solutions pragmatiques et efficaces.&amp;lt;br /&amp;gt;&lt;br /&gt;
Depuis plus de 10 ans, il gravite principalement autour des entreprises du domaine financier (BNC, Desjardins, Fonds de solidarité FTQ...) et les accompagne dans la mise en place de solutions efficaces tenant compte à la fois des risques et des budgets.&lt;br /&gt;
En plus d’avoir fondé de nombreuses associations telles que le RéseauSécurIT et le RPSI, il maintient une présence régulière auprès des milieux associatifs professionnels et partage régulièrement ses expériences lors de conférences et d'entrevues avec divers médias.&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Events / Évènements =&lt;br /&gt;
&lt;br /&gt;
== Owasp Montreal at [https://nsec.io/ NorthSec 2017] ==&lt;br /&gt;
&lt;br /&gt;
[[Image:NorthSec2017-5.jpg]]&lt;br /&gt;
[[Image:NorthSec2017-6.jpg]]&lt;br /&gt;
&lt;br /&gt;
From Left to Right: Anne Gauthier, OWASP Montréal Chapter Leader (President) and Application Security Analyst at GoSecure, Hugo Genesse, OWASP Montréal Chapter Leader and Research Intern at PNF Software, Julien, OWASP Montréal Chapter Leader&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal at [https://2017.appsec.eu/ AppSec] ==&lt;br /&gt;
&lt;br /&gt;
[[Image:OWASPAppSecBelfast2017-7.jpg]]&lt;br /&gt;
&lt;br /&gt;
OWASP Montreal and Ottawa Chapter Leaders at OWASP AppSec Belfast, UK #WomenInAppSec&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal at [https://hackfest.ca/ HackFest 2016] ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hackfest2016-r.jpg| HackFest |link=https://hackfest.ca/]]&lt;br /&gt;
&lt;br /&gt;
From left to right: Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Louis Nadeau, OWASP Québec Chapter Leader and Manager, Product Security at Bentley Systems and Patrick Leclerc, OWASP Québec Chapter Leader and Information Security Advisor at La Capitale.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal at OWASP [https://2016.appsecusa.org/ AppSec USA 2016, Washington] ==&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:OWASPMtl-AppSecUSA2016-Washington.jpg | OWASP Montreal at AppSec USA 2016, Washington]] &lt;br /&gt;
&lt;br /&gt;
​From left to right: Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Marie-Claire Willig, Application Security Analyst at Desjardins, Speaker and Cofounder of the Roslyn Security Guard tool which will be presented at Blackhat 2016, Alexandre Hamelin President at Synlabs Consulting Inc., Jonathan Marcil, Application Security Engineer at Blizzard Entertainment and former OWASP Montreal Chapter Leader. Philippe Arteau, Cybersecurity Researcher at GoSecure and designer of [https://find-sec-bugs.github.io/ Find Security Bugs] and Roslyn Security Guard tool which will be presented at Blackhat 2016.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://www.gosec.net GoSec] 2016 ==&lt;br /&gt;
&lt;br /&gt;
[[Image:OWASP-GoSec2016-1r.jpg|OWASP Montreal at GoSec 2016]] [[Image:OWASP-GoSec2016-2r.jpg|OWASP Montreal at GoSec 2016]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
From left to right : Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Simon Lacasse, student and volunteer, and Laurent Desaulniers, Security Analyst at Bell Canada.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://www.nsec.io/ NorthSec] 2016 – Annual Applied Security Event ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hackfest2016-OWASPMtl.jpg|OWASP Montreal at NorthSec 2016]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Simon Veilleux &lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
From left to right : Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Olivier Arteau OWASP Montréal Chapter Leader and Conseiller chez Groupe Technologie Desjardins, Hugo Genesse, OWASP Montréal Chapter Leader and Vulnerability Research Intern at Wurldtech Security Technologies.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://hackfest.ca/en/ Hackfest] 2015 ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hackfest2015-OWASPMtl-R.JPG | OWASP Montreal at Hackfest 2015]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Hackfest &lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
From left to right : Jonathan Marcil, Application Security Engineer at Blizzard Entertainment and former OWASP Montreal Chapter Leader. Philippe Arteau, Cybersecurity Researcher at GoSecure and designer of [http://find-sec-bugs.github.io/ Find Security Bugs] and Roslyn Security Guard tool which will be presented at Blackhat 2016. &lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/8U0qkEuUFy8]] [https://youtu.be/8U0qkEuUFy8 Watch the video / Regarder la vidéo]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://www.gosec.net/ GoSec] 2015 – The Annual Cybersecurity Conference presented by GoSecure, EY and ISACA. ==&lt;br /&gt;
&lt;br /&gt;
[[Image:GoSec2015-OWASPMtl.jpg|OWASP Montreal at GoSec 2015]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
From left to right : Marie-Claire Willig, Application Security Analyst at Desjardins, Speaker and Cofounder of the Roslyn Security Guard tool which will be presented at Blackhat 2016. Benoît Guérette, Application Security Team Leader at Desjardins, VP Finance at NorthSec and OWASP Montreal Chapter Founder and Former Chapter Leader.&lt;br /&gt;
&lt;br /&gt;
== See also / Voir aussi ==&lt;br /&gt;
&lt;br /&gt;
OWASP Montréal recommends Montréhack. Learn and share knowledge on IT security by solving technical challenges. Third Monday of every month. &lt;br /&gt;
&lt;br /&gt;
OWASP Montréal recommende Montréhack. Apprends et partages des connaissances sur la sécurité informatique en travaillant des problèmes appliqués. Chaque troisième lundi du mois. &lt;br /&gt;
&lt;br /&gt;
[[File:Montrehack.png|Montréhack|link=http://montrehack.ca/|alt=Montréhack]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Archives 2007-2015 =&lt;br /&gt;
{{:Montreal chapter past meetings}}&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - February 3rd - Getting to Know the Software Assurance Marketplace (SWAMP) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/p4_vjufcB6Q]] [https://youtu.be/p4_vjufcB6Q Watch the conference / Regarder la conférence]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/getting-to-know-the-software-assurance-marketplace-swamp-by-pat-beyer]] [https://speakerdeck.com/owaspmontreal/getting-to-know-the-software-assurance-marketplace-swamp-by-pat-beyer See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Pat Beyer&lt;br /&gt;
*'''ADDITIONAL PRESENTER:'''  Abe Megahed&lt;br /&gt;
*'''ABSTRACT:''' The Software Assurance Marketplace (SWAMP) is an open facility that is designed, built, and operated by four research institutions. The SWAMP provides no-cost access to an array of open-source and commercial software analysis tools. This presentation will provide an overview and demo of the SWAMP, including our goals, intended audience, current capabilities, and future plans. We will cover our relationship with OWASP, incorporation of open-source software assurance tools, and status as an open-source project and resource available to the software community. Visit https://continuousassurance.org/ to learn more about us.&lt;br /&gt;
*'''BIO:''' Pat Beyer serves as the Product Manager for the Software Assurance Marketplace (SWAMP). With over 25 years of experience successfully managing multi-million dollar global projects, Beyer’s expertise extends to the IT, construction, and operations sectors, with a specialization in managing government contracts and grants. A gifted communicator, Beyer is a sought after speaker due to his ability to deliver complex information about technology products and services in a way that is easily understood. He is a decorated combat veteran of the Global War on Terror, the international military campaign that started following the 9/11 terrorist attacks on the United States. In 2004, he constructed and rehabilitated over 20 schools, clinics, and water treatment plants for the Iraqi people using local contractors. Beyer also holds a Bachelor of Science, a Masters in Business Administration, a Ph.D. in Organization and Management, and a Project Management Professional (PMP) certification.&lt;br /&gt;
*'''BIO:''' Abe Megahed is a web developer for the Software Assurance Marketplace. In previous lifetimes, he has been a computer graphics researcher, a game programmer, a programming language and compiler nerd, a dot com company founder, a creator of helicopter simulations, and a developer of 3D simulations for NASA astronaut crew training.&lt;br /&gt;
*'''WHEN:'''  Tuesday, February 3rd 2015&lt;br /&gt;
*'''WHERE:''' Room PK-1140 - UQAM Pavillon Président-Kennedy, 201 Avenue du Président-Kennedy  J2X 3Y7&lt;br /&gt;
*'''REGISTRATION:''' https://owaspmtlswamp2015.eventbrite.ca&lt;br /&gt;
*'''WEBCAST:''' https://www.youtube.com/watch?v=p4_vjufcB6Q&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/getting-to-know-the-software-assurance-marketplace-swamp-by-pat-beyer&lt;br /&gt;
&lt;br /&gt;
*'''ACADEMIC PARTNER:''' AGEEI-UQAM - http://www.ageei.org/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Welcome speech by Chapter Leader (Jonathan Marcil)&lt;br /&gt;
  18:30-20:00 Main session: Getting to Know the Software Assurance Marketplace&lt;br /&gt;
  20:00-...   End of the meeting&lt;br /&gt;
&lt;br /&gt;
[[Image:SWAMP-Logo-Final-Med.png|300px|link=https://continuousassurance.org/]]&lt;br /&gt;
[[Image:Ageeilogo.jpg|200px|link=http://www.ageei.org/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - 4 décembre - Malware côté serveur — évolution, méthodes d’opération et forensic Linux ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/lo8WDl-WQ3E]] [https://youtu.be/lo8WDl-WQ3E Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/malware-cote-serveur-par-marc-etienne-m-dot-leveille]] [https://speakerdeck.com/owaspmontreal/malware-cote-serveur-par-marc-etienne-m-dot-leveille See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''PRÉSENTATEUR PRINCIPAL:''' Marc-Etienne M.Léveillé&lt;br /&gt;
*'''RÉSUMÉ:''' Les logiciels malveillants ciblant les serveurs ont évolué. Ils sont utilisés par des groupes de cybercriminels organisés dans le but de faire du profit via des redirections web et l’envoie de pourriels. La présentation portera sur Opération Windigo, une opération malveillante qui a affecté plus de 25 000 serveurs dans le monde. Après une brève description des composantes de Windigo, nous verrons comment les opérateurs déploient leurs logiciels malveillants et surveille leur réseau de serveurs infectés. Des trucs pratiques pour faire de la forensics sur des systèmes Linux seront donnés. Cette présentation est une suite à la présentation &amp;quot;Linux/Cdorked: Server side malware&amp;quot;, donnée par Olivier Bilodeau à OWASP Montréal en 2013. La présentation sera en français avec des diapositives en anglais (aka Montreal-style).&lt;br /&gt;
*'''BIO:''' Marc-Etienne est un chercheur en logiciel malveillant chez ESET depuis 2012. Il se spécialise dans les logiciels malveillants qui s’attaquent à des plateformes inhabituelles comme aux produits fruités et aux oiseaux nordiques. Dernièrement, il passe beaucoup de son temps à faire la rétro-ingénierie de logiciels malveillants sur des serveurs Linux et s’intéresse à leurs méthodes d’opération. Il adore participer de façon collégiale aux CTFs avec ses amis les CISSP Groupies et jouer de la clarinette. Il tweet très peu à @marc_etienne_.&lt;br /&gt;
*'''QUAND:''' 4 décembre 2014 à 18h00&lt;br /&gt;
*'''OÙ:''' Local M-1510, Polytechnique Montréal, 2900 Boulevard Edouard-Montpetit&lt;br /&gt;
*'''INSCRIPTION:''' https://www.eventbrite.ca/e/owasp-montreal-4-decembre-malware-cote-serveur-evolution-methodes-doperation-et-forensic-linux-tickets-14635313617&lt;br /&gt;
*'''ÉQUIPE ACADÉMIQUE:''' Polyhack - http://polyhack.org/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
&lt;br /&gt;
 18:00-18:30 Réseautage&lt;br /&gt;
 18:30-18:35 Mot de bienvenue par le leader du chapitre (Jonathan M.)&lt;br /&gt;
 18:35-19:30 Présentation principale : Malware côté serveur&lt;br /&gt;
 19:30-20:00 Période de questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Polyhacklogonoirpetit.png|200px|link=http://polyhack.org/]]&lt;br /&gt;
[[Image:LogoPolytechnique.gif|link=http://www.polymtl.ca/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - October 23rd - XXE : À l’assaut des analyseurs XML ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/MZviLB9-42E]] [https://youtu.be/MZviLB9-42E Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/xxe-a-lassaut-des-analyseurs-xml-par-philippe-arteau]] [https://speakerdeck.com/owaspmontreal/xxe-a-lassaut-des-analyseurs-xml-par-philippe-arteau See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''PRÉSENTATEUR PRINCIPAL:''' Philippe Arteau&lt;br /&gt;
*'''RÉSUMÉ:''' L'utilisation d’XML est fortement répandue. Le format est utilisé pour des fichiers de configuration, pour des métadonnées, pour des documents textes, et bien plus. La prise en charge de fichiers XML n’est pas sans risque. La plupart des analyseurs XML ne sont pas sécuritaires par défaut pour le traitement de fichier externe. Cette présentation fera un survol des vulnérabilités de type « Xml eXternal Entity » et de l’étendue des risques pour différents langages de programmation. Plusieurs démonstrations sont prévues.&lt;br /&gt;
*'''BIO:''' Philippe est conseiller en sécurité applicative pour le Groupe Technologies Desjardins. Au quotidien, il s’occupe d’effectuer des tests d’intrusions et des revues de code. Il a découvert des vulnérabilités importantes dans plusieurs logiciels populaires incluant Google Chrome, DropBox, ESAPI et Jira.&lt;br /&gt;
*'''QUAND:'''  23 Octobre 2014 à 18h00&lt;br /&gt;
*'''OÙ:''' École de Technologie Supérieure Local A-3230, 1100 Rue Notre-Dame Ouest, Montréal, QC H3C 1K3&lt;br /&gt;
*'''INSCRIPTION:''' http://www.eventbrite.ca/e/owasp-montreal-23-octobre-xxe-a-lassaut-des-analyseurs-xml-tickets-13426881163&lt;br /&gt;
*'''PARTENAIRE ACADÉMIQUE:''' ETS - DCI http://dciets.com/&lt;br /&gt;
*'''PROGRAMME:''' &lt;br /&gt;
&lt;br /&gt;
 18:00-18:30 Réseautage&lt;br /&gt;
 18:30-18:45 Mot de bienvenue&lt;br /&gt;
 18:45-19:45 Présentation principale - &amp;quot;À l’assaut des analyseurs XML&amp;quot; Philippe Arteau&lt;br /&gt;
 19:45-20:00 Période de questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Blason_dci.png‎‎‎|150px|link=http://dciets.com/]]&lt;br /&gt;
[[Image:ETS-rouge-devise-impr-fond_transparent.png|150px|link=http://www.etsmtl.ca/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - July 24th - Web security for DevOps: the glory is in the headers ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/6bp1NCLT-YQ]] [https://youtu.be/6bp1NCLT-YQ Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/web-security-for-devops-the-glory-is-in-the-headers-by-jonathan-marcil]] [https://speakerdeck.com/owaspmontreal/web-security-for-devops-the-glory-is-in-the-headers-by-jonathan-marcil See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Jonathan Marcil&lt;br /&gt;
*'''ABSTRACT:''' DevOps is a buzzword which can be easily demystified: in essence it is a process which aims to combine the development and system administration process into one; Operations. As developers become responsible for server setup, security counter measures are evolving as well. The line between server configuration and application behaviour has been blurred. In this talk we will cover some HTTP headers in regards to security such as CORS, CSP and HSTS. We will demonstrate several forms of attack, and how they can (should) be countered.&lt;br /&gt;
*'''BIO:''' Jonathan is devoted to security and specialized in Web application security.  His main occupation is consulting in Web security, but deep down he is a developer with a agnostic vision of programming languages. He has a diploma in Software Engineering from Ecole de Technologie Superieure and more than 10 years of experience in Information Technology and Security.&lt;br /&gt;
*'''WHEN:'''  At noon on July 24th 2014&lt;br /&gt;
*'''WHERE:''' 75 Queen Street, office 3100, Montreal, QC H3C 2N6&lt;br /&gt;
*'''REGISTRATION:''' You can join us on site for a pizza slice but this is mainly an online event. Contact jonathan.marcil@owasp.org.&lt;br /&gt;
*'''WEBCAST:''' https://www.youtube.com/watch?v=6bp1NCLT-YQ&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/web-security-for-devops-the-glory-is-in-the-headers-by-jonathan-marcil&lt;br /&gt;
*'''EVENT SPONSOR:''' Pheromone http://www.pheromone.ca/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  12:00-12:10 Welcome and quick OWASP introduction&lt;br /&gt;
  12:10-13:10 Main presentation - &amp;quot;Web security for DevOps: the glory is in the headers&amp;quot; Jonathan Marcil&lt;br /&gt;
  13:10-... Open discussion and questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Logo-phero.gif‎|link=http://www.pheromone.ca/]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - June 18th - Gaps in the Clouds ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/gaps-in-the-clouds-by-robert-fritz]] [https://speakerdeck.com/owaspmontreal/gaps-in-the-clouds-by-robert-fritz See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Robert Fritz&lt;br /&gt;
*'''ABSTRACT:''' Cloud technology offers agility and scaling, and a chance to break away from legacy IT choices.  Unfortunately, skipping traditional IT activities often results in poorly patched systems, out of date firewalls, and overprovisioned entitlements wielded by admins whose “day job” is development.  Boundaries of accountability and responsibility amongst cloud providers and consumers are confusing, vague, and shift, making security difficult to manage.  In such an environment, a “BP-spill” event, where cost wins over safely safety, is likely.  This talk will dive down into the cracks between the layers of cloud, and share some of the exciting dirt we have seen and expect to see in coming years.”&lt;br /&gt;
*'''BIO:''' Robert Fritz has been practicing security his entire career. Rob started as an Air Force lieutenant at Langley AFB and later at the Pentagon in Washington DC, building and managing classified networks. Finding he was getting too far from technology after a brief stint flying, he left the military to get back to the tech, and built security tools for HP in their HP-Unix lab.  Over time he found himself in more and more security design discussions, so co-authored HP’s Commercial Application Threat Analysis Methodology, building an internal consulting practice at HP.  This quantitative approach, led to two pending patents, an external-facing consulting practice, and his contributions to NIST IR-7502, the Common Configuration Scoring System (CVSS follow-on).  He is the former lead editor for the Center for Internet Security’s HP-UX Benchmark, and current lead for the Android Benchmark.  Robert now works for Morgan Stanley as global head of the Strategic Consulting team in the Security Architecture group, and leads the team’s cloud and social-media security practices.&lt;br /&gt;
*'''WHEN:''' June 18th 2014&lt;br /&gt;
*'''WHERE:''' 700 Rue Wellington, Floor 2, Montreal, QC H3C 3S4&lt;br /&gt;
*'''REGISTRATION:''' http://owaspmtl18junems.eventbrite.ca&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/gaps-in-the-clouds-by-robert-fritz&lt;br /&gt;
*'''EVENT SPONSOR:''' Morgan Stanley http://www.morganstanley.com/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:30 Networking and Morgan Stanley Hosted Pizza and Soft Drinks&lt;br /&gt;
  18:30-18:45 OWASP Chapter &amp;amp; Morgan Stanley Welcome&lt;br /&gt;
  18:45-19:45 Main presentation - &amp;quot;Gaps in the Clouds&amp;quot; Robert Fritz&lt;br /&gt;
  19:45-20:00 Open discussion and questions&lt;br /&gt;
  20:00-...   Optional, informal networking at Aziatic - 626 rue Marguerite-d'Youville, Montréal, QC H3C 1W7&lt;br /&gt;
&lt;br /&gt;
[[Image:Morgan_Stanley_Historical_Logo.png|link=http://www.morganstanley.com/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - May 26th - Récapitulatif des challenges NorthSec ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/P8_V3RI1Ru4]] [https://youtu.be/P8_V3RI1Ru4 Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''PRÉSENTATEUR PRINCIPAL:''' Laurent Desaulniers&lt;br /&gt;
*'''RÉSUMÉ:''' Solutions de la compétition en sécurité NorthSec 2014 sur les sujets de  XXE + SSRF, WAF Bypass, Xpath Injection, DOM Injection, HTTP Only Flag bypass et contournement de captchas. Une bonne façon d'apprendre sur ces failles que vous étiez ou non un participant de la compétition.&lt;br /&gt;
*'''MESSAGE DU PRÉSENTATEUR:''' Vous voyez Rao dans votre soupe? Vous voulez une solution pour un XSS avec des cookies http only? Les captchas illisibles sont un problème? Assistez à la présentation de l'OWASP!&lt;br /&gt;
*'''BIO:''' Laurent Desaulniers est un passionné de sécurité informatique. Il a présenté au Hackfest, au colloque RSI, à OWASP et est challenge designer à NorthSec. M. Desaulniers détient les certifications CISSP, CISM, CISA et OSCP.&lt;br /&gt;
*'''QUAND:''' 26 mai à 18h00&lt;br /&gt;
*'''OÙ:''' Local PK-1140 - Pavillon Président-Kennedy 201, Avenue du Président-Kennedy, J2X 3Y7&lt;br /&gt;
*'''INSCRIPTION:''' https://www.eventbrite.ca/e/owasp-montreal-26-mai-recapitulatif-des-challenges-northsec-tickets-11724413035&lt;br /&gt;
*'''WEBCAST:''' https://www.youtube.com/watch?v=P8_V3RI1Ru4&lt;br /&gt;
*'''ÉQUIPE ACADÉMIQUE''' AGEEI-UQAM - http://www.ageei.org/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
&lt;br /&gt;
 18:00-18:30 Réseautage&lt;br /&gt;
 18:30-18:35 Mot de bienvenue par le leader du chapitre (Jonathan M.)&lt;br /&gt;
 18:35-19:30 Présentation principale : Récapitulatif des challenges NorthSec&lt;br /&gt;
 19:30-20:00 Période de questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Ageeilogo.jpg|200px|link=http://www.ageei.org/]]&lt;br /&gt;
[[Image:2397_nsec_Logo_500-250.png|200px|link=http://nsec.io/]]&lt;br /&gt;
&lt;br /&gt;
== Networking with infosec communities - April 21st ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''RÉSUMÉ:''' En collaboration avec Montréhack, mtlsec et NorthSec, nous organisons une soirée réseautage dans un pub du centre-ville. Du plaisir garanti avec les membres de plusieurs communautés infosec de Montréal!&lt;br /&gt;
&lt;br /&gt;
*'''ABSTRACT:''' In collaboration with Montréhack, mtlsec and NorthSec, we are organizing a networking evening in a pub downtown. Fun guaranteed with the other security communities in Montreal!&lt;br /&gt;
&lt;br /&gt;
*'''QUAND:''' 21 Avril 2014&lt;br /&gt;
*'''WHEN:''' April 21st 2014&lt;br /&gt;
&lt;br /&gt;
*'''OÙ/WHERE:''' BENELUX - Brasserie Artisanale 245 Sherbrooke St W Montreal, QC H2X 1X7&lt;br /&gt;
&lt;br /&gt;
*'''INSCRIPTION/REGISTRATION:''' https://www.eventbrite.ca/e/montrehack-avril-april-northsec-pre-party-tickets-11232307133&lt;br /&gt;
&lt;br /&gt;
*'''PARTENAIRES/PARTNERS:''' Montréhack http://montrehack.ca/ - mtlsec http://blog.mtlsec.com/ - NorthSec https://www.nsec.io/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
  18:00-21:00 Networking&lt;br /&gt;
  21:00-23:59 Remember to drink responsibly!&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - March 27th - Panel Compétition en sécurité NorthSec ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Présentation sous forme de panel - venez poser vos questions!'''&lt;br /&gt;
&lt;br /&gt;
*'''RÉSUMÉ:''' Les compétitions de type Capture the Flag (CTF) sont un moyen pour les professionnels et amateurs de sécurité informatique de mettre leurs talents à l'épreuve. NorthSec est une compétition Montréalaise annuelle en sécurité appliquée, qui aura lieu cette année au Marché Bonsecours de Montréal le 25, 26 et 27 avril prochain. Elle vise à augmenter le niveau technique des professionnels de la sécurité au Québec, ainsi que de permettre à ses acteurs les plus talentueux de se démarquer.&lt;br /&gt;
*'''DÉTAILS:''' Le panel de jeudi, sous la forme d'un échange convivial entre les organisateurs de l'évènement et de ses participants, abordera des thèmes variés comme l'écriture de bon défis, l'infrastructure, la logistique, les inattendus, un bilan de 2013 et tout ça en passant par de savoureuses annecdotes (on l'espère). Venez en grand nombre toucher à ces légendes de la scène infosec montréalaise!&lt;br /&gt;
*'''PANÉLISTES:''' Gabriel Tremblay, François Proulx, Laurent Desaulniers, Stéphane Graber&lt;br /&gt;
*'''ANIMATEUR:''' Olivier Bilodeau&lt;br /&gt;
*'''QUAND:''' 27 mars 2014&lt;br /&gt;
*'''OÙ:''' Salle M-1510, École Polytechnique de Montréal, 2500 chemin de Polytechnique, Montréal (Québec) H3T 1J4, pavillon Lassonde&lt;br /&gt;
*'''INSCRIPTION:''' https://www.eventbrite.ca/e/owasp-montreal-27-mars-panel-competition-en-securite-northsec-tickets-10918436337&lt;br /&gt;
*'''ÉQUIPE ACADÉMIQUE:''' Polytechnique - Polyhack http://polyhack.org/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Mot de bienvenue par le leader du chapitre (Jonathan Marcil)&lt;br /&gt;
  18:30-20:00 Présentation principale : Panel NorthSsec&lt;br /&gt;
&lt;br /&gt;
[[Image:Polyhack.png‎‎|200px|link=http://polyhack.org/]]&lt;br /&gt;
[[Image:LogoPolytechnique.gif|link=http://www.polymtl.ca/]]&lt;br /&gt;
[[Image:2397_nsec_Logo_500-250.png|200px|link=http://nsec.io/]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - February 25th - Proven Strategies for Web Application Security ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/proven-strategies-for-web-application-security-by-justin-c-klein-keane]] [https://speakerdeck.com/owaspmontreal/proven-strategies-for-web-application-security-by-justin-c-klein-keane See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Justin C. Klein Keane&lt;br /&gt;
*'''ABSTRACT:''' The rising dominance of the web as an application delivery platform has focused attacker attention squarely on the security of dynamic web applications. Application security is a complex, and shifting, field. Learn about tested and successful techniques to build safer applications, find flaws before they become vulnerabilities, and deploy applications that can detect, and resist attack.&lt;br /&gt;
*'''BIO:''' Justin C. Klein Keane is a security engineer and chapter leaders of OWASP in Philadelphia. For over a decade Justin has worked as a trainer, coder, and exploit developer. Justin is currently writing a book for NoStarch Press on hacking, speaks regularly at conferences, holds a masters degree in information technology from the University of Pennsylvania and is credited with hundreds of application vulnerability discoveries.&lt;br /&gt;
*'''WHEN:''' February 25th 2014&lt;br /&gt;
*'''WHERE:''' Ecole de technologie superieure, 1100 Notre-Dame Street West, Montreal, Room: A-1150&lt;br /&gt;
*'''REGISTRATION:''' http://owaspmtljan2014.eventbrite.ca&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/proven-strategies-for-web-application-security-by-justin-c-klein-keane&lt;br /&gt;
*'''ACADEMIC PARTNER:''' ETS - DCI http://dciets.com/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Welcome speech by Chapter Leader (Jonathan Marcil)&lt;br /&gt;
  18:30-20:00 Main session and open discussion: Proven Strategies for Web Application Security&lt;br /&gt;
  20:00-...   End of the meeting in a pub&lt;br /&gt;
&lt;br /&gt;
[[Image:Dciets.png‎‎‎|100px|link=http://dciets.com/]]&lt;br /&gt;
[[Image:Logo_ets.png|link=http://www.etsmtl.ca/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - January 28th - Latest trends in Mobile Security ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/8qPyKj4FKgY]] [https://youtu.be/8qPyKj4FKgY Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/latest-trends-in-mobile-security-by-francois-proulx]] [https://speakerdeck.com/owaspmontreal/latest-trends-in-mobile-security-by-francois-proulx See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Francois Proulx&lt;br /&gt;
*'''ABSTRACT:''' Last AppSecUSA 2013 had a great line up of talks, especially regarding mobile applications. This session will be covering all the hottest presentations about mobile security by doing an overview from what see saw at AppSecUSA, all with some slides and snippets of presentations that was recorded at the event. Discussion will be encouraged within the audience as this will be more a dynamic event than a regular talk.&lt;br /&gt;
*'''BIO:''' François Proulx is a senior mobile application developer who has worked on dozens of iOS applications since the very beginning of the Apple iOS platform. Over the past few years he has switched his focus to security. He spends a lot of his free time participating in Capture the Flag events (CTFs) and organizing the NorthSec security competition.&lt;br /&gt;
*'''WHEN:''' January 28th 2014&lt;br /&gt;
*'''WHERE:''' UQAM Room PK-1705, Pavillon Président-Kennedy (the big boat at Place des Arts) - 201 Avenue du Président-Kennedy  J2X 3Y7&lt;br /&gt;
*'''REGISTRATION:''' http://owaspmtl-mobilesecurity.eventbrite.ca&lt;br /&gt;
*'''SLIDES/CONTENT:''' [http://www.youtube.com/playlist?list=PLQtB2ug5xmvaQ9jeRWV53-F_T555GQfhW YouTube playlist]&lt;br /&gt;
*'''SPONSOR:''' Academic partner AGEEI-UQAM - http://www.ageei.org/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Welcome speech by Chapter Leader (Jonathan M.)&lt;br /&gt;
  18:30-20:00 Main session and open discussion: Mobile Security&lt;br /&gt;
  20:00-...   End of the meeting in a pub&lt;br /&gt;
&lt;br /&gt;
[[Image:Ageeilogo.jpg|200px|link=http://www.ageei.org/]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Presentations For Download  ====&lt;br /&gt;
&lt;br /&gt;
[http://www.owasp.org/images/0/0d/20100209mstechdaysowaspasvssgiv01-12657916463819-phpapp02.ppt OWASP ASVS] by Sebastien Gioria (09/03/2010) &lt;br /&gt;
&lt;br /&gt;
[http://www.ph-il.ca/slides/afup__authetification_forte.pdf Authentification Forte] by Philippe Gamache (02/02/2010) &lt;br /&gt;
&lt;br /&gt;
[http://www.opensamm.org/downloads/OpenSAMM-1.0.ppt Software Assurance Maturity Model (OpenSAMM)] by Pravir Chandra (03/11/2009) &lt;br /&gt;
&lt;br /&gt;
[http://www.owasp.org/images/d/de/Owasp-montreal-sept-17h-2009-justin-foster.pdf Crossing the Border – Javascript Exploits] by Justin Foster (17/09/2009) &lt;br /&gt;
&lt;br /&gt;
[http://www.owasp.org/images/c/c2/ALaughRIAt.pdf A Laugh RIAt] by Rafal Los (07/04/2009) &lt;br /&gt;
&lt;br /&gt;
[https://www.owasp.org/images/e/eb/OWASP-Montreal-24022009-RobLabbe.pptx Microsoft Security Development Lifecycle for IT] by Rob Labbe (24/02/2009) &lt;br /&gt;
&lt;br /&gt;
[https://www.owasp.org/images/3/39/OWASP-Montreal-24022009-EN.pdf OWASP Goal and Top Ten 2007 for Managers - French version] by Benoit Guerette (24/02/2009)&lt;br /&gt;
&lt;br /&gt;
Newer presentations are available on [https://speakerdeck.com/owaspmontreal Speaker Deck]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Circle_owasp_logo_nowhitebackground.png|200px]]&lt;br /&gt;
&lt;br /&gt;
= OWASP Foundation / Mission OWASP    = &lt;br /&gt;
OWASP Foundation ([https://docs.google.com/a/owasp.org/presentation/d/10wi1EWFCPZwCpkB6qZaBNN8mR2XfQs8sLxcj9SCsP6c/edit?usp=sharing Overview Slides]) is a professional association of [[Membership | global members]] and is open to anyone interested in learning more about software security. Local chapters are run independently and guided by the [[Chapter_Leader_Handbook]].  As a [[About_OWASP | 501(c)(3)]] non-profit professional association your support and sponsorship of any meeting venue and/or refreshments is tax-deductible. Financial contributions should only be made online using the authorized online chapter donation button.  To be a &amp;lt;b&amp;gt;SPEAKER&amp;lt;/b&amp;gt; at ANY OWASP Chapter in the world simply review the [[Speaker_Agreement | speaker agreement]] and then contact the local chapter leader with details of what OWASP PROJECT, independent research or related software security topic you would like to present on.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;La fondation OWASP est une [https://www.owasp.org/index.php/Membership association de professionnels] et elle est ouverte à tout intervenant intéressé à en apprendre davantage sur la sécurité applicative. Les chapitres locaux (dont celui de Montréal) sont gérés de façon indépendante et selon un [https://www.owasp.org/index.php/Chapter_Leader_Handbook manuel de directives à respecter].   &lt;br /&gt;
Toute contribution financière au chapitre peut être faite en ligne en utilisant l’icône prévu à cet effet. Pour être conférencier au sein de n’importe quel chapitre à l’échelle mondiale, vous n’avez qu’à prendre connaissance du document [https://www.owasp.org/index.php/Speaker_Agreement &amp;quot;entente avec les conférenciers – speaker agreement&amp;quot;] et à joindre le responsable du chapitre Montréal avec un descriptif du sujet que vous aimeriez aborder et s’il est relié à un projet OWASP, à de la recherche indépendante ou encore le sujet en particulier, concernant la sécurité applicative, que vous souhaitez aborder.&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== [[Image:Circle_owasp_logo_nowhitebackground.png|128px]] Montreal OWASP Team == &lt;br /&gt;
&lt;br /&gt;
Scope of the team is to discuss and plan local activities and meetings &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Chapter Leaders ===&lt;br /&gt;
&lt;br /&gt;
* [mailto:anne.gauthier@owasp.org Anne Gauthier], President/Présidente&lt;br /&gt;
* [mailto:michel.bourque{at}owasp.org Michel Bourque], Chapter coordinator and marketing manager/Coordination et Marketing&lt;br /&gt;
* [mailto:hugo.genesse(at)owasp.org Hugo Genesse], Web content and production manager/Site internet et Production &lt;br /&gt;
* [mailto:olivier.arteau(at)owasp.org Olivier Arteau], Logistic manager/Logistique&lt;br /&gt;
&lt;br /&gt;
==== Chapter leader history ====&lt;br /&gt;
*2008-2010 - Benoit Guerette, founder and chapter leader&lt;br /&gt;
*2011-2012 - Philippe Gamache, chapter leader (vice chapter-leader since 2010)&lt;br /&gt;
*2013-2015 - Jonathan Marcil, chapter leader&lt;br /&gt;
*2016-... - Anne Gauthier, Michel Bourque, Marius Popescu, Hugo Genesse, Olivier Arteau&lt;br /&gt;
&lt;br /&gt;
==== Old board members ====&lt;br /&gt;
*Philippe Pépos Petitclerc&lt;br /&gt;
*Michael Robillard&lt;br /&gt;
*Benoit Guerette (logistics 2015)&lt;br /&gt;
*Alexandre Rimthong&lt;br /&gt;
*Mathieu Binette&lt;br /&gt;
*Sean Coates&lt;br /&gt;
*Jean-Marc Robert&lt;br /&gt;
*Philippe Blondin&lt;br /&gt;
*Benoit Guerette (founder)&lt;br /&gt;
*Laurent Desaulniers&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;headertabs&amp;gt;&amp;lt;/headertabs&amp;gt; &lt;br /&gt;
__NOTOC__ &lt;br /&gt;
[[Category:Canada]]&lt;/div&gt;</summary>
		<author><name>Svieg</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=Montr%C3%A9al&amp;diff=241349</id>
		<title>Montréal</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=Montr%C3%A9al&amp;diff=241349"/>
				<updated>2018-06-17T20:52:24Z</updated>
		
		<summary type="html">&lt;p&gt;Svieg: /* SecurityRAT - Handling of Security Requirements in SDLC */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Welcome &amp;amp; Bienvenue to the OWASP Montréal chapter ==&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:OWASP-Montreal-Logo.png|Logo OWASP Montréal]]&lt;br /&gt;
&lt;br /&gt;
The OWASP Foundation was established in 2001 as an open community and software security resource. Since then, OWASP has grown to be globally recognized as a credible source for application security standards. &amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
OWASP is an open community dedicated to enabling organizations to conceive, develop, acquire, operate, and maintain applications that can be trusted. All of the OWASP tools, documents, forums, and chapters are free and open to anyone interested in improving application security. We advocate approaching application security as a people, process, and technology problem because the most effective approaches to application security include improvements in all of these areas. &amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
OWASP is open to anyone. Anyone can attend OWASP's vendor agnostic local chapter meetings, participate in regional and global conferences, and contribute to the many OWASP projects. And anyone can start a new project, form a new chapter, or lend their expertise to help an OWASP Global Committee.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt;On parle français aussi ! Le chapitre de Montréal organise plusieurs activités gratuites afin de partager les connaissances en sécurité applicative avec la communauté de développeurs et gestionnaires. Suivez-nous sur les réseaux sociaux pour connaître les dates des conférences du midi et des workshops !&amp;lt;/b&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Top documentation from OWASP includes: &lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/index.php/Top_10_2013-Top_10 OWASP TOP 10 : The Ten Most Critical Web Application Security Risks]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/images/3/33/OWASP_Application_Security_Verification_Standard_3.0.1.pdf OWASP ASVS : Application Security Verification Standard]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/images/5/52/OWASP_Testing_Guide_v4.pdf OWASP Testing Guide : Penetration Testing Framework]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/images/7/78/OWASP_AlphaRelease_CodeReviewGuide2.0.pdf OWASP Code Review Guide : Source Code Analysis Framework]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/index.php/OWASP_Cheat_Sheet_Series OWASP Cheat Sheet : Best practices guidelines for developers]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org OWASP Global]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Chapter Leaders / Responsables du chapitre ===&lt;br /&gt;
&lt;br /&gt;
* [mailto:anne.gauthier@owasp.org Anne Gauthier], President/Présidente&lt;br /&gt;
* [mailto:michel.bourque{at}owasp.org Michel Bourque], Chapter coordinator and marketing manager/Coordination et Marketing&lt;br /&gt;
* [mailto:hugo.genesse(at)owasp.org Hugo Genesse], Web content and production manager/Site internet et Production &lt;br /&gt;
* [mailto:olivier.arteau(at)owasp.org Olivier Arteau], Logistic manager/Logistique&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt; Volunteers / Volontaires OWASP Montréal: &amp;lt;/b&amp;gt;&lt;br /&gt;
* Simon Lacasse, Web content / Site internet&lt;br /&gt;
* Julien Touche, Logistique&lt;br /&gt;
* Jean-François Gill&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;b&amp;gt; Reach our chapter / Joindre le chapitre &amp;lt;/b&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Follow OWASP's Montreal chapter's activities through social medias, register to events, watch the previous presentations and more! &lt;br /&gt;
&lt;br /&gt;
Suivez les activités du chapitre OWASP Montréal via les réseaux sociaux, inscrivez-vous aux activités, visualisez les anciennes présentations et plus encore! &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;b&amp;gt;[http://lists.owasp.org/mailman/listinfo/owasp-montreal Click here] to join the local chapter mailing list.&lt;br /&gt;
&amp;lt;br /&amp;gt;[http://lists.owasp.org/mailman/listinfo/owasp-montreal Inscrivez-vous ici] à la liste de courriels du chapitre afin de recevoir les dernières nouvelles!&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Want to be part of the community ? &lt;br /&gt;
Devenez membre de notre communauté ! &lt;br /&gt;
[https://www.owasp.org/index.php/Membership_Map Click here / Cliquer ici]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Eb_press_little.gif‎|OWASP Montreal Eventbrite|link=http://owaspmontreal.eventbrite.ca/]] &lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[Image:Yt-brand-standard-logo-630px.png‎|128px|YouTube OWASP Montreal Channel|link=http://www.youtube.com/owaspmontreal]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]   &lt;br /&gt;
[[Image:Speakerdecklogo.png‎|Slides of OWASP Montreal on SpeakerDeck |link=https://speakerdeck.com/owaspmontreal]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Twitter-bird-cropped-onwhite.png|@owaspmontreal on Twitter|link=https://twitter.com/owaspmontreal]]&lt;br /&gt;
[[Image:FacebookSquareLogo.png|OWASP Montreal Facebook page|link=https://www.facebook.com/owasp.montreal]]&lt;br /&gt;
[[Image:LinkedinSquareLogo.png|OWASP Montreal on LinkedIn|link=https://www.linkedin.com/groups/1379007/profile]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
&lt;br /&gt;
== What we do / Nos activités ==&lt;br /&gt;
&lt;br /&gt;
OWASP Montreal is a really active chapter. We organize monthly conferences and workshops. All our events are free and meant to improve the knowledge and awareness of the community's developers, managers and computer security specialists. To be aware of the next event and for additional information, follow us on social medias. &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
OWASP Montréal est un des chapitres les plus actifs. Nous organisons mensuellement des ateliers et conférences. Tous nos événements sont gratuits et ont pour but d'améliorer les connaissances de la communauté. Ils s'adressent donc autant aux gestionnaires qu'aux développeurs et aux spécialistes en sécurité informatique. Pour plus d'informations sur nos activités et pour être au courant des prochaines dates d'événement, suivez nous sur les réseaux sociaux. &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;We also contribute to the vast OWASP knowledge base / Nous contribuons aussi aux ressources d'OWASP&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We list here the projects that were started by our members under OWASP's banner. &amp;lt;br /&amp;gt;&lt;br /&gt;
Nous listons ici les projets commencé par nos membres sous la banière d'OWASP. &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/index.php/Vulnerability_Disclosure_Cheat_Sheet Vulnerability Disclosure Cheat Sheet]&lt;br /&gt;
&lt;br /&gt;
== Sponsorship &amp;amp; Membership / Commandite &amp;amp; Adhésion ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Btn_donate_SM.gif|link=http://www.regonline.com/donation_1044369]] to this chapter or become a local chapter supporter.&lt;br /&gt;
&lt;br /&gt;
Or consider the value of [[Membership | Individual, Corporate, or Academic Supporter membership]]. Ready to become a member? [[Image:Join_Now_BlueIcon.JPG|75px|link=https://myowasp.force.com/]]&lt;br /&gt;
&lt;br /&gt;
[http://www.regonline.com/donation_1044369 Donnez] au chapitre ou devenez commanditaire du chapitre local! &lt;br /&gt;
&lt;br /&gt;
[https://myowasp.force.com/ Devenez membre !] Pour en savoir davantage sur les avantages d’une adhésion individuelle, corporative ou en tant qu’institution d’enseignement, [https://www.owasp.org/index.php/Membership cliquez ici]. &lt;br /&gt;
&lt;br /&gt;
[[Category:OWASP Chapter]]&lt;br /&gt;
&lt;br /&gt;
== Chapter Supporters / Commanditaires du chapitre ==&lt;br /&gt;
&lt;br /&gt;
[https://www.owasp.org/images/9/91/OWASP_Membership_Flyer_Montreal.png All details available here / Pour tous les détails] [[File:Chapter-supporter-owasp-montreal.png|200px|link=]] &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Platinum / Platine ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Gosecure-2.png|GoSecure|link=http://www.gosecure.ca/]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[File:Desjardins2-400x400.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Gold / Or ===&lt;br /&gt;
&lt;br /&gt;
[[Image:PM_SCADA_Logo_Gris_Cybersecurite_FR.png|PM SCADA|link=http://pmscada.ca/en/]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Lunch &amp;amp; Learn / Workshops 2018 =&lt;br /&gt;
&lt;br /&gt;
== SecurityRAT - Handling of Security Requirements in SDLC ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Fri, 1 June 2018&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
OWASP dans le cadre des Midis conférence est heureux d'accueillir Daniel Kefer et Rene Reuter. Tous les deux viennent d'Allemagne et seront de passage à Montréal.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Nos conférenciers viendront présenter SecurityRAT, un projet OWASP pour gérer les requis de sécurité pendant le cycle de vie des dévelopements applicatifs (SDLC).&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Biographie :&amp;lt;br /&amp;gt;&lt;br /&gt;
Daniel Kefer travaille en sécurité depuis 2007 et a commencé en tant que pentester. Il travaille depuis 2011 chez 1&amp;amp;1 où il mène l'équipe AppSec interne.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
René Reuter est ingénieur sécurité depuis 6 ans. Il travaille chez Robert Bosch GmbH en tant que consultant en charge d'identifier les vulnérabilités et problèmes de conception dans les applications internes.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Insecurity in Information Technology ==&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wed, 16 May 2018&lt;br /&gt;
WHERE&lt;br /&gt;
 Marché Bonsecours, salle 1847&lt;br /&gt;
&lt;br /&gt;
OWASP dans le cadre des Midis conférence est heureux d'accueillir Greg Castle.&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
A lot is expected of software developers these days; they are expected to be experts in everything despite very little training. Throw in the IT security team (often with little-to-no knowledge of how to build software) telling developers what to do and how to do it, and the situation becomes strained. This silo-filled, tension-laced situation, coupled with short deadlines and pressure from management, often leads to stress, anxiety and less-than-ideal reactions from developers and security people alike.&amp;lt;/br&amp;gt;&lt;br /&gt;
This talk will explain how job insecurities can be brought out by IT leadership decisions, and how this can lead to real-life vulnerabilities in software. This is not a talk about “feelings”, this is a talk about creating programs, governance and policies that ensure security throughout the entire SDLC.&amp;lt;/br&amp;gt;&amp;lt;/br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
No more laying blame and pointing fingers, it’s time to put our egos aside and focus on building high-quality software that is secure. The cause and effect of insecurities and other behavioral influencers, as well as several detailed and specific solutions will be presented that can be implemented at your own place of work, immediately. No more ambiguity or uncertainty from now on, only crystal-clear expectations.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Biographie :&amp;lt;br /&amp;gt;&lt;br /&gt;
Tanya Janca is a senior cloud advocate for Microsoft, specializing in application security; evangelizing software security and advocating for developers through public speaking, her open source project OWASP DevSlop, and various forms of teaching via workshops, blogs and community events. As an ethical hacker, OWASP Project and Chapter Leader, software developer, effective altruist and professional computer geek of 20+ years, she is a person who is truly fascinated by the ‘science’ of computer science.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Shipping in Pirate-Infested Waters: Practical Attack and Defense in Kubernetes ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Owasp-avril-2018.JPG  ]]&lt;br /&gt;
[[Image:Owasp-avril-2018-2.JPG ]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/ohTq0no0ZVU ]] [https://youtu.be/ohTq0no0ZVU Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 April 30 2018&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
OWASP dans le cadre des Midis conférence est heureux d'accueillir Greg Castle.&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
L'événement contiendra une diffusion de &amp;quot;Shipping in Pirate-Infested Waters: Practical Attack and Defense in Kubernetes&amp;quot; présenté à Kubecon 2017, suivi de 20 min de questions/réponses avec Greg par vidéoconférence.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Biographie :&amp;lt;br /&amp;gt;&lt;br /&gt;
Greg est Tech Lead pour l'équipe sécurité Kubernetes et Google Container Engine chez Google. Avant GKE, Greg a travaillé dans l'équipe de réponse aux incidents de sécurité de Google, dévelopant des outils opensource d'investigations et à l'amélioration de la sécurité de Macos. Avant google, il a occupé de nombreuses positions incluant pentester, incident responder et analyste forensics.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Operate PCI DSS infrastructure using DevOps approach ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Owasp-montreal-pci-dss-r.jpg  ]]&lt;br /&gt;
[[Image:Owasp-montreal-pci-dss-2-r.jpg ]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/owasp-operate-pcidss-infrastructure-using-devops-approch-dot-pptx-1]] [https://speakerdeck.com/owaspmontreal/owasp-operate-pcidss-infrastructure-using-devops-approch-dot-pptx-1 See the slides / Voir la présentation]&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 March 5 2018&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
OWASP dans le cadre des Midis conférence est heureux d'accueillir, M. Gaëtan Trivino.&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Notre conférencier viendra présenter l'influence de la culture devops sur les opérations d'un hébergeur international en particulier pour supporter les réglementations comme PCI DSS.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Biographie :&amp;lt;br /&amp;gt;&lt;br /&gt;
Gaëtan est DevOps technical leader orienté cloud et automatisation réseau. Il a traversé l'Atlantique avec sa famille pour explorer de nouvelles culture de travail et se lance dans la recherche du meilleur sirop d'érable!&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Lunch &amp;amp; Learn / Workshops 2015-2017 =&lt;br /&gt;
&lt;br /&gt;
== Pourquoi un hacker peut-il contourner les mesures et solutions de sécurité... ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hamilton-septembre-2017-1.JPG  ]]&lt;br /&gt;
[[Image:Hamilton-septembre-2017-2.JPG ]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/endpoint-bypass-charles-hamilton]] [https://speakerdeck.com/owaspmontreal/endpoint-bypass-charles-hamilton See the slides / Voir la présentation]&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 September 18th 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
OWASP dans le cadre des Midis conférence est heureux de lancer la saison 2017-2018 en accueillant, M. Charles F. Hamilton.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Notre conférencier viendra brosser un tableau des différents éléments qui expliquent pourquoi les mesures et les solutions de sécurité en générales qui ont la fonction de protéger les données, les applications, les réseaux ou les équipements critiques sont si souvent contournées ou carrément inefficaces contre les attaques ciblées.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Biographie :&amp;lt;br /&amp;gt;&lt;br /&gt;
Charles F. Hamilton est un consultant en sécurité et membre d’équipe « Red Team » de calibre international. Il se spécialise en test d’intrusion et la recherche de solution proactive de sécurité.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Cas d'attaques vécus : Internet des objets (IOT) - Attaques DDoS ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Cas_dattaques_vecus-r.jpg  ]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 June 19th 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
Pour clore la saison printanière 2017, OWASP Montréal est fier d'accueillir au Midi Conférence, M. Christian Shink qui fera un survol de cas d'attaques vécus, des techniques utilisées et des acteurs impliqués dans ces attaques.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
L'incorporation généralisée de dispositifs «intelligents» dans les objets de la vie de tous les jours modifie la façon dont les gens et les machines interagissent les uns avec les autres. Cette incorporation offre une promesse d'une meilleure qualité de vie, une meilleure efficacité. En contrepartie, leur déploiement introduit également des vulnérabilités à la fois dans l'infrastructure qu'ils soutiennent et sur lesquels ils comptent, ainsi que dans les processus qu'ils guident. Que ce soit au niveau applicatif ou des infrastructures, ces vulnérabilités sont exploitées par des acteurs malicieux pour générer des attaques de déni de service massives et sophistiquées. Nous tenterons également de tirer des leçons afin de tenter de minimiser ce type d'attaques dans le futur.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Christian Shink possède plus d’une dizaine d’années d’expérience en développement et sécurité d’applications. Avant de se joindre à Radware, Christian était à l’emploi d'une firme conseil où il a conseillé de nombreuses entreprises, dont de grandes banques américaines et Casinos. Il détient une certification CSSLP et est membre de l'ordre des ingénieurs du Québec.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== HOW TO! Threat Modeling Toolkit ==&lt;br /&gt;
&lt;br /&gt;
[[Image:OWASPMtl-JonathanMarcil-1.jpg]]&lt;br /&gt;
[[Image:OWASPMtl-JonathanMarcil-3.jpg]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/threat-modeling-toolkit]] [https://speakerdeck.com/owaspmontreal/threat-modeling-toolkit See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 May 23rd, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Shopify Montreal&lt;br /&gt;
&lt;br /&gt;
Threat Modeling is a great way to analyze security early in software development by structuring possible attacks, bad actors and countermeasures over a broad view of the targeted system. This talk will describe basic components of a threat model and how to use them effectively.&lt;br /&gt;
Threat Intelligence is where you gather knowledge about the environment and business assets to determine what are the actual threats. But how do you reconcile that with the current architecture in a useful manner?&lt;br /&gt;
The toolkit presented in this talk will enable you to systematically structure related information using graphical notations such as flow diagram and attack tree. In case you are wondering where to start in your organization, a quick lightweight risk rating methodology will also be proposed.&lt;br /&gt;
And in the end, you’ll see how we can all tie those together and get threat modeling to a point where it’s an efficient application security activity for communication. Doing this will prevent security reviews from missing important things even when chaos prevails during the realization of a project.&lt;br /&gt;
Modeling concepts will be demonstrated with an actual IoT device used as example.&lt;br /&gt;
Presentation will be done in english.&lt;br /&gt;
&lt;br /&gt;
Speaker Bio:&lt;br /&gt;
Jonathan Marcil is the former chapter leader of OWASP Montreal and is now Senior Application Security Engineer at Blizzard Entertainment in beautiful Orange County, California.&lt;br /&gt;
Jonathan has been involved with OWASP for many years and has been behind the Media Project which gathered and promoted AppSec conferences video content in the official OWASP YouTube channel. He was also part of NorthSec CTF event as a challenge designer specialized in Web and imaginative contraptions.&lt;br /&gt;
He is passionate about Application Security and enjoys architecture analysis, code review, threat modeling and debunking security tools. He holds a diploma in Software Engineering from ÉTS Montreal and has more than 15 years of experience in Information Technology and Security.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Merci à nos précieux commanditaires !&lt;br /&gt;
&lt;br /&gt;
== Security Testing: Unlocking the Benefits of a Hybrid Approach ==&lt;br /&gt;
[[Image:Security testing hybrid approach-r 3.jpg    ]]&lt;br /&gt;
[[Image:Security testing hybrid approach-r 4.jpg    ]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/hybrid-approach-to-security-testing]] [https://speakerdeck.com/owaspmontreal/hybrid-approach-to-security-testing See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 April 24th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
As part of their defensive efforts, businesses commonly commission cybersecurity assessments of their web applications; with the aim of identifying any weaknesses in the security controls and ensuring a continually strong cybersecurity posture of their systems.&lt;br /&gt;
&lt;br /&gt;
The classical approach of either secure code review (white box) or penetration testing (black box) assessment have proven to be effective in securing of web applications. The new trend, however, is moving towards the combination of these two approaches; expert consensus is rapidly recognizing the advantages of using a hybrid approach. When applied properly, a hybrid approach can build on the strengths of both white and black box testing, while compensating for their individual shortcomings.&lt;br /&gt;
&lt;br /&gt;
In this presentation, we will examine the details of secure code review and penetration testing, and run demos to contrast their respective strengths and weaknesses. We will also examine why a hybrid approach can produce more complete and relevant assessment results. To conclude, we will cover proven approaches, and practical techniques, on how you can start leveraging a hybrid approach to web application assessments today.&lt;br /&gt;
&lt;br /&gt;
Anne Gauthier is an application security analyst at GoSecure. Anne is also the president of the Montreal Chapter of OWASP – the industry standard for web application security. With a penetration testing background, she specializes in secure code reviews and in helping companies to improve their software development lifecycle (SDLC) according to industry best practices. Anne is CSSLP, GWAPT and GSSP-JAVA certified. She obtained a Software Engineering bachelor’s degree from Ecole de Technologie Supérieure in Montréal and is now pursuing a Master of Engineering (MEng) degree in Information Systems Security at Concordia University. She is the author of the Project 201 Security blog.&lt;br /&gt;
&lt;br /&gt;
Merci à nos précieux commanditaires !&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;HOW-TO&amp;quot; NIGHT ! Tout sur les CTFs (Capture The Flag) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Howto_ctf.jpg]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://docs.google.com/presentation/d/1zEsCcX-Nvq8Nz0k-B1zHejCDNT2oGZx8oUBgMbvvMM0/edit#slide=id.p ]] [https://docs.google.com/presentation/d/1zEsCcX-Nvq8Nz0k-B1zHejCDNT2oGZx8oUBgMbvvMM0/edit#slide=id.p See the slides / Voir la présentation (Laurent Desaulniers)]&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://docs.google.com/presentation/d/1c1P1d2mKe767j1Y0V9cK6De5cpnK4I7GI-ORiodbg1A/edit#slide=id.p ]] [https://docs.google.com/presentation/d/1c1P1d2mKe767j1Y0V9cK6De5cpnK4I7GI-ORiodbg1A/edit#slide=id.p See the slides / Voir la présentation (Charles Hamilton)]&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=http://obilodeau.github.io/slides/2017-04-04_how-not-to-suck-at-ctfs/ ]] [http://obilodeau.github.io/slides/2017-04-04_how-not-to-suck-at-ctfs/ See the slides / Voir la présentation (Olivier Bilodeau)]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 April 4th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Shopify&lt;br /&gt;
&lt;br /&gt;
Cette nouvelle soirée &amp;quot;How-To&amp;quot; Night d'OWASP Montréal vise à présenter les CTFs (une compétition Capture The Flag) et aider les équipes à démarrer et à continuer à évoluer dans leurs pratique de la cyber sécurité pratique. L'objectif est d'outiller les participants en leur fournissant des ressources techniques et des contacts afin de les aider à progresser.&lt;br /&gt;
&lt;br /&gt;
Les éléments discutés seront:&lt;br /&gt;
&lt;br /&gt;
- Composition optimale d’une équipe : Fonctionnement d’une équipe de CTF et les principaux rôles (chef d’équipe, cryptographie, application web, rétro ingénierie et les causes perdues).&lt;br /&gt;
&lt;br /&gt;
- Pourquoi faire des CTFs? Discussion sur les différents styles (jeopardy, attack/defense, etc.), quels sont les problèmes fréquemments rencontrés + plusieurs anecdotes intéressantes (et drôles).&lt;br /&gt;
&lt;br /&gt;
- Trucs de Mr. Unikoder : Le créateur du fameux site ringzer0team, soit un des plus gros sites pour apprendre la résolution de problèmes de CTF (https://ringzer0team.com/) Apprenez des trucs du meilleur, sur comment débuter et interpréter un challenge web, binaire et crypto avec des trucs réels du métier.&lt;br /&gt;
&lt;br /&gt;
Matériel requis :&lt;br /&gt;
&lt;br /&gt;
    Votre légendaire enthousiasme&lt;br /&gt;
&lt;br /&gt;
Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
&lt;br /&gt;
Places limitées. Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Shopify pour l'événement.&lt;br /&gt;
&lt;br /&gt;
Présentateurs :&lt;br /&gt;
&lt;br /&gt;
Charles Hamilton, Senior Consultant chez Mandiant, FireEye, Inc.&lt;br /&gt;
&lt;br /&gt;
Olivier Bilodeau, Cybersecurity Research Lead at GoSecure&lt;br /&gt;
&lt;br /&gt;
Laurent Desaulniers, Senior Security Solution Specialist at Bell Canada&lt;br /&gt;
&lt;br /&gt;
== NorthSec - Applied Security Event ==&lt;br /&gt;
[[Image:Nsec_2017_midi_conf.jpg]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/northsec-applied-security-event]] [https://speakerdeck.com/owaspmontreal/northsec-applied-security-event See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 April 4th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
NorthSec: La plus grande compétition et conférence en cyber sécurité au Canada&lt;br /&gt;
&lt;br /&gt;
NorthSec est un organisme sans but lucratif qui organise une conférence et une compétition de sécurité de type &amp;quot;Capture-The-Flag&amp;quot; (CTF) et des formations. Avec plus de 400 participants présents sur le site pour la compétition, c’est la plus grande compétition du genre au monde.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
La conférence, dans sa 3e année, attire des présentateurs internationaux avec du contenu technique exclusif. L’ajout des séances de travail (workshops) devrait plaire aux plus chevronnés des binaires.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Des formations de 3 jours sont offertes avant la conférence: &amp;quot;Advanced Web Application Security&amp;quot; par Philippe Arteau et &amp;quot;Malware and Memory Forensics&amp;quot; par Michael Ligh, co-auteur des livres &amp;quot;Malware Analyst Cookbook&amp;quot; et &amp;quot;The Art of Memory Forensics&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
NorthSec est situé au Marché Bonsecours dans le Vieux-Port de Montréal au printemps du 15 au 21 mai 2017.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
La présentation couvrira:&lt;br /&gt;
&lt;br /&gt;
- Le plan pour 2017&amp;lt;br /&amp;gt;&lt;br /&gt;
- Ce qui différencie NorthSec&amp;lt;br /&amp;gt;&lt;br /&gt;
- Comment équilibrer une compétition pour les débutants et les experts&amp;lt;br /&amp;gt;&lt;br /&gt;
- Comment bâtir une infrastructure basée sur les conteneurs qui gère 50 équipes dans quelques serveurs sans qu’ils ne se partagent de machines virtuelles&amp;lt;br /&amp;gt;&lt;br /&gt;
- Comment faire du pain au levain à grande échelle&amp;lt;br /&amp;gt;&lt;br /&gt;
- Présentation de quelques défis et solutions&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Les présentateurs:&lt;br /&gt;
&lt;br /&gt;
- Gabriel Tremblay, Président, Delve Labs&amp;lt;br /&amp;gt;&lt;br /&gt;
- Olivier Bilodeau, VP Formations, Co-fondateur MontréHack, GoSecure&amp;lt;br /&amp;gt;&lt;br /&gt;
- Pierre-David Oriol, VP Conférences, Delve Labs&amp;lt;br /&amp;gt;&lt;br /&gt;
- Benoit Guérette, VP Partenaires, Desjardins&amp;lt;br /&amp;gt;&lt;br /&gt;
- Laurent Desaulniers, Tisserand de drapeaux, Bell Canada&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Merci à nos précieux commanditaires !&lt;br /&gt;
&lt;br /&gt;
== Sécurité des applications : Les fondements ==&lt;br /&gt;
[[Image:Tanya.jpeg]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/securite-des-applications-les-fondements]] [https://speakerdeck.com/owaspmontreal/securite-des-applications-les-fondements See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 March 20th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
OWASP Montréal est fier d’accueillir au Midi Conférence du mois de mars, Mme Tanya Janca, Co-Leader du chapitre OWASP Ottawa et spécialiste de la sécurité applicative au sein du Gouvernement fédéral.&lt;br /&gt;
&lt;br /&gt;
La conférence « Les fondements de la sécurité des applications » sera présentée en anglais.&lt;br /&gt;
&lt;br /&gt;
Session Description : Everyone has heard about the problem; everyone is “getting hacked”. But what is the answer? From scanning your code with a vulnerability scanner to red teaming exercises, developer education programs and bug bounties, this talk will take the audience through all the possibilities of an extensive application security program, with a detailed explanation of each part.&lt;br /&gt;
&lt;br /&gt;
Bio : Tanya Janca is an application security evangelist, a web application penetration tester and vulnerability assessor, a secure code reviewer, an ethical hacker, the Co-Leader of the OWASP Ottawa chapter, and has been developing software since the late 90’s. She has worn many hats and done many things, including; Custom Apps, Ethical Hacking, COTS, Incident Response, Enterprise Architect, Project and People Management, and even Tech Support. She is currently helping the Government of Canada secure their web applications.&lt;br /&gt;
&lt;br /&gt;
Merci à notre commanditaire principal de cet événement: Ubitrak!&lt;br /&gt;
&lt;br /&gt;
== WORKSHOP ! Server Side Template Injection (SSTI) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-okiok-SSTI-r.jpg | WORKSHOP ! Server Side Template Injection (SSTI) ]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/workshop-server-side-template-injection-ssti]] [https://speakerdeck.com/owaspmontreal/workshop-server-side-template-injection-ssti See the slides / Voir la présentation]&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 22 Février 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Shopify Montréal&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
OWASP Montreal vous invite à un atelier portant sur la sécurité des applications web supportant les moteurs de template (Template Engine). Le principe de séparation entre la présentation du site (code HTML statique) et de son contenu dynamique facilite la création de documents HTML et la capacité à modifier l'apparence du site sans mélanger le traitement et le rendu de la page. L'utilisation de moteurs de template amène de nouveaux enjeux de sécurité. Les vulnérabilités de type Server Side Template Injection (SSTI) sont exploitables à travers les données (non fiables) fournies par l'utilisateur et conduisent à l'exécution de code arbitraire (RCE) sur le serveur hébergeant l'application web.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ce workshop a pour but d'introduire cette classe de vulnérabilité à travers différents cas d'implémentation (php, java, python).&lt;br /&gt;
Nous verrons comment identifier et exploiter ces vulnérabilités et de quelle manière un attaquant peut &lt;br /&gt;
s'y prendre pour exécuter du code arbitraire sur le serveur afin d'en prendre le contrôle.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Niveau : Intermédiaire&amp;lt;br /&amp;gt;&lt;br /&gt;
Matériel requis :&lt;br /&gt;
* Votre portable&lt;br /&gt;
* Votre distribution Linux/Unix de votre choix&lt;br /&gt;
* Votre proxy Web de votre choix&lt;br /&gt;
&lt;br /&gt;
Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
Places limitées. Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Shopify pour l'événement.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Présentateur : Gérôme Dieu&amp;lt;br /&amp;gt;&lt;br /&gt;
Gérôme Dieu cumule plus de 7 années d’expérience en technologies de l’information et en sécurité. &lt;br /&gt;
Il œuvre à titre de conseiller senior en sécurité de l’information au sein de la firme OKIOK. Ces dernières années, il a acquis une expertise dans le domaine de la sécurité des applications web aussi bien d'un point de vue offensif que défensif. En plus de réaliser des tests d’intrusion pour des clients internationaux, Gérôme s’implique dans la recherche et développement afin de maintenir à la fine pointe de la technologie les tests d'intrusion et d'analyse de vulnérabilités. &amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Merci à Shopify d'héberger l'événement !&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Shopify Logo-r.png| Shopify | link=https://www.shopify.com/]]&lt;br /&gt;
== Le courriel en 2017 – risques et menaces pour tous ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Zero spam 2.jpg|Le courriel en 2017 – risques et menaces pour tous]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://www.youtube.com/watch?v=HX2vcijcCWw ]] [https://www.youtube.com/watch?v=HX2vcijcCWw Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 Le 23 janvier 2017 à midi&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
Monsieur Poellhuber nous brossera un tableau du phénomène grandissant du rançongiciels et de l'hameçonnage, personnification.&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
- Par les années passées, la menace courriel se résumait principalement en un fort volume de contenu simplement indésirable. Aujourd’hui la menace a passablement évolué. Quels sont les véritables risques actuels associés au courriel ? Rançongiciels, hameçonnage, personnification. Cette conférence présentera les nouveaux défis de sécurité pour les organisations qui doivent composer avec des attaques de plus en plus sophistiquées et de plus en plus ciblées tout en protégeant leur réputation. Des exemples biens réels, drôles et moins drôles seront disséqués pour bien dessiner l’ampleur de l’enjeu.&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
M. David Poellhuber, Chef de l’exploitation, ZEROSPAM Sécurité Inc&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note biographique :&amp;lt;br /&amp;gt;&lt;br /&gt;
Monsieur David Poellhuber oeuvre dans l’industrie de la sécurité informatique depuis quinze ans. Il a été conférencier dans plusieurs forums de sécurité au Canada et est maintenant reconnu comme une autorité en matière de sécurité du courriel. Il a fondé ZEROSPAM Sécurité en 2003, le premier service Québécois externalisé de sécurité du courriel infonuagique qui se distingue par sa convivialité, son efficacité et ses technologies de détection proactives.&amp;lt;br /&amp;gt;&lt;br /&gt;
Audience :  Généralistes et spécialistes de la sécurité des TI &lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Merci à Ubitrack pour le repas et à Desjardins d'héberger l'événement!&lt;br /&gt;
&lt;br /&gt;
[[Image:Ubitrak-r2.jpg|Ubitrak|link=http://www.ubitrak.com/fr/]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&lt;br /&gt;
== Effective XSS Mitigation ==&lt;br /&gt;
&lt;br /&gt;
[[Image:XSS mitigation.jpg | Effective XSS Mitigation ]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=http://slides.com/olivierarteau/xss-mitigation ]] [http://slides.com/olivierarteau/xss-mitigation See the slides / Voir la présentation]&lt;br /&gt;
&lt;br /&gt;
WHEN &lt;br /&gt;
 18 Janvier 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Google Montréal&lt;br /&gt;
&lt;br /&gt;
FRANÇAIS/ENGLISH&amp;lt;br /&amp;gt;&lt;br /&gt;
La mitigation de XSS a été un sujet important au cours des dernières années. Les navigateurs ont implémenté, en autre, deux fonctionnalités pour mitiger leur impact : l'entête &amp;quot;XSS-Protection&amp;quot; et l'entête &amp;quot;Content-Security-Policy&amp;quot;. Par contre, obtenir une mitigation contre les XSS efficace est souvent plus complexe que l'on pense. Cet atelier couvrira les deux entêtes. Il expliquera comme il est possible de contourner ces protections et ce qu'il est possible de faire pour se protéger. Des exercices de type &amp;quot;offensif&amp;quot; et &amp;quot;défensif&amp;quot; seront proposés.&lt;br /&gt;
Mitigation for XSS as been an important topic in the last few years. Browsers have implemented two main functionalities to help mitigate the impact of XSS : the &amp;quot;XSS-Protection&amp;quot; header and the &amp;quot;Content-Security-Policy&amp;quot; header. But, getting an effective XSS mitigation of those headers is trickier than it may seem. This workshop will cover both of those headers. It will explain how bypass of those protection work and what you can do about it. It will have both &amp;quot;defensive&amp;quot; exercises and &amp;quot;offensive&amp;quot; exercises.&lt;br /&gt;
Niveau : débutant/intermédiaire&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Matériel requis :&lt;br /&gt;
&lt;br /&gt;
Votre portable&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
&lt;br /&gt;
Places limitées. Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Google pour l'événement.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Présentateur : Olivier Arteau&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Olivier Arteau est un professionnel en sécurité informatique depuis quelques années et fait partie de l’équipe de test d’intrusion de Desjardins. Il est aussi un amateur de CTF qui a gagné à plusieurs reprises le CTF du NorthSec avec l’équipe HackToute et participe fréquemment à d’autres CTF avec l’équipe DCIETS.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Merci à Google d'héberger l'événement! &lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-zap-4-r.jpg | Google | link=https://www.google.ca/ ]]&lt;br /&gt;
&lt;br /&gt;
== WORKSHOP ! Top 10 OWASP - Unleash the threats ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-top10.jpg | WORKSHOP! Top 10 OWASP - Unleash the threats ]]&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 30 novembre 2016 de 17h30 à 20h30&lt;br /&gt;
WHERE&lt;br /&gt;
 Immunio @ WeWork&lt;br /&gt;
&lt;br /&gt;
De nos jours, la sécurité applicative est essentielle dans l’écosystème des entreprises de toutes tailles. Les vecteurs d’attaques sont multiples, les vulnérabilités de sécurité dans les applications peuvent être désastreuses et les impacts d’un « Hack » peuvent être irréversibles pour l’entreprise; vols de données sensibles, perte de réputation, perte de $$$$$, etc.&lt;br /&gt;
L’objectif du workshop est de comprendre la base sur les vulnérabilités de sécurité dans les applications et les techniques d’exploitation utilisées par les pirates informatiques, en plus de connaître les bonnes pratiques de développement en matière de sécurité applicative. &lt;br /&gt;
Avec l'aide de WebGoat, Damn Vulnerable Web Application et de Kali Linux, vous pourrez participer&lt;br /&gt;
à l'exploitation des applications et découvrir les techniques utilisées par les attaquants.&lt;br /&gt;
&lt;br /&gt;
Niveau : débutant&lt;br /&gt;
&lt;br /&gt;
Matériel requis :&lt;br /&gt;
 Votre portable&lt;br /&gt;
 Kali Linux&lt;br /&gt;
 La VM du workshop, envoyée aux participants&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
&lt;br /&gt;
Places très limitées (nb = 10). Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Immunio &amp;amp; WeWork pour l'événement.&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Présentateur : Christian Leclerc&lt;br /&gt;
&lt;br /&gt;
Christian est spécialisé en conception et développement de solutions web sécuritaires. Tout au long de sa carrière, il a acquis une vaste expertise sur plusieurs types de technologies et méthodologies, intégré la sécurité dans le cycle de développement d’applications, effectué des revues de code sécurité, déployé des outils d’analyse des vulnérabilités et mis en place des systèmes d’authentification. De plus, il a participé à la conception et au développement de solutions sécuritaires de pointe comme la signature électronique à l’aide d’une infrastructure à clé publique (PKI), les authentifications fortes, le Registre des consentements au don d'organes et de tissus (RDOQ.org) et la migration de plusieurs applications web vers un environnement SOA (Service Oriented Architecture). &lt;br /&gt;
&amp;lt;br&amp;gt;Merci à Immunio &amp;amp; WeWork d'héberger l'événement!&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:Immunio-horizontal-r.png|Immunio|link=https://www.immun.io/]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[Image:Wework-r.jpg|WeWork|link=https://www.wework.com/]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Histoire d'un Hack ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Histoire-dun-hack-r.jpg | Histoire d'un Hack ]]&lt;br /&gt;
&lt;br /&gt;
WHEN &lt;br /&gt;
 21 novembre 2016 à midi&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
Pour son activité du mois de novembre, OWASP Montréal propose à la communauté de la sécurité des TI et aux gestionnaires de faire l'autopsie d'une attaque de haute voltige sur un site web et des outils mis à la disposition par OWASP.&lt;br /&gt;
 &lt;br /&gt;
Bernard Bolduc cumule plus de 17 années d’expérience en technologies de l’information et en sécurité. Il œuvre à titre de conseiller senior en sécurité de l’information au niveau d’entreprise de classe nationale et internationale.&lt;br /&gt;
 &lt;br /&gt;
Bernard se spécialise en sécurité Unix, applicative et en gestion de la sécurité des télécommunications. Il combine ces expertises techniques afin d’obtenir des résultats probants et efficaces pour ces clients des secteurs bancaire, télécommunication et multimédias, de l’énergie ou des services publiques. Tout au long de sa carrière, Bernard s’est toujours maintenu à jour sur les dernières menaces de sécurité technologique et commerciale en assistant à des formations spécialisées et d'échanger avec un grand nombre de partenaires dans l'industrie de la sécurité.&lt;br /&gt;
 &lt;br /&gt;
La conférence débute à midi.&lt;br /&gt;
 &lt;br /&gt;
La conférence vous donne droit à 1 CPE et pour les 50 premières personnes, un lunch gratuit.&lt;br /&gt;
 &lt;br /&gt;
Merci à Desjardins d'héberger l'événement!&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Workshop ! Création de votre première extension OWASP ZAP (ou BurpSuite) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-zap-mix.jpg | Workshop ! Création de votre première extension OWASP ZAP (ou BurpSuite)]]&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 11 novembre 2016 de 18h à 21h&lt;br /&gt;
&lt;br /&gt;
WHERE &lt;br /&gt;
 Google Montréal&lt;br /&gt;
&lt;br /&gt;
OWASP Zed Attack Proxy (ZAP) est un scanneur de vulnérabilités et un outil de débogage HTTP. Ce type d'outil est crucial dans un test d'intrusion web et contient un lot intéressant de fonctionnalités. Cela dit, il est possible d'étendre les fonctionnalités. Plusieurs types d'extension sont possibles : vue alternative pour les requêtes ou les réponses, scanneur passif des réponses, scanneur actif produisant des requêtes, etc.&lt;br /&gt;
&lt;br /&gt;
Plusieurs options seront données, par exemple :&lt;br /&gt;
&lt;br /&gt;
 Détection automatique de flag dans les sources&lt;br /&gt;
 Scanneur actif asynchrone DNS&lt;br /&gt;
 Ou votre propre idée&lt;br /&gt;
&lt;br /&gt;
Pour chacune des suggestions, des squelettes de code seront fournis pour les APIs de ZAP. Pour les utilisateurs de BurpSuite, des directives analogues seront également données.&lt;br /&gt;
&lt;br /&gt;
Niveau : débutant / intermédiaire&lt;br /&gt;
&lt;br /&gt;
Matériel requis&lt;br /&gt;
&lt;br /&gt;
 Votre portable&lt;br /&gt;
 [https://www.owasp.org/index.php/OWASP_Zed_Attack_Proxy_Project OWASP ZAP (gratuit)]&lt;br /&gt;
 [https://portswigger.net/burp/download.html BurpSuite]&lt;br /&gt;
 Éditeur de code pour Java, Python ou Ruby&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Présentateur : Philippe Arteau&lt;br /&gt;
&lt;br /&gt;
Philippe est un chercheur en cybersécurité chez GoSecure. Il est l'auteur de l'outil d'analyse statique Java &amp;quot;Find Security Bugs&amp;quot;. Il a découvert des vulnérabilités importantes dans les logiciels populaires tels que Google Chrome, Dropbox, Paypal, RunKeeper et Jira. Il a présenté dans différentes conférences incluant Black Hat USA, Black Hat Europe, ATL Sec Con, NorthSec, Hackfest (QC) et JavaOne. Il a développé de nombreux plug-ins pour les outils de proxy BurpSuite et OWASP ZAP (Retire.js, Reissue Request Script, PDF preview et Image Metadata). Il a fait également des contributions à d'autres plug-ins comme J2eeScan.&lt;br /&gt;
&lt;br /&gt;
Merci à Google d'héberger l'événement! &lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-zap-4-r.jpg | Google | link=https://www.google.ca/ ]]&lt;br /&gt;
&lt;br /&gt;
==Logiciel de rançon (Ransomware) s'attaque au domaine de la santé==&lt;br /&gt;
&lt;br /&gt;
[[Image:HackingHealth-2.jpg | Logiciel de rançon (Ransomware) s'attaque au domaine de la santé ]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/ransomware-and-healthcare-hacking-health ]] [https://speakerdeck.com/owaspmontreal/ransomware-and-healthcare-hacking-health See the slides / Voir la présentation]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;(Conférence en anglais)&lt;br /&gt;
Pour le lancement de la saison 2016 - 2017, OWASP Montréal propose à la communauté de la sécurité des TI et aux gestionnaires de la santé une incursion dans le monde du logiciel malveillant ciblant le domaine de la santé.&amp;lt;br /&amp;gt;&lt;br /&gt;
Cette conférence s'intége dans le Coopérathon co-organisé par le Mouvement Desjardins et Hacking Health.&amp;lt;/b&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Le domaine de la santé serait devenu une cible privilégiée des campagnes de ransomware parce que l'industrie a souvent payé la rançon demandée pour récupérer les données confidentielles et vitales de ses clients. Monsieur Ed Gershfang nous brossera un portrait du phénomène et des meilleures pratiques à mettre en place en matière de sécurité applicative.&lt;br /&gt;
Ed Gershfang possède une expérience solide dans l'infrastructure informatique et plus de 6 ans d'expérience dans les domaines de la sécurité de l'information, de la vulnérabilité, de la gouvernance et de la gestion des risques. Il était directeur de la sécurité pour la société PeriGen, un chef de file de développement de logiciels médicaux en Israël.&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== La sécurité applicative vue par un pentesteur ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Juin2016-OWASPMtl.jpg | OWASP Montréal reçoit Mario Contestabile, Pentester de renom ]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
From Left to Right : Isabelle Lusseyran, Head of Development at Hacking Health. Eduard Gershfang Information Security Analyst at WSP | Parsons Brinckerhoff.&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/owasp-montreal-recoit-mario-contestabile ]] [https://speakerdeck.com/owaspmontreal/owasp-montreal-recoit-mario-contestabile See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Pour clore la saison 2015 – 2016, OWASP Montréal est fier d’accueillir au Midi Conférence un des architectes de renom du développement applicatif au Canada, monsieur Mario Contestabile.&lt;br /&gt;
En tant qu’auteur de plusieurs centaines de tests d’intrusion, il connait tous les rouages de ce qu’est véritablement une application Web «sécurisée». Mais avez-vous déjà remarqué que les rapports de tests d’intrusion mentionnent rarement, voir jamais : «Votre site est très difficile à pirater. Félicitations !» ?&lt;br /&gt;
Et qu’en est-il de ces rapports qui contiennent des dizaines de soi-disant vulnérabilités ? Est-ce que cela signifie d’emblée que l’application devrait être mise hors ligne ?  &lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Lors de cette conférence, nous examinerons des rapports concrets (ambigus) de vulnérabilités et nous les analyserons afin de mieux comprendre si elles représentent une véritable menace, ou si elles ne servent qu’à «remplir» les rapports.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Avec son expertise en protection et en attaque d’applications Web, il abordera les points suivants :&lt;br /&gt;
Comment pouvez-vous sélectionner des systèmes de façon à mieux exécuter des protections de sécurité ?&lt;br /&gt;
Éviter certains pièges dans votre application Web qui rendent les attaques plus faciles et la protection plus difficile.&lt;br /&gt;
De nos jours, que peuvent faire les développeurs à l’intérieur de systèmes communs, qui puisse me rendre la tâche plus ardue en tant que « hacker »?&lt;br /&gt;
Pouvons-nous exiger de meilleurs rapports de la part des firmes de sécurité?&lt;br /&gt;
À quoi devrions-nous nous attendre de la part d’un « pentesters »?&lt;br /&gt;
Comment pouvons-nous savoir si le « pentester » a vérifié les failles de l’application et qu’il n’a pas simplement utilisé un scanneur?&lt;br /&gt;
Et enfin, comment pouvons-nous aider les « ethical hackers » à obtenir un meilleur rendement lors d’un test d’intrusion?&lt;br /&gt;
Il expliquera le sujet en détails, et ensemble, nous verrons de quelles façons les développeurs d’applications peuvent exploiter le savoir-faire des « pentesters », et comment nous pouvons faire en sorte qu’une application Web soit protégée.&lt;br /&gt;
Biographie :&lt;br /&gt;
Mario Contestabile est reconnu comme l’un des experts en sécurité les plus réputés au Canada. Son expertise, construire et protéger votre plateforme applicative. Ancien développeur C++ et Java, Mario partage ses nombreuses connaissances en « ethical hacking » et en développement de codes sécurisé.  &lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Tuesday, 14 June 2016 from 12:00 PM to 1:00 PM (EDT) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Comment protéger les applications mobiles? ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Avril2016-OWASPMtl.png | Comment protéger les applications mobiles? ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/comment-proteger-les-applications-mobiles ]] [https://speakerdeck.com/owaspmontreal/comment-proteger-les-applications-mobiles See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Dans le cadre des Midis Conférence à l'Espace Desjardins, l'équipe OWASP Montréal vous invite à assister à une présentation sur les vulnérabilités les plus communes associées aux appareils mobiles. &lt;br /&gt;
Marie-Claire Willig détaillera entre autres comment stocker de façon sécuritaire les données de l’application mobile ainsi que protéger l’application contre des attaques externes. Des outils simples vous seront dévoilés pour détecter ces vulnérabilités.&lt;br /&gt;
Marie-Claire est une professionnelle d'expérience en sécurité appliquée.&lt;br /&gt;
Une grande partie de son intérêt professionnel réside actuellement dans un domaine assez niche, soit la revue de code sécuritaire, un fondement important de tout cycle de développement sécuritaire en entreprise.&lt;br /&gt;
Au sein de l'équipe de sécurité technologique Desjardins, elle est, en autre, responsable de former les développeurs (Java et .NET principalement) afin de les sensibiliser aux meilleures pratiques de développement sécuritaire.&lt;br /&gt;
Également, elle est une professionnelle des tests d'intrusion sur les applications web, les applications mobiles ainsi que l'infrastructure réseau.&lt;br /&gt;
Bienvenue à tous&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 20 April 2016 from 12:15 PM to 1:00 PM (EDT) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== NorthSec, Le plus gros événement de cybersécurité appliquée au Canada ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Mars2016-OWASPMtl.jpg | NorthSec, Le plus gros événement de cybersécurité appliquée au Canada ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/YQtvltQYs7Y]] [https://youtu.be/YQtvltQYs7Y Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
OWASP Montréal est fier d’inviter au Midi Conférence de mars, NorthSec est le plus gros événement de sécurité appliquée au Canada qui comprend deux jours de formation, deux jours de conférences ainsi qu’une compétition du genre « capture the flag » (CTF) de trois jours.&lt;br /&gt;
Gabriel Tremblay, Benoit Guerette, Pierre-David Oriol et Laurent Desaulniers viendront vous parler de cet organisme sans but lucratif dynamique qui est géré par une équipe de bénévoles passionnés qui donnent à chaque année leur énergie et leur temps pour soutenir la communauté de la sécurité de l’information.&lt;br /&gt;
Le volet compétition, l’épreuve maîtresse, est présentée sous forme d’un scénario qui rend cohérent une centaine de défis techniques. Les équipes de participants attaquent l’infrastructure de compétition pour soutirer des drapeaux (flags) à travers un ensemble de vulnérabilités présentes comme de l’injection SQL, des XSS ou encore l’exploitation d’exécutables sur systèmes embarqués. Quelques exemples de défis des années passées seront également présentés.&lt;br /&gt;
Le volet conférence, qui est à sa 2ème année, met de l’avant plusieurs présentations techniques touchant la sécurité applicative mais aussi l’éthique et leurs impacts sociaux. Certaines présentations confirmées seront dévoilés.&lt;br /&gt;
Le tout nouveau volet formation propose deux formations en sécurité applicative de calibre international (anglais) : “Advanced Web Security Testing with Burp Pro” et “Modern Object-Oriented Malware Reverse Engineering”.&lt;br /&gt;
Venez aussi, découvrir comment l'équipe est partie d'une idée en 2012 pour se rendre à un évènement d'envergure, qui rassemblera plus de 600 professionnels, étudiants et autres passionnés de sécurité appliquée lors de la 4ème édition qui aura lieu du 17 au 22 mai 2016 au Marché Bonsecours.&lt;br /&gt;
Finalement, la mission, la vision ainsi que les activités sociales de la semaine de NorthSec sont aussi au menu de cette présentation qui sera suivie d’une période de questions.&lt;br /&gt;
&lt;br /&gt;
Gabriel Tremblay, Delve Labs, Président&lt;br /&gt;
Benoit Guerette, Desjardins, VP Finances&lt;br /&gt;
&lt;br /&gt;
Pierre-David Oriol, Delve Labs, VP Conférence&lt;br /&gt;
Laurent Desaulniers, Bell Canada, Artisant de drapeaux&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 23 March 2016 from 12:00 PM to 1:00 PM (EDT) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== La sécurité applicative et l'hameçonnage - February 24th ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Fevrier2016-OWASPMtl.jpg | La sécurité applicative et l'hameçonnage ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/1RYlOiIENjQ]] [https://youtu.be/1RYlOiIENjQ Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
De nos jours, une des méthodes les plus efficaces pour contourner les périmètres de sécurité externes est l'hameçonnage conjointement avec l’abus de certaines technologies Web.&lt;br /&gt;
&lt;br /&gt;
Dans le cadre ses activités, OWASP Montréal est heureux d'inviter d'accueillir, l'équipe OKIOK qui présentera les impacts liés à ce type d'attaque, tel que vu et expérimenté en entreprise ainsi que les plans d'action pour traiter ces risques. La présentation abordera aussi bien la sécurité web et applicatives, des systèmes informatiques ainsi que de la sécurité physique de centres de données. &lt;br /&gt;
&lt;br /&gt;
    Capture d'informations sensibles par imitations de portails Web ;&lt;br /&gt;
    Authentification Web par 2-facteurs ;&lt;br /&gt;
    Injection SMTP dans des formulaires Web ;&lt;br /&gt;
    Attaque de type “Drive-by-download”;&lt;br /&gt;
    Prise de contrôle à distance à travers des flux HTTP;&lt;br /&gt;
    Attaque de CSRF à partir de courriels ;&lt;br /&gt;
    Attaque d'hameçonnage basée sur des achats par Internet (ex : PayPal).&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
When&lt;br /&gt;
 Wednesday, 24 February 2016 from 12:00 PM to 1:15 PM (EST) - Add to Calendar &lt;br /&gt;
Where&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest Montreal, Quebec CA&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Internet of {Things, Threats} - January 20th ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Janvier2016-OWASPMtl-R.png | Internet of {Things, Threats} ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=http://gosecure.github.io/presentations/2016-01-20_owasp-mtl/internet-of-threats.html ]] [http://gosecure.github.io/presentations/2016-01-20_owasp-mtl/internet-of-threats.html See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
De plus en plus de périphériques se retrouvent connectés sur Internet. Sous la bannière &amp;quot;Internet of Things&amp;quot; (IoT) ces équipements, que ce soit une pompe à insuline ou un système de caméra de sécurité, tournent généralement sous un système GNU/Linux embarqué d'architecture MIPS ou ARM. La difficulté de mettre à jour ces équipements ainsi que le peu d'effort mis dans la sécurité des systèmes ou la sécurité applicative en font des cibles de choix. Ces derniers mois, nous avons analysé plusieurs logiciels malveillants ciblant ces architectures. Que ce soit par l'exploitation d'une vulnérabilité (Shellshock) ou encore un défaut de configuration, ces systèmes exposés sur Internet peuvent être compromis.&lt;br /&gt;
&lt;br /&gt;
Notre présentation couvrira quelques une de ces analyses:&lt;br /&gt;
&lt;br /&gt;
* Linux/Moose, un malware se propageant automatiquement qui fraude les réseaux sociaux (par exemple Facebook, Twitter et YouTube)&lt;br /&gt;
* LizardSquad et acteurs étrangers qui utilisent des systèmes embarqués compromis pour réaliser des dénis de service distribué (DDoS) &lt;br /&gt;
* Win32/RBrute est un logiciel malveillant qui tente de changer les paramètres de routeurs dans le but de faire du &amp;quot;DNS poisoning&amp;quot;. Il a été distribué par le populaire botnet Sality.&lt;br /&gt;
* Un kit d'exploits qui utilise seulement le navigateur de leur victime avec le même objectif, c'est-à-dire faire du &amp;quot;DNS poisoning&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Enfin, des conseils seront proposés à l'audience pour l'aider à se protéger de ces menaces.&lt;br /&gt;
&lt;br /&gt;
'''Thomas Dupuy''' (twitter: @nyx__o)&lt;br /&gt;
&lt;br /&gt;
Thomas est chercheur en logiciel malveillant chez ESET Canada Recherche. Bon vivant, Thomas déjeune en &amp;quot;reversant&amp;quot; des binaires, contribue à quelques projets open source durant le diner (yara, yara rules, pefile, APTnotes) et la nuit participe à des &amp;quot;Hacking Games&amp;quot; (Capture The Flag). Curieux de nature Thomas analyse des malware aux architectures &amp;quot;exotiques&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Olivier Bilodeau''' (twitter: @obilodeau)&lt;br /&gt;
&lt;br /&gt;
Olivier Bilodeau is the head of Cybersecurity Research at GoSecure a consultancy firm specializing in cybersecurity services for the public and private sector. With more than 10 years of infosec experience, Olivier worked on Unix servers at Bell Canada, managed a portion of Air Canada's network, wrote open source network access control software at Inverse and worked as a Malware Researcher at ESET. He likes to reverse engineer everything that crosses his path, participate in information security capture-the-flag competitions, hack open source code and brew beer. He has spoken at various conferences (Defcon, Botconf, VirusBulletin, Derbycon, ...), used to lecture on information security at ETS University in Montreal, drives the NorthSec Hacker Jeopardy and co-organizes the MontreHack capture-the-flag training initiative. His primary research interests include reverse-engineering tools, Linux and/or embedded malware and honeypots.&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Survivre aux attaques DDOS applicatives ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Decembre2015-OWASPMtl.jpg | Survivre aux attaques DDOS applicatives ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Survivre aux attaques DDOS (Distributed Denial-Of-Service) applicatives.&lt;br /&gt;
Cette conférence s'adresse aux professionnels et gestionnaires des TI.&lt;br /&gt;
Conférencier : Christian Shink, ing., CSSLP, ingénieur système chez Radware, manufacturier spécialisé dans la prévention des attaques DDOS. Il fut également consultant en sécurité applicative chez In Fidem.&lt;br /&gt;
Objectifs de la conférence:&lt;br /&gt;
Présenter les tendances actuelles en matière d'attaques DDOS applicatives.&lt;br /&gt;
Renseigner les participants sur les techniques et stratégies pour contrer ces attaques illustrées à partir de cas vécus.&lt;br /&gt;
Démystifier certains mythes en ce qui concernent les façons efficaces de protéger les applications contre des attaques DDOS.&lt;br /&gt;
Date : 16 décembre 2015&lt;br /&gt;
Heure : 11h45&lt;br /&gt;
La conférence débute à 12h00 et se termine à 12:55.&lt;br /&gt;
Un lunch sera servi.&lt;br /&gt;
Réservez maintenant!&lt;br /&gt;
1 CPE&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 16 December 2015 from 11:45 AM to 1:00 PM (EST) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec &lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Sécurité des applications - Systèmes de contrôles industriels ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Novembre2015-OWASPMtl-R.png | Sécurité des applications - Systèmes de contrôles industriels ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/0eAZpyiQQ9A]] [https://youtu.be/0eAZpyiQQ9A Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&lt;br /&gt;
La sécurité des applications et les systèmes de contrôles industriels.&lt;br /&gt;
Cette conférence s'adresse aux professionnels et gestionnaires des TI desinfrastructures critiques qui exploitent ou gèrent des systèmes de contrôles industriels(SCI) et SCADA (surveillance et d'acquisition de données).&amp;lt;br /&amp;gt;&lt;br /&gt;
Conférenciers : Robert Nastas, CSSA. Gestionnaire de projet et Youssef Jad, Architecte Cyber sécurité, ICS-CERT&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Objectifs de la conférence:&lt;br /&gt;
* Démystifier le domaine d'affaires.&lt;br /&gt;
* Renseigner les participants sur les bonnes pratiques de sécurité desapplications liées au secteur industriel.&lt;br /&gt;
* Proposer aux professionnels et gestionnaires des TI responsables dessystèmes SCADA et SCI des pistes de solutions aux enjeux de sécurité.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
L'équipe OWASP Montréal vous remercie d'avoir assisté en grand nombre à la conférence, 'La sécurité des applications et les systèmes de contrôles industriels'.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 18 November 2015 from 11:45 AM to 1:00 PM (EST) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Les préoccupations actuelles de hauts dirigeants en matière de cybersécurité et de sécurité applicative ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Septembre2015-OWASPMtl.jpg | Les préoccupations actuelles de hauts dirigeants en matière de cybersécurité et de sécurité applicative ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/un-regard-sur-la-securite-de-linformation-en-2015-par-eric-hebert ]] [https://speakerdeck.com/owaspmontreal/un-regard-sur-la-securite-de-linformation-en-2015-par-eric-hebert See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Pour le lancement des activités corporatives de la saison 2015 - 2016, le 8 septembre prochain à 12:00, l'équipe OWASP Montréal convie les gestionnaires et artisants de la sécurité des TIC à venir entendre monsieur Éric Hébert qui nous présentera son interprétation des préoccupations actuelles de hauts dirigeants en matière de cybersécurité et de sécurité applicative. L'événement se tiendra au complexe Desjardins à la salle &amp;quot;Espace Desjardins&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
''' ÉRIC G. HÉBERT, CISM, CISSP ''' &amp;lt;br /&amp;gt;&lt;br /&gt;
Après plus de 20 ans passés dans le domaine de la sécurité des technologies de l’information, Éric se spécialise dans la mise en œuvre et la gestion d'équipes performantes, capables de relever les plus hauts défis de la cybersécurité moderne.&amp;lt;br /&amp;gt;&lt;br /&gt;
Capable de dialoguer avec les hauts dirigeants, il sait traduire et vulgariser les enjeux techniques complexes tout en respectant la nature et l'appétence au risque de ses clients. Dynamique et pourvu d'une expérience couvrant presque toutes les sphères de la SI, il fonce dans le respect de la culture établie tout en implantant des solutions pragmatiques et efficaces.&amp;lt;br /&amp;gt;&lt;br /&gt;
Depuis plus de 10 ans, il gravite principalement autour des entreprises du domaine financier (BNC, Desjardins, Fonds de solidarité FTQ...) et les accompagne dans la mise en place de solutions efficaces tenant compte à la fois des risques et des budgets.&lt;br /&gt;
En plus d’avoir fondé de nombreuses associations telles que le RéseauSécurIT et le RPSI, il maintient une présence régulière auprès des milieux associatifs professionnels et partage régulièrement ses expériences lors de conférences et d'entrevues avec divers médias.&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Events / Évènements =&lt;br /&gt;
&lt;br /&gt;
== Owasp Montreal at [https://nsec.io/ NorthSec 2017] ==&lt;br /&gt;
&lt;br /&gt;
[[Image:NorthSec2017-5.jpg]]&lt;br /&gt;
[[Image:NorthSec2017-6.jpg]]&lt;br /&gt;
&lt;br /&gt;
From Left to Right: Anne Gauthier, OWASP Montréal Chapter Leader (President) and Application Security Analyst at GoSecure, Hugo Genesse, OWASP Montréal Chapter Leader and Research Intern at PNF Software, Julien, OWASP Montréal Chapter Leader&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal at [https://2017.appsec.eu/ AppSec] ==&lt;br /&gt;
&lt;br /&gt;
[[Image:OWASPAppSecBelfast2017-7.jpg]]&lt;br /&gt;
&lt;br /&gt;
OWASP Montreal and Ottawa Chapter Leaders at OWASP AppSec Belfast, UK #WomenInAppSec&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal at [https://hackfest.ca/ HackFest 2016] ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hackfest2016-r.jpg| HackFest |link=https://hackfest.ca/]]&lt;br /&gt;
&lt;br /&gt;
From left to right: Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Louis Nadeau, OWASP Québec Chapter Leader and Manager, Product Security at Bentley Systems and Patrick Leclerc, OWASP Québec Chapter Leader and Information Security Advisor at La Capitale.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal at OWASP [https://2016.appsecusa.org/ AppSec USA 2016, Washington] ==&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:OWASPMtl-AppSecUSA2016-Washington.jpg | OWASP Montreal at AppSec USA 2016, Washington]] &lt;br /&gt;
&lt;br /&gt;
​From left to right: Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Marie-Claire Willig, Application Security Analyst at Desjardins, Speaker and Cofounder of the Roslyn Security Guard tool which will be presented at Blackhat 2016, Alexandre Hamelin President at Synlabs Consulting Inc., Jonathan Marcil, Application Security Engineer at Blizzard Entertainment and former OWASP Montreal Chapter Leader. Philippe Arteau, Cybersecurity Researcher at GoSecure and designer of [https://find-sec-bugs.github.io/ Find Security Bugs] and Roslyn Security Guard tool which will be presented at Blackhat 2016.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://www.gosec.net GoSec] 2016 ==&lt;br /&gt;
&lt;br /&gt;
[[Image:OWASP-GoSec2016-1r.jpg|OWASP Montreal at GoSec 2016]] [[Image:OWASP-GoSec2016-2r.jpg|OWASP Montreal at GoSec 2016]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
From left to right : Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Simon Lacasse, student and volunteer, and Laurent Desaulniers, Security Analyst at Bell Canada.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://www.nsec.io/ NorthSec] 2016 – Annual Applied Security Event ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hackfest2016-OWASPMtl.jpg|OWASP Montreal at NorthSec 2016]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Simon Veilleux &lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
From left to right : Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Olivier Arteau OWASP Montréal Chapter Leader and Conseiller chez Groupe Technologie Desjardins, Hugo Genesse, OWASP Montréal Chapter Leader and Vulnerability Research Intern at Wurldtech Security Technologies.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://hackfest.ca/en/ Hackfest] 2015 ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hackfest2015-OWASPMtl-R.JPG | OWASP Montreal at Hackfest 2015]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Hackfest &lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
From left to right : Jonathan Marcil, Application Security Engineer at Blizzard Entertainment and former OWASP Montreal Chapter Leader. Philippe Arteau, Cybersecurity Researcher at GoSecure and designer of [http://find-sec-bugs.github.io/ Find Security Bugs] and Roslyn Security Guard tool which will be presented at Blackhat 2016. &lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/8U0qkEuUFy8]] [https://youtu.be/8U0qkEuUFy8 Watch the video / Regarder la vidéo]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://www.gosec.net/ GoSec] 2015 – The Annual Cybersecurity Conference presented by GoSecure, EY and ISACA. ==&lt;br /&gt;
&lt;br /&gt;
[[Image:GoSec2015-OWASPMtl.jpg|OWASP Montreal at GoSec 2015]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
From left to right : Marie-Claire Willig, Application Security Analyst at Desjardins, Speaker and Cofounder of the Roslyn Security Guard tool which will be presented at Blackhat 2016. Benoît Guérette, Application Security Team Leader at Desjardins, VP Finance at NorthSec and OWASP Montreal Chapter Founder and Former Chapter Leader.&lt;br /&gt;
&lt;br /&gt;
== See also / Voir aussi ==&lt;br /&gt;
&lt;br /&gt;
OWASP Montréal recommends Montréhack. Learn and share knowledge on IT security by solving technical challenges. Third Monday of every month. &lt;br /&gt;
&lt;br /&gt;
OWASP Montréal recommende Montréhack. Apprends et partages des connaissances sur la sécurité informatique en travaillant des problèmes appliqués. Chaque troisième lundi du mois. &lt;br /&gt;
&lt;br /&gt;
[[File:Montrehack.png|Montréhack|link=http://montrehack.ca/|alt=Montréhack]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Archives 2007-2015 =&lt;br /&gt;
{{:Montreal chapter past meetings}}&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - February 3rd - Getting to Know the Software Assurance Marketplace (SWAMP) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/p4_vjufcB6Q]] [https://youtu.be/p4_vjufcB6Q Watch the conference / Regarder la conférence]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/getting-to-know-the-software-assurance-marketplace-swamp-by-pat-beyer]] [https://speakerdeck.com/owaspmontreal/getting-to-know-the-software-assurance-marketplace-swamp-by-pat-beyer See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Pat Beyer&lt;br /&gt;
*'''ADDITIONAL PRESENTER:'''  Abe Megahed&lt;br /&gt;
*'''ABSTRACT:''' The Software Assurance Marketplace (SWAMP) is an open facility that is designed, built, and operated by four research institutions. The SWAMP provides no-cost access to an array of open-source and commercial software analysis tools. This presentation will provide an overview and demo of the SWAMP, including our goals, intended audience, current capabilities, and future plans. We will cover our relationship with OWASP, incorporation of open-source software assurance tools, and status as an open-source project and resource available to the software community. Visit https://continuousassurance.org/ to learn more about us.&lt;br /&gt;
*'''BIO:''' Pat Beyer serves as the Product Manager for the Software Assurance Marketplace (SWAMP). With over 25 years of experience successfully managing multi-million dollar global projects, Beyer’s expertise extends to the IT, construction, and operations sectors, with a specialization in managing government contracts and grants. A gifted communicator, Beyer is a sought after speaker due to his ability to deliver complex information about technology products and services in a way that is easily understood. He is a decorated combat veteran of the Global War on Terror, the international military campaign that started following the 9/11 terrorist attacks on the United States. In 2004, he constructed and rehabilitated over 20 schools, clinics, and water treatment plants for the Iraqi people using local contractors. Beyer also holds a Bachelor of Science, a Masters in Business Administration, a Ph.D. in Organization and Management, and a Project Management Professional (PMP) certification.&lt;br /&gt;
*'''BIO:''' Abe Megahed is a web developer for the Software Assurance Marketplace. In previous lifetimes, he has been a computer graphics researcher, a game programmer, a programming language and compiler nerd, a dot com company founder, a creator of helicopter simulations, and a developer of 3D simulations for NASA astronaut crew training.&lt;br /&gt;
*'''WHEN:'''  Tuesday, February 3rd 2015&lt;br /&gt;
*'''WHERE:''' Room PK-1140 - UQAM Pavillon Président-Kennedy, 201 Avenue du Président-Kennedy  J2X 3Y7&lt;br /&gt;
*'''REGISTRATION:''' https://owaspmtlswamp2015.eventbrite.ca&lt;br /&gt;
*'''WEBCAST:''' https://www.youtube.com/watch?v=p4_vjufcB6Q&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/getting-to-know-the-software-assurance-marketplace-swamp-by-pat-beyer&lt;br /&gt;
&lt;br /&gt;
*'''ACADEMIC PARTNER:''' AGEEI-UQAM - http://www.ageei.org/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Welcome speech by Chapter Leader (Jonathan Marcil)&lt;br /&gt;
  18:30-20:00 Main session: Getting to Know the Software Assurance Marketplace&lt;br /&gt;
  20:00-...   End of the meeting&lt;br /&gt;
&lt;br /&gt;
[[Image:SWAMP-Logo-Final-Med.png|300px|link=https://continuousassurance.org/]]&lt;br /&gt;
[[Image:Ageeilogo.jpg|200px|link=http://www.ageei.org/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - 4 décembre - Malware côté serveur — évolution, méthodes d’opération et forensic Linux ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/lo8WDl-WQ3E]] [https://youtu.be/lo8WDl-WQ3E Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/malware-cote-serveur-par-marc-etienne-m-dot-leveille]] [https://speakerdeck.com/owaspmontreal/malware-cote-serveur-par-marc-etienne-m-dot-leveille See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''PRÉSENTATEUR PRINCIPAL:''' Marc-Etienne M.Léveillé&lt;br /&gt;
*'''RÉSUMÉ:''' Les logiciels malveillants ciblant les serveurs ont évolué. Ils sont utilisés par des groupes de cybercriminels organisés dans le but de faire du profit via des redirections web et l’envoie de pourriels. La présentation portera sur Opération Windigo, une opération malveillante qui a affecté plus de 25 000 serveurs dans le monde. Après une brève description des composantes de Windigo, nous verrons comment les opérateurs déploient leurs logiciels malveillants et surveille leur réseau de serveurs infectés. Des trucs pratiques pour faire de la forensics sur des systèmes Linux seront donnés. Cette présentation est une suite à la présentation &amp;quot;Linux/Cdorked: Server side malware&amp;quot;, donnée par Olivier Bilodeau à OWASP Montréal en 2013. La présentation sera en français avec des diapositives en anglais (aka Montreal-style).&lt;br /&gt;
*'''BIO:''' Marc-Etienne est un chercheur en logiciel malveillant chez ESET depuis 2012. Il se spécialise dans les logiciels malveillants qui s’attaquent à des plateformes inhabituelles comme aux produits fruités et aux oiseaux nordiques. Dernièrement, il passe beaucoup de son temps à faire la rétro-ingénierie de logiciels malveillants sur des serveurs Linux et s’intéresse à leurs méthodes d’opération. Il adore participer de façon collégiale aux CTFs avec ses amis les CISSP Groupies et jouer de la clarinette. Il tweet très peu à @marc_etienne_.&lt;br /&gt;
*'''QUAND:''' 4 décembre 2014 à 18h00&lt;br /&gt;
*'''OÙ:''' Local M-1510, Polytechnique Montréal, 2900 Boulevard Edouard-Montpetit&lt;br /&gt;
*'''INSCRIPTION:''' https://www.eventbrite.ca/e/owasp-montreal-4-decembre-malware-cote-serveur-evolution-methodes-doperation-et-forensic-linux-tickets-14635313617&lt;br /&gt;
*'''ÉQUIPE ACADÉMIQUE:''' Polyhack - http://polyhack.org/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
&lt;br /&gt;
 18:00-18:30 Réseautage&lt;br /&gt;
 18:30-18:35 Mot de bienvenue par le leader du chapitre (Jonathan M.)&lt;br /&gt;
 18:35-19:30 Présentation principale : Malware côté serveur&lt;br /&gt;
 19:30-20:00 Période de questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Polyhacklogonoirpetit.png|200px|link=http://polyhack.org/]]&lt;br /&gt;
[[Image:LogoPolytechnique.gif|link=http://www.polymtl.ca/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - October 23rd - XXE : À l’assaut des analyseurs XML ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/MZviLB9-42E]] [https://youtu.be/MZviLB9-42E Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/xxe-a-lassaut-des-analyseurs-xml-par-philippe-arteau]] [https://speakerdeck.com/owaspmontreal/xxe-a-lassaut-des-analyseurs-xml-par-philippe-arteau See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''PRÉSENTATEUR PRINCIPAL:''' Philippe Arteau&lt;br /&gt;
*'''RÉSUMÉ:''' L'utilisation d’XML est fortement répandue. Le format est utilisé pour des fichiers de configuration, pour des métadonnées, pour des documents textes, et bien plus. La prise en charge de fichiers XML n’est pas sans risque. La plupart des analyseurs XML ne sont pas sécuritaires par défaut pour le traitement de fichier externe. Cette présentation fera un survol des vulnérabilités de type « Xml eXternal Entity » et de l’étendue des risques pour différents langages de programmation. Plusieurs démonstrations sont prévues.&lt;br /&gt;
*'''BIO:''' Philippe est conseiller en sécurité applicative pour le Groupe Technologies Desjardins. Au quotidien, il s’occupe d’effectuer des tests d’intrusions et des revues de code. Il a découvert des vulnérabilités importantes dans plusieurs logiciels populaires incluant Google Chrome, DropBox, ESAPI et Jira.&lt;br /&gt;
*'''QUAND:'''  23 Octobre 2014 à 18h00&lt;br /&gt;
*'''OÙ:''' École de Technologie Supérieure Local A-3230, 1100 Rue Notre-Dame Ouest, Montréal, QC H3C 1K3&lt;br /&gt;
*'''INSCRIPTION:''' http://www.eventbrite.ca/e/owasp-montreal-23-octobre-xxe-a-lassaut-des-analyseurs-xml-tickets-13426881163&lt;br /&gt;
*'''PARTENAIRE ACADÉMIQUE:''' ETS - DCI http://dciets.com/&lt;br /&gt;
*'''PROGRAMME:''' &lt;br /&gt;
&lt;br /&gt;
 18:00-18:30 Réseautage&lt;br /&gt;
 18:30-18:45 Mot de bienvenue&lt;br /&gt;
 18:45-19:45 Présentation principale - &amp;quot;À l’assaut des analyseurs XML&amp;quot; Philippe Arteau&lt;br /&gt;
 19:45-20:00 Période de questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Blason_dci.png‎‎‎|150px|link=http://dciets.com/]]&lt;br /&gt;
[[Image:ETS-rouge-devise-impr-fond_transparent.png|150px|link=http://www.etsmtl.ca/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - July 24th - Web security for DevOps: the glory is in the headers ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/6bp1NCLT-YQ]] [https://youtu.be/6bp1NCLT-YQ Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/web-security-for-devops-the-glory-is-in-the-headers-by-jonathan-marcil]] [https://speakerdeck.com/owaspmontreal/web-security-for-devops-the-glory-is-in-the-headers-by-jonathan-marcil See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Jonathan Marcil&lt;br /&gt;
*'''ABSTRACT:''' DevOps is a buzzword which can be easily demystified: in essence it is a process which aims to combine the development and system administration process into one; Operations. As developers become responsible for server setup, security counter measures are evolving as well. The line between server configuration and application behaviour has been blurred. In this talk we will cover some HTTP headers in regards to security such as CORS, CSP and HSTS. We will demonstrate several forms of attack, and how they can (should) be countered.&lt;br /&gt;
*'''BIO:''' Jonathan is devoted to security and specialized in Web application security.  His main occupation is consulting in Web security, but deep down he is a developer with a agnostic vision of programming languages. He has a diploma in Software Engineering from Ecole de Technologie Superieure and more than 10 years of experience in Information Technology and Security.&lt;br /&gt;
*'''WHEN:'''  At noon on July 24th 2014&lt;br /&gt;
*'''WHERE:''' 75 Queen Street, office 3100, Montreal, QC H3C 2N6&lt;br /&gt;
*'''REGISTRATION:''' You can join us on site for a pizza slice but this is mainly an online event. Contact jonathan.marcil@owasp.org.&lt;br /&gt;
*'''WEBCAST:''' https://www.youtube.com/watch?v=6bp1NCLT-YQ&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/web-security-for-devops-the-glory-is-in-the-headers-by-jonathan-marcil&lt;br /&gt;
*'''EVENT SPONSOR:''' Pheromone http://www.pheromone.ca/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  12:00-12:10 Welcome and quick OWASP introduction&lt;br /&gt;
  12:10-13:10 Main presentation - &amp;quot;Web security for DevOps: the glory is in the headers&amp;quot; Jonathan Marcil&lt;br /&gt;
  13:10-... Open discussion and questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Logo-phero.gif‎|link=http://www.pheromone.ca/]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - June 18th - Gaps in the Clouds ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/gaps-in-the-clouds-by-robert-fritz]] [https://speakerdeck.com/owaspmontreal/gaps-in-the-clouds-by-robert-fritz See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Robert Fritz&lt;br /&gt;
*'''ABSTRACT:''' Cloud technology offers agility and scaling, and a chance to break away from legacy IT choices.  Unfortunately, skipping traditional IT activities often results in poorly patched systems, out of date firewalls, and overprovisioned entitlements wielded by admins whose “day job” is development.  Boundaries of accountability and responsibility amongst cloud providers and consumers are confusing, vague, and shift, making security difficult to manage.  In such an environment, a “BP-spill” event, where cost wins over safely safety, is likely.  This talk will dive down into the cracks between the layers of cloud, and share some of the exciting dirt we have seen and expect to see in coming years.”&lt;br /&gt;
*'''BIO:''' Robert Fritz has been practicing security his entire career. Rob started as an Air Force lieutenant at Langley AFB and later at the Pentagon in Washington DC, building and managing classified networks. Finding he was getting too far from technology after a brief stint flying, he left the military to get back to the tech, and built security tools for HP in their HP-Unix lab.  Over time he found himself in more and more security design discussions, so co-authored HP’s Commercial Application Threat Analysis Methodology, building an internal consulting practice at HP.  This quantitative approach, led to two pending patents, an external-facing consulting practice, and his contributions to NIST IR-7502, the Common Configuration Scoring System (CVSS follow-on).  He is the former lead editor for the Center for Internet Security’s HP-UX Benchmark, and current lead for the Android Benchmark.  Robert now works for Morgan Stanley as global head of the Strategic Consulting team in the Security Architecture group, and leads the team’s cloud and social-media security practices.&lt;br /&gt;
*'''WHEN:''' June 18th 2014&lt;br /&gt;
*'''WHERE:''' 700 Rue Wellington, Floor 2, Montreal, QC H3C 3S4&lt;br /&gt;
*'''REGISTRATION:''' http://owaspmtl18junems.eventbrite.ca&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/gaps-in-the-clouds-by-robert-fritz&lt;br /&gt;
*'''EVENT SPONSOR:''' Morgan Stanley http://www.morganstanley.com/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:30 Networking and Morgan Stanley Hosted Pizza and Soft Drinks&lt;br /&gt;
  18:30-18:45 OWASP Chapter &amp;amp; Morgan Stanley Welcome&lt;br /&gt;
  18:45-19:45 Main presentation - &amp;quot;Gaps in the Clouds&amp;quot; Robert Fritz&lt;br /&gt;
  19:45-20:00 Open discussion and questions&lt;br /&gt;
  20:00-...   Optional, informal networking at Aziatic - 626 rue Marguerite-d'Youville, Montréal, QC H3C 1W7&lt;br /&gt;
&lt;br /&gt;
[[Image:Morgan_Stanley_Historical_Logo.png|link=http://www.morganstanley.com/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - May 26th - Récapitulatif des challenges NorthSec ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/P8_V3RI1Ru4]] [https://youtu.be/P8_V3RI1Ru4 Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''PRÉSENTATEUR PRINCIPAL:''' Laurent Desaulniers&lt;br /&gt;
*'''RÉSUMÉ:''' Solutions de la compétition en sécurité NorthSec 2014 sur les sujets de  XXE + SSRF, WAF Bypass, Xpath Injection, DOM Injection, HTTP Only Flag bypass et contournement de captchas. Une bonne façon d'apprendre sur ces failles que vous étiez ou non un participant de la compétition.&lt;br /&gt;
*'''MESSAGE DU PRÉSENTATEUR:''' Vous voyez Rao dans votre soupe? Vous voulez une solution pour un XSS avec des cookies http only? Les captchas illisibles sont un problème? Assistez à la présentation de l'OWASP!&lt;br /&gt;
*'''BIO:''' Laurent Desaulniers est un passionné de sécurité informatique. Il a présenté au Hackfest, au colloque RSI, à OWASP et est challenge designer à NorthSec. M. Desaulniers détient les certifications CISSP, CISM, CISA et OSCP.&lt;br /&gt;
*'''QUAND:''' 26 mai à 18h00&lt;br /&gt;
*'''OÙ:''' Local PK-1140 - Pavillon Président-Kennedy 201, Avenue du Président-Kennedy, J2X 3Y7&lt;br /&gt;
*'''INSCRIPTION:''' https://www.eventbrite.ca/e/owasp-montreal-26-mai-recapitulatif-des-challenges-northsec-tickets-11724413035&lt;br /&gt;
*'''WEBCAST:''' https://www.youtube.com/watch?v=P8_V3RI1Ru4&lt;br /&gt;
*'''ÉQUIPE ACADÉMIQUE''' AGEEI-UQAM - http://www.ageei.org/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
&lt;br /&gt;
 18:00-18:30 Réseautage&lt;br /&gt;
 18:30-18:35 Mot de bienvenue par le leader du chapitre (Jonathan M.)&lt;br /&gt;
 18:35-19:30 Présentation principale : Récapitulatif des challenges NorthSec&lt;br /&gt;
 19:30-20:00 Période de questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Ageeilogo.jpg|200px|link=http://www.ageei.org/]]&lt;br /&gt;
[[Image:2397_nsec_Logo_500-250.png|200px|link=http://nsec.io/]]&lt;br /&gt;
&lt;br /&gt;
== Networking with infosec communities - April 21st ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''RÉSUMÉ:''' En collaboration avec Montréhack, mtlsec et NorthSec, nous organisons une soirée réseautage dans un pub du centre-ville. Du plaisir garanti avec les membres de plusieurs communautés infosec de Montréal!&lt;br /&gt;
&lt;br /&gt;
*'''ABSTRACT:''' In collaboration with Montréhack, mtlsec and NorthSec, we are organizing a networking evening in a pub downtown. Fun guaranteed with the other security communities in Montreal!&lt;br /&gt;
&lt;br /&gt;
*'''QUAND:''' 21 Avril 2014&lt;br /&gt;
*'''WHEN:''' April 21st 2014&lt;br /&gt;
&lt;br /&gt;
*'''OÙ/WHERE:''' BENELUX - Brasserie Artisanale 245 Sherbrooke St W Montreal, QC H2X 1X7&lt;br /&gt;
&lt;br /&gt;
*'''INSCRIPTION/REGISTRATION:''' https://www.eventbrite.ca/e/montrehack-avril-april-northsec-pre-party-tickets-11232307133&lt;br /&gt;
&lt;br /&gt;
*'''PARTENAIRES/PARTNERS:''' Montréhack http://montrehack.ca/ - mtlsec http://blog.mtlsec.com/ - NorthSec https://www.nsec.io/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
  18:00-21:00 Networking&lt;br /&gt;
  21:00-23:59 Remember to drink responsibly!&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - March 27th - Panel Compétition en sécurité NorthSec ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Présentation sous forme de panel - venez poser vos questions!'''&lt;br /&gt;
&lt;br /&gt;
*'''RÉSUMÉ:''' Les compétitions de type Capture the Flag (CTF) sont un moyen pour les professionnels et amateurs de sécurité informatique de mettre leurs talents à l'épreuve. NorthSec est une compétition Montréalaise annuelle en sécurité appliquée, qui aura lieu cette année au Marché Bonsecours de Montréal le 25, 26 et 27 avril prochain. Elle vise à augmenter le niveau technique des professionnels de la sécurité au Québec, ainsi que de permettre à ses acteurs les plus talentueux de se démarquer.&lt;br /&gt;
*'''DÉTAILS:''' Le panel de jeudi, sous la forme d'un échange convivial entre les organisateurs de l'évènement et de ses participants, abordera des thèmes variés comme l'écriture de bon défis, l'infrastructure, la logistique, les inattendus, un bilan de 2013 et tout ça en passant par de savoureuses annecdotes (on l'espère). Venez en grand nombre toucher à ces légendes de la scène infosec montréalaise!&lt;br /&gt;
*'''PANÉLISTES:''' Gabriel Tremblay, François Proulx, Laurent Desaulniers, Stéphane Graber&lt;br /&gt;
*'''ANIMATEUR:''' Olivier Bilodeau&lt;br /&gt;
*'''QUAND:''' 27 mars 2014&lt;br /&gt;
*'''OÙ:''' Salle M-1510, École Polytechnique de Montréal, 2500 chemin de Polytechnique, Montréal (Québec) H3T 1J4, pavillon Lassonde&lt;br /&gt;
*'''INSCRIPTION:''' https://www.eventbrite.ca/e/owasp-montreal-27-mars-panel-competition-en-securite-northsec-tickets-10918436337&lt;br /&gt;
*'''ÉQUIPE ACADÉMIQUE:''' Polytechnique - Polyhack http://polyhack.org/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Mot de bienvenue par le leader du chapitre (Jonathan Marcil)&lt;br /&gt;
  18:30-20:00 Présentation principale : Panel NorthSsec&lt;br /&gt;
&lt;br /&gt;
[[Image:Polyhack.png‎‎|200px|link=http://polyhack.org/]]&lt;br /&gt;
[[Image:LogoPolytechnique.gif|link=http://www.polymtl.ca/]]&lt;br /&gt;
[[Image:2397_nsec_Logo_500-250.png|200px|link=http://nsec.io/]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - February 25th - Proven Strategies for Web Application Security ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/proven-strategies-for-web-application-security-by-justin-c-klein-keane]] [https://speakerdeck.com/owaspmontreal/proven-strategies-for-web-application-security-by-justin-c-klein-keane See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Justin C. Klein Keane&lt;br /&gt;
*'''ABSTRACT:''' The rising dominance of the web as an application delivery platform has focused attacker attention squarely on the security of dynamic web applications. Application security is a complex, and shifting, field. Learn about tested and successful techniques to build safer applications, find flaws before they become vulnerabilities, and deploy applications that can detect, and resist attack.&lt;br /&gt;
*'''BIO:''' Justin C. Klein Keane is a security engineer and chapter leaders of OWASP in Philadelphia. For over a decade Justin has worked as a trainer, coder, and exploit developer. Justin is currently writing a book for NoStarch Press on hacking, speaks regularly at conferences, holds a masters degree in information technology from the University of Pennsylvania and is credited with hundreds of application vulnerability discoveries.&lt;br /&gt;
*'''WHEN:''' February 25th 2014&lt;br /&gt;
*'''WHERE:''' Ecole de technologie superieure, 1100 Notre-Dame Street West, Montreal, Room: A-1150&lt;br /&gt;
*'''REGISTRATION:''' http://owaspmtljan2014.eventbrite.ca&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/proven-strategies-for-web-application-security-by-justin-c-klein-keane&lt;br /&gt;
*'''ACADEMIC PARTNER:''' ETS - DCI http://dciets.com/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Welcome speech by Chapter Leader (Jonathan Marcil)&lt;br /&gt;
  18:30-20:00 Main session and open discussion: Proven Strategies for Web Application Security&lt;br /&gt;
  20:00-...   End of the meeting in a pub&lt;br /&gt;
&lt;br /&gt;
[[Image:Dciets.png‎‎‎|100px|link=http://dciets.com/]]&lt;br /&gt;
[[Image:Logo_ets.png|link=http://www.etsmtl.ca/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - January 28th - Latest trends in Mobile Security ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/8qPyKj4FKgY]] [https://youtu.be/8qPyKj4FKgY Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/latest-trends-in-mobile-security-by-francois-proulx]] [https://speakerdeck.com/owaspmontreal/latest-trends-in-mobile-security-by-francois-proulx See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Francois Proulx&lt;br /&gt;
*'''ABSTRACT:''' Last AppSecUSA 2013 had a great line up of talks, especially regarding mobile applications. This session will be covering all the hottest presentations about mobile security by doing an overview from what see saw at AppSecUSA, all with some slides and snippets of presentations that was recorded at the event. Discussion will be encouraged within the audience as this will be more a dynamic event than a regular talk.&lt;br /&gt;
*'''BIO:''' François Proulx is a senior mobile application developer who has worked on dozens of iOS applications since the very beginning of the Apple iOS platform. Over the past few years he has switched his focus to security. He spends a lot of his free time participating in Capture the Flag events (CTFs) and organizing the NorthSec security competition.&lt;br /&gt;
*'''WHEN:''' January 28th 2014&lt;br /&gt;
*'''WHERE:''' UQAM Room PK-1705, Pavillon Président-Kennedy (the big boat at Place des Arts) - 201 Avenue du Président-Kennedy  J2X 3Y7&lt;br /&gt;
*'''REGISTRATION:''' http://owaspmtl-mobilesecurity.eventbrite.ca&lt;br /&gt;
*'''SLIDES/CONTENT:''' [http://www.youtube.com/playlist?list=PLQtB2ug5xmvaQ9jeRWV53-F_T555GQfhW YouTube playlist]&lt;br /&gt;
*'''SPONSOR:''' Academic partner AGEEI-UQAM - http://www.ageei.org/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Welcome speech by Chapter Leader (Jonathan M.)&lt;br /&gt;
  18:30-20:00 Main session and open discussion: Mobile Security&lt;br /&gt;
  20:00-...   End of the meeting in a pub&lt;br /&gt;
&lt;br /&gt;
[[Image:Ageeilogo.jpg|200px|link=http://www.ageei.org/]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Presentations For Download  ====&lt;br /&gt;
&lt;br /&gt;
[http://www.owasp.org/images/0/0d/20100209mstechdaysowaspasvssgiv01-12657916463819-phpapp02.ppt OWASP ASVS] by Sebastien Gioria (09/03/2010) &lt;br /&gt;
&lt;br /&gt;
[http://www.ph-il.ca/slides/afup__authetification_forte.pdf Authentification Forte] by Philippe Gamache (02/02/2010) &lt;br /&gt;
&lt;br /&gt;
[http://www.opensamm.org/downloads/OpenSAMM-1.0.ppt Software Assurance Maturity Model (OpenSAMM)] by Pravir Chandra (03/11/2009) &lt;br /&gt;
&lt;br /&gt;
[http://www.owasp.org/images/d/de/Owasp-montreal-sept-17h-2009-justin-foster.pdf Crossing the Border – Javascript Exploits] by Justin Foster (17/09/2009) &lt;br /&gt;
&lt;br /&gt;
[http://www.owasp.org/images/c/c2/ALaughRIAt.pdf A Laugh RIAt] by Rafal Los (07/04/2009) &lt;br /&gt;
&lt;br /&gt;
[https://www.owasp.org/images/e/eb/OWASP-Montreal-24022009-RobLabbe.pptx Microsoft Security Development Lifecycle for IT] by Rob Labbe (24/02/2009) &lt;br /&gt;
&lt;br /&gt;
[https://www.owasp.org/images/3/39/OWASP-Montreal-24022009-EN.pdf OWASP Goal and Top Ten 2007 for Managers - French version] by Benoit Guerette (24/02/2009)&lt;br /&gt;
&lt;br /&gt;
Newer presentations are available on [https://speakerdeck.com/owaspmontreal Speaker Deck]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Circle_owasp_logo_nowhitebackground.png|200px]]&lt;br /&gt;
&lt;br /&gt;
= OWASP Foundation / Mission OWASP    = &lt;br /&gt;
OWASP Foundation ([https://docs.google.com/a/owasp.org/presentation/d/10wi1EWFCPZwCpkB6qZaBNN8mR2XfQs8sLxcj9SCsP6c/edit?usp=sharing Overview Slides]) is a professional association of [[Membership | global members]] and is open to anyone interested in learning more about software security. Local chapters are run independently and guided by the [[Chapter_Leader_Handbook]].  As a [[About_OWASP | 501(c)(3)]] non-profit professional association your support and sponsorship of any meeting venue and/or refreshments is tax-deductible. Financial contributions should only be made online using the authorized online chapter donation button.  To be a &amp;lt;b&amp;gt;SPEAKER&amp;lt;/b&amp;gt; at ANY OWASP Chapter in the world simply review the [[Speaker_Agreement | speaker agreement]] and then contact the local chapter leader with details of what OWASP PROJECT, independent research or related software security topic you would like to present on.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;La fondation OWASP est une [https://www.owasp.org/index.php/Membership association de professionnels] et elle est ouverte à tout intervenant intéressé à en apprendre davantage sur la sécurité applicative. Les chapitres locaux (dont celui de Montréal) sont gérés de façon indépendante et selon un [https://www.owasp.org/index.php/Chapter_Leader_Handbook manuel de directives à respecter].   &lt;br /&gt;
Toute contribution financière au chapitre peut être faite en ligne en utilisant l’icône prévu à cet effet. Pour être conférencier au sein de n’importe quel chapitre à l’échelle mondiale, vous n’avez qu’à prendre connaissance du document [https://www.owasp.org/index.php/Speaker_Agreement &amp;quot;entente avec les conférenciers – speaker agreement&amp;quot;] et à joindre le responsable du chapitre Montréal avec un descriptif du sujet que vous aimeriez aborder et s’il est relié à un projet OWASP, à de la recherche indépendante ou encore le sujet en particulier, concernant la sécurité applicative, que vous souhaitez aborder.&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== [[Image:Circle_owasp_logo_nowhitebackground.png|128px]] Montreal OWASP Team == &lt;br /&gt;
&lt;br /&gt;
Scope of the team is to discuss and plan local activities and meetings &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Chapter Leaders ===&lt;br /&gt;
&lt;br /&gt;
* [mailto:anne.gauthier@owasp.org Anne Gauthier], President/Présidente&lt;br /&gt;
* [mailto:michel.bourque{at}owasp.org Michel Bourque], Chapter coordinator and marketing manager/Coordination et Marketing&lt;br /&gt;
* [mailto:hugo.genesse(at)owasp.org Hugo Genesse], Web content and production manager/Site internet et Production &lt;br /&gt;
* [mailto:olivier.arteau(at)owasp.org Olivier Arteau], Logistic manager/Logistique&lt;br /&gt;
&lt;br /&gt;
==== Chapter leader history ====&lt;br /&gt;
*2008-2010 - Benoit Guerette, founder and chapter leader&lt;br /&gt;
*2011-2012 - Philippe Gamache, chapter leader (vice chapter-leader since 2010)&lt;br /&gt;
*2013-2015 - Jonathan Marcil, chapter leader&lt;br /&gt;
*2016-... - Anne Gauthier, Michel Bourque, Marius Popescu, Hugo Genesse, Olivier Arteau&lt;br /&gt;
&lt;br /&gt;
==== Old board members ====&lt;br /&gt;
*Philippe Pépos Petitclerc&lt;br /&gt;
*Michael Robillard&lt;br /&gt;
*Benoit Guerette (logistics 2015)&lt;br /&gt;
*Alexandre Rimthong&lt;br /&gt;
*Mathieu Binette&lt;br /&gt;
*Sean Coates&lt;br /&gt;
*Jean-Marc Robert&lt;br /&gt;
*Philippe Blondin&lt;br /&gt;
*Benoit Guerette (founder)&lt;br /&gt;
*Laurent Desaulniers&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;headertabs&amp;gt;&amp;lt;/headertabs&amp;gt; &lt;br /&gt;
__NOTOC__ &lt;br /&gt;
[[Category:Canada]]&lt;/div&gt;</summary>
		<author><name>Svieg</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=Montr%C3%A9al&amp;diff=241348</id>
		<title>Montréal</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=Montr%C3%A9al&amp;diff=241348"/>
				<updated>2018-06-17T20:50:44Z</updated>
		
		<summary type="html">&lt;p&gt;Svieg: /* Insecurity in Information Technology */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Welcome &amp;amp; Bienvenue to the OWASP Montréal chapter ==&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:OWASP-Montreal-Logo.png|Logo OWASP Montréal]]&lt;br /&gt;
&lt;br /&gt;
The OWASP Foundation was established in 2001 as an open community and software security resource. Since then, OWASP has grown to be globally recognized as a credible source for application security standards. &amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
OWASP is an open community dedicated to enabling organizations to conceive, develop, acquire, operate, and maintain applications that can be trusted. All of the OWASP tools, documents, forums, and chapters are free and open to anyone interested in improving application security. We advocate approaching application security as a people, process, and technology problem because the most effective approaches to application security include improvements in all of these areas. &amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
OWASP is open to anyone. Anyone can attend OWASP's vendor agnostic local chapter meetings, participate in regional and global conferences, and contribute to the many OWASP projects. And anyone can start a new project, form a new chapter, or lend their expertise to help an OWASP Global Committee.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt;On parle français aussi ! Le chapitre de Montréal organise plusieurs activités gratuites afin de partager les connaissances en sécurité applicative avec la communauté de développeurs et gestionnaires. Suivez-nous sur les réseaux sociaux pour connaître les dates des conférences du midi et des workshops !&amp;lt;/b&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Top documentation from OWASP includes: &lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/index.php/Top_10_2013-Top_10 OWASP TOP 10 : The Ten Most Critical Web Application Security Risks]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/images/3/33/OWASP_Application_Security_Verification_Standard_3.0.1.pdf OWASP ASVS : Application Security Verification Standard]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/images/5/52/OWASP_Testing_Guide_v4.pdf OWASP Testing Guide : Penetration Testing Framework]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/images/7/78/OWASP_AlphaRelease_CodeReviewGuide2.0.pdf OWASP Code Review Guide : Source Code Analysis Framework]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/index.php/OWASP_Cheat_Sheet_Series OWASP Cheat Sheet : Best practices guidelines for developers]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org OWASP Global]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Chapter Leaders / Responsables du chapitre ===&lt;br /&gt;
&lt;br /&gt;
* [mailto:anne.gauthier@owasp.org Anne Gauthier], President/Présidente&lt;br /&gt;
* [mailto:michel.bourque{at}owasp.org Michel Bourque], Chapter coordinator and marketing manager/Coordination et Marketing&lt;br /&gt;
* [mailto:hugo.genesse(at)owasp.org Hugo Genesse], Web content and production manager/Site internet et Production &lt;br /&gt;
* [mailto:olivier.arteau(at)owasp.org Olivier Arteau], Logistic manager/Logistique&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt; Volunteers / Volontaires OWASP Montréal: &amp;lt;/b&amp;gt;&lt;br /&gt;
* Simon Lacasse, Web content / Site internet&lt;br /&gt;
* Julien Touche, Logistique&lt;br /&gt;
* Jean-François Gill&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;b&amp;gt; Reach our chapter / Joindre le chapitre &amp;lt;/b&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Follow OWASP's Montreal chapter's activities through social medias, register to events, watch the previous presentations and more! &lt;br /&gt;
&lt;br /&gt;
Suivez les activités du chapitre OWASP Montréal via les réseaux sociaux, inscrivez-vous aux activités, visualisez les anciennes présentations et plus encore! &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;b&amp;gt;[http://lists.owasp.org/mailman/listinfo/owasp-montreal Click here] to join the local chapter mailing list.&lt;br /&gt;
&amp;lt;br /&amp;gt;[http://lists.owasp.org/mailman/listinfo/owasp-montreal Inscrivez-vous ici] à la liste de courriels du chapitre afin de recevoir les dernières nouvelles!&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Want to be part of the community ? &lt;br /&gt;
Devenez membre de notre communauté ! &lt;br /&gt;
[https://www.owasp.org/index.php/Membership_Map Click here / Cliquer ici]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Eb_press_little.gif‎|OWASP Montreal Eventbrite|link=http://owaspmontreal.eventbrite.ca/]] &lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[Image:Yt-brand-standard-logo-630px.png‎|128px|YouTube OWASP Montreal Channel|link=http://www.youtube.com/owaspmontreal]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]   &lt;br /&gt;
[[Image:Speakerdecklogo.png‎|Slides of OWASP Montreal on SpeakerDeck |link=https://speakerdeck.com/owaspmontreal]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Twitter-bird-cropped-onwhite.png|@owaspmontreal on Twitter|link=https://twitter.com/owaspmontreal]]&lt;br /&gt;
[[Image:FacebookSquareLogo.png|OWASP Montreal Facebook page|link=https://www.facebook.com/owasp.montreal]]&lt;br /&gt;
[[Image:LinkedinSquareLogo.png|OWASP Montreal on LinkedIn|link=https://www.linkedin.com/groups/1379007/profile]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
&lt;br /&gt;
== What we do / Nos activités ==&lt;br /&gt;
&lt;br /&gt;
OWASP Montreal is a really active chapter. We organize monthly conferences and workshops. All our events are free and meant to improve the knowledge and awareness of the community's developers, managers and computer security specialists. To be aware of the next event and for additional information, follow us on social medias. &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
OWASP Montréal est un des chapitres les plus actifs. Nous organisons mensuellement des ateliers et conférences. Tous nos événements sont gratuits et ont pour but d'améliorer les connaissances de la communauté. Ils s'adressent donc autant aux gestionnaires qu'aux développeurs et aux spécialistes en sécurité informatique. Pour plus d'informations sur nos activités et pour être au courant des prochaines dates d'événement, suivez nous sur les réseaux sociaux. &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;We also contribute to the vast OWASP knowledge base / Nous contribuons aussi aux ressources d'OWASP&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We list here the projects that were started by our members under OWASP's banner. &amp;lt;br /&amp;gt;&lt;br /&gt;
Nous listons ici les projets commencé par nos membres sous la banière d'OWASP. &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/index.php/Vulnerability_Disclosure_Cheat_Sheet Vulnerability Disclosure Cheat Sheet]&lt;br /&gt;
&lt;br /&gt;
== Sponsorship &amp;amp; Membership / Commandite &amp;amp; Adhésion ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Btn_donate_SM.gif|link=http://www.regonline.com/donation_1044369]] to this chapter or become a local chapter supporter.&lt;br /&gt;
&lt;br /&gt;
Or consider the value of [[Membership | Individual, Corporate, or Academic Supporter membership]]. Ready to become a member? [[Image:Join_Now_BlueIcon.JPG|75px|link=https://myowasp.force.com/]]&lt;br /&gt;
&lt;br /&gt;
[http://www.regonline.com/donation_1044369 Donnez] au chapitre ou devenez commanditaire du chapitre local! &lt;br /&gt;
&lt;br /&gt;
[https://myowasp.force.com/ Devenez membre !] Pour en savoir davantage sur les avantages d’une adhésion individuelle, corporative ou en tant qu’institution d’enseignement, [https://www.owasp.org/index.php/Membership cliquez ici]. &lt;br /&gt;
&lt;br /&gt;
[[Category:OWASP Chapter]]&lt;br /&gt;
&lt;br /&gt;
== Chapter Supporters / Commanditaires du chapitre ==&lt;br /&gt;
&lt;br /&gt;
[https://www.owasp.org/images/9/91/OWASP_Membership_Flyer_Montreal.png All details available here / Pour tous les détails] [[File:Chapter-supporter-owasp-montreal.png|200px|link=]] &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Platinum / Platine ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Gosecure-2.png|GoSecure|link=http://www.gosecure.ca/]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[File:Desjardins2-400x400.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Gold / Or ===&lt;br /&gt;
&lt;br /&gt;
[[Image:PM_SCADA_Logo_Gris_Cybersecurite_FR.png|PM SCADA|link=http://pmscada.ca/en/]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Lunch &amp;amp; Learn / Workshops 2018 =&lt;br /&gt;
&lt;br /&gt;
== SecurityRAT - Handling of Security Requirements in SDLC ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Fri, 1 June 2018&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
OWASP dans le cadre des Midis conférence est heureux d'accueillir Daniel Kefer et Rene Reuter. Tous les deux viennent d'Allemagne et seront de passage à Montréal.&amp;lt;.br&amp;gt;&amp;lt;/br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Nos conférenciers viendront présenter SecurityRAT, un projet OWASP pour gérer les requis de sécurité pendant le cycle de vie des dévelopements applicatifs (SDLC).&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Biographie :&amp;lt;br /&amp;gt;&lt;br /&gt;
Daniel Kefer travaille en sécurité depuis 2007 et a commencé en tant que pentester. Il travaille depuis 2011 chez 1&amp;amp;1 où il mène l'équipe AppSec interne.&amp;lt;/br&amp;gt;&amp;lt;/br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
René Reuter est ingénieur sécurité depuis 6 ans. Il travaille chez Robert Bosch GmbH en tant que consultant en charge d'identifier les vulnérabilités et problèmes de conception dans les applications internes.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Insecurity in Information Technology ==&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wed, 16 May 2018&lt;br /&gt;
WHERE&lt;br /&gt;
 Marché Bonsecours, salle 1847&lt;br /&gt;
&lt;br /&gt;
OWASP dans le cadre des Midis conférence est heureux d'accueillir Greg Castle.&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
A lot is expected of software developers these days; they are expected to be experts in everything despite very little training. Throw in the IT security team (often with little-to-no knowledge of how to build software) telling developers what to do and how to do it, and the situation becomes strained. This silo-filled, tension-laced situation, coupled with short deadlines and pressure from management, often leads to stress, anxiety and less-than-ideal reactions from developers and security people alike.&amp;lt;/br&amp;gt;&lt;br /&gt;
This talk will explain how job insecurities can be brought out by IT leadership decisions, and how this can lead to real-life vulnerabilities in software. This is not a talk about “feelings”, this is a talk about creating programs, governance and policies that ensure security throughout the entire SDLC.&amp;lt;/br&amp;gt;&amp;lt;/br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
No more laying blame and pointing fingers, it’s time to put our egos aside and focus on building high-quality software that is secure. The cause and effect of insecurities and other behavioral influencers, as well as several detailed and specific solutions will be presented that can be implemented at your own place of work, immediately. No more ambiguity or uncertainty from now on, only crystal-clear expectations.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Biographie :&amp;lt;br /&amp;gt;&lt;br /&gt;
Tanya Janca is a senior cloud advocate for Microsoft, specializing in application security; evangelizing software security and advocating for developers through public speaking, her open source project OWASP DevSlop, and various forms of teaching via workshops, blogs and community events. As an ethical hacker, OWASP Project and Chapter Leader, software developer, effective altruist and professional computer geek of 20+ years, she is a person who is truly fascinated by the ‘science’ of computer science.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Shipping in Pirate-Infested Waters: Practical Attack and Defense in Kubernetes ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Owasp-avril-2018.JPG  ]]&lt;br /&gt;
[[Image:Owasp-avril-2018-2.JPG ]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/ohTq0no0ZVU ]] [https://youtu.be/ohTq0no0ZVU Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 April 30 2018&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
OWASP dans le cadre des Midis conférence est heureux d'accueillir Greg Castle.&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
L'événement contiendra une diffusion de &amp;quot;Shipping in Pirate-Infested Waters: Practical Attack and Defense in Kubernetes&amp;quot; présenté à Kubecon 2017, suivi de 20 min de questions/réponses avec Greg par vidéoconférence.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Biographie :&amp;lt;br /&amp;gt;&lt;br /&gt;
Greg est Tech Lead pour l'équipe sécurité Kubernetes et Google Container Engine chez Google. Avant GKE, Greg a travaillé dans l'équipe de réponse aux incidents de sécurité de Google, dévelopant des outils opensource d'investigations et à l'amélioration de la sécurité de Macos. Avant google, il a occupé de nombreuses positions incluant pentester, incident responder et analyste forensics.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Operate PCI DSS infrastructure using DevOps approach ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Owasp-montreal-pci-dss-r.jpg  ]]&lt;br /&gt;
[[Image:Owasp-montreal-pci-dss-2-r.jpg ]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/owasp-operate-pcidss-infrastructure-using-devops-approch-dot-pptx-1]] [https://speakerdeck.com/owaspmontreal/owasp-operate-pcidss-infrastructure-using-devops-approch-dot-pptx-1 See the slides / Voir la présentation]&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 March 5 2018&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
OWASP dans le cadre des Midis conférence est heureux d'accueillir, M. Gaëtan Trivino.&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Notre conférencier viendra présenter l'influence de la culture devops sur les opérations d'un hébergeur international en particulier pour supporter les réglementations comme PCI DSS.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Biographie :&amp;lt;br /&amp;gt;&lt;br /&gt;
Gaëtan est DevOps technical leader orienté cloud et automatisation réseau. Il a traversé l'Atlantique avec sa famille pour explorer de nouvelles culture de travail et se lance dans la recherche du meilleur sirop d'érable!&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Lunch &amp;amp; Learn / Workshops 2015-2017 =&lt;br /&gt;
&lt;br /&gt;
== Pourquoi un hacker peut-il contourner les mesures et solutions de sécurité... ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hamilton-septembre-2017-1.JPG  ]]&lt;br /&gt;
[[Image:Hamilton-septembre-2017-2.JPG ]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/endpoint-bypass-charles-hamilton]] [https://speakerdeck.com/owaspmontreal/endpoint-bypass-charles-hamilton See the slides / Voir la présentation]&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 September 18th 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
OWASP dans le cadre des Midis conférence est heureux de lancer la saison 2017-2018 en accueillant, M. Charles F. Hamilton.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Notre conférencier viendra brosser un tableau des différents éléments qui expliquent pourquoi les mesures et les solutions de sécurité en générales qui ont la fonction de protéger les données, les applications, les réseaux ou les équipements critiques sont si souvent contournées ou carrément inefficaces contre les attaques ciblées.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Biographie :&amp;lt;br /&amp;gt;&lt;br /&gt;
Charles F. Hamilton est un consultant en sécurité et membre d’équipe « Red Team » de calibre international. Il se spécialise en test d’intrusion et la recherche de solution proactive de sécurité.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Cas d'attaques vécus : Internet des objets (IOT) - Attaques DDoS ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Cas_dattaques_vecus-r.jpg  ]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 June 19th 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
Pour clore la saison printanière 2017, OWASP Montréal est fier d'accueillir au Midi Conférence, M. Christian Shink qui fera un survol de cas d'attaques vécus, des techniques utilisées et des acteurs impliqués dans ces attaques.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
L'incorporation généralisée de dispositifs «intelligents» dans les objets de la vie de tous les jours modifie la façon dont les gens et les machines interagissent les uns avec les autres. Cette incorporation offre une promesse d'une meilleure qualité de vie, une meilleure efficacité. En contrepartie, leur déploiement introduit également des vulnérabilités à la fois dans l'infrastructure qu'ils soutiennent et sur lesquels ils comptent, ainsi que dans les processus qu'ils guident. Que ce soit au niveau applicatif ou des infrastructures, ces vulnérabilités sont exploitées par des acteurs malicieux pour générer des attaques de déni de service massives et sophistiquées. Nous tenterons également de tirer des leçons afin de tenter de minimiser ce type d'attaques dans le futur.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Christian Shink possède plus d’une dizaine d’années d’expérience en développement et sécurité d’applications. Avant de se joindre à Radware, Christian était à l’emploi d'une firme conseil où il a conseillé de nombreuses entreprises, dont de grandes banques américaines et Casinos. Il détient une certification CSSLP et est membre de l'ordre des ingénieurs du Québec.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== HOW TO! Threat Modeling Toolkit ==&lt;br /&gt;
&lt;br /&gt;
[[Image:OWASPMtl-JonathanMarcil-1.jpg]]&lt;br /&gt;
[[Image:OWASPMtl-JonathanMarcil-3.jpg]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/threat-modeling-toolkit]] [https://speakerdeck.com/owaspmontreal/threat-modeling-toolkit See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 May 23rd, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Shopify Montreal&lt;br /&gt;
&lt;br /&gt;
Threat Modeling is a great way to analyze security early in software development by structuring possible attacks, bad actors and countermeasures over a broad view of the targeted system. This talk will describe basic components of a threat model and how to use them effectively.&lt;br /&gt;
Threat Intelligence is where you gather knowledge about the environment and business assets to determine what are the actual threats. But how do you reconcile that with the current architecture in a useful manner?&lt;br /&gt;
The toolkit presented in this talk will enable you to systematically structure related information using graphical notations such as flow diagram and attack tree. In case you are wondering where to start in your organization, a quick lightweight risk rating methodology will also be proposed.&lt;br /&gt;
And in the end, you’ll see how we can all tie those together and get threat modeling to a point where it’s an efficient application security activity for communication. Doing this will prevent security reviews from missing important things even when chaos prevails during the realization of a project.&lt;br /&gt;
Modeling concepts will be demonstrated with an actual IoT device used as example.&lt;br /&gt;
Presentation will be done in english.&lt;br /&gt;
&lt;br /&gt;
Speaker Bio:&lt;br /&gt;
Jonathan Marcil is the former chapter leader of OWASP Montreal and is now Senior Application Security Engineer at Blizzard Entertainment in beautiful Orange County, California.&lt;br /&gt;
Jonathan has been involved with OWASP for many years and has been behind the Media Project which gathered and promoted AppSec conferences video content in the official OWASP YouTube channel. He was also part of NorthSec CTF event as a challenge designer specialized in Web and imaginative contraptions.&lt;br /&gt;
He is passionate about Application Security and enjoys architecture analysis, code review, threat modeling and debunking security tools. He holds a diploma in Software Engineering from ÉTS Montreal and has more than 15 years of experience in Information Technology and Security.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Merci à nos précieux commanditaires !&lt;br /&gt;
&lt;br /&gt;
== Security Testing: Unlocking the Benefits of a Hybrid Approach ==&lt;br /&gt;
[[Image:Security testing hybrid approach-r 3.jpg    ]]&lt;br /&gt;
[[Image:Security testing hybrid approach-r 4.jpg    ]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/hybrid-approach-to-security-testing]] [https://speakerdeck.com/owaspmontreal/hybrid-approach-to-security-testing See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 April 24th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
As part of their defensive efforts, businesses commonly commission cybersecurity assessments of their web applications; with the aim of identifying any weaknesses in the security controls and ensuring a continually strong cybersecurity posture of their systems.&lt;br /&gt;
&lt;br /&gt;
The classical approach of either secure code review (white box) or penetration testing (black box) assessment have proven to be effective in securing of web applications. The new trend, however, is moving towards the combination of these two approaches; expert consensus is rapidly recognizing the advantages of using a hybrid approach. When applied properly, a hybrid approach can build on the strengths of both white and black box testing, while compensating for their individual shortcomings.&lt;br /&gt;
&lt;br /&gt;
In this presentation, we will examine the details of secure code review and penetration testing, and run demos to contrast their respective strengths and weaknesses. We will also examine why a hybrid approach can produce more complete and relevant assessment results. To conclude, we will cover proven approaches, and practical techniques, on how you can start leveraging a hybrid approach to web application assessments today.&lt;br /&gt;
&lt;br /&gt;
Anne Gauthier is an application security analyst at GoSecure. Anne is also the president of the Montreal Chapter of OWASP – the industry standard for web application security. With a penetration testing background, she specializes in secure code reviews and in helping companies to improve their software development lifecycle (SDLC) according to industry best practices. Anne is CSSLP, GWAPT and GSSP-JAVA certified. She obtained a Software Engineering bachelor’s degree from Ecole de Technologie Supérieure in Montréal and is now pursuing a Master of Engineering (MEng) degree in Information Systems Security at Concordia University. She is the author of the Project 201 Security blog.&lt;br /&gt;
&lt;br /&gt;
Merci à nos précieux commanditaires !&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;HOW-TO&amp;quot; NIGHT ! Tout sur les CTFs (Capture The Flag) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Howto_ctf.jpg]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://docs.google.com/presentation/d/1zEsCcX-Nvq8Nz0k-B1zHejCDNT2oGZx8oUBgMbvvMM0/edit#slide=id.p ]] [https://docs.google.com/presentation/d/1zEsCcX-Nvq8Nz0k-B1zHejCDNT2oGZx8oUBgMbvvMM0/edit#slide=id.p See the slides / Voir la présentation (Laurent Desaulniers)]&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://docs.google.com/presentation/d/1c1P1d2mKe767j1Y0V9cK6De5cpnK4I7GI-ORiodbg1A/edit#slide=id.p ]] [https://docs.google.com/presentation/d/1c1P1d2mKe767j1Y0V9cK6De5cpnK4I7GI-ORiodbg1A/edit#slide=id.p See the slides / Voir la présentation (Charles Hamilton)]&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=http://obilodeau.github.io/slides/2017-04-04_how-not-to-suck-at-ctfs/ ]] [http://obilodeau.github.io/slides/2017-04-04_how-not-to-suck-at-ctfs/ See the slides / Voir la présentation (Olivier Bilodeau)]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 April 4th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Shopify&lt;br /&gt;
&lt;br /&gt;
Cette nouvelle soirée &amp;quot;How-To&amp;quot; Night d'OWASP Montréal vise à présenter les CTFs (une compétition Capture The Flag) et aider les équipes à démarrer et à continuer à évoluer dans leurs pratique de la cyber sécurité pratique. L'objectif est d'outiller les participants en leur fournissant des ressources techniques et des contacts afin de les aider à progresser.&lt;br /&gt;
&lt;br /&gt;
Les éléments discutés seront:&lt;br /&gt;
&lt;br /&gt;
- Composition optimale d’une équipe : Fonctionnement d’une équipe de CTF et les principaux rôles (chef d’équipe, cryptographie, application web, rétro ingénierie et les causes perdues).&lt;br /&gt;
&lt;br /&gt;
- Pourquoi faire des CTFs? Discussion sur les différents styles (jeopardy, attack/defense, etc.), quels sont les problèmes fréquemments rencontrés + plusieurs anecdotes intéressantes (et drôles).&lt;br /&gt;
&lt;br /&gt;
- Trucs de Mr. Unikoder : Le créateur du fameux site ringzer0team, soit un des plus gros sites pour apprendre la résolution de problèmes de CTF (https://ringzer0team.com/) Apprenez des trucs du meilleur, sur comment débuter et interpréter un challenge web, binaire et crypto avec des trucs réels du métier.&lt;br /&gt;
&lt;br /&gt;
Matériel requis :&lt;br /&gt;
&lt;br /&gt;
    Votre légendaire enthousiasme&lt;br /&gt;
&lt;br /&gt;
Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
&lt;br /&gt;
Places limitées. Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Shopify pour l'événement.&lt;br /&gt;
&lt;br /&gt;
Présentateurs :&lt;br /&gt;
&lt;br /&gt;
Charles Hamilton, Senior Consultant chez Mandiant, FireEye, Inc.&lt;br /&gt;
&lt;br /&gt;
Olivier Bilodeau, Cybersecurity Research Lead at GoSecure&lt;br /&gt;
&lt;br /&gt;
Laurent Desaulniers, Senior Security Solution Specialist at Bell Canada&lt;br /&gt;
&lt;br /&gt;
== NorthSec - Applied Security Event ==&lt;br /&gt;
[[Image:Nsec_2017_midi_conf.jpg]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/northsec-applied-security-event]] [https://speakerdeck.com/owaspmontreal/northsec-applied-security-event See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 April 4th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
NorthSec: La plus grande compétition et conférence en cyber sécurité au Canada&lt;br /&gt;
&lt;br /&gt;
NorthSec est un organisme sans but lucratif qui organise une conférence et une compétition de sécurité de type &amp;quot;Capture-The-Flag&amp;quot; (CTF) et des formations. Avec plus de 400 participants présents sur le site pour la compétition, c’est la plus grande compétition du genre au monde.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
La conférence, dans sa 3e année, attire des présentateurs internationaux avec du contenu technique exclusif. L’ajout des séances de travail (workshops) devrait plaire aux plus chevronnés des binaires.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Des formations de 3 jours sont offertes avant la conférence: &amp;quot;Advanced Web Application Security&amp;quot; par Philippe Arteau et &amp;quot;Malware and Memory Forensics&amp;quot; par Michael Ligh, co-auteur des livres &amp;quot;Malware Analyst Cookbook&amp;quot; et &amp;quot;The Art of Memory Forensics&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
NorthSec est situé au Marché Bonsecours dans le Vieux-Port de Montréal au printemps du 15 au 21 mai 2017.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
La présentation couvrira:&lt;br /&gt;
&lt;br /&gt;
- Le plan pour 2017&amp;lt;br /&amp;gt;&lt;br /&gt;
- Ce qui différencie NorthSec&amp;lt;br /&amp;gt;&lt;br /&gt;
- Comment équilibrer une compétition pour les débutants et les experts&amp;lt;br /&amp;gt;&lt;br /&gt;
- Comment bâtir une infrastructure basée sur les conteneurs qui gère 50 équipes dans quelques serveurs sans qu’ils ne se partagent de machines virtuelles&amp;lt;br /&amp;gt;&lt;br /&gt;
- Comment faire du pain au levain à grande échelle&amp;lt;br /&amp;gt;&lt;br /&gt;
- Présentation de quelques défis et solutions&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Les présentateurs:&lt;br /&gt;
&lt;br /&gt;
- Gabriel Tremblay, Président, Delve Labs&amp;lt;br /&amp;gt;&lt;br /&gt;
- Olivier Bilodeau, VP Formations, Co-fondateur MontréHack, GoSecure&amp;lt;br /&amp;gt;&lt;br /&gt;
- Pierre-David Oriol, VP Conférences, Delve Labs&amp;lt;br /&amp;gt;&lt;br /&gt;
- Benoit Guérette, VP Partenaires, Desjardins&amp;lt;br /&amp;gt;&lt;br /&gt;
- Laurent Desaulniers, Tisserand de drapeaux, Bell Canada&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Merci à nos précieux commanditaires !&lt;br /&gt;
&lt;br /&gt;
== Sécurité des applications : Les fondements ==&lt;br /&gt;
[[Image:Tanya.jpeg]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/securite-des-applications-les-fondements]] [https://speakerdeck.com/owaspmontreal/securite-des-applications-les-fondements See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 March 20th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
OWASP Montréal est fier d’accueillir au Midi Conférence du mois de mars, Mme Tanya Janca, Co-Leader du chapitre OWASP Ottawa et spécialiste de la sécurité applicative au sein du Gouvernement fédéral.&lt;br /&gt;
&lt;br /&gt;
La conférence « Les fondements de la sécurité des applications » sera présentée en anglais.&lt;br /&gt;
&lt;br /&gt;
Session Description : Everyone has heard about the problem; everyone is “getting hacked”. But what is the answer? From scanning your code with a vulnerability scanner to red teaming exercises, developer education programs and bug bounties, this talk will take the audience through all the possibilities of an extensive application security program, with a detailed explanation of each part.&lt;br /&gt;
&lt;br /&gt;
Bio : Tanya Janca is an application security evangelist, a web application penetration tester and vulnerability assessor, a secure code reviewer, an ethical hacker, the Co-Leader of the OWASP Ottawa chapter, and has been developing software since the late 90’s. She has worn many hats and done many things, including; Custom Apps, Ethical Hacking, COTS, Incident Response, Enterprise Architect, Project and People Management, and even Tech Support. She is currently helping the Government of Canada secure their web applications.&lt;br /&gt;
&lt;br /&gt;
Merci à notre commanditaire principal de cet événement: Ubitrak!&lt;br /&gt;
&lt;br /&gt;
== WORKSHOP ! Server Side Template Injection (SSTI) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-okiok-SSTI-r.jpg | WORKSHOP ! Server Side Template Injection (SSTI) ]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/workshop-server-side-template-injection-ssti]] [https://speakerdeck.com/owaspmontreal/workshop-server-side-template-injection-ssti See the slides / Voir la présentation]&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 22 Février 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Shopify Montréal&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
OWASP Montreal vous invite à un atelier portant sur la sécurité des applications web supportant les moteurs de template (Template Engine). Le principe de séparation entre la présentation du site (code HTML statique) et de son contenu dynamique facilite la création de documents HTML et la capacité à modifier l'apparence du site sans mélanger le traitement et le rendu de la page. L'utilisation de moteurs de template amène de nouveaux enjeux de sécurité. Les vulnérabilités de type Server Side Template Injection (SSTI) sont exploitables à travers les données (non fiables) fournies par l'utilisateur et conduisent à l'exécution de code arbitraire (RCE) sur le serveur hébergeant l'application web.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ce workshop a pour but d'introduire cette classe de vulnérabilité à travers différents cas d'implémentation (php, java, python).&lt;br /&gt;
Nous verrons comment identifier et exploiter ces vulnérabilités et de quelle manière un attaquant peut &lt;br /&gt;
s'y prendre pour exécuter du code arbitraire sur le serveur afin d'en prendre le contrôle.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Niveau : Intermédiaire&amp;lt;br /&amp;gt;&lt;br /&gt;
Matériel requis :&lt;br /&gt;
* Votre portable&lt;br /&gt;
* Votre distribution Linux/Unix de votre choix&lt;br /&gt;
* Votre proxy Web de votre choix&lt;br /&gt;
&lt;br /&gt;
Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
Places limitées. Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Shopify pour l'événement.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Présentateur : Gérôme Dieu&amp;lt;br /&amp;gt;&lt;br /&gt;
Gérôme Dieu cumule plus de 7 années d’expérience en technologies de l’information et en sécurité. &lt;br /&gt;
Il œuvre à titre de conseiller senior en sécurité de l’information au sein de la firme OKIOK. Ces dernières années, il a acquis une expertise dans le domaine de la sécurité des applications web aussi bien d'un point de vue offensif que défensif. En plus de réaliser des tests d’intrusion pour des clients internationaux, Gérôme s’implique dans la recherche et développement afin de maintenir à la fine pointe de la technologie les tests d'intrusion et d'analyse de vulnérabilités. &amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Merci à Shopify d'héberger l'événement !&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Shopify Logo-r.png| Shopify | link=https://www.shopify.com/]]&lt;br /&gt;
== Le courriel en 2017 – risques et menaces pour tous ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Zero spam 2.jpg|Le courriel en 2017 – risques et menaces pour tous]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://www.youtube.com/watch?v=HX2vcijcCWw ]] [https://www.youtube.com/watch?v=HX2vcijcCWw Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 Le 23 janvier 2017 à midi&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
Monsieur Poellhuber nous brossera un tableau du phénomène grandissant du rançongiciels et de l'hameçonnage, personnification.&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
- Par les années passées, la menace courriel se résumait principalement en un fort volume de contenu simplement indésirable. Aujourd’hui la menace a passablement évolué. Quels sont les véritables risques actuels associés au courriel ? Rançongiciels, hameçonnage, personnification. Cette conférence présentera les nouveaux défis de sécurité pour les organisations qui doivent composer avec des attaques de plus en plus sophistiquées et de plus en plus ciblées tout en protégeant leur réputation. Des exemples biens réels, drôles et moins drôles seront disséqués pour bien dessiner l’ampleur de l’enjeu.&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
M. David Poellhuber, Chef de l’exploitation, ZEROSPAM Sécurité Inc&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note biographique :&amp;lt;br /&amp;gt;&lt;br /&gt;
Monsieur David Poellhuber oeuvre dans l’industrie de la sécurité informatique depuis quinze ans. Il a été conférencier dans plusieurs forums de sécurité au Canada et est maintenant reconnu comme une autorité en matière de sécurité du courriel. Il a fondé ZEROSPAM Sécurité en 2003, le premier service Québécois externalisé de sécurité du courriel infonuagique qui se distingue par sa convivialité, son efficacité et ses technologies de détection proactives.&amp;lt;br /&amp;gt;&lt;br /&gt;
Audience :  Généralistes et spécialistes de la sécurité des TI &lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Merci à Ubitrack pour le repas et à Desjardins d'héberger l'événement!&lt;br /&gt;
&lt;br /&gt;
[[Image:Ubitrak-r2.jpg|Ubitrak|link=http://www.ubitrak.com/fr/]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&lt;br /&gt;
== Effective XSS Mitigation ==&lt;br /&gt;
&lt;br /&gt;
[[Image:XSS mitigation.jpg | Effective XSS Mitigation ]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=http://slides.com/olivierarteau/xss-mitigation ]] [http://slides.com/olivierarteau/xss-mitigation See the slides / Voir la présentation]&lt;br /&gt;
&lt;br /&gt;
WHEN &lt;br /&gt;
 18 Janvier 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Google Montréal&lt;br /&gt;
&lt;br /&gt;
FRANÇAIS/ENGLISH&amp;lt;br /&amp;gt;&lt;br /&gt;
La mitigation de XSS a été un sujet important au cours des dernières années. Les navigateurs ont implémenté, en autre, deux fonctionnalités pour mitiger leur impact : l'entête &amp;quot;XSS-Protection&amp;quot; et l'entête &amp;quot;Content-Security-Policy&amp;quot;. Par contre, obtenir une mitigation contre les XSS efficace est souvent plus complexe que l'on pense. Cet atelier couvrira les deux entêtes. Il expliquera comme il est possible de contourner ces protections et ce qu'il est possible de faire pour se protéger. Des exercices de type &amp;quot;offensif&amp;quot; et &amp;quot;défensif&amp;quot; seront proposés.&lt;br /&gt;
Mitigation for XSS as been an important topic in the last few years. Browsers have implemented two main functionalities to help mitigate the impact of XSS : the &amp;quot;XSS-Protection&amp;quot; header and the &amp;quot;Content-Security-Policy&amp;quot; header. But, getting an effective XSS mitigation of those headers is trickier than it may seem. This workshop will cover both of those headers. It will explain how bypass of those protection work and what you can do about it. It will have both &amp;quot;defensive&amp;quot; exercises and &amp;quot;offensive&amp;quot; exercises.&lt;br /&gt;
Niveau : débutant/intermédiaire&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Matériel requis :&lt;br /&gt;
&lt;br /&gt;
Votre portable&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
&lt;br /&gt;
Places limitées. Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Google pour l'événement.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Présentateur : Olivier Arteau&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Olivier Arteau est un professionnel en sécurité informatique depuis quelques années et fait partie de l’équipe de test d’intrusion de Desjardins. Il est aussi un amateur de CTF qui a gagné à plusieurs reprises le CTF du NorthSec avec l’équipe HackToute et participe fréquemment à d’autres CTF avec l’équipe DCIETS.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Merci à Google d'héberger l'événement! &lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-zap-4-r.jpg | Google | link=https://www.google.ca/ ]]&lt;br /&gt;
&lt;br /&gt;
== WORKSHOP ! Top 10 OWASP - Unleash the threats ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-top10.jpg | WORKSHOP! Top 10 OWASP - Unleash the threats ]]&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 30 novembre 2016 de 17h30 à 20h30&lt;br /&gt;
WHERE&lt;br /&gt;
 Immunio @ WeWork&lt;br /&gt;
&lt;br /&gt;
De nos jours, la sécurité applicative est essentielle dans l’écosystème des entreprises de toutes tailles. Les vecteurs d’attaques sont multiples, les vulnérabilités de sécurité dans les applications peuvent être désastreuses et les impacts d’un « Hack » peuvent être irréversibles pour l’entreprise; vols de données sensibles, perte de réputation, perte de $$$$$, etc.&lt;br /&gt;
L’objectif du workshop est de comprendre la base sur les vulnérabilités de sécurité dans les applications et les techniques d’exploitation utilisées par les pirates informatiques, en plus de connaître les bonnes pratiques de développement en matière de sécurité applicative. &lt;br /&gt;
Avec l'aide de WebGoat, Damn Vulnerable Web Application et de Kali Linux, vous pourrez participer&lt;br /&gt;
à l'exploitation des applications et découvrir les techniques utilisées par les attaquants.&lt;br /&gt;
&lt;br /&gt;
Niveau : débutant&lt;br /&gt;
&lt;br /&gt;
Matériel requis :&lt;br /&gt;
 Votre portable&lt;br /&gt;
 Kali Linux&lt;br /&gt;
 La VM du workshop, envoyée aux participants&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
&lt;br /&gt;
Places très limitées (nb = 10). Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Immunio &amp;amp; WeWork pour l'événement.&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Présentateur : Christian Leclerc&lt;br /&gt;
&lt;br /&gt;
Christian est spécialisé en conception et développement de solutions web sécuritaires. Tout au long de sa carrière, il a acquis une vaste expertise sur plusieurs types de technologies et méthodologies, intégré la sécurité dans le cycle de développement d’applications, effectué des revues de code sécurité, déployé des outils d’analyse des vulnérabilités et mis en place des systèmes d’authentification. De plus, il a participé à la conception et au développement de solutions sécuritaires de pointe comme la signature électronique à l’aide d’une infrastructure à clé publique (PKI), les authentifications fortes, le Registre des consentements au don d'organes et de tissus (RDOQ.org) et la migration de plusieurs applications web vers un environnement SOA (Service Oriented Architecture). &lt;br /&gt;
&amp;lt;br&amp;gt;Merci à Immunio &amp;amp; WeWork d'héberger l'événement!&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:Immunio-horizontal-r.png|Immunio|link=https://www.immun.io/]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[Image:Wework-r.jpg|WeWork|link=https://www.wework.com/]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Histoire d'un Hack ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Histoire-dun-hack-r.jpg | Histoire d'un Hack ]]&lt;br /&gt;
&lt;br /&gt;
WHEN &lt;br /&gt;
 21 novembre 2016 à midi&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
Pour son activité du mois de novembre, OWASP Montréal propose à la communauté de la sécurité des TI et aux gestionnaires de faire l'autopsie d'une attaque de haute voltige sur un site web et des outils mis à la disposition par OWASP.&lt;br /&gt;
 &lt;br /&gt;
Bernard Bolduc cumule plus de 17 années d’expérience en technologies de l’information et en sécurité. Il œuvre à titre de conseiller senior en sécurité de l’information au niveau d’entreprise de classe nationale et internationale.&lt;br /&gt;
 &lt;br /&gt;
Bernard se spécialise en sécurité Unix, applicative et en gestion de la sécurité des télécommunications. Il combine ces expertises techniques afin d’obtenir des résultats probants et efficaces pour ces clients des secteurs bancaire, télécommunication et multimédias, de l’énergie ou des services publiques. Tout au long de sa carrière, Bernard s’est toujours maintenu à jour sur les dernières menaces de sécurité technologique et commerciale en assistant à des formations spécialisées et d'échanger avec un grand nombre de partenaires dans l'industrie de la sécurité.&lt;br /&gt;
 &lt;br /&gt;
La conférence débute à midi.&lt;br /&gt;
 &lt;br /&gt;
La conférence vous donne droit à 1 CPE et pour les 50 premières personnes, un lunch gratuit.&lt;br /&gt;
 &lt;br /&gt;
Merci à Desjardins d'héberger l'événement!&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Workshop ! Création de votre première extension OWASP ZAP (ou BurpSuite) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-zap-mix.jpg | Workshop ! Création de votre première extension OWASP ZAP (ou BurpSuite)]]&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 11 novembre 2016 de 18h à 21h&lt;br /&gt;
&lt;br /&gt;
WHERE &lt;br /&gt;
 Google Montréal&lt;br /&gt;
&lt;br /&gt;
OWASP Zed Attack Proxy (ZAP) est un scanneur de vulnérabilités et un outil de débogage HTTP. Ce type d'outil est crucial dans un test d'intrusion web et contient un lot intéressant de fonctionnalités. Cela dit, il est possible d'étendre les fonctionnalités. Plusieurs types d'extension sont possibles : vue alternative pour les requêtes ou les réponses, scanneur passif des réponses, scanneur actif produisant des requêtes, etc.&lt;br /&gt;
&lt;br /&gt;
Plusieurs options seront données, par exemple :&lt;br /&gt;
&lt;br /&gt;
 Détection automatique de flag dans les sources&lt;br /&gt;
 Scanneur actif asynchrone DNS&lt;br /&gt;
 Ou votre propre idée&lt;br /&gt;
&lt;br /&gt;
Pour chacune des suggestions, des squelettes de code seront fournis pour les APIs de ZAP. Pour les utilisateurs de BurpSuite, des directives analogues seront également données.&lt;br /&gt;
&lt;br /&gt;
Niveau : débutant / intermédiaire&lt;br /&gt;
&lt;br /&gt;
Matériel requis&lt;br /&gt;
&lt;br /&gt;
 Votre portable&lt;br /&gt;
 [https://www.owasp.org/index.php/OWASP_Zed_Attack_Proxy_Project OWASP ZAP (gratuit)]&lt;br /&gt;
 [https://portswigger.net/burp/download.html BurpSuite]&lt;br /&gt;
 Éditeur de code pour Java, Python ou Ruby&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Présentateur : Philippe Arteau&lt;br /&gt;
&lt;br /&gt;
Philippe est un chercheur en cybersécurité chez GoSecure. Il est l'auteur de l'outil d'analyse statique Java &amp;quot;Find Security Bugs&amp;quot;. Il a découvert des vulnérabilités importantes dans les logiciels populaires tels que Google Chrome, Dropbox, Paypal, RunKeeper et Jira. Il a présenté dans différentes conférences incluant Black Hat USA, Black Hat Europe, ATL Sec Con, NorthSec, Hackfest (QC) et JavaOne. Il a développé de nombreux plug-ins pour les outils de proxy BurpSuite et OWASP ZAP (Retire.js, Reissue Request Script, PDF preview et Image Metadata). Il a fait également des contributions à d'autres plug-ins comme J2eeScan.&lt;br /&gt;
&lt;br /&gt;
Merci à Google d'héberger l'événement! &lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-zap-4-r.jpg | Google | link=https://www.google.ca/ ]]&lt;br /&gt;
&lt;br /&gt;
==Logiciel de rançon (Ransomware) s'attaque au domaine de la santé==&lt;br /&gt;
&lt;br /&gt;
[[Image:HackingHealth-2.jpg | Logiciel de rançon (Ransomware) s'attaque au domaine de la santé ]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/ransomware-and-healthcare-hacking-health ]] [https://speakerdeck.com/owaspmontreal/ransomware-and-healthcare-hacking-health See the slides / Voir la présentation]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;(Conférence en anglais)&lt;br /&gt;
Pour le lancement de la saison 2016 - 2017, OWASP Montréal propose à la communauté de la sécurité des TI et aux gestionnaires de la santé une incursion dans le monde du logiciel malveillant ciblant le domaine de la santé.&amp;lt;br /&amp;gt;&lt;br /&gt;
Cette conférence s'intége dans le Coopérathon co-organisé par le Mouvement Desjardins et Hacking Health.&amp;lt;/b&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Le domaine de la santé serait devenu une cible privilégiée des campagnes de ransomware parce que l'industrie a souvent payé la rançon demandée pour récupérer les données confidentielles et vitales de ses clients. Monsieur Ed Gershfang nous brossera un portrait du phénomène et des meilleures pratiques à mettre en place en matière de sécurité applicative.&lt;br /&gt;
Ed Gershfang possède une expérience solide dans l'infrastructure informatique et plus de 6 ans d'expérience dans les domaines de la sécurité de l'information, de la vulnérabilité, de la gouvernance et de la gestion des risques. Il était directeur de la sécurité pour la société PeriGen, un chef de file de développement de logiciels médicaux en Israël.&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== La sécurité applicative vue par un pentesteur ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Juin2016-OWASPMtl.jpg | OWASP Montréal reçoit Mario Contestabile, Pentester de renom ]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
From Left to Right : Isabelle Lusseyran, Head of Development at Hacking Health. Eduard Gershfang Information Security Analyst at WSP | Parsons Brinckerhoff.&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/owasp-montreal-recoit-mario-contestabile ]] [https://speakerdeck.com/owaspmontreal/owasp-montreal-recoit-mario-contestabile See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Pour clore la saison 2015 – 2016, OWASP Montréal est fier d’accueillir au Midi Conférence un des architectes de renom du développement applicatif au Canada, monsieur Mario Contestabile.&lt;br /&gt;
En tant qu’auteur de plusieurs centaines de tests d’intrusion, il connait tous les rouages de ce qu’est véritablement une application Web «sécurisée». Mais avez-vous déjà remarqué que les rapports de tests d’intrusion mentionnent rarement, voir jamais : «Votre site est très difficile à pirater. Félicitations !» ?&lt;br /&gt;
Et qu’en est-il de ces rapports qui contiennent des dizaines de soi-disant vulnérabilités ? Est-ce que cela signifie d’emblée que l’application devrait être mise hors ligne ?  &lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Lors de cette conférence, nous examinerons des rapports concrets (ambigus) de vulnérabilités et nous les analyserons afin de mieux comprendre si elles représentent une véritable menace, ou si elles ne servent qu’à «remplir» les rapports.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Avec son expertise en protection et en attaque d’applications Web, il abordera les points suivants :&lt;br /&gt;
Comment pouvez-vous sélectionner des systèmes de façon à mieux exécuter des protections de sécurité ?&lt;br /&gt;
Éviter certains pièges dans votre application Web qui rendent les attaques plus faciles et la protection plus difficile.&lt;br /&gt;
De nos jours, que peuvent faire les développeurs à l’intérieur de systèmes communs, qui puisse me rendre la tâche plus ardue en tant que « hacker »?&lt;br /&gt;
Pouvons-nous exiger de meilleurs rapports de la part des firmes de sécurité?&lt;br /&gt;
À quoi devrions-nous nous attendre de la part d’un « pentesters »?&lt;br /&gt;
Comment pouvons-nous savoir si le « pentester » a vérifié les failles de l’application et qu’il n’a pas simplement utilisé un scanneur?&lt;br /&gt;
Et enfin, comment pouvons-nous aider les « ethical hackers » à obtenir un meilleur rendement lors d’un test d’intrusion?&lt;br /&gt;
Il expliquera le sujet en détails, et ensemble, nous verrons de quelles façons les développeurs d’applications peuvent exploiter le savoir-faire des « pentesters », et comment nous pouvons faire en sorte qu’une application Web soit protégée.&lt;br /&gt;
Biographie :&lt;br /&gt;
Mario Contestabile est reconnu comme l’un des experts en sécurité les plus réputés au Canada. Son expertise, construire et protéger votre plateforme applicative. Ancien développeur C++ et Java, Mario partage ses nombreuses connaissances en « ethical hacking » et en développement de codes sécurisé.  &lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Tuesday, 14 June 2016 from 12:00 PM to 1:00 PM (EDT) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Comment protéger les applications mobiles? ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Avril2016-OWASPMtl.png | Comment protéger les applications mobiles? ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/comment-proteger-les-applications-mobiles ]] [https://speakerdeck.com/owaspmontreal/comment-proteger-les-applications-mobiles See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Dans le cadre des Midis Conférence à l'Espace Desjardins, l'équipe OWASP Montréal vous invite à assister à une présentation sur les vulnérabilités les plus communes associées aux appareils mobiles. &lt;br /&gt;
Marie-Claire Willig détaillera entre autres comment stocker de façon sécuritaire les données de l’application mobile ainsi que protéger l’application contre des attaques externes. Des outils simples vous seront dévoilés pour détecter ces vulnérabilités.&lt;br /&gt;
Marie-Claire est une professionnelle d'expérience en sécurité appliquée.&lt;br /&gt;
Une grande partie de son intérêt professionnel réside actuellement dans un domaine assez niche, soit la revue de code sécuritaire, un fondement important de tout cycle de développement sécuritaire en entreprise.&lt;br /&gt;
Au sein de l'équipe de sécurité technologique Desjardins, elle est, en autre, responsable de former les développeurs (Java et .NET principalement) afin de les sensibiliser aux meilleures pratiques de développement sécuritaire.&lt;br /&gt;
Également, elle est une professionnelle des tests d'intrusion sur les applications web, les applications mobiles ainsi que l'infrastructure réseau.&lt;br /&gt;
Bienvenue à tous&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 20 April 2016 from 12:15 PM to 1:00 PM (EDT) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== NorthSec, Le plus gros événement de cybersécurité appliquée au Canada ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Mars2016-OWASPMtl.jpg | NorthSec, Le plus gros événement de cybersécurité appliquée au Canada ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/YQtvltQYs7Y]] [https://youtu.be/YQtvltQYs7Y Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
OWASP Montréal est fier d’inviter au Midi Conférence de mars, NorthSec est le plus gros événement de sécurité appliquée au Canada qui comprend deux jours de formation, deux jours de conférences ainsi qu’une compétition du genre « capture the flag » (CTF) de trois jours.&lt;br /&gt;
Gabriel Tremblay, Benoit Guerette, Pierre-David Oriol et Laurent Desaulniers viendront vous parler de cet organisme sans but lucratif dynamique qui est géré par une équipe de bénévoles passionnés qui donnent à chaque année leur énergie et leur temps pour soutenir la communauté de la sécurité de l’information.&lt;br /&gt;
Le volet compétition, l’épreuve maîtresse, est présentée sous forme d’un scénario qui rend cohérent une centaine de défis techniques. Les équipes de participants attaquent l’infrastructure de compétition pour soutirer des drapeaux (flags) à travers un ensemble de vulnérabilités présentes comme de l’injection SQL, des XSS ou encore l’exploitation d’exécutables sur systèmes embarqués. Quelques exemples de défis des années passées seront également présentés.&lt;br /&gt;
Le volet conférence, qui est à sa 2ème année, met de l’avant plusieurs présentations techniques touchant la sécurité applicative mais aussi l’éthique et leurs impacts sociaux. Certaines présentations confirmées seront dévoilés.&lt;br /&gt;
Le tout nouveau volet formation propose deux formations en sécurité applicative de calibre international (anglais) : “Advanced Web Security Testing with Burp Pro” et “Modern Object-Oriented Malware Reverse Engineering”.&lt;br /&gt;
Venez aussi, découvrir comment l'équipe est partie d'une idée en 2012 pour se rendre à un évènement d'envergure, qui rassemblera plus de 600 professionnels, étudiants et autres passionnés de sécurité appliquée lors de la 4ème édition qui aura lieu du 17 au 22 mai 2016 au Marché Bonsecours.&lt;br /&gt;
Finalement, la mission, la vision ainsi que les activités sociales de la semaine de NorthSec sont aussi au menu de cette présentation qui sera suivie d’une période de questions.&lt;br /&gt;
&lt;br /&gt;
Gabriel Tremblay, Delve Labs, Président&lt;br /&gt;
Benoit Guerette, Desjardins, VP Finances&lt;br /&gt;
&lt;br /&gt;
Pierre-David Oriol, Delve Labs, VP Conférence&lt;br /&gt;
Laurent Desaulniers, Bell Canada, Artisant de drapeaux&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 23 March 2016 from 12:00 PM to 1:00 PM (EDT) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== La sécurité applicative et l'hameçonnage - February 24th ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Fevrier2016-OWASPMtl.jpg | La sécurité applicative et l'hameçonnage ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/1RYlOiIENjQ]] [https://youtu.be/1RYlOiIENjQ Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
De nos jours, une des méthodes les plus efficaces pour contourner les périmètres de sécurité externes est l'hameçonnage conjointement avec l’abus de certaines technologies Web.&lt;br /&gt;
&lt;br /&gt;
Dans le cadre ses activités, OWASP Montréal est heureux d'inviter d'accueillir, l'équipe OKIOK qui présentera les impacts liés à ce type d'attaque, tel que vu et expérimenté en entreprise ainsi que les plans d'action pour traiter ces risques. La présentation abordera aussi bien la sécurité web et applicatives, des systèmes informatiques ainsi que de la sécurité physique de centres de données. &lt;br /&gt;
&lt;br /&gt;
    Capture d'informations sensibles par imitations de portails Web ;&lt;br /&gt;
    Authentification Web par 2-facteurs ;&lt;br /&gt;
    Injection SMTP dans des formulaires Web ;&lt;br /&gt;
    Attaque de type “Drive-by-download”;&lt;br /&gt;
    Prise de contrôle à distance à travers des flux HTTP;&lt;br /&gt;
    Attaque de CSRF à partir de courriels ;&lt;br /&gt;
    Attaque d'hameçonnage basée sur des achats par Internet (ex : PayPal).&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
When&lt;br /&gt;
 Wednesday, 24 February 2016 from 12:00 PM to 1:15 PM (EST) - Add to Calendar &lt;br /&gt;
Where&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest Montreal, Quebec CA&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Internet of {Things, Threats} - January 20th ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Janvier2016-OWASPMtl-R.png | Internet of {Things, Threats} ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=http://gosecure.github.io/presentations/2016-01-20_owasp-mtl/internet-of-threats.html ]] [http://gosecure.github.io/presentations/2016-01-20_owasp-mtl/internet-of-threats.html See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
De plus en plus de périphériques se retrouvent connectés sur Internet. Sous la bannière &amp;quot;Internet of Things&amp;quot; (IoT) ces équipements, que ce soit une pompe à insuline ou un système de caméra de sécurité, tournent généralement sous un système GNU/Linux embarqué d'architecture MIPS ou ARM. La difficulté de mettre à jour ces équipements ainsi que le peu d'effort mis dans la sécurité des systèmes ou la sécurité applicative en font des cibles de choix. Ces derniers mois, nous avons analysé plusieurs logiciels malveillants ciblant ces architectures. Que ce soit par l'exploitation d'une vulnérabilité (Shellshock) ou encore un défaut de configuration, ces systèmes exposés sur Internet peuvent être compromis.&lt;br /&gt;
&lt;br /&gt;
Notre présentation couvrira quelques une de ces analyses:&lt;br /&gt;
&lt;br /&gt;
* Linux/Moose, un malware se propageant automatiquement qui fraude les réseaux sociaux (par exemple Facebook, Twitter et YouTube)&lt;br /&gt;
* LizardSquad et acteurs étrangers qui utilisent des systèmes embarqués compromis pour réaliser des dénis de service distribué (DDoS) &lt;br /&gt;
* Win32/RBrute est un logiciel malveillant qui tente de changer les paramètres de routeurs dans le but de faire du &amp;quot;DNS poisoning&amp;quot;. Il a été distribué par le populaire botnet Sality.&lt;br /&gt;
* Un kit d'exploits qui utilise seulement le navigateur de leur victime avec le même objectif, c'est-à-dire faire du &amp;quot;DNS poisoning&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Enfin, des conseils seront proposés à l'audience pour l'aider à se protéger de ces menaces.&lt;br /&gt;
&lt;br /&gt;
'''Thomas Dupuy''' (twitter: @nyx__o)&lt;br /&gt;
&lt;br /&gt;
Thomas est chercheur en logiciel malveillant chez ESET Canada Recherche. Bon vivant, Thomas déjeune en &amp;quot;reversant&amp;quot; des binaires, contribue à quelques projets open source durant le diner (yara, yara rules, pefile, APTnotes) et la nuit participe à des &amp;quot;Hacking Games&amp;quot; (Capture The Flag). Curieux de nature Thomas analyse des malware aux architectures &amp;quot;exotiques&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Olivier Bilodeau''' (twitter: @obilodeau)&lt;br /&gt;
&lt;br /&gt;
Olivier Bilodeau is the head of Cybersecurity Research at GoSecure a consultancy firm specializing in cybersecurity services for the public and private sector. With more than 10 years of infosec experience, Olivier worked on Unix servers at Bell Canada, managed a portion of Air Canada's network, wrote open source network access control software at Inverse and worked as a Malware Researcher at ESET. He likes to reverse engineer everything that crosses his path, participate in information security capture-the-flag competitions, hack open source code and brew beer. He has spoken at various conferences (Defcon, Botconf, VirusBulletin, Derbycon, ...), used to lecture on information security at ETS University in Montreal, drives the NorthSec Hacker Jeopardy and co-organizes the MontreHack capture-the-flag training initiative. His primary research interests include reverse-engineering tools, Linux and/or embedded malware and honeypots.&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Survivre aux attaques DDOS applicatives ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Decembre2015-OWASPMtl.jpg | Survivre aux attaques DDOS applicatives ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Survivre aux attaques DDOS (Distributed Denial-Of-Service) applicatives.&lt;br /&gt;
Cette conférence s'adresse aux professionnels et gestionnaires des TI.&lt;br /&gt;
Conférencier : Christian Shink, ing., CSSLP, ingénieur système chez Radware, manufacturier spécialisé dans la prévention des attaques DDOS. Il fut également consultant en sécurité applicative chez In Fidem.&lt;br /&gt;
Objectifs de la conférence:&lt;br /&gt;
Présenter les tendances actuelles en matière d'attaques DDOS applicatives.&lt;br /&gt;
Renseigner les participants sur les techniques et stratégies pour contrer ces attaques illustrées à partir de cas vécus.&lt;br /&gt;
Démystifier certains mythes en ce qui concernent les façons efficaces de protéger les applications contre des attaques DDOS.&lt;br /&gt;
Date : 16 décembre 2015&lt;br /&gt;
Heure : 11h45&lt;br /&gt;
La conférence débute à 12h00 et se termine à 12:55.&lt;br /&gt;
Un lunch sera servi.&lt;br /&gt;
Réservez maintenant!&lt;br /&gt;
1 CPE&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 16 December 2015 from 11:45 AM to 1:00 PM (EST) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec &lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Sécurité des applications - Systèmes de contrôles industriels ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Novembre2015-OWASPMtl-R.png | Sécurité des applications - Systèmes de contrôles industriels ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/0eAZpyiQQ9A]] [https://youtu.be/0eAZpyiQQ9A Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&lt;br /&gt;
La sécurité des applications et les systèmes de contrôles industriels.&lt;br /&gt;
Cette conférence s'adresse aux professionnels et gestionnaires des TI desinfrastructures critiques qui exploitent ou gèrent des systèmes de contrôles industriels(SCI) et SCADA (surveillance et d'acquisition de données).&amp;lt;br /&amp;gt;&lt;br /&gt;
Conférenciers : Robert Nastas, CSSA. Gestionnaire de projet et Youssef Jad, Architecte Cyber sécurité, ICS-CERT&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Objectifs de la conférence:&lt;br /&gt;
* Démystifier le domaine d'affaires.&lt;br /&gt;
* Renseigner les participants sur les bonnes pratiques de sécurité desapplications liées au secteur industriel.&lt;br /&gt;
* Proposer aux professionnels et gestionnaires des TI responsables dessystèmes SCADA et SCI des pistes de solutions aux enjeux de sécurité.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
L'équipe OWASP Montréal vous remercie d'avoir assisté en grand nombre à la conférence, 'La sécurité des applications et les systèmes de contrôles industriels'.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 18 November 2015 from 11:45 AM to 1:00 PM (EST) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Les préoccupations actuelles de hauts dirigeants en matière de cybersécurité et de sécurité applicative ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Septembre2015-OWASPMtl.jpg | Les préoccupations actuelles de hauts dirigeants en matière de cybersécurité et de sécurité applicative ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/un-regard-sur-la-securite-de-linformation-en-2015-par-eric-hebert ]] [https://speakerdeck.com/owaspmontreal/un-regard-sur-la-securite-de-linformation-en-2015-par-eric-hebert See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Pour le lancement des activités corporatives de la saison 2015 - 2016, le 8 septembre prochain à 12:00, l'équipe OWASP Montréal convie les gestionnaires et artisants de la sécurité des TIC à venir entendre monsieur Éric Hébert qui nous présentera son interprétation des préoccupations actuelles de hauts dirigeants en matière de cybersécurité et de sécurité applicative. L'événement se tiendra au complexe Desjardins à la salle &amp;quot;Espace Desjardins&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
''' ÉRIC G. HÉBERT, CISM, CISSP ''' &amp;lt;br /&amp;gt;&lt;br /&gt;
Après plus de 20 ans passés dans le domaine de la sécurité des technologies de l’information, Éric se spécialise dans la mise en œuvre et la gestion d'équipes performantes, capables de relever les plus hauts défis de la cybersécurité moderne.&amp;lt;br /&amp;gt;&lt;br /&gt;
Capable de dialoguer avec les hauts dirigeants, il sait traduire et vulgariser les enjeux techniques complexes tout en respectant la nature et l'appétence au risque de ses clients. Dynamique et pourvu d'une expérience couvrant presque toutes les sphères de la SI, il fonce dans le respect de la culture établie tout en implantant des solutions pragmatiques et efficaces.&amp;lt;br /&amp;gt;&lt;br /&gt;
Depuis plus de 10 ans, il gravite principalement autour des entreprises du domaine financier (BNC, Desjardins, Fonds de solidarité FTQ...) et les accompagne dans la mise en place de solutions efficaces tenant compte à la fois des risques et des budgets.&lt;br /&gt;
En plus d’avoir fondé de nombreuses associations telles que le RéseauSécurIT et le RPSI, il maintient une présence régulière auprès des milieux associatifs professionnels et partage régulièrement ses expériences lors de conférences et d'entrevues avec divers médias.&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Events / Évènements =&lt;br /&gt;
&lt;br /&gt;
== Owasp Montreal at [https://nsec.io/ NorthSec 2017] ==&lt;br /&gt;
&lt;br /&gt;
[[Image:NorthSec2017-5.jpg]]&lt;br /&gt;
[[Image:NorthSec2017-6.jpg]]&lt;br /&gt;
&lt;br /&gt;
From Left to Right: Anne Gauthier, OWASP Montréal Chapter Leader (President) and Application Security Analyst at GoSecure, Hugo Genesse, OWASP Montréal Chapter Leader and Research Intern at PNF Software, Julien, OWASP Montréal Chapter Leader&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal at [https://2017.appsec.eu/ AppSec] ==&lt;br /&gt;
&lt;br /&gt;
[[Image:OWASPAppSecBelfast2017-7.jpg]]&lt;br /&gt;
&lt;br /&gt;
OWASP Montreal and Ottawa Chapter Leaders at OWASP AppSec Belfast, UK #WomenInAppSec&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal at [https://hackfest.ca/ HackFest 2016] ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hackfest2016-r.jpg| HackFest |link=https://hackfest.ca/]]&lt;br /&gt;
&lt;br /&gt;
From left to right: Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Louis Nadeau, OWASP Québec Chapter Leader and Manager, Product Security at Bentley Systems and Patrick Leclerc, OWASP Québec Chapter Leader and Information Security Advisor at La Capitale.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal at OWASP [https://2016.appsecusa.org/ AppSec USA 2016, Washington] ==&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:OWASPMtl-AppSecUSA2016-Washington.jpg | OWASP Montreal at AppSec USA 2016, Washington]] &lt;br /&gt;
&lt;br /&gt;
​From left to right: Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Marie-Claire Willig, Application Security Analyst at Desjardins, Speaker and Cofounder of the Roslyn Security Guard tool which will be presented at Blackhat 2016, Alexandre Hamelin President at Synlabs Consulting Inc., Jonathan Marcil, Application Security Engineer at Blizzard Entertainment and former OWASP Montreal Chapter Leader. Philippe Arteau, Cybersecurity Researcher at GoSecure and designer of [https://find-sec-bugs.github.io/ Find Security Bugs] and Roslyn Security Guard tool which will be presented at Blackhat 2016.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://www.gosec.net GoSec] 2016 ==&lt;br /&gt;
&lt;br /&gt;
[[Image:OWASP-GoSec2016-1r.jpg|OWASP Montreal at GoSec 2016]] [[Image:OWASP-GoSec2016-2r.jpg|OWASP Montreal at GoSec 2016]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
From left to right : Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Simon Lacasse, student and volunteer, and Laurent Desaulniers, Security Analyst at Bell Canada.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://www.nsec.io/ NorthSec] 2016 – Annual Applied Security Event ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hackfest2016-OWASPMtl.jpg|OWASP Montreal at NorthSec 2016]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Simon Veilleux &lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
From left to right : Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Olivier Arteau OWASP Montréal Chapter Leader and Conseiller chez Groupe Technologie Desjardins, Hugo Genesse, OWASP Montréal Chapter Leader and Vulnerability Research Intern at Wurldtech Security Technologies.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://hackfest.ca/en/ Hackfest] 2015 ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hackfest2015-OWASPMtl-R.JPG | OWASP Montreal at Hackfest 2015]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Hackfest &lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
From left to right : Jonathan Marcil, Application Security Engineer at Blizzard Entertainment and former OWASP Montreal Chapter Leader. Philippe Arteau, Cybersecurity Researcher at GoSecure and designer of [http://find-sec-bugs.github.io/ Find Security Bugs] and Roslyn Security Guard tool which will be presented at Blackhat 2016. &lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/8U0qkEuUFy8]] [https://youtu.be/8U0qkEuUFy8 Watch the video / Regarder la vidéo]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://www.gosec.net/ GoSec] 2015 – The Annual Cybersecurity Conference presented by GoSecure, EY and ISACA. ==&lt;br /&gt;
&lt;br /&gt;
[[Image:GoSec2015-OWASPMtl.jpg|OWASP Montreal at GoSec 2015]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
From left to right : Marie-Claire Willig, Application Security Analyst at Desjardins, Speaker and Cofounder of the Roslyn Security Guard tool which will be presented at Blackhat 2016. Benoît Guérette, Application Security Team Leader at Desjardins, VP Finance at NorthSec and OWASP Montreal Chapter Founder and Former Chapter Leader.&lt;br /&gt;
&lt;br /&gt;
== See also / Voir aussi ==&lt;br /&gt;
&lt;br /&gt;
OWASP Montréal recommends Montréhack. Learn and share knowledge on IT security by solving technical challenges. Third Monday of every month. &lt;br /&gt;
&lt;br /&gt;
OWASP Montréal recommende Montréhack. Apprends et partages des connaissances sur la sécurité informatique en travaillant des problèmes appliqués. Chaque troisième lundi du mois. &lt;br /&gt;
&lt;br /&gt;
[[File:Montrehack.png|Montréhack|link=http://montrehack.ca/|alt=Montréhack]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Archives 2007-2015 =&lt;br /&gt;
{{:Montreal chapter past meetings}}&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - February 3rd - Getting to Know the Software Assurance Marketplace (SWAMP) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/p4_vjufcB6Q]] [https://youtu.be/p4_vjufcB6Q Watch the conference / Regarder la conférence]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/getting-to-know-the-software-assurance-marketplace-swamp-by-pat-beyer]] [https://speakerdeck.com/owaspmontreal/getting-to-know-the-software-assurance-marketplace-swamp-by-pat-beyer See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Pat Beyer&lt;br /&gt;
*'''ADDITIONAL PRESENTER:'''  Abe Megahed&lt;br /&gt;
*'''ABSTRACT:''' The Software Assurance Marketplace (SWAMP) is an open facility that is designed, built, and operated by four research institutions. The SWAMP provides no-cost access to an array of open-source and commercial software analysis tools. This presentation will provide an overview and demo of the SWAMP, including our goals, intended audience, current capabilities, and future plans. We will cover our relationship with OWASP, incorporation of open-source software assurance tools, and status as an open-source project and resource available to the software community. Visit https://continuousassurance.org/ to learn more about us.&lt;br /&gt;
*'''BIO:''' Pat Beyer serves as the Product Manager for the Software Assurance Marketplace (SWAMP). With over 25 years of experience successfully managing multi-million dollar global projects, Beyer’s expertise extends to the IT, construction, and operations sectors, with a specialization in managing government contracts and grants. A gifted communicator, Beyer is a sought after speaker due to his ability to deliver complex information about technology products and services in a way that is easily understood. He is a decorated combat veteran of the Global War on Terror, the international military campaign that started following the 9/11 terrorist attacks on the United States. In 2004, he constructed and rehabilitated over 20 schools, clinics, and water treatment plants for the Iraqi people using local contractors. Beyer also holds a Bachelor of Science, a Masters in Business Administration, a Ph.D. in Organization and Management, and a Project Management Professional (PMP) certification.&lt;br /&gt;
*'''BIO:''' Abe Megahed is a web developer for the Software Assurance Marketplace. In previous lifetimes, he has been a computer graphics researcher, a game programmer, a programming language and compiler nerd, a dot com company founder, a creator of helicopter simulations, and a developer of 3D simulations for NASA astronaut crew training.&lt;br /&gt;
*'''WHEN:'''  Tuesday, February 3rd 2015&lt;br /&gt;
*'''WHERE:''' Room PK-1140 - UQAM Pavillon Président-Kennedy, 201 Avenue du Président-Kennedy  J2X 3Y7&lt;br /&gt;
*'''REGISTRATION:''' https://owaspmtlswamp2015.eventbrite.ca&lt;br /&gt;
*'''WEBCAST:''' https://www.youtube.com/watch?v=p4_vjufcB6Q&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/getting-to-know-the-software-assurance-marketplace-swamp-by-pat-beyer&lt;br /&gt;
&lt;br /&gt;
*'''ACADEMIC PARTNER:''' AGEEI-UQAM - http://www.ageei.org/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Welcome speech by Chapter Leader (Jonathan Marcil)&lt;br /&gt;
  18:30-20:00 Main session: Getting to Know the Software Assurance Marketplace&lt;br /&gt;
  20:00-...   End of the meeting&lt;br /&gt;
&lt;br /&gt;
[[Image:SWAMP-Logo-Final-Med.png|300px|link=https://continuousassurance.org/]]&lt;br /&gt;
[[Image:Ageeilogo.jpg|200px|link=http://www.ageei.org/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - 4 décembre - Malware côté serveur — évolution, méthodes d’opération et forensic Linux ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/lo8WDl-WQ3E]] [https://youtu.be/lo8WDl-WQ3E Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/malware-cote-serveur-par-marc-etienne-m-dot-leveille]] [https://speakerdeck.com/owaspmontreal/malware-cote-serveur-par-marc-etienne-m-dot-leveille See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''PRÉSENTATEUR PRINCIPAL:''' Marc-Etienne M.Léveillé&lt;br /&gt;
*'''RÉSUMÉ:''' Les logiciels malveillants ciblant les serveurs ont évolué. Ils sont utilisés par des groupes de cybercriminels organisés dans le but de faire du profit via des redirections web et l’envoie de pourriels. La présentation portera sur Opération Windigo, une opération malveillante qui a affecté plus de 25 000 serveurs dans le monde. Après une brève description des composantes de Windigo, nous verrons comment les opérateurs déploient leurs logiciels malveillants et surveille leur réseau de serveurs infectés. Des trucs pratiques pour faire de la forensics sur des systèmes Linux seront donnés. Cette présentation est une suite à la présentation &amp;quot;Linux/Cdorked: Server side malware&amp;quot;, donnée par Olivier Bilodeau à OWASP Montréal en 2013. La présentation sera en français avec des diapositives en anglais (aka Montreal-style).&lt;br /&gt;
*'''BIO:''' Marc-Etienne est un chercheur en logiciel malveillant chez ESET depuis 2012. Il se spécialise dans les logiciels malveillants qui s’attaquent à des plateformes inhabituelles comme aux produits fruités et aux oiseaux nordiques. Dernièrement, il passe beaucoup de son temps à faire la rétro-ingénierie de logiciels malveillants sur des serveurs Linux et s’intéresse à leurs méthodes d’opération. Il adore participer de façon collégiale aux CTFs avec ses amis les CISSP Groupies et jouer de la clarinette. Il tweet très peu à @marc_etienne_.&lt;br /&gt;
*'''QUAND:''' 4 décembre 2014 à 18h00&lt;br /&gt;
*'''OÙ:''' Local M-1510, Polytechnique Montréal, 2900 Boulevard Edouard-Montpetit&lt;br /&gt;
*'''INSCRIPTION:''' https://www.eventbrite.ca/e/owasp-montreal-4-decembre-malware-cote-serveur-evolution-methodes-doperation-et-forensic-linux-tickets-14635313617&lt;br /&gt;
*'''ÉQUIPE ACADÉMIQUE:''' Polyhack - http://polyhack.org/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
&lt;br /&gt;
 18:00-18:30 Réseautage&lt;br /&gt;
 18:30-18:35 Mot de bienvenue par le leader du chapitre (Jonathan M.)&lt;br /&gt;
 18:35-19:30 Présentation principale : Malware côté serveur&lt;br /&gt;
 19:30-20:00 Période de questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Polyhacklogonoirpetit.png|200px|link=http://polyhack.org/]]&lt;br /&gt;
[[Image:LogoPolytechnique.gif|link=http://www.polymtl.ca/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - October 23rd - XXE : À l’assaut des analyseurs XML ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/MZviLB9-42E]] [https://youtu.be/MZviLB9-42E Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/xxe-a-lassaut-des-analyseurs-xml-par-philippe-arteau]] [https://speakerdeck.com/owaspmontreal/xxe-a-lassaut-des-analyseurs-xml-par-philippe-arteau See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''PRÉSENTATEUR PRINCIPAL:''' Philippe Arteau&lt;br /&gt;
*'''RÉSUMÉ:''' L'utilisation d’XML est fortement répandue. Le format est utilisé pour des fichiers de configuration, pour des métadonnées, pour des documents textes, et bien plus. La prise en charge de fichiers XML n’est pas sans risque. La plupart des analyseurs XML ne sont pas sécuritaires par défaut pour le traitement de fichier externe. Cette présentation fera un survol des vulnérabilités de type « Xml eXternal Entity » et de l’étendue des risques pour différents langages de programmation. Plusieurs démonstrations sont prévues.&lt;br /&gt;
*'''BIO:''' Philippe est conseiller en sécurité applicative pour le Groupe Technologies Desjardins. Au quotidien, il s’occupe d’effectuer des tests d’intrusions et des revues de code. Il a découvert des vulnérabilités importantes dans plusieurs logiciels populaires incluant Google Chrome, DropBox, ESAPI et Jira.&lt;br /&gt;
*'''QUAND:'''  23 Octobre 2014 à 18h00&lt;br /&gt;
*'''OÙ:''' École de Technologie Supérieure Local A-3230, 1100 Rue Notre-Dame Ouest, Montréal, QC H3C 1K3&lt;br /&gt;
*'''INSCRIPTION:''' http://www.eventbrite.ca/e/owasp-montreal-23-octobre-xxe-a-lassaut-des-analyseurs-xml-tickets-13426881163&lt;br /&gt;
*'''PARTENAIRE ACADÉMIQUE:''' ETS - DCI http://dciets.com/&lt;br /&gt;
*'''PROGRAMME:''' &lt;br /&gt;
&lt;br /&gt;
 18:00-18:30 Réseautage&lt;br /&gt;
 18:30-18:45 Mot de bienvenue&lt;br /&gt;
 18:45-19:45 Présentation principale - &amp;quot;À l’assaut des analyseurs XML&amp;quot; Philippe Arteau&lt;br /&gt;
 19:45-20:00 Période de questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Blason_dci.png‎‎‎|150px|link=http://dciets.com/]]&lt;br /&gt;
[[Image:ETS-rouge-devise-impr-fond_transparent.png|150px|link=http://www.etsmtl.ca/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - July 24th - Web security for DevOps: the glory is in the headers ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/6bp1NCLT-YQ]] [https://youtu.be/6bp1NCLT-YQ Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/web-security-for-devops-the-glory-is-in-the-headers-by-jonathan-marcil]] [https://speakerdeck.com/owaspmontreal/web-security-for-devops-the-glory-is-in-the-headers-by-jonathan-marcil See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Jonathan Marcil&lt;br /&gt;
*'''ABSTRACT:''' DevOps is a buzzword which can be easily demystified: in essence it is a process which aims to combine the development and system administration process into one; Operations. As developers become responsible for server setup, security counter measures are evolving as well. The line between server configuration and application behaviour has been blurred. In this talk we will cover some HTTP headers in regards to security such as CORS, CSP and HSTS. We will demonstrate several forms of attack, and how they can (should) be countered.&lt;br /&gt;
*'''BIO:''' Jonathan is devoted to security and specialized in Web application security.  His main occupation is consulting in Web security, but deep down he is a developer with a agnostic vision of programming languages. He has a diploma in Software Engineering from Ecole de Technologie Superieure and more than 10 years of experience in Information Technology and Security.&lt;br /&gt;
*'''WHEN:'''  At noon on July 24th 2014&lt;br /&gt;
*'''WHERE:''' 75 Queen Street, office 3100, Montreal, QC H3C 2N6&lt;br /&gt;
*'''REGISTRATION:''' You can join us on site for a pizza slice but this is mainly an online event. Contact jonathan.marcil@owasp.org.&lt;br /&gt;
*'''WEBCAST:''' https://www.youtube.com/watch?v=6bp1NCLT-YQ&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/web-security-for-devops-the-glory-is-in-the-headers-by-jonathan-marcil&lt;br /&gt;
*'''EVENT SPONSOR:''' Pheromone http://www.pheromone.ca/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  12:00-12:10 Welcome and quick OWASP introduction&lt;br /&gt;
  12:10-13:10 Main presentation - &amp;quot;Web security for DevOps: the glory is in the headers&amp;quot; Jonathan Marcil&lt;br /&gt;
  13:10-... Open discussion and questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Logo-phero.gif‎|link=http://www.pheromone.ca/]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - June 18th - Gaps in the Clouds ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/gaps-in-the-clouds-by-robert-fritz]] [https://speakerdeck.com/owaspmontreal/gaps-in-the-clouds-by-robert-fritz See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Robert Fritz&lt;br /&gt;
*'''ABSTRACT:''' Cloud technology offers agility and scaling, and a chance to break away from legacy IT choices.  Unfortunately, skipping traditional IT activities often results in poorly patched systems, out of date firewalls, and overprovisioned entitlements wielded by admins whose “day job” is development.  Boundaries of accountability and responsibility amongst cloud providers and consumers are confusing, vague, and shift, making security difficult to manage.  In such an environment, a “BP-spill” event, where cost wins over safely safety, is likely.  This talk will dive down into the cracks between the layers of cloud, and share some of the exciting dirt we have seen and expect to see in coming years.”&lt;br /&gt;
*'''BIO:''' Robert Fritz has been practicing security his entire career. Rob started as an Air Force lieutenant at Langley AFB and later at the Pentagon in Washington DC, building and managing classified networks. Finding he was getting too far from technology after a brief stint flying, he left the military to get back to the tech, and built security tools for HP in their HP-Unix lab.  Over time he found himself in more and more security design discussions, so co-authored HP’s Commercial Application Threat Analysis Methodology, building an internal consulting practice at HP.  This quantitative approach, led to two pending patents, an external-facing consulting practice, and his contributions to NIST IR-7502, the Common Configuration Scoring System (CVSS follow-on).  He is the former lead editor for the Center for Internet Security’s HP-UX Benchmark, and current lead for the Android Benchmark.  Robert now works for Morgan Stanley as global head of the Strategic Consulting team in the Security Architecture group, and leads the team’s cloud and social-media security practices.&lt;br /&gt;
*'''WHEN:''' June 18th 2014&lt;br /&gt;
*'''WHERE:''' 700 Rue Wellington, Floor 2, Montreal, QC H3C 3S4&lt;br /&gt;
*'''REGISTRATION:''' http://owaspmtl18junems.eventbrite.ca&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/gaps-in-the-clouds-by-robert-fritz&lt;br /&gt;
*'''EVENT SPONSOR:''' Morgan Stanley http://www.morganstanley.com/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:30 Networking and Morgan Stanley Hosted Pizza and Soft Drinks&lt;br /&gt;
  18:30-18:45 OWASP Chapter &amp;amp; Morgan Stanley Welcome&lt;br /&gt;
  18:45-19:45 Main presentation - &amp;quot;Gaps in the Clouds&amp;quot; Robert Fritz&lt;br /&gt;
  19:45-20:00 Open discussion and questions&lt;br /&gt;
  20:00-...   Optional, informal networking at Aziatic - 626 rue Marguerite-d'Youville, Montréal, QC H3C 1W7&lt;br /&gt;
&lt;br /&gt;
[[Image:Morgan_Stanley_Historical_Logo.png|link=http://www.morganstanley.com/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - May 26th - Récapitulatif des challenges NorthSec ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/P8_V3RI1Ru4]] [https://youtu.be/P8_V3RI1Ru4 Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''PRÉSENTATEUR PRINCIPAL:''' Laurent Desaulniers&lt;br /&gt;
*'''RÉSUMÉ:''' Solutions de la compétition en sécurité NorthSec 2014 sur les sujets de  XXE + SSRF, WAF Bypass, Xpath Injection, DOM Injection, HTTP Only Flag bypass et contournement de captchas. Une bonne façon d'apprendre sur ces failles que vous étiez ou non un participant de la compétition.&lt;br /&gt;
*'''MESSAGE DU PRÉSENTATEUR:''' Vous voyez Rao dans votre soupe? Vous voulez une solution pour un XSS avec des cookies http only? Les captchas illisibles sont un problème? Assistez à la présentation de l'OWASP!&lt;br /&gt;
*'''BIO:''' Laurent Desaulniers est un passionné de sécurité informatique. Il a présenté au Hackfest, au colloque RSI, à OWASP et est challenge designer à NorthSec. M. Desaulniers détient les certifications CISSP, CISM, CISA et OSCP.&lt;br /&gt;
*'''QUAND:''' 26 mai à 18h00&lt;br /&gt;
*'''OÙ:''' Local PK-1140 - Pavillon Président-Kennedy 201, Avenue du Président-Kennedy, J2X 3Y7&lt;br /&gt;
*'''INSCRIPTION:''' https://www.eventbrite.ca/e/owasp-montreal-26-mai-recapitulatif-des-challenges-northsec-tickets-11724413035&lt;br /&gt;
*'''WEBCAST:''' https://www.youtube.com/watch?v=P8_V3RI1Ru4&lt;br /&gt;
*'''ÉQUIPE ACADÉMIQUE''' AGEEI-UQAM - http://www.ageei.org/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
&lt;br /&gt;
 18:00-18:30 Réseautage&lt;br /&gt;
 18:30-18:35 Mot de bienvenue par le leader du chapitre (Jonathan M.)&lt;br /&gt;
 18:35-19:30 Présentation principale : Récapitulatif des challenges NorthSec&lt;br /&gt;
 19:30-20:00 Période de questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Ageeilogo.jpg|200px|link=http://www.ageei.org/]]&lt;br /&gt;
[[Image:2397_nsec_Logo_500-250.png|200px|link=http://nsec.io/]]&lt;br /&gt;
&lt;br /&gt;
== Networking with infosec communities - April 21st ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''RÉSUMÉ:''' En collaboration avec Montréhack, mtlsec et NorthSec, nous organisons une soirée réseautage dans un pub du centre-ville. Du plaisir garanti avec les membres de plusieurs communautés infosec de Montréal!&lt;br /&gt;
&lt;br /&gt;
*'''ABSTRACT:''' In collaboration with Montréhack, mtlsec and NorthSec, we are organizing a networking evening in a pub downtown. Fun guaranteed with the other security communities in Montreal!&lt;br /&gt;
&lt;br /&gt;
*'''QUAND:''' 21 Avril 2014&lt;br /&gt;
*'''WHEN:''' April 21st 2014&lt;br /&gt;
&lt;br /&gt;
*'''OÙ/WHERE:''' BENELUX - Brasserie Artisanale 245 Sherbrooke St W Montreal, QC H2X 1X7&lt;br /&gt;
&lt;br /&gt;
*'''INSCRIPTION/REGISTRATION:''' https://www.eventbrite.ca/e/montrehack-avril-april-northsec-pre-party-tickets-11232307133&lt;br /&gt;
&lt;br /&gt;
*'''PARTENAIRES/PARTNERS:''' Montréhack http://montrehack.ca/ - mtlsec http://blog.mtlsec.com/ - NorthSec https://www.nsec.io/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
  18:00-21:00 Networking&lt;br /&gt;
  21:00-23:59 Remember to drink responsibly!&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - March 27th - Panel Compétition en sécurité NorthSec ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Présentation sous forme de panel - venez poser vos questions!'''&lt;br /&gt;
&lt;br /&gt;
*'''RÉSUMÉ:''' Les compétitions de type Capture the Flag (CTF) sont un moyen pour les professionnels et amateurs de sécurité informatique de mettre leurs talents à l'épreuve. NorthSec est une compétition Montréalaise annuelle en sécurité appliquée, qui aura lieu cette année au Marché Bonsecours de Montréal le 25, 26 et 27 avril prochain. Elle vise à augmenter le niveau technique des professionnels de la sécurité au Québec, ainsi que de permettre à ses acteurs les plus talentueux de se démarquer.&lt;br /&gt;
*'''DÉTAILS:''' Le panel de jeudi, sous la forme d'un échange convivial entre les organisateurs de l'évènement et de ses participants, abordera des thèmes variés comme l'écriture de bon défis, l'infrastructure, la logistique, les inattendus, un bilan de 2013 et tout ça en passant par de savoureuses annecdotes (on l'espère). Venez en grand nombre toucher à ces légendes de la scène infosec montréalaise!&lt;br /&gt;
*'''PANÉLISTES:''' Gabriel Tremblay, François Proulx, Laurent Desaulniers, Stéphane Graber&lt;br /&gt;
*'''ANIMATEUR:''' Olivier Bilodeau&lt;br /&gt;
*'''QUAND:''' 27 mars 2014&lt;br /&gt;
*'''OÙ:''' Salle M-1510, École Polytechnique de Montréal, 2500 chemin de Polytechnique, Montréal (Québec) H3T 1J4, pavillon Lassonde&lt;br /&gt;
*'''INSCRIPTION:''' https://www.eventbrite.ca/e/owasp-montreal-27-mars-panel-competition-en-securite-northsec-tickets-10918436337&lt;br /&gt;
*'''ÉQUIPE ACADÉMIQUE:''' Polytechnique - Polyhack http://polyhack.org/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Mot de bienvenue par le leader du chapitre (Jonathan Marcil)&lt;br /&gt;
  18:30-20:00 Présentation principale : Panel NorthSsec&lt;br /&gt;
&lt;br /&gt;
[[Image:Polyhack.png‎‎|200px|link=http://polyhack.org/]]&lt;br /&gt;
[[Image:LogoPolytechnique.gif|link=http://www.polymtl.ca/]]&lt;br /&gt;
[[Image:2397_nsec_Logo_500-250.png|200px|link=http://nsec.io/]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - February 25th - Proven Strategies for Web Application Security ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/proven-strategies-for-web-application-security-by-justin-c-klein-keane]] [https://speakerdeck.com/owaspmontreal/proven-strategies-for-web-application-security-by-justin-c-klein-keane See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Justin C. Klein Keane&lt;br /&gt;
*'''ABSTRACT:''' The rising dominance of the web as an application delivery platform has focused attacker attention squarely on the security of dynamic web applications. Application security is a complex, and shifting, field. Learn about tested and successful techniques to build safer applications, find flaws before they become vulnerabilities, and deploy applications that can detect, and resist attack.&lt;br /&gt;
*'''BIO:''' Justin C. Klein Keane is a security engineer and chapter leaders of OWASP in Philadelphia. For over a decade Justin has worked as a trainer, coder, and exploit developer. Justin is currently writing a book for NoStarch Press on hacking, speaks regularly at conferences, holds a masters degree in information technology from the University of Pennsylvania and is credited with hundreds of application vulnerability discoveries.&lt;br /&gt;
*'''WHEN:''' February 25th 2014&lt;br /&gt;
*'''WHERE:''' Ecole de technologie superieure, 1100 Notre-Dame Street West, Montreal, Room: A-1150&lt;br /&gt;
*'''REGISTRATION:''' http://owaspmtljan2014.eventbrite.ca&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/proven-strategies-for-web-application-security-by-justin-c-klein-keane&lt;br /&gt;
*'''ACADEMIC PARTNER:''' ETS - DCI http://dciets.com/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Welcome speech by Chapter Leader (Jonathan Marcil)&lt;br /&gt;
  18:30-20:00 Main session and open discussion: Proven Strategies for Web Application Security&lt;br /&gt;
  20:00-...   End of the meeting in a pub&lt;br /&gt;
&lt;br /&gt;
[[Image:Dciets.png‎‎‎|100px|link=http://dciets.com/]]&lt;br /&gt;
[[Image:Logo_ets.png|link=http://www.etsmtl.ca/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - January 28th - Latest trends in Mobile Security ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/8qPyKj4FKgY]] [https://youtu.be/8qPyKj4FKgY Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/latest-trends-in-mobile-security-by-francois-proulx]] [https://speakerdeck.com/owaspmontreal/latest-trends-in-mobile-security-by-francois-proulx See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Francois Proulx&lt;br /&gt;
*'''ABSTRACT:''' Last AppSecUSA 2013 had a great line up of talks, especially regarding mobile applications. This session will be covering all the hottest presentations about mobile security by doing an overview from what see saw at AppSecUSA, all with some slides and snippets of presentations that was recorded at the event. Discussion will be encouraged within the audience as this will be more a dynamic event than a regular talk.&lt;br /&gt;
*'''BIO:''' François Proulx is a senior mobile application developer who has worked on dozens of iOS applications since the very beginning of the Apple iOS platform. Over the past few years he has switched his focus to security. He spends a lot of his free time participating in Capture the Flag events (CTFs) and organizing the NorthSec security competition.&lt;br /&gt;
*'''WHEN:''' January 28th 2014&lt;br /&gt;
*'''WHERE:''' UQAM Room PK-1705, Pavillon Président-Kennedy (the big boat at Place des Arts) - 201 Avenue du Président-Kennedy  J2X 3Y7&lt;br /&gt;
*'''REGISTRATION:''' http://owaspmtl-mobilesecurity.eventbrite.ca&lt;br /&gt;
*'''SLIDES/CONTENT:''' [http://www.youtube.com/playlist?list=PLQtB2ug5xmvaQ9jeRWV53-F_T555GQfhW YouTube playlist]&lt;br /&gt;
*'''SPONSOR:''' Academic partner AGEEI-UQAM - http://www.ageei.org/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Welcome speech by Chapter Leader (Jonathan M.)&lt;br /&gt;
  18:30-20:00 Main session and open discussion: Mobile Security&lt;br /&gt;
  20:00-...   End of the meeting in a pub&lt;br /&gt;
&lt;br /&gt;
[[Image:Ageeilogo.jpg|200px|link=http://www.ageei.org/]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Presentations For Download  ====&lt;br /&gt;
&lt;br /&gt;
[http://www.owasp.org/images/0/0d/20100209mstechdaysowaspasvssgiv01-12657916463819-phpapp02.ppt OWASP ASVS] by Sebastien Gioria (09/03/2010) &lt;br /&gt;
&lt;br /&gt;
[http://www.ph-il.ca/slides/afup__authetification_forte.pdf Authentification Forte] by Philippe Gamache (02/02/2010) &lt;br /&gt;
&lt;br /&gt;
[http://www.opensamm.org/downloads/OpenSAMM-1.0.ppt Software Assurance Maturity Model (OpenSAMM)] by Pravir Chandra (03/11/2009) &lt;br /&gt;
&lt;br /&gt;
[http://www.owasp.org/images/d/de/Owasp-montreal-sept-17h-2009-justin-foster.pdf Crossing the Border – Javascript Exploits] by Justin Foster (17/09/2009) &lt;br /&gt;
&lt;br /&gt;
[http://www.owasp.org/images/c/c2/ALaughRIAt.pdf A Laugh RIAt] by Rafal Los (07/04/2009) &lt;br /&gt;
&lt;br /&gt;
[https://www.owasp.org/images/e/eb/OWASP-Montreal-24022009-RobLabbe.pptx Microsoft Security Development Lifecycle for IT] by Rob Labbe (24/02/2009) &lt;br /&gt;
&lt;br /&gt;
[https://www.owasp.org/images/3/39/OWASP-Montreal-24022009-EN.pdf OWASP Goal and Top Ten 2007 for Managers - French version] by Benoit Guerette (24/02/2009)&lt;br /&gt;
&lt;br /&gt;
Newer presentations are available on [https://speakerdeck.com/owaspmontreal Speaker Deck]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Circle_owasp_logo_nowhitebackground.png|200px]]&lt;br /&gt;
&lt;br /&gt;
= OWASP Foundation / Mission OWASP    = &lt;br /&gt;
OWASP Foundation ([https://docs.google.com/a/owasp.org/presentation/d/10wi1EWFCPZwCpkB6qZaBNN8mR2XfQs8sLxcj9SCsP6c/edit?usp=sharing Overview Slides]) is a professional association of [[Membership | global members]] and is open to anyone interested in learning more about software security. Local chapters are run independently and guided by the [[Chapter_Leader_Handbook]].  As a [[About_OWASP | 501(c)(3)]] non-profit professional association your support and sponsorship of any meeting venue and/or refreshments is tax-deductible. Financial contributions should only be made online using the authorized online chapter donation button.  To be a &amp;lt;b&amp;gt;SPEAKER&amp;lt;/b&amp;gt; at ANY OWASP Chapter in the world simply review the [[Speaker_Agreement | speaker agreement]] and then contact the local chapter leader with details of what OWASP PROJECT, independent research or related software security topic you would like to present on.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;La fondation OWASP est une [https://www.owasp.org/index.php/Membership association de professionnels] et elle est ouverte à tout intervenant intéressé à en apprendre davantage sur la sécurité applicative. Les chapitres locaux (dont celui de Montréal) sont gérés de façon indépendante et selon un [https://www.owasp.org/index.php/Chapter_Leader_Handbook manuel de directives à respecter].   &lt;br /&gt;
Toute contribution financière au chapitre peut être faite en ligne en utilisant l’icône prévu à cet effet. Pour être conférencier au sein de n’importe quel chapitre à l’échelle mondiale, vous n’avez qu’à prendre connaissance du document [https://www.owasp.org/index.php/Speaker_Agreement &amp;quot;entente avec les conférenciers – speaker agreement&amp;quot;] et à joindre le responsable du chapitre Montréal avec un descriptif du sujet que vous aimeriez aborder et s’il est relié à un projet OWASP, à de la recherche indépendante ou encore le sujet en particulier, concernant la sécurité applicative, que vous souhaitez aborder.&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== [[Image:Circle_owasp_logo_nowhitebackground.png|128px]] Montreal OWASP Team == &lt;br /&gt;
&lt;br /&gt;
Scope of the team is to discuss and plan local activities and meetings &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Chapter Leaders ===&lt;br /&gt;
&lt;br /&gt;
* [mailto:anne.gauthier@owasp.org Anne Gauthier], President/Présidente&lt;br /&gt;
* [mailto:michel.bourque{at}owasp.org Michel Bourque], Chapter coordinator and marketing manager/Coordination et Marketing&lt;br /&gt;
* [mailto:hugo.genesse(at)owasp.org Hugo Genesse], Web content and production manager/Site internet et Production &lt;br /&gt;
* [mailto:olivier.arteau(at)owasp.org Olivier Arteau], Logistic manager/Logistique&lt;br /&gt;
&lt;br /&gt;
==== Chapter leader history ====&lt;br /&gt;
*2008-2010 - Benoit Guerette, founder and chapter leader&lt;br /&gt;
*2011-2012 - Philippe Gamache, chapter leader (vice chapter-leader since 2010)&lt;br /&gt;
*2013-2015 - Jonathan Marcil, chapter leader&lt;br /&gt;
*2016-... - Anne Gauthier, Michel Bourque, Marius Popescu, Hugo Genesse, Olivier Arteau&lt;br /&gt;
&lt;br /&gt;
==== Old board members ====&lt;br /&gt;
*Philippe Pépos Petitclerc&lt;br /&gt;
*Michael Robillard&lt;br /&gt;
*Benoit Guerette (logistics 2015)&lt;br /&gt;
*Alexandre Rimthong&lt;br /&gt;
*Mathieu Binette&lt;br /&gt;
*Sean Coates&lt;br /&gt;
*Jean-Marc Robert&lt;br /&gt;
*Philippe Blondin&lt;br /&gt;
*Benoit Guerette (founder)&lt;br /&gt;
*Laurent Desaulniers&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;headertabs&amp;gt;&amp;lt;/headertabs&amp;gt; &lt;br /&gt;
__NOTOC__ &lt;br /&gt;
[[Category:Canada]]&lt;/div&gt;</summary>
		<author><name>Svieg</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=Montr%C3%A9al&amp;diff=241347</id>
		<title>Montréal</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=Montr%C3%A9al&amp;diff=241347"/>
				<updated>2018-06-17T20:25:09Z</updated>
		
		<summary type="html">&lt;p&gt;Svieg: add two conferences&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Welcome &amp;amp; Bienvenue to the OWASP Montréal chapter ==&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:OWASP-Montreal-Logo.png|Logo OWASP Montréal]]&lt;br /&gt;
&lt;br /&gt;
The OWASP Foundation was established in 2001 as an open community and software security resource. Since then, OWASP has grown to be globally recognized as a credible source for application security standards. &amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
OWASP is an open community dedicated to enabling organizations to conceive, develop, acquire, operate, and maintain applications that can be trusted. All of the OWASP tools, documents, forums, and chapters are free and open to anyone interested in improving application security. We advocate approaching application security as a people, process, and technology problem because the most effective approaches to application security include improvements in all of these areas. &amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
OWASP is open to anyone. Anyone can attend OWASP's vendor agnostic local chapter meetings, participate in regional and global conferences, and contribute to the many OWASP projects. And anyone can start a new project, form a new chapter, or lend their expertise to help an OWASP Global Committee.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt;On parle français aussi ! Le chapitre de Montréal organise plusieurs activités gratuites afin de partager les connaissances en sécurité applicative avec la communauté de développeurs et gestionnaires. Suivez-nous sur les réseaux sociaux pour connaître les dates des conférences du midi et des workshops !&amp;lt;/b&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Top documentation from OWASP includes: &lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/index.php/Top_10_2013-Top_10 OWASP TOP 10 : The Ten Most Critical Web Application Security Risks]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/images/3/33/OWASP_Application_Security_Verification_Standard_3.0.1.pdf OWASP ASVS : Application Security Verification Standard]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/images/5/52/OWASP_Testing_Guide_v4.pdf OWASP Testing Guide : Penetration Testing Framework]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/images/7/78/OWASP_AlphaRelease_CodeReviewGuide2.0.pdf OWASP Code Review Guide : Source Code Analysis Framework]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/index.php/OWASP_Cheat_Sheet_Series OWASP Cheat Sheet : Best practices guidelines for developers]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org OWASP Global]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Chapter Leaders / Responsables du chapitre ===&lt;br /&gt;
&lt;br /&gt;
* [mailto:anne.gauthier@owasp.org Anne Gauthier], President/Présidente&lt;br /&gt;
* [mailto:michel.bourque{at}owasp.org Michel Bourque], Chapter coordinator and marketing manager/Coordination et Marketing&lt;br /&gt;
* [mailto:hugo.genesse(at)owasp.org Hugo Genesse], Web content and production manager/Site internet et Production &lt;br /&gt;
* [mailto:olivier.arteau(at)owasp.org Olivier Arteau], Logistic manager/Logistique&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt; Volunteers / Volontaires OWASP Montréal: &amp;lt;/b&amp;gt;&lt;br /&gt;
* Simon Lacasse, Web content / Site internet&lt;br /&gt;
* Julien Touche, Logistique&lt;br /&gt;
* Jean-François Gill&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;b&amp;gt; Reach our chapter / Joindre le chapitre &amp;lt;/b&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Follow OWASP's Montreal chapter's activities through social medias, register to events, watch the previous presentations and more! &lt;br /&gt;
&lt;br /&gt;
Suivez les activités du chapitre OWASP Montréal via les réseaux sociaux, inscrivez-vous aux activités, visualisez les anciennes présentations et plus encore! &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;b&amp;gt;[http://lists.owasp.org/mailman/listinfo/owasp-montreal Click here] to join the local chapter mailing list.&lt;br /&gt;
&amp;lt;br /&amp;gt;[http://lists.owasp.org/mailman/listinfo/owasp-montreal Inscrivez-vous ici] à la liste de courriels du chapitre afin de recevoir les dernières nouvelles!&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Want to be part of the community ? &lt;br /&gt;
Devenez membre de notre communauté ! &lt;br /&gt;
[https://www.owasp.org/index.php/Membership_Map Click here / Cliquer ici]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Eb_press_little.gif‎|OWASP Montreal Eventbrite|link=http://owaspmontreal.eventbrite.ca/]] &lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[Image:Yt-brand-standard-logo-630px.png‎|128px|YouTube OWASP Montreal Channel|link=http://www.youtube.com/owaspmontreal]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]   &lt;br /&gt;
[[Image:Speakerdecklogo.png‎|Slides of OWASP Montreal on SpeakerDeck |link=https://speakerdeck.com/owaspmontreal]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Twitter-bird-cropped-onwhite.png|@owaspmontreal on Twitter|link=https://twitter.com/owaspmontreal]]&lt;br /&gt;
[[Image:FacebookSquareLogo.png|OWASP Montreal Facebook page|link=https://www.facebook.com/owasp.montreal]]&lt;br /&gt;
[[Image:LinkedinSquareLogo.png|OWASP Montreal on LinkedIn|link=https://www.linkedin.com/groups/1379007/profile]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
&lt;br /&gt;
== What we do / Nos activités ==&lt;br /&gt;
&lt;br /&gt;
OWASP Montreal is a really active chapter. We organize monthly conferences and workshops. All our events are free and meant to improve the knowledge and awareness of the community's developers, managers and computer security specialists. To be aware of the next event and for additional information, follow us on social medias. &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
OWASP Montréal est un des chapitres les plus actifs. Nous organisons mensuellement des ateliers et conférences. Tous nos événements sont gratuits et ont pour but d'améliorer les connaissances de la communauté. Ils s'adressent donc autant aux gestionnaires qu'aux développeurs et aux spécialistes en sécurité informatique. Pour plus d'informations sur nos activités et pour être au courant des prochaines dates d'événement, suivez nous sur les réseaux sociaux. &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;We also contribute to the vast OWASP knowledge base / Nous contribuons aussi aux ressources d'OWASP&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We list here the projects that were started by our members under OWASP's banner. &amp;lt;br /&amp;gt;&lt;br /&gt;
Nous listons ici les projets commencé par nos membres sous la banière d'OWASP. &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/index.php/Vulnerability_Disclosure_Cheat_Sheet Vulnerability Disclosure Cheat Sheet]&lt;br /&gt;
&lt;br /&gt;
== Sponsorship &amp;amp; Membership / Commandite &amp;amp; Adhésion ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Btn_donate_SM.gif|link=http://www.regonline.com/donation_1044369]] to this chapter or become a local chapter supporter.&lt;br /&gt;
&lt;br /&gt;
Or consider the value of [[Membership | Individual, Corporate, or Academic Supporter membership]]. Ready to become a member? [[Image:Join_Now_BlueIcon.JPG|75px|link=https://myowasp.force.com/]]&lt;br /&gt;
&lt;br /&gt;
[http://www.regonline.com/donation_1044369 Donnez] au chapitre ou devenez commanditaire du chapitre local! &lt;br /&gt;
&lt;br /&gt;
[https://myowasp.force.com/ Devenez membre !] Pour en savoir davantage sur les avantages d’une adhésion individuelle, corporative ou en tant qu’institution d’enseignement, [https://www.owasp.org/index.php/Membership cliquez ici]. &lt;br /&gt;
&lt;br /&gt;
[[Category:OWASP Chapter]]&lt;br /&gt;
&lt;br /&gt;
== Chapter Supporters / Commanditaires du chapitre ==&lt;br /&gt;
&lt;br /&gt;
[https://www.owasp.org/images/9/91/OWASP_Membership_Flyer_Montreal.png All details available here / Pour tous les détails] [[File:Chapter-supporter-owasp-montreal.png|200px|link=]] &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Platinum / Platine ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Gosecure-2.png|GoSecure|link=http://www.gosecure.ca/]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[File:Desjardins2-400x400.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Gold / Or ===&lt;br /&gt;
&lt;br /&gt;
[[Image:PM_SCADA_Logo_Gris_Cybersecurite_FR.png|PM SCADA|link=http://pmscada.ca/en/]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Lunch &amp;amp; Learn / Workshops 2018 =&lt;br /&gt;
&lt;br /&gt;
== SecurityRAT - Handling of Security Requirements in SDLC ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Fri, 1 June 2018&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
OWASP dans le cadre des Midis conférence est heureux d'accueillir Daniel Kefer et Rene Reuter. Tous les deux viennent d'Allemagne et seront de passage à Montréal.&amp;lt;.br&amp;gt;&amp;lt;/br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Nos conférenciers viendront présenter SecurityRAT, un projet OWASP pour gérer les requis de sécurité pendant le cycle de vie des dévelopements applicatifs (SDLC).&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Biographie :&amp;lt;br /&amp;gt;&lt;br /&gt;
Daniel Kefer travaille en sécurité depuis 2007 et a commencé en tant que pentester. Il travaille depuis 2011 chez 1&amp;amp;1 où il mène l'équipe AppSec interne.&amp;lt;/br&amp;gt;&amp;lt;/br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
René Reuter est ingénieur sécurité depuis 6 ans. Il travaille chez Robert Bosch GmbH en tant que consultant en charge d'identifier les vulnérabilités et problèmes de conception dans les applications internes.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Insecurity in Information Technology ==&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Fri, 1 June 2018&lt;br /&gt;
WHERE&lt;br /&gt;
 Marché Bonsecours, salle 1847&lt;br /&gt;
&lt;br /&gt;
OWASP dans le cadre des Midis conférence est heureux d'accueillir Greg Castle.&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
A lot is expected of software developers these days; they are expected to be experts in everything despite very little training. Throw in the IT security team (often with little-to-no knowledge of how to build software) telling developers what to do and how to do it, and the situation becomes strained. This silo-filled, tension-laced situation, coupled with short deadlines and pressure from management, often leads to stress, anxiety and less-than-ideal reactions from developers and security people alike.&amp;lt;/br&amp;gt;&lt;br /&gt;
This talk will explain how job insecurities can be brought out by IT leadership decisions, and how this can lead to real-life vulnerabilities in software. This is not a talk about “feelings”, this is a talk about creating programs, governance and policies that ensure security throughout the entire SDLC.&amp;lt;/br&amp;gt;&amp;lt;/br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
No more laying blame and pointing fingers, it’s time to put our egos aside and focus on building high-quality software that is secure. The cause and effect of insecurities and other behavioral influencers, as well as several detailed and specific solutions will be presented that can be implemented at your own place of work, immediately. No more ambiguity or uncertainty from now on, only crystal-clear expectations.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Biographie :&amp;lt;br /&amp;gt;&lt;br /&gt;
Tanya Janca is a senior cloud advocate for Microsoft, specializing in application security; evangelizing software security and advocating for developers through public speaking, her open source project OWASP DevSlop, and various forms of teaching via workshops, blogs and community events. As an ethical hacker, OWASP Project and Chapter Leader, software developer, effective altruist and professional computer geek of 20+ years, she is a person who is truly fascinated by the ‘science’ of computer science.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Shipping in Pirate-Infested Waters: Practical Attack and Defense in Kubernetes ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Owasp-avril-2018.JPG  ]]&lt;br /&gt;
[[Image:Owasp-avril-2018-2.JPG ]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/ohTq0no0ZVU ]] [https://youtu.be/ohTq0no0ZVU Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 April 30 2018&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
OWASP dans le cadre des Midis conférence est heureux d'accueillir Greg Castle.&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
L'événement contiendra une diffusion de &amp;quot;Shipping in Pirate-Infested Waters: Practical Attack and Defense in Kubernetes&amp;quot; présenté à Kubecon 2017, suivi de 20 min de questions/réponses avec Greg par vidéoconférence.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Biographie :&amp;lt;br /&amp;gt;&lt;br /&gt;
Greg est Tech Lead pour l'équipe sécurité Kubernetes et Google Container Engine chez Google. Avant GKE, Greg a travaillé dans l'équipe de réponse aux incidents de sécurité de Google, dévelopant des outils opensource d'investigations et à l'amélioration de la sécurité de Macos. Avant google, il a occupé de nombreuses positions incluant pentester, incident responder et analyste forensics.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Operate PCI DSS infrastructure using DevOps approach ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Owasp-montreal-pci-dss-r.jpg  ]]&lt;br /&gt;
[[Image:Owasp-montreal-pci-dss-2-r.jpg ]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/owasp-operate-pcidss-infrastructure-using-devops-approch-dot-pptx-1]] [https://speakerdeck.com/owaspmontreal/owasp-operate-pcidss-infrastructure-using-devops-approch-dot-pptx-1 See the slides / Voir la présentation]&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 March 5 2018&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
OWASP dans le cadre des Midis conférence est heureux d'accueillir, M. Gaëtan Trivino.&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Notre conférencier viendra présenter l'influence de la culture devops sur les opérations d'un hébergeur international en particulier pour supporter les réglementations comme PCI DSS.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Biographie :&amp;lt;br /&amp;gt;&lt;br /&gt;
Gaëtan est DevOps technical leader orienté cloud et automatisation réseau. Il a traversé l'Atlantique avec sa famille pour explorer de nouvelles culture de travail et se lance dans la recherche du meilleur sirop d'érable!&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Lunch &amp;amp; Learn / Workshops 2015-2017 =&lt;br /&gt;
&lt;br /&gt;
== Pourquoi un hacker peut-il contourner les mesures et solutions de sécurité... ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hamilton-septembre-2017-1.JPG  ]]&lt;br /&gt;
[[Image:Hamilton-septembre-2017-2.JPG ]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/endpoint-bypass-charles-hamilton]] [https://speakerdeck.com/owaspmontreal/endpoint-bypass-charles-hamilton See the slides / Voir la présentation]&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 September 18th 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
OWASP dans le cadre des Midis conférence est heureux de lancer la saison 2017-2018 en accueillant, M. Charles F. Hamilton.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Notre conférencier viendra brosser un tableau des différents éléments qui expliquent pourquoi les mesures et les solutions de sécurité en générales qui ont la fonction de protéger les données, les applications, les réseaux ou les équipements critiques sont si souvent contournées ou carrément inefficaces contre les attaques ciblées.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Biographie :&amp;lt;br /&amp;gt;&lt;br /&gt;
Charles F. Hamilton est un consultant en sécurité et membre d’équipe « Red Team » de calibre international. Il se spécialise en test d’intrusion et la recherche de solution proactive de sécurité.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Cas d'attaques vécus : Internet des objets (IOT) - Attaques DDoS ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Cas_dattaques_vecus-r.jpg  ]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 June 19th 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
Pour clore la saison printanière 2017, OWASP Montréal est fier d'accueillir au Midi Conférence, M. Christian Shink qui fera un survol de cas d'attaques vécus, des techniques utilisées et des acteurs impliqués dans ces attaques.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
L'incorporation généralisée de dispositifs «intelligents» dans les objets de la vie de tous les jours modifie la façon dont les gens et les machines interagissent les uns avec les autres. Cette incorporation offre une promesse d'une meilleure qualité de vie, une meilleure efficacité. En contrepartie, leur déploiement introduit également des vulnérabilités à la fois dans l'infrastructure qu'ils soutiennent et sur lesquels ils comptent, ainsi que dans les processus qu'ils guident. Que ce soit au niveau applicatif ou des infrastructures, ces vulnérabilités sont exploitées par des acteurs malicieux pour générer des attaques de déni de service massives et sophistiquées. Nous tenterons également de tirer des leçons afin de tenter de minimiser ce type d'attaques dans le futur.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Christian Shink possède plus d’une dizaine d’années d’expérience en développement et sécurité d’applications. Avant de se joindre à Radware, Christian était à l’emploi d'une firme conseil où il a conseillé de nombreuses entreprises, dont de grandes banques américaines et Casinos. Il détient une certification CSSLP et est membre de l'ordre des ingénieurs du Québec.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== HOW TO! Threat Modeling Toolkit ==&lt;br /&gt;
&lt;br /&gt;
[[Image:OWASPMtl-JonathanMarcil-1.jpg]]&lt;br /&gt;
[[Image:OWASPMtl-JonathanMarcil-3.jpg]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/threat-modeling-toolkit]] [https://speakerdeck.com/owaspmontreal/threat-modeling-toolkit See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 May 23rd, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Shopify Montreal&lt;br /&gt;
&lt;br /&gt;
Threat Modeling is a great way to analyze security early in software development by structuring possible attacks, bad actors and countermeasures over a broad view of the targeted system. This talk will describe basic components of a threat model and how to use them effectively.&lt;br /&gt;
Threat Intelligence is where you gather knowledge about the environment and business assets to determine what are the actual threats. But how do you reconcile that with the current architecture in a useful manner?&lt;br /&gt;
The toolkit presented in this talk will enable you to systematically structure related information using graphical notations such as flow diagram and attack tree. In case you are wondering where to start in your organization, a quick lightweight risk rating methodology will also be proposed.&lt;br /&gt;
And in the end, you’ll see how we can all tie those together and get threat modeling to a point where it’s an efficient application security activity for communication. Doing this will prevent security reviews from missing important things even when chaos prevails during the realization of a project.&lt;br /&gt;
Modeling concepts will be demonstrated with an actual IoT device used as example.&lt;br /&gt;
Presentation will be done in english.&lt;br /&gt;
&lt;br /&gt;
Speaker Bio:&lt;br /&gt;
Jonathan Marcil is the former chapter leader of OWASP Montreal and is now Senior Application Security Engineer at Blizzard Entertainment in beautiful Orange County, California.&lt;br /&gt;
Jonathan has been involved with OWASP for many years and has been behind the Media Project which gathered and promoted AppSec conferences video content in the official OWASP YouTube channel. He was also part of NorthSec CTF event as a challenge designer specialized in Web and imaginative contraptions.&lt;br /&gt;
He is passionate about Application Security and enjoys architecture analysis, code review, threat modeling and debunking security tools. He holds a diploma in Software Engineering from ÉTS Montreal and has more than 15 years of experience in Information Technology and Security.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Merci à nos précieux commanditaires !&lt;br /&gt;
&lt;br /&gt;
== Security Testing: Unlocking the Benefits of a Hybrid Approach ==&lt;br /&gt;
[[Image:Security testing hybrid approach-r 3.jpg    ]]&lt;br /&gt;
[[Image:Security testing hybrid approach-r 4.jpg    ]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/hybrid-approach-to-security-testing]] [https://speakerdeck.com/owaspmontreal/hybrid-approach-to-security-testing See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 April 24th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
As part of their defensive efforts, businesses commonly commission cybersecurity assessments of their web applications; with the aim of identifying any weaknesses in the security controls and ensuring a continually strong cybersecurity posture of their systems.&lt;br /&gt;
&lt;br /&gt;
The classical approach of either secure code review (white box) or penetration testing (black box) assessment have proven to be effective in securing of web applications. The new trend, however, is moving towards the combination of these two approaches; expert consensus is rapidly recognizing the advantages of using a hybrid approach. When applied properly, a hybrid approach can build on the strengths of both white and black box testing, while compensating for their individual shortcomings.&lt;br /&gt;
&lt;br /&gt;
In this presentation, we will examine the details of secure code review and penetration testing, and run demos to contrast their respective strengths and weaknesses. We will also examine why a hybrid approach can produce more complete and relevant assessment results. To conclude, we will cover proven approaches, and practical techniques, on how you can start leveraging a hybrid approach to web application assessments today.&lt;br /&gt;
&lt;br /&gt;
Anne Gauthier is an application security analyst at GoSecure. Anne is also the president of the Montreal Chapter of OWASP – the industry standard for web application security. With a penetration testing background, she specializes in secure code reviews and in helping companies to improve their software development lifecycle (SDLC) according to industry best practices. Anne is CSSLP, GWAPT and GSSP-JAVA certified. She obtained a Software Engineering bachelor’s degree from Ecole de Technologie Supérieure in Montréal and is now pursuing a Master of Engineering (MEng) degree in Information Systems Security at Concordia University. She is the author of the Project 201 Security blog.&lt;br /&gt;
&lt;br /&gt;
Merci à nos précieux commanditaires !&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;HOW-TO&amp;quot; NIGHT ! Tout sur les CTFs (Capture The Flag) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Howto_ctf.jpg]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://docs.google.com/presentation/d/1zEsCcX-Nvq8Nz0k-B1zHejCDNT2oGZx8oUBgMbvvMM0/edit#slide=id.p ]] [https://docs.google.com/presentation/d/1zEsCcX-Nvq8Nz0k-B1zHejCDNT2oGZx8oUBgMbvvMM0/edit#slide=id.p See the slides / Voir la présentation (Laurent Desaulniers)]&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://docs.google.com/presentation/d/1c1P1d2mKe767j1Y0V9cK6De5cpnK4I7GI-ORiodbg1A/edit#slide=id.p ]] [https://docs.google.com/presentation/d/1c1P1d2mKe767j1Y0V9cK6De5cpnK4I7GI-ORiodbg1A/edit#slide=id.p See the slides / Voir la présentation (Charles Hamilton)]&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=http://obilodeau.github.io/slides/2017-04-04_how-not-to-suck-at-ctfs/ ]] [http://obilodeau.github.io/slides/2017-04-04_how-not-to-suck-at-ctfs/ See the slides / Voir la présentation (Olivier Bilodeau)]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 April 4th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Shopify&lt;br /&gt;
&lt;br /&gt;
Cette nouvelle soirée &amp;quot;How-To&amp;quot; Night d'OWASP Montréal vise à présenter les CTFs (une compétition Capture The Flag) et aider les équipes à démarrer et à continuer à évoluer dans leurs pratique de la cyber sécurité pratique. L'objectif est d'outiller les participants en leur fournissant des ressources techniques et des contacts afin de les aider à progresser.&lt;br /&gt;
&lt;br /&gt;
Les éléments discutés seront:&lt;br /&gt;
&lt;br /&gt;
- Composition optimale d’une équipe : Fonctionnement d’une équipe de CTF et les principaux rôles (chef d’équipe, cryptographie, application web, rétro ingénierie et les causes perdues).&lt;br /&gt;
&lt;br /&gt;
- Pourquoi faire des CTFs? Discussion sur les différents styles (jeopardy, attack/defense, etc.), quels sont les problèmes fréquemments rencontrés + plusieurs anecdotes intéressantes (et drôles).&lt;br /&gt;
&lt;br /&gt;
- Trucs de Mr. Unikoder : Le créateur du fameux site ringzer0team, soit un des plus gros sites pour apprendre la résolution de problèmes de CTF (https://ringzer0team.com/) Apprenez des trucs du meilleur, sur comment débuter et interpréter un challenge web, binaire et crypto avec des trucs réels du métier.&lt;br /&gt;
&lt;br /&gt;
Matériel requis :&lt;br /&gt;
&lt;br /&gt;
    Votre légendaire enthousiasme&lt;br /&gt;
&lt;br /&gt;
Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
&lt;br /&gt;
Places limitées. Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Shopify pour l'événement.&lt;br /&gt;
&lt;br /&gt;
Présentateurs :&lt;br /&gt;
&lt;br /&gt;
Charles Hamilton, Senior Consultant chez Mandiant, FireEye, Inc.&lt;br /&gt;
&lt;br /&gt;
Olivier Bilodeau, Cybersecurity Research Lead at GoSecure&lt;br /&gt;
&lt;br /&gt;
Laurent Desaulniers, Senior Security Solution Specialist at Bell Canada&lt;br /&gt;
&lt;br /&gt;
== NorthSec - Applied Security Event ==&lt;br /&gt;
[[Image:Nsec_2017_midi_conf.jpg]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/northsec-applied-security-event]] [https://speakerdeck.com/owaspmontreal/northsec-applied-security-event See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 April 4th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
NorthSec: La plus grande compétition et conférence en cyber sécurité au Canada&lt;br /&gt;
&lt;br /&gt;
NorthSec est un organisme sans but lucratif qui organise une conférence et une compétition de sécurité de type &amp;quot;Capture-The-Flag&amp;quot; (CTF) et des formations. Avec plus de 400 participants présents sur le site pour la compétition, c’est la plus grande compétition du genre au monde.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
La conférence, dans sa 3e année, attire des présentateurs internationaux avec du contenu technique exclusif. L’ajout des séances de travail (workshops) devrait plaire aux plus chevronnés des binaires.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Des formations de 3 jours sont offertes avant la conférence: &amp;quot;Advanced Web Application Security&amp;quot; par Philippe Arteau et &amp;quot;Malware and Memory Forensics&amp;quot; par Michael Ligh, co-auteur des livres &amp;quot;Malware Analyst Cookbook&amp;quot; et &amp;quot;The Art of Memory Forensics&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
NorthSec est situé au Marché Bonsecours dans le Vieux-Port de Montréal au printemps du 15 au 21 mai 2017.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
La présentation couvrira:&lt;br /&gt;
&lt;br /&gt;
- Le plan pour 2017&amp;lt;br /&amp;gt;&lt;br /&gt;
- Ce qui différencie NorthSec&amp;lt;br /&amp;gt;&lt;br /&gt;
- Comment équilibrer une compétition pour les débutants et les experts&amp;lt;br /&amp;gt;&lt;br /&gt;
- Comment bâtir une infrastructure basée sur les conteneurs qui gère 50 équipes dans quelques serveurs sans qu’ils ne se partagent de machines virtuelles&amp;lt;br /&amp;gt;&lt;br /&gt;
- Comment faire du pain au levain à grande échelle&amp;lt;br /&amp;gt;&lt;br /&gt;
- Présentation de quelques défis et solutions&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Les présentateurs:&lt;br /&gt;
&lt;br /&gt;
- Gabriel Tremblay, Président, Delve Labs&amp;lt;br /&amp;gt;&lt;br /&gt;
- Olivier Bilodeau, VP Formations, Co-fondateur MontréHack, GoSecure&amp;lt;br /&amp;gt;&lt;br /&gt;
- Pierre-David Oriol, VP Conférences, Delve Labs&amp;lt;br /&amp;gt;&lt;br /&gt;
- Benoit Guérette, VP Partenaires, Desjardins&amp;lt;br /&amp;gt;&lt;br /&gt;
- Laurent Desaulniers, Tisserand de drapeaux, Bell Canada&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Merci à nos précieux commanditaires !&lt;br /&gt;
&lt;br /&gt;
== Sécurité des applications : Les fondements ==&lt;br /&gt;
[[Image:Tanya.jpeg]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/securite-des-applications-les-fondements]] [https://speakerdeck.com/owaspmontreal/securite-des-applications-les-fondements See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 March 20th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
OWASP Montréal est fier d’accueillir au Midi Conférence du mois de mars, Mme Tanya Janca, Co-Leader du chapitre OWASP Ottawa et spécialiste de la sécurité applicative au sein du Gouvernement fédéral.&lt;br /&gt;
&lt;br /&gt;
La conférence « Les fondements de la sécurité des applications » sera présentée en anglais.&lt;br /&gt;
&lt;br /&gt;
Session Description : Everyone has heard about the problem; everyone is “getting hacked”. But what is the answer? From scanning your code with a vulnerability scanner to red teaming exercises, developer education programs and bug bounties, this talk will take the audience through all the possibilities of an extensive application security program, with a detailed explanation of each part.&lt;br /&gt;
&lt;br /&gt;
Bio : Tanya Janca is an application security evangelist, a web application penetration tester and vulnerability assessor, a secure code reviewer, an ethical hacker, the Co-Leader of the OWASP Ottawa chapter, and has been developing software since the late 90’s. She has worn many hats and done many things, including; Custom Apps, Ethical Hacking, COTS, Incident Response, Enterprise Architect, Project and People Management, and even Tech Support. She is currently helping the Government of Canada secure their web applications.&lt;br /&gt;
&lt;br /&gt;
Merci à notre commanditaire principal de cet événement: Ubitrak!&lt;br /&gt;
&lt;br /&gt;
== WORKSHOP ! Server Side Template Injection (SSTI) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-okiok-SSTI-r.jpg | WORKSHOP ! Server Side Template Injection (SSTI) ]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/workshop-server-side-template-injection-ssti]] [https://speakerdeck.com/owaspmontreal/workshop-server-side-template-injection-ssti See the slides / Voir la présentation]&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 22 Février 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Shopify Montréal&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
OWASP Montreal vous invite à un atelier portant sur la sécurité des applications web supportant les moteurs de template (Template Engine). Le principe de séparation entre la présentation du site (code HTML statique) et de son contenu dynamique facilite la création de documents HTML et la capacité à modifier l'apparence du site sans mélanger le traitement et le rendu de la page. L'utilisation de moteurs de template amène de nouveaux enjeux de sécurité. Les vulnérabilités de type Server Side Template Injection (SSTI) sont exploitables à travers les données (non fiables) fournies par l'utilisateur et conduisent à l'exécution de code arbitraire (RCE) sur le serveur hébergeant l'application web.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ce workshop a pour but d'introduire cette classe de vulnérabilité à travers différents cas d'implémentation (php, java, python).&lt;br /&gt;
Nous verrons comment identifier et exploiter ces vulnérabilités et de quelle manière un attaquant peut &lt;br /&gt;
s'y prendre pour exécuter du code arbitraire sur le serveur afin d'en prendre le contrôle.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Niveau : Intermédiaire&amp;lt;br /&amp;gt;&lt;br /&gt;
Matériel requis :&lt;br /&gt;
* Votre portable&lt;br /&gt;
* Votre distribution Linux/Unix de votre choix&lt;br /&gt;
* Votre proxy Web de votre choix&lt;br /&gt;
&lt;br /&gt;
Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
Places limitées. Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Shopify pour l'événement.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Présentateur : Gérôme Dieu&amp;lt;br /&amp;gt;&lt;br /&gt;
Gérôme Dieu cumule plus de 7 années d’expérience en technologies de l’information et en sécurité. &lt;br /&gt;
Il œuvre à titre de conseiller senior en sécurité de l’information au sein de la firme OKIOK. Ces dernières années, il a acquis une expertise dans le domaine de la sécurité des applications web aussi bien d'un point de vue offensif que défensif. En plus de réaliser des tests d’intrusion pour des clients internationaux, Gérôme s’implique dans la recherche et développement afin de maintenir à la fine pointe de la technologie les tests d'intrusion et d'analyse de vulnérabilités. &amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Merci à Shopify d'héberger l'événement !&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Shopify Logo-r.png| Shopify | link=https://www.shopify.com/]]&lt;br /&gt;
== Le courriel en 2017 – risques et menaces pour tous ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Zero spam 2.jpg|Le courriel en 2017 – risques et menaces pour tous]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://www.youtube.com/watch?v=HX2vcijcCWw ]] [https://www.youtube.com/watch?v=HX2vcijcCWw Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 Le 23 janvier 2017 à midi&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
Monsieur Poellhuber nous brossera un tableau du phénomène grandissant du rançongiciels et de l'hameçonnage, personnification.&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
- Par les années passées, la menace courriel se résumait principalement en un fort volume de contenu simplement indésirable. Aujourd’hui la menace a passablement évolué. Quels sont les véritables risques actuels associés au courriel ? Rançongiciels, hameçonnage, personnification. Cette conférence présentera les nouveaux défis de sécurité pour les organisations qui doivent composer avec des attaques de plus en plus sophistiquées et de plus en plus ciblées tout en protégeant leur réputation. Des exemples biens réels, drôles et moins drôles seront disséqués pour bien dessiner l’ampleur de l’enjeu.&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
M. David Poellhuber, Chef de l’exploitation, ZEROSPAM Sécurité Inc&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note biographique :&amp;lt;br /&amp;gt;&lt;br /&gt;
Monsieur David Poellhuber oeuvre dans l’industrie de la sécurité informatique depuis quinze ans. Il a été conférencier dans plusieurs forums de sécurité au Canada et est maintenant reconnu comme une autorité en matière de sécurité du courriel. Il a fondé ZEROSPAM Sécurité en 2003, le premier service Québécois externalisé de sécurité du courriel infonuagique qui se distingue par sa convivialité, son efficacité et ses technologies de détection proactives.&amp;lt;br /&amp;gt;&lt;br /&gt;
Audience :  Généralistes et spécialistes de la sécurité des TI &lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Merci à Ubitrack pour le repas et à Desjardins d'héberger l'événement!&lt;br /&gt;
&lt;br /&gt;
[[Image:Ubitrak-r2.jpg|Ubitrak|link=http://www.ubitrak.com/fr/]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&lt;br /&gt;
== Effective XSS Mitigation ==&lt;br /&gt;
&lt;br /&gt;
[[Image:XSS mitigation.jpg | Effective XSS Mitigation ]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=http://slides.com/olivierarteau/xss-mitigation ]] [http://slides.com/olivierarteau/xss-mitigation See the slides / Voir la présentation]&lt;br /&gt;
&lt;br /&gt;
WHEN &lt;br /&gt;
 18 Janvier 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Google Montréal&lt;br /&gt;
&lt;br /&gt;
FRANÇAIS/ENGLISH&amp;lt;br /&amp;gt;&lt;br /&gt;
La mitigation de XSS a été un sujet important au cours des dernières années. Les navigateurs ont implémenté, en autre, deux fonctionnalités pour mitiger leur impact : l'entête &amp;quot;XSS-Protection&amp;quot; et l'entête &amp;quot;Content-Security-Policy&amp;quot;. Par contre, obtenir une mitigation contre les XSS efficace est souvent plus complexe que l'on pense. Cet atelier couvrira les deux entêtes. Il expliquera comme il est possible de contourner ces protections et ce qu'il est possible de faire pour se protéger. Des exercices de type &amp;quot;offensif&amp;quot; et &amp;quot;défensif&amp;quot; seront proposés.&lt;br /&gt;
Mitigation for XSS as been an important topic in the last few years. Browsers have implemented two main functionalities to help mitigate the impact of XSS : the &amp;quot;XSS-Protection&amp;quot; header and the &amp;quot;Content-Security-Policy&amp;quot; header. But, getting an effective XSS mitigation of those headers is trickier than it may seem. This workshop will cover both of those headers. It will explain how bypass of those protection work and what you can do about it. It will have both &amp;quot;defensive&amp;quot; exercises and &amp;quot;offensive&amp;quot; exercises.&lt;br /&gt;
Niveau : débutant/intermédiaire&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Matériel requis :&lt;br /&gt;
&lt;br /&gt;
Votre portable&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
&lt;br /&gt;
Places limitées. Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Google pour l'événement.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Présentateur : Olivier Arteau&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Olivier Arteau est un professionnel en sécurité informatique depuis quelques années et fait partie de l’équipe de test d’intrusion de Desjardins. Il est aussi un amateur de CTF qui a gagné à plusieurs reprises le CTF du NorthSec avec l’équipe HackToute et participe fréquemment à d’autres CTF avec l’équipe DCIETS.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Merci à Google d'héberger l'événement! &lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-zap-4-r.jpg | Google | link=https://www.google.ca/ ]]&lt;br /&gt;
&lt;br /&gt;
== WORKSHOP ! Top 10 OWASP - Unleash the threats ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-top10.jpg | WORKSHOP! Top 10 OWASP - Unleash the threats ]]&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 30 novembre 2016 de 17h30 à 20h30&lt;br /&gt;
WHERE&lt;br /&gt;
 Immunio @ WeWork&lt;br /&gt;
&lt;br /&gt;
De nos jours, la sécurité applicative est essentielle dans l’écosystème des entreprises de toutes tailles. Les vecteurs d’attaques sont multiples, les vulnérabilités de sécurité dans les applications peuvent être désastreuses et les impacts d’un « Hack » peuvent être irréversibles pour l’entreprise; vols de données sensibles, perte de réputation, perte de $$$$$, etc.&lt;br /&gt;
L’objectif du workshop est de comprendre la base sur les vulnérabilités de sécurité dans les applications et les techniques d’exploitation utilisées par les pirates informatiques, en plus de connaître les bonnes pratiques de développement en matière de sécurité applicative. &lt;br /&gt;
Avec l'aide de WebGoat, Damn Vulnerable Web Application et de Kali Linux, vous pourrez participer&lt;br /&gt;
à l'exploitation des applications et découvrir les techniques utilisées par les attaquants.&lt;br /&gt;
&lt;br /&gt;
Niveau : débutant&lt;br /&gt;
&lt;br /&gt;
Matériel requis :&lt;br /&gt;
 Votre portable&lt;br /&gt;
 Kali Linux&lt;br /&gt;
 La VM du workshop, envoyée aux participants&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
&lt;br /&gt;
Places très limitées (nb = 10). Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Immunio &amp;amp; WeWork pour l'événement.&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Présentateur : Christian Leclerc&lt;br /&gt;
&lt;br /&gt;
Christian est spécialisé en conception et développement de solutions web sécuritaires. Tout au long de sa carrière, il a acquis une vaste expertise sur plusieurs types de technologies et méthodologies, intégré la sécurité dans le cycle de développement d’applications, effectué des revues de code sécurité, déployé des outils d’analyse des vulnérabilités et mis en place des systèmes d’authentification. De plus, il a participé à la conception et au développement de solutions sécuritaires de pointe comme la signature électronique à l’aide d’une infrastructure à clé publique (PKI), les authentifications fortes, le Registre des consentements au don d'organes et de tissus (RDOQ.org) et la migration de plusieurs applications web vers un environnement SOA (Service Oriented Architecture). &lt;br /&gt;
&amp;lt;br&amp;gt;Merci à Immunio &amp;amp; WeWork d'héberger l'événement!&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:Immunio-horizontal-r.png|Immunio|link=https://www.immun.io/]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[Image:Wework-r.jpg|WeWork|link=https://www.wework.com/]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Histoire d'un Hack ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Histoire-dun-hack-r.jpg | Histoire d'un Hack ]]&lt;br /&gt;
&lt;br /&gt;
WHEN &lt;br /&gt;
 21 novembre 2016 à midi&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
Pour son activité du mois de novembre, OWASP Montréal propose à la communauté de la sécurité des TI et aux gestionnaires de faire l'autopsie d'une attaque de haute voltige sur un site web et des outils mis à la disposition par OWASP.&lt;br /&gt;
 &lt;br /&gt;
Bernard Bolduc cumule plus de 17 années d’expérience en technologies de l’information et en sécurité. Il œuvre à titre de conseiller senior en sécurité de l’information au niveau d’entreprise de classe nationale et internationale.&lt;br /&gt;
 &lt;br /&gt;
Bernard se spécialise en sécurité Unix, applicative et en gestion de la sécurité des télécommunications. Il combine ces expertises techniques afin d’obtenir des résultats probants et efficaces pour ces clients des secteurs bancaire, télécommunication et multimédias, de l’énergie ou des services publiques. Tout au long de sa carrière, Bernard s’est toujours maintenu à jour sur les dernières menaces de sécurité technologique et commerciale en assistant à des formations spécialisées et d'échanger avec un grand nombre de partenaires dans l'industrie de la sécurité.&lt;br /&gt;
 &lt;br /&gt;
La conférence débute à midi.&lt;br /&gt;
 &lt;br /&gt;
La conférence vous donne droit à 1 CPE et pour les 50 premières personnes, un lunch gratuit.&lt;br /&gt;
 &lt;br /&gt;
Merci à Desjardins d'héberger l'événement!&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Workshop ! Création de votre première extension OWASP ZAP (ou BurpSuite) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-zap-mix.jpg | Workshop ! Création de votre première extension OWASP ZAP (ou BurpSuite)]]&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 11 novembre 2016 de 18h à 21h&lt;br /&gt;
&lt;br /&gt;
WHERE &lt;br /&gt;
 Google Montréal&lt;br /&gt;
&lt;br /&gt;
OWASP Zed Attack Proxy (ZAP) est un scanneur de vulnérabilités et un outil de débogage HTTP. Ce type d'outil est crucial dans un test d'intrusion web et contient un lot intéressant de fonctionnalités. Cela dit, il est possible d'étendre les fonctionnalités. Plusieurs types d'extension sont possibles : vue alternative pour les requêtes ou les réponses, scanneur passif des réponses, scanneur actif produisant des requêtes, etc.&lt;br /&gt;
&lt;br /&gt;
Plusieurs options seront données, par exemple :&lt;br /&gt;
&lt;br /&gt;
 Détection automatique de flag dans les sources&lt;br /&gt;
 Scanneur actif asynchrone DNS&lt;br /&gt;
 Ou votre propre idée&lt;br /&gt;
&lt;br /&gt;
Pour chacune des suggestions, des squelettes de code seront fournis pour les APIs de ZAP. Pour les utilisateurs de BurpSuite, des directives analogues seront également données.&lt;br /&gt;
&lt;br /&gt;
Niveau : débutant / intermédiaire&lt;br /&gt;
&lt;br /&gt;
Matériel requis&lt;br /&gt;
&lt;br /&gt;
 Votre portable&lt;br /&gt;
 [https://www.owasp.org/index.php/OWASP_Zed_Attack_Proxy_Project OWASP ZAP (gratuit)]&lt;br /&gt;
 [https://portswigger.net/burp/download.html BurpSuite]&lt;br /&gt;
 Éditeur de code pour Java, Python ou Ruby&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Présentateur : Philippe Arteau&lt;br /&gt;
&lt;br /&gt;
Philippe est un chercheur en cybersécurité chez GoSecure. Il est l'auteur de l'outil d'analyse statique Java &amp;quot;Find Security Bugs&amp;quot;. Il a découvert des vulnérabilités importantes dans les logiciels populaires tels que Google Chrome, Dropbox, Paypal, RunKeeper et Jira. Il a présenté dans différentes conférences incluant Black Hat USA, Black Hat Europe, ATL Sec Con, NorthSec, Hackfest (QC) et JavaOne. Il a développé de nombreux plug-ins pour les outils de proxy BurpSuite et OWASP ZAP (Retire.js, Reissue Request Script, PDF preview et Image Metadata). Il a fait également des contributions à d'autres plug-ins comme J2eeScan.&lt;br /&gt;
&lt;br /&gt;
Merci à Google d'héberger l'événement! &lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-zap-4-r.jpg | Google | link=https://www.google.ca/ ]]&lt;br /&gt;
&lt;br /&gt;
==Logiciel de rançon (Ransomware) s'attaque au domaine de la santé==&lt;br /&gt;
&lt;br /&gt;
[[Image:HackingHealth-2.jpg | Logiciel de rançon (Ransomware) s'attaque au domaine de la santé ]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/ransomware-and-healthcare-hacking-health ]] [https://speakerdeck.com/owaspmontreal/ransomware-and-healthcare-hacking-health See the slides / Voir la présentation]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;(Conférence en anglais)&lt;br /&gt;
Pour le lancement de la saison 2016 - 2017, OWASP Montréal propose à la communauté de la sécurité des TI et aux gestionnaires de la santé une incursion dans le monde du logiciel malveillant ciblant le domaine de la santé.&amp;lt;br /&amp;gt;&lt;br /&gt;
Cette conférence s'intége dans le Coopérathon co-organisé par le Mouvement Desjardins et Hacking Health.&amp;lt;/b&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Le domaine de la santé serait devenu une cible privilégiée des campagnes de ransomware parce que l'industrie a souvent payé la rançon demandée pour récupérer les données confidentielles et vitales de ses clients. Monsieur Ed Gershfang nous brossera un portrait du phénomène et des meilleures pratiques à mettre en place en matière de sécurité applicative.&lt;br /&gt;
Ed Gershfang possède une expérience solide dans l'infrastructure informatique et plus de 6 ans d'expérience dans les domaines de la sécurité de l'information, de la vulnérabilité, de la gouvernance et de la gestion des risques. Il était directeur de la sécurité pour la société PeriGen, un chef de file de développement de logiciels médicaux en Israël.&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== La sécurité applicative vue par un pentesteur ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Juin2016-OWASPMtl.jpg | OWASP Montréal reçoit Mario Contestabile, Pentester de renom ]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
From Left to Right : Isabelle Lusseyran, Head of Development at Hacking Health. Eduard Gershfang Information Security Analyst at WSP | Parsons Brinckerhoff.&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/owasp-montreal-recoit-mario-contestabile ]] [https://speakerdeck.com/owaspmontreal/owasp-montreal-recoit-mario-contestabile See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Pour clore la saison 2015 – 2016, OWASP Montréal est fier d’accueillir au Midi Conférence un des architectes de renom du développement applicatif au Canada, monsieur Mario Contestabile.&lt;br /&gt;
En tant qu’auteur de plusieurs centaines de tests d’intrusion, il connait tous les rouages de ce qu’est véritablement une application Web «sécurisée». Mais avez-vous déjà remarqué que les rapports de tests d’intrusion mentionnent rarement, voir jamais : «Votre site est très difficile à pirater. Félicitations !» ?&lt;br /&gt;
Et qu’en est-il de ces rapports qui contiennent des dizaines de soi-disant vulnérabilités ? Est-ce que cela signifie d’emblée que l’application devrait être mise hors ligne ?  &lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Lors de cette conférence, nous examinerons des rapports concrets (ambigus) de vulnérabilités et nous les analyserons afin de mieux comprendre si elles représentent une véritable menace, ou si elles ne servent qu’à «remplir» les rapports.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Avec son expertise en protection et en attaque d’applications Web, il abordera les points suivants :&lt;br /&gt;
Comment pouvez-vous sélectionner des systèmes de façon à mieux exécuter des protections de sécurité ?&lt;br /&gt;
Éviter certains pièges dans votre application Web qui rendent les attaques plus faciles et la protection plus difficile.&lt;br /&gt;
De nos jours, que peuvent faire les développeurs à l’intérieur de systèmes communs, qui puisse me rendre la tâche plus ardue en tant que « hacker »?&lt;br /&gt;
Pouvons-nous exiger de meilleurs rapports de la part des firmes de sécurité?&lt;br /&gt;
À quoi devrions-nous nous attendre de la part d’un « pentesters »?&lt;br /&gt;
Comment pouvons-nous savoir si le « pentester » a vérifié les failles de l’application et qu’il n’a pas simplement utilisé un scanneur?&lt;br /&gt;
Et enfin, comment pouvons-nous aider les « ethical hackers » à obtenir un meilleur rendement lors d’un test d’intrusion?&lt;br /&gt;
Il expliquera le sujet en détails, et ensemble, nous verrons de quelles façons les développeurs d’applications peuvent exploiter le savoir-faire des « pentesters », et comment nous pouvons faire en sorte qu’une application Web soit protégée.&lt;br /&gt;
Biographie :&lt;br /&gt;
Mario Contestabile est reconnu comme l’un des experts en sécurité les plus réputés au Canada. Son expertise, construire et protéger votre plateforme applicative. Ancien développeur C++ et Java, Mario partage ses nombreuses connaissances en « ethical hacking » et en développement de codes sécurisé.  &lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Tuesday, 14 June 2016 from 12:00 PM to 1:00 PM (EDT) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Comment protéger les applications mobiles? ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Avril2016-OWASPMtl.png | Comment protéger les applications mobiles? ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/comment-proteger-les-applications-mobiles ]] [https://speakerdeck.com/owaspmontreal/comment-proteger-les-applications-mobiles See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Dans le cadre des Midis Conférence à l'Espace Desjardins, l'équipe OWASP Montréal vous invite à assister à une présentation sur les vulnérabilités les plus communes associées aux appareils mobiles. &lt;br /&gt;
Marie-Claire Willig détaillera entre autres comment stocker de façon sécuritaire les données de l’application mobile ainsi que protéger l’application contre des attaques externes. Des outils simples vous seront dévoilés pour détecter ces vulnérabilités.&lt;br /&gt;
Marie-Claire est une professionnelle d'expérience en sécurité appliquée.&lt;br /&gt;
Une grande partie de son intérêt professionnel réside actuellement dans un domaine assez niche, soit la revue de code sécuritaire, un fondement important de tout cycle de développement sécuritaire en entreprise.&lt;br /&gt;
Au sein de l'équipe de sécurité technologique Desjardins, elle est, en autre, responsable de former les développeurs (Java et .NET principalement) afin de les sensibiliser aux meilleures pratiques de développement sécuritaire.&lt;br /&gt;
Également, elle est une professionnelle des tests d'intrusion sur les applications web, les applications mobiles ainsi que l'infrastructure réseau.&lt;br /&gt;
Bienvenue à tous&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 20 April 2016 from 12:15 PM to 1:00 PM (EDT) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== NorthSec, Le plus gros événement de cybersécurité appliquée au Canada ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Mars2016-OWASPMtl.jpg | NorthSec, Le plus gros événement de cybersécurité appliquée au Canada ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/YQtvltQYs7Y]] [https://youtu.be/YQtvltQYs7Y Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
OWASP Montréal est fier d’inviter au Midi Conférence de mars, NorthSec est le plus gros événement de sécurité appliquée au Canada qui comprend deux jours de formation, deux jours de conférences ainsi qu’une compétition du genre « capture the flag » (CTF) de trois jours.&lt;br /&gt;
Gabriel Tremblay, Benoit Guerette, Pierre-David Oriol et Laurent Desaulniers viendront vous parler de cet organisme sans but lucratif dynamique qui est géré par une équipe de bénévoles passionnés qui donnent à chaque année leur énergie et leur temps pour soutenir la communauté de la sécurité de l’information.&lt;br /&gt;
Le volet compétition, l’épreuve maîtresse, est présentée sous forme d’un scénario qui rend cohérent une centaine de défis techniques. Les équipes de participants attaquent l’infrastructure de compétition pour soutirer des drapeaux (flags) à travers un ensemble de vulnérabilités présentes comme de l’injection SQL, des XSS ou encore l’exploitation d’exécutables sur systèmes embarqués. Quelques exemples de défis des années passées seront également présentés.&lt;br /&gt;
Le volet conférence, qui est à sa 2ème année, met de l’avant plusieurs présentations techniques touchant la sécurité applicative mais aussi l’éthique et leurs impacts sociaux. Certaines présentations confirmées seront dévoilés.&lt;br /&gt;
Le tout nouveau volet formation propose deux formations en sécurité applicative de calibre international (anglais) : “Advanced Web Security Testing with Burp Pro” et “Modern Object-Oriented Malware Reverse Engineering”.&lt;br /&gt;
Venez aussi, découvrir comment l'équipe est partie d'une idée en 2012 pour se rendre à un évènement d'envergure, qui rassemblera plus de 600 professionnels, étudiants et autres passionnés de sécurité appliquée lors de la 4ème édition qui aura lieu du 17 au 22 mai 2016 au Marché Bonsecours.&lt;br /&gt;
Finalement, la mission, la vision ainsi que les activités sociales de la semaine de NorthSec sont aussi au menu de cette présentation qui sera suivie d’une période de questions.&lt;br /&gt;
&lt;br /&gt;
Gabriel Tremblay, Delve Labs, Président&lt;br /&gt;
Benoit Guerette, Desjardins, VP Finances&lt;br /&gt;
&lt;br /&gt;
Pierre-David Oriol, Delve Labs, VP Conférence&lt;br /&gt;
Laurent Desaulniers, Bell Canada, Artisant de drapeaux&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 23 March 2016 from 12:00 PM to 1:00 PM (EDT) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== La sécurité applicative et l'hameçonnage - February 24th ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Fevrier2016-OWASPMtl.jpg | La sécurité applicative et l'hameçonnage ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/1RYlOiIENjQ]] [https://youtu.be/1RYlOiIENjQ Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
De nos jours, une des méthodes les plus efficaces pour contourner les périmètres de sécurité externes est l'hameçonnage conjointement avec l’abus de certaines technologies Web.&lt;br /&gt;
&lt;br /&gt;
Dans le cadre ses activités, OWASP Montréal est heureux d'inviter d'accueillir, l'équipe OKIOK qui présentera les impacts liés à ce type d'attaque, tel que vu et expérimenté en entreprise ainsi que les plans d'action pour traiter ces risques. La présentation abordera aussi bien la sécurité web et applicatives, des systèmes informatiques ainsi que de la sécurité physique de centres de données. &lt;br /&gt;
&lt;br /&gt;
    Capture d'informations sensibles par imitations de portails Web ;&lt;br /&gt;
    Authentification Web par 2-facteurs ;&lt;br /&gt;
    Injection SMTP dans des formulaires Web ;&lt;br /&gt;
    Attaque de type “Drive-by-download”;&lt;br /&gt;
    Prise de contrôle à distance à travers des flux HTTP;&lt;br /&gt;
    Attaque de CSRF à partir de courriels ;&lt;br /&gt;
    Attaque d'hameçonnage basée sur des achats par Internet (ex : PayPal).&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
When&lt;br /&gt;
 Wednesday, 24 February 2016 from 12:00 PM to 1:15 PM (EST) - Add to Calendar &lt;br /&gt;
Where&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest Montreal, Quebec CA&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Internet of {Things, Threats} - January 20th ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Janvier2016-OWASPMtl-R.png | Internet of {Things, Threats} ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=http://gosecure.github.io/presentations/2016-01-20_owasp-mtl/internet-of-threats.html ]] [http://gosecure.github.io/presentations/2016-01-20_owasp-mtl/internet-of-threats.html See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
De plus en plus de périphériques se retrouvent connectés sur Internet. Sous la bannière &amp;quot;Internet of Things&amp;quot; (IoT) ces équipements, que ce soit une pompe à insuline ou un système de caméra de sécurité, tournent généralement sous un système GNU/Linux embarqué d'architecture MIPS ou ARM. La difficulté de mettre à jour ces équipements ainsi que le peu d'effort mis dans la sécurité des systèmes ou la sécurité applicative en font des cibles de choix. Ces derniers mois, nous avons analysé plusieurs logiciels malveillants ciblant ces architectures. Que ce soit par l'exploitation d'une vulnérabilité (Shellshock) ou encore un défaut de configuration, ces systèmes exposés sur Internet peuvent être compromis.&lt;br /&gt;
&lt;br /&gt;
Notre présentation couvrira quelques une de ces analyses:&lt;br /&gt;
&lt;br /&gt;
* Linux/Moose, un malware se propageant automatiquement qui fraude les réseaux sociaux (par exemple Facebook, Twitter et YouTube)&lt;br /&gt;
* LizardSquad et acteurs étrangers qui utilisent des systèmes embarqués compromis pour réaliser des dénis de service distribué (DDoS) &lt;br /&gt;
* Win32/RBrute est un logiciel malveillant qui tente de changer les paramètres de routeurs dans le but de faire du &amp;quot;DNS poisoning&amp;quot;. Il a été distribué par le populaire botnet Sality.&lt;br /&gt;
* Un kit d'exploits qui utilise seulement le navigateur de leur victime avec le même objectif, c'est-à-dire faire du &amp;quot;DNS poisoning&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Enfin, des conseils seront proposés à l'audience pour l'aider à se protéger de ces menaces.&lt;br /&gt;
&lt;br /&gt;
'''Thomas Dupuy''' (twitter: @nyx__o)&lt;br /&gt;
&lt;br /&gt;
Thomas est chercheur en logiciel malveillant chez ESET Canada Recherche. Bon vivant, Thomas déjeune en &amp;quot;reversant&amp;quot; des binaires, contribue à quelques projets open source durant le diner (yara, yara rules, pefile, APTnotes) et la nuit participe à des &amp;quot;Hacking Games&amp;quot; (Capture The Flag). Curieux de nature Thomas analyse des malware aux architectures &amp;quot;exotiques&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Olivier Bilodeau''' (twitter: @obilodeau)&lt;br /&gt;
&lt;br /&gt;
Olivier Bilodeau is the head of Cybersecurity Research at GoSecure a consultancy firm specializing in cybersecurity services for the public and private sector. With more than 10 years of infosec experience, Olivier worked on Unix servers at Bell Canada, managed a portion of Air Canada's network, wrote open source network access control software at Inverse and worked as a Malware Researcher at ESET. He likes to reverse engineer everything that crosses his path, participate in information security capture-the-flag competitions, hack open source code and brew beer. He has spoken at various conferences (Defcon, Botconf, VirusBulletin, Derbycon, ...), used to lecture on information security at ETS University in Montreal, drives the NorthSec Hacker Jeopardy and co-organizes the MontreHack capture-the-flag training initiative. His primary research interests include reverse-engineering tools, Linux and/or embedded malware and honeypots.&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Survivre aux attaques DDOS applicatives ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Decembre2015-OWASPMtl.jpg | Survivre aux attaques DDOS applicatives ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Survivre aux attaques DDOS (Distributed Denial-Of-Service) applicatives.&lt;br /&gt;
Cette conférence s'adresse aux professionnels et gestionnaires des TI.&lt;br /&gt;
Conférencier : Christian Shink, ing., CSSLP, ingénieur système chez Radware, manufacturier spécialisé dans la prévention des attaques DDOS. Il fut également consultant en sécurité applicative chez In Fidem.&lt;br /&gt;
Objectifs de la conférence:&lt;br /&gt;
Présenter les tendances actuelles en matière d'attaques DDOS applicatives.&lt;br /&gt;
Renseigner les participants sur les techniques et stratégies pour contrer ces attaques illustrées à partir de cas vécus.&lt;br /&gt;
Démystifier certains mythes en ce qui concernent les façons efficaces de protéger les applications contre des attaques DDOS.&lt;br /&gt;
Date : 16 décembre 2015&lt;br /&gt;
Heure : 11h45&lt;br /&gt;
La conférence débute à 12h00 et se termine à 12:55.&lt;br /&gt;
Un lunch sera servi.&lt;br /&gt;
Réservez maintenant!&lt;br /&gt;
1 CPE&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 16 December 2015 from 11:45 AM to 1:00 PM (EST) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec &lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Sécurité des applications - Systèmes de contrôles industriels ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Novembre2015-OWASPMtl-R.png | Sécurité des applications - Systèmes de contrôles industriels ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/0eAZpyiQQ9A]] [https://youtu.be/0eAZpyiQQ9A Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&lt;br /&gt;
La sécurité des applications et les systèmes de contrôles industriels.&lt;br /&gt;
Cette conférence s'adresse aux professionnels et gestionnaires des TI desinfrastructures critiques qui exploitent ou gèrent des systèmes de contrôles industriels(SCI) et SCADA (surveillance et d'acquisition de données).&amp;lt;br /&amp;gt;&lt;br /&gt;
Conférenciers : Robert Nastas, CSSA. Gestionnaire de projet et Youssef Jad, Architecte Cyber sécurité, ICS-CERT&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Objectifs de la conférence:&lt;br /&gt;
* Démystifier le domaine d'affaires.&lt;br /&gt;
* Renseigner les participants sur les bonnes pratiques de sécurité desapplications liées au secteur industriel.&lt;br /&gt;
* Proposer aux professionnels et gestionnaires des TI responsables dessystèmes SCADA et SCI des pistes de solutions aux enjeux de sécurité.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
L'équipe OWASP Montréal vous remercie d'avoir assisté en grand nombre à la conférence, 'La sécurité des applications et les systèmes de contrôles industriels'.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 18 November 2015 from 11:45 AM to 1:00 PM (EST) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Les préoccupations actuelles de hauts dirigeants en matière de cybersécurité et de sécurité applicative ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Septembre2015-OWASPMtl.jpg | Les préoccupations actuelles de hauts dirigeants en matière de cybersécurité et de sécurité applicative ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/un-regard-sur-la-securite-de-linformation-en-2015-par-eric-hebert ]] [https://speakerdeck.com/owaspmontreal/un-regard-sur-la-securite-de-linformation-en-2015-par-eric-hebert See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Pour le lancement des activités corporatives de la saison 2015 - 2016, le 8 septembre prochain à 12:00, l'équipe OWASP Montréal convie les gestionnaires et artisants de la sécurité des TIC à venir entendre monsieur Éric Hébert qui nous présentera son interprétation des préoccupations actuelles de hauts dirigeants en matière de cybersécurité et de sécurité applicative. L'événement se tiendra au complexe Desjardins à la salle &amp;quot;Espace Desjardins&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
''' ÉRIC G. HÉBERT, CISM, CISSP ''' &amp;lt;br /&amp;gt;&lt;br /&gt;
Après plus de 20 ans passés dans le domaine de la sécurité des technologies de l’information, Éric se spécialise dans la mise en œuvre et la gestion d'équipes performantes, capables de relever les plus hauts défis de la cybersécurité moderne.&amp;lt;br /&amp;gt;&lt;br /&gt;
Capable de dialoguer avec les hauts dirigeants, il sait traduire et vulgariser les enjeux techniques complexes tout en respectant la nature et l'appétence au risque de ses clients. Dynamique et pourvu d'une expérience couvrant presque toutes les sphères de la SI, il fonce dans le respect de la culture établie tout en implantant des solutions pragmatiques et efficaces.&amp;lt;br /&amp;gt;&lt;br /&gt;
Depuis plus de 10 ans, il gravite principalement autour des entreprises du domaine financier (BNC, Desjardins, Fonds de solidarité FTQ...) et les accompagne dans la mise en place de solutions efficaces tenant compte à la fois des risques et des budgets.&lt;br /&gt;
En plus d’avoir fondé de nombreuses associations telles que le RéseauSécurIT et le RPSI, il maintient une présence régulière auprès des milieux associatifs professionnels et partage régulièrement ses expériences lors de conférences et d'entrevues avec divers médias.&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Events / Évènements =&lt;br /&gt;
&lt;br /&gt;
== Owasp Montreal at [https://nsec.io/ NorthSec 2017] ==&lt;br /&gt;
&lt;br /&gt;
[[Image:NorthSec2017-5.jpg]]&lt;br /&gt;
[[Image:NorthSec2017-6.jpg]]&lt;br /&gt;
&lt;br /&gt;
From Left to Right: Anne Gauthier, OWASP Montréal Chapter Leader (President) and Application Security Analyst at GoSecure, Hugo Genesse, OWASP Montréal Chapter Leader and Research Intern at PNF Software, Julien, OWASP Montréal Chapter Leader&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal at [https://2017.appsec.eu/ AppSec] ==&lt;br /&gt;
&lt;br /&gt;
[[Image:OWASPAppSecBelfast2017-7.jpg]]&lt;br /&gt;
&lt;br /&gt;
OWASP Montreal and Ottawa Chapter Leaders at OWASP AppSec Belfast, UK #WomenInAppSec&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal at [https://hackfest.ca/ HackFest 2016] ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hackfest2016-r.jpg| HackFest |link=https://hackfest.ca/]]&lt;br /&gt;
&lt;br /&gt;
From left to right: Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Louis Nadeau, OWASP Québec Chapter Leader and Manager, Product Security at Bentley Systems and Patrick Leclerc, OWASP Québec Chapter Leader and Information Security Advisor at La Capitale.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal at OWASP [https://2016.appsecusa.org/ AppSec USA 2016, Washington] ==&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:OWASPMtl-AppSecUSA2016-Washington.jpg | OWASP Montreal at AppSec USA 2016, Washington]] &lt;br /&gt;
&lt;br /&gt;
​From left to right: Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Marie-Claire Willig, Application Security Analyst at Desjardins, Speaker and Cofounder of the Roslyn Security Guard tool which will be presented at Blackhat 2016, Alexandre Hamelin President at Synlabs Consulting Inc., Jonathan Marcil, Application Security Engineer at Blizzard Entertainment and former OWASP Montreal Chapter Leader. Philippe Arteau, Cybersecurity Researcher at GoSecure and designer of [https://find-sec-bugs.github.io/ Find Security Bugs] and Roslyn Security Guard tool which will be presented at Blackhat 2016.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://www.gosec.net GoSec] 2016 ==&lt;br /&gt;
&lt;br /&gt;
[[Image:OWASP-GoSec2016-1r.jpg|OWASP Montreal at GoSec 2016]] [[Image:OWASP-GoSec2016-2r.jpg|OWASP Montreal at GoSec 2016]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
From left to right : Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Simon Lacasse, student and volunteer, and Laurent Desaulniers, Security Analyst at Bell Canada.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://www.nsec.io/ NorthSec] 2016 – Annual Applied Security Event ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hackfest2016-OWASPMtl.jpg|OWASP Montreal at NorthSec 2016]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Simon Veilleux &lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
From left to right : Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Olivier Arteau OWASP Montréal Chapter Leader and Conseiller chez Groupe Technologie Desjardins, Hugo Genesse, OWASP Montréal Chapter Leader and Vulnerability Research Intern at Wurldtech Security Technologies.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://hackfest.ca/en/ Hackfest] 2015 ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hackfest2015-OWASPMtl-R.JPG | OWASP Montreal at Hackfest 2015]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Hackfest &lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
From left to right : Jonathan Marcil, Application Security Engineer at Blizzard Entertainment and former OWASP Montreal Chapter Leader. Philippe Arteau, Cybersecurity Researcher at GoSecure and designer of [http://find-sec-bugs.github.io/ Find Security Bugs] and Roslyn Security Guard tool which will be presented at Blackhat 2016. &lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/8U0qkEuUFy8]] [https://youtu.be/8U0qkEuUFy8 Watch the video / Regarder la vidéo]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://www.gosec.net/ GoSec] 2015 – The Annual Cybersecurity Conference presented by GoSecure, EY and ISACA. ==&lt;br /&gt;
&lt;br /&gt;
[[Image:GoSec2015-OWASPMtl.jpg|OWASP Montreal at GoSec 2015]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
From left to right : Marie-Claire Willig, Application Security Analyst at Desjardins, Speaker and Cofounder of the Roslyn Security Guard tool which will be presented at Blackhat 2016. Benoît Guérette, Application Security Team Leader at Desjardins, VP Finance at NorthSec and OWASP Montreal Chapter Founder and Former Chapter Leader.&lt;br /&gt;
&lt;br /&gt;
== See also / Voir aussi ==&lt;br /&gt;
&lt;br /&gt;
OWASP Montréal recommends Montréhack. Learn and share knowledge on IT security by solving technical challenges. Third Monday of every month. &lt;br /&gt;
&lt;br /&gt;
OWASP Montréal recommende Montréhack. Apprends et partages des connaissances sur la sécurité informatique en travaillant des problèmes appliqués. Chaque troisième lundi du mois. &lt;br /&gt;
&lt;br /&gt;
[[File:Montrehack.png|Montréhack|link=http://montrehack.ca/|alt=Montréhack]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Archives 2007-2015 =&lt;br /&gt;
{{:Montreal chapter past meetings}}&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - February 3rd - Getting to Know the Software Assurance Marketplace (SWAMP) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/p4_vjufcB6Q]] [https://youtu.be/p4_vjufcB6Q Watch the conference / Regarder la conférence]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/getting-to-know-the-software-assurance-marketplace-swamp-by-pat-beyer]] [https://speakerdeck.com/owaspmontreal/getting-to-know-the-software-assurance-marketplace-swamp-by-pat-beyer See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Pat Beyer&lt;br /&gt;
*'''ADDITIONAL PRESENTER:'''  Abe Megahed&lt;br /&gt;
*'''ABSTRACT:''' The Software Assurance Marketplace (SWAMP) is an open facility that is designed, built, and operated by four research institutions. The SWAMP provides no-cost access to an array of open-source and commercial software analysis tools. This presentation will provide an overview and demo of the SWAMP, including our goals, intended audience, current capabilities, and future plans. We will cover our relationship with OWASP, incorporation of open-source software assurance tools, and status as an open-source project and resource available to the software community. Visit https://continuousassurance.org/ to learn more about us.&lt;br /&gt;
*'''BIO:''' Pat Beyer serves as the Product Manager for the Software Assurance Marketplace (SWAMP). With over 25 years of experience successfully managing multi-million dollar global projects, Beyer’s expertise extends to the IT, construction, and operations sectors, with a specialization in managing government contracts and grants. A gifted communicator, Beyer is a sought after speaker due to his ability to deliver complex information about technology products and services in a way that is easily understood. He is a decorated combat veteran of the Global War on Terror, the international military campaign that started following the 9/11 terrorist attacks on the United States. In 2004, he constructed and rehabilitated over 20 schools, clinics, and water treatment plants for the Iraqi people using local contractors. Beyer also holds a Bachelor of Science, a Masters in Business Administration, a Ph.D. in Organization and Management, and a Project Management Professional (PMP) certification.&lt;br /&gt;
*'''BIO:''' Abe Megahed is a web developer for the Software Assurance Marketplace. In previous lifetimes, he has been a computer graphics researcher, a game programmer, a programming language and compiler nerd, a dot com company founder, a creator of helicopter simulations, and a developer of 3D simulations for NASA astronaut crew training.&lt;br /&gt;
*'''WHEN:'''  Tuesday, February 3rd 2015&lt;br /&gt;
*'''WHERE:''' Room PK-1140 - UQAM Pavillon Président-Kennedy, 201 Avenue du Président-Kennedy  J2X 3Y7&lt;br /&gt;
*'''REGISTRATION:''' https://owaspmtlswamp2015.eventbrite.ca&lt;br /&gt;
*'''WEBCAST:''' https://www.youtube.com/watch?v=p4_vjufcB6Q&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/getting-to-know-the-software-assurance-marketplace-swamp-by-pat-beyer&lt;br /&gt;
&lt;br /&gt;
*'''ACADEMIC PARTNER:''' AGEEI-UQAM - http://www.ageei.org/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Welcome speech by Chapter Leader (Jonathan Marcil)&lt;br /&gt;
  18:30-20:00 Main session: Getting to Know the Software Assurance Marketplace&lt;br /&gt;
  20:00-...   End of the meeting&lt;br /&gt;
&lt;br /&gt;
[[Image:SWAMP-Logo-Final-Med.png|300px|link=https://continuousassurance.org/]]&lt;br /&gt;
[[Image:Ageeilogo.jpg|200px|link=http://www.ageei.org/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - 4 décembre - Malware côté serveur — évolution, méthodes d’opération et forensic Linux ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/lo8WDl-WQ3E]] [https://youtu.be/lo8WDl-WQ3E Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/malware-cote-serveur-par-marc-etienne-m-dot-leveille]] [https://speakerdeck.com/owaspmontreal/malware-cote-serveur-par-marc-etienne-m-dot-leveille See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''PRÉSENTATEUR PRINCIPAL:''' Marc-Etienne M.Léveillé&lt;br /&gt;
*'''RÉSUMÉ:''' Les logiciels malveillants ciblant les serveurs ont évolué. Ils sont utilisés par des groupes de cybercriminels organisés dans le but de faire du profit via des redirections web et l’envoie de pourriels. La présentation portera sur Opération Windigo, une opération malveillante qui a affecté plus de 25 000 serveurs dans le monde. Après une brève description des composantes de Windigo, nous verrons comment les opérateurs déploient leurs logiciels malveillants et surveille leur réseau de serveurs infectés. Des trucs pratiques pour faire de la forensics sur des systèmes Linux seront donnés. Cette présentation est une suite à la présentation &amp;quot;Linux/Cdorked: Server side malware&amp;quot;, donnée par Olivier Bilodeau à OWASP Montréal en 2013. La présentation sera en français avec des diapositives en anglais (aka Montreal-style).&lt;br /&gt;
*'''BIO:''' Marc-Etienne est un chercheur en logiciel malveillant chez ESET depuis 2012. Il se spécialise dans les logiciels malveillants qui s’attaquent à des plateformes inhabituelles comme aux produits fruités et aux oiseaux nordiques. Dernièrement, il passe beaucoup de son temps à faire la rétro-ingénierie de logiciels malveillants sur des serveurs Linux et s’intéresse à leurs méthodes d’opération. Il adore participer de façon collégiale aux CTFs avec ses amis les CISSP Groupies et jouer de la clarinette. Il tweet très peu à @marc_etienne_.&lt;br /&gt;
*'''QUAND:''' 4 décembre 2014 à 18h00&lt;br /&gt;
*'''OÙ:''' Local M-1510, Polytechnique Montréal, 2900 Boulevard Edouard-Montpetit&lt;br /&gt;
*'''INSCRIPTION:''' https://www.eventbrite.ca/e/owasp-montreal-4-decembre-malware-cote-serveur-evolution-methodes-doperation-et-forensic-linux-tickets-14635313617&lt;br /&gt;
*'''ÉQUIPE ACADÉMIQUE:''' Polyhack - http://polyhack.org/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
&lt;br /&gt;
 18:00-18:30 Réseautage&lt;br /&gt;
 18:30-18:35 Mot de bienvenue par le leader du chapitre (Jonathan M.)&lt;br /&gt;
 18:35-19:30 Présentation principale : Malware côté serveur&lt;br /&gt;
 19:30-20:00 Période de questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Polyhacklogonoirpetit.png|200px|link=http://polyhack.org/]]&lt;br /&gt;
[[Image:LogoPolytechnique.gif|link=http://www.polymtl.ca/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - October 23rd - XXE : À l’assaut des analyseurs XML ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/MZviLB9-42E]] [https://youtu.be/MZviLB9-42E Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/xxe-a-lassaut-des-analyseurs-xml-par-philippe-arteau]] [https://speakerdeck.com/owaspmontreal/xxe-a-lassaut-des-analyseurs-xml-par-philippe-arteau See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''PRÉSENTATEUR PRINCIPAL:''' Philippe Arteau&lt;br /&gt;
*'''RÉSUMÉ:''' L'utilisation d’XML est fortement répandue. Le format est utilisé pour des fichiers de configuration, pour des métadonnées, pour des documents textes, et bien plus. La prise en charge de fichiers XML n’est pas sans risque. La plupart des analyseurs XML ne sont pas sécuritaires par défaut pour le traitement de fichier externe. Cette présentation fera un survol des vulnérabilités de type « Xml eXternal Entity » et de l’étendue des risques pour différents langages de programmation. Plusieurs démonstrations sont prévues.&lt;br /&gt;
*'''BIO:''' Philippe est conseiller en sécurité applicative pour le Groupe Technologies Desjardins. Au quotidien, il s’occupe d’effectuer des tests d’intrusions et des revues de code. Il a découvert des vulnérabilités importantes dans plusieurs logiciels populaires incluant Google Chrome, DropBox, ESAPI et Jira.&lt;br /&gt;
*'''QUAND:'''  23 Octobre 2014 à 18h00&lt;br /&gt;
*'''OÙ:''' École de Technologie Supérieure Local A-3230, 1100 Rue Notre-Dame Ouest, Montréal, QC H3C 1K3&lt;br /&gt;
*'''INSCRIPTION:''' http://www.eventbrite.ca/e/owasp-montreal-23-octobre-xxe-a-lassaut-des-analyseurs-xml-tickets-13426881163&lt;br /&gt;
*'''PARTENAIRE ACADÉMIQUE:''' ETS - DCI http://dciets.com/&lt;br /&gt;
*'''PROGRAMME:''' &lt;br /&gt;
&lt;br /&gt;
 18:00-18:30 Réseautage&lt;br /&gt;
 18:30-18:45 Mot de bienvenue&lt;br /&gt;
 18:45-19:45 Présentation principale - &amp;quot;À l’assaut des analyseurs XML&amp;quot; Philippe Arteau&lt;br /&gt;
 19:45-20:00 Période de questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Blason_dci.png‎‎‎|150px|link=http://dciets.com/]]&lt;br /&gt;
[[Image:ETS-rouge-devise-impr-fond_transparent.png|150px|link=http://www.etsmtl.ca/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - July 24th - Web security for DevOps: the glory is in the headers ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/6bp1NCLT-YQ]] [https://youtu.be/6bp1NCLT-YQ Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/web-security-for-devops-the-glory-is-in-the-headers-by-jonathan-marcil]] [https://speakerdeck.com/owaspmontreal/web-security-for-devops-the-glory-is-in-the-headers-by-jonathan-marcil See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Jonathan Marcil&lt;br /&gt;
*'''ABSTRACT:''' DevOps is a buzzword which can be easily demystified: in essence it is a process which aims to combine the development and system administration process into one; Operations. As developers become responsible for server setup, security counter measures are evolving as well. The line between server configuration and application behaviour has been blurred. In this talk we will cover some HTTP headers in regards to security such as CORS, CSP and HSTS. We will demonstrate several forms of attack, and how they can (should) be countered.&lt;br /&gt;
*'''BIO:''' Jonathan is devoted to security and specialized in Web application security.  His main occupation is consulting in Web security, but deep down he is a developer with a agnostic vision of programming languages. He has a diploma in Software Engineering from Ecole de Technologie Superieure and more than 10 years of experience in Information Technology and Security.&lt;br /&gt;
*'''WHEN:'''  At noon on July 24th 2014&lt;br /&gt;
*'''WHERE:''' 75 Queen Street, office 3100, Montreal, QC H3C 2N6&lt;br /&gt;
*'''REGISTRATION:''' You can join us on site for a pizza slice but this is mainly an online event. Contact jonathan.marcil@owasp.org.&lt;br /&gt;
*'''WEBCAST:''' https://www.youtube.com/watch?v=6bp1NCLT-YQ&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/web-security-for-devops-the-glory-is-in-the-headers-by-jonathan-marcil&lt;br /&gt;
*'''EVENT SPONSOR:''' Pheromone http://www.pheromone.ca/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  12:00-12:10 Welcome and quick OWASP introduction&lt;br /&gt;
  12:10-13:10 Main presentation - &amp;quot;Web security for DevOps: the glory is in the headers&amp;quot; Jonathan Marcil&lt;br /&gt;
  13:10-... Open discussion and questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Logo-phero.gif‎|link=http://www.pheromone.ca/]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - June 18th - Gaps in the Clouds ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/gaps-in-the-clouds-by-robert-fritz]] [https://speakerdeck.com/owaspmontreal/gaps-in-the-clouds-by-robert-fritz See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Robert Fritz&lt;br /&gt;
*'''ABSTRACT:''' Cloud technology offers agility and scaling, and a chance to break away from legacy IT choices.  Unfortunately, skipping traditional IT activities often results in poorly patched systems, out of date firewalls, and overprovisioned entitlements wielded by admins whose “day job” is development.  Boundaries of accountability and responsibility amongst cloud providers and consumers are confusing, vague, and shift, making security difficult to manage.  In such an environment, a “BP-spill” event, where cost wins over safely safety, is likely.  This talk will dive down into the cracks between the layers of cloud, and share some of the exciting dirt we have seen and expect to see in coming years.”&lt;br /&gt;
*'''BIO:''' Robert Fritz has been practicing security his entire career. Rob started as an Air Force lieutenant at Langley AFB and later at the Pentagon in Washington DC, building and managing classified networks. Finding he was getting too far from technology after a brief stint flying, he left the military to get back to the tech, and built security tools for HP in their HP-Unix lab.  Over time he found himself in more and more security design discussions, so co-authored HP’s Commercial Application Threat Analysis Methodology, building an internal consulting practice at HP.  This quantitative approach, led to two pending patents, an external-facing consulting practice, and his contributions to NIST IR-7502, the Common Configuration Scoring System (CVSS follow-on).  He is the former lead editor for the Center for Internet Security’s HP-UX Benchmark, and current lead for the Android Benchmark.  Robert now works for Morgan Stanley as global head of the Strategic Consulting team in the Security Architecture group, and leads the team’s cloud and social-media security practices.&lt;br /&gt;
*'''WHEN:''' June 18th 2014&lt;br /&gt;
*'''WHERE:''' 700 Rue Wellington, Floor 2, Montreal, QC H3C 3S4&lt;br /&gt;
*'''REGISTRATION:''' http://owaspmtl18junems.eventbrite.ca&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/gaps-in-the-clouds-by-robert-fritz&lt;br /&gt;
*'''EVENT SPONSOR:''' Morgan Stanley http://www.morganstanley.com/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:30 Networking and Morgan Stanley Hosted Pizza and Soft Drinks&lt;br /&gt;
  18:30-18:45 OWASP Chapter &amp;amp; Morgan Stanley Welcome&lt;br /&gt;
  18:45-19:45 Main presentation - &amp;quot;Gaps in the Clouds&amp;quot; Robert Fritz&lt;br /&gt;
  19:45-20:00 Open discussion and questions&lt;br /&gt;
  20:00-...   Optional, informal networking at Aziatic - 626 rue Marguerite-d'Youville, Montréal, QC H3C 1W7&lt;br /&gt;
&lt;br /&gt;
[[Image:Morgan_Stanley_Historical_Logo.png|link=http://www.morganstanley.com/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - May 26th - Récapitulatif des challenges NorthSec ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/P8_V3RI1Ru4]] [https://youtu.be/P8_V3RI1Ru4 Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''PRÉSENTATEUR PRINCIPAL:''' Laurent Desaulniers&lt;br /&gt;
*'''RÉSUMÉ:''' Solutions de la compétition en sécurité NorthSec 2014 sur les sujets de  XXE + SSRF, WAF Bypass, Xpath Injection, DOM Injection, HTTP Only Flag bypass et contournement de captchas. Une bonne façon d'apprendre sur ces failles que vous étiez ou non un participant de la compétition.&lt;br /&gt;
*'''MESSAGE DU PRÉSENTATEUR:''' Vous voyez Rao dans votre soupe? Vous voulez une solution pour un XSS avec des cookies http only? Les captchas illisibles sont un problème? Assistez à la présentation de l'OWASP!&lt;br /&gt;
*'''BIO:''' Laurent Desaulniers est un passionné de sécurité informatique. Il a présenté au Hackfest, au colloque RSI, à OWASP et est challenge designer à NorthSec. M. Desaulniers détient les certifications CISSP, CISM, CISA et OSCP.&lt;br /&gt;
*'''QUAND:''' 26 mai à 18h00&lt;br /&gt;
*'''OÙ:''' Local PK-1140 - Pavillon Président-Kennedy 201, Avenue du Président-Kennedy, J2X 3Y7&lt;br /&gt;
*'''INSCRIPTION:''' https://www.eventbrite.ca/e/owasp-montreal-26-mai-recapitulatif-des-challenges-northsec-tickets-11724413035&lt;br /&gt;
*'''WEBCAST:''' https://www.youtube.com/watch?v=P8_V3RI1Ru4&lt;br /&gt;
*'''ÉQUIPE ACADÉMIQUE''' AGEEI-UQAM - http://www.ageei.org/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
&lt;br /&gt;
 18:00-18:30 Réseautage&lt;br /&gt;
 18:30-18:35 Mot de bienvenue par le leader du chapitre (Jonathan M.)&lt;br /&gt;
 18:35-19:30 Présentation principale : Récapitulatif des challenges NorthSec&lt;br /&gt;
 19:30-20:00 Période de questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Ageeilogo.jpg|200px|link=http://www.ageei.org/]]&lt;br /&gt;
[[Image:2397_nsec_Logo_500-250.png|200px|link=http://nsec.io/]]&lt;br /&gt;
&lt;br /&gt;
== Networking with infosec communities - April 21st ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''RÉSUMÉ:''' En collaboration avec Montréhack, mtlsec et NorthSec, nous organisons une soirée réseautage dans un pub du centre-ville. Du plaisir garanti avec les membres de plusieurs communautés infosec de Montréal!&lt;br /&gt;
&lt;br /&gt;
*'''ABSTRACT:''' In collaboration with Montréhack, mtlsec and NorthSec, we are organizing a networking evening in a pub downtown. Fun guaranteed with the other security communities in Montreal!&lt;br /&gt;
&lt;br /&gt;
*'''QUAND:''' 21 Avril 2014&lt;br /&gt;
*'''WHEN:''' April 21st 2014&lt;br /&gt;
&lt;br /&gt;
*'''OÙ/WHERE:''' BENELUX - Brasserie Artisanale 245 Sherbrooke St W Montreal, QC H2X 1X7&lt;br /&gt;
&lt;br /&gt;
*'''INSCRIPTION/REGISTRATION:''' https://www.eventbrite.ca/e/montrehack-avril-april-northsec-pre-party-tickets-11232307133&lt;br /&gt;
&lt;br /&gt;
*'''PARTENAIRES/PARTNERS:''' Montréhack http://montrehack.ca/ - mtlsec http://blog.mtlsec.com/ - NorthSec https://www.nsec.io/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
  18:00-21:00 Networking&lt;br /&gt;
  21:00-23:59 Remember to drink responsibly!&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - March 27th - Panel Compétition en sécurité NorthSec ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Présentation sous forme de panel - venez poser vos questions!'''&lt;br /&gt;
&lt;br /&gt;
*'''RÉSUMÉ:''' Les compétitions de type Capture the Flag (CTF) sont un moyen pour les professionnels et amateurs de sécurité informatique de mettre leurs talents à l'épreuve. NorthSec est une compétition Montréalaise annuelle en sécurité appliquée, qui aura lieu cette année au Marché Bonsecours de Montréal le 25, 26 et 27 avril prochain. Elle vise à augmenter le niveau technique des professionnels de la sécurité au Québec, ainsi que de permettre à ses acteurs les plus talentueux de se démarquer.&lt;br /&gt;
*'''DÉTAILS:''' Le panel de jeudi, sous la forme d'un échange convivial entre les organisateurs de l'évènement et de ses participants, abordera des thèmes variés comme l'écriture de bon défis, l'infrastructure, la logistique, les inattendus, un bilan de 2013 et tout ça en passant par de savoureuses annecdotes (on l'espère). Venez en grand nombre toucher à ces légendes de la scène infosec montréalaise!&lt;br /&gt;
*'''PANÉLISTES:''' Gabriel Tremblay, François Proulx, Laurent Desaulniers, Stéphane Graber&lt;br /&gt;
*'''ANIMATEUR:''' Olivier Bilodeau&lt;br /&gt;
*'''QUAND:''' 27 mars 2014&lt;br /&gt;
*'''OÙ:''' Salle M-1510, École Polytechnique de Montréal, 2500 chemin de Polytechnique, Montréal (Québec) H3T 1J4, pavillon Lassonde&lt;br /&gt;
*'''INSCRIPTION:''' https://www.eventbrite.ca/e/owasp-montreal-27-mars-panel-competition-en-securite-northsec-tickets-10918436337&lt;br /&gt;
*'''ÉQUIPE ACADÉMIQUE:''' Polytechnique - Polyhack http://polyhack.org/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Mot de bienvenue par le leader du chapitre (Jonathan Marcil)&lt;br /&gt;
  18:30-20:00 Présentation principale : Panel NorthSsec&lt;br /&gt;
&lt;br /&gt;
[[Image:Polyhack.png‎‎|200px|link=http://polyhack.org/]]&lt;br /&gt;
[[Image:LogoPolytechnique.gif|link=http://www.polymtl.ca/]]&lt;br /&gt;
[[Image:2397_nsec_Logo_500-250.png|200px|link=http://nsec.io/]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - February 25th - Proven Strategies for Web Application Security ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/proven-strategies-for-web-application-security-by-justin-c-klein-keane]] [https://speakerdeck.com/owaspmontreal/proven-strategies-for-web-application-security-by-justin-c-klein-keane See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Justin C. Klein Keane&lt;br /&gt;
*'''ABSTRACT:''' The rising dominance of the web as an application delivery platform has focused attacker attention squarely on the security of dynamic web applications. Application security is a complex, and shifting, field. Learn about tested and successful techniques to build safer applications, find flaws before they become vulnerabilities, and deploy applications that can detect, and resist attack.&lt;br /&gt;
*'''BIO:''' Justin C. Klein Keane is a security engineer and chapter leaders of OWASP in Philadelphia. For over a decade Justin has worked as a trainer, coder, and exploit developer. Justin is currently writing a book for NoStarch Press on hacking, speaks regularly at conferences, holds a masters degree in information technology from the University of Pennsylvania and is credited with hundreds of application vulnerability discoveries.&lt;br /&gt;
*'''WHEN:''' February 25th 2014&lt;br /&gt;
*'''WHERE:''' Ecole de technologie superieure, 1100 Notre-Dame Street West, Montreal, Room: A-1150&lt;br /&gt;
*'''REGISTRATION:''' http://owaspmtljan2014.eventbrite.ca&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/proven-strategies-for-web-application-security-by-justin-c-klein-keane&lt;br /&gt;
*'''ACADEMIC PARTNER:''' ETS - DCI http://dciets.com/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Welcome speech by Chapter Leader (Jonathan Marcil)&lt;br /&gt;
  18:30-20:00 Main session and open discussion: Proven Strategies for Web Application Security&lt;br /&gt;
  20:00-...   End of the meeting in a pub&lt;br /&gt;
&lt;br /&gt;
[[Image:Dciets.png‎‎‎|100px|link=http://dciets.com/]]&lt;br /&gt;
[[Image:Logo_ets.png|link=http://www.etsmtl.ca/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - January 28th - Latest trends in Mobile Security ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/8qPyKj4FKgY]] [https://youtu.be/8qPyKj4FKgY Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/latest-trends-in-mobile-security-by-francois-proulx]] [https://speakerdeck.com/owaspmontreal/latest-trends-in-mobile-security-by-francois-proulx See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Francois Proulx&lt;br /&gt;
*'''ABSTRACT:''' Last AppSecUSA 2013 had a great line up of talks, especially regarding mobile applications. This session will be covering all the hottest presentations about mobile security by doing an overview from what see saw at AppSecUSA, all with some slides and snippets of presentations that was recorded at the event. Discussion will be encouraged within the audience as this will be more a dynamic event than a regular talk.&lt;br /&gt;
*'''BIO:''' François Proulx is a senior mobile application developer who has worked on dozens of iOS applications since the very beginning of the Apple iOS platform. Over the past few years he has switched his focus to security. He spends a lot of his free time participating in Capture the Flag events (CTFs) and organizing the NorthSec security competition.&lt;br /&gt;
*'''WHEN:''' January 28th 2014&lt;br /&gt;
*'''WHERE:''' UQAM Room PK-1705, Pavillon Président-Kennedy (the big boat at Place des Arts) - 201 Avenue du Président-Kennedy  J2X 3Y7&lt;br /&gt;
*'''REGISTRATION:''' http://owaspmtl-mobilesecurity.eventbrite.ca&lt;br /&gt;
*'''SLIDES/CONTENT:''' [http://www.youtube.com/playlist?list=PLQtB2ug5xmvaQ9jeRWV53-F_T555GQfhW YouTube playlist]&lt;br /&gt;
*'''SPONSOR:''' Academic partner AGEEI-UQAM - http://www.ageei.org/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Welcome speech by Chapter Leader (Jonathan M.)&lt;br /&gt;
  18:30-20:00 Main session and open discussion: Mobile Security&lt;br /&gt;
  20:00-...   End of the meeting in a pub&lt;br /&gt;
&lt;br /&gt;
[[Image:Ageeilogo.jpg|200px|link=http://www.ageei.org/]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Presentations For Download  ====&lt;br /&gt;
&lt;br /&gt;
[http://www.owasp.org/images/0/0d/20100209mstechdaysowaspasvssgiv01-12657916463819-phpapp02.ppt OWASP ASVS] by Sebastien Gioria (09/03/2010) &lt;br /&gt;
&lt;br /&gt;
[http://www.ph-il.ca/slides/afup__authetification_forte.pdf Authentification Forte] by Philippe Gamache (02/02/2010) &lt;br /&gt;
&lt;br /&gt;
[http://www.opensamm.org/downloads/OpenSAMM-1.0.ppt Software Assurance Maturity Model (OpenSAMM)] by Pravir Chandra (03/11/2009) &lt;br /&gt;
&lt;br /&gt;
[http://www.owasp.org/images/d/de/Owasp-montreal-sept-17h-2009-justin-foster.pdf Crossing the Border – Javascript Exploits] by Justin Foster (17/09/2009) &lt;br /&gt;
&lt;br /&gt;
[http://www.owasp.org/images/c/c2/ALaughRIAt.pdf A Laugh RIAt] by Rafal Los (07/04/2009) &lt;br /&gt;
&lt;br /&gt;
[https://www.owasp.org/images/e/eb/OWASP-Montreal-24022009-RobLabbe.pptx Microsoft Security Development Lifecycle for IT] by Rob Labbe (24/02/2009) &lt;br /&gt;
&lt;br /&gt;
[https://www.owasp.org/images/3/39/OWASP-Montreal-24022009-EN.pdf OWASP Goal and Top Ten 2007 for Managers - French version] by Benoit Guerette (24/02/2009)&lt;br /&gt;
&lt;br /&gt;
Newer presentations are available on [https://speakerdeck.com/owaspmontreal Speaker Deck]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Circle_owasp_logo_nowhitebackground.png|200px]]&lt;br /&gt;
&lt;br /&gt;
= OWASP Foundation / Mission OWASP    = &lt;br /&gt;
OWASP Foundation ([https://docs.google.com/a/owasp.org/presentation/d/10wi1EWFCPZwCpkB6qZaBNN8mR2XfQs8sLxcj9SCsP6c/edit?usp=sharing Overview Slides]) is a professional association of [[Membership | global members]] and is open to anyone interested in learning more about software security. Local chapters are run independently and guided by the [[Chapter_Leader_Handbook]].  As a [[About_OWASP | 501(c)(3)]] non-profit professional association your support and sponsorship of any meeting venue and/or refreshments is tax-deductible. Financial contributions should only be made online using the authorized online chapter donation button.  To be a &amp;lt;b&amp;gt;SPEAKER&amp;lt;/b&amp;gt; at ANY OWASP Chapter in the world simply review the [[Speaker_Agreement | speaker agreement]] and then contact the local chapter leader with details of what OWASP PROJECT, independent research or related software security topic you would like to present on.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;La fondation OWASP est une [https://www.owasp.org/index.php/Membership association de professionnels] et elle est ouverte à tout intervenant intéressé à en apprendre davantage sur la sécurité applicative. Les chapitres locaux (dont celui de Montréal) sont gérés de façon indépendante et selon un [https://www.owasp.org/index.php/Chapter_Leader_Handbook manuel de directives à respecter].   &lt;br /&gt;
Toute contribution financière au chapitre peut être faite en ligne en utilisant l’icône prévu à cet effet. Pour être conférencier au sein de n’importe quel chapitre à l’échelle mondiale, vous n’avez qu’à prendre connaissance du document [https://www.owasp.org/index.php/Speaker_Agreement &amp;quot;entente avec les conférenciers – speaker agreement&amp;quot;] et à joindre le responsable du chapitre Montréal avec un descriptif du sujet que vous aimeriez aborder et s’il est relié à un projet OWASP, à de la recherche indépendante ou encore le sujet en particulier, concernant la sécurité applicative, que vous souhaitez aborder.&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== [[Image:Circle_owasp_logo_nowhitebackground.png|128px]] Montreal OWASP Team == &lt;br /&gt;
&lt;br /&gt;
Scope of the team is to discuss and plan local activities and meetings &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Chapter Leaders ===&lt;br /&gt;
&lt;br /&gt;
* [mailto:anne.gauthier@owasp.org Anne Gauthier], President/Présidente&lt;br /&gt;
* [mailto:michel.bourque{at}owasp.org Michel Bourque], Chapter coordinator and marketing manager/Coordination et Marketing&lt;br /&gt;
* [mailto:hugo.genesse(at)owasp.org Hugo Genesse], Web content and production manager/Site internet et Production &lt;br /&gt;
* [mailto:olivier.arteau(at)owasp.org Olivier Arteau], Logistic manager/Logistique&lt;br /&gt;
&lt;br /&gt;
==== Chapter leader history ====&lt;br /&gt;
*2008-2010 - Benoit Guerette, founder and chapter leader&lt;br /&gt;
*2011-2012 - Philippe Gamache, chapter leader (vice chapter-leader since 2010)&lt;br /&gt;
*2013-2015 - Jonathan Marcil, chapter leader&lt;br /&gt;
*2016-... - Anne Gauthier, Michel Bourque, Marius Popescu, Hugo Genesse, Olivier Arteau&lt;br /&gt;
&lt;br /&gt;
==== Old board members ====&lt;br /&gt;
*Philippe Pépos Petitclerc&lt;br /&gt;
*Michael Robillard&lt;br /&gt;
*Benoit Guerette (logistics 2015)&lt;br /&gt;
*Alexandre Rimthong&lt;br /&gt;
*Mathieu Binette&lt;br /&gt;
*Sean Coates&lt;br /&gt;
*Jean-Marc Robert&lt;br /&gt;
*Philippe Blondin&lt;br /&gt;
*Benoit Guerette (founder)&lt;br /&gt;
*Laurent Desaulniers&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;headertabs&amp;gt;&amp;lt;/headertabs&amp;gt; &lt;br /&gt;
__NOTOC__ &lt;br /&gt;
[[Category:Canada]]&lt;/div&gt;</summary>
		<author><name>Svieg</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=Montr%C3%A9al&amp;diff=241346</id>
		<title>Montréal</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=Montr%C3%A9al&amp;diff=241346"/>
				<updated>2018-06-17T20:13:40Z</updated>
		
		<summary type="html">&lt;p&gt;Svieg: /* Operate PCI DSS infrastructure using DevOps approach */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Welcome &amp;amp; Bienvenue to the OWASP Montréal chapter ==&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:OWASP-Montreal-Logo.png|Logo OWASP Montréal]]&lt;br /&gt;
&lt;br /&gt;
The OWASP Foundation was established in 2001 as an open community and software security resource. Since then, OWASP has grown to be globally recognized as a credible source for application security standards. &amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
OWASP is an open community dedicated to enabling organizations to conceive, develop, acquire, operate, and maintain applications that can be trusted. All of the OWASP tools, documents, forums, and chapters are free and open to anyone interested in improving application security. We advocate approaching application security as a people, process, and technology problem because the most effective approaches to application security include improvements in all of these areas. &amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
OWASP is open to anyone. Anyone can attend OWASP's vendor agnostic local chapter meetings, participate in regional and global conferences, and contribute to the many OWASP projects. And anyone can start a new project, form a new chapter, or lend their expertise to help an OWASP Global Committee.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt;On parle français aussi ! Le chapitre de Montréal organise plusieurs activités gratuites afin de partager les connaissances en sécurité applicative avec la communauté de développeurs et gestionnaires. Suivez-nous sur les réseaux sociaux pour connaître les dates des conférences du midi et des workshops !&amp;lt;/b&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Top documentation from OWASP includes: &lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/index.php/Top_10_2013-Top_10 OWASP TOP 10 : The Ten Most Critical Web Application Security Risks]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/images/3/33/OWASP_Application_Security_Verification_Standard_3.0.1.pdf OWASP ASVS : Application Security Verification Standard]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/images/5/52/OWASP_Testing_Guide_v4.pdf OWASP Testing Guide : Penetration Testing Framework]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/images/7/78/OWASP_AlphaRelease_CodeReviewGuide2.0.pdf OWASP Code Review Guide : Source Code Analysis Framework]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/index.php/OWASP_Cheat_Sheet_Series OWASP Cheat Sheet : Best practices guidelines for developers]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org OWASP Global]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Chapter Leaders / Responsables du chapitre ===&lt;br /&gt;
&lt;br /&gt;
* [mailto:anne.gauthier@owasp.org Anne Gauthier], President/Présidente&lt;br /&gt;
* [mailto:michel.bourque{at}owasp.org Michel Bourque], Chapter coordinator and marketing manager/Coordination et Marketing&lt;br /&gt;
* [mailto:hugo.genesse(at)owasp.org Hugo Genesse], Web content and production manager/Site internet et Production &lt;br /&gt;
* [mailto:olivier.arteau(at)owasp.org Olivier Arteau], Logistic manager/Logistique&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt; Volunteers / Volontaires OWASP Montréal: &amp;lt;/b&amp;gt;&lt;br /&gt;
* Simon Lacasse, Web content / Site internet&lt;br /&gt;
* Julien Touche, Logistique&lt;br /&gt;
* Jean-François Gill&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;b&amp;gt; Reach our chapter / Joindre le chapitre &amp;lt;/b&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Follow OWASP's Montreal chapter's activities through social medias, register to events, watch the previous presentations and more! &lt;br /&gt;
&lt;br /&gt;
Suivez les activités du chapitre OWASP Montréal via les réseaux sociaux, inscrivez-vous aux activités, visualisez les anciennes présentations et plus encore! &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;b&amp;gt;[http://lists.owasp.org/mailman/listinfo/owasp-montreal Click here] to join the local chapter mailing list.&lt;br /&gt;
&amp;lt;br /&amp;gt;[http://lists.owasp.org/mailman/listinfo/owasp-montreal Inscrivez-vous ici] à la liste de courriels du chapitre afin de recevoir les dernières nouvelles!&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Want to be part of the community ? &lt;br /&gt;
Devenez membre de notre communauté ! &lt;br /&gt;
[https://www.owasp.org/index.php/Membership_Map Click here / Cliquer ici]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Eb_press_little.gif‎|OWASP Montreal Eventbrite|link=http://owaspmontreal.eventbrite.ca/]] &lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[Image:Yt-brand-standard-logo-630px.png‎|128px|YouTube OWASP Montreal Channel|link=http://www.youtube.com/owaspmontreal]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]   &lt;br /&gt;
[[Image:Speakerdecklogo.png‎|Slides of OWASP Montreal on SpeakerDeck |link=https://speakerdeck.com/owaspmontreal]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Twitter-bird-cropped-onwhite.png|@owaspmontreal on Twitter|link=https://twitter.com/owaspmontreal]]&lt;br /&gt;
[[Image:FacebookSquareLogo.png|OWASP Montreal Facebook page|link=https://www.facebook.com/owasp.montreal]]&lt;br /&gt;
[[Image:LinkedinSquareLogo.png|OWASP Montreal on LinkedIn|link=https://www.linkedin.com/groups/1379007/profile]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
&lt;br /&gt;
== What we do / Nos activités ==&lt;br /&gt;
&lt;br /&gt;
OWASP Montreal is a really active chapter. We organize monthly conferences and workshops. All our events are free and meant to improve the knowledge and awareness of the community's developers, managers and computer security specialists. To be aware of the next event and for additional information, follow us on social medias. &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
OWASP Montréal est un des chapitres les plus actifs. Nous organisons mensuellement des ateliers et conférences. Tous nos événements sont gratuits et ont pour but d'améliorer les connaissances de la communauté. Ils s'adressent donc autant aux gestionnaires qu'aux développeurs et aux spécialistes en sécurité informatique. Pour plus d'informations sur nos activités et pour être au courant des prochaines dates d'événement, suivez nous sur les réseaux sociaux. &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;We also contribute to the vast OWASP knowledge base / Nous contribuons aussi aux ressources d'OWASP&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We list here the projects that were started by our members under OWASP's banner. &amp;lt;br /&amp;gt;&lt;br /&gt;
Nous listons ici les projets commencé par nos membres sous la banière d'OWASP. &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/index.php/Vulnerability_Disclosure_Cheat_Sheet Vulnerability Disclosure Cheat Sheet]&lt;br /&gt;
&lt;br /&gt;
== Sponsorship &amp;amp; Membership / Commandite &amp;amp; Adhésion ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Btn_donate_SM.gif|link=http://www.regonline.com/donation_1044369]] to this chapter or become a local chapter supporter.&lt;br /&gt;
&lt;br /&gt;
Or consider the value of [[Membership | Individual, Corporate, or Academic Supporter membership]]. Ready to become a member? [[Image:Join_Now_BlueIcon.JPG|75px|link=https://myowasp.force.com/]]&lt;br /&gt;
&lt;br /&gt;
[http://www.regonline.com/donation_1044369 Donnez] au chapitre ou devenez commanditaire du chapitre local! &lt;br /&gt;
&lt;br /&gt;
[https://myowasp.force.com/ Devenez membre !] Pour en savoir davantage sur les avantages d’une adhésion individuelle, corporative ou en tant qu’institution d’enseignement, [https://www.owasp.org/index.php/Membership cliquez ici]. &lt;br /&gt;
&lt;br /&gt;
[[Category:OWASP Chapter]]&lt;br /&gt;
&lt;br /&gt;
== Chapter Supporters / Commanditaires du chapitre ==&lt;br /&gt;
&lt;br /&gt;
[https://www.owasp.org/images/9/91/OWASP_Membership_Flyer_Montreal.png All details available here / Pour tous les détails] [[File:Chapter-supporter-owasp-montreal.png|200px|link=]] &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Platinum / Platine ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Gosecure-2.png|GoSecure|link=http://www.gosecure.ca/]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[File:Desjardins2-400x400.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Gold / Or ===&lt;br /&gt;
&lt;br /&gt;
[[Image:PM_SCADA_Logo_Gris_Cybersecurite_FR.png|PM SCADA|link=http://pmscada.ca/en/]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Lunch &amp;amp; Learn / Workshops 2018 =&lt;br /&gt;
&lt;br /&gt;
== Shipping in Pirate-Infested Waters: Practical Attack and Defense in Kubernetes ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Owasp-avril-2018.JPG  ]]&lt;br /&gt;
[[Image:Owasp-avril-2018-2.JPG ]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/ohTq0no0ZVU ]] [https://youtu.be/ohTq0no0ZVU Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 April 30 2018&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
OWASP dans le cadre des Midis conférence est heureux d'accueillir Greg Castle.&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
L'événement contiendra une diffusion de &amp;quot;Shipping in Pirate-Infested Waters: Practical Attack and Defense in Kubernetes&amp;quot; présenté à Kubecon 2017, suivi de 20 min de questions/réponses avec Greg par vidéoconférence.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Biographie :&amp;lt;br /&amp;gt;&lt;br /&gt;
Greg est Tech Lead pour l'équipe sécurité Kubernetes et Google Container Engine chez Google. Avant GKE, Greg a travaillé dans l'équipe de réponse aux incidents de sécurité de Google, dévelopant des outils opensource d'investigations et à l'amélioration de la sécurité de Macos. Avant google, il a occupé de nombreuses positions incluant pentester, incident responder et analyste forensics.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Operate PCI DSS infrastructure using DevOps approach ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Owasp-montreal-pci-dss-r.jpg  ]]&lt;br /&gt;
[[Image:Owasp-montreal-pci-dss-2-r.jpg ]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/owasp-operate-pcidss-infrastructure-using-devops-approch-dot-pptx-1]] [https://speakerdeck.com/owaspmontreal/owasp-operate-pcidss-infrastructure-using-devops-approch-dot-pptx-1 See the slides / Voir la présentation]&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 March 5 2018&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
OWASP dans le cadre des Midis conférence est heureux d'accueillir, M. Gaëtan Trivino.&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Notre conférencier viendra présenter l'influence de la culture devops sur les opérations d'un hébergeur international en particulier pour supporter les réglementations comme PCI DSS.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Biographie :&amp;lt;br /&amp;gt;&lt;br /&gt;
Gaëtan est DevOps technical leader orienté cloud et automatisation réseau. Il a traversé l'Atlantique avec sa famille pour explorer de nouvelles culture de travail et se lance dans la recherche du meilleur sirop d'érable!&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Lunch &amp;amp; Learn / Workshops 2015-2017 =&lt;br /&gt;
&lt;br /&gt;
== Pourquoi un hacker peut-il contourner les mesures et solutions de sécurité... ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hamilton-septembre-2017-1.JPG  ]]&lt;br /&gt;
[[Image:Hamilton-septembre-2017-2.JPG ]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/endpoint-bypass-charles-hamilton]] [https://speakerdeck.com/owaspmontreal/endpoint-bypass-charles-hamilton See the slides / Voir la présentation]&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 September 18th 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
OWASP dans le cadre des Midis conférence est heureux de lancer la saison 2017-2018 en accueillant, M. Charles F. Hamilton.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Notre conférencier viendra brosser un tableau des différents éléments qui expliquent pourquoi les mesures et les solutions de sécurité en générales qui ont la fonction de protéger les données, les applications, les réseaux ou les équipements critiques sont si souvent contournées ou carrément inefficaces contre les attaques ciblées.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Biographie :&amp;lt;br /&amp;gt;&lt;br /&gt;
Charles F. Hamilton est un consultant en sécurité et membre d’équipe « Red Team » de calibre international. Il se spécialise en test d’intrusion et la recherche de solution proactive de sécurité.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Cas d'attaques vécus : Internet des objets (IOT) - Attaques DDoS ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Cas_dattaques_vecus-r.jpg  ]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 June 19th 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
Pour clore la saison printanière 2017, OWASP Montréal est fier d'accueillir au Midi Conférence, M. Christian Shink qui fera un survol de cas d'attaques vécus, des techniques utilisées et des acteurs impliqués dans ces attaques.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
L'incorporation généralisée de dispositifs «intelligents» dans les objets de la vie de tous les jours modifie la façon dont les gens et les machines interagissent les uns avec les autres. Cette incorporation offre une promesse d'une meilleure qualité de vie, une meilleure efficacité. En contrepartie, leur déploiement introduit également des vulnérabilités à la fois dans l'infrastructure qu'ils soutiennent et sur lesquels ils comptent, ainsi que dans les processus qu'ils guident. Que ce soit au niveau applicatif ou des infrastructures, ces vulnérabilités sont exploitées par des acteurs malicieux pour générer des attaques de déni de service massives et sophistiquées. Nous tenterons également de tirer des leçons afin de tenter de minimiser ce type d'attaques dans le futur.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Christian Shink possède plus d’une dizaine d’années d’expérience en développement et sécurité d’applications. Avant de se joindre à Radware, Christian était à l’emploi d'une firme conseil où il a conseillé de nombreuses entreprises, dont de grandes banques américaines et Casinos. Il détient une certification CSSLP et est membre de l'ordre des ingénieurs du Québec.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== HOW TO! Threat Modeling Toolkit ==&lt;br /&gt;
&lt;br /&gt;
[[Image:OWASPMtl-JonathanMarcil-1.jpg]]&lt;br /&gt;
[[Image:OWASPMtl-JonathanMarcil-3.jpg]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/threat-modeling-toolkit]] [https://speakerdeck.com/owaspmontreal/threat-modeling-toolkit See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 May 23rd, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Shopify Montreal&lt;br /&gt;
&lt;br /&gt;
Threat Modeling is a great way to analyze security early in software development by structuring possible attacks, bad actors and countermeasures over a broad view of the targeted system. This talk will describe basic components of a threat model and how to use them effectively.&lt;br /&gt;
Threat Intelligence is where you gather knowledge about the environment and business assets to determine what are the actual threats. But how do you reconcile that with the current architecture in a useful manner?&lt;br /&gt;
The toolkit presented in this talk will enable you to systematically structure related information using graphical notations such as flow diagram and attack tree. In case you are wondering where to start in your organization, a quick lightweight risk rating methodology will also be proposed.&lt;br /&gt;
And in the end, you’ll see how we can all tie those together and get threat modeling to a point where it’s an efficient application security activity for communication. Doing this will prevent security reviews from missing important things even when chaos prevails during the realization of a project.&lt;br /&gt;
Modeling concepts will be demonstrated with an actual IoT device used as example.&lt;br /&gt;
Presentation will be done in english.&lt;br /&gt;
&lt;br /&gt;
Speaker Bio:&lt;br /&gt;
Jonathan Marcil is the former chapter leader of OWASP Montreal and is now Senior Application Security Engineer at Blizzard Entertainment in beautiful Orange County, California.&lt;br /&gt;
Jonathan has been involved with OWASP for many years and has been behind the Media Project which gathered and promoted AppSec conferences video content in the official OWASP YouTube channel. He was also part of NorthSec CTF event as a challenge designer specialized in Web and imaginative contraptions.&lt;br /&gt;
He is passionate about Application Security and enjoys architecture analysis, code review, threat modeling and debunking security tools. He holds a diploma in Software Engineering from ÉTS Montreal and has more than 15 years of experience in Information Technology and Security.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Merci à nos précieux commanditaires !&lt;br /&gt;
&lt;br /&gt;
== Security Testing: Unlocking the Benefits of a Hybrid Approach ==&lt;br /&gt;
[[Image:Security testing hybrid approach-r 3.jpg    ]]&lt;br /&gt;
[[Image:Security testing hybrid approach-r 4.jpg    ]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/hybrid-approach-to-security-testing]] [https://speakerdeck.com/owaspmontreal/hybrid-approach-to-security-testing See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 April 24th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
As part of their defensive efforts, businesses commonly commission cybersecurity assessments of their web applications; with the aim of identifying any weaknesses in the security controls and ensuring a continually strong cybersecurity posture of their systems.&lt;br /&gt;
&lt;br /&gt;
The classical approach of either secure code review (white box) or penetration testing (black box) assessment have proven to be effective in securing of web applications. The new trend, however, is moving towards the combination of these two approaches; expert consensus is rapidly recognizing the advantages of using a hybrid approach. When applied properly, a hybrid approach can build on the strengths of both white and black box testing, while compensating for their individual shortcomings.&lt;br /&gt;
&lt;br /&gt;
In this presentation, we will examine the details of secure code review and penetration testing, and run demos to contrast their respective strengths and weaknesses. We will also examine why a hybrid approach can produce more complete and relevant assessment results. To conclude, we will cover proven approaches, and practical techniques, on how you can start leveraging a hybrid approach to web application assessments today.&lt;br /&gt;
&lt;br /&gt;
Anne Gauthier is an application security analyst at GoSecure. Anne is also the president of the Montreal Chapter of OWASP – the industry standard for web application security. With a penetration testing background, she specializes in secure code reviews and in helping companies to improve their software development lifecycle (SDLC) according to industry best practices. Anne is CSSLP, GWAPT and GSSP-JAVA certified. She obtained a Software Engineering bachelor’s degree from Ecole de Technologie Supérieure in Montréal and is now pursuing a Master of Engineering (MEng) degree in Information Systems Security at Concordia University. She is the author of the Project 201 Security blog.&lt;br /&gt;
&lt;br /&gt;
Merci à nos précieux commanditaires !&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;HOW-TO&amp;quot; NIGHT ! Tout sur les CTFs (Capture The Flag) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Howto_ctf.jpg]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://docs.google.com/presentation/d/1zEsCcX-Nvq8Nz0k-B1zHejCDNT2oGZx8oUBgMbvvMM0/edit#slide=id.p ]] [https://docs.google.com/presentation/d/1zEsCcX-Nvq8Nz0k-B1zHejCDNT2oGZx8oUBgMbvvMM0/edit#slide=id.p See the slides / Voir la présentation (Laurent Desaulniers)]&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://docs.google.com/presentation/d/1c1P1d2mKe767j1Y0V9cK6De5cpnK4I7GI-ORiodbg1A/edit#slide=id.p ]] [https://docs.google.com/presentation/d/1c1P1d2mKe767j1Y0V9cK6De5cpnK4I7GI-ORiodbg1A/edit#slide=id.p See the slides / Voir la présentation (Charles Hamilton)]&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=http://obilodeau.github.io/slides/2017-04-04_how-not-to-suck-at-ctfs/ ]] [http://obilodeau.github.io/slides/2017-04-04_how-not-to-suck-at-ctfs/ See the slides / Voir la présentation (Olivier Bilodeau)]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 April 4th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Shopify&lt;br /&gt;
&lt;br /&gt;
Cette nouvelle soirée &amp;quot;How-To&amp;quot; Night d'OWASP Montréal vise à présenter les CTFs (une compétition Capture The Flag) et aider les équipes à démarrer et à continuer à évoluer dans leurs pratique de la cyber sécurité pratique. L'objectif est d'outiller les participants en leur fournissant des ressources techniques et des contacts afin de les aider à progresser.&lt;br /&gt;
&lt;br /&gt;
Les éléments discutés seront:&lt;br /&gt;
&lt;br /&gt;
- Composition optimale d’une équipe : Fonctionnement d’une équipe de CTF et les principaux rôles (chef d’équipe, cryptographie, application web, rétro ingénierie et les causes perdues).&lt;br /&gt;
&lt;br /&gt;
- Pourquoi faire des CTFs? Discussion sur les différents styles (jeopardy, attack/defense, etc.), quels sont les problèmes fréquemments rencontrés + plusieurs anecdotes intéressantes (et drôles).&lt;br /&gt;
&lt;br /&gt;
- Trucs de Mr. Unikoder : Le créateur du fameux site ringzer0team, soit un des plus gros sites pour apprendre la résolution de problèmes de CTF (https://ringzer0team.com/) Apprenez des trucs du meilleur, sur comment débuter et interpréter un challenge web, binaire et crypto avec des trucs réels du métier.&lt;br /&gt;
&lt;br /&gt;
Matériel requis :&lt;br /&gt;
&lt;br /&gt;
    Votre légendaire enthousiasme&lt;br /&gt;
&lt;br /&gt;
Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
&lt;br /&gt;
Places limitées. Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Shopify pour l'événement.&lt;br /&gt;
&lt;br /&gt;
Présentateurs :&lt;br /&gt;
&lt;br /&gt;
Charles Hamilton, Senior Consultant chez Mandiant, FireEye, Inc.&lt;br /&gt;
&lt;br /&gt;
Olivier Bilodeau, Cybersecurity Research Lead at GoSecure&lt;br /&gt;
&lt;br /&gt;
Laurent Desaulniers, Senior Security Solution Specialist at Bell Canada&lt;br /&gt;
&lt;br /&gt;
== NorthSec - Applied Security Event ==&lt;br /&gt;
[[Image:Nsec_2017_midi_conf.jpg]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/northsec-applied-security-event]] [https://speakerdeck.com/owaspmontreal/northsec-applied-security-event See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 April 4th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
NorthSec: La plus grande compétition et conférence en cyber sécurité au Canada&lt;br /&gt;
&lt;br /&gt;
NorthSec est un organisme sans but lucratif qui organise une conférence et une compétition de sécurité de type &amp;quot;Capture-The-Flag&amp;quot; (CTF) et des formations. Avec plus de 400 participants présents sur le site pour la compétition, c’est la plus grande compétition du genre au monde.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
La conférence, dans sa 3e année, attire des présentateurs internationaux avec du contenu technique exclusif. L’ajout des séances de travail (workshops) devrait plaire aux plus chevronnés des binaires.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Des formations de 3 jours sont offertes avant la conférence: &amp;quot;Advanced Web Application Security&amp;quot; par Philippe Arteau et &amp;quot;Malware and Memory Forensics&amp;quot; par Michael Ligh, co-auteur des livres &amp;quot;Malware Analyst Cookbook&amp;quot; et &amp;quot;The Art of Memory Forensics&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
NorthSec est situé au Marché Bonsecours dans le Vieux-Port de Montréal au printemps du 15 au 21 mai 2017.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
La présentation couvrira:&lt;br /&gt;
&lt;br /&gt;
- Le plan pour 2017&amp;lt;br /&amp;gt;&lt;br /&gt;
- Ce qui différencie NorthSec&amp;lt;br /&amp;gt;&lt;br /&gt;
- Comment équilibrer une compétition pour les débutants et les experts&amp;lt;br /&amp;gt;&lt;br /&gt;
- Comment bâtir une infrastructure basée sur les conteneurs qui gère 50 équipes dans quelques serveurs sans qu’ils ne se partagent de machines virtuelles&amp;lt;br /&amp;gt;&lt;br /&gt;
- Comment faire du pain au levain à grande échelle&amp;lt;br /&amp;gt;&lt;br /&gt;
- Présentation de quelques défis et solutions&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Les présentateurs:&lt;br /&gt;
&lt;br /&gt;
- Gabriel Tremblay, Président, Delve Labs&amp;lt;br /&amp;gt;&lt;br /&gt;
- Olivier Bilodeau, VP Formations, Co-fondateur MontréHack, GoSecure&amp;lt;br /&amp;gt;&lt;br /&gt;
- Pierre-David Oriol, VP Conférences, Delve Labs&amp;lt;br /&amp;gt;&lt;br /&gt;
- Benoit Guérette, VP Partenaires, Desjardins&amp;lt;br /&amp;gt;&lt;br /&gt;
- Laurent Desaulniers, Tisserand de drapeaux, Bell Canada&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Merci à nos précieux commanditaires !&lt;br /&gt;
&lt;br /&gt;
== Sécurité des applications : Les fondements ==&lt;br /&gt;
[[Image:Tanya.jpeg]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/securite-des-applications-les-fondements]] [https://speakerdeck.com/owaspmontreal/securite-des-applications-les-fondements See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 March 20th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
OWASP Montréal est fier d’accueillir au Midi Conférence du mois de mars, Mme Tanya Janca, Co-Leader du chapitre OWASP Ottawa et spécialiste de la sécurité applicative au sein du Gouvernement fédéral.&lt;br /&gt;
&lt;br /&gt;
La conférence « Les fondements de la sécurité des applications » sera présentée en anglais.&lt;br /&gt;
&lt;br /&gt;
Session Description : Everyone has heard about the problem; everyone is “getting hacked”. But what is the answer? From scanning your code with a vulnerability scanner to red teaming exercises, developer education programs and bug bounties, this talk will take the audience through all the possibilities of an extensive application security program, with a detailed explanation of each part.&lt;br /&gt;
&lt;br /&gt;
Bio : Tanya Janca is an application security evangelist, a web application penetration tester and vulnerability assessor, a secure code reviewer, an ethical hacker, the Co-Leader of the OWASP Ottawa chapter, and has been developing software since the late 90’s. She has worn many hats and done many things, including; Custom Apps, Ethical Hacking, COTS, Incident Response, Enterprise Architect, Project and People Management, and even Tech Support. She is currently helping the Government of Canada secure their web applications.&lt;br /&gt;
&lt;br /&gt;
Merci à notre commanditaire principal de cet événement: Ubitrak!&lt;br /&gt;
&lt;br /&gt;
== WORKSHOP ! Server Side Template Injection (SSTI) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-okiok-SSTI-r.jpg | WORKSHOP ! Server Side Template Injection (SSTI) ]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/workshop-server-side-template-injection-ssti]] [https://speakerdeck.com/owaspmontreal/workshop-server-side-template-injection-ssti See the slides / Voir la présentation]&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 22 Février 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Shopify Montréal&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
OWASP Montreal vous invite à un atelier portant sur la sécurité des applications web supportant les moteurs de template (Template Engine). Le principe de séparation entre la présentation du site (code HTML statique) et de son contenu dynamique facilite la création de documents HTML et la capacité à modifier l'apparence du site sans mélanger le traitement et le rendu de la page. L'utilisation de moteurs de template amène de nouveaux enjeux de sécurité. Les vulnérabilités de type Server Side Template Injection (SSTI) sont exploitables à travers les données (non fiables) fournies par l'utilisateur et conduisent à l'exécution de code arbitraire (RCE) sur le serveur hébergeant l'application web.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ce workshop a pour but d'introduire cette classe de vulnérabilité à travers différents cas d'implémentation (php, java, python).&lt;br /&gt;
Nous verrons comment identifier et exploiter ces vulnérabilités et de quelle manière un attaquant peut &lt;br /&gt;
s'y prendre pour exécuter du code arbitraire sur le serveur afin d'en prendre le contrôle.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Niveau : Intermédiaire&amp;lt;br /&amp;gt;&lt;br /&gt;
Matériel requis :&lt;br /&gt;
* Votre portable&lt;br /&gt;
* Votre distribution Linux/Unix de votre choix&lt;br /&gt;
* Votre proxy Web de votre choix&lt;br /&gt;
&lt;br /&gt;
Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
Places limitées. Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Shopify pour l'événement.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Présentateur : Gérôme Dieu&amp;lt;br /&amp;gt;&lt;br /&gt;
Gérôme Dieu cumule plus de 7 années d’expérience en technologies de l’information et en sécurité. &lt;br /&gt;
Il œuvre à titre de conseiller senior en sécurité de l’information au sein de la firme OKIOK. Ces dernières années, il a acquis une expertise dans le domaine de la sécurité des applications web aussi bien d'un point de vue offensif que défensif. En plus de réaliser des tests d’intrusion pour des clients internationaux, Gérôme s’implique dans la recherche et développement afin de maintenir à la fine pointe de la technologie les tests d'intrusion et d'analyse de vulnérabilités. &amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Merci à Shopify d'héberger l'événement !&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Shopify Logo-r.png| Shopify | link=https://www.shopify.com/]]&lt;br /&gt;
== Le courriel en 2017 – risques et menaces pour tous ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Zero spam 2.jpg|Le courriel en 2017 – risques et menaces pour tous]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://www.youtube.com/watch?v=HX2vcijcCWw ]] [https://www.youtube.com/watch?v=HX2vcijcCWw Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 Le 23 janvier 2017 à midi&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
Monsieur Poellhuber nous brossera un tableau du phénomène grandissant du rançongiciels et de l'hameçonnage, personnification.&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
- Par les années passées, la menace courriel se résumait principalement en un fort volume de contenu simplement indésirable. Aujourd’hui la menace a passablement évolué. Quels sont les véritables risques actuels associés au courriel ? Rançongiciels, hameçonnage, personnification. Cette conférence présentera les nouveaux défis de sécurité pour les organisations qui doivent composer avec des attaques de plus en plus sophistiquées et de plus en plus ciblées tout en protégeant leur réputation. Des exemples biens réels, drôles et moins drôles seront disséqués pour bien dessiner l’ampleur de l’enjeu.&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
M. David Poellhuber, Chef de l’exploitation, ZEROSPAM Sécurité Inc&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note biographique :&amp;lt;br /&amp;gt;&lt;br /&gt;
Monsieur David Poellhuber oeuvre dans l’industrie de la sécurité informatique depuis quinze ans. Il a été conférencier dans plusieurs forums de sécurité au Canada et est maintenant reconnu comme une autorité en matière de sécurité du courriel. Il a fondé ZEROSPAM Sécurité en 2003, le premier service Québécois externalisé de sécurité du courriel infonuagique qui se distingue par sa convivialité, son efficacité et ses technologies de détection proactives.&amp;lt;br /&amp;gt;&lt;br /&gt;
Audience :  Généralistes et spécialistes de la sécurité des TI &lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Merci à Ubitrack pour le repas et à Desjardins d'héberger l'événement!&lt;br /&gt;
&lt;br /&gt;
[[Image:Ubitrak-r2.jpg|Ubitrak|link=http://www.ubitrak.com/fr/]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&lt;br /&gt;
== Effective XSS Mitigation ==&lt;br /&gt;
&lt;br /&gt;
[[Image:XSS mitigation.jpg | Effective XSS Mitigation ]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=http://slides.com/olivierarteau/xss-mitigation ]] [http://slides.com/olivierarteau/xss-mitigation See the slides / Voir la présentation]&lt;br /&gt;
&lt;br /&gt;
WHEN &lt;br /&gt;
 18 Janvier 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Google Montréal&lt;br /&gt;
&lt;br /&gt;
FRANÇAIS/ENGLISH&amp;lt;br /&amp;gt;&lt;br /&gt;
La mitigation de XSS a été un sujet important au cours des dernières années. Les navigateurs ont implémenté, en autre, deux fonctionnalités pour mitiger leur impact : l'entête &amp;quot;XSS-Protection&amp;quot; et l'entête &amp;quot;Content-Security-Policy&amp;quot;. Par contre, obtenir une mitigation contre les XSS efficace est souvent plus complexe que l'on pense. Cet atelier couvrira les deux entêtes. Il expliquera comme il est possible de contourner ces protections et ce qu'il est possible de faire pour se protéger. Des exercices de type &amp;quot;offensif&amp;quot; et &amp;quot;défensif&amp;quot; seront proposés.&lt;br /&gt;
Mitigation for XSS as been an important topic in the last few years. Browsers have implemented two main functionalities to help mitigate the impact of XSS : the &amp;quot;XSS-Protection&amp;quot; header and the &amp;quot;Content-Security-Policy&amp;quot; header. But, getting an effective XSS mitigation of those headers is trickier than it may seem. This workshop will cover both of those headers. It will explain how bypass of those protection work and what you can do about it. It will have both &amp;quot;defensive&amp;quot; exercises and &amp;quot;offensive&amp;quot; exercises.&lt;br /&gt;
Niveau : débutant/intermédiaire&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Matériel requis :&lt;br /&gt;
&lt;br /&gt;
Votre portable&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
&lt;br /&gt;
Places limitées. Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Google pour l'événement.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Présentateur : Olivier Arteau&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Olivier Arteau est un professionnel en sécurité informatique depuis quelques années et fait partie de l’équipe de test d’intrusion de Desjardins. Il est aussi un amateur de CTF qui a gagné à plusieurs reprises le CTF du NorthSec avec l’équipe HackToute et participe fréquemment à d’autres CTF avec l’équipe DCIETS.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Merci à Google d'héberger l'événement! &lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-zap-4-r.jpg | Google | link=https://www.google.ca/ ]]&lt;br /&gt;
&lt;br /&gt;
== WORKSHOP ! Top 10 OWASP - Unleash the threats ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-top10.jpg | WORKSHOP! Top 10 OWASP - Unleash the threats ]]&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 30 novembre 2016 de 17h30 à 20h30&lt;br /&gt;
WHERE&lt;br /&gt;
 Immunio @ WeWork&lt;br /&gt;
&lt;br /&gt;
De nos jours, la sécurité applicative est essentielle dans l’écosystème des entreprises de toutes tailles. Les vecteurs d’attaques sont multiples, les vulnérabilités de sécurité dans les applications peuvent être désastreuses et les impacts d’un « Hack » peuvent être irréversibles pour l’entreprise; vols de données sensibles, perte de réputation, perte de $$$$$, etc.&lt;br /&gt;
L’objectif du workshop est de comprendre la base sur les vulnérabilités de sécurité dans les applications et les techniques d’exploitation utilisées par les pirates informatiques, en plus de connaître les bonnes pratiques de développement en matière de sécurité applicative. &lt;br /&gt;
Avec l'aide de WebGoat, Damn Vulnerable Web Application et de Kali Linux, vous pourrez participer&lt;br /&gt;
à l'exploitation des applications et découvrir les techniques utilisées par les attaquants.&lt;br /&gt;
&lt;br /&gt;
Niveau : débutant&lt;br /&gt;
&lt;br /&gt;
Matériel requis :&lt;br /&gt;
 Votre portable&lt;br /&gt;
 Kali Linux&lt;br /&gt;
 La VM du workshop, envoyée aux participants&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
&lt;br /&gt;
Places très limitées (nb = 10). Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Immunio &amp;amp; WeWork pour l'événement.&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Présentateur : Christian Leclerc&lt;br /&gt;
&lt;br /&gt;
Christian est spécialisé en conception et développement de solutions web sécuritaires. Tout au long de sa carrière, il a acquis une vaste expertise sur plusieurs types de technologies et méthodologies, intégré la sécurité dans le cycle de développement d’applications, effectué des revues de code sécurité, déployé des outils d’analyse des vulnérabilités et mis en place des systèmes d’authentification. De plus, il a participé à la conception et au développement de solutions sécuritaires de pointe comme la signature électronique à l’aide d’une infrastructure à clé publique (PKI), les authentifications fortes, le Registre des consentements au don d'organes et de tissus (RDOQ.org) et la migration de plusieurs applications web vers un environnement SOA (Service Oriented Architecture). &lt;br /&gt;
&amp;lt;br&amp;gt;Merci à Immunio &amp;amp; WeWork d'héberger l'événement!&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:Immunio-horizontal-r.png|Immunio|link=https://www.immun.io/]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[Image:Wework-r.jpg|WeWork|link=https://www.wework.com/]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Histoire d'un Hack ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Histoire-dun-hack-r.jpg | Histoire d'un Hack ]]&lt;br /&gt;
&lt;br /&gt;
WHEN &lt;br /&gt;
 21 novembre 2016 à midi&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
Pour son activité du mois de novembre, OWASP Montréal propose à la communauté de la sécurité des TI et aux gestionnaires de faire l'autopsie d'une attaque de haute voltige sur un site web et des outils mis à la disposition par OWASP.&lt;br /&gt;
 &lt;br /&gt;
Bernard Bolduc cumule plus de 17 années d’expérience en technologies de l’information et en sécurité. Il œuvre à titre de conseiller senior en sécurité de l’information au niveau d’entreprise de classe nationale et internationale.&lt;br /&gt;
 &lt;br /&gt;
Bernard se spécialise en sécurité Unix, applicative et en gestion de la sécurité des télécommunications. Il combine ces expertises techniques afin d’obtenir des résultats probants et efficaces pour ces clients des secteurs bancaire, télécommunication et multimédias, de l’énergie ou des services publiques. Tout au long de sa carrière, Bernard s’est toujours maintenu à jour sur les dernières menaces de sécurité technologique et commerciale en assistant à des formations spécialisées et d'échanger avec un grand nombre de partenaires dans l'industrie de la sécurité.&lt;br /&gt;
 &lt;br /&gt;
La conférence débute à midi.&lt;br /&gt;
 &lt;br /&gt;
La conférence vous donne droit à 1 CPE et pour les 50 premières personnes, un lunch gratuit.&lt;br /&gt;
 &lt;br /&gt;
Merci à Desjardins d'héberger l'événement!&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Workshop ! Création de votre première extension OWASP ZAP (ou BurpSuite) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-zap-mix.jpg | Workshop ! Création de votre première extension OWASP ZAP (ou BurpSuite)]]&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 11 novembre 2016 de 18h à 21h&lt;br /&gt;
&lt;br /&gt;
WHERE &lt;br /&gt;
 Google Montréal&lt;br /&gt;
&lt;br /&gt;
OWASP Zed Attack Proxy (ZAP) est un scanneur de vulnérabilités et un outil de débogage HTTP. Ce type d'outil est crucial dans un test d'intrusion web et contient un lot intéressant de fonctionnalités. Cela dit, il est possible d'étendre les fonctionnalités. Plusieurs types d'extension sont possibles : vue alternative pour les requêtes ou les réponses, scanneur passif des réponses, scanneur actif produisant des requêtes, etc.&lt;br /&gt;
&lt;br /&gt;
Plusieurs options seront données, par exemple :&lt;br /&gt;
&lt;br /&gt;
 Détection automatique de flag dans les sources&lt;br /&gt;
 Scanneur actif asynchrone DNS&lt;br /&gt;
 Ou votre propre idée&lt;br /&gt;
&lt;br /&gt;
Pour chacune des suggestions, des squelettes de code seront fournis pour les APIs de ZAP. Pour les utilisateurs de BurpSuite, des directives analogues seront également données.&lt;br /&gt;
&lt;br /&gt;
Niveau : débutant / intermédiaire&lt;br /&gt;
&lt;br /&gt;
Matériel requis&lt;br /&gt;
&lt;br /&gt;
 Votre portable&lt;br /&gt;
 [https://www.owasp.org/index.php/OWASP_Zed_Attack_Proxy_Project OWASP ZAP (gratuit)]&lt;br /&gt;
 [https://portswigger.net/burp/download.html BurpSuite]&lt;br /&gt;
 Éditeur de code pour Java, Python ou Ruby&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Présentateur : Philippe Arteau&lt;br /&gt;
&lt;br /&gt;
Philippe est un chercheur en cybersécurité chez GoSecure. Il est l'auteur de l'outil d'analyse statique Java &amp;quot;Find Security Bugs&amp;quot;. Il a découvert des vulnérabilités importantes dans les logiciels populaires tels que Google Chrome, Dropbox, Paypal, RunKeeper et Jira. Il a présenté dans différentes conférences incluant Black Hat USA, Black Hat Europe, ATL Sec Con, NorthSec, Hackfest (QC) et JavaOne. Il a développé de nombreux plug-ins pour les outils de proxy BurpSuite et OWASP ZAP (Retire.js, Reissue Request Script, PDF preview et Image Metadata). Il a fait également des contributions à d'autres plug-ins comme J2eeScan.&lt;br /&gt;
&lt;br /&gt;
Merci à Google d'héberger l'événement! &lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-zap-4-r.jpg | Google | link=https://www.google.ca/ ]]&lt;br /&gt;
&lt;br /&gt;
==Logiciel de rançon (Ransomware) s'attaque au domaine de la santé==&lt;br /&gt;
&lt;br /&gt;
[[Image:HackingHealth-2.jpg | Logiciel de rançon (Ransomware) s'attaque au domaine de la santé ]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/ransomware-and-healthcare-hacking-health ]] [https://speakerdeck.com/owaspmontreal/ransomware-and-healthcare-hacking-health See the slides / Voir la présentation]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;(Conférence en anglais)&lt;br /&gt;
Pour le lancement de la saison 2016 - 2017, OWASP Montréal propose à la communauté de la sécurité des TI et aux gestionnaires de la santé une incursion dans le monde du logiciel malveillant ciblant le domaine de la santé.&amp;lt;br /&amp;gt;&lt;br /&gt;
Cette conférence s'intége dans le Coopérathon co-organisé par le Mouvement Desjardins et Hacking Health.&amp;lt;/b&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Le domaine de la santé serait devenu une cible privilégiée des campagnes de ransomware parce que l'industrie a souvent payé la rançon demandée pour récupérer les données confidentielles et vitales de ses clients. Monsieur Ed Gershfang nous brossera un portrait du phénomène et des meilleures pratiques à mettre en place en matière de sécurité applicative.&lt;br /&gt;
Ed Gershfang possède une expérience solide dans l'infrastructure informatique et plus de 6 ans d'expérience dans les domaines de la sécurité de l'information, de la vulnérabilité, de la gouvernance et de la gestion des risques. Il était directeur de la sécurité pour la société PeriGen, un chef de file de développement de logiciels médicaux en Israël.&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== La sécurité applicative vue par un pentesteur ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Juin2016-OWASPMtl.jpg | OWASP Montréal reçoit Mario Contestabile, Pentester de renom ]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
From Left to Right : Isabelle Lusseyran, Head of Development at Hacking Health. Eduard Gershfang Information Security Analyst at WSP | Parsons Brinckerhoff.&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/owasp-montreal-recoit-mario-contestabile ]] [https://speakerdeck.com/owaspmontreal/owasp-montreal-recoit-mario-contestabile See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Pour clore la saison 2015 – 2016, OWASP Montréal est fier d’accueillir au Midi Conférence un des architectes de renom du développement applicatif au Canada, monsieur Mario Contestabile.&lt;br /&gt;
En tant qu’auteur de plusieurs centaines de tests d’intrusion, il connait tous les rouages de ce qu’est véritablement une application Web «sécurisée». Mais avez-vous déjà remarqué que les rapports de tests d’intrusion mentionnent rarement, voir jamais : «Votre site est très difficile à pirater. Félicitations !» ?&lt;br /&gt;
Et qu’en est-il de ces rapports qui contiennent des dizaines de soi-disant vulnérabilités ? Est-ce que cela signifie d’emblée que l’application devrait être mise hors ligne ?  &lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Lors de cette conférence, nous examinerons des rapports concrets (ambigus) de vulnérabilités et nous les analyserons afin de mieux comprendre si elles représentent une véritable menace, ou si elles ne servent qu’à «remplir» les rapports.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Avec son expertise en protection et en attaque d’applications Web, il abordera les points suivants :&lt;br /&gt;
Comment pouvez-vous sélectionner des systèmes de façon à mieux exécuter des protections de sécurité ?&lt;br /&gt;
Éviter certains pièges dans votre application Web qui rendent les attaques plus faciles et la protection plus difficile.&lt;br /&gt;
De nos jours, que peuvent faire les développeurs à l’intérieur de systèmes communs, qui puisse me rendre la tâche plus ardue en tant que « hacker »?&lt;br /&gt;
Pouvons-nous exiger de meilleurs rapports de la part des firmes de sécurité?&lt;br /&gt;
À quoi devrions-nous nous attendre de la part d’un « pentesters »?&lt;br /&gt;
Comment pouvons-nous savoir si le « pentester » a vérifié les failles de l’application et qu’il n’a pas simplement utilisé un scanneur?&lt;br /&gt;
Et enfin, comment pouvons-nous aider les « ethical hackers » à obtenir un meilleur rendement lors d’un test d’intrusion?&lt;br /&gt;
Il expliquera le sujet en détails, et ensemble, nous verrons de quelles façons les développeurs d’applications peuvent exploiter le savoir-faire des « pentesters », et comment nous pouvons faire en sorte qu’une application Web soit protégée.&lt;br /&gt;
Biographie :&lt;br /&gt;
Mario Contestabile est reconnu comme l’un des experts en sécurité les plus réputés au Canada. Son expertise, construire et protéger votre plateforme applicative. Ancien développeur C++ et Java, Mario partage ses nombreuses connaissances en « ethical hacking » et en développement de codes sécurisé.  &lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Tuesday, 14 June 2016 from 12:00 PM to 1:00 PM (EDT) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Comment protéger les applications mobiles? ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Avril2016-OWASPMtl.png | Comment protéger les applications mobiles? ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/comment-proteger-les-applications-mobiles ]] [https://speakerdeck.com/owaspmontreal/comment-proteger-les-applications-mobiles See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Dans le cadre des Midis Conférence à l'Espace Desjardins, l'équipe OWASP Montréal vous invite à assister à une présentation sur les vulnérabilités les plus communes associées aux appareils mobiles. &lt;br /&gt;
Marie-Claire Willig détaillera entre autres comment stocker de façon sécuritaire les données de l’application mobile ainsi que protéger l’application contre des attaques externes. Des outils simples vous seront dévoilés pour détecter ces vulnérabilités.&lt;br /&gt;
Marie-Claire est une professionnelle d'expérience en sécurité appliquée.&lt;br /&gt;
Une grande partie de son intérêt professionnel réside actuellement dans un domaine assez niche, soit la revue de code sécuritaire, un fondement important de tout cycle de développement sécuritaire en entreprise.&lt;br /&gt;
Au sein de l'équipe de sécurité technologique Desjardins, elle est, en autre, responsable de former les développeurs (Java et .NET principalement) afin de les sensibiliser aux meilleures pratiques de développement sécuritaire.&lt;br /&gt;
Également, elle est une professionnelle des tests d'intrusion sur les applications web, les applications mobiles ainsi que l'infrastructure réseau.&lt;br /&gt;
Bienvenue à tous&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 20 April 2016 from 12:15 PM to 1:00 PM (EDT) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== NorthSec, Le plus gros événement de cybersécurité appliquée au Canada ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Mars2016-OWASPMtl.jpg | NorthSec, Le plus gros événement de cybersécurité appliquée au Canada ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/YQtvltQYs7Y]] [https://youtu.be/YQtvltQYs7Y Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
OWASP Montréal est fier d’inviter au Midi Conférence de mars, NorthSec est le plus gros événement de sécurité appliquée au Canada qui comprend deux jours de formation, deux jours de conférences ainsi qu’une compétition du genre « capture the flag » (CTF) de trois jours.&lt;br /&gt;
Gabriel Tremblay, Benoit Guerette, Pierre-David Oriol et Laurent Desaulniers viendront vous parler de cet organisme sans but lucratif dynamique qui est géré par une équipe de bénévoles passionnés qui donnent à chaque année leur énergie et leur temps pour soutenir la communauté de la sécurité de l’information.&lt;br /&gt;
Le volet compétition, l’épreuve maîtresse, est présentée sous forme d’un scénario qui rend cohérent une centaine de défis techniques. Les équipes de participants attaquent l’infrastructure de compétition pour soutirer des drapeaux (flags) à travers un ensemble de vulnérabilités présentes comme de l’injection SQL, des XSS ou encore l’exploitation d’exécutables sur systèmes embarqués. Quelques exemples de défis des années passées seront également présentés.&lt;br /&gt;
Le volet conférence, qui est à sa 2ème année, met de l’avant plusieurs présentations techniques touchant la sécurité applicative mais aussi l’éthique et leurs impacts sociaux. Certaines présentations confirmées seront dévoilés.&lt;br /&gt;
Le tout nouveau volet formation propose deux formations en sécurité applicative de calibre international (anglais) : “Advanced Web Security Testing with Burp Pro” et “Modern Object-Oriented Malware Reverse Engineering”.&lt;br /&gt;
Venez aussi, découvrir comment l'équipe est partie d'une idée en 2012 pour se rendre à un évènement d'envergure, qui rassemblera plus de 600 professionnels, étudiants et autres passionnés de sécurité appliquée lors de la 4ème édition qui aura lieu du 17 au 22 mai 2016 au Marché Bonsecours.&lt;br /&gt;
Finalement, la mission, la vision ainsi que les activités sociales de la semaine de NorthSec sont aussi au menu de cette présentation qui sera suivie d’une période de questions.&lt;br /&gt;
&lt;br /&gt;
Gabriel Tremblay, Delve Labs, Président&lt;br /&gt;
Benoit Guerette, Desjardins, VP Finances&lt;br /&gt;
&lt;br /&gt;
Pierre-David Oriol, Delve Labs, VP Conférence&lt;br /&gt;
Laurent Desaulniers, Bell Canada, Artisant de drapeaux&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 23 March 2016 from 12:00 PM to 1:00 PM (EDT) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== La sécurité applicative et l'hameçonnage - February 24th ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Fevrier2016-OWASPMtl.jpg | La sécurité applicative et l'hameçonnage ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/1RYlOiIENjQ]] [https://youtu.be/1RYlOiIENjQ Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
De nos jours, une des méthodes les plus efficaces pour contourner les périmètres de sécurité externes est l'hameçonnage conjointement avec l’abus de certaines technologies Web.&lt;br /&gt;
&lt;br /&gt;
Dans le cadre ses activités, OWASP Montréal est heureux d'inviter d'accueillir, l'équipe OKIOK qui présentera les impacts liés à ce type d'attaque, tel que vu et expérimenté en entreprise ainsi que les plans d'action pour traiter ces risques. La présentation abordera aussi bien la sécurité web et applicatives, des systèmes informatiques ainsi que de la sécurité physique de centres de données. &lt;br /&gt;
&lt;br /&gt;
    Capture d'informations sensibles par imitations de portails Web ;&lt;br /&gt;
    Authentification Web par 2-facteurs ;&lt;br /&gt;
    Injection SMTP dans des formulaires Web ;&lt;br /&gt;
    Attaque de type “Drive-by-download”;&lt;br /&gt;
    Prise de contrôle à distance à travers des flux HTTP;&lt;br /&gt;
    Attaque de CSRF à partir de courriels ;&lt;br /&gt;
    Attaque d'hameçonnage basée sur des achats par Internet (ex : PayPal).&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
When&lt;br /&gt;
 Wednesday, 24 February 2016 from 12:00 PM to 1:15 PM (EST) - Add to Calendar &lt;br /&gt;
Where&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest Montreal, Quebec CA&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Internet of {Things, Threats} - January 20th ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Janvier2016-OWASPMtl-R.png | Internet of {Things, Threats} ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=http://gosecure.github.io/presentations/2016-01-20_owasp-mtl/internet-of-threats.html ]] [http://gosecure.github.io/presentations/2016-01-20_owasp-mtl/internet-of-threats.html See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
De plus en plus de périphériques se retrouvent connectés sur Internet. Sous la bannière &amp;quot;Internet of Things&amp;quot; (IoT) ces équipements, que ce soit une pompe à insuline ou un système de caméra de sécurité, tournent généralement sous un système GNU/Linux embarqué d'architecture MIPS ou ARM. La difficulté de mettre à jour ces équipements ainsi que le peu d'effort mis dans la sécurité des systèmes ou la sécurité applicative en font des cibles de choix. Ces derniers mois, nous avons analysé plusieurs logiciels malveillants ciblant ces architectures. Que ce soit par l'exploitation d'une vulnérabilité (Shellshock) ou encore un défaut de configuration, ces systèmes exposés sur Internet peuvent être compromis.&lt;br /&gt;
&lt;br /&gt;
Notre présentation couvrira quelques une de ces analyses:&lt;br /&gt;
&lt;br /&gt;
* Linux/Moose, un malware se propageant automatiquement qui fraude les réseaux sociaux (par exemple Facebook, Twitter et YouTube)&lt;br /&gt;
* LizardSquad et acteurs étrangers qui utilisent des systèmes embarqués compromis pour réaliser des dénis de service distribué (DDoS) &lt;br /&gt;
* Win32/RBrute est un logiciel malveillant qui tente de changer les paramètres de routeurs dans le but de faire du &amp;quot;DNS poisoning&amp;quot;. Il a été distribué par le populaire botnet Sality.&lt;br /&gt;
* Un kit d'exploits qui utilise seulement le navigateur de leur victime avec le même objectif, c'est-à-dire faire du &amp;quot;DNS poisoning&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Enfin, des conseils seront proposés à l'audience pour l'aider à se protéger de ces menaces.&lt;br /&gt;
&lt;br /&gt;
'''Thomas Dupuy''' (twitter: @nyx__o)&lt;br /&gt;
&lt;br /&gt;
Thomas est chercheur en logiciel malveillant chez ESET Canada Recherche. Bon vivant, Thomas déjeune en &amp;quot;reversant&amp;quot; des binaires, contribue à quelques projets open source durant le diner (yara, yara rules, pefile, APTnotes) et la nuit participe à des &amp;quot;Hacking Games&amp;quot; (Capture The Flag). Curieux de nature Thomas analyse des malware aux architectures &amp;quot;exotiques&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Olivier Bilodeau''' (twitter: @obilodeau)&lt;br /&gt;
&lt;br /&gt;
Olivier Bilodeau is the head of Cybersecurity Research at GoSecure a consultancy firm specializing in cybersecurity services for the public and private sector. With more than 10 years of infosec experience, Olivier worked on Unix servers at Bell Canada, managed a portion of Air Canada's network, wrote open source network access control software at Inverse and worked as a Malware Researcher at ESET. He likes to reverse engineer everything that crosses his path, participate in information security capture-the-flag competitions, hack open source code and brew beer. He has spoken at various conferences (Defcon, Botconf, VirusBulletin, Derbycon, ...), used to lecture on information security at ETS University in Montreal, drives the NorthSec Hacker Jeopardy and co-organizes the MontreHack capture-the-flag training initiative. His primary research interests include reverse-engineering tools, Linux and/or embedded malware and honeypots.&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Survivre aux attaques DDOS applicatives ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Decembre2015-OWASPMtl.jpg | Survivre aux attaques DDOS applicatives ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Survivre aux attaques DDOS (Distributed Denial-Of-Service) applicatives.&lt;br /&gt;
Cette conférence s'adresse aux professionnels et gestionnaires des TI.&lt;br /&gt;
Conférencier : Christian Shink, ing., CSSLP, ingénieur système chez Radware, manufacturier spécialisé dans la prévention des attaques DDOS. Il fut également consultant en sécurité applicative chez In Fidem.&lt;br /&gt;
Objectifs de la conférence:&lt;br /&gt;
Présenter les tendances actuelles en matière d'attaques DDOS applicatives.&lt;br /&gt;
Renseigner les participants sur les techniques et stratégies pour contrer ces attaques illustrées à partir de cas vécus.&lt;br /&gt;
Démystifier certains mythes en ce qui concernent les façons efficaces de protéger les applications contre des attaques DDOS.&lt;br /&gt;
Date : 16 décembre 2015&lt;br /&gt;
Heure : 11h45&lt;br /&gt;
La conférence débute à 12h00 et se termine à 12:55.&lt;br /&gt;
Un lunch sera servi.&lt;br /&gt;
Réservez maintenant!&lt;br /&gt;
1 CPE&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 16 December 2015 from 11:45 AM to 1:00 PM (EST) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec &lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Sécurité des applications - Systèmes de contrôles industriels ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Novembre2015-OWASPMtl-R.png | Sécurité des applications - Systèmes de contrôles industriels ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/0eAZpyiQQ9A]] [https://youtu.be/0eAZpyiQQ9A Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&lt;br /&gt;
La sécurité des applications et les systèmes de contrôles industriels.&lt;br /&gt;
Cette conférence s'adresse aux professionnels et gestionnaires des TI desinfrastructures critiques qui exploitent ou gèrent des systèmes de contrôles industriels(SCI) et SCADA (surveillance et d'acquisition de données).&amp;lt;br /&amp;gt;&lt;br /&gt;
Conférenciers : Robert Nastas, CSSA. Gestionnaire de projet et Youssef Jad, Architecte Cyber sécurité, ICS-CERT&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Objectifs de la conférence:&lt;br /&gt;
* Démystifier le domaine d'affaires.&lt;br /&gt;
* Renseigner les participants sur les bonnes pratiques de sécurité desapplications liées au secteur industriel.&lt;br /&gt;
* Proposer aux professionnels et gestionnaires des TI responsables dessystèmes SCADA et SCI des pistes de solutions aux enjeux de sécurité.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
L'équipe OWASP Montréal vous remercie d'avoir assisté en grand nombre à la conférence, 'La sécurité des applications et les systèmes de contrôles industriels'.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 18 November 2015 from 11:45 AM to 1:00 PM (EST) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Les préoccupations actuelles de hauts dirigeants en matière de cybersécurité et de sécurité applicative ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Septembre2015-OWASPMtl.jpg | Les préoccupations actuelles de hauts dirigeants en matière de cybersécurité et de sécurité applicative ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/un-regard-sur-la-securite-de-linformation-en-2015-par-eric-hebert ]] [https://speakerdeck.com/owaspmontreal/un-regard-sur-la-securite-de-linformation-en-2015-par-eric-hebert See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Pour le lancement des activités corporatives de la saison 2015 - 2016, le 8 septembre prochain à 12:00, l'équipe OWASP Montréal convie les gestionnaires et artisants de la sécurité des TIC à venir entendre monsieur Éric Hébert qui nous présentera son interprétation des préoccupations actuelles de hauts dirigeants en matière de cybersécurité et de sécurité applicative. L'événement se tiendra au complexe Desjardins à la salle &amp;quot;Espace Desjardins&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
''' ÉRIC G. HÉBERT, CISM, CISSP ''' &amp;lt;br /&amp;gt;&lt;br /&gt;
Après plus de 20 ans passés dans le domaine de la sécurité des technologies de l’information, Éric se spécialise dans la mise en œuvre et la gestion d'équipes performantes, capables de relever les plus hauts défis de la cybersécurité moderne.&amp;lt;br /&amp;gt;&lt;br /&gt;
Capable de dialoguer avec les hauts dirigeants, il sait traduire et vulgariser les enjeux techniques complexes tout en respectant la nature et l'appétence au risque de ses clients. Dynamique et pourvu d'une expérience couvrant presque toutes les sphères de la SI, il fonce dans le respect de la culture établie tout en implantant des solutions pragmatiques et efficaces.&amp;lt;br /&amp;gt;&lt;br /&gt;
Depuis plus de 10 ans, il gravite principalement autour des entreprises du domaine financier (BNC, Desjardins, Fonds de solidarité FTQ...) et les accompagne dans la mise en place de solutions efficaces tenant compte à la fois des risques et des budgets.&lt;br /&gt;
En plus d’avoir fondé de nombreuses associations telles que le RéseauSécurIT et le RPSI, il maintient une présence régulière auprès des milieux associatifs professionnels et partage régulièrement ses expériences lors de conférences et d'entrevues avec divers médias.&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Events / Évènements =&lt;br /&gt;
&lt;br /&gt;
== Owasp Montreal at [https://nsec.io/ NorthSec 2017] ==&lt;br /&gt;
&lt;br /&gt;
[[Image:NorthSec2017-5.jpg]]&lt;br /&gt;
[[Image:NorthSec2017-6.jpg]]&lt;br /&gt;
&lt;br /&gt;
From Left to Right: Anne Gauthier, OWASP Montréal Chapter Leader (President) and Application Security Analyst at GoSecure, Hugo Genesse, OWASP Montréal Chapter Leader and Research Intern at PNF Software, Julien, OWASP Montréal Chapter Leader&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal at [https://2017.appsec.eu/ AppSec] ==&lt;br /&gt;
&lt;br /&gt;
[[Image:OWASPAppSecBelfast2017-7.jpg]]&lt;br /&gt;
&lt;br /&gt;
OWASP Montreal and Ottawa Chapter Leaders at OWASP AppSec Belfast, UK #WomenInAppSec&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal at [https://hackfest.ca/ HackFest 2016] ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hackfest2016-r.jpg| HackFest |link=https://hackfest.ca/]]&lt;br /&gt;
&lt;br /&gt;
From left to right: Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Louis Nadeau, OWASP Québec Chapter Leader and Manager, Product Security at Bentley Systems and Patrick Leclerc, OWASP Québec Chapter Leader and Information Security Advisor at La Capitale.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal at OWASP [https://2016.appsecusa.org/ AppSec USA 2016, Washington] ==&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:OWASPMtl-AppSecUSA2016-Washington.jpg | OWASP Montreal at AppSec USA 2016, Washington]] &lt;br /&gt;
&lt;br /&gt;
​From left to right: Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Marie-Claire Willig, Application Security Analyst at Desjardins, Speaker and Cofounder of the Roslyn Security Guard tool which will be presented at Blackhat 2016, Alexandre Hamelin President at Synlabs Consulting Inc., Jonathan Marcil, Application Security Engineer at Blizzard Entertainment and former OWASP Montreal Chapter Leader. Philippe Arteau, Cybersecurity Researcher at GoSecure and designer of [https://find-sec-bugs.github.io/ Find Security Bugs] and Roslyn Security Guard tool which will be presented at Blackhat 2016.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://www.gosec.net GoSec] 2016 ==&lt;br /&gt;
&lt;br /&gt;
[[Image:OWASP-GoSec2016-1r.jpg|OWASP Montreal at GoSec 2016]] [[Image:OWASP-GoSec2016-2r.jpg|OWASP Montreal at GoSec 2016]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
From left to right : Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Simon Lacasse, student and volunteer, and Laurent Desaulniers, Security Analyst at Bell Canada.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://www.nsec.io/ NorthSec] 2016 – Annual Applied Security Event ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hackfest2016-OWASPMtl.jpg|OWASP Montreal at NorthSec 2016]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Simon Veilleux &lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
From left to right : Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Olivier Arteau OWASP Montréal Chapter Leader and Conseiller chez Groupe Technologie Desjardins, Hugo Genesse, OWASP Montréal Chapter Leader and Vulnerability Research Intern at Wurldtech Security Technologies.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://hackfest.ca/en/ Hackfest] 2015 ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hackfest2015-OWASPMtl-R.JPG | OWASP Montreal at Hackfest 2015]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Hackfest &lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
From left to right : Jonathan Marcil, Application Security Engineer at Blizzard Entertainment and former OWASP Montreal Chapter Leader. Philippe Arteau, Cybersecurity Researcher at GoSecure and designer of [http://find-sec-bugs.github.io/ Find Security Bugs] and Roslyn Security Guard tool which will be presented at Blackhat 2016. &lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/8U0qkEuUFy8]] [https://youtu.be/8U0qkEuUFy8 Watch the video / Regarder la vidéo]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://www.gosec.net/ GoSec] 2015 – The Annual Cybersecurity Conference presented by GoSecure, EY and ISACA. ==&lt;br /&gt;
&lt;br /&gt;
[[Image:GoSec2015-OWASPMtl.jpg|OWASP Montreal at GoSec 2015]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
From left to right : Marie-Claire Willig, Application Security Analyst at Desjardins, Speaker and Cofounder of the Roslyn Security Guard tool which will be presented at Blackhat 2016. Benoît Guérette, Application Security Team Leader at Desjardins, VP Finance at NorthSec and OWASP Montreal Chapter Founder and Former Chapter Leader.&lt;br /&gt;
&lt;br /&gt;
== See also / Voir aussi ==&lt;br /&gt;
&lt;br /&gt;
OWASP Montréal recommends Montréhack. Learn and share knowledge on IT security by solving technical challenges. Third Monday of every month. &lt;br /&gt;
&lt;br /&gt;
OWASP Montréal recommende Montréhack. Apprends et partages des connaissances sur la sécurité informatique en travaillant des problèmes appliqués. Chaque troisième lundi du mois. &lt;br /&gt;
&lt;br /&gt;
[[File:Montrehack.png|Montréhack|link=http://montrehack.ca/|alt=Montréhack]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Archives 2007-2015 =&lt;br /&gt;
{{:Montreal chapter past meetings}}&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - February 3rd - Getting to Know the Software Assurance Marketplace (SWAMP) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/p4_vjufcB6Q]] [https://youtu.be/p4_vjufcB6Q Watch the conference / Regarder la conférence]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/getting-to-know-the-software-assurance-marketplace-swamp-by-pat-beyer]] [https://speakerdeck.com/owaspmontreal/getting-to-know-the-software-assurance-marketplace-swamp-by-pat-beyer See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Pat Beyer&lt;br /&gt;
*'''ADDITIONAL PRESENTER:'''  Abe Megahed&lt;br /&gt;
*'''ABSTRACT:''' The Software Assurance Marketplace (SWAMP) is an open facility that is designed, built, and operated by four research institutions. The SWAMP provides no-cost access to an array of open-source and commercial software analysis tools. This presentation will provide an overview and demo of the SWAMP, including our goals, intended audience, current capabilities, and future plans. We will cover our relationship with OWASP, incorporation of open-source software assurance tools, and status as an open-source project and resource available to the software community. Visit https://continuousassurance.org/ to learn more about us.&lt;br /&gt;
*'''BIO:''' Pat Beyer serves as the Product Manager for the Software Assurance Marketplace (SWAMP). With over 25 years of experience successfully managing multi-million dollar global projects, Beyer’s expertise extends to the IT, construction, and operations sectors, with a specialization in managing government contracts and grants. A gifted communicator, Beyer is a sought after speaker due to his ability to deliver complex information about technology products and services in a way that is easily understood. He is a decorated combat veteran of the Global War on Terror, the international military campaign that started following the 9/11 terrorist attacks on the United States. In 2004, he constructed and rehabilitated over 20 schools, clinics, and water treatment plants for the Iraqi people using local contractors. Beyer also holds a Bachelor of Science, a Masters in Business Administration, a Ph.D. in Organization and Management, and a Project Management Professional (PMP) certification.&lt;br /&gt;
*'''BIO:''' Abe Megahed is a web developer for the Software Assurance Marketplace. In previous lifetimes, he has been a computer graphics researcher, a game programmer, a programming language and compiler nerd, a dot com company founder, a creator of helicopter simulations, and a developer of 3D simulations for NASA astronaut crew training.&lt;br /&gt;
*'''WHEN:'''  Tuesday, February 3rd 2015&lt;br /&gt;
*'''WHERE:''' Room PK-1140 - UQAM Pavillon Président-Kennedy, 201 Avenue du Président-Kennedy  J2X 3Y7&lt;br /&gt;
*'''REGISTRATION:''' https://owaspmtlswamp2015.eventbrite.ca&lt;br /&gt;
*'''WEBCAST:''' https://www.youtube.com/watch?v=p4_vjufcB6Q&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/getting-to-know-the-software-assurance-marketplace-swamp-by-pat-beyer&lt;br /&gt;
&lt;br /&gt;
*'''ACADEMIC PARTNER:''' AGEEI-UQAM - http://www.ageei.org/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Welcome speech by Chapter Leader (Jonathan Marcil)&lt;br /&gt;
  18:30-20:00 Main session: Getting to Know the Software Assurance Marketplace&lt;br /&gt;
  20:00-...   End of the meeting&lt;br /&gt;
&lt;br /&gt;
[[Image:SWAMP-Logo-Final-Med.png|300px|link=https://continuousassurance.org/]]&lt;br /&gt;
[[Image:Ageeilogo.jpg|200px|link=http://www.ageei.org/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - 4 décembre - Malware côté serveur — évolution, méthodes d’opération et forensic Linux ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/lo8WDl-WQ3E]] [https://youtu.be/lo8WDl-WQ3E Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/malware-cote-serveur-par-marc-etienne-m-dot-leveille]] [https://speakerdeck.com/owaspmontreal/malware-cote-serveur-par-marc-etienne-m-dot-leveille See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''PRÉSENTATEUR PRINCIPAL:''' Marc-Etienne M.Léveillé&lt;br /&gt;
*'''RÉSUMÉ:''' Les logiciels malveillants ciblant les serveurs ont évolué. Ils sont utilisés par des groupes de cybercriminels organisés dans le but de faire du profit via des redirections web et l’envoie de pourriels. La présentation portera sur Opération Windigo, une opération malveillante qui a affecté plus de 25 000 serveurs dans le monde. Après une brève description des composantes de Windigo, nous verrons comment les opérateurs déploient leurs logiciels malveillants et surveille leur réseau de serveurs infectés. Des trucs pratiques pour faire de la forensics sur des systèmes Linux seront donnés. Cette présentation est une suite à la présentation &amp;quot;Linux/Cdorked: Server side malware&amp;quot;, donnée par Olivier Bilodeau à OWASP Montréal en 2013. La présentation sera en français avec des diapositives en anglais (aka Montreal-style).&lt;br /&gt;
*'''BIO:''' Marc-Etienne est un chercheur en logiciel malveillant chez ESET depuis 2012. Il se spécialise dans les logiciels malveillants qui s’attaquent à des plateformes inhabituelles comme aux produits fruités et aux oiseaux nordiques. Dernièrement, il passe beaucoup de son temps à faire la rétro-ingénierie de logiciels malveillants sur des serveurs Linux et s’intéresse à leurs méthodes d’opération. Il adore participer de façon collégiale aux CTFs avec ses amis les CISSP Groupies et jouer de la clarinette. Il tweet très peu à @marc_etienne_.&lt;br /&gt;
*'''QUAND:''' 4 décembre 2014 à 18h00&lt;br /&gt;
*'''OÙ:''' Local M-1510, Polytechnique Montréal, 2900 Boulevard Edouard-Montpetit&lt;br /&gt;
*'''INSCRIPTION:''' https://www.eventbrite.ca/e/owasp-montreal-4-decembre-malware-cote-serveur-evolution-methodes-doperation-et-forensic-linux-tickets-14635313617&lt;br /&gt;
*'''ÉQUIPE ACADÉMIQUE:''' Polyhack - http://polyhack.org/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
&lt;br /&gt;
 18:00-18:30 Réseautage&lt;br /&gt;
 18:30-18:35 Mot de bienvenue par le leader du chapitre (Jonathan M.)&lt;br /&gt;
 18:35-19:30 Présentation principale : Malware côté serveur&lt;br /&gt;
 19:30-20:00 Période de questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Polyhacklogonoirpetit.png|200px|link=http://polyhack.org/]]&lt;br /&gt;
[[Image:LogoPolytechnique.gif|link=http://www.polymtl.ca/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - October 23rd - XXE : À l’assaut des analyseurs XML ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/MZviLB9-42E]] [https://youtu.be/MZviLB9-42E Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/xxe-a-lassaut-des-analyseurs-xml-par-philippe-arteau]] [https://speakerdeck.com/owaspmontreal/xxe-a-lassaut-des-analyseurs-xml-par-philippe-arteau See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''PRÉSENTATEUR PRINCIPAL:''' Philippe Arteau&lt;br /&gt;
*'''RÉSUMÉ:''' L'utilisation d’XML est fortement répandue. Le format est utilisé pour des fichiers de configuration, pour des métadonnées, pour des documents textes, et bien plus. La prise en charge de fichiers XML n’est pas sans risque. La plupart des analyseurs XML ne sont pas sécuritaires par défaut pour le traitement de fichier externe. Cette présentation fera un survol des vulnérabilités de type « Xml eXternal Entity » et de l’étendue des risques pour différents langages de programmation. Plusieurs démonstrations sont prévues.&lt;br /&gt;
*'''BIO:''' Philippe est conseiller en sécurité applicative pour le Groupe Technologies Desjardins. Au quotidien, il s’occupe d’effectuer des tests d’intrusions et des revues de code. Il a découvert des vulnérabilités importantes dans plusieurs logiciels populaires incluant Google Chrome, DropBox, ESAPI et Jira.&lt;br /&gt;
*'''QUAND:'''  23 Octobre 2014 à 18h00&lt;br /&gt;
*'''OÙ:''' École de Technologie Supérieure Local A-3230, 1100 Rue Notre-Dame Ouest, Montréal, QC H3C 1K3&lt;br /&gt;
*'''INSCRIPTION:''' http://www.eventbrite.ca/e/owasp-montreal-23-octobre-xxe-a-lassaut-des-analyseurs-xml-tickets-13426881163&lt;br /&gt;
*'''PARTENAIRE ACADÉMIQUE:''' ETS - DCI http://dciets.com/&lt;br /&gt;
*'''PROGRAMME:''' &lt;br /&gt;
&lt;br /&gt;
 18:00-18:30 Réseautage&lt;br /&gt;
 18:30-18:45 Mot de bienvenue&lt;br /&gt;
 18:45-19:45 Présentation principale - &amp;quot;À l’assaut des analyseurs XML&amp;quot; Philippe Arteau&lt;br /&gt;
 19:45-20:00 Période de questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Blason_dci.png‎‎‎|150px|link=http://dciets.com/]]&lt;br /&gt;
[[Image:ETS-rouge-devise-impr-fond_transparent.png|150px|link=http://www.etsmtl.ca/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - July 24th - Web security for DevOps: the glory is in the headers ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/6bp1NCLT-YQ]] [https://youtu.be/6bp1NCLT-YQ Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/web-security-for-devops-the-glory-is-in-the-headers-by-jonathan-marcil]] [https://speakerdeck.com/owaspmontreal/web-security-for-devops-the-glory-is-in-the-headers-by-jonathan-marcil See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Jonathan Marcil&lt;br /&gt;
*'''ABSTRACT:''' DevOps is a buzzword which can be easily demystified: in essence it is a process which aims to combine the development and system administration process into one; Operations. As developers become responsible for server setup, security counter measures are evolving as well. The line between server configuration and application behaviour has been blurred. In this talk we will cover some HTTP headers in regards to security such as CORS, CSP and HSTS. We will demonstrate several forms of attack, and how they can (should) be countered.&lt;br /&gt;
*'''BIO:''' Jonathan is devoted to security and specialized in Web application security.  His main occupation is consulting in Web security, but deep down he is a developer with a agnostic vision of programming languages. He has a diploma in Software Engineering from Ecole de Technologie Superieure and more than 10 years of experience in Information Technology and Security.&lt;br /&gt;
*'''WHEN:'''  At noon on July 24th 2014&lt;br /&gt;
*'''WHERE:''' 75 Queen Street, office 3100, Montreal, QC H3C 2N6&lt;br /&gt;
*'''REGISTRATION:''' You can join us on site for a pizza slice but this is mainly an online event. Contact jonathan.marcil@owasp.org.&lt;br /&gt;
*'''WEBCAST:''' https://www.youtube.com/watch?v=6bp1NCLT-YQ&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/web-security-for-devops-the-glory-is-in-the-headers-by-jonathan-marcil&lt;br /&gt;
*'''EVENT SPONSOR:''' Pheromone http://www.pheromone.ca/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  12:00-12:10 Welcome and quick OWASP introduction&lt;br /&gt;
  12:10-13:10 Main presentation - &amp;quot;Web security for DevOps: the glory is in the headers&amp;quot; Jonathan Marcil&lt;br /&gt;
  13:10-... Open discussion and questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Logo-phero.gif‎|link=http://www.pheromone.ca/]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - June 18th - Gaps in the Clouds ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/gaps-in-the-clouds-by-robert-fritz]] [https://speakerdeck.com/owaspmontreal/gaps-in-the-clouds-by-robert-fritz See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Robert Fritz&lt;br /&gt;
*'''ABSTRACT:''' Cloud technology offers agility and scaling, and a chance to break away from legacy IT choices.  Unfortunately, skipping traditional IT activities often results in poorly patched systems, out of date firewalls, and overprovisioned entitlements wielded by admins whose “day job” is development.  Boundaries of accountability and responsibility amongst cloud providers and consumers are confusing, vague, and shift, making security difficult to manage.  In such an environment, a “BP-spill” event, where cost wins over safely safety, is likely.  This talk will dive down into the cracks between the layers of cloud, and share some of the exciting dirt we have seen and expect to see in coming years.”&lt;br /&gt;
*'''BIO:''' Robert Fritz has been practicing security his entire career. Rob started as an Air Force lieutenant at Langley AFB and later at the Pentagon in Washington DC, building and managing classified networks. Finding he was getting too far from technology after a brief stint flying, he left the military to get back to the tech, and built security tools for HP in their HP-Unix lab.  Over time he found himself in more and more security design discussions, so co-authored HP’s Commercial Application Threat Analysis Methodology, building an internal consulting practice at HP.  This quantitative approach, led to two pending patents, an external-facing consulting practice, and his contributions to NIST IR-7502, the Common Configuration Scoring System (CVSS follow-on).  He is the former lead editor for the Center for Internet Security’s HP-UX Benchmark, and current lead for the Android Benchmark.  Robert now works for Morgan Stanley as global head of the Strategic Consulting team in the Security Architecture group, and leads the team’s cloud and social-media security practices.&lt;br /&gt;
*'''WHEN:''' June 18th 2014&lt;br /&gt;
*'''WHERE:''' 700 Rue Wellington, Floor 2, Montreal, QC H3C 3S4&lt;br /&gt;
*'''REGISTRATION:''' http://owaspmtl18junems.eventbrite.ca&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/gaps-in-the-clouds-by-robert-fritz&lt;br /&gt;
*'''EVENT SPONSOR:''' Morgan Stanley http://www.morganstanley.com/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:30 Networking and Morgan Stanley Hosted Pizza and Soft Drinks&lt;br /&gt;
  18:30-18:45 OWASP Chapter &amp;amp; Morgan Stanley Welcome&lt;br /&gt;
  18:45-19:45 Main presentation - &amp;quot;Gaps in the Clouds&amp;quot; Robert Fritz&lt;br /&gt;
  19:45-20:00 Open discussion and questions&lt;br /&gt;
  20:00-...   Optional, informal networking at Aziatic - 626 rue Marguerite-d'Youville, Montréal, QC H3C 1W7&lt;br /&gt;
&lt;br /&gt;
[[Image:Morgan_Stanley_Historical_Logo.png|link=http://www.morganstanley.com/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - May 26th - Récapitulatif des challenges NorthSec ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/P8_V3RI1Ru4]] [https://youtu.be/P8_V3RI1Ru4 Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''PRÉSENTATEUR PRINCIPAL:''' Laurent Desaulniers&lt;br /&gt;
*'''RÉSUMÉ:''' Solutions de la compétition en sécurité NorthSec 2014 sur les sujets de  XXE + SSRF, WAF Bypass, Xpath Injection, DOM Injection, HTTP Only Flag bypass et contournement de captchas. Une bonne façon d'apprendre sur ces failles que vous étiez ou non un participant de la compétition.&lt;br /&gt;
*'''MESSAGE DU PRÉSENTATEUR:''' Vous voyez Rao dans votre soupe? Vous voulez une solution pour un XSS avec des cookies http only? Les captchas illisibles sont un problème? Assistez à la présentation de l'OWASP!&lt;br /&gt;
*'''BIO:''' Laurent Desaulniers est un passionné de sécurité informatique. Il a présenté au Hackfest, au colloque RSI, à OWASP et est challenge designer à NorthSec. M. Desaulniers détient les certifications CISSP, CISM, CISA et OSCP.&lt;br /&gt;
*'''QUAND:''' 26 mai à 18h00&lt;br /&gt;
*'''OÙ:''' Local PK-1140 - Pavillon Président-Kennedy 201, Avenue du Président-Kennedy, J2X 3Y7&lt;br /&gt;
*'''INSCRIPTION:''' https://www.eventbrite.ca/e/owasp-montreal-26-mai-recapitulatif-des-challenges-northsec-tickets-11724413035&lt;br /&gt;
*'''WEBCAST:''' https://www.youtube.com/watch?v=P8_V3RI1Ru4&lt;br /&gt;
*'''ÉQUIPE ACADÉMIQUE''' AGEEI-UQAM - http://www.ageei.org/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
&lt;br /&gt;
 18:00-18:30 Réseautage&lt;br /&gt;
 18:30-18:35 Mot de bienvenue par le leader du chapitre (Jonathan M.)&lt;br /&gt;
 18:35-19:30 Présentation principale : Récapitulatif des challenges NorthSec&lt;br /&gt;
 19:30-20:00 Période de questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Ageeilogo.jpg|200px|link=http://www.ageei.org/]]&lt;br /&gt;
[[Image:2397_nsec_Logo_500-250.png|200px|link=http://nsec.io/]]&lt;br /&gt;
&lt;br /&gt;
== Networking with infosec communities - April 21st ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''RÉSUMÉ:''' En collaboration avec Montréhack, mtlsec et NorthSec, nous organisons une soirée réseautage dans un pub du centre-ville. Du plaisir garanti avec les membres de plusieurs communautés infosec de Montréal!&lt;br /&gt;
&lt;br /&gt;
*'''ABSTRACT:''' In collaboration with Montréhack, mtlsec and NorthSec, we are organizing a networking evening in a pub downtown. Fun guaranteed with the other security communities in Montreal!&lt;br /&gt;
&lt;br /&gt;
*'''QUAND:''' 21 Avril 2014&lt;br /&gt;
*'''WHEN:''' April 21st 2014&lt;br /&gt;
&lt;br /&gt;
*'''OÙ/WHERE:''' BENELUX - Brasserie Artisanale 245 Sherbrooke St W Montreal, QC H2X 1X7&lt;br /&gt;
&lt;br /&gt;
*'''INSCRIPTION/REGISTRATION:''' https://www.eventbrite.ca/e/montrehack-avril-april-northsec-pre-party-tickets-11232307133&lt;br /&gt;
&lt;br /&gt;
*'''PARTENAIRES/PARTNERS:''' Montréhack http://montrehack.ca/ - mtlsec http://blog.mtlsec.com/ - NorthSec https://www.nsec.io/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
  18:00-21:00 Networking&lt;br /&gt;
  21:00-23:59 Remember to drink responsibly!&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - March 27th - Panel Compétition en sécurité NorthSec ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Présentation sous forme de panel - venez poser vos questions!'''&lt;br /&gt;
&lt;br /&gt;
*'''RÉSUMÉ:''' Les compétitions de type Capture the Flag (CTF) sont un moyen pour les professionnels et amateurs de sécurité informatique de mettre leurs talents à l'épreuve. NorthSec est une compétition Montréalaise annuelle en sécurité appliquée, qui aura lieu cette année au Marché Bonsecours de Montréal le 25, 26 et 27 avril prochain. Elle vise à augmenter le niveau technique des professionnels de la sécurité au Québec, ainsi que de permettre à ses acteurs les plus talentueux de se démarquer.&lt;br /&gt;
*'''DÉTAILS:''' Le panel de jeudi, sous la forme d'un échange convivial entre les organisateurs de l'évènement et de ses participants, abordera des thèmes variés comme l'écriture de bon défis, l'infrastructure, la logistique, les inattendus, un bilan de 2013 et tout ça en passant par de savoureuses annecdotes (on l'espère). Venez en grand nombre toucher à ces légendes de la scène infosec montréalaise!&lt;br /&gt;
*'''PANÉLISTES:''' Gabriel Tremblay, François Proulx, Laurent Desaulniers, Stéphane Graber&lt;br /&gt;
*'''ANIMATEUR:''' Olivier Bilodeau&lt;br /&gt;
*'''QUAND:''' 27 mars 2014&lt;br /&gt;
*'''OÙ:''' Salle M-1510, École Polytechnique de Montréal, 2500 chemin de Polytechnique, Montréal (Québec) H3T 1J4, pavillon Lassonde&lt;br /&gt;
*'''INSCRIPTION:''' https://www.eventbrite.ca/e/owasp-montreal-27-mars-panel-competition-en-securite-northsec-tickets-10918436337&lt;br /&gt;
*'''ÉQUIPE ACADÉMIQUE:''' Polytechnique - Polyhack http://polyhack.org/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Mot de bienvenue par le leader du chapitre (Jonathan Marcil)&lt;br /&gt;
  18:30-20:00 Présentation principale : Panel NorthSsec&lt;br /&gt;
&lt;br /&gt;
[[Image:Polyhack.png‎‎|200px|link=http://polyhack.org/]]&lt;br /&gt;
[[Image:LogoPolytechnique.gif|link=http://www.polymtl.ca/]]&lt;br /&gt;
[[Image:2397_nsec_Logo_500-250.png|200px|link=http://nsec.io/]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - February 25th - Proven Strategies for Web Application Security ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/proven-strategies-for-web-application-security-by-justin-c-klein-keane]] [https://speakerdeck.com/owaspmontreal/proven-strategies-for-web-application-security-by-justin-c-klein-keane See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Justin C. Klein Keane&lt;br /&gt;
*'''ABSTRACT:''' The rising dominance of the web as an application delivery platform has focused attacker attention squarely on the security of dynamic web applications. Application security is a complex, and shifting, field. Learn about tested and successful techniques to build safer applications, find flaws before they become vulnerabilities, and deploy applications that can detect, and resist attack.&lt;br /&gt;
*'''BIO:''' Justin C. Klein Keane is a security engineer and chapter leaders of OWASP in Philadelphia. For over a decade Justin has worked as a trainer, coder, and exploit developer. Justin is currently writing a book for NoStarch Press on hacking, speaks regularly at conferences, holds a masters degree in information technology from the University of Pennsylvania and is credited with hundreds of application vulnerability discoveries.&lt;br /&gt;
*'''WHEN:''' February 25th 2014&lt;br /&gt;
*'''WHERE:''' Ecole de technologie superieure, 1100 Notre-Dame Street West, Montreal, Room: A-1150&lt;br /&gt;
*'''REGISTRATION:''' http://owaspmtljan2014.eventbrite.ca&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/proven-strategies-for-web-application-security-by-justin-c-klein-keane&lt;br /&gt;
*'''ACADEMIC PARTNER:''' ETS - DCI http://dciets.com/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Welcome speech by Chapter Leader (Jonathan Marcil)&lt;br /&gt;
  18:30-20:00 Main session and open discussion: Proven Strategies for Web Application Security&lt;br /&gt;
  20:00-...   End of the meeting in a pub&lt;br /&gt;
&lt;br /&gt;
[[Image:Dciets.png‎‎‎|100px|link=http://dciets.com/]]&lt;br /&gt;
[[Image:Logo_ets.png|link=http://www.etsmtl.ca/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - January 28th - Latest trends in Mobile Security ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/8qPyKj4FKgY]] [https://youtu.be/8qPyKj4FKgY Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/latest-trends-in-mobile-security-by-francois-proulx]] [https://speakerdeck.com/owaspmontreal/latest-trends-in-mobile-security-by-francois-proulx See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Francois Proulx&lt;br /&gt;
*'''ABSTRACT:''' Last AppSecUSA 2013 had a great line up of talks, especially regarding mobile applications. This session will be covering all the hottest presentations about mobile security by doing an overview from what see saw at AppSecUSA, all with some slides and snippets of presentations that was recorded at the event. Discussion will be encouraged within the audience as this will be more a dynamic event than a regular talk.&lt;br /&gt;
*'''BIO:''' François Proulx is a senior mobile application developer who has worked on dozens of iOS applications since the very beginning of the Apple iOS platform. Over the past few years he has switched his focus to security. He spends a lot of his free time participating in Capture the Flag events (CTFs) and organizing the NorthSec security competition.&lt;br /&gt;
*'''WHEN:''' January 28th 2014&lt;br /&gt;
*'''WHERE:''' UQAM Room PK-1705, Pavillon Président-Kennedy (the big boat at Place des Arts) - 201 Avenue du Président-Kennedy  J2X 3Y7&lt;br /&gt;
*'''REGISTRATION:''' http://owaspmtl-mobilesecurity.eventbrite.ca&lt;br /&gt;
*'''SLIDES/CONTENT:''' [http://www.youtube.com/playlist?list=PLQtB2ug5xmvaQ9jeRWV53-F_T555GQfhW YouTube playlist]&lt;br /&gt;
*'''SPONSOR:''' Academic partner AGEEI-UQAM - http://www.ageei.org/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Welcome speech by Chapter Leader (Jonathan M.)&lt;br /&gt;
  18:30-20:00 Main session and open discussion: Mobile Security&lt;br /&gt;
  20:00-...   End of the meeting in a pub&lt;br /&gt;
&lt;br /&gt;
[[Image:Ageeilogo.jpg|200px|link=http://www.ageei.org/]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Presentations For Download  ====&lt;br /&gt;
&lt;br /&gt;
[http://www.owasp.org/images/0/0d/20100209mstechdaysowaspasvssgiv01-12657916463819-phpapp02.ppt OWASP ASVS] by Sebastien Gioria (09/03/2010) &lt;br /&gt;
&lt;br /&gt;
[http://www.ph-il.ca/slides/afup__authetification_forte.pdf Authentification Forte] by Philippe Gamache (02/02/2010) &lt;br /&gt;
&lt;br /&gt;
[http://www.opensamm.org/downloads/OpenSAMM-1.0.ppt Software Assurance Maturity Model (OpenSAMM)] by Pravir Chandra (03/11/2009) &lt;br /&gt;
&lt;br /&gt;
[http://www.owasp.org/images/d/de/Owasp-montreal-sept-17h-2009-justin-foster.pdf Crossing the Border – Javascript Exploits] by Justin Foster (17/09/2009) &lt;br /&gt;
&lt;br /&gt;
[http://www.owasp.org/images/c/c2/ALaughRIAt.pdf A Laugh RIAt] by Rafal Los (07/04/2009) &lt;br /&gt;
&lt;br /&gt;
[https://www.owasp.org/images/e/eb/OWASP-Montreal-24022009-RobLabbe.pptx Microsoft Security Development Lifecycle for IT] by Rob Labbe (24/02/2009) &lt;br /&gt;
&lt;br /&gt;
[https://www.owasp.org/images/3/39/OWASP-Montreal-24022009-EN.pdf OWASP Goal and Top Ten 2007 for Managers - French version] by Benoit Guerette (24/02/2009)&lt;br /&gt;
&lt;br /&gt;
Newer presentations are available on [https://speakerdeck.com/owaspmontreal Speaker Deck]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Circle_owasp_logo_nowhitebackground.png|200px]]&lt;br /&gt;
&lt;br /&gt;
= OWASP Foundation / Mission OWASP    = &lt;br /&gt;
OWASP Foundation ([https://docs.google.com/a/owasp.org/presentation/d/10wi1EWFCPZwCpkB6qZaBNN8mR2XfQs8sLxcj9SCsP6c/edit?usp=sharing Overview Slides]) is a professional association of [[Membership | global members]] and is open to anyone interested in learning more about software security. Local chapters are run independently and guided by the [[Chapter_Leader_Handbook]].  As a [[About_OWASP | 501(c)(3)]] non-profit professional association your support and sponsorship of any meeting venue and/or refreshments is tax-deductible. Financial contributions should only be made online using the authorized online chapter donation button.  To be a &amp;lt;b&amp;gt;SPEAKER&amp;lt;/b&amp;gt; at ANY OWASP Chapter in the world simply review the [[Speaker_Agreement | speaker agreement]] and then contact the local chapter leader with details of what OWASP PROJECT, independent research or related software security topic you would like to present on.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;La fondation OWASP est une [https://www.owasp.org/index.php/Membership association de professionnels] et elle est ouverte à tout intervenant intéressé à en apprendre davantage sur la sécurité applicative. Les chapitres locaux (dont celui de Montréal) sont gérés de façon indépendante et selon un [https://www.owasp.org/index.php/Chapter_Leader_Handbook manuel de directives à respecter].   &lt;br /&gt;
Toute contribution financière au chapitre peut être faite en ligne en utilisant l’icône prévu à cet effet. Pour être conférencier au sein de n’importe quel chapitre à l’échelle mondiale, vous n’avez qu’à prendre connaissance du document [https://www.owasp.org/index.php/Speaker_Agreement &amp;quot;entente avec les conférenciers – speaker agreement&amp;quot;] et à joindre le responsable du chapitre Montréal avec un descriptif du sujet que vous aimeriez aborder et s’il est relié à un projet OWASP, à de la recherche indépendante ou encore le sujet en particulier, concernant la sécurité applicative, que vous souhaitez aborder.&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== [[Image:Circle_owasp_logo_nowhitebackground.png|128px]] Montreal OWASP Team == &lt;br /&gt;
&lt;br /&gt;
Scope of the team is to discuss and plan local activities and meetings &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Chapter Leaders ===&lt;br /&gt;
&lt;br /&gt;
* [mailto:anne.gauthier@owasp.org Anne Gauthier], President/Présidente&lt;br /&gt;
* [mailto:michel.bourque{at}owasp.org Michel Bourque], Chapter coordinator and marketing manager/Coordination et Marketing&lt;br /&gt;
* [mailto:hugo.genesse(at)owasp.org Hugo Genesse], Web content and production manager/Site internet et Production &lt;br /&gt;
* [mailto:olivier.arteau(at)owasp.org Olivier Arteau], Logistic manager/Logistique&lt;br /&gt;
&lt;br /&gt;
==== Chapter leader history ====&lt;br /&gt;
*2008-2010 - Benoit Guerette, founder and chapter leader&lt;br /&gt;
*2011-2012 - Philippe Gamache, chapter leader (vice chapter-leader since 2010)&lt;br /&gt;
*2013-2015 - Jonathan Marcil, chapter leader&lt;br /&gt;
*2016-... - Anne Gauthier, Michel Bourque, Marius Popescu, Hugo Genesse, Olivier Arteau&lt;br /&gt;
&lt;br /&gt;
==== Old board members ====&lt;br /&gt;
*Philippe Pépos Petitclerc&lt;br /&gt;
*Michael Robillard&lt;br /&gt;
*Benoit Guerette (logistics 2015)&lt;br /&gt;
*Alexandre Rimthong&lt;br /&gt;
*Mathieu Binette&lt;br /&gt;
*Sean Coates&lt;br /&gt;
*Jean-Marc Robert&lt;br /&gt;
*Philippe Blondin&lt;br /&gt;
*Benoit Guerette (founder)&lt;br /&gt;
*Laurent Desaulniers&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;headertabs&amp;gt;&amp;lt;/headertabs&amp;gt; &lt;br /&gt;
__NOTOC__ &lt;br /&gt;
[[Category:Canada]]&lt;/div&gt;</summary>
		<author><name>Svieg</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=Montr%C3%A9al&amp;diff=240666</id>
		<title>Montréal</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=Montr%C3%A9al&amp;diff=240666"/>
				<updated>2018-05-13T02:25:34Z</updated>
		
		<summary type="html">&lt;p&gt;Svieg: /* Operate PCI DSS infrastructure using DevOps approach */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Welcome &amp;amp; Bienvenue to the OWASP Montréal chapter ==&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:OWASP-Montreal-Logo.png|Logo OWASP Montréal]]&lt;br /&gt;
&lt;br /&gt;
The OWASP Foundation was established in 2001 as an open community and software security resource. Since then, OWASP has grown to be globally recognized as a credible source for application security standards. &amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
OWASP is an open community dedicated to enabling organizations to conceive, develop, acquire, operate, and maintain applications that can be trusted. All of the OWASP tools, documents, forums, and chapters are free and open to anyone interested in improving application security. We advocate approaching application security as a people, process, and technology problem because the most effective approaches to application security include improvements in all of these areas. &amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
OWASP is open to anyone. Anyone can attend OWASP's vendor agnostic local chapter meetings, participate in regional and global conferences, and contribute to the many OWASP projects. And anyone can start a new project, form a new chapter, or lend their expertise to help an OWASP Global Committee.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt;On parle français aussi ! Le chapitre de Montréal organise plusieurs activités gratuites afin de partager les connaissances en sécurité applicative avec la communauté de développeurs et gestionnaires. Suivez-nous sur les réseaux sociaux pour connaître les dates des conférences du midi et des workshops !&amp;lt;/b&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Top documentation from OWASP includes: &lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/index.php/Top_10_2013-Top_10 OWASP TOP 10 : The Ten Most Critical Web Application Security Risks]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/images/3/33/OWASP_Application_Security_Verification_Standard_3.0.1.pdf OWASP ASVS : Application Security Verification Standard]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/images/5/52/OWASP_Testing_Guide_v4.pdf OWASP Testing Guide : Penetration Testing Framework]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/images/7/78/OWASP_AlphaRelease_CodeReviewGuide2.0.pdf OWASP Code Review Guide : Source Code Analysis Framework]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/index.php/OWASP_Cheat_Sheet_Series OWASP Cheat Sheet : Best practices guidelines for developers]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org OWASP Global]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Chapter Leaders / Responsables du chapitre ===&lt;br /&gt;
&lt;br /&gt;
* [mailto:anne.gauthier@owasp.org Anne Gauthier], President/Présidente&lt;br /&gt;
* [mailto:michel.bourque{at}owasp.org Michel Bourque], Chapter coordinator and marketing manager/Coordination et Marketing&lt;br /&gt;
* [mailto:hugo.genesse(at)owasp.org Hugo Genesse], Web content and production manager/Site internet et Production &lt;br /&gt;
* [mailto:olivier.arteau(at)owasp.org Olivier Arteau], Logistic manager/Logistique&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt; Volunteers / Volontaires OWASP Montréal: &amp;lt;/b&amp;gt;&lt;br /&gt;
* Simon Lacasse, Web content / Site internet&lt;br /&gt;
* Julien Touche, Logistique&lt;br /&gt;
* Jean-François Gill&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;b&amp;gt; Reach our chapter / Joindre le chapitre &amp;lt;/b&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Follow OWASP's Montreal chapter's activities through social medias, register to events, watch the previous presentations and more! &lt;br /&gt;
&lt;br /&gt;
Suivez les activités du chapitre OWASP Montréal via les réseaux sociaux, inscrivez-vous aux activités, visualisez les anciennes présentations et plus encore! &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;b&amp;gt;[http://lists.owasp.org/mailman/listinfo/owasp-montreal Click here] to join the local chapter mailing list.&lt;br /&gt;
&amp;lt;br /&amp;gt;[http://lists.owasp.org/mailman/listinfo/owasp-montreal Inscrivez-vous ici] à la liste de courriels du chapitre afin de recevoir les dernières nouvelles!&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Want to be part of the community ? &lt;br /&gt;
Devenez membre de notre communauté ! &lt;br /&gt;
[https://www.owasp.org/index.php/Membership_Map Click here / Cliquer ici]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Eb_press_little.gif‎|OWASP Montreal Eventbrite|link=http://owaspmontreal.eventbrite.ca/]] &lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[Image:Yt-brand-standard-logo-630px.png‎|128px|YouTube OWASP Montreal Channel|link=http://www.youtube.com/owaspmontreal]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]   &lt;br /&gt;
[[Image:Speakerdecklogo.png‎|Slides of OWASP Montreal on SpeakerDeck |link=https://speakerdeck.com/owaspmontreal]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Twitter-bird-cropped-onwhite.png|@owaspmontreal on Twitter|link=https://twitter.com/owaspmontreal]]&lt;br /&gt;
[[Image:FacebookSquareLogo.png|OWASP Montreal Facebook page|link=https://www.facebook.com/owasp.montreal]]&lt;br /&gt;
[[Image:LinkedinSquareLogo.png|OWASP Montreal on LinkedIn|link=https://www.linkedin.com/groups/1379007/profile]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
&lt;br /&gt;
== What we do / Nos activités ==&lt;br /&gt;
&lt;br /&gt;
OWASP Montreal is a really active chapter. We organize monthly conferences and workshops. All our events are free and meant to improve the knowledge and awareness of the community's developers, managers and computer security specialists. To be aware of the next event and for additional information, follow us on social medias. &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
OWASP Montréal est un des chapitres les plus actifs. Nous organisons mensuellement des ateliers et conférences. Tous nos événements sont gratuits et ont pour but d'améliorer les connaissances de la communauté. Ils s'adressent donc autant aux gestionnaires qu'aux développeurs et aux spécialistes en sécurité informatique. Pour plus d'informations sur nos activités et pour être au courant des prochaines dates d'événement, suivez nous sur les réseaux sociaux. &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;We also contribute to the vast OWASP knowledge base / Nous contribuons aussi aux ressources d'OWASP&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We list here the projects that were started by our members under OWASP's banner. &amp;lt;br /&amp;gt;&lt;br /&gt;
Nous listons ici les projets commencé par nos membres sous la banière d'OWASP. &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/index.php/Vulnerability_Disclosure_Cheat_Sheet Vulnerability Disclosure Cheat Sheet]&lt;br /&gt;
&lt;br /&gt;
== Sponsorship &amp;amp; Membership / Commandite &amp;amp; Adhésion ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Btn_donate_SM.gif|link=http://www.regonline.com/donation_1044369]] to this chapter or become a local chapter supporter.&lt;br /&gt;
&lt;br /&gt;
Or consider the value of [[Membership | Individual, Corporate, or Academic Supporter membership]]. Ready to become a member? [[Image:Join_Now_BlueIcon.JPG|75px|link=https://myowasp.force.com/]]&lt;br /&gt;
&lt;br /&gt;
[http://www.regonline.com/donation_1044369 Donnez] au chapitre ou devenez commanditaire du chapitre local! &lt;br /&gt;
&lt;br /&gt;
[https://myowasp.force.com/ Devenez membre !] Pour en savoir davantage sur les avantages d’une adhésion individuelle, corporative ou en tant qu’institution d’enseignement, [https://www.owasp.org/index.php/Membership cliquez ici]. &lt;br /&gt;
&lt;br /&gt;
[[Category:OWASP Chapter]]&lt;br /&gt;
&lt;br /&gt;
== Chapter Supporters / Commanditaires du chapitre ==&lt;br /&gt;
&lt;br /&gt;
[https://www.owasp.org/images/9/91/OWASP_Membership_Flyer_Montreal.png All details available here / Pour tous les détails] [[File:Chapter-supporter-owasp-montreal.png|200px|link=]] &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Platinum / Platine ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Gosecure-2.png|GoSecure|link=http://www.gosecure.ca/]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[File:Desjardins2-400x400.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Gold / Or ===&lt;br /&gt;
&lt;br /&gt;
[[Image:PM_SCADA_Logo_Gris_Cybersecurite_FR.png|PM SCADA|link=http://pmscada.ca/en/]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Lunch &amp;amp; Learn / Workshops 2018 =&lt;br /&gt;
&lt;br /&gt;
== Operate PCI DSS infrastructure using DevOps approach ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Owasp-avril-2018.JPG  ]]&lt;br /&gt;
[[Image:Owasp-avril-2018-2.JPG ]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/ohTq0no0ZVU ]] [https://youtu.be/ohTq0no0ZVU Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 April 30 2018&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
OWASP dans le cadre des Midis conférence est heureux d'accueillir Greg Castle.&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
L'événement contiendra une diffusion de &amp;quot;Shipping in Pirate-Infested Waters: Practical Attack and Defense in Kubernetes&amp;quot; présenté à Kubecon 2017, suivi de 20 min de questions/réponses avec Greg par vidéoconférence.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Biographie :&amp;lt;br /&amp;gt;&lt;br /&gt;
Greg est Tech Lead pour l'équipe sécurité Kubernetes et Google Container Engine chez Google. Avant GKE, Greg a travaillé dans l'équipe de réponse aux incidents de sécurité de Google, dévelopant des outils opensource d'investigations et à l'amélioration de la sécurité de Macos. Avant google, il a occupé de nombreuses positions incluant pentester, incident responder et analyste forensics.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Operate PCI DSS infrastructure using DevOps approach ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Owasp-montreal-pci-dss-r.jpg  ]]&lt;br /&gt;
[[Image:Owasp-montreal-pci-dss-2-r.jpg ]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/owasp-operate-pcidss-infrastructure-using-devops-approch-dot-pptx-1]] [https://speakerdeck.com/owaspmontreal/owasp-operate-pcidss-infrastructure-using-devops-approch-dot-pptx-1 See the slides / Voir la présentation]&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 March 5 2018&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
OWASP dans le cadre des Midis conférence est heureux d'accueillir, M. Gaëtan Trivino.&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Notre conférencier viendra présenter l'influence de la culture devops sur les opérations d'un hébergeur international en particulier pour supporter les réglementations comme PCI DSS.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Biographie :&amp;lt;br /&amp;gt;&lt;br /&gt;
Gaëtan est DevOps technical leader orienté cloud et automatisation réseau. Il a traversé l'Atlantique avec sa famille pour explorer de nouvelles culture de travail et se lance dans la recherche du meilleur sirop d'érable!&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Lunch &amp;amp; Learn / Workshops 2015-2017 =&lt;br /&gt;
&lt;br /&gt;
== Pourquoi un hacker peut-il contourner les mesures et solutions de sécurité... ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hamilton-septembre-2017-1.JPG  ]]&lt;br /&gt;
[[Image:Hamilton-septembre-2017-2.JPG ]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/endpoint-bypass-charles-hamilton]] [https://speakerdeck.com/owaspmontreal/endpoint-bypass-charles-hamilton See the slides / Voir la présentation]&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 September 18th 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
OWASP dans le cadre des Midis conférence est heureux de lancer la saison 2017-2018 en accueillant, M. Charles F. Hamilton.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Notre conférencier viendra brosser un tableau des différents éléments qui expliquent pourquoi les mesures et les solutions de sécurité en générales qui ont la fonction de protéger les données, les applications, les réseaux ou les équipements critiques sont si souvent contournées ou carrément inefficaces contre les attaques ciblées.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Biographie :&amp;lt;br /&amp;gt;&lt;br /&gt;
Charles F. Hamilton est un consultant en sécurité et membre d’équipe « Red Team » de calibre international. Il se spécialise en test d’intrusion et la recherche de solution proactive de sécurité.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Cas d'attaques vécus : Internet des objets (IOT) - Attaques DDoS ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Cas_dattaques_vecus-r.jpg  ]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 June 19th 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
Pour clore la saison printanière 2017, OWASP Montréal est fier d'accueillir au Midi Conférence, M. Christian Shink qui fera un survol de cas d'attaques vécus, des techniques utilisées et des acteurs impliqués dans ces attaques.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
L'incorporation généralisée de dispositifs «intelligents» dans les objets de la vie de tous les jours modifie la façon dont les gens et les machines interagissent les uns avec les autres. Cette incorporation offre une promesse d'une meilleure qualité de vie, une meilleure efficacité. En contrepartie, leur déploiement introduit également des vulnérabilités à la fois dans l'infrastructure qu'ils soutiennent et sur lesquels ils comptent, ainsi que dans les processus qu'ils guident. Que ce soit au niveau applicatif ou des infrastructures, ces vulnérabilités sont exploitées par des acteurs malicieux pour générer des attaques de déni de service massives et sophistiquées. Nous tenterons également de tirer des leçons afin de tenter de minimiser ce type d'attaques dans le futur.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Christian Shink possède plus d’une dizaine d’années d’expérience en développement et sécurité d’applications. Avant de se joindre à Radware, Christian était à l’emploi d'une firme conseil où il a conseillé de nombreuses entreprises, dont de grandes banques américaines et Casinos. Il détient une certification CSSLP et est membre de l'ordre des ingénieurs du Québec.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== HOW TO! Threat Modeling Toolkit ==&lt;br /&gt;
&lt;br /&gt;
[[Image:OWASPMtl-JonathanMarcil-1.jpg]]&lt;br /&gt;
[[Image:OWASPMtl-JonathanMarcil-3.jpg]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/threat-modeling-toolkit]] [https://speakerdeck.com/owaspmontreal/threat-modeling-toolkit See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 May 23rd, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Shopify Montreal&lt;br /&gt;
&lt;br /&gt;
Threat Modeling is a great way to analyze security early in software development by structuring possible attacks, bad actors and countermeasures over a broad view of the targeted system. This talk will describe basic components of a threat model and how to use them effectively.&lt;br /&gt;
Threat Intelligence is where you gather knowledge about the environment and business assets to determine what are the actual threats. But how do you reconcile that with the current architecture in a useful manner?&lt;br /&gt;
The toolkit presented in this talk will enable you to systematically structure related information using graphical notations such as flow diagram and attack tree. In case you are wondering where to start in your organization, a quick lightweight risk rating methodology will also be proposed.&lt;br /&gt;
And in the end, you’ll see how we can all tie those together and get threat modeling to a point where it’s an efficient application security activity for communication. Doing this will prevent security reviews from missing important things even when chaos prevails during the realization of a project.&lt;br /&gt;
Modeling concepts will be demonstrated with an actual IoT device used as example.&lt;br /&gt;
Presentation will be done in english.&lt;br /&gt;
&lt;br /&gt;
Speaker Bio:&lt;br /&gt;
Jonathan Marcil is the former chapter leader of OWASP Montreal and is now Senior Application Security Engineer at Blizzard Entertainment in beautiful Orange County, California.&lt;br /&gt;
Jonathan has been involved with OWASP for many years and has been behind the Media Project which gathered and promoted AppSec conferences video content in the official OWASP YouTube channel. He was also part of NorthSec CTF event as a challenge designer specialized in Web and imaginative contraptions.&lt;br /&gt;
He is passionate about Application Security and enjoys architecture analysis, code review, threat modeling and debunking security tools. He holds a diploma in Software Engineering from ÉTS Montreal and has more than 15 years of experience in Information Technology and Security.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Merci à nos précieux commanditaires !&lt;br /&gt;
&lt;br /&gt;
== Security Testing: Unlocking the Benefits of a Hybrid Approach ==&lt;br /&gt;
[[Image:Security testing hybrid approach-r 3.jpg    ]]&lt;br /&gt;
[[Image:Security testing hybrid approach-r 4.jpg    ]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/hybrid-approach-to-security-testing]] [https://speakerdeck.com/owaspmontreal/hybrid-approach-to-security-testing See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 April 24th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
As part of their defensive efforts, businesses commonly commission cybersecurity assessments of their web applications; with the aim of identifying any weaknesses in the security controls and ensuring a continually strong cybersecurity posture of their systems.&lt;br /&gt;
&lt;br /&gt;
The classical approach of either secure code review (white box) or penetration testing (black box) assessment have proven to be effective in securing of web applications. The new trend, however, is moving towards the combination of these two approaches; expert consensus is rapidly recognizing the advantages of using a hybrid approach. When applied properly, a hybrid approach can build on the strengths of both white and black box testing, while compensating for their individual shortcomings.&lt;br /&gt;
&lt;br /&gt;
In this presentation, we will examine the details of secure code review and penetration testing, and run demos to contrast their respective strengths and weaknesses. We will also examine why a hybrid approach can produce more complete and relevant assessment results. To conclude, we will cover proven approaches, and practical techniques, on how you can start leveraging a hybrid approach to web application assessments today.&lt;br /&gt;
&lt;br /&gt;
Anne Gauthier is an application security analyst at GoSecure. Anne is also the president of the Montreal Chapter of OWASP – the industry standard for web application security. With a penetration testing background, she specializes in secure code reviews and in helping companies to improve their software development lifecycle (SDLC) according to industry best practices. Anne is CSSLP, GWAPT and GSSP-JAVA certified. She obtained a Software Engineering bachelor’s degree from Ecole de Technologie Supérieure in Montréal and is now pursuing a Master of Engineering (MEng) degree in Information Systems Security at Concordia University. She is the author of the Project 201 Security blog.&lt;br /&gt;
&lt;br /&gt;
Merci à nos précieux commanditaires !&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;HOW-TO&amp;quot; NIGHT ! Tout sur les CTFs (Capture The Flag) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Howto_ctf.jpg]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://docs.google.com/presentation/d/1zEsCcX-Nvq8Nz0k-B1zHejCDNT2oGZx8oUBgMbvvMM0/edit#slide=id.p ]] [https://docs.google.com/presentation/d/1zEsCcX-Nvq8Nz0k-B1zHejCDNT2oGZx8oUBgMbvvMM0/edit#slide=id.p See the slides / Voir la présentation (Laurent Desaulniers)]&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://docs.google.com/presentation/d/1c1P1d2mKe767j1Y0V9cK6De5cpnK4I7GI-ORiodbg1A/edit#slide=id.p ]] [https://docs.google.com/presentation/d/1c1P1d2mKe767j1Y0V9cK6De5cpnK4I7GI-ORiodbg1A/edit#slide=id.p See the slides / Voir la présentation (Charles Hamilton)]&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=http://obilodeau.github.io/slides/2017-04-04_how-not-to-suck-at-ctfs/ ]] [http://obilodeau.github.io/slides/2017-04-04_how-not-to-suck-at-ctfs/ See the slides / Voir la présentation (Olivier Bilodeau)]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 April 4th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Shopify&lt;br /&gt;
&lt;br /&gt;
Cette nouvelle soirée &amp;quot;How-To&amp;quot; Night d'OWASP Montréal vise à présenter les CTFs (une compétition Capture The Flag) et aider les équipes à démarrer et à continuer à évoluer dans leurs pratique de la cyber sécurité pratique. L'objectif est d'outiller les participants en leur fournissant des ressources techniques et des contacts afin de les aider à progresser.&lt;br /&gt;
&lt;br /&gt;
Les éléments discutés seront:&lt;br /&gt;
&lt;br /&gt;
- Composition optimale d’une équipe : Fonctionnement d’une équipe de CTF et les principaux rôles (chef d’équipe, cryptographie, application web, rétro ingénierie et les causes perdues).&lt;br /&gt;
&lt;br /&gt;
- Pourquoi faire des CTFs? Discussion sur les différents styles (jeopardy, attack/defense, etc.), quels sont les problèmes fréquemments rencontrés + plusieurs anecdotes intéressantes (et drôles).&lt;br /&gt;
&lt;br /&gt;
- Trucs de Mr. Unikoder : Le créateur du fameux site ringzer0team, soit un des plus gros sites pour apprendre la résolution de problèmes de CTF (https://ringzer0team.com/) Apprenez des trucs du meilleur, sur comment débuter et interpréter un challenge web, binaire et crypto avec des trucs réels du métier.&lt;br /&gt;
&lt;br /&gt;
Matériel requis :&lt;br /&gt;
&lt;br /&gt;
    Votre légendaire enthousiasme&lt;br /&gt;
&lt;br /&gt;
Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
&lt;br /&gt;
Places limitées. Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Shopify pour l'événement.&lt;br /&gt;
&lt;br /&gt;
Présentateurs :&lt;br /&gt;
&lt;br /&gt;
Charles Hamilton, Senior Consultant chez Mandiant, FireEye, Inc.&lt;br /&gt;
&lt;br /&gt;
Olivier Bilodeau, Cybersecurity Research Lead at GoSecure&lt;br /&gt;
&lt;br /&gt;
Laurent Desaulniers, Senior Security Solution Specialist at Bell Canada&lt;br /&gt;
&lt;br /&gt;
== NorthSec - Applied Security Event ==&lt;br /&gt;
[[Image:Nsec_2017_midi_conf.jpg]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/northsec-applied-security-event]] [https://speakerdeck.com/owaspmontreal/northsec-applied-security-event See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 April 4th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
NorthSec: La plus grande compétition et conférence en cyber sécurité au Canada&lt;br /&gt;
&lt;br /&gt;
NorthSec est un organisme sans but lucratif qui organise une conférence et une compétition de sécurité de type &amp;quot;Capture-The-Flag&amp;quot; (CTF) et des formations. Avec plus de 400 participants présents sur le site pour la compétition, c’est la plus grande compétition du genre au monde.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
La conférence, dans sa 3e année, attire des présentateurs internationaux avec du contenu technique exclusif. L’ajout des séances de travail (workshops) devrait plaire aux plus chevronnés des binaires.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Des formations de 3 jours sont offertes avant la conférence: &amp;quot;Advanced Web Application Security&amp;quot; par Philippe Arteau et &amp;quot;Malware and Memory Forensics&amp;quot; par Michael Ligh, co-auteur des livres &amp;quot;Malware Analyst Cookbook&amp;quot; et &amp;quot;The Art of Memory Forensics&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
NorthSec est situé au Marché Bonsecours dans le Vieux-Port de Montréal au printemps du 15 au 21 mai 2017.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
La présentation couvrira:&lt;br /&gt;
&lt;br /&gt;
- Le plan pour 2017&amp;lt;br /&amp;gt;&lt;br /&gt;
- Ce qui différencie NorthSec&amp;lt;br /&amp;gt;&lt;br /&gt;
- Comment équilibrer une compétition pour les débutants et les experts&amp;lt;br /&amp;gt;&lt;br /&gt;
- Comment bâtir une infrastructure basée sur les conteneurs qui gère 50 équipes dans quelques serveurs sans qu’ils ne se partagent de machines virtuelles&amp;lt;br /&amp;gt;&lt;br /&gt;
- Comment faire du pain au levain à grande échelle&amp;lt;br /&amp;gt;&lt;br /&gt;
- Présentation de quelques défis et solutions&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Les présentateurs:&lt;br /&gt;
&lt;br /&gt;
- Gabriel Tremblay, Président, Delve Labs&amp;lt;br /&amp;gt;&lt;br /&gt;
- Olivier Bilodeau, VP Formations, Co-fondateur MontréHack, GoSecure&amp;lt;br /&amp;gt;&lt;br /&gt;
- Pierre-David Oriol, VP Conférences, Delve Labs&amp;lt;br /&amp;gt;&lt;br /&gt;
- Benoit Guérette, VP Partenaires, Desjardins&amp;lt;br /&amp;gt;&lt;br /&gt;
- Laurent Desaulniers, Tisserand de drapeaux, Bell Canada&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Merci à nos précieux commanditaires !&lt;br /&gt;
&lt;br /&gt;
== Sécurité des applications : Les fondements ==&lt;br /&gt;
[[Image:Tanya.jpeg]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/securite-des-applications-les-fondements]] [https://speakerdeck.com/owaspmontreal/securite-des-applications-les-fondements See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 March 20th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
OWASP Montréal est fier d’accueillir au Midi Conférence du mois de mars, Mme Tanya Janca, Co-Leader du chapitre OWASP Ottawa et spécialiste de la sécurité applicative au sein du Gouvernement fédéral.&lt;br /&gt;
&lt;br /&gt;
La conférence « Les fondements de la sécurité des applications » sera présentée en anglais.&lt;br /&gt;
&lt;br /&gt;
Session Description : Everyone has heard about the problem; everyone is “getting hacked”. But what is the answer? From scanning your code with a vulnerability scanner to red teaming exercises, developer education programs and bug bounties, this talk will take the audience through all the possibilities of an extensive application security program, with a detailed explanation of each part.&lt;br /&gt;
&lt;br /&gt;
Bio : Tanya Janca is an application security evangelist, a web application penetration tester and vulnerability assessor, a secure code reviewer, an ethical hacker, the Co-Leader of the OWASP Ottawa chapter, and has been developing software since the late 90’s. She has worn many hats and done many things, including; Custom Apps, Ethical Hacking, COTS, Incident Response, Enterprise Architect, Project and People Management, and even Tech Support. She is currently helping the Government of Canada secure their web applications.&lt;br /&gt;
&lt;br /&gt;
Merci à notre commanditaire principal de cet événement: Ubitrak!&lt;br /&gt;
&lt;br /&gt;
== WORKSHOP ! Server Side Template Injection (SSTI) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-okiok-SSTI-r.jpg | WORKSHOP ! Server Side Template Injection (SSTI) ]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/workshop-server-side-template-injection-ssti]] [https://speakerdeck.com/owaspmontreal/workshop-server-side-template-injection-ssti See the slides / Voir la présentation]&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 22 Février 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Shopify Montréal&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
OWASP Montreal vous invite à un atelier portant sur la sécurité des applications web supportant les moteurs de template (Template Engine). Le principe de séparation entre la présentation du site (code HTML statique) et de son contenu dynamique facilite la création de documents HTML et la capacité à modifier l'apparence du site sans mélanger le traitement et le rendu de la page. L'utilisation de moteurs de template amène de nouveaux enjeux de sécurité. Les vulnérabilités de type Server Side Template Injection (SSTI) sont exploitables à travers les données (non fiables) fournies par l'utilisateur et conduisent à l'exécution de code arbitraire (RCE) sur le serveur hébergeant l'application web.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ce workshop a pour but d'introduire cette classe de vulnérabilité à travers différents cas d'implémentation (php, java, python).&lt;br /&gt;
Nous verrons comment identifier et exploiter ces vulnérabilités et de quelle manière un attaquant peut &lt;br /&gt;
s'y prendre pour exécuter du code arbitraire sur le serveur afin d'en prendre le contrôle.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Niveau : Intermédiaire&amp;lt;br /&amp;gt;&lt;br /&gt;
Matériel requis :&lt;br /&gt;
* Votre portable&lt;br /&gt;
* Votre distribution Linux/Unix de votre choix&lt;br /&gt;
* Votre proxy Web de votre choix&lt;br /&gt;
&lt;br /&gt;
Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
Places limitées. Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Shopify pour l'événement.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Présentateur : Gérôme Dieu&amp;lt;br /&amp;gt;&lt;br /&gt;
Gérôme Dieu cumule plus de 7 années d’expérience en technologies de l’information et en sécurité. &lt;br /&gt;
Il œuvre à titre de conseiller senior en sécurité de l’information au sein de la firme OKIOK. Ces dernières années, il a acquis une expertise dans le domaine de la sécurité des applications web aussi bien d'un point de vue offensif que défensif. En plus de réaliser des tests d’intrusion pour des clients internationaux, Gérôme s’implique dans la recherche et développement afin de maintenir à la fine pointe de la technologie les tests d'intrusion et d'analyse de vulnérabilités. &amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Merci à Shopify d'héberger l'événement !&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Shopify Logo-r.png| Shopify | link=https://www.shopify.com/]]&lt;br /&gt;
== Le courriel en 2017 – risques et menaces pour tous ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Zero spam 2.jpg|Le courriel en 2017 – risques et menaces pour tous]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://www.youtube.com/watch?v=HX2vcijcCWw ]] [https://www.youtube.com/watch?v=HX2vcijcCWw Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 Le 23 janvier 2017 à midi&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
Monsieur Poellhuber nous brossera un tableau du phénomène grandissant du rançongiciels et de l'hameçonnage, personnification.&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
- Par les années passées, la menace courriel se résumait principalement en un fort volume de contenu simplement indésirable. Aujourd’hui la menace a passablement évolué. Quels sont les véritables risques actuels associés au courriel ? Rançongiciels, hameçonnage, personnification. Cette conférence présentera les nouveaux défis de sécurité pour les organisations qui doivent composer avec des attaques de plus en plus sophistiquées et de plus en plus ciblées tout en protégeant leur réputation. Des exemples biens réels, drôles et moins drôles seront disséqués pour bien dessiner l’ampleur de l’enjeu.&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
M. David Poellhuber, Chef de l’exploitation, ZEROSPAM Sécurité Inc&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note biographique :&amp;lt;br /&amp;gt;&lt;br /&gt;
Monsieur David Poellhuber oeuvre dans l’industrie de la sécurité informatique depuis quinze ans. Il a été conférencier dans plusieurs forums de sécurité au Canada et est maintenant reconnu comme une autorité en matière de sécurité du courriel. Il a fondé ZEROSPAM Sécurité en 2003, le premier service Québécois externalisé de sécurité du courriel infonuagique qui se distingue par sa convivialité, son efficacité et ses technologies de détection proactives.&amp;lt;br /&amp;gt;&lt;br /&gt;
Audience :  Généralistes et spécialistes de la sécurité des TI &lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Merci à Ubitrack pour le repas et à Desjardins d'héberger l'événement!&lt;br /&gt;
&lt;br /&gt;
[[Image:Ubitrak-r2.jpg|Ubitrak|link=http://www.ubitrak.com/fr/]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&lt;br /&gt;
== Effective XSS Mitigation ==&lt;br /&gt;
&lt;br /&gt;
[[Image:XSS mitigation.jpg | Effective XSS Mitigation ]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=http://slides.com/olivierarteau/xss-mitigation ]] [http://slides.com/olivierarteau/xss-mitigation See the slides / Voir la présentation]&lt;br /&gt;
&lt;br /&gt;
WHEN &lt;br /&gt;
 18 Janvier 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Google Montréal&lt;br /&gt;
&lt;br /&gt;
FRANÇAIS/ENGLISH&amp;lt;br /&amp;gt;&lt;br /&gt;
La mitigation de XSS a été un sujet important au cours des dernières années. Les navigateurs ont implémenté, en autre, deux fonctionnalités pour mitiger leur impact : l'entête &amp;quot;XSS-Protection&amp;quot; et l'entête &amp;quot;Content-Security-Policy&amp;quot;. Par contre, obtenir une mitigation contre les XSS efficace est souvent plus complexe que l'on pense. Cet atelier couvrira les deux entêtes. Il expliquera comme il est possible de contourner ces protections et ce qu'il est possible de faire pour se protéger. Des exercices de type &amp;quot;offensif&amp;quot; et &amp;quot;défensif&amp;quot; seront proposés.&lt;br /&gt;
Mitigation for XSS as been an important topic in the last few years. Browsers have implemented two main functionalities to help mitigate the impact of XSS : the &amp;quot;XSS-Protection&amp;quot; header and the &amp;quot;Content-Security-Policy&amp;quot; header. But, getting an effective XSS mitigation of those headers is trickier than it may seem. This workshop will cover both of those headers. It will explain how bypass of those protection work and what you can do about it. It will have both &amp;quot;defensive&amp;quot; exercises and &amp;quot;offensive&amp;quot; exercises.&lt;br /&gt;
Niveau : débutant/intermédiaire&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Matériel requis :&lt;br /&gt;
&lt;br /&gt;
Votre portable&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
&lt;br /&gt;
Places limitées. Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Google pour l'événement.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Présentateur : Olivier Arteau&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Olivier Arteau est un professionnel en sécurité informatique depuis quelques années et fait partie de l’équipe de test d’intrusion de Desjardins. Il est aussi un amateur de CTF qui a gagné à plusieurs reprises le CTF du NorthSec avec l’équipe HackToute et participe fréquemment à d’autres CTF avec l’équipe DCIETS.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Merci à Google d'héberger l'événement! &lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-zap-4-r.jpg | Google | link=https://www.google.ca/ ]]&lt;br /&gt;
&lt;br /&gt;
== WORKSHOP ! Top 10 OWASP - Unleash the threats ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-top10.jpg | WORKSHOP! Top 10 OWASP - Unleash the threats ]]&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 30 novembre 2016 de 17h30 à 20h30&lt;br /&gt;
WHERE&lt;br /&gt;
 Immunio @ WeWork&lt;br /&gt;
&lt;br /&gt;
De nos jours, la sécurité applicative est essentielle dans l’écosystème des entreprises de toutes tailles. Les vecteurs d’attaques sont multiples, les vulnérabilités de sécurité dans les applications peuvent être désastreuses et les impacts d’un « Hack » peuvent être irréversibles pour l’entreprise; vols de données sensibles, perte de réputation, perte de $$$$$, etc.&lt;br /&gt;
L’objectif du workshop est de comprendre la base sur les vulnérabilités de sécurité dans les applications et les techniques d’exploitation utilisées par les pirates informatiques, en plus de connaître les bonnes pratiques de développement en matière de sécurité applicative. &lt;br /&gt;
Avec l'aide de WebGoat, Damn Vulnerable Web Application et de Kali Linux, vous pourrez participer&lt;br /&gt;
à l'exploitation des applications et découvrir les techniques utilisées par les attaquants.&lt;br /&gt;
&lt;br /&gt;
Niveau : débutant&lt;br /&gt;
&lt;br /&gt;
Matériel requis :&lt;br /&gt;
 Votre portable&lt;br /&gt;
 Kali Linux&lt;br /&gt;
 La VM du workshop, envoyée aux participants&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
&lt;br /&gt;
Places très limitées (nb = 10). Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Immunio &amp;amp; WeWork pour l'événement.&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Présentateur : Christian Leclerc&lt;br /&gt;
&lt;br /&gt;
Christian est spécialisé en conception et développement de solutions web sécuritaires. Tout au long de sa carrière, il a acquis une vaste expertise sur plusieurs types de technologies et méthodologies, intégré la sécurité dans le cycle de développement d’applications, effectué des revues de code sécurité, déployé des outils d’analyse des vulnérabilités et mis en place des systèmes d’authentification. De plus, il a participé à la conception et au développement de solutions sécuritaires de pointe comme la signature électronique à l’aide d’une infrastructure à clé publique (PKI), les authentifications fortes, le Registre des consentements au don d'organes et de tissus (RDOQ.org) et la migration de plusieurs applications web vers un environnement SOA (Service Oriented Architecture). &lt;br /&gt;
&amp;lt;br&amp;gt;Merci à Immunio &amp;amp; WeWork d'héberger l'événement!&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:Immunio-horizontal-r.png|Immunio|link=https://www.immun.io/]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[Image:Wework-r.jpg|WeWork|link=https://www.wework.com/]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Histoire d'un Hack ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Histoire-dun-hack-r.jpg | Histoire d'un Hack ]]&lt;br /&gt;
&lt;br /&gt;
WHEN &lt;br /&gt;
 21 novembre 2016 à midi&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
Pour son activité du mois de novembre, OWASP Montréal propose à la communauté de la sécurité des TI et aux gestionnaires de faire l'autopsie d'une attaque de haute voltige sur un site web et des outils mis à la disposition par OWASP.&lt;br /&gt;
 &lt;br /&gt;
Bernard Bolduc cumule plus de 17 années d’expérience en technologies de l’information et en sécurité. Il œuvre à titre de conseiller senior en sécurité de l’information au niveau d’entreprise de classe nationale et internationale.&lt;br /&gt;
 &lt;br /&gt;
Bernard se spécialise en sécurité Unix, applicative et en gestion de la sécurité des télécommunications. Il combine ces expertises techniques afin d’obtenir des résultats probants et efficaces pour ces clients des secteurs bancaire, télécommunication et multimédias, de l’énergie ou des services publiques. Tout au long de sa carrière, Bernard s’est toujours maintenu à jour sur les dernières menaces de sécurité technologique et commerciale en assistant à des formations spécialisées et d'échanger avec un grand nombre de partenaires dans l'industrie de la sécurité.&lt;br /&gt;
 &lt;br /&gt;
La conférence débute à midi.&lt;br /&gt;
 &lt;br /&gt;
La conférence vous donne droit à 1 CPE et pour les 50 premières personnes, un lunch gratuit.&lt;br /&gt;
 &lt;br /&gt;
Merci à Desjardins d'héberger l'événement!&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Workshop ! Création de votre première extension OWASP ZAP (ou BurpSuite) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-zap-mix.jpg | Workshop ! Création de votre première extension OWASP ZAP (ou BurpSuite)]]&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 11 novembre 2016 de 18h à 21h&lt;br /&gt;
&lt;br /&gt;
WHERE &lt;br /&gt;
 Google Montréal&lt;br /&gt;
&lt;br /&gt;
OWASP Zed Attack Proxy (ZAP) est un scanneur de vulnérabilités et un outil de débogage HTTP. Ce type d'outil est crucial dans un test d'intrusion web et contient un lot intéressant de fonctionnalités. Cela dit, il est possible d'étendre les fonctionnalités. Plusieurs types d'extension sont possibles : vue alternative pour les requêtes ou les réponses, scanneur passif des réponses, scanneur actif produisant des requêtes, etc.&lt;br /&gt;
&lt;br /&gt;
Plusieurs options seront données, par exemple :&lt;br /&gt;
&lt;br /&gt;
 Détection automatique de flag dans les sources&lt;br /&gt;
 Scanneur actif asynchrone DNS&lt;br /&gt;
 Ou votre propre idée&lt;br /&gt;
&lt;br /&gt;
Pour chacune des suggestions, des squelettes de code seront fournis pour les APIs de ZAP. Pour les utilisateurs de BurpSuite, des directives analogues seront également données.&lt;br /&gt;
&lt;br /&gt;
Niveau : débutant / intermédiaire&lt;br /&gt;
&lt;br /&gt;
Matériel requis&lt;br /&gt;
&lt;br /&gt;
 Votre portable&lt;br /&gt;
 [https://www.owasp.org/index.php/OWASP_Zed_Attack_Proxy_Project OWASP ZAP (gratuit)]&lt;br /&gt;
 [https://portswigger.net/burp/download.html BurpSuite]&lt;br /&gt;
 Éditeur de code pour Java, Python ou Ruby&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Présentateur : Philippe Arteau&lt;br /&gt;
&lt;br /&gt;
Philippe est un chercheur en cybersécurité chez GoSecure. Il est l'auteur de l'outil d'analyse statique Java &amp;quot;Find Security Bugs&amp;quot;. Il a découvert des vulnérabilités importantes dans les logiciels populaires tels que Google Chrome, Dropbox, Paypal, RunKeeper et Jira. Il a présenté dans différentes conférences incluant Black Hat USA, Black Hat Europe, ATL Sec Con, NorthSec, Hackfest (QC) et JavaOne. Il a développé de nombreux plug-ins pour les outils de proxy BurpSuite et OWASP ZAP (Retire.js, Reissue Request Script, PDF preview et Image Metadata). Il a fait également des contributions à d'autres plug-ins comme J2eeScan.&lt;br /&gt;
&lt;br /&gt;
Merci à Google d'héberger l'événement! &lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-zap-4-r.jpg | Google | link=https://www.google.ca/ ]]&lt;br /&gt;
&lt;br /&gt;
==Logiciel de rançon (Ransomware) s'attaque au domaine de la santé==&lt;br /&gt;
&lt;br /&gt;
[[Image:HackingHealth-2.jpg | Logiciel de rançon (Ransomware) s'attaque au domaine de la santé ]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/ransomware-and-healthcare-hacking-health ]] [https://speakerdeck.com/owaspmontreal/ransomware-and-healthcare-hacking-health See the slides / Voir la présentation]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;(Conférence en anglais)&lt;br /&gt;
Pour le lancement de la saison 2016 - 2017, OWASP Montréal propose à la communauté de la sécurité des TI et aux gestionnaires de la santé une incursion dans le monde du logiciel malveillant ciblant le domaine de la santé.&amp;lt;br /&amp;gt;&lt;br /&gt;
Cette conférence s'intége dans le Coopérathon co-organisé par le Mouvement Desjardins et Hacking Health.&amp;lt;/b&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Le domaine de la santé serait devenu une cible privilégiée des campagnes de ransomware parce que l'industrie a souvent payé la rançon demandée pour récupérer les données confidentielles et vitales de ses clients. Monsieur Ed Gershfang nous brossera un portrait du phénomène et des meilleures pratiques à mettre en place en matière de sécurité applicative.&lt;br /&gt;
Ed Gershfang possède une expérience solide dans l'infrastructure informatique et plus de 6 ans d'expérience dans les domaines de la sécurité de l'information, de la vulnérabilité, de la gouvernance et de la gestion des risques. Il était directeur de la sécurité pour la société PeriGen, un chef de file de développement de logiciels médicaux en Israël.&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== La sécurité applicative vue par un pentesteur ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Juin2016-OWASPMtl.jpg | OWASP Montréal reçoit Mario Contestabile, Pentester de renom ]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
From Left to Right : Isabelle Lusseyran, Head of Development at Hacking Health. Eduard Gershfang Information Security Analyst at WSP | Parsons Brinckerhoff.&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/owasp-montreal-recoit-mario-contestabile ]] [https://speakerdeck.com/owaspmontreal/owasp-montreal-recoit-mario-contestabile See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Pour clore la saison 2015 – 2016, OWASP Montréal est fier d’accueillir au Midi Conférence un des architectes de renom du développement applicatif au Canada, monsieur Mario Contestabile.&lt;br /&gt;
En tant qu’auteur de plusieurs centaines de tests d’intrusion, il connait tous les rouages de ce qu’est véritablement une application Web «sécurisée». Mais avez-vous déjà remarqué que les rapports de tests d’intrusion mentionnent rarement, voir jamais : «Votre site est très difficile à pirater. Félicitations !» ?&lt;br /&gt;
Et qu’en est-il de ces rapports qui contiennent des dizaines de soi-disant vulnérabilités ? Est-ce que cela signifie d’emblée que l’application devrait être mise hors ligne ?  &lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Lors de cette conférence, nous examinerons des rapports concrets (ambigus) de vulnérabilités et nous les analyserons afin de mieux comprendre si elles représentent une véritable menace, ou si elles ne servent qu’à «remplir» les rapports.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Avec son expertise en protection et en attaque d’applications Web, il abordera les points suivants :&lt;br /&gt;
Comment pouvez-vous sélectionner des systèmes de façon à mieux exécuter des protections de sécurité ?&lt;br /&gt;
Éviter certains pièges dans votre application Web qui rendent les attaques plus faciles et la protection plus difficile.&lt;br /&gt;
De nos jours, que peuvent faire les développeurs à l’intérieur de systèmes communs, qui puisse me rendre la tâche plus ardue en tant que « hacker »?&lt;br /&gt;
Pouvons-nous exiger de meilleurs rapports de la part des firmes de sécurité?&lt;br /&gt;
À quoi devrions-nous nous attendre de la part d’un « pentesters »?&lt;br /&gt;
Comment pouvons-nous savoir si le « pentester » a vérifié les failles de l’application et qu’il n’a pas simplement utilisé un scanneur?&lt;br /&gt;
Et enfin, comment pouvons-nous aider les « ethical hackers » à obtenir un meilleur rendement lors d’un test d’intrusion?&lt;br /&gt;
Il expliquera le sujet en détails, et ensemble, nous verrons de quelles façons les développeurs d’applications peuvent exploiter le savoir-faire des « pentesters », et comment nous pouvons faire en sorte qu’une application Web soit protégée.&lt;br /&gt;
Biographie :&lt;br /&gt;
Mario Contestabile est reconnu comme l’un des experts en sécurité les plus réputés au Canada. Son expertise, construire et protéger votre plateforme applicative. Ancien développeur C++ et Java, Mario partage ses nombreuses connaissances en « ethical hacking » et en développement de codes sécurisé.  &lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Tuesday, 14 June 2016 from 12:00 PM to 1:00 PM (EDT) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Comment protéger les applications mobiles? ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Avril2016-OWASPMtl.png | Comment protéger les applications mobiles? ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/comment-proteger-les-applications-mobiles ]] [https://speakerdeck.com/owaspmontreal/comment-proteger-les-applications-mobiles See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Dans le cadre des Midis Conférence à l'Espace Desjardins, l'équipe OWASP Montréal vous invite à assister à une présentation sur les vulnérabilités les plus communes associées aux appareils mobiles. &lt;br /&gt;
Marie-Claire Willig détaillera entre autres comment stocker de façon sécuritaire les données de l’application mobile ainsi que protéger l’application contre des attaques externes. Des outils simples vous seront dévoilés pour détecter ces vulnérabilités.&lt;br /&gt;
Marie-Claire est une professionnelle d'expérience en sécurité appliquée.&lt;br /&gt;
Une grande partie de son intérêt professionnel réside actuellement dans un domaine assez niche, soit la revue de code sécuritaire, un fondement important de tout cycle de développement sécuritaire en entreprise.&lt;br /&gt;
Au sein de l'équipe de sécurité technologique Desjardins, elle est, en autre, responsable de former les développeurs (Java et .NET principalement) afin de les sensibiliser aux meilleures pratiques de développement sécuritaire.&lt;br /&gt;
Également, elle est une professionnelle des tests d'intrusion sur les applications web, les applications mobiles ainsi que l'infrastructure réseau.&lt;br /&gt;
Bienvenue à tous&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 20 April 2016 from 12:15 PM to 1:00 PM (EDT) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== NorthSec, Le plus gros événement de cybersécurité appliquée au Canada ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Mars2016-OWASPMtl.jpg | NorthSec, Le plus gros événement de cybersécurité appliquée au Canada ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/YQtvltQYs7Y]] [https://youtu.be/YQtvltQYs7Y Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
OWASP Montréal est fier d’inviter au Midi Conférence de mars, NorthSec est le plus gros événement de sécurité appliquée au Canada qui comprend deux jours de formation, deux jours de conférences ainsi qu’une compétition du genre « capture the flag » (CTF) de trois jours.&lt;br /&gt;
Gabriel Tremblay, Benoit Guerette, Pierre-David Oriol et Laurent Desaulniers viendront vous parler de cet organisme sans but lucratif dynamique qui est géré par une équipe de bénévoles passionnés qui donnent à chaque année leur énergie et leur temps pour soutenir la communauté de la sécurité de l’information.&lt;br /&gt;
Le volet compétition, l’épreuve maîtresse, est présentée sous forme d’un scénario qui rend cohérent une centaine de défis techniques. Les équipes de participants attaquent l’infrastructure de compétition pour soutirer des drapeaux (flags) à travers un ensemble de vulnérabilités présentes comme de l’injection SQL, des XSS ou encore l’exploitation d’exécutables sur systèmes embarqués. Quelques exemples de défis des années passées seront également présentés.&lt;br /&gt;
Le volet conférence, qui est à sa 2ème année, met de l’avant plusieurs présentations techniques touchant la sécurité applicative mais aussi l’éthique et leurs impacts sociaux. Certaines présentations confirmées seront dévoilés.&lt;br /&gt;
Le tout nouveau volet formation propose deux formations en sécurité applicative de calibre international (anglais) : “Advanced Web Security Testing with Burp Pro” et “Modern Object-Oriented Malware Reverse Engineering”.&lt;br /&gt;
Venez aussi, découvrir comment l'équipe est partie d'une idée en 2012 pour se rendre à un évènement d'envergure, qui rassemblera plus de 600 professionnels, étudiants et autres passionnés de sécurité appliquée lors de la 4ème édition qui aura lieu du 17 au 22 mai 2016 au Marché Bonsecours.&lt;br /&gt;
Finalement, la mission, la vision ainsi que les activités sociales de la semaine de NorthSec sont aussi au menu de cette présentation qui sera suivie d’une période de questions.&lt;br /&gt;
&lt;br /&gt;
Gabriel Tremblay, Delve Labs, Président&lt;br /&gt;
Benoit Guerette, Desjardins, VP Finances&lt;br /&gt;
&lt;br /&gt;
Pierre-David Oriol, Delve Labs, VP Conférence&lt;br /&gt;
Laurent Desaulniers, Bell Canada, Artisant de drapeaux&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 23 March 2016 from 12:00 PM to 1:00 PM (EDT) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== La sécurité applicative et l'hameçonnage - February 24th ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Fevrier2016-OWASPMtl.jpg | La sécurité applicative et l'hameçonnage ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/1RYlOiIENjQ]] [https://youtu.be/1RYlOiIENjQ Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
De nos jours, une des méthodes les plus efficaces pour contourner les périmètres de sécurité externes est l'hameçonnage conjointement avec l’abus de certaines technologies Web.&lt;br /&gt;
&lt;br /&gt;
Dans le cadre ses activités, OWASP Montréal est heureux d'inviter d'accueillir, l'équipe OKIOK qui présentera les impacts liés à ce type d'attaque, tel que vu et expérimenté en entreprise ainsi que les plans d'action pour traiter ces risques. La présentation abordera aussi bien la sécurité web et applicatives, des systèmes informatiques ainsi que de la sécurité physique de centres de données. &lt;br /&gt;
&lt;br /&gt;
    Capture d'informations sensibles par imitations de portails Web ;&lt;br /&gt;
    Authentification Web par 2-facteurs ;&lt;br /&gt;
    Injection SMTP dans des formulaires Web ;&lt;br /&gt;
    Attaque de type “Drive-by-download”;&lt;br /&gt;
    Prise de contrôle à distance à travers des flux HTTP;&lt;br /&gt;
    Attaque de CSRF à partir de courriels ;&lt;br /&gt;
    Attaque d'hameçonnage basée sur des achats par Internet (ex : PayPal).&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
When&lt;br /&gt;
 Wednesday, 24 February 2016 from 12:00 PM to 1:15 PM (EST) - Add to Calendar &lt;br /&gt;
Where&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest Montreal, Quebec CA&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Internet of {Things, Threats} - January 20th ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Janvier2016-OWASPMtl-R.png | Internet of {Things, Threats} ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=http://gosecure.github.io/presentations/2016-01-20_owasp-mtl/internet-of-threats.html ]] [http://gosecure.github.io/presentations/2016-01-20_owasp-mtl/internet-of-threats.html See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
De plus en plus de périphériques se retrouvent connectés sur Internet. Sous la bannière &amp;quot;Internet of Things&amp;quot; (IoT) ces équipements, que ce soit une pompe à insuline ou un système de caméra de sécurité, tournent généralement sous un système GNU/Linux embarqué d'architecture MIPS ou ARM. La difficulté de mettre à jour ces équipements ainsi que le peu d'effort mis dans la sécurité des systèmes ou la sécurité applicative en font des cibles de choix. Ces derniers mois, nous avons analysé plusieurs logiciels malveillants ciblant ces architectures. Que ce soit par l'exploitation d'une vulnérabilité (Shellshock) ou encore un défaut de configuration, ces systèmes exposés sur Internet peuvent être compromis.&lt;br /&gt;
&lt;br /&gt;
Notre présentation couvrira quelques une de ces analyses:&lt;br /&gt;
&lt;br /&gt;
* Linux/Moose, un malware se propageant automatiquement qui fraude les réseaux sociaux (par exemple Facebook, Twitter et YouTube)&lt;br /&gt;
* LizardSquad et acteurs étrangers qui utilisent des systèmes embarqués compromis pour réaliser des dénis de service distribué (DDoS) &lt;br /&gt;
* Win32/RBrute est un logiciel malveillant qui tente de changer les paramètres de routeurs dans le but de faire du &amp;quot;DNS poisoning&amp;quot;. Il a été distribué par le populaire botnet Sality.&lt;br /&gt;
* Un kit d'exploits qui utilise seulement le navigateur de leur victime avec le même objectif, c'est-à-dire faire du &amp;quot;DNS poisoning&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Enfin, des conseils seront proposés à l'audience pour l'aider à se protéger de ces menaces.&lt;br /&gt;
&lt;br /&gt;
'''Thomas Dupuy''' (twitter: @nyx__o)&lt;br /&gt;
&lt;br /&gt;
Thomas est chercheur en logiciel malveillant chez ESET Canada Recherche. Bon vivant, Thomas déjeune en &amp;quot;reversant&amp;quot; des binaires, contribue à quelques projets open source durant le diner (yara, yara rules, pefile, APTnotes) et la nuit participe à des &amp;quot;Hacking Games&amp;quot; (Capture The Flag). Curieux de nature Thomas analyse des malware aux architectures &amp;quot;exotiques&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Olivier Bilodeau''' (twitter: @obilodeau)&lt;br /&gt;
&lt;br /&gt;
Olivier Bilodeau is the head of Cybersecurity Research at GoSecure a consultancy firm specializing in cybersecurity services for the public and private sector. With more than 10 years of infosec experience, Olivier worked on Unix servers at Bell Canada, managed a portion of Air Canada's network, wrote open source network access control software at Inverse and worked as a Malware Researcher at ESET. He likes to reverse engineer everything that crosses his path, participate in information security capture-the-flag competitions, hack open source code and brew beer. He has spoken at various conferences (Defcon, Botconf, VirusBulletin, Derbycon, ...), used to lecture on information security at ETS University in Montreal, drives the NorthSec Hacker Jeopardy and co-organizes the MontreHack capture-the-flag training initiative. His primary research interests include reverse-engineering tools, Linux and/or embedded malware and honeypots.&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Survivre aux attaques DDOS applicatives ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Decembre2015-OWASPMtl.jpg | Survivre aux attaques DDOS applicatives ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Survivre aux attaques DDOS (Distributed Denial-Of-Service) applicatives.&lt;br /&gt;
Cette conférence s'adresse aux professionnels et gestionnaires des TI.&lt;br /&gt;
Conférencier : Christian Shink, ing., CSSLP, ingénieur système chez Radware, manufacturier spécialisé dans la prévention des attaques DDOS. Il fut également consultant en sécurité applicative chez In Fidem.&lt;br /&gt;
Objectifs de la conférence:&lt;br /&gt;
Présenter les tendances actuelles en matière d'attaques DDOS applicatives.&lt;br /&gt;
Renseigner les participants sur les techniques et stratégies pour contrer ces attaques illustrées à partir de cas vécus.&lt;br /&gt;
Démystifier certains mythes en ce qui concernent les façons efficaces de protéger les applications contre des attaques DDOS.&lt;br /&gt;
Date : 16 décembre 2015&lt;br /&gt;
Heure : 11h45&lt;br /&gt;
La conférence débute à 12h00 et se termine à 12:55.&lt;br /&gt;
Un lunch sera servi.&lt;br /&gt;
Réservez maintenant!&lt;br /&gt;
1 CPE&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 16 December 2015 from 11:45 AM to 1:00 PM (EST) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec &lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Sécurité des applications - Systèmes de contrôles industriels ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Novembre2015-OWASPMtl-R.png | Sécurité des applications - Systèmes de contrôles industriels ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/0eAZpyiQQ9A]] [https://youtu.be/0eAZpyiQQ9A Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&lt;br /&gt;
La sécurité des applications et les systèmes de contrôles industriels.&lt;br /&gt;
Cette conférence s'adresse aux professionnels et gestionnaires des TI desinfrastructures critiques qui exploitent ou gèrent des systèmes de contrôles industriels(SCI) et SCADA (surveillance et d'acquisition de données).&amp;lt;br /&amp;gt;&lt;br /&gt;
Conférenciers : Robert Nastas, CSSA. Gestionnaire de projet et Youssef Jad, Architecte Cyber sécurité, ICS-CERT&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Objectifs de la conférence:&lt;br /&gt;
* Démystifier le domaine d'affaires.&lt;br /&gt;
* Renseigner les participants sur les bonnes pratiques de sécurité desapplications liées au secteur industriel.&lt;br /&gt;
* Proposer aux professionnels et gestionnaires des TI responsables dessystèmes SCADA et SCI des pistes de solutions aux enjeux de sécurité.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
L'équipe OWASP Montréal vous remercie d'avoir assisté en grand nombre à la conférence, 'La sécurité des applications et les systèmes de contrôles industriels'.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 18 November 2015 from 11:45 AM to 1:00 PM (EST) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Les préoccupations actuelles de hauts dirigeants en matière de cybersécurité et de sécurité applicative ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Septembre2015-OWASPMtl.jpg | Les préoccupations actuelles de hauts dirigeants en matière de cybersécurité et de sécurité applicative ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/un-regard-sur-la-securite-de-linformation-en-2015-par-eric-hebert ]] [https://speakerdeck.com/owaspmontreal/un-regard-sur-la-securite-de-linformation-en-2015-par-eric-hebert See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Pour le lancement des activités corporatives de la saison 2015 - 2016, le 8 septembre prochain à 12:00, l'équipe OWASP Montréal convie les gestionnaires et artisants de la sécurité des TIC à venir entendre monsieur Éric Hébert qui nous présentera son interprétation des préoccupations actuelles de hauts dirigeants en matière de cybersécurité et de sécurité applicative. L'événement se tiendra au complexe Desjardins à la salle &amp;quot;Espace Desjardins&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
''' ÉRIC G. HÉBERT, CISM, CISSP ''' &amp;lt;br /&amp;gt;&lt;br /&gt;
Après plus de 20 ans passés dans le domaine de la sécurité des technologies de l’information, Éric se spécialise dans la mise en œuvre et la gestion d'équipes performantes, capables de relever les plus hauts défis de la cybersécurité moderne.&amp;lt;br /&amp;gt;&lt;br /&gt;
Capable de dialoguer avec les hauts dirigeants, il sait traduire et vulgariser les enjeux techniques complexes tout en respectant la nature et l'appétence au risque de ses clients. Dynamique et pourvu d'une expérience couvrant presque toutes les sphères de la SI, il fonce dans le respect de la culture établie tout en implantant des solutions pragmatiques et efficaces.&amp;lt;br /&amp;gt;&lt;br /&gt;
Depuis plus de 10 ans, il gravite principalement autour des entreprises du domaine financier (BNC, Desjardins, Fonds de solidarité FTQ...) et les accompagne dans la mise en place de solutions efficaces tenant compte à la fois des risques et des budgets.&lt;br /&gt;
En plus d’avoir fondé de nombreuses associations telles que le RéseauSécurIT et le RPSI, il maintient une présence régulière auprès des milieux associatifs professionnels et partage régulièrement ses expériences lors de conférences et d'entrevues avec divers médias.&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Events / Évènements =&lt;br /&gt;
&lt;br /&gt;
== Owasp Montreal at [https://nsec.io/ NorthSec 2017] ==&lt;br /&gt;
&lt;br /&gt;
[[Image:NorthSec2017-5.jpg]]&lt;br /&gt;
[[Image:NorthSec2017-6.jpg]]&lt;br /&gt;
&lt;br /&gt;
From Left to Right: Anne Gauthier, OWASP Montréal Chapter Leader (President) and Application Security Analyst at GoSecure, Hugo Genesse, OWASP Montréal Chapter Leader and Research Intern at PNF Software, Julien, OWASP Montréal Chapter Leader&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal at [https://2017.appsec.eu/ AppSec] ==&lt;br /&gt;
&lt;br /&gt;
[[Image:OWASPAppSecBelfast2017-7.jpg]]&lt;br /&gt;
&lt;br /&gt;
OWASP Montreal and Ottawa Chapter Leaders at OWASP AppSec Belfast, UK #WomenInAppSec&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal at [https://hackfest.ca/ HackFest 2016] ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hackfest2016-r.jpg| HackFest |link=https://hackfest.ca/]]&lt;br /&gt;
&lt;br /&gt;
From left to right: Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Louis Nadeau, OWASP Québec Chapter Leader and Manager, Product Security at Bentley Systems and Patrick Leclerc, OWASP Québec Chapter Leader and Information Security Advisor at La Capitale.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal at OWASP [https://2016.appsecusa.org/ AppSec USA 2016, Washington] ==&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:OWASPMtl-AppSecUSA2016-Washington.jpg | OWASP Montreal at AppSec USA 2016, Washington]] &lt;br /&gt;
&lt;br /&gt;
​From left to right: Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Marie-Claire Willig, Application Security Analyst at Desjardins, Speaker and Cofounder of the Roslyn Security Guard tool which will be presented at Blackhat 2016, Alexandre Hamelin President at Synlabs Consulting Inc., Jonathan Marcil, Application Security Engineer at Blizzard Entertainment and former OWASP Montreal Chapter Leader. Philippe Arteau, Cybersecurity Researcher at GoSecure and designer of [https://find-sec-bugs.github.io/ Find Security Bugs] and Roslyn Security Guard tool which will be presented at Blackhat 2016.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://www.gosec.net GoSec] 2016 ==&lt;br /&gt;
&lt;br /&gt;
[[Image:OWASP-GoSec2016-1r.jpg|OWASP Montreal at GoSec 2016]] [[Image:OWASP-GoSec2016-2r.jpg|OWASP Montreal at GoSec 2016]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
From left to right : Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Simon Lacasse, student and volunteer, and Laurent Desaulniers, Security Analyst at Bell Canada.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://www.nsec.io/ NorthSec] 2016 – Annual Applied Security Event ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hackfest2016-OWASPMtl.jpg|OWASP Montreal at NorthSec 2016]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Simon Veilleux &lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
From left to right : Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Olivier Arteau OWASP Montréal Chapter Leader and Conseiller chez Groupe Technologie Desjardins, Hugo Genesse, OWASP Montréal Chapter Leader and Vulnerability Research Intern at Wurldtech Security Technologies.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://hackfest.ca/en/ Hackfest] 2015 ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hackfest2015-OWASPMtl-R.JPG | OWASP Montreal at Hackfest 2015]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Hackfest &lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
From left to right : Jonathan Marcil, Application Security Engineer at Blizzard Entertainment and former OWASP Montreal Chapter Leader. Philippe Arteau, Cybersecurity Researcher at GoSecure and designer of [http://find-sec-bugs.github.io/ Find Security Bugs] and Roslyn Security Guard tool which will be presented at Blackhat 2016. &lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/8U0qkEuUFy8]] [https://youtu.be/8U0qkEuUFy8 Watch the video / Regarder la vidéo]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://www.gosec.net/ GoSec] 2015 – The Annual Cybersecurity Conference presented by GoSecure, EY and ISACA. ==&lt;br /&gt;
&lt;br /&gt;
[[Image:GoSec2015-OWASPMtl.jpg|OWASP Montreal at GoSec 2015]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
From left to right : Marie-Claire Willig, Application Security Analyst at Desjardins, Speaker and Cofounder of the Roslyn Security Guard tool which will be presented at Blackhat 2016. Benoît Guérette, Application Security Team Leader at Desjardins, VP Finance at NorthSec and OWASP Montreal Chapter Founder and Former Chapter Leader.&lt;br /&gt;
&lt;br /&gt;
== See also / Voir aussi ==&lt;br /&gt;
&lt;br /&gt;
OWASP Montréal recommends Montréhack. Learn and share knowledge on IT security by solving technical challenges. Third Monday of every month. &lt;br /&gt;
&lt;br /&gt;
OWASP Montréal recommende Montréhack. Apprends et partages des connaissances sur la sécurité informatique en travaillant des problèmes appliqués. Chaque troisième lundi du mois. &lt;br /&gt;
&lt;br /&gt;
[[File:Montrehack.png|Montréhack|link=http://montrehack.ca/|alt=Montréhack]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Archives 2007-2015 =&lt;br /&gt;
{{:Montreal chapter past meetings}}&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - February 3rd - Getting to Know the Software Assurance Marketplace (SWAMP) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/p4_vjufcB6Q]] [https://youtu.be/p4_vjufcB6Q Watch the conference / Regarder la conférence]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/getting-to-know-the-software-assurance-marketplace-swamp-by-pat-beyer]] [https://speakerdeck.com/owaspmontreal/getting-to-know-the-software-assurance-marketplace-swamp-by-pat-beyer See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Pat Beyer&lt;br /&gt;
*'''ADDITIONAL PRESENTER:'''  Abe Megahed&lt;br /&gt;
*'''ABSTRACT:''' The Software Assurance Marketplace (SWAMP) is an open facility that is designed, built, and operated by four research institutions. The SWAMP provides no-cost access to an array of open-source and commercial software analysis tools. This presentation will provide an overview and demo of the SWAMP, including our goals, intended audience, current capabilities, and future plans. We will cover our relationship with OWASP, incorporation of open-source software assurance tools, and status as an open-source project and resource available to the software community. Visit https://continuousassurance.org/ to learn more about us.&lt;br /&gt;
*'''BIO:''' Pat Beyer serves as the Product Manager for the Software Assurance Marketplace (SWAMP). With over 25 years of experience successfully managing multi-million dollar global projects, Beyer’s expertise extends to the IT, construction, and operations sectors, with a specialization in managing government contracts and grants. A gifted communicator, Beyer is a sought after speaker due to his ability to deliver complex information about technology products and services in a way that is easily understood. He is a decorated combat veteran of the Global War on Terror, the international military campaign that started following the 9/11 terrorist attacks on the United States. In 2004, he constructed and rehabilitated over 20 schools, clinics, and water treatment plants for the Iraqi people using local contractors. Beyer also holds a Bachelor of Science, a Masters in Business Administration, a Ph.D. in Organization and Management, and a Project Management Professional (PMP) certification.&lt;br /&gt;
*'''BIO:''' Abe Megahed is a web developer for the Software Assurance Marketplace. In previous lifetimes, he has been a computer graphics researcher, a game programmer, a programming language and compiler nerd, a dot com company founder, a creator of helicopter simulations, and a developer of 3D simulations for NASA astronaut crew training.&lt;br /&gt;
*'''WHEN:'''  Tuesday, February 3rd 2015&lt;br /&gt;
*'''WHERE:''' Room PK-1140 - UQAM Pavillon Président-Kennedy, 201 Avenue du Président-Kennedy  J2X 3Y7&lt;br /&gt;
*'''REGISTRATION:''' https://owaspmtlswamp2015.eventbrite.ca&lt;br /&gt;
*'''WEBCAST:''' https://www.youtube.com/watch?v=p4_vjufcB6Q&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/getting-to-know-the-software-assurance-marketplace-swamp-by-pat-beyer&lt;br /&gt;
&lt;br /&gt;
*'''ACADEMIC PARTNER:''' AGEEI-UQAM - http://www.ageei.org/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Welcome speech by Chapter Leader (Jonathan Marcil)&lt;br /&gt;
  18:30-20:00 Main session: Getting to Know the Software Assurance Marketplace&lt;br /&gt;
  20:00-...   End of the meeting&lt;br /&gt;
&lt;br /&gt;
[[Image:SWAMP-Logo-Final-Med.png|300px|link=https://continuousassurance.org/]]&lt;br /&gt;
[[Image:Ageeilogo.jpg|200px|link=http://www.ageei.org/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - 4 décembre - Malware côté serveur — évolution, méthodes d’opération et forensic Linux ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/lo8WDl-WQ3E]] [https://youtu.be/lo8WDl-WQ3E Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/malware-cote-serveur-par-marc-etienne-m-dot-leveille]] [https://speakerdeck.com/owaspmontreal/malware-cote-serveur-par-marc-etienne-m-dot-leveille See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''PRÉSENTATEUR PRINCIPAL:''' Marc-Etienne M.Léveillé&lt;br /&gt;
*'''RÉSUMÉ:''' Les logiciels malveillants ciblant les serveurs ont évolué. Ils sont utilisés par des groupes de cybercriminels organisés dans le but de faire du profit via des redirections web et l’envoie de pourriels. La présentation portera sur Opération Windigo, une opération malveillante qui a affecté plus de 25 000 serveurs dans le monde. Après une brève description des composantes de Windigo, nous verrons comment les opérateurs déploient leurs logiciels malveillants et surveille leur réseau de serveurs infectés. Des trucs pratiques pour faire de la forensics sur des systèmes Linux seront donnés. Cette présentation est une suite à la présentation &amp;quot;Linux/Cdorked: Server side malware&amp;quot;, donnée par Olivier Bilodeau à OWASP Montréal en 2013. La présentation sera en français avec des diapositives en anglais (aka Montreal-style).&lt;br /&gt;
*'''BIO:''' Marc-Etienne est un chercheur en logiciel malveillant chez ESET depuis 2012. Il se spécialise dans les logiciels malveillants qui s’attaquent à des plateformes inhabituelles comme aux produits fruités et aux oiseaux nordiques. Dernièrement, il passe beaucoup de son temps à faire la rétro-ingénierie de logiciels malveillants sur des serveurs Linux et s’intéresse à leurs méthodes d’opération. Il adore participer de façon collégiale aux CTFs avec ses amis les CISSP Groupies et jouer de la clarinette. Il tweet très peu à @marc_etienne_.&lt;br /&gt;
*'''QUAND:''' 4 décembre 2014 à 18h00&lt;br /&gt;
*'''OÙ:''' Local M-1510, Polytechnique Montréal, 2900 Boulevard Edouard-Montpetit&lt;br /&gt;
*'''INSCRIPTION:''' https://www.eventbrite.ca/e/owasp-montreal-4-decembre-malware-cote-serveur-evolution-methodes-doperation-et-forensic-linux-tickets-14635313617&lt;br /&gt;
*'''ÉQUIPE ACADÉMIQUE:''' Polyhack - http://polyhack.org/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
&lt;br /&gt;
 18:00-18:30 Réseautage&lt;br /&gt;
 18:30-18:35 Mot de bienvenue par le leader du chapitre (Jonathan M.)&lt;br /&gt;
 18:35-19:30 Présentation principale : Malware côté serveur&lt;br /&gt;
 19:30-20:00 Période de questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Polyhacklogonoirpetit.png|200px|link=http://polyhack.org/]]&lt;br /&gt;
[[Image:LogoPolytechnique.gif|link=http://www.polymtl.ca/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - October 23rd - XXE : À l’assaut des analyseurs XML ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/MZviLB9-42E]] [https://youtu.be/MZviLB9-42E Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/xxe-a-lassaut-des-analyseurs-xml-par-philippe-arteau]] [https://speakerdeck.com/owaspmontreal/xxe-a-lassaut-des-analyseurs-xml-par-philippe-arteau See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''PRÉSENTATEUR PRINCIPAL:''' Philippe Arteau&lt;br /&gt;
*'''RÉSUMÉ:''' L'utilisation d’XML est fortement répandue. Le format est utilisé pour des fichiers de configuration, pour des métadonnées, pour des documents textes, et bien plus. La prise en charge de fichiers XML n’est pas sans risque. La plupart des analyseurs XML ne sont pas sécuritaires par défaut pour le traitement de fichier externe. Cette présentation fera un survol des vulnérabilités de type « Xml eXternal Entity » et de l’étendue des risques pour différents langages de programmation. Plusieurs démonstrations sont prévues.&lt;br /&gt;
*'''BIO:''' Philippe est conseiller en sécurité applicative pour le Groupe Technologies Desjardins. Au quotidien, il s’occupe d’effectuer des tests d’intrusions et des revues de code. Il a découvert des vulnérabilités importantes dans plusieurs logiciels populaires incluant Google Chrome, DropBox, ESAPI et Jira.&lt;br /&gt;
*'''QUAND:'''  23 Octobre 2014 à 18h00&lt;br /&gt;
*'''OÙ:''' École de Technologie Supérieure Local A-3230, 1100 Rue Notre-Dame Ouest, Montréal, QC H3C 1K3&lt;br /&gt;
*'''INSCRIPTION:''' http://www.eventbrite.ca/e/owasp-montreal-23-octobre-xxe-a-lassaut-des-analyseurs-xml-tickets-13426881163&lt;br /&gt;
*'''PARTENAIRE ACADÉMIQUE:''' ETS - DCI http://dciets.com/&lt;br /&gt;
*'''PROGRAMME:''' &lt;br /&gt;
&lt;br /&gt;
 18:00-18:30 Réseautage&lt;br /&gt;
 18:30-18:45 Mot de bienvenue&lt;br /&gt;
 18:45-19:45 Présentation principale - &amp;quot;À l’assaut des analyseurs XML&amp;quot; Philippe Arteau&lt;br /&gt;
 19:45-20:00 Période de questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Blason_dci.png‎‎‎|150px|link=http://dciets.com/]]&lt;br /&gt;
[[Image:ETS-rouge-devise-impr-fond_transparent.png|150px|link=http://www.etsmtl.ca/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - July 24th - Web security for DevOps: the glory is in the headers ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/6bp1NCLT-YQ]] [https://youtu.be/6bp1NCLT-YQ Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/web-security-for-devops-the-glory-is-in-the-headers-by-jonathan-marcil]] [https://speakerdeck.com/owaspmontreal/web-security-for-devops-the-glory-is-in-the-headers-by-jonathan-marcil See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Jonathan Marcil&lt;br /&gt;
*'''ABSTRACT:''' DevOps is a buzzword which can be easily demystified: in essence it is a process which aims to combine the development and system administration process into one; Operations. As developers become responsible for server setup, security counter measures are evolving as well. The line between server configuration and application behaviour has been blurred. In this talk we will cover some HTTP headers in regards to security such as CORS, CSP and HSTS. We will demonstrate several forms of attack, and how they can (should) be countered.&lt;br /&gt;
*'''BIO:''' Jonathan is devoted to security and specialized in Web application security.  His main occupation is consulting in Web security, but deep down he is a developer with a agnostic vision of programming languages. He has a diploma in Software Engineering from Ecole de Technologie Superieure and more than 10 years of experience in Information Technology and Security.&lt;br /&gt;
*'''WHEN:'''  At noon on July 24th 2014&lt;br /&gt;
*'''WHERE:''' 75 Queen Street, office 3100, Montreal, QC H3C 2N6&lt;br /&gt;
*'''REGISTRATION:''' You can join us on site for a pizza slice but this is mainly an online event. Contact jonathan.marcil@owasp.org.&lt;br /&gt;
*'''WEBCAST:''' https://www.youtube.com/watch?v=6bp1NCLT-YQ&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/web-security-for-devops-the-glory-is-in-the-headers-by-jonathan-marcil&lt;br /&gt;
*'''EVENT SPONSOR:''' Pheromone http://www.pheromone.ca/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  12:00-12:10 Welcome and quick OWASP introduction&lt;br /&gt;
  12:10-13:10 Main presentation - &amp;quot;Web security for DevOps: the glory is in the headers&amp;quot; Jonathan Marcil&lt;br /&gt;
  13:10-... Open discussion and questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Logo-phero.gif‎|link=http://www.pheromone.ca/]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - June 18th - Gaps in the Clouds ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/gaps-in-the-clouds-by-robert-fritz]] [https://speakerdeck.com/owaspmontreal/gaps-in-the-clouds-by-robert-fritz See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Robert Fritz&lt;br /&gt;
*'''ABSTRACT:''' Cloud technology offers agility and scaling, and a chance to break away from legacy IT choices.  Unfortunately, skipping traditional IT activities often results in poorly patched systems, out of date firewalls, and overprovisioned entitlements wielded by admins whose “day job” is development.  Boundaries of accountability and responsibility amongst cloud providers and consumers are confusing, vague, and shift, making security difficult to manage.  In such an environment, a “BP-spill” event, where cost wins over safely safety, is likely.  This talk will dive down into the cracks between the layers of cloud, and share some of the exciting dirt we have seen and expect to see in coming years.”&lt;br /&gt;
*'''BIO:''' Robert Fritz has been practicing security his entire career. Rob started as an Air Force lieutenant at Langley AFB and later at the Pentagon in Washington DC, building and managing classified networks. Finding he was getting too far from technology after a brief stint flying, he left the military to get back to the tech, and built security tools for HP in their HP-Unix lab.  Over time he found himself in more and more security design discussions, so co-authored HP’s Commercial Application Threat Analysis Methodology, building an internal consulting practice at HP.  This quantitative approach, led to two pending patents, an external-facing consulting practice, and his contributions to NIST IR-7502, the Common Configuration Scoring System (CVSS follow-on).  He is the former lead editor for the Center for Internet Security’s HP-UX Benchmark, and current lead for the Android Benchmark.  Robert now works for Morgan Stanley as global head of the Strategic Consulting team in the Security Architecture group, and leads the team’s cloud and social-media security practices.&lt;br /&gt;
*'''WHEN:''' June 18th 2014&lt;br /&gt;
*'''WHERE:''' 700 Rue Wellington, Floor 2, Montreal, QC H3C 3S4&lt;br /&gt;
*'''REGISTRATION:''' http://owaspmtl18junems.eventbrite.ca&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/gaps-in-the-clouds-by-robert-fritz&lt;br /&gt;
*'''EVENT SPONSOR:''' Morgan Stanley http://www.morganstanley.com/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:30 Networking and Morgan Stanley Hosted Pizza and Soft Drinks&lt;br /&gt;
  18:30-18:45 OWASP Chapter &amp;amp; Morgan Stanley Welcome&lt;br /&gt;
  18:45-19:45 Main presentation - &amp;quot;Gaps in the Clouds&amp;quot; Robert Fritz&lt;br /&gt;
  19:45-20:00 Open discussion and questions&lt;br /&gt;
  20:00-...   Optional, informal networking at Aziatic - 626 rue Marguerite-d'Youville, Montréal, QC H3C 1W7&lt;br /&gt;
&lt;br /&gt;
[[Image:Morgan_Stanley_Historical_Logo.png|link=http://www.morganstanley.com/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - May 26th - Récapitulatif des challenges NorthSec ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/P8_V3RI1Ru4]] [https://youtu.be/P8_V3RI1Ru4 Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''PRÉSENTATEUR PRINCIPAL:''' Laurent Desaulniers&lt;br /&gt;
*'''RÉSUMÉ:''' Solutions de la compétition en sécurité NorthSec 2014 sur les sujets de  XXE + SSRF, WAF Bypass, Xpath Injection, DOM Injection, HTTP Only Flag bypass et contournement de captchas. Une bonne façon d'apprendre sur ces failles que vous étiez ou non un participant de la compétition.&lt;br /&gt;
*'''MESSAGE DU PRÉSENTATEUR:''' Vous voyez Rao dans votre soupe? Vous voulez une solution pour un XSS avec des cookies http only? Les captchas illisibles sont un problème? Assistez à la présentation de l'OWASP!&lt;br /&gt;
*'''BIO:''' Laurent Desaulniers est un passionné de sécurité informatique. Il a présenté au Hackfest, au colloque RSI, à OWASP et est challenge designer à NorthSec. M. Desaulniers détient les certifications CISSP, CISM, CISA et OSCP.&lt;br /&gt;
*'''QUAND:''' 26 mai à 18h00&lt;br /&gt;
*'''OÙ:''' Local PK-1140 - Pavillon Président-Kennedy 201, Avenue du Président-Kennedy, J2X 3Y7&lt;br /&gt;
*'''INSCRIPTION:''' https://www.eventbrite.ca/e/owasp-montreal-26-mai-recapitulatif-des-challenges-northsec-tickets-11724413035&lt;br /&gt;
*'''WEBCAST:''' https://www.youtube.com/watch?v=P8_V3RI1Ru4&lt;br /&gt;
*'''ÉQUIPE ACADÉMIQUE''' AGEEI-UQAM - http://www.ageei.org/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
&lt;br /&gt;
 18:00-18:30 Réseautage&lt;br /&gt;
 18:30-18:35 Mot de bienvenue par le leader du chapitre (Jonathan M.)&lt;br /&gt;
 18:35-19:30 Présentation principale : Récapitulatif des challenges NorthSec&lt;br /&gt;
 19:30-20:00 Période de questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Ageeilogo.jpg|200px|link=http://www.ageei.org/]]&lt;br /&gt;
[[Image:2397_nsec_Logo_500-250.png|200px|link=http://nsec.io/]]&lt;br /&gt;
&lt;br /&gt;
== Networking with infosec communities - April 21st ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''RÉSUMÉ:''' En collaboration avec Montréhack, mtlsec et NorthSec, nous organisons une soirée réseautage dans un pub du centre-ville. Du plaisir garanti avec les membres de plusieurs communautés infosec de Montréal!&lt;br /&gt;
&lt;br /&gt;
*'''ABSTRACT:''' In collaboration with Montréhack, mtlsec and NorthSec, we are organizing a networking evening in a pub downtown. Fun guaranteed with the other security communities in Montreal!&lt;br /&gt;
&lt;br /&gt;
*'''QUAND:''' 21 Avril 2014&lt;br /&gt;
*'''WHEN:''' April 21st 2014&lt;br /&gt;
&lt;br /&gt;
*'''OÙ/WHERE:''' BENELUX - Brasserie Artisanale 245 Sherbrooke St W Montreal, QC H2X 1X7&lt;br /&gt;
&lt;br /&gt;
*'''INSCRIPTION/REGISTRATION:''' https://www.eventbrite.ca/e/montrehack-avril-april-northsec-pre-party-tickets-11232307133&lt;br /&gt;
&lt;br /&gt;
*'''PARTENAIRES/PARTNERS:''' Montréhack http://montrehack.ca/ - mtlsec http://blog.mtlsec.com/ - NorthSec https://www.nsec.io/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
  18:00-21:00 Networking&lt;br /&gt;
  21:00-23:59 Remember to drink responsibly!&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - March 27th - Panel Compétition en sécurité NorthSec ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Présentation sous forme de panel - venez poser vos questions!'''&lt;br /&gt;
&lt;br /&gt;
*'''RÉSUMÉ:''' Les compétitions de type Capture the Flag (CTF) sont un moyen pour les professionnels et amateurs de sécurité informatique de mettre leurs talents à l'épreuve. NorthSec est une compétition Montréalaise annuelle en sécurité appliquée, qui aura lieu cette année au Marché Bonsecours de Montréal le 25, 26 et 27 avril prochain. Elle vise à augmenter le niveau technique des professionnels de la sécurité au Québec, ainsi que de permettre à ses acteurs les plus talentueux de se démarquer.&lt;br /&gt;
*'''DÉTAILS:''' Le panel de jeudi, sous la forme d'un échange convivial entre les organisateurs de l'évènement et de ses participants, abordera des thèmes variés comme l'écriture de bon défis, l'infrastructure, la logistique, les inattendus, un bilan de 2013 et tout ça en passant par de savoureuses annecdotes (on l'espère). Venez en grand nombre toucher à ces légendes de la scène infosec montréalaise!&lt;br /&gt;
*'''PANÉLISTES:''' Gabriel Tremblay, François Proulx, Laurent Desaulniers, Stéphane Graber&lt;br /&gt;
*'''ANIMATEUR:''' Olivier Bilodeau&lt;br /&gt;
*'''QUAND:''' 27 mars 2014&lt;br /&gt;
*'''OÙ:''' Salle M-1510, École Polytechnique de Montréal, 2500 chemin de Polytechnique, Montréal (Québec) H3T 1J4, pavillon Lassonde&lt;br /&gt;
*'''INSCRIPTION:''' https://www.eventbrite.ca/e/owasp-montreal-27-mars-panel-competition-en-securite-northsec-tickets-10918436337&lt;br /&gt;
*'''ÉQUIPE ACADÉMIQUE:''' Polytechnique - Polyhack http://polyhack.org/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Mot de bienvenue par le leader du chapitre (Jonathan Marcil)&lt;br /&gt;
  18:30-20:00 Présentation principale : Panel NorthSsec&lt;br /&gt;
&lt;br /&gt;
[[Image:Polyhack.png‎‎|200px|link=http://polyhack.org/]]&lt;br /&gt;
[[Image:LogoPolytechnique.gif|link=http://www.polymtl.ca/]]&lt;br /&gt;
[[Image:2397_nsec_Logo_500-250.png|200px|link=http://nsec.io/]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - February 25th - Proven Strategies for Web Application Security ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/proven-strategies-for-web-application-security-by-justin-c-klein-keane]] [https://speakerdeck.com/owaspmontreal/proven-strategies-for-web-application-security-by-justin-c-klein-keane See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Justin C. Klein Keane&lt;br /&gt;
*'''ABSTRACT:''' The rising dominance of the web as an application delivery platform has focused attacker attention squarely on the security of dynamic web applications. Application security is a complex, and shifting, field. Learn about tested and successful techniques to build safer applications, find flaws before they become vulnerabilities, and deploy applications that can detect, and resist attack.&lt;br /&gt;
*'''BIO:''' Justin C. Klein Keane is a security engineer and chapter leaders of OWASP in Philadelphia. For over a decade Justin has worked as a trainer, coder, and exploit developer. Justin is currently writing a book for NoStarch Press on hacking, speaks regularly at conferences, holds a masters degree in information technology from the University of Pennsylvania and is credited with hundreds of application vulnerability discoveries.&lt;br /&gt;
*'''WHEN:''' February 25th 2014&lt;br /&gt;
*'''WHERE:''' Ecole de technologie superieure, 1100 Notre-Dame Street West, Montreal, Room: A-1150&lt;br /&gt;
*'''REGISTRATION:''' http://owaspmtljan2014.eventbrite.ca&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/proven-strategies-for-web-application-security-by-justin-c-klein-keane&lt;br /&gt;
*'''ACADEMIC PARTNER:''' ETS - DCI http://dciets.com/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Welcome speech by Chapter Leader (Jonathan Marcil)&lt;br /&gt;
  18:30-20:00 Main session and open discussion: Proven Strategies for Web Application Security&lt;br /&gt;
  20:00-...   End of the meeting in a pub&lt;br /&gt;
&lt;br /&gt;
[[Image:Dciets.png‎‎‎|100px|link=http://dciets.com/]]&lt;br /&gt;
[[Image:Logo_ets.png|link=http://www.etsmtl.ca/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - January 28th - Latest trends in Mobile Security ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/8qPyKj4FKgY]] [https://youtu.be/8qPyKj4FKgY Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/latest-trends-in-mobile-security-by-francois-proulx]] [https://speakerdeck.com/owaspmontreal/latest-trends-in-mobile-security-by-francois-proulx See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Francois Proulx&lt;br /&gt;
*'''ABSTRACT:''' Last AppSecUSA 2013 had a great line up of talks, especially regarding mobile applications. This session will be covering all the hottest presentations about mobile security by doing an overview from what see saw at AppSecUSA, all with some slides and snippets of presentations that was recorded at the event. Discussion will be encouraged within the audience as this will be more a dynamic event than a regular talk.&lt;br /&gt;
*'''BIO:''' François Proulx is a senior mobile application developer who has worked on dozens of iOS applications since the very beginning of the Apple iOS platform. Over the past few years he has switched his focus to security. He spends a lot of his free time participating in Capture the Flag events (CTFs) and organizing the NorthSec security competition.&lt;br /&gt;
*'''WHEN:''' January 28th 2014&lt;br /&gt;
*'''WHERE:''' UQAM Room PK-1705, Pavillon Président-Kennedy (the big boat at Place des Arts) - 201 Avenue du Président-Kennedy  J2X 3Y7&lt;br /&gt;
*'''REGISTRATION:''' http://owaspmtl-mobilesecurity.eventbrite.ca&lt;br /&gt;
*'''SLIDES/CONTENT:''' [http://www.youtube.com/playlist?list=PLQtB2ug5xmvaQ9jeRWV53-F_T555GQfhW YouTube playlist]&lt;br /&gt;
*'''SPONSOR:''' Academic partner AGEEI-UQAM - http://www.ageei.org/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Welcome speech by Chapter Leader (Jonathan M.)&lt;br /&gt;
  18:30-20:00 Main session and open discussion: Mobile Security&lt;br /&gt;
  20:00-...   End of the meeting in a pub&lt;br /&gt;
&lt;br /&gt;
[[Image:Ageeilogo.jpg|200px|link=http://www.ageei.org/]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Presentations For Download  ====&lt;br /&gt;
&lt;br /&gt;
[http://www.owasp.org/images/0/0d/20100209mstechdaysowaspasvssgiv01-12657916463819-phpapp02.ppt OWASP ASVS] by Sebastien Gioria (09/03/2010) &lt;br /&gt;
&lt;br /&gt;
[http://www.ph-il.ca/slides/afup__authetification_forte.pdf Authentification Forte] by Philippe Gamache (02/02/2010) &lt;br /&gt;
&lt;br /&gt;
[http://www.opensamm.org/downloads/OpenSAMM-1.0.ppt Software Assurance Maturity Model (OpenSAMM)] by Pravir Chandra (03/11/2009) &lt;br /&gt;
&lt;br /&gt;
[http://www.owasp.org/images/d/de/Owasp-montreal-sept-17h-2009-justin-foster.pdf Crossing the Border – Javascript Exploits] by Justin Foster (17/09/2009) &lt;br /&gt;
&lt;br /&gt;
[http://www.owasp.org/images/c/c2/ALaughRIAt.pdf A Laugh RIAt] by Rafal Los (07/04/2009) &lt;br /&gt;
&lt;br /&gt;
[https://www.owasp.org/images/e/eb/OWASP-Montreal-24022009-RobLabbe.pptx Microsoft Security Development Lifecycle for IT] by Rob Labbe (24/02/2009) &lt;br /&gt;
&lt;br /&gt;
[https://www.owasp.org/images/3/39/OWASP-Montreal-24022009-EN.pdf OWASP Goal and Top Ten 2007 for Managers - French version] by Benoit Guerette (24/02/2009)&lt;br /&gt;
&lt;br /&gt;
Newer presentations are available on [https://speakerdeck.com/owaspmontreal Speaker Deck]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Circle_owasp_logo_nowhitebackground.png|200px]]&lt;br /&gt;
&lt;br /&gt;
= OWASP Foundation / Mission OWASP    = &lt;br /&gt;
OWASP Foundation ([https://docs.google.com/a/owasp.org/presentation/d/10wi1EWFCPZwCpkB6qZaBNN8mR2XfQs8sLxcj9SCsP6c/edit?usp=sharing Overview Slides]) is a professional association of [[Membership | global members]] and is open to anyone interested in learning more about software security. Local chapters are run independently and guided by the [[Chapter_Leader_Handbook]].  As a [[About_OWASP | 501(c)(3)]] non-profit professional association your support and sponsorship of any meeting venue and/or refreshments is tax-deductible. Financial contributions should only be made online using the authorized online chapter donation button.  To be a &amp;lt;b&amp;gt;SPEAKER&amp;lt;/b&amp;gt; at ANY OWASP Chapter in the world simply review the [[Speaker_Agreement | speaker agreement]] and then contact the local chapter leader with details of what OWASP PROJECT, independent research or related software security topic you would like to present on.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;La fondation OWASP est une [https://www.owasp.org/index.php/Membership association de professionnels] et elle est ouverte à tout intervenant intéressé à en apprendre davantage sur la sécurité applicative. Les chapitres locaux (dont celui de Montréal) sont gérés de façon indépendante et selon un [https://www.owasp.org/index.php/Chapter_Leader_Handbook manuel de directives à respecter].   &lt;br /&gt;
Toute contribution financière au chapitre peut être faite en ligne en utilisant l’icône prévu à cet effet. Pour être conférencier au sein de n’importe quel chapitre à l’échelle mondiale, vous n’avez qu’à prendre connaissance du document [https://www.owasp.org/index.php/Speaker_Agreement &amp;quot;entente avec les conférenciers – speaker agreement&amp;quot;] et à joindre le responsable du chapitre Montréal avec un descriptif du sujet que vous aimeriez aborder et s’il est relié à un projet OWASP, à de la recherche indépendante ou encore le sujet en particulier, concernant la sécurité applicative, que vous souhaitez aborder.&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== [[Image:Circle_owasp_logo_nowhitebackground.png|128px]] Montreal OWASP Team == &lt;br /&gt;
&lt;br /&gt;
Scope of the team is to discuss and plan local activities and meetings &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Chapter Leaders ===&lt;br /&gt;
&lt;br /&gt;
* [mailto:anne.gauthier@owasp.org Anne Gauthier], President/Présidente&lt;br /&gt;
* [mailto:michel.bourque{at}owasp.org Michel Bourque], Chapter coordinator and marketing manager/Coordination et Marketing&lt;br /&gt;
* [mailto:hugo.genesse(at)owasp.org Hugo Genesse], Web content and production manager/Site internet et Production &lt;br /&gt;
* [mailto:olivier.arteau(at)owasp.org Olivier Arteau], Logistic manager/Logistique&lt;br /&gt;
&lt;br /&gt;
==== Chapter leader history ====&lt;br /&gt;
*2008-2010 - Benoit Guerette, founder and chapter leader&lt;br /&gt;
*2011-2012 - Philippe Gamache, chapter leader (vice chapter-leader since 2010)&lt;br /&gt;
*2013-2015 - Jonathan Marcil, chapter leader&lt;br /&gt;
*2016-... - Anne Gauthier, Michel Bourque, Marius Popescu, Hugo Genesse, Olivier Arteau&lt;br /&gt;
&lt;br /&gt;
==== Old board members ====&lt;br /&gt;
*Philippe Pépos Petitclerc&lt;br /&gt;
*Michael Robillard&lt;br /&gt;
*Benoit Guerette (logistics 2015)&lt;br /&gt;
*Alexandre Rimthong&lt;br /&gt;
*Mathieu Binette&lt;br /&gt;
*Sean Coates&lt;br /&gt;
*Jean-Marc Robert&lt;br /&gt;
*Philippe Blondin&lt;br /&gt;
*Benoit Guerette (founder)&lt;br /&gt;
*Laurent Desaulniers&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;headertabs&amp;gt;&amp;lt;/headertabs&amp;gt; &lt;br /&gt;
__NOTOC__ &lt;br /&gt;
[[Category:Canada]]&lt;/div&gt;</summary>
		<author><name>Svieg</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=File:Owasp-avril-2018-2.JPG&amp;diff=240665</id>
		<title>File:Owasp-avril-2018-2.JPG</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=File:Owasp-avril-2018-2.JPG&amp;diff=240665"/>
				<updated>2018-05-13T02:24:47Z</updated>
		
		<summary type="html">&lt;p&gt;Svieg: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Svieg</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=File:Owasp-avril-2018.JPG&amp;diff=240664</id>
		<title>File:Owasp-avril-2018.JPG</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=File:Owasp-avril-2018.JPG&amp;diff=240664"/>
				<updated>2018-05-13T02:24:08Z</updated>
		
		<summary type="html">&lt;p&gt;Svieg: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Svieg</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=Montr%C3%A9al&amp;diff=238350</id>
		<title>Montréal</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=Montr%C3%A9al&amp;diff=238350"/>
				<updated>2018-03-05T18:33:45Z</updated>
		
		<summary type="html">&lt;p&gt;Svieg: reorganise the folder and add presentation&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Welcome &amp;amp; Bienvenue to the OWASP Montréal chapter ==&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:OWASP-Montreal-Logo.png|Logo OWASP Montréal]]&lt;br /&gt;
&lt;br /&gt;
The OWASP Foundation was established in 2001 as an open community and software security resource. Since then, OWASP has grown to be globally recognized as a credible source for application security standards. &amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
OWASP is an open community dedicated to enabling organizations to conceive, develop, acquire, operate, and maintain applications that can be trusted. All of the OWASP tools, documents, forums, and chapters are free and open to anyone interested in improving application security. We advocate approaching application security as a people, process, and technology problem because the most effective approaches to application security include improvements in all of these areas. &amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
OWASP is open to anyone. Anyone can attend OWASP's vendor agnostic local chapter meetings, participate in regional and global conferences, and contribute to the many OWASP projects. And anyone can start a new project, form a new chapter, or lend their expertise to help an OWASP Global Committee.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt;On parle français aussi ! Le chapitre de Montréal organise plusieurs activités gratuites afin de partager les connaissances en sécurité applicative avec la communauté de développeurs et gestionnaires. Suivez-nous sur les réseaux sociaux pour connaître les dates des conférences du midi et des workshops !&amp;lt;/b&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Top documentation from OWASP includes: &lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/index.php/Top_10_2013-Top_10 OWASP TOP 10 : The Ten Most Critical Web Application Security Risks]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/images/3/33/OWASP_Application_Security_Verification_Standard_3.0.1.pdf OWASP ASVS : Application Security Verification Standard]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/images/5/52/OWASP_Testing_Guide_v4.pdf OWASP Testing Guide : Penetration Testing Framework]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/images/7/78/OWASP_AlphaRelease_CodeReviewGuide2.0.pdf OWASP Code Review Guide : Source Code Analysis Framework]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/index.php/OWASP_Cheat_Sheet_Series OWASP Cheat Sheet : Best practices guidelines for developers]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org OWASP Global]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Chapter Leaders / Responsables du chapitre ===&lt;br /&gt;
&lt;br /&gt;
* [mailto:anne.gauthier@owasp.org Anne Gauthier], President/Présidente&lt;br /&gt;
* [mailto:michel.bourque{at}owasp.org Michel Bourque], Chapter coordinator and marketing manager/Coordination et Marketing&lt;br /&gt;
* [mailto:hugo.genesse(at)owasp.org Hugo Genesse], Web content and production manager/Site internet et Production &lt;br /&gt;
* [mailto:olivier.arteau(at)owasp.org Olivier Arteau], Logistic manager/Logistique&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt; Volunteers / Volontaires OWASP Montréal: &amp;lt;/b&amp;gt;&lt;br /&gt;
* Simon Lacasse, Web content / Site internet&lt;br /&gt;
* Julien Touche, Logistique&lt;br /&gt;
* Jean-François Gill&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;b&amp;gt; Reach our chapter / Joindre le chapitre &amp;lt;/b&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Follow OWASP's Montreal chapter's activities through social medias, register to events, watch the previous presentations and more! &lt;br /&gt;
&lt;br /&gt;
Suivez les activités du chapitre OWASP Montréal via les réseaux sociaux, inscrivez-vous aux activités, visualisez les anciennes présentations et plus encore! &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;b&amp;gt;[http://lists.owasp.org/mailman/listinfo/owasp-montreal Click here] to join the local chapter mailing list.&lt;br /&gt;
&amp;lt;br /&amp;gt;[http://lists.owasp.org/mailman/listinfo/owasp-montreal Inscrivez-vous ici] à la liste de courriels du chapitre afin de recevoir les dernières nouvelles!&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Want to be part of the community ? &lt;br /&gt;
Devenez membre de notre communauté ! &lt;br /&gt;
[https://www.owasp.org/index.php/Membership_Map Click here / Cliquer ici]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Eb_press_little.gif‎|OWASP Montreal Eventbrite|link=http://owaspmontreal.eventbrite.ca/]] &lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[Image:Yt-brand-standard-logo-630px.png‎|128px|YouTube OWASP Montreal Channel|link=http://www.youtube.com/owaspmontreal]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]   &lt;br /&gt;
[[Image:Speakerdecklogo.png‎|Slides of OWASP Montreal on SpeakerDeck |link=https://speakerdeck.com/owaspmontreal]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Twitter-bird-cropped-onwhite.png|@owaspmontreal on Twitter|link=https://twitter.com/owaspmontreal]]&lt;br /&gt;
[[Image:FacebookSquareLogo.png|OWASP Montreal Facebook page|link=https://www.facebook.com/owasp.montreal]]&lt;br /&gt;
[[Image:LinkedinSquareLogo.png|OWASP Montreal on LinkedIn|link=https://www.linkedin.com/groups/1379007/profile]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
&lt;br /&gt;
== What we do / Nos activités ==&lt;br /&gt;
&lt;br /&gt;
OWASP Montreal is a really active chapter. We organize monthly conferences and workshops. All our events are free and meant to improve the knowledge and awareness of the community's developers, managers and computer security specialists. To be aware of the next event and for additional information, follow us on social medias. &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
OWASP Montréal est un des chapitres les plus actifs. Nous organisons mensuellement des ateliers et conférences. Tous nos événements sont gratuits et ont pour but d'améliorer les connaissances de la communauté. Ils s'adressent donc autant aux gestionnaires qu'aux développeurs et aux spécialistes en sécurité informatique. Pour plus d'informations sur nos activités et pour être au courant des prochaines dates d'événement, suivez nous sur les réseaux sociaux. &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;We also contribute to the vast OWASP knowledge base / Nous contribuons aussi aux ressources d'OWASP&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We list here the projects that were started by our members under OWASP's banner. &amp;lt;br /&amp;gt;&lt;br /&gt;
Nous listons ici les projets commencé par nos membres sous la banière d'OWASP. &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/index.php/Vulnerability_Disclosure_Cheat_Sheet Vulnerability Disclosure Cheat Sheet]&lt;br /&gt;
&lt;br /&gt;
== Sponsorship &amp;amp; Membership / Commandite &amp;amp; Adhésion ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Btn_donate_SM.gif|link=http://www.regonline.com/donation_1044369]] to this chapter or become a local chapter supporter.&lt;br /&gt;
&lt;br /&gt;
Or consider the value of [[Membership | Individual, Corporate, or Academic Supporter membership]]. Ready to become a member? [[Image:Join_Now_BlueIcon.JPG|75px|link=https://myowasp.force.com/]]&lt;br /&gt;
&lt;br /&gt;
[http://www.regonline.com/donation_1044369 Donnez] au chapitre ou devenez commanditaire du chapitre local! &lt;br /&gt;
&lt;br /&gt;
[https://myowasp.force.com/ Devenez membre !] Pour en savoir davantage sur les avantages d’une adhésion individuelle, corporative ou en tant qu’institution d’enseignement, [https://www.owasp.org/index.php/Membership cliquez ici]. &lt;br /&gt;
&lt;br /&gt;
[[Category:OWASP Chapter]]&lt;br /&gt;
&lt;br /&gt;
== Chapter Supporters / Commanditaires du chapitre ==&lt;br /&gt;
&lt;br /&gt;
[https://www.owasp.org/images/9/91/OWASP_Membership_Flyer_Montreal.png All details available here / Pour tous les détails] [[File:Chapter-supporter-owasp-montreal.png|200px|link=]] &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Platinum / Platine ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Gosecure-2.png|GoSecure|link=http://www.gosecure.ca/]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[File:Desjardins2-400x400.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Gold / Or ===&lt;br /&gt;
&lt;br /&gt;
[[Image:PM_SCADA_Logo_Gris_Cybersecurite_FR.png|PM SCADA|link=http://pmscada.ca/en/]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Lunch &amp;amp; Learn / Workshops 2018 =&lt;br /&gt;
&lt;br /&gt;
== Operate PCI DSS infrastructure using DevOps approach ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Owasp-montreal-pci-dss-r.jpg  ]]&lt;br /&gt;
[[Image:Owasp-montreal-pci-dss-2-r.jpg ]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/owasp-operate-pcidss-infrastructure-using-devops-approch-dot-pptx-1]] [https://speakerdeck.com/owaspmontreal/owasp-operate-pcidss-infrastructure-using-devops-approch-dot-pptx-1 See the slides / Voir la présentation]&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 March 5 2018&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
OWASP dans le cadre des Midis conférence est heureux d'accueillir, M. Gaëtan Trivino.&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Notre conférencier viendra présenter l'influence de la culture devops sur les opérations d'un hébergeur international en particulier pour supporter les réglementations comme PCI DSS.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Biographie :&amp;lt;br /&amp;gt;&lt;br /&gt;
Gaëtan est DevOps technical leader orienté cloud et automatisation réseau. Il a traversé l'Atlantique avec sa famille pour explorer de nouvelles culture de travail et se lance dans la recherche du meilleur sirop d'érable!&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Lunch &amp;amp; Learn / Workshops 2015-2017 =&lt;br /&gt;
&lt;br /&gt;
== Pourquoi un hacker peut-il contourner les mesures et solutions de sécurité... ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hamilton-septembre-2017-1.JPG  ]]&lt;br /&gt;
[[Image:Hamilton-septembre-2017-2.JPG ]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/endpoint-bypass-charles-hamilton]] [https://speakerdeck.com/owaspmontreal/endpoint-bypass-charles-hamilton See the slides / Voir la présentation]&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 September 18th 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
OWASP dans le cadre des Midis conférence est heureux de lancer la saison 2017-2018 en accueillant, M. Charles F. Hamilton.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Notre conférencier viendra brosser un tableau des différents éléments qui expliquent pourquoi les mesures et les solutions de sécurité en générales qui ont la fonction de protéger les données, les applications, les réseaux ou les équipements critiques sont si souvent contournées ou carrément inefficaces contre les attaques ciblées.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Biographie :&amp;lt;br /&amp;gt;&lt;br /&gt;
Charles F. Hamilton est un consultant en sécurité et membre d’équipe « Red Team » de calibre international. Il se spécialise en test d’intrusion et la recherche de solution proactive de sécurité.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Cas d'attaques vécus : Internet des objets (IOT) - Attaques DDoS ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Cas_dattaques_vecus-r.jpg  ]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 June 19th 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
Pour clore la saison printanière 2017, OWASP Montréal est fier d'accueillir au Midi Conférence, M. Christian Shink qui fera un survol de cas d'attaques vécus, des techniques utilisées et des acteurs impliqués dans ces attaques.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
L'incorporation généralisée de dispositifs «intelligents» dans les objets de la vie de tous les jours modifie la façon dont les gens et les machines interagissent les uns avec les autres. Cette incorporation offre une promesse d'une meilleure qualité de vie, une meilleure efficacité. En contrepartie, leur déploiement introduit également des vulnérabilités à la fois dans l'infrastructure qu'ils soutiennent et sur lesquels ils comptent, ainsi que dans les processus qu'ils guident. Que ce soit au niveau applicatif ou des infrastructures, ces vulnérabilités sont exploitées par des acteurs malicieux pour générer des attaques de déni de service massives et sophistiquées. Nous tenterons également de tirer des leçons afin de tenter de minimiser ce type d'attaques dans le futur.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Christian Shink possède plus d’une dizaine d’années d’expérience en développement et sécurité d’applications. Avant de se joindre à Radware, Christian était à l’emploi d'une firme conseil où il a conseillé de nombreuses entreprises, dont de grandes banques américaines et Casinos. Il détient une certification CSSLP et est membre de l'ordre des ingénieurs du Québec.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== HOW TO! Threat Modeling Toolkit ==&lt;br /&gt;
&lt;br /&gt;
[[Image:OWASPMtl-JonathanMarcil-1.jpg]]&lt;br /&gt;
[[Image:OWASPMtl-JonathanMarcil-3.jpg]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/threat-modeling-toolkit]] [https://speakerdeck.com/owaspmontreal/threat-modeling-toolkit See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 May 23rd, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Shopify Montreal&lt;br /&gt;
&lt;br /&gt;
Threat Modeling is a great way to analyze security early in software development by structuring possible attacks, bad actors and countermeasures over a broad view of the targeted system. This talk will describe basic components of a threat model and how to use them effectively.&lt;br /&gt;
Threat Intelligence is where you gather knowledge about the environment and business assets to determine what are the actual threats. But how do you reconcile that with the current architecture in a useful manner?&lt;br /&gt;
The toolkit presented in this talk will enable you to systematically structure related information using graphical notations such as flow diagram and attack tree. In case you are wondering where to start in your organization, a quick lightweight risk rating methodology will also be proposed.&lt;br /&gt;
And in the end, you’ll see how we can all tie those together and get threat modeling to a point where it’s an efficient application security activity for communication. Doing this will prevent security reviews from missing important things even when chaos prevails during the realization of a project.&lt;br /&gt;
Modeling concepts will be demonstrated with an actual IoT device used as example.&lt;br /&gt;
Presentation will be done in english.&lt;br /&gt;
&lt;br /&gt;
Speaker Bio:&lt;br /&gt;
Jonathan Marcil is the former chapter leader of OWASP Montreal and is now Senior Application Security Engineer at Blizzard Entertainment in beautiful Orange County, California.&lt;br /&gt;
Jonathan has been involved with OWASP for many years and has been behind the Media Project which gathered and promoted AppSec conferences video content in the official OWASP YouTube channel. He was also part of NorthSec CTF event as a challenge designer specialized in Web and imaginative contraptions.&lt;br /&gt;
He is passionate about Application Security and enjoys architecture analysis, code review, threat modeling and debunking security tools. He holds a diploma in Software Engineering from ÉTS Montreal and has more than 15 years of experience in Information Technology and Security.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Merci à nos précieux commanditaires !&lt;br /&gt;
&lt;br /&gt;
== Security Testing: Unlocking the Benefits of a Hybrid Approach ==&lt;br /&gt;
[[Image:Security testing hybrid approach-r 3.jpg    ]]&lt;br /&gt;
[[Image:Security testing hybrid approach-r 4.jpg    ]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/hybrid-approach-to-security-testing]] [https://speakerdeck.com/owaspmontreal/hybrid-approach-to-security-testing See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 April 24th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
As part of their defensive efforts, businesses commonly commission cybersecurity assessments of their web applications; with the aim of identifying any weaknesses in the security controls and ensuring a continually strong cybersecurity posture of their systems.&lt;br /&gt;
&lt;br /&gt;
The classical approach of either secure code review (white box) or penetration testing (black box) assessment have proven to be effective in securing of web applications. The new trend, however, is moving towards the combination of these two approaches; expert consensus is rapidly recognizing the advantages of using a hybrid approach. When applied properly, a hybrid approach can build on the strengths of both white and black box testing, while compensating for their individual shortcomings.&lt;br /&gt;
&lt;br /&gt;
In this presentation, we will examine the details of secure code review and penetration testing, and run demos to contrast their respective strengths and weaknesses. We will also examine why a hybrid approach can produce more complete and relevant assessment results. To conclude, we will cover proven approaches, and practical techniques, on how you can start leveraging a hybrid approach to web application assessments today.&lt;br /&gt;
&lt;br /&gt;
Anne Gauthier is an application security analyst at GoSecure. Anne is also the president of the Montreal Chapter of OWASP – the industry standard for web application security. With a penetration testing background, she specializes in secure code reviews and in helping companies to improve their software development lifecycle (SDLC) according to industry best practices. Anne is CSSLP, GWAPT and GSSP-JAVA certified. She obtained a Software Engineering bachelor’s degree from Ecole de Technologie Supérieure in Montréal and is now pursuing a Master of Engineering (MEng) degree in Information Systems Security at Concordia University. She is the author of the Project 201 Security blog.&lt;br /&gt;
&lt;br /&gt;
Merci à nos précieux commanditaires !&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;HOW-TO&amp;quot; NIGHT ! Tout sur les CTFs (Capture The Flag) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Howto_ctf.jpg]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://docs.google.com/presentation/d/1zEsCcX-Nvq8Nz0k-B1zHejCDNT2oGZx8oUBgMbvvMM0/edit#slide=id.p ]] [https://docs.google.com/presentation/d/1zEsCcX-Nvq8Nz0k-B1zHejCDNT2oGZx8oUBgMbvvMM0/edit#slide=id.p See the slides / Voir la présentation (Laurent Desaulniers)]&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://docs.google.com/presentation/d/1c1P1d2mKe767j1Y0V9cK6De5cpnK4I7GI-ORiodbg1A/edit#slide=id.p ]] [https://docs.google.com/presentation/d/1c1P1d2mKe767j1Y0V9cK6De5cpnK4I7GI-ORiodbg1A/edit#slide=id.p See the slides / Voir la présentation (Charles Hamilton)]&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=http://obilodeau.github.io/slides/2017-04-04_how-not-to-suck-at-ctfs/ ]] [http://obilodeau.github.io/slides/2017-04-04_how-not-to-suck-at-ctfs/ See the slides / Voir la présentation (Olivier Bilodeau)]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 April 4th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Shopify&lt;br /&gt;
&lt;br /&gt;
Cette nouvelle soirée &amp;quot;How-To&amp;quot; Night d'OWASP Montréal vise à présenter les CTFs (une compétition Capture The Flag) et aider les équipes à démarrer et à continuer à évoluer dans leurs pratique de la cyber sécurité pratique. L'objectif est d'outiller les participants en leur fournissant des ressources techniques et des contacts afin de les aider à progresser.&lt;br /&gt;
&lt;br /&gt;
Les éléments discutés seront:&lt;br /&gt;
&lt;br /&gt;
- Composition optimale d’une équipe : Fonctionnement d’une équipe de CTF et les principaux rôles (chef d’équipe, cryptographie, application web, rétro ingénierie et les causes perdues).&lt;br /&gt;
&lt;br /&gt;
- Pourquoi faire des CTFs? Discussion sur les différents styles (jeopardy, attack/defense, etc.), quels sont les problèmes fréquemments rencontrés + plusieurs anecdotes intéressantes (et drôles).&lt;br /&gt;
&lt;br /&gt;
- Trucs de Mr. Unikoder : Le créateur du fameux site ringzer0team, soit un des plus gros sites pour apprendre la résolution de problèmes de CTF (https://ringzer0team.com/) Apprenez des trucs du meilleur, sur comment débuter et interpréter un challenge web, binaire et crypto avec des trucs réels du métier.&lt;br /&gt;
&lt;br /&gt;
Matériel requis :&lt;br /&gt;
&lt;br /&gt;
    Votre légendaire enthousiasme&lt;br /&gt;
&lt;br /&gt;
Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
&lt;br /&gt;
Places limitées. Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Shopify pour l'événement.&lt;br /&gt;
&lt;br /&gt;
Présentateurs :&lt;br /&gt;
&lt;br /&gt;
Charles Hamilton, Senior Consultant chez Mandiant, FireEye, Inc.&lt;br /&gt;
&lt;br /&gt;
Olivier Bilodeau, Cybersecurity Research Lead at GoSecure&lt;br /&gt;
&lt;br /&gt;
Laurent Desaulniers, Senior Security Solution Specialist at Bell Canada&lt;br /&gt;
&lt;br /&gt;
== NorthSec - Applied Security Event ==&lt;br /&gt;
[[Image:Nsec_2017_midi_conf.jpg]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/northsec-applied-security-event]] [https://speakerdeck.com/owaspmontreal/northsec-applied-security-event See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 April 4th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
NorthSec: La plus grande compétition et conférence en cyber sécurité au Canada&lt;br /&gt;
&lt;br /&gt;
NorthSec est un organisme sans but lucratif qui organise une conférence et une compétition de sécurité de type &amp;quot;Capture-The-Flag&amp;quot; (CTF) et des formations. Avec plus de 400 participants présents sur le site pour la compétition, c’est la plus grande compétition du genre au monde.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
La conférence, dans sa 3e année, attire des présentateurs internationaux avec du contenu technique exclusif. L’ajout des séances de travail (workshops) devrait plaire aux plus chevronnés des binaires.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Des formations de 3 jours sont offertes avant la conférence: &amp;quot;Advanced Web Application Security&amp;quot; par Philippe Arteau et &amp;quot;Malware and Memory Forensics&amp;quot; par Michael Ligh, co-auteur des livres &amp;quot;Malware Analyst Cookbook&amp;quot; et &amp;quot;The Art of Memory Forensics&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
NorthSec est situé au Marché Bonsecours dans le Vieux-Port de Montréal au printemps du 15 au 21 mai 2017.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
La présentation couvrira:&lt;br /&gt;
&lt;br /&gt;
- Le plan pour 2017&amp;lt;br /&amp;gt;&lt;br /&gt;
- Ce qui différencie NorthSec&amp;lt;br /&amp;gt;&lt;br /&gt;
- Comment équilibrer une compétition pour les débutants et les experts&amp;lt;br /&amp;gt;&lt;br /&gt;
- Comment bâtir une infrastructure basée sur les conteneurs qui gère 50 équipes dans quelques serveurs sans qu’ils ne se partagent de machines virtuelles&amp;lt;br /&amp;gt;&lt;br /&gt;
- Comment faire du pain au levain à grande échelle&amp;lt;br /&amp;gt;&lt;br /&gt;
- Présentation de quelques défis et solutions&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Les présentateurs:&lt;br /&gt;
&lt;br /&gt;
- Gabriel Tremblay, Président, Delve Labs&amp;lt;br /&amp;gt;&lt;br /&gt;
- Olivier Bilodeau, VP Formations, Co-fondateur MontréHack, GoSecure&amp;lt;br /&amp;gt;&lt;br /&gt;
- Pierre-David Oriol, VP Conférences, Delve Labs&amp;lt;br /&amp;gt;&lt;br /&gt;
- Benoit Guérette, VP Partenaires, Desjardins&amp;lt;br /&amp;gt;&lt;br /&gt;
- Laurent Desaulniers, Tisserand de drapeaux, Bell Canada&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Merci à nos précieux commanditaires !&lt;br /&gt;
&lt;br /&gt;
== Sécurité des applications : Les fondements ==&lt;br /&gt;
[[Image:Tanya.jpeg]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/securite-des-applications-les-fondements]] [https://speakerdeck.com/owaspmontreal/securite-des-applications-les-fondements See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 March 20th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
OWASP Montréal est fier d’accueillir au Midi Conférence du mois de mars, Mme Tanya Janca, Co-Leader du chapitre OWASP Ottawa et spécialiste de la sécurité applicative au sein du Gouvernement fédéral.&lt;br /&gt;
&lt;br /&gt;
La conférence « Les fondements de la sécurité des applications » sera présentée en anglais.&lt;br /&gt;
&lt;br /&gt;
Session Description : Everyone has heard about the problem; everyone is “getting hacked”. But what is the answer? From scanning your code with a vulnerability scanner to red teaming exercises, developer education programs and bug bounties, this talk will take the audience through all the possibilities of an extensive application security program, with a detailed explanation of each part.&lt;br /&gt;
&lt;br /&gt;
Bio : Tanya Janca is an application security evangelist, a web application penetration tester and vulnerability assessor, a secure code reviewer, an ethical hacker, the Co-Leader of the OWASP Ottawa chapter, and has been developing software since the late 90’s. She has worn many hats and done many things, including; Custom Apps, Ethical Hacking, COTS, Incident Response, Enterprise Architect, Project and People Management, and even Tech Support. She is currently helping the Government of Canada secure their web applications.&lt;br /&gt;
&lt;br /&gt;
Merci à notre commanditaire principal de cet événement: Ubitrak!&lt;br /&gt;
&lt;br /&gt;
== WORKSHOP ! Server Side Template Injection (SSTI) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-okiok-SSTI-r.jpg | WORKSHOP ! Server Side Template Injection (SSTI) ]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/workshop-server-side-template-injection-ssti]] [https://speakerdeck.com/owaspmontreal/workshop-server-side-template-injection-ssti See the slides / Voir la présentation]&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 22 Février 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Shopify Montréal&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
OWASP Montreal vous invite à un atelier portant sur la sécurité des applications web supportant les moteurs de template (Template Engine). Le principe de séparation entre la présentation du site (code HTML statique) et de son contenu dynamique facilite la création de documents HTML et la capacité à modifier l'apparence du site sans mélanger le traitement et le rendu de la page. L'utilisation de moteurs de template amène de nouveaux enjeux de sécurité. Les vulnérabilités de type Server Side Template Injection (SSTI) sont exploitables à travers les données (non fiables) fournies par l'utilisateur et conduisent à l'exécution de code arbitraire (RCE) sur le serveur hébergeant l'application web.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ce workshop a pour but d'introduire cette classe de vulnérabilité à travers différents cas d'implémentation (php, java, python).&lt;br /&gt;
Nous verrons comment identifier et exploiter ces vulnérabilités et de quelle manière un attaquant peut &lt;br /&gt;
s'y prendre pour exécuter du code arbitraire sur le serveur afin d'en prendre le contrôle.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Niveau : Intermédiaire&amp;lt;br /&amp;gt;&lt;br /&gt;
Matériel requis :&lt;br /&gt;
* Votre portable&lt;br /&gt;
* Votre distribution Linux/Unix de votre choix&lt;br /&gt;
* Votre proxy Web de votre choix&lt;br /&gt;
&lt;br /&gt;
Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
Places limitées. Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Shopify pour l'événement.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Présentateur : Gérôme Dieu&amp;lt;br /&amp;gt;&lt;br /&gt;
Gérôme Dieu cumule plus de 7 années d’expérience en technologies de l’information et en sécurité. &lt;br /&gt;
Il œuvre à titre de conseiller senior en sécurité de l’information au sein de la firme OKIOK. Ces dernières années, il a acquis une expertise dans le domaine de la sécurité des applications web aussi bien d'un point de vue offensif que défensif. En plus de réaliser des tests d’intrusion pour des clients internationaux, Gérôme s’implique dans la recherche et développement afin de maintenir à la fine pointe de la technologie les tests d'intrusion et d'analyse de vulnérabilités. &amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Merci à Shopify d'héberger l'événement !&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Shopify Logo-r.png| Shopify | link=https://www.shopify.com/]]&lt;br /&gt;
== Le courriel en 2017 – risques et menaces pour tous ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Zero spam 2.jpg|Le courriel en 2017 – risques et menaces pour tous]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://www.youtube.com/watch?v=HX2vcijcCWw ]] [https://www.youtube.com/watch?v=HX2vcijcCWw Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 Le 23 janvier 2017 à midi&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
Monsieur Poellhuber nous brossera un tableau du phénomène grandissant du rançongiciels et de l'hameçonnage, personnification.&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
- Par les années passées, la menace courriel se résumait principalement en un fort volume de contenu simplement indésirable. Aujourd’hui la menace a passablement évolué. Quels sont les véritables risques actuels associés au courriel ? Rançongiciels, hameçonnage, personnification. Cette conférence présentera les nouveaux défis de sécurité pour les organisations qui doivent composer avec des attaques de plus en plus sophistiquées et de plus en plus ciblées tout en protégeant leur réputation. Des exemples biens réels, drôles et moins drôles seront disséqués pour bien dessiner l’ampleur de l’enjeu.&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
M. David Poellhuber, Chef de l’exploitation, ZEROSPAM Sécurité Inc&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note biographique :&amp;lt;br /&amp;gt;&lt;br /&gt;
Monsieur David Poellhuber oeuvre dans l’industrie de la sécurité informatique depuis quinze ans. Il a été conférencier dans plusieurs forums de sécurité au Canada et est maintenant reconnu comme une autorité en matière de sécurité du courriel. Il a fondé ZEROSPAM Sécurité en 2003, le premier service Québécois externalisé de sécurité du courriel infonuagique qui se distingue par sa convivialité, son efficacité et ses technologies de détection proactives.&amp;lt;br /&amp;gt;&lt;br /&gt;
Audience :  Généralistes et spécialistes de la sécurité des TI &lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Merci à Ubitrack pour le repas et à Desjardins d'héberger l'événement!&lt;br /&gt;
&lt;br /&gt;
[[Image:Ubitrak-r2.jpg|Ubitrak|link=http://www.ubitrak.com/fr/]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&lt;br /&gt;
== Effective XSS Mitigation ==&lt;br /&gt;
&lt;br /&gt;
[[Image:XSS mitigation.jpg | Effective XSS Mitigation ]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=http://slides.com/olivierarteau/xss-mitigation ]] [http://slides.com/olivierarteau/xss-mitigation See the slides / Voir la présentation]&lt;br /&gt;
&lt;br /&gt;
WHEN &lt;br /&gt;
 18 Janvier 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Google Montréal&lt;br /&gt;
&lt;br /&gt;
FRANÇAIS/ENGLISH&amp;lt;br /&amp;gt;&lt;br /&gt;
La mitigation de XSS a été un sujet important au cours des dernières années. Les navigateurs ont implémenté, en autre, deux fonctionnalités pour mitiger leur impact : l'entête &amp;quot;XSS-Protection&amp;quot; et l'entête &amp;quot;Content-Security-Policy&amp;quot;. Par contre, obtenir une mitigation contre les XSS efficace est souvent plus complexe que l'on pense. Cet atelier couvrira les deux entêtes. Il expliquera comme il est possible de contourner ces protections et ce qu'il est possible de faire pour se protéger. Des exercices de type &amp;quot;offensif&amp;quot; et &amp;quot;défensif&amp;quot; seront proposés.&lt;br /&gt;
Mitigation for XSS as been an important topic in the last few years. Browsers have implemented two main functionalities to help mitigate the impact of XSS : the &amp;quot;XSS-Protection&amp;quot; header and the &amp;quot;Content-Security-Policy&amp;quot; header. But, getting an effective XSS mitigation of those headers is trickier than it may seem. This workshop will cover both of those headers. It will explain how bypass of those protection work and what you can do about it. It will have both &amp;quot;defensive&amp;quot; exercises and &amp;quot;offensive&amp;quot; exercises.&lt;br /&gt;
Niveau : débutant/intermédiaire&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Matériel requis :&lt;br /&gt;
&lt;br /&gt;
Votre portable&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
&lt;br /&gt;
Places limitées. Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Google pour l'événement.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Présentateur : Olivier Arteau&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Olivier Arteau est un professionnel en sécurité informatique depuis quelques années et fait partie de l’équipe de test d’intrusion de Desjardins. Il est aussi un amateur de CTF qui a gagné à plusieurs reprises le CTF du NorthSec avec l’équipe HackToute et participe fréquemment à d’autres CTF avec l’équipe DCIETS.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Merci à Google d'héberger l'événement! &lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-zap-4-r.jpg | Google | link=https://www.google.ca/ ]]&lt;br /&gt;
&lt;br /&gt;
== WORKSHOP ! Top 10 OWASP - Unleash the threats ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-top10.jpg | WORKSHOP! Top 10 OWASP - Unleash the threats ]]&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 30 novembre 2016 de 17h30 à 20h30&lt;br /&gt;
WHERE&lt;br /&gt;
 Immunio @ WeWork&lt;br /&gt;
&lt;br /&gt;
De nos jours, la sécurité applicative est essentielle dans l’écosystème des entreprises de toutes tailles. Les vecteurs d’attaques sont multiples, les vulnérabilités de sécurité dans les applications peuvent être désastreuses et les impacts d’un « Hack » peuvent être irréversibles pour l’entreprise; vols de données sensibles, perte de réputation, perte de $$$$$, etc.&lt;br /&gt;
L’objectif du workshop est de comprendre la base sur les vulnérabilités de sécurité dans les applications et les techniques d’exploitation utilisées par les pirates informatiques, en plus de connaître les bonnes pratiques de développement en matière de sécurité applicative. &lt;br /&gt;
Avec l'aide de WebGoat, Damn Vulnerable Web Application et de Kali Linux, vous pourrez participer&lt;br /&gt;
à l'exploitation des applications et découvrir les techniques utilisées par les attaquants.&lt;br /&gt;
&lt;br /&gt;
Niveau : débutant&lt;br /&gt;
&lt;br /&gt;
Matériel requis :&lt;br /&gt;
 Votre portable&lt;br /&gt;
 Kali Linux&lt;br /&gt;
 La VM du workshop, envoyée aux participants&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
&lt;br /&gt;
Places très limitées (nb = 10). Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Immunio &amp;amp; WeWork pour l'événement.&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Présentateur : Christian Leclerc&lt;br /&gt;
&lt;br /&gt;
Christian est spécialisé en conception et développement de solutions web sécuritaires. Tout au long de sa carrière, il a acquis une vaste expertise sur plusieurs types de technologies et méthodologies, intégré la sécurité dans le cycle de développement d’applications, effectué des revues de code sécurité, déployé des outils d’analyse des vulnérabilités et mis en place des systèmes d’authentification. De plus, il a participé à la conception et au développement de solutions sécuritaires de pointe comme la signature électronique à l’aide d’une infrastructure à clé publique (PKI), les authentifications fortes, le Registre des consentements au don d'organes et de tissus (RDOQ.org) et la migration de plusieurs applications web vers un environnement SOA (Service Oriented Architecture). &lt;br /&gt;
&amp;lt;br&amp;gt;Merci à Immunio &amp;amp; WeWork d'héberger l'événement!&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:Immunio-horizontal-r.png|Immunio|link=https://www.immun.io/]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[Image:Wework-r.jpg|WeWork|link=https://www.wework.com/]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Histoire d'un Hack ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Histoire-dun-hack-r.jpg | Histoire d'un Hack ]]&lt;br /&gt;
&lt;br /&gt;
WHEN &lt;br /&gt;
 21 novembre 2016 à midi&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
Pour son activité du mois de novembre, OWASP Montréal propose à la communauté de la sécurité des TI et aux gestionnaires de faire l'autopsie d'une attaque de haute voltige sur un site web et des outils mis à la disposition par OWASP.&lt;br /&gt;
 &lt;br /&gt;
Bernard Bolduc cumule plus de 17 années d’expérience en technologies de l’information et en sécurité. Il œuvre à titre de conseiller senior en sécurité de l’information au niveau d’entreprise de classe nationale et internationale.&lt;br /&gt;
 &lt;br /&gt;
Bernard se spécialise en sécurité Unix, applicative et en gestion de la sécurité des télécommunications. Il combine ces expertises techniques afin d’obtenir des résultats probants et efficaces pour ces clients des secteurs bancaire, télécommunication et multimédias, de l’énergie ou des services publiques. Tout au long de sa carrière, Bernard s’est toujours maintenu à jour sur les dernières menaces de sécurité technologique et commerciale en assistant à des formations spécialisées et d'échanger avec un grand nombre de partenaires dans l'industrie de la sécurité.&lt;br /&gt;
 &lt;br /&gt;
La conférence débute à midi.&lt;br /&gt;
 &lt;br /&gt;
La conférence vous donne droit à 1 CPE et pour les 50 premières personnes, un lunch gratuit.&lt;br /&gt;
 &lt;br /&gt;
Merci à Desjardins d'héberger l'événement!&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Workshop ! Création de votre première extension OWASP ZAP (ou BurpSuite) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-zap-mix.jpg | Workshop ! Création de votre première extension OWASP ZAP (ou BurpSuite)]]&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 11 novembre 2016 de 18h à 21h&lt;br /&gt;
&lt;br /&gt;
WHERE &lt;br /&gt;
 Google Montréal&lt;br /&gt;
&lt;br /&gt;
OWASP Zed Attack Proxy (ZAP) est un scanneur de vulnérabilités et un outil de débogage HTTP. Ce type d'outil est crucial dans un test d'intrusion web et contient un lot intéressant de fonctionnalités. Cela dit, il est possible d'étendre les fonctionnalités. Plusieurs types d'extension sont possibles : vue alternative pour les requêtes ou les réponses, scanneur passif des réponses, scanneur actif produisant des requêtes, etc.&lt;br /&gt;
&lt;br /&gt;
Plusieurs options seront données, par exemple :&lt;br /&gt;
&lt;br /&gt;
 Détection automatique de flag dans les sources&lt;br /&gt;
 Scanneur actif asynchrone DNS&lt;br /&gt;
 Ou votre propre idée&lt;br /&gt;
&lt;br /&gt;
Pour chacune des suggestions, des squelettes de code seront fournis pour les APIs de ZAP. Pour les utilisateurs de BurpSuite, des directives analogues seront également données.&lt;br /&gt;
&lt;br /&gt;
Niveau : débutant / intermédiaire&lt;br /&gt;
&lt;br /&gt;
Matériel requis&lt;br /&gt;
&lt;br /&gt;
 Votre portable&lt;br /&gt;
 [https://www.owasp.org/index.php/OWASP_Zed_Attack_Proxy_Project OWASP ZAP (gratuit)]&lt;br /&gt;
 [https://portswigger.net/burp/download.html BurpSuite]&lt;br /&gt;
 Éditeur de code pour Java, Python ou Ruby&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Présentateur : Philippe Arteau&lt;br /&gt;
&lt;br /&gt;
Philippe est un chercheur en cybersécurité chez GoSecure. Il est l'auteur de l'outil d'analyse statique Java &amp;quot;Find Security Bugs&amp;quot;. Il a découvert des vulnérabilités importantes dans les logiciels populaires tels que Google Chrome, Dropbox, Paypal, RunKeeper et Jira. Il a présenté dans différentes conférences incluant Black Hat USA, Black Hat Europe, ATL Sec Con, NorthSec, Hackfest (QC) et JavaOne. Il a développé de nombreux plug-ins pour les outils de proxy BurpSuite et OWASP ZAP (Retire.js, Reissue Request Script, PDF preview et Image Metadata). Il a fait également des contributions à d'autres plug-ins comme J2eeScan.&lt;br /&gt;
&lt;br /&gt;
Merci à Google d'héberger l'événement! &lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-zap-4-r.jpg | Google | link=https://www.google.ca/ ]]&lt;br /&gt;
&lt;br /&gt;
==Logiciel de rançon (Ransomware) s'attaque au domaine de la santé==&lt;br /&gt;
&lt;br /&gt;
[[Image:HackingHealth-2.jpg | Logiciel de rançon (Ransomware) s'attaque au domaine de la santé ]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/ransomware-and-healthcare-hacking-health ]] [https://speakerdeck.com/owaspmontreal/ransomware-and-healthcare-hacking-health See the slides / Voir la présentation]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;(Conférence en anglais)&lt;br /&gt;
Pour le lancement de la saison 2016 - 2017, OWASP Montréal propose à la communauté de la sécurité des TI et aux gestionnaires de la santé une incursion dans le monde du logiciel malveillant ciblant le domaine de la santé.&amp;lt;br /&amp;gt;&lt;br /&gt;
Cette conférence s'intége dans le Coopérathon co-organisé par le Mouvement Desjardins et Hacking Health.&amp;lt;/b&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Le domaine de la santé serait devenu une cible privilégiée des campagnes de ransomware parce que l'industrie a souvent payé la rançon demandée pour récupérer les données confidentielles et vitales de ses clients. Monsieur Ed Gershfang nous brossera un portrait du phénomène et des meilleures pratiques à mettre en place en matière de sécurité applicative.&lt;br /&gt;
Ed Gershfang possède une expérience solide dans l'infrastructure informatique et plus de 6 ans d'expérience dans les domaines de la sécurité de l'information, de la vulnérabilité, de la gouvernance et de la gestion des risques. Il était directeur de la sécurité pour la société PeriGen, un chef de file de développement de logiciels médicaux en Israël.&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== La sécurité applicative vue par un pentesteur ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Juin2016-OWASPMtl.jpg | OWASP Montréal reçoit Mario Contestabile, Pentester de renom ]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
From Left to Right : Isabelle Lusseyran, Head of Development at Hacking Health. Eduard Gershfang Information Security Analyst at WSP | Parsons Brinckerhoff.&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/owasp-montreal-recoit-mario-contestabile ]] [https://speakerdeck.com/owaspmontreal/owasp-montreal-recoit-mario-contestabile See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Pour clore la saison 2015 – 2016, OWASP Montréal est fier d’accueillir au Midi Conférence un des architectes de renom du développement applicatif au Canada, monsieur Mario Contestabile.&lt;br /&gt;
En tant qu’auteur de plusieurs centaines de tests d’intrusion, il connait tous les rouages de ce qu’est véritablement une application Web «sécurisée». Mais avez-vous déjà remarqué que les rapports de tests d’intrusion mentionnent rarement, voir jamais : «Votre site est très difficile à pirater. Félicitations !» ?&lt;br /&gt;
Et qu’en est-il de ces rapports qui contiennent des dizaines de soi-disant vulnérabilités ? Est-ce que cela signifie d’emblée que l’application devrait être mise hors ligne ?  &lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Lors de cette conférence, nous examinerons des rapports concrets (ambigus) de vulnérabilités et nous les analyserons afin de mieux comprendre si elles représentent une véritable menace, ou si elles ne servent qu’à «remplir» les rapports.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Avec son expertise en protection et en attaque d’applications Web, il abordera les points suivants :&lt;br /&gt;
Comment pouvez-vous sélectionner des systèmes de façon à mieux exécuter des protections de sécurité ?&lt;br /&gt;
Éviter certains pièges dans votre application Web qui rendent les attaques plus faciles et la protection plus difficile.&lt;br /&gt;
De nos jours, que peuvent faire les développeurs à l’intérieur de systèmes communs, qui puisse me rendre la tâche plus ardue en tant que « hacker »?&lt;br /&gt;
Pouvons-nous exiger de meilleurs rapports de la part des firmes de sécurité?&lt;br /&gt;
À quoi devrions-nous nous attendre de la part d’un « pentesters »?&lt;br /&gt;
Comment pouvons-nous savoir si le « pentester » a vérifié les failles de l’application et qu’il n’a pas simplement utilisé un scanneur?&lt;br /&gt;
Et enfin, comment pouvons-nous aider les « ethical hackers » à obtenir un meilleur rendement lors d’un test d’intrusion?&lt;br /&gt;
Il expliquera le sujet en détails, et ensemble, nous verrons de quelles façons les développeurs d’applications peuvent exploiter le savoir-faire des « pentesters », et comment nous pouvons faire en sorte qu’une application Web soit protégée.&lt;br /&gt;
Biographie :&lt;br /&gt;
Mario Contestabile est reconnu comme l’un des experts en sécurité les plus réputés au Canada. Son expertise, construire et protéger votre plateforme applicative. Ancien développeur C++ et Java, Mario partage ses nombreuses connaissances en « ethical hacking » et en développement de codes sécurisé.  &lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Tuesday, 14 June 2016 from 12:00 PM to 1:00 PM (EDT) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Comment protéger les applications mobiles? ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Avril2016-OWASPMtl.png | Comment protéger les applications mobiles? ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/comment-proteger-les-applications-mobiles ]] [https://speakerdeck.com/owaspmontreal/comment-proteger-les-applications-mobiles See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Dans le cadre des Midis Conférence à l'Espace Desjardins, l'équipe OWASP Montréal vous invite à assister à une présentation sur les vulnérabilités les plus communes associées aux appareils mobiles. &lt;br /&gt;
Marie-Claire Willig détaillera entre autres comment stocker de façon sécuritaire les données de l’application mobile ainsi que protéger l’application contre des attaques externes. Des outils simples vous seront dévoilés pour détecter ces vulnérabilités.&lt;br /&gt;
Marie-Claire est une professionnelle d'expérience en sécurité appliquée.&lt;br /&gt;
Une grande partie de son intérêt professionnel réside actuellement dans un domaine assez niche, soit la revue de code sécuritaire, un fondement important de tout cycle de développement sécuritaire en entreprise.&lt;br /&gt;
Au sein de l'équipe de sécurité technologique Desjardins, elle est, en autre, responsable de former les développeurs (Java et .NET principalement) afin de les sensibiliser aux meilleures pratiques de développement sécuritaire.&lt;br /&gt;
Également, elle est une professionnelle des tests d'intrusion sur les applications web, les applications mobiles ainsi que l'infrastructure réseau.&lt;br /&gt;
Bienvenue à tous&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 20 April 2016 from 12:15 PM to 1:00 PM (EDT) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== NorthSec, Le plus gros événement de cybersécurité appliquée au Canada ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Mars2016-OWASPMtl.jpg | NorthSec, Le plus gros événement de cybersécurité appliquée au Canada ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/YQtvltQYs7Y]] [https://youtu.be/YQtvltQYs7Y Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
OWASP Montréal est fier d’inviter au Midi Conférence de mars, NorthSec est le plus gros événement de sécurité appliquée au Canada qui comprend deux jours de formation, deux jours de conférences ainsi qu’une compétition du genre « capture the flag » (CTF) de trois jours.&lt;br /&gt;
Gabriel Tremblay, Benoit Guerette, Pierre-David Oriol et Laurent Desaulniers viendront vous parler de cet organisme sans but lucratif dynamique qui est géré par une équipe de bénévoles passionnés qui donnent à chaque année leur énergie et leur temps pour soutenir la communauté de la sécurité de l’information.&lt;br /&gt;
Le volet compétition, l’épreuve maîtresse, est présentée sous forme d’un scénario qui rend cohérent une centaine de défis techniques. Les équipes de participants attaquent l’infrastructure de compétition pour soutirer des drapeaux (flags) à travers un ensemble de vulnérabilités présentes comme de l’injection SQL, des XSS ou encore l’exploitation d’exécutables sur systèmes embarqués. Quelques exemples de défis des années passées seront également présentés.&lt;br /&gt;
Le volet conférence, qui est à sa 2ème année, met de l’avant plusieurs présentations techniques touchant la sécurité applicative mais aussi l’éthique et leurs impacts sociaux. Certaines présentations confirmées seront dévoilés.&lt;br /&gt;
Le tout nouveau volet formation propose deux formations en sécurité applicative de calibre international (anglais) : “Advanced Web Security Testing with Burp Pro” et “Modern Object-Oriented Malware Reverse Engineering”.&lt;br /&gt;
Venez aussi, découvrir comment l'équipe est partie d'une idée en 2012 pour se rendre à un évènement d'envergure, qui rassemblera plus de 600 professionnels, étudiants et autres passionnés de sécurité appliquée lors de la 4ème édition qui aura lieu du 17 au 22 mai 2016 au Marché Bonsecours.&lt;br /&gt;
Finalement, la mission, la vision ainsi que les activités sociales de la semaine de NorthSec sont aussi au menu de cette présentation qui sera suivie d’une période de questions.&lt;br /&gt;
&lt;br /&gt;
Gabriel Tremblay, Delve Labs, Président&lt;br /&gt;
Benoit Guerette, Desjardins, VP Finances&lt;br /&gt;
&lt;br /&gt;
Pierre-David Oriol, Delve Labs, VP Conférence&lt;br /&gt;
Laurent Desaulniers, Bell Canada, Artisant de drapeaux&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 23 March 2016 from 12:00 PM to 1:00 PM (EDT) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== La sécurité applicative et l'hameçonnage - February 24th ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Fevrier2016-OWASPMtl.jpg | La sécurité applicative et l'hameçonnage ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/1RYlOiIENjQ]] [https://youtu.be/1RYlOiIENjQ Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
De nos jours, une des méthodes les plus efficaces pour contourner les périmètres de sécurité externes est l'hameçonnage conjointement avec l’abus de certaines technologies Web.&lt;br /&gt;
&lt;br /&gt;
Dans le cadre ses activités, OWASP Montréal est heureux d'inviter d'accueillir, l'équipe OKIOK qui présentera les impacts liés à ce type d'attaque, tel que vu et expérimenté en entreprise ainsi que les plans d'action pour traiter ces risques. La présentation abordera aussi bien la sécurité web et applicatives, des systèmes informatiques ainsi que de la sécurité physique de centres de données. &lt;br /&gt;
&lt;br /&gt;
    Capture d'informations sensibles par imitations de portails Web ;&lt;br /&gt;
    Authentification Web par 2-facteurs ;&lt;br /&gt;
    Injection SMTP dans des formulaires Web ;&lt;br /&gt;
    Attaque de type “Drive-by-download”;&lt;br /&gt;
    Prise de contrôle à distance à travers des flux HTTP;&lt;br /&gt;
    Attaque de CSRF à partir de courriels ;&lt;br /&gt;
    Attaque d'hameçonnage basée sur des achats par Internet (ex : PayPal).&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
When&lt;br /&gt;
 Wednesday, 24 February 2016 from 12:00 PM to 1:15 PM (EST) - Add to Calendar &lt;br /&gt;
Where&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest Montreal, Quebec CA&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Internet of {Things, Threats} - January 20th ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Janvier2016-OWASPMtl-R.png | Internet of {Things, Threats} ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=http://gosecure.github.io/presentations/2016-01-20_owasp-mtl/internet-of-threats.html ]] [http://gosecure.github.io/presentations/2016-01-20_owasp-mtl/internet-of-threats.html See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
De plus en plus de périphériques se retrouvent connectés sur Internet. Sous la bannière &amp;quot;Internet of Things&amp;quot; (IoT) ces équipements, que ce soit une pompe à insuline ou un système de caméra de sécurité, tournent généralement sous un système GNU/Linux embarqué d'architecture MIPS ou ARM. La difficulté de mettre à jour ces équipements ainsi que le peu d'effort mis dans la sécurité des systèmes ou la sécurité applicative en font des cibles de choix. Ces derniers mois, nous avons analysé plusieurs logiciels malveillants ciblant ces architectures. Que ce soit par l'exploitation d'une vulnérabilité (Shellshock) ou encore un défaut de configuration, ces systèmes exposés sur Internet peuvent être compromis.&lt;br /&gt;
&lt;br /&gt;
Notre présentation couvrira quelques une de ces analyses:&lt;br /&gt;
&lt;br /&gt;
* Linux/Moose, un malware se propageant automatiquement qui fraude les réseaux sociaux (par exemple Facebook, Twitter et YouTube)&lt;br /&gt;
* LizardSquad et acteurs étrangers qui utilisent des systèmes embarqués compromis pour réaliser des dénis de service distribué (DDoS) &lt;br /&gt;
* Win32/RBrute est un logiciel malveillant qui tente de changer les paramètres de routeurs dans le but de faire du &amp;quot;DNS poisoning&amp;quot;. Il a été distribué par le populaire botnet Sality.&lt;br /&gt;
* Un kit d'exploits qui utilise seulement le navigateur de leur victime avec le même objectif, c'est-à-dire faire du &amp;quot;DNS poisoning&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Enfin, des conseils seront proposés à l'audience pour l'aider à se protéger de ces menaces.&lt;br /&gt;
&lt;br /&gt;
'''Thomas Dupuy''' (twitter: @nyx__o)&lt;br /&gt;
&lt;br /&gt;
Thomas est chercheur en logiciel malveillant chez ESET Canada Recherche. Bon vivant, Thomas déjeune en &amp;quot;reversant&amp;quot; des binaires, contribue à quelques projets open source durant le diner (yara, yara rules, pefile, APTnotes) et la nuit participe à des &amp;quot;Hacking Games&amp;quot; (Capture The Flag). Curieux de nature Thomas analyse des malware aux architectures &amp;quot;exotiques&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Olivier Bilodeau''' (twitter: @obilodeau)&lt;br /&gt;
&lt;br /&gt;
Olivier Bilodeau is the head of Cybersecurity Research at GoSecure a consultancy firm specializing in cybersecurity services for the public and private sector. With more than 10 years of infosec experience, Olivier worked on Unix servers at Bell Canada, managed a portion of Air Canada's network, wrote open source network access control software at Inverse and worked as a Malware Researcher at ESET. He likes to reverse engineer everything that crosses his path, participate in information security capture-the-flag competitions, hack open source code and brew beer. He has spoken at various conferences (Defcon, Botconf, VirusBulletin, Derbycon, ...), used to lecture on information security at ETS University in Montreal, drives the NorthSec Hacker Jeopardy and co-organizes the MontreHack capture-the-flag training initiative. His primary research interests include reverse-engineering tools, Linux and/or embedded malware and honeypots.&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Survivre aux attaques DDOS applicatives ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Decembre2015-OWASPMtl.jpg | Survivre aux attaques DDOS applicatives ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Survivre aux attaques DDOS (Distributed Denial-Of-Service) applicatives.&lt;br /&gt;
Cette conférence s'adresse aux professionnels et gestionnaires des TI.&lt;br /&gt;
Conférencier : Christian Shink, ing., CSSLP, ingénieur système chez Radware, manufacturier spécialisé dans la prévention des attaques DDOS. Il fut également consultant en sécurité applicative chez In Fidem.&lt;br /&gt;
Objectifs de la conférence:&lt;br /&gt;
Présenter les tendances actuelles en matière d'attaques DDOS applicatives.&lt;br /&gt;
Renseigner les participants sur les techniques et stratégies pour contrer ces attaques illustrées à partir de cas vécus.&lt;br /&gt;
Démystifier certains mythes en ce qui concernent les façons efficaces de protéger les applications contre des attaques DDOS.&lt;br /&gt;
Date : 16 décembre 2015&lt;br /&gt;
Heure : 11h45&lt;br /&gt;
La conférence débute à 12h00 et se termine à 12:55.&lt;br /&gt;
Un lunch sera servi.&lt;br /&gt;
Réservez maintenant!&lt;br /&gt;
1 CPE&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 16 December 2015 from 11:45 AM to 1:00 PM (EST) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec &lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Sécurité des applications - Systèmes de contrôles industriels ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Novembre2015-OWASPMtl-R.png | Sécurité des applications - Systèmes de contrôles industriels ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/0eAZpyiQQ9A]] [https://youtu.be/0eAZpyiQQ9A Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&lt;br /&gt;
La sécurité des applications et les systèmes de contrôles industriels.&lt;br /&gt;
Cette conférence s'adresse aux professionnels et gestionnaires des TI desinfrastructures critiques qui exploitent ou gèrent des systèmes de contrôles industriels(SCI) et SCADA (surveillance et d'acquisition de données).&amp;lt;br /&amp;gt;&lt;br /&gt;
Conférenciers : Robert Nastas, CSSA. Gestionnaire de projet et Youssef Jad, Architecte Cyber sécurité, ICS-CERT&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Objectifs de la conférence:&lt;br /&gt;
* Démystifier le domaine d'affaires.&lt;br /&gt;
* Renseigner les participants sur les bonnes pratiques de sécurité desapplications liées au secteur industriel.&lt;br /&gt;
* Proposer aux professionnels et gestionnaires des TI responsables dessystèmes SCADA et SCI des pistes de solutions aux enjeux de sécurité.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
L'équipe OWASP Montréal vous remercie d'avoir assisté en grand nombre à la conférence, 'La sécurité des applications et les systèmes de contrôles industriels'.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 18 November 2015 from 11:45 AM to 1:00 PM (EST) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Les préoccupations actuelles de hauts dirigeants en matière de cybersécurité et de sécurité applicative ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Septembre2015-OWASPMtl.jpg | Les préoccupations actuelles de hauts dirigeants en matière de cybersécurité et de sécurité applicative ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/un-regard-sur-la-securite-de-linformation-en-2015-par-eric-hebert ]] [https://speakerdeck.com/owaspmontreal/un-regard-sur-la-securite-de-linformation-en-2015-par-eric-hebert See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Pour le lancement des activités corporatives de la saison 2015 - 2016, le 8 septembre prochain à 12:00, l'équipe OWASP Montréal convie les gestionnaires et artisants de la sécurité des TIC à venir entendre monsieur Éric Hébert qui nous présentera son interprétation des préoccupations actuelles de hauts dirigeants en matière de cybersécurité et de sécurité applicative. L'événement se tiendra au complexe Desjardins à la salle &amp;quot;Espace Desjardins&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
''' ÉRIC G. HÉBERT, CISM, CISSP ''' &amp;lt;br /&amp;gt;&lt;br /&gt;
Après plus de 20 ans passés dans le domaine de la sécurité des technologies de l’information, Éric se spécialise dans la mise en œuvre et la gestion d'équipes performantes, capables de relever les plus hauts défis de la cybersécurité moderne.&amp;lt;br /&amp;gt;&lt;br /&gt;
Capable de dialoguer avec les hauts dirigeants, il sait traduire et vulgariser les enjeux techniques complexes tout en respectant la nature et l'appétence au risque de ses clients. Dynamique et pourvu d'une expérience couvrant presque toutes les sphères de la SI, il fonce dans le respect de la culture établie tout en implantant des solutions pragmatiques et efficaces.&amp;lt;br /&amp;gt;&lt;br /&gt;
Depuis plus de 10 ans, il gravite principalement autour des entreprises du domaine financier (BNC, Desjardins, Fonds de solidarité FTQ...) et les accompagne dans la mise en place de solutions efficaces tenant compte à la fois des risques et des budgets.&lt;br /&gt;
En plus d’avoir fondé de nombreuses associations telles que le RéseauSécurIT et le RPSI, il maintient une présence régulière auprès des milieux associatifs professionnels et partage régulièrement ses expériences lors de conférences et d'entrevues avec divers médias.&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Events / Évènements =&lt;br /&gt;
&lt;br /&gt;
== Owasp Montreal at [https://nsec.io/ NorthSec 2017] ==&lt;br /&gt;
&lt;br /&gt;
[[Image:NorthSec2017-5.jpg]]&lt;br /&gt;
[[Image:NorthSec2017-6.jpg]]&lt;br /&gt;
&lt;br /&gt;
From Left to Right: Anne Gauthier, OWASP Montréal Chapter Leader (President) and Application Security Analyst at GoSecure, Hugo Genesse, OWASP Montréal Chapter Leader and Research Intern at PNF Software, Julien, OWASP Montréal Chapter Leader&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal at [https://2017.appsec.eu/ AppSec] ==&lt;br /&gt;
&lt;br /&gt;
[[Image:OWASPAppSecBelfast2017-7.jpg]]&lt;br /&gt;
&lt;br /&gt;
OWASP Montreal and Ottawa Chapter Leaders at OWASP AppSec Belfast, UK #WomenInAppSec&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal at [https://hackfest.ca/ HackFest 2016] ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hackfest2016-r.jpg| HackFest |link=https://hackfest.ca/]]&lt;br /&gt;
&lt;br /&gt;
From left to right: Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Louis Nadeau, OWASP Québec Chapter Leader and Manager, Product Security at Bentley Systems and Patrick Leclerc, OWASP Québec Chapter Leader and Information Security Advisor at La Capitale.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal at OWASP [https://2016.appsecusa.org/ AppSec USA 2016, Washington] ==&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:OWASPMtl-AppSecUSA2016-Washington.jpg | OWASP Montreal at AppSec USA 2016, Washington]] &lt;br /&gt;
&lt;br /&gt;
​From left to right: Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Marie-Claire Willig, Application Security Analyst at Desjardins, Speaker and Cofounder of the Roslyn Security Guard tool which will be presented at Blackhat 2016, Alexandre Hamelin President at Synlabs Consulting Inc., Jonathan Marcil, Application Security Engineer at Blizzard Entertainment and former OWASP Montreal Chapter Leader. Philippe Arteau, Cybersecurity Researcher at GoSecure and designer of [https://find-sec-bugs.github.io/ Find Security Bugs] and Roslyn Security Guard tool which will be presented at Blackhat 2016.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://www.gosec.net GoSec] 2016 ==&lt;br /&gt;
&lt;br /&gt;
[[Image:OWASP-GoSec2016-1r.jpg|OWASP Montreal at GoSec 2016]] [[Image:OWASP-GoSec2016-2r.jpg|OWASP Montreal at GoSec 2016]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
From left to right : Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Simon Lacasse, student and volunteer, and Laurent Desaulniers, Security Analyst at Bell Canada.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://www.nsec.io/ NorthSec] 2016 – Annual Applied Security Event ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hackfest2016-OWASPMtl.jpg|OWASP Montreal at NorthSec 2016]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Simon Veilleux &lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
From left to right : Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Olivier Arteau OWASP Montréal Chapter Leader and Conseiller chez Groupe Technologie Desjardins, Hugo Genesse, OWASP Montréal Chapter Leader and Vulnerability Research Intern at Wurldtech Security Technologies.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://hackfest.ca/en/ Hackfest] 2015 ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hackfest2015-OWASPMtl-R.JPG | OWASP Montreal at Hackfest 2015]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Hackfest &lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
From left to right : Jonathan Marcil, Application Security Engineer at Blizzard Entertainment and former OWASP Montreal Chapter Leader. Philippe Arteau, Cybersecurity Researcher at GoSecure and designer of [http://find-sec-bugs.github.io/ Find Security Bugs] and Roslyn Security Guard tool which will be presented at Blackhat 2016. &lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/8U0qkEuUFy8]] [https://youtu.be/8U0qkEuUFy8 Watch the video / Regarder la vidéo]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://www.gosec.net/ GoSec] 2015 – The Annual Cybersecurity Conference presented by GoSecure, EY and ISACA. ==&lt;br /&gt;
&lt;br /&gt;
[[Image:GoSec2015-OWASPMtl.jpg|OWASP Montreal at GoSec 2015]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
From left to right : Marie-Claire Willig, Application Security Analyst at Desjardins, Speaker and Cofounder of the Roslyn Security Guard tool which will be presented at Blackhat 2016. Benoît Guérette, Application Security Team Leader at Desjardins, VP Finance at NorthSec and OWASP Montreal Chapter Founder and Former Chapter Leader.&lt;br /&gt;
&lt;br /&gt;
== See also / Voir aussi ==&lt;br /&gt;
&lt;br /&gt;
OWASP Montréal recommends Montréhack. Learn and share knowledge on IT security by solving technical challenges. Third Monday of every month. &lt;br /&gt;
&lt;br /&gt;
OWASP Montréal recommende Montréhack. Apprends et partages des connaissances sur la sécurité informatique en travaillant des problèmes appliqués. Chaque troisième lundi du mois. &lt;br /&gt;
&lt;br /&gt;
[[File:Montrehack.png|Montréhack|link=http://montrehack.ca/|alt=Montréhack]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Archives 2007-2015 =&lt;br /&gt;
{{:Montreal chapter past meetings}}&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - February 3rd - Getting to Know the Software Assurance Marketplace (SWAMP) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/p4_vjufcB6Q]] [https://youtu.be/p4_vjufcB6Q Watch the conference / Regarder la conférence]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/getting-to-know-the-software-assurance-marketplace-swamp-by-pat-beyer]] [https://speakerdeck.com/owaspmontreal/getting-to-know-the-software-assurance-marketplace-swamp-by-pat-beyer See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Pat Beyer&lt;br /&gt;
*'''ADDITIONAL PRESENTER:'''  Abe Megahed&lt;br /&gt;
*'''ABSTRACT:''' The Software Assurance Marketplace (SWAMP) is an open facility that is designed, built, and operated by four research institutions. The SWAMP provides no-cost access to an array of open-source and commercial software analysis tools. This presentation will provide an overview and demo of the SWAMP, including our goals, intended audience, current capabilities, and future plans. We will cover our relationship with OWASP, incorporation of open-source software assurance tools, and status as an open-source project and resource available to the software community. Visit https://continuousassurance.org/ to learn more about us.&lt;br /&gt;
*'''BIO:''' Pat Beyer serves as the Product Manager for the Software Assurance Marketplace (SWAMP). With over 25 years of experience successfully managing multi-million dollar global projects, Beyer’s expertise extends to the IT, construction, and operations sectors, with a specialization in managing government contracts and grants. A gifted communicator, Beyer is a sought after speaker due to his ability to deliver complex information about technology products and services in a way that is easily understood. He is a decorated combat veteran of the Global War on Terror, the international military campaign that started following the 9/11 terrorist attacks on the United States. In 2004, he constructed and rehabilitated over 20 schools, clinics, and water treatment plants for the Iraqi people using local contractors. Beyer also holds a Bachelor of Science, a Masters in Business Administration, a Ph.D. in Organization and Management, and a Project Management Professional (PMP) certification.&lt;br /&gt;
*'''BIO:''' Abe Megahed is a web developer for the Software Assurance Marketplace. In previous lifetimes, he has been a computer graphics researcher, a game programmer, a programming language and compiler nerd, a dot com company founder, a creator of helicopter simulations, and a developer of 3D simulations for NASA astronaut crew training.&lt;br /&gt;
*'''WHEN:'''  Tuesday, February 3rd 2015&lt;br /&gt;
*'''WHERE:''' Room PK-1140 - UQAM Pavillon Président-Kennedy, 201 Avenue du Président-Kennedy  J2X 3Y7&lt;br /&gt;
*'''REGISTRATION:''' https://owaspmtlswamp2015.eventbrite.ca&lt;br /&gt;
*'''WEBCAST:''' https://www.youtube.com/watch?v=p4_vjufcB6Q&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/getting-to-know-the-software-assurance-marketplace-swamp-by-pat-beyer&lt;br /&gt;
&lt;br /&gt;
*'''ACADEMIC PARTNER:''' AGEEI-UQAM - http://www.ageei.org/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Welcome speech by Chapter Leader (Jonathan Marcil)&lt;br /&gt;
  18:30-20:00 Main session: Getting to Know the Software Assurance Marketplace&lt;br /&gt;
  20:00-...   End of the meeting&lt;br /&gt;
&lt;br /&gt;
[[Image:SWAMP-Logo-Final-Med.png|300px|link=https://continuousassurance.org/]]&lt;br /&gt;
[[Image:Ageeilogo.jpg|200px|link=http://www.ageei.org/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - 4 décembre - Malware côté serveur — évolution, méthodes d’opération et forensic Linux ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/lo8WDl-WQ3E]] [https://youtu.be/lo8WDl-WQ3E Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/malware-cote-serveur-par-marc-etienne-m-dot-leveille]] [https://speakerdeck.com/owaspmontreal/malware-cote-serveur-par-marc-etienne-m-dot-leveille See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''PRÉSENTATEUR PRINCIPAL:''' Marc-Etienne M.Léveillé&lt;br /&gt;
*'''RÉSUMÉ:''' Les logiciels malveillants ciblant les serveurs ont évolué. Ils sont utilisés par des groupes de cybercriminels organisés dans le but de faire du profit via des redirections web et l’envoie de pourriels. La présentation portera sur Opération Windigo, une opération malveillante qui a affecté plus de 25 000 serveurs dans le monde. Après une brève description des composantes de Windigo, nous verrons comment les opérateurs déploient leurs logiciels malveillants et surveille leur réseau de serveurs infectés. Des trucs pratiques pour faire de la forensics sur des systèmes Linux seront donnés. Cette présentation est une suite à la présentation &amp;quot;Linux/Cdorked: Server side malware&amp;quot;, donnée par Olivier Bilodeau à OWASP Montréal en 2013. La présentation sera en français avec des diapositives en anglais (aka Montreal-style).&lt;br /&gt;
*'''BIO:''' Marc-Etienne est un chercheur en logiciel malveillant chez ESET depuis 2012. Il se spécialise dans les logiciels malveillants qui s’attaquent à des plateformes inhabituelles comme aux produits fruités et aux oiseaux nordiques. Dernièrement, il passe beaucoup de son temps à faire la rétro-ingénierie de logiciels malveillants sur des serveurs Linux et s’intéresse à leurs méthodes d’opération. Il adore participer de façon collégiale aux CTFs avec ses amis les CISSP Groupies et jouer de la clarinette. Il tweet très peu à @marc_etienne_.&lt;br /&gt;
*'''QUAND:''' 4 décembre 2014 à 18h00&lt;br /&gt;
*'''OÙ:''' Local M-1510, Polytechnique Montréal, 2900 Boulevard Edouard-Montpetit&lt;br /&gt;
*'''INSCRIPTION:''' https://www.eventbrite.ca/e/owasp-montreal-4-decembre-malware-cote-serveur-evolution-methodes-doperation-et-forensic-linux-tickets-14635313617&lt;br /&gt;
*'''ÉQUIPE ACADÉMIQUE:''' Polyhack - http://polyhack.org/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
&lt;br /&gt;
 18:00-18:30 Réseautage&lt;br /&gt;
 18:30-18:35 Mot de bienvenue par le leader du chapitre (Jonathan M.)&lt;br /&gt;
 18:35-19:30 Présentation principale : Malware côté serveur&lt;br /&gt;
 19:30-20:00 Période de questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Polyhacklogonoirpetit.png|200px|link=http://polyhack.org/]]&lt;br /&gt;
[[Image:LogoPolytechnique.gif|link=http://www.polymtl.ca/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - October 23rd - XXE : À l’assaut des analyseurs XML ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/MZviLB9-42E]] [https://youtu.be/MZviLB9-42E Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/xxe-a-lassaut-des-analyseurs-xml-par-philippe-arteau]] [https://speakerdeck.com/owaspmontreal/xxe-a-lassaut-des-analyseurs-xml-par-philippe-arteau See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''PRÉSENTATEUR PRINCIPAL:''' Philippe Arteau&lt;br /&gt;
*'''RÉSUMÉ:''' L'utilisation d’XML est fortement répandue. Le format est utilisé pour des fichiers de configuration, pour des métadonnées, pour des documents textes, et bien plus. La prise en charge de fichiers XML n’est pas sans risque. La plupart des analyseurs XML ne sont pas sécuritaires par défaut pour le traitement de fichier externe. Cette présentation fera un survol des vulnérabilités de type « Xml eXternal Entity » et de l’étendue des risques pour différents langages de programmation. Plusieurs démonstrations sont prévues.&lt;br /&gt;
*'''BIO:''' Philippe est conseiller en sécurité applicative pour le Groupe Technologies Desjardins. Au quotidien, il s’occupe d’effectuer des tests d’intrusions et des revues de code. Il a découvert des vulnérabilités importantes dans plusieurs logiciels populaires incluant Google Chrome, DropBox, ESAPI et Jira.&lt;br /&gt;
*'''QUAND:'''  23 Octobre 2014 à 18h00&lt;br /&gt;
*'''OÙ:''' École de Technologie Supérieure Local A-3230, 1100 Rue Notre-Dame Ouest, Montréal, QC H3C 1K3&lt;br /&gt;
*'''INSCRIPTION:''' http://www.eventbrite.ca/e/owasp-montreal-23-octobre-xxe-a-lassaut-des-analyseurs-xml-tickets-13426881163&lt;br /&gt;
*'''PARTENAIRE ACADÉMIQUE:''' ETS - DCI http://dciets.com/&lt;br /&gt;
*'''PROGRAMME:''' &lt;br /&gt;
&lt;br /&gt;
 18:00-18:30 Réseautage&lt;br /&gt;
 18:30-18:45 Mot de bienvenue&lt;br /&gt;
 18:45-19:45 Présentation principale - &amp;quot;À l’assaut des analyseurs XML&amp;quot; Philippe Arteau&lt;br /&gt;
 19:45-20:00 Période de questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Blason_dci.png‎‎‎|150px|link=http://dciets.com/]]&lt;br /&gt;
[[Image:ETS-rouge-devise-impr-fond_transparent.png|150px|link=http://www.etsmtl.ca/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - July 24th - Web security for DevOps: the glory is in the headers ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/6bp1NCLT-YQ]] [https://youtu.be/6bp1NCLT-YQ Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/web-security-for-devops-the-glory-is-in-the-headers-by-jonathan-marcil]] [https://speakerdeck.com/owaspmontreal/web-security-for-devops-the-glory-is-in-the-headers-by-jonathan-marcil See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Jonathan Marcil&lt;br /&gt;
*'''ABSTRACT:''' DevOps is a buzzword which can be easily demystified: in essence it is a process which aims to combine the development and system administration process into one; Operations. As developers become responsible for server setup, security counter measures are evolving as well. The line between server configuration and application behaviour has been blurred. In this talk we will cover some HTTP headers in regards to security such as CORS, CSP and HSTS. We will demonstrate several forms of attack, and how they can (should) be countered.&lt;br /&gt;
*'''BIO:''' Jonathan is devoted to security and specialized in Web application security.  His main occupation is consulting in Web security, but deep down he is a developer with a agnostic vision of programming languages. He has a diploma in Software Engineering from Ecole de Technologie Superieure and more than 10 years of experience in Information Technology and Security.&lt;br /&gt;
*'''WHEN:'''  At noon on July 24th 2014&lt;br /&gt;
*'''WHERE:''' 75 Queen Street, office 3100, Montreal, QC H3C 2N6&lt;br /&gt;
*'''REGISTRATION:''' You can join us on site for a pizza slice but this is mainly an online event. Contact jonathan.marcil@owasp.org.&lt;br /&gt;
*'''WEBCAST:''' https://www.youtube.com/watch?v=6bp1NCLT-YQ&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/web-security-for-devops-the-glory-is-in-the-headers-by-jonathan-marcil&lt;br /&gt;
*'''EVENT SPONSOR:''' Pheromone http://www.pheromone.ca/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  12:00-12:10 Welcome and quick OWASP introduction&lt;br /&gt;
  12:10-13:10 Main presentation - &amp;quot;Web security for DevOps: the glory is in the headers&amp;quot; Jonathan Marcil&lt;br /&gt;
  13:10-... Open discussion and questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Logo-phero.gif‎|link=http://www.pheromone.ca/]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - June 18th - Gaps in the Clouds ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/gaps-in-the-clouds-by-robert-fritz]] [https://speakerdeck.com/owaspmontreal/gaps-in-the-clouds-by-robert-fritz See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Robert Fritz&lt;br /&gt;
*'''ABSTRACT:''' Cloud technology offers agility and scaling, and a chance to break away from legacy IT choices.  Unfortunately, skipping traditional IT activities often results in poorly patched systems, out of date firewalls, and overprovisioned entitlements wielded by admins whose “day job” is development.  Boundaries of accountability and responsibility amongst cloud providers and consumers are confusing, vague, and shift, making security difficult to manage.  In such an environment, a “BP-spill” event, where cost wins over safely safety, is likely.  This talk will dive down into the cracks between the layers of cloud, and share some of the exciting dirt we have seen and expect to see in coming years.”&lt;br /&gt;
*'''BIO:''' Robert Fritz has been practicing security his entire career. Rob started as an Air Force lieutenant at Langley AFB and later at the Pentagon in Washington DC, building and managing classified networks. Finding he was getting too far from technology after a brief stint flying, he left the military to get back to the tech, and built security tools for HP in their HP-Unix lab.  Over time he found himself in more and more security design discussions, so co-authored HP’s Commercial Application Threat Analysis Methodology, building an internal consulting practice at HP.  This quantitative approach, led to two pending patents, an external-facing consulting practice, and his contributions to NIST IR-7502, the Common Configuration Scoring System (CVSS follow-on).  He is the former lead editor for the Center for Internet Security’s HP-UX Benchmark, and current lead for the Android Benchmark.  Robert now works for Morgan Stanley as global head of the Strategic Consulting team in the Security Architecture group, and leads the team’s cloud and social-media security practices.&lt;br /&gt;
*'''WHEN:''' June 18th 2014&lt;br /&gt;
*'''WHERE:''' 700 Rue Wellington, Floor 2, Montreal, QC H3C 3S4&lt;br /&gt;
*'''REGISTRATION:''' http://owaspmtl18junems.eventbrite.ca&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/gaps-in-the-clouds-by-robert-fritz&lt;br /&gt;
*'''EVENT SPONSOR:''' Morgan Stanley http://www.morganstanley.com/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:30 Networking and Morgan Stanley Hosted Pizza and Soft Drinks&lt;br /&gt;
  18:30-18:45 OWASP Chapter &amp;amp; Morgan Stanley Welcome&lt;br /&gt;
  18:45-19:45 Main presentation - &amp;quot;Gaps in the Clouds&amp;quot; Robert Fritz&lt;br /&gt;
  19:45-20:00 Open discussion and questions&lt;br /&gt;
  20:00-...   Optional, informal networking at Aziatic - 626 rue Marguerite-d'Youville, Montréal, QC H3C 1W7&lt;br /&gt;
&lt;br /&gt;
[[Image:Morgan_Stanley_Historical_Logo.png|link=http://www.morganstanley.com/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - May 26th - Récapitulatif des challenges NorthSec ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/P8_V3RI1Ru4]] [https://youtu.be/P8_V3RI1Ru4 Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''PRÉSENTATEUR PRINCIPAL:''' Laurent Desaulniers&lt;br /&gt;
*'''RÉSUMÉ:''' Solutions de la compétition en sécurité NorthSec 2014 sur les sujets de  XXE + SSRF, WAF Bypass, Xpath Injection, DOM Injection, HTTP Only Flag bypass et contournement de captchas. Une bonne façon d'apprendre sur ces failles que vous étiez ou non un participant de la compétition.&lt;br /&gt;
*'''MESSAGE DU PRÉSENTATEUR:''' Vous voyez Rao dans votre soupe? Vous voulez une solution pour un XSS avec des cookies http only? Les captchas illisibles sont un problème? Assistez à la présentation de l'OWASP!&lt;br /&gt;
*'''BIO:''' Laurent Desaulniers est un passionné de sécurité informatique. Il a présenté au Hackfest, au colloque RSI, à OWASP et est challenge designer à NorthSec. M. Desaulniers détient les certifications CISSP, CISM, CISA et OSCP.&lt;br /&gt;
*'''QUAND:''' 26 mai à 18h00&lt;br /&gt;
*'''OÙ:''' Local PK-1140 - Pavillon Président-Kennedy 201, Avenue du Président-Kennedy, J2X 3Y7&lt;br /&gt;
*'''INSCRIPTION:''' https://www.eventbrite.ca/e/owasp-montreal-26-mai-recapitulatif-des-challenges-northsec-tickets-11724413035&lt;br /&gt;
*'''WEBCAST:''' https://www.youtube.com/watch?v=P8_V3RI1Ru4&lt;br /&gt;
*'''ÉQUIPE ACADÉMIQUE''' AGEEI-UQAM - http://www.ageei.org/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
&lt;br /&gt;
 18:00-18:30 Réseautage&lt;br /&gt;
 18:30-18:35 Mot de bienvenue par le leader du chapitre (Jonathan M.)&lt;br /&gt;
 18:35-19:30 Présentation principale : Récapitulatif des challenges NorthSec&lt;br /&gt;
 19:30-20:00 Période de questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Ageeilogo.jpg|200px|link=http://www.ageei.org/]]&lt;br /&gt;
[[Image:2397_nsec_Logo_500-250.png|200px|link=http://nsec.io/]]&lt;br /&gt;
&lt;br /&gt;
== Networking with infosec communities - April 21st ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''RÉSUMÉ:''' En collaboration avec Montréhack, mtlsec et NorthSec, nous organisons une soirée réseautage dans un pub du centre-ville. Du plaisir garanti avec les membres de plusieurs communautés infosec de Montréal!&lt;br /&gt;
&lt;br /&gt;
*'''ABSTRACT:''' In collaboration with Montréhack, mtlsec and NorthSec, we are organizing a networking evening in a pub downtown. Fun guaranteed with the other security communities in Montreal!&lt;br /&gt;
&lt;br /&gt;
*'''QUAND:''' 21 Avril 2014&lt;br /&gt;
*'''WHEN:''' April 21st 2014&lt;br /&gt;
&lt;br /&gt;
*'''OÙ/WHERE:''' BENELUX - Brasserie Artisanale 245 Sherbrooke St W Montreal, QC H2X 1X7&lt;br /&gt;
&lt;br /&gt;
*'''INSCRIPTION/REGISTRATION:''' https://www.eventbrite.ca/e/montrehack-avril-april-northsec-pre-party-tickets-11232307133&lt;br /&gt;
&lt;br /&gt;
*'''PARTENAIRES/PARTNERS:''' Montréhack http://montrehack.ca/ - mtlsec http://blog.mtlsec.com/ - NorthSec https://www.nsec.io/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
  18:00-21:00 Networking&lt;br /&gt;
  21:00-23:59 Remember to drink responsibly!&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - March 27th - Panel Compétition en sécurité NorthSec ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Présentation sous forme de panel - venez poser vos questions!'''&lt;br /&gt;
&lt;br /&gt;
*'''RÉSUMÉ:''' Les compétitions de type Capture the Flag (CTF) sont un moyen pour les professionnels et amateurs de sécurité informatique de mettre leurs talents à l'épreuve. NorthSec est une compétition Montréalaise annuelle en sécurité appliquée, qui aura lieu cette année au Marché Bonsecours de Montréal le 25, 26 et 27 avril prochain. Elle vise à augmenter le niveau technique des professionnels de la sécurité au Québec, ainsi que de permettre à ses acteurs les plus talentueux de se démarquer.&lt;br /&gt;
*'''DÉTAILS:''' Le panel de jeudi, sous la forme d'un échange convivial entre les organisateurs de l'évènement et de ses participants, abordera des thèmes variés comme l'écriture de bon défis, l'infrastructure, la logistique, les inattendus, un bilan de 2013 et tout ça en passant par de savoureuses annecdotes (on l'espère). Venez en grand nombre toucher à ces légendes de la scène infosec montréalaise!&lt;br /&gt;
*'''PANÉLISTES:''' Gabriel Tremblay, François Proulx, Laurent Desaulniers, Stéphane Graber&lt;br /&gt;
*'''ANIMATEUR:''' Olivier Bilodeau&lt;br /&gt;
*'''QUAND:''' 27 mars 2014&lt;br /&gt;
*'''OÙ:''' Salle M-1510, École Polytechnique de Montréal, 2500 chemin de Polytechnique, Montréal (Québec) H3T 1J4, pavillon Lassonde&lt;br /&gt;
*'''INSCRIPTION:''' https://www.eventbrite.ca/e/owasp-montreal-27-mars-panel-competition-en-securite-northsec-tickets-10918436337&lt;br /&gt;
*'''ÉQUIPE ACADÉMIQUE:''' Polytechnique - Polyhack http://polyhack.org/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Mot de bienvenue par le leader du chapitre (Jonathan Marcil)&lt;br /&gt;
  18:30-20:00 Présentation principale : Panel NorthSsec&lt;br /&gt;
&lt;br /&gt;
[[Image:Polyhack.png‎‎|200px|link=http://polyhack.org/]]&lt;br /&gt;
[[Image:LogoPolytechnique.gif|link=http://www.polymtl.ca/]]&lt;br /&gt;
[[Image:2397_nsec_Logo_500-250.png|200px|link=http://nsec.io/]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - February 25th - Proven Strategies for Web Application Security ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/proven-strategies-for-web-application-security-by-justin-c-klein-keane]] [https://speakerdeck.com/owaspmontreal/proven-strategies-for-web-application-security-by-justin-c-klein-keane See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Justin C. Klein Keane&lt;br /&gt;
*'''ABSTRACT:''' The rising dominance of the web as an application delivery platform has focused attacker attention squarely on the security of dynamic web applications. Application security is a complex, and shifting, field. Learn about tested and successful techniques to build safer applications, find flaws before they become vulnerabilities, and deploy applications that can detect, and resist attack.&lt;br /&gt;
*'''BIO:''' Justin C. Klein Keane is a security engineer and chapter leaders of OWASP in Philadelphia. For over a decade Justin has worked as a trainer, coder, and exploit developer. Justin is currently writing a book for NoStarch Press on hacking, speaks regularly at conferences, holds a masters degree in information technology from the University of Pennsylvania and is credited with hundreds of application vulnerability discoveries.&lt;br /&gt;
*'''WHEN:''' February 25th 2014&lt;br /&gt;
*'''WHERE:''' Ecole de technologie superieure, 1100 Notre-Dame Street West, Montreal, Room: A-1150&lt;br /&gt;
*'''REGISTRATION:''' http://owaspmtljan2014.eventbrite.ca&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/proven-strategies-for-web-application-security-by-justin-c-klein-keane&lt;br /&gt;
*'''ACADEMIC PARTNER:''' ETS - DCI http://dciets.com/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Welcome speech by Chapter Leader (Jonathan Marcil)&lt;br /&gt;
  18:30-20:00 Main session and open discussion: Proven Strategies for Web Application Security&lt;br /&gt;
  20:00-...   End of the meeting in a pub&lt;br /&gt;
&lt;br /&gt;
[[Image:Dciets.png‎‎‎|100px|link=http://dciets.com/]]&lt;br /&gt;
[[Image:Logo_ets.png|link=http://www.etsmtl.ca/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - January 28th - Latest trends in Mobile Security ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/8qPyKj4FKgY]] [https://youtu.be/8qPyKj4FKgY Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/latest-trends-in-mobile-security-by-francois-proulx]] [https://speakerdeck.com/owaspmontreal/latest-trends-in-mobile-security-by-francois-proulx See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Francois Proulx&lt;br /&gt;
*'''ABSTRACT:''' Last AppSecUSA 2013 had a great line up of talks, especially regarding mobile applications. This session will be covering all the hottest presentations about mobile security by doing an overview from what see saw at AppSecUSA, all with some slides and snippets of presentations that was recorded at the event. Discussion will be encouraged within the audience as this will be more a dynamic event than a regular talk.&lt;br /&gt;
*'''BIO:''' François Proulx is a senior mobile application developer who has worked on dozens of iOS applications since the very beginning of the Apple iOS platform. Over the past few years he has switched his focus to security. He spends a lot of his free time participating in Capture the Flag events (CTFs) and organizing the NorthSec security competition.&lt;br /&gt;
*'''WHEN:''' January 28th 2014&lt;br /&gt;
*'''WHERE:''' UQAM Room PK-1705, Pavillon Président-Kennedy (the big boat at Place des Arts) - 201 Avenue du Président-Kennedy  J2X 3Y7&lt;br /&gt;
*'''REGISTRATION:''' http://owaspmtl-mobilesecurity.eventbrite.ca&lt;br /&gt;
*'''SLIDES/CONTENT:''' [http://www.youtube.com/playlist?list=PLQtB2ug5xmvaQ9jeRWV53-F_T555GQfhW YouTube playlist]&lt;br /&gt;
*'''SPONSOR:''' Academic partner AGEEI-UQAM - http://www.ageei.org/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Welcome speech by Chapter Leader (Jonathan M.)&lt;br /&gt;
  18:30-20:00 Main session and open discussion: Mobile Security&lt;br /&gt;
  20:00-...   End of the meeting in a pub&lt;br /&gt;
&lt;br /&gt;
[[Image:Ageeilogo.jpg|200px|link=http://www.ageei.org/]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Presentations For Download  ====&lt;br /&gt;
&lt;br /&gt;
[http://www.owasp.org/images/0/0d/20100209mstechdaysowaspasvssgiv01-12657916463819-phpapp02.ppt OWASP ASVS] by Sebastien Gioria (09/03/2010) &lt;br /&gt;
&lt;br /&gt;
[http://www.ph-il.ca/slides/afup__authetification_forte.pdf Authentification Forte] by Philippe Gamache (02/02/2010) &lt;br /&gt;
&lt;br /&gt;
[http://www.opensamm.org/downloads/OpenSAMM-1.0.ppt Software Assurance Maturity Model (OpenSAMM)] by Pravir Chandra (03/11/2009) &lt;br /&gt;
&lt;br /&gt;
[http://www.owasp.org/images/d/de/Owasp-montreal-sept-17h-2009-justin-foster.pdf Crossing the Border – Javascript Exploits] by Justin Foster (17/09/2009) &lt;br /&gt;
&lt;br /&gt;
[http://www.owasp.org/images/c/c2/ALaughRIAt.pdf A Laugh RIAt] by Rafal Los (07/04/2009) &lt;br /&gt;
&lt;br /&gt;
[https://www.owasp.org/images/e/eb/OWASP-Montreal-24022009-RobLabbe.pptx Microsoft Security Development Lifecycle for IT] by Rob Labbe (24/02/2009) &lt;br /&gt;
&lt;br /&gt;
[https://www.owasp.org/images/3/39/OWASP-Montreal-24022009-EN.pdf OWASP Goal and Top Ten 2007 for Managers - French version] by Benoit Guerette (24/02/2009)&lt;br /&gt;
&lt;br /&gt;
Newer presentations are available on [https://speakerdeck.com/owaspmontreal Speaker Deck]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Circle_owasp_logo_nowhitebackground.png|200px]]&lt;br /&gt;
&lt;br /&gt;
= OWASP Foundation / Mission OWASP    = &lt;br /&gt;
OWASP Foundation ([https://docs.google.com/a/owasp.org/presentation/d/10wi1EWFCPZwCpkB6qZaBNN8mR2XfQs8sLxcj9SCsP6c/edit?usp=sharing Overview Slides]) is a professional association of [[Membership | global members]] and is open to anyone interested in learning more about software security. Local chapters are run independently and guided by the [[Chapter_Leader_Handbook]].  As a [[About_OWASP | 501(c)(3)]] non-profit professional association your support and sponsorship of any meeting venue and/or refreshments is tax-deductible. Financial contributions should only be made online using the authorized online chapter donation button.  To be a &amp;lt;b&amp;gt;SPEAKER&amp;lt;/b&amp;gt; at ANY OWASP Chapter in the world simply review the [[Speaker_Agreement | speaker agreement]] and then contact the local chapter leader with details of what OWASP PROJECT, independent research or related software security topic you would like to present on.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;La fondation OWASP est une [https://www.owasp.org/index.php/Membership association de professionnels] et elle est ouverte à tout intervenant intéressé à en apprendre davantage sur la sécurité applicative. Les chapitres locaux (dont celui de Montréal) sont gérés de façon indépendante et selon un [https://www.owasp.org/index.php/Chapter_Leader_Handbook manuel de directives à respecter].   &lt;br /&gt;
Toute contribution financière au chapitre peut être faite en ligne en utilisant l’icône prévu à cet effet. Pour être conférencier au sein de n’importe quel chapitre à l’échelle mondiale, vous n’avez qu’à prendre connaissance du document [https://www.owasp.org/index.php/Speaker_Agreement &amp;quot;entente avec les conférenciers – speaker agreement&amp;quot;] et à joindre le responsable du chapitre Montréal avec un descriptif du sujet que vous aimeriez aborder et s’il est relié à un projet OWASP, à de la recherche indépendante ou encore le sujet en particulier, concernant la sécurité applicative, que vous souhaitez aborder.&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== [[Image:Circle_owasp_logo_nowhitebackground.png|128px]] Montreal OWASP Team == &lt;br /&gt;
&lt;br /&gt;
Scope of the team is to discuss and plan local activities and meetings &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Chapter Leaders ===&lt;br /&gt;
&lt;br /&gt;
* [mailto:anne.gauthier@owasp.org Anne Gauthier], President/Présidente&lt;br /&gt;
* [mailto:michel.bourque{at}owasp.org Michel Bourque], Chapter coordinator and marketing manager/Coordination et Marketing&lt;br /&gt;
* [mailto:hugo.genesse(at)owasp.org Hugo Genesse], Web content and production manager/Site internet et Production &lt;br /&gt;
* [mailto:olivier.arteau(at)owasp.org Olivier Arteau], Logistic manager/Logistique&lt;br /&gt;
&lt;br /&gt;
==== Chapter leader history ====&lt;br /&gt;
*2008-2010 - Benoit Guerette, founder and chapter leader&lt;br /&gt;
*2011-2012 - Philippe Gamache, chapter leader (vice chapter-leader since 2010)&lt;br /&gt;
*2013-2015 - Jonathan Marcil, chapter leader&lt;br /&gt;
*2016-... - Anne Gauthier, Michel Bourque, Marius Popescu, Hugo Genesse, Olivier Arteau&lt;br /&gt;
&lt;br /&gt;
==== Old board members ====&lt;br /&gt;
*Philippe Pépos Petitclerc&lt;br /&gt;
*Michael Robillard&lt;br /&gt;
*Benoit Guerette (logistics 2015)&lt;br /&gt;
*Alexandre Rimthong&lt;br /&gt;
*Mathieu Binette&lt;br /&gt;
*Sean Coates&lt;br /&gt;
*Jean-Marc Robert&lt;br /&gt;
*Philippe Blondin&lt;br /&gt;
*Benoit Guerette (founder)&lt;br /&gt;
*Laurent Desaulniers&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;headertabs&amp;gt;&amp;lt;/headertabs&amp;gt; &lt;br /&gt;
__NOTOC__ &lt;br /&gt;
[[Category:Canada]]&lt;/div&gt;</summary>
		<author><name>Svieg</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=File:Owasp-montreal-pci-dss-2-r.jpg&amp;diff=238348</id>
		<title>File:Owasp-montreal-pci-dss-2-r.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=File:Owasp-montreal-pci-dss-2-r.jpg&amp;diff=238348"/>
				<updated>2018-03-05T18:29:12Z</updated>
		
		<summary type="html">&lt;p&gt;Svieg: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Svieg</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=File:Owasp-montreal-pci-dss-r.jpg&amp;diff=238347</id>
		<title>File:Owasp-montreal-pci-dss-r.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=File:Owasp-montreal-pci-dss-r.jpg&amp;diff=238347"/>
				<updated>2018-03-05T17:20:38Z</updated>
		
		<summary type="html">&lt;p&gt;Svieg: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Svieg</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=Montr%C3%A9al&amp;diff=234395</id>
		<title>Montréal</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=Montr%C3%A9al&amp;diff=234395"/>
				<updated>2017-10-14T20:19:55Z</updated>
		
		<summary type="html">&lt;p&gt;Svieg: /* Pourquoi un hacker peut-il contourner les mesures et solutions de sécurité... */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Welcome &amp;amp; Bienvenue to the OWASP Montréal chapter ==&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:OWASP-Montreal-Logo.png|Logo OWASP Montréal]]&lt;br /&gt;
&lt;br /&gt;
The OWASP Foundation was established in 2001 as an open community and software security resource. Since then, OWASP has grown to be globally recognized as a credible source for application security standards. &amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
OWASP is an open community dedicated to enabling organizations to conceive, develop, acquire, operate, and maintain applications that can be trusted. All of the OWASP tools, documents, forums, and chapters are free and open to anyone interested in improving application security. We advocate approaching application security as a people, process, and technology problem because the most effective approaches to application security include improvements in all of these areas. &amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
OWASP is open to anyone. Anyone can attend OWASP's vendor agnostic local chapter meetings, participate in regional and global conferences, and contribute to the many OWASP projects. And anyone can start a new project, form a new chapter, or lend their expertise to help an OWASP Global Committee.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt;On parle français aussi ! Le chapitre de Montréal organise plusieurs activités gratuites afin de partager les connaissances en sécurité applicative avec la communauté de développeurs et gestionnaires. Suivez-nous sur les réseaux sociaux pour connaître les dates des conférences du midi et des workshops !&amp;lt;/b&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Top documentation from OWASP includes: &lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/index.php/Top_10_2013-Top_10 OWASP TOP 10 : The Ten Most Critical Web Application Security Risks]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/images/3/33/OWASP_Application_Security_Verification_Standard_3.0.1.pdf OWASP ASVS : Application Security Verification Standard]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/images/5/52/OWASP_Testing_Guide_v4.pdf OWASP Testing Guide : Penetration Testing Framework]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/images/7/78/OWASP_AlphaRelease_CodeReviewGuide2.0.pdf OWASP Code Review Guide : Source Code Analysis Framework]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/index.php/OWASP_Cheat_Sheet_Series OWASP Cheat Sheet : Best practices guidelines for developers]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org OWASP Global]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Chapter Leaders / Responsables du chapitre ===&lt;br /&gt;
&lt;br /&gt;
* [mailto:anne.gauthier@owasp.org Anne Gauthier], President/Présidente&lt;br /&gt;
* [mailto:michel.bourque{at}owasp.org Michel Bourque], Chapter coordinator and marketing manager/Coordination et Marketing&lt;br /&gt;
* [mailto:hugo.genesse(at)owasp.org Hugo Genesse], Web content and production manager/Site internet et Production &lt;br /&gt;
* [mailto:olivier.arteau(at)owasp.org Olivier Arteau], Logistic manager/Logistique&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt; Volunteers / Volontaires OWASP Montréal: &amp;lt;/b&amp;gt;&lt;br /&gt;
* Simon Lacasse, Web content / Site internet&lt;br /&gt;
* Julien Touche, Logistique&lt;br /&gt;
* Jean-François Gill&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;b&amp;gt; Reach our chapter / Joindre le chapitre &amp;lt;/b&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Follow OWASP's Montreal chapter's activities through social medias, register to events, watch the previous presentations and more! &lt;br /&gt;
&lt;br /&gt;
Suivez les activités du chapitre OWASP Montréal via les réseaux sociaux, inscrivez-vous aux activités, visualisez les anciennes présentations et plus encore! &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;b&amp;gt;[http://lists.owasp.org/mailman/listinfo/owasp-montreal Click here] to join the local chapter mailing list.&lt;br /&gt;
&amp;lt;br /&amp;gt;[http://lists.owasp.org/mailman/listinfo/owasp-montreal Inscrivez-vous ici] à la liste de courriels du chapitre afin de recevoir les dernières nouvelles!&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Want to be part of the community ? &lt;br /&gt;
Devenez membre de notre communauté ! &lt;br /&gt;
[https://www.owasp.org/index.php/Membership_Map Click here / Cliquer ici]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Eb_press_little.gif‎|OWASP Montreal Eventbrite|link=http://owaspmontreal.eventbrite.ca/]] &lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[Image:Yt-brand-standard-logo-630px.png‎|128px|YouTube OWASP Montreal Channel|link=http://www.youtube.com/owaspmontreal]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]   &lt;br /&gt;
[[Image:Speakerdecklogo.png‎|Slides of OWASP Montreal on SpeakerDeck |link=https://speakerdeck.com/owaspmontreal]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Twitter-bird-cropped-onwhite.png|@owaspmontreal on Twitter|link=https://twitter.com/owaspmontreal]]&lt;br /&gt;
[[Image:FacebookSquareLogo.png|OWASP Montreal Facebook page|link=https://www.facebook.com/owasp.montreal]]&lt;br /&gt;
[[Image:LinkedinSquareLogo.png|OWASP Montreal on LinkedIn|link=https://www.linkedin.com/groups/1379007/profile]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
&lt;br /&gt;
== What we do / Nos activités ==&lt;br /&gt;
&lt;br /&gt;
OWASP Montreal is a really active chapter. We organize monthly conferences and workshops. All our events are free and meant to improve the knowledge and awareness of the community's developers, managers and computer security specialists. To be aware of the next event and for additional information, follow us on social medias. &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
OWASP Montréal est un des chapitres les plus actifs. Nous organisons mensuellement des ateliers et conférences. Tous nos événements sont gratuits et ont pour but d'améliorer les connaissances de la communauté. Ils s'adressent donc autant aux gestionnaires qu'aux développeurs et aux spécialistes en sécurité informatique. Pour plus d'informations sur nos activités et pour être au courant des prochaines dates d'événement, suivez nous sur les réseaux sociaux. &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;We also contribute to the vast OWASP knowledge base / Nous contribuons aussi aux ressources d'OWASP&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We list here the projects that were started by our members under OWASP's banner. &amp;lt;br /&amp;gt;&lt;br /&gt;
Nous listons ici les projets commencé par nos membres sous la banière d'OWASP. &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/index.php/Vulnerability_Disclosure_Cheat_Sheet Vulnerability Disclosure Cheat Sheet]&lt;br /&gt;
&lt;br /&gt;
== Sponsorship &amp;amp; Membership / Commandite &amp;amp; Adhésion ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Btn_donate_SM.gif|link=http://www.regonline.com/donation_1044369]] to this chapter or become a local chapter supporter.&lt;br /&gt;
&lt;br /&gt;
Or consider the value of [[Membership | Individual, Corporate, or Academic Supporter membership]]. Ready to become a member? [[Image:Join_Now_BlueIcon.JPG|75px|link=https://myowasp.force.com/]]&lt;br /&gt;
&lt;br /&gt;
[http://www.regonline.com/donation_1044369 Donnez] au chapitre ou devenez commanditaire du chapitre local! &lt;br /&gt;
&lt;br /&gt;
[https://myowasp.force.com/ Devenez membre !] Pour en savoir davantage sur les avantages d’une adhésion individuelle, corporative ou en tant qu’institution d’enseignement, [https://www.owasp.org/index.php/Membership cliquez ici]. &lt;br /&gt;
&lt;br /&gt;
[[Category:OWASP Chapter]]&lt;br /&gt;
&lt;br /&gt;
== Chapter Supporters / Commanditaires du chapitre ==&lt;br /&gt;
&lt;br /&gt;
[https://www.owasp.org/images/9/91/OWASP_Membership_Flyer_Montreal.png All details available here / Pour tous les détails] [[File:Chapter-supporter-owasp-montreal.png|200px|link=]] &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Platinum / Platine ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Gosecure-2.png|GoSecure|link=http://www.gosecure.ca/]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[File:Desjardins2-400x400.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Gold / Or ===&lt;br /&gt;
&lt;br /&gt;
[[Image:PM_SCADA_Logo_Gris_Cybersecurite_FR.png|PM SCADA|link=http://pmscada.ca/en/]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Lunch &amp;amp; Learn / Workshops 2017 =&lt;br /&gt;
&lt;br /&gt;
== Pourquoi un hacker peut-il contourner les mesures et solutions de sécurité... ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hamilton-septembre-2017-1.JPG  ]]&lt;br /&gt;
[[Image:Hamilton-septembre-2017-2.JPG ]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/endpoint-bypass-charles-hamilton]] [https://speakerdeck.com/owaspmontreal/endpoint-bypass-charles-hamilton See the slides / Voir la présentation]&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 September 18th 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
OWASP dans le cadre des Midis conférence est heureux de lancer la saison 2017-2018 en accueillant, M. Charles F. Hamilton.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Notre conférencier viendra brosser un tableau des différents éléments qui expliquent pourquoi les mesures et les solutions de sécurité en générales qui ont la fonction de protéger les données, les applications, les réseaux ou les équipements critiques sont si souvent contournées ou carrément inefficaces contre les attaques ciblées.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Biographie :&amp;lt;br /&amp;gt;&lt;br /&gt;
Charles F. Hamilton est un consultant en sécurité et membre d’équipe « Red Team » de calibre international. Il se spécialise en test d’intrusion et la recherche de solution proactive de sécurité.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Cas d'attaques vécus : Internet des objets (IOT) - Attaques DDoS ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Cas_dattaques_vecus-r.jpg  ]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 June 19th 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
Pour clore la saison printanière 2017, OWASP Montréal est fier d'accueillir au Midi Conférence, M. Christian Shink qui fera un survol de cas d'attaques vécus, des techniques utilisées et des acteurs impliqués dans ces attaques.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
L'incorporation généralisée de dispositifs «intelligents» dans les objets de la vie de tous les jours modifie la façon dont les gens et les machines interagissent les uns avec les autres. Cette incorporation offre une promesse d'une meilleure qualité de vie, une meilleure efficacité. En contrepartie, leur déploiement introduit également des vulnérabilités à la fois dans l'infrastructure qu'ils soutiennent et sur lesquels ils comptent, ainsi que dans les processus qu'ils guident. Que ce soit au niveau applicatif ou des infrastructures, ces vulnérabilités sont exploitées par des acteurs malicieux pour générer des attaques de déni de service massives et sophistiquées. Nous tenterons également de tirer des leçons afin de tenter de minimiser ce type d'attaques dans le futur.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Christian Shink possède plus d’une dizaine d’années d’expérience en développement et sécurité d’applications. Avant de se joindre à Radware, Christian était à l’emploi d'une firme conseil où il a conseillé de nombreuses entreprises, dont de grandes banques américaines et Casinos. Il détient une certification CSSLP et est membre de l'ordre des ingénieurs du Québec.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== HOW TO! Threat Modeling Toolkit ==&lt;br /&gt;
&lt;br /&gt;
[[Image:OWASPMtl-JonathanMarcil-1.jpg]]&lt;br /&gt;
[[Image:OWASPMtl-JonathanMarcil-3.jpg]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/threat-modeling-toolkit]] [https://speakerdeck.com/owaspmontreal/threat-modeling-toolkit See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 May 23rd, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Shopify Montreal&lt;br /&gt;
&lt;br /&gt;
Threat Modeling is a great way to analyze security early in software development by structuring possible attacks, bad actors and countermeasures over a broad view of the targeted system. This talk will describe basic components of a threat model and how to use them effectively.&lt;br /&gt;
Threat Intelligence is where you gather knowledge about the environment and business assets to determine what are the actual threats. But how do you reconcile that with the current architecture in a useful manner?&lt;br /&gt;
The toolkit presented in this talk will enable you to systematically structure related information using graphical notations such as flow diagram and attack tree. In case you are wondering where to start in your organization, a quick lightweight risk rating methodology will also be proposed.&lt;br /&gt;
And in the end, you’ll see how we can all tie those together and get threat modeling to a point where it’s an efficient application security activity for communication. Doing this will prevent security reviews from missing important things even when chaos prevails during the realization of a project.&lt;br /&gt;
Modeling concepts will be demonstrated with an actual IoT device used as example.&lt;br /&gt;
Presentation will be done in english.&lt;br /&gt;
&lt;br /&gt;
Speaker Bio:&lt;br /&gt;
Jonathan Marcil is the former chapter leader of OWASP Montreal and is now Senior Application Security Engineer at Blizzard Entertainment in beautiful Orange County, California.&lt;br /&gt;
Jonathan has been involved with OWASP for many years and has been behind the Media Project which gathered and promoted AppSec conferences video content in the official OWASP YouTube channel. He was also part of NorthSec CTF event as a challenge designer specialized in Web and imaginative contraptions.&lt;br /&gt;
He is passionate about Application Security and enjoys architecture analysis, code review, threat modeling and debunking security tools. He holds a diploma in Software Engineering from ÉTS Montreal and has more than 15 years of experience in Information Technology and Security.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Merci à nos précieux commanditaires !&lt;br /&gt;
&lt;br /&gt;
== Security Testing: Unlocking the Benefits of a Hybrid Approach ==&lt;br /&gt;
[[Image:Security testing hybrid approach-r 3.jpg    ]]&lt;br /&gt;
[[Image:Security testing hybrid approach-r 4.jpg    ]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/hybrid-approach-to-security-testing]] [https://speakerdeck.com/owaspmontreal/hybrid-approach-to-security-testing See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 April 24th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
As part of their defensive efforts, businesses commonly commission cybersecurity assessments of their web applications; with the aim of identifying any weaknesses in the security controls and ensuring a continually strong cybersecurity posture of their systems.&lt;br /&gt;
&lt;br /&gt;
The classical approach of either secure code review (white box) or penetration testing (black box) assessment have proven to be effective in securing of web applications. The new trend, however, is moving towards the combination of these two approaches; expert consensus is rapidly recognizing the advantages of using a hybrid approach. When applied properly, a hybrid approach can build on the strengths of both white and black box testing, while compensating for their individual shortcomings.&lt;br /&gt;
&lt;br /&gt;
In this presentation, we will examine the details of secure code review and penetration testing, and run demos to contrast their respective strengths and weaknesses. We will also examine why a hybrid approach can produce more complete and relevant assessment results. To conclude, we will cover proven approaches, and practical techniques, on how you can start leveraging a hybrid approach to web application assessments today.&lt;br /&gt;
&lt;br /&gt;
Anne Gauthier is an application security analyst at GoSecure. Anne is also the president of the Montreal Chapter of OWASP – the industry standard for web application security. With a penetration testing background, she specializes in secure code reviews and in helping companies to improve their software development lifecycle (SDLC) according to industry best practices. Anne is CSSLP, GWAPT and GSSP-JAVA certified. She obtained a Software Engineering bachelor’s degree from Ecole de Technologie Supérieure in Montréal and is now pursuing a Master of Engineering (MEng) degree in Information Systems Security at Concordia University. She is the author of the Project 201 Security blog.&lt;br /&gt;
&lt;br /&gt;
Merci à nos précieux commanditaires !&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;HOW-TO&amp;quot; NIGHT ! Tout sur les CTFs (Capture The Flag) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Howto_ctf.jpg]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://docs.google.com/presentation/d/1zEsCcX-Nvq8Nz0k-B1zHejCDNT2oGZx8oUBgMbvvMM0/edit#slide=id.p ]] [https://docs.google.com/presentation/d/1zEsCcX-Nvq8Nz0k-B1zHejCDNT2oGZx8oUBgMbvvMM0/edit#slide=id.p See the slides / Voir la présentation (Laurent Desaulniers)]&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://docs.google.com/presentation/d/1c1P1d2mKe767j1Y0V9cK6De5cpnK4I7GI-ORiodbg1A/edit#slide=id.p ]] [https://docs.google.com/presentation/d/1c1P1d2mKe767j1Y0V9cK6De5cpnK4I7GI-ORiodbg1A/edit#slide=id.p See the slides / Voir la présentation (Charles Hamilton)]&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=http://obilodeau.github.io/slides/2017-04-04_how-not-to-suck-at-ctfs/ ]] [http://obilodeau.github.io/slides/2017-04-04_how-not-to-suck-at-ctfs/ See the slides / Voir la présentation (Olivier Bilodeau)]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 April 4th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Shopify&lt;br /&gt;
&lt;br /&gt;
Cette nouvelle soirée &amp;quot;How-To&amp;quot; Night d'OWASP Montréal vise à présenter les CTFs (une compétition Capture The Flag) et aider les équipes à démarrer et à continuer à évoluer dans leurs pratique de la cyber sécurité pratique. L'objectif est d'outiller les participants en leur fournissant des ressources techniques et des contacts afin de les aider à progresser.&lt;br /&gt;
&lt;br /&gt;
Les éléments discutés seront:&lt;br /&gt;
&lt;br /&gt;
- Composition optimale d’une équipe : Fonctionnement d’une équipe de CTF et les principaux rôles (chef d’équipe, cryptographie, application web, rétro ingénierie et les causes perdues).&lt;br /&gt;
&lt;br /&gt;
- Pourquoi faire des CTFs? Discussion sur les différents styles (jeopardy, attack/defense, etc.), quels sont les problèmes fréquemments rencontrés + plusieurs anecdotes intéressantes (et drôles).&lt;br /&gt;
&lt;br /&gt;
- Trucs de Mr. Unikoder : Le créateur du fameux site ringzer0team, soit un des plus gros sites pour apprendre la résolution de problèmes de CTF (https://ringzer0team.com/) Apprenez des trucs du meilleur, sur comment débuter et interpréter un challenge web, binaire et crypto avec des trucs réels du métier.&lt;br /&gt;
&lt;br /&gt;
Matériel requis :&lt;br /&gt;
&lt;br /&gt;
    Votre légendaire enthousiasme&lt;br /&gt;
&lt;br /&gt;
Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
&lt;br /&gt;
Places limitées. Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Shopify pour l'événement.&lt;br /&gt;
&lt;br /&gt;
Présentateurs :&lt;br /&gt;
&lt;br /&gt;
Charles Hamilton, Senior Consultant chez Mandiant, FireEye, Inc.&lt;br /&gt;
&lt;br /&gt;
Olivier Bilodeau, Cybersecurity Research Lead at GoSecure&lt;br /&gt;
&lt;br /&gt;
Laurent Desaulniers, Senior Security Solution Specialist at Bell Canada&lt;br /&gt;
&lt;br /&gt;
== NorthSec - Applied Security Event ==&lt;br /&gt;
[[Image:Nsec_2017_midi_conf.jpg]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/northsec-applied-security-event]] [https://speakerdeck.com/owaspmontreal/northsec-applied-security-event See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 April 4th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
NorthSec: La plus grande compétition et conférence en cyber sécurité au Canada&lt;br /&gt;
&lt;br /&gt;
NorthSec est un organisme sans but lucratif qui organise une conférence et une compétition de sécurité de type &amp;quot;Capture-The-Flag&amp;quot; (CTF) et des formations. Avec plus de 400 participants présents sur le site pour la compétition, c’est la plus grande compétition du genre au monde.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
La conférence, dans sa 3e année, attire des présentateurs internationaux avec du contenu technique exclusif. L’ajout des séances de travail (workshops) devrait plaire aux plus chevronnés des binaires.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Des formations de 3 jours sont offertes avant la conférence: &amp;quot;Advanced Web Application Security&amp;quot; par Philippe Arteau et &amp;quot;Malware and Memory Forensics&amp;quot; par Michael Ligh, co-auteur des livres &amp;quot;Malware Analyst Cookbook&amp;quot; et &amp;quot;The Art of Memory Forensics&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
NorthSec est situé au Marché Bonsecours dans le Vieux-Port de Montréal au printemps du 15 au 21 mai 2017.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
La présentation couvrira:&lt;br /&gt;
&lt;br /&gt;
- Le plan pour 2017&amp;lt;br /&amp;gt;&lt;br /&gt;
- Ce qui différencie NorthSec&amp;lt;br /&amp;gt;&lt;br /&gt;
- Comment équilibrer une compétition pour les débutants et les experts&amp;lt;br /&amp;gt;&lt;br /&gt;
- Comment bâtir une infrastructure basée sur les conteneurs qui gère 50 équipes dans quelques serveurs sans qu’ils ne se partagent de machines virtuelles&amp;lt;br /&amp;gt;&lt;br /&gt;
- Comment faire du pain au levain à grande échelle&amp;lt;br /&amp;gt;&lt;br /&gt;
- Présentation de quelques défis et solutions&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Les présentateurs:&lt;br /&gt;
&lt;br /&gt;
- Gabriel Tremblay, Président, Delve Labs&amp;lt;br /&amp;gt;&lt;br /&gt;
- Olivier Bilodeau, VP Formations, Co-fondateur MontréHack, GoSecure&amp;lt;br /&amp;gt;&lt;br /&gt;
- Pierre-David Oriol, VP Conférences, Delve Labs&amp;lt;br /&amp;gt;&lt;br /&gt;
- Benoit Guérette, VP Partenaires, Desjardins&amp;lt;br /&amp;gt;&lt;br /&gt;
- Laurent Desaulniers, Tisserand de drapeaux, Bell Canada&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Merci à nos précieux commanditaires !&lt;br /&gt;
&lt;br /&gt;
== Sécurité des applications : Les fondements ==&lt;br /&gt;
[[Image:Tanya.jpeg]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/securite-des-applications-les-fondements]] [https://speakerdeck.com/owaspmontreal/securite-des-applications-les-fondements See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 March 20th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
OWASP Montréal est fier d’accueillir au Midi Conférence du mois de mars, Mme Tanya Janca, Co-Leader du chapitre OWASP Ottawa et spécialiste de la sécurité applicative au sein du Gouvernement fédéral.&lt;br /&gt;
&lt;br /&gt;
La conférence « Les fondements de la sécurité des applications » sera présentée en anglais.&lt;br /&gt;
&lt;br /&gt;
Session Description : Everyone has heard about the problem; everyone is “getting hacked”. But what is the answer? From scanning your code with a vulnerability scanner to red teaming exercises, developer education programs and bug bounties, this talk will take the audience through all the possibilities of an extensive application security program, with a detailed explanation of each part.&lt;br /&gt;
&lt;br /&gt;
Bio : Tanya Janca is an application security evangelist, a web application penetration tester and vulnerability assessor, a secure code reviewer, an ethical hacker, the Co-Leader of the OWASP Ottawa chapter, and has been developing software since the late 90’s. She has worn many hats and done many things, including; Custom Apps, Ethical Hacking, COTS, Incident Response, Enterprise Architect, Project and People Management, and even Tech Support. She is currently helping the Government of Canada secure their web applications.&lt;br /&gt;
&lt;br /&gt;
Merci à notre commanditaire principal de cet événement: Ubitrak!&lt;br /&gt;
&lt;br /&gt;
== WORKSHOP ! Server Side Template Injection (SSTI) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-okiok-SSTI-r.jpg | WORKSHOP ! Server Side Template Injection (SSTI) ]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/workshop-server-side-template-injection-ssti]] [https://speakerdeck.com/owaspmontreal/workshop-server-side-template-injection-ssti See the slides / Voir la présentation]&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 22 Février 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Shopify Montréal&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
OWASP Montreal vous invite à un atelier portant sur la sécurité des applications web supportant les moteurs de template (Template Engine). Le principe de séparation entre la présentation du site (code HTML statique) et de son contenu dynamique facilite la création de documents HTML et la capacité à modifier l'apparence du site sans mélanger le traitement et le rendu de la page. L'utilisation de moteurs de template amène de nouveaux enjeux de sécurité. Les vulnérabilités de type Server Side Template Injection (SSTI) sont exploitables à travers les données (non fiables) fournies par l'utilisateur et conduisent à l'exécution de code arbitraire (RCE) sur le serveur hébergeant l'application web.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ce workshop a pour but d'introduire cette classe de vulnérabilité à travers différents cas d'implémentation (php, java, python).&lt;br /&gt;
Nous verrons comment identifier et exploiter ces vulnérabilités et de quelle manière un attaquant peut &lt;br /&gt;
s'y prendre pour exécuter du code arbitraire sur le serveur afin d'en prendre le contrôle.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Niveau : Intermédiaire&amp;lt;br /&amp;gt;&lt;br /&gt;
Matériel requis :&lt;br /&gt;
* Votre portable&lt;br /&gt;
* Votre distribution Linux/Unix de votre choix&lt;br /&gt;
* Votre proxy Web de votre choix&lt;br /&gt;
&lt;br /&gt;
Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
Places limitées. Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Shopify pour l'événement.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Présentateur : Gérôme Dieu&amp;lt;br /&amp;gt;&lt;br /&gt;
Gérôme Dieu cumule plus de 7 années d’expérience en technologies de l’information et en sécurité. &lt;br /&gt;
Il œuvre à titre de conseiller senior en sécurité de l’information au sein de la firme OKIOK. Ces dernières années, il a acquis une expertise dans le domaine de la sécurité des applications web aussi bien d'un point de vue offensif que défensif. En plus de réaliser des tests d’intrusion pour des clients internationaux, Gérôme s’implique dans la recherche et développement afin de maintenir à la fine pointe de la technologie les tests d'intrusion et d'analyse de vulnérabilités. &amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Merci à Shopify d'héberger l'événement !&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Shopify Logo-r.png| Shopify | link=https://www.shopify.com/]]&lt;br /&gt;
== Le courriel en 2017 – risques et menaces pour tous ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Zero spam 2.jpg|Le courriel en 2017 – risques et menaces pour tous]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://www.youtube.com/watch?v=HX2vcijcCWw ]] [https://www.youtube.com/watch?v=HX2vcijcCWw Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 Le 23 janvier 2017 à midi&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
Monsieur Poellhuber nous brossera un tableau du phénomène grandissant du rançongiciels et de l'hameçonnage, personnification.&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
- Par les années passées, la menace courriel se résumait principalement en un fort volume de contenu simplement indésirable. Aujourd’hui la menace a passablement évolué. Quels sont les véritables risques actuels associés au courriel ? Rançongiciels, hameçonnage, personnification. Cette conférence présentera les nouveaux défis de sécurité pour les organisations qui doivent composer avec des attaques de plus en plus sophistiquées et de plus en plus ciblées tout en protégeant leur réputation. Des exemples biens réels, drôles et moins drôles seront disséqués pour bien dessiner l’ampleur de l’enjeu.&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
M. David Poellhuber, Chef de l’exploitation, ZEROSPAM Sécurité Inc&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note biographique :&amp;lt;br /&amp;gt;&lt;br /&gt;
Monsieur David Poellhuber oeuvre dans l’industrie de la sécurité informatique depuis quinze ans. Il a été conférencier dans plusieurs forums de sécurité au Canada et est maintenant reconnu comme une autorité en matière de sécurité du courriel. Il a fondé ZEROSPAM Sécurité en 2003, le premier service Québécois externalisé de sécurité du courriel infonuagique qui se distingue par sa convivialité, son efficacité et ses technologies de détection proactives.&amp;lt;br /&amp;gt;&lt;br /&gt;
Audience :  Généralistes et spécialistes de la sécurité des TI &lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Merci à Ubitrack pour le repas et à Desjardins d'héberger l'événement!&lt;br /&gt;
&lt;br /&gt;
[[Image:Ubitrak-r2.jpg|Ubitrak|link=http://www.ubitrak.com/fr/]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&lt;br /&gt;
== Effective XSS Mitigation ==&lt;br /&gt;
&lt;br /&gt;
[[Image:XSS mitigation.jpg | Effective XSS Mitigation ]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=http://slides.com/olivierarteau/xss-mitigation ]] [http://slides.com/olivierarteau/xss-mitigation See the slides / Voir la présentation]&lt;br /&gt;
&lt;br /&gt;
WHEN &lt;br /&gt;
 18 Janvier 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Google Montréal&lt;br /&gt;
&lt;br /&gt;
FRANÇAIS/ENGLISH&amp;lt;br /&amp;gt;&lt;br /&gt;
La mitigation de XSS a été un sujet important au cours des dernières années. Les navigateurs ont implémenté, en autre, deux fonctionnalités pour mitiger leur impact : l'entête &amp;quot;XSS-Protection&amp;quot; et l'entête &amp;quot;Content-Security-Policy&amp;quot;. Par contre, obtenir une mitigation contre les XSS efficace est souvent plus complexe que l'on pense. Cet atelier couvrira les deux entêtes. Il expliquera comme il est possible de contourner ces protections et ce qu'il est possible de faire pour se protéger. Des exercices de type &amp;quot;offensif&amp;quot; et &amp;quot;défensif&amp;quot; seront proposés.&lt;br /&gt;
Mitigation for XSS as been an important topic in the last few years. Browsers have implemented two main functionalities to help mitigate the impact of XSS : the &amp;quot;XSS-Protection&amp;quot; header and the &amp;quot;Content-Security-Policy&amp;quot; header. But, getting an effective XSS mitigation of those headers is trickier than it may seem. This workshop will cover both of those headers. It will explain how bypass of those protection work and what you can do about it. It will have both &amp;quot;defensive&amp;quot; exercises and &amp;quot;offensive&amp;quot; exercises.&lt;br /&gt;
Niveau : débutant/intermédiaire&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Matériel requis :&lt;br /&gt;
&lt;br /&gt;
Votre portable&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
&lt;br /&gt;
Places limitées. Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Google pour l'événement.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Présentateur : Olivier Arteau&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Olivier Arteau est un professionnel en sécurité informatique depuis quelques années et fait partie de l’équipe de test d’intrusion de Desjardins. Il est aussi un amateur de CTF qui a gagné à plusieurs reprises le CTF du NorthSec avec l’équipe HackToute et participe fréquemment à d’autres CTF avec l’équipe DCIETS.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Merci à Google d'héberger l'événement! &lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-zap-4-r.jpg | Google | link=https://www.google.ca/ ]]&lt;br /&gt;
&lt;br /&gt;
= Lunch &amp;amp; Learn / Workshops 2015-2016 =&lt;br /&gt;
&lt;br /&gt;
== WORKSHOP ! Top 10 OWASP - Unleash the threats ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-top10.jpg | WORKSHOP! Top 10 OWASP - Unleash the threats ]]&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 30 novembre 2016 de 17h30 à 20h30&lt;br /&gt;
WHERE&lt;br /&gt;
 Immunio @ WeWork&lt;br /&gt;
&lt;br /&gt;
De nos jours, la sécurité applicative est essentielle dans l’écosystème des entreprises de toutes tailles. Les vecteurs d’attaques sont multiples, les vulnérabilités de sécurité dans les applications peuvent être désastreuses et les impacts d’un « Hack » peuvent être irréversibles pour l’entreprise; vols de données sensibles, perte de réputation, perte de $$$$$, etc.&lt;br /&gt;
L’objectif du workshop est de comprendre la base sur les vulnérabilités de sécurité dans les applications et les techniques d’exploitation utilisées par les pirates informatiques, en plus de connaître les bonnes pratiques de développement en matière de sécurité applicative. &lt;br /&gt;
Avec l'aide de WebGoat, Damn Vulnerable Web Application et de Kali Linux, vous pourrez participer&lt;br /&gt;
à l'exploitation des applications et découvrir les techniques utilisées par les attaquants.&lt;br /&gt;
&lt;br /&gt;
Niveau : débutant&lt;br /&gt;
&lt;br /&gt;
Matériel requis :&lt;br /&gt;
 Votre portable&lt;br /&gt;
 Kali Linux&lt;br /&gt;
 La VM du workshop, envoyée aux participants&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
&lt;br /&gt;
Places très limitées (nb = 10). Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Immunio &amp;amp; WeWork pour l'événement.&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Présentateur : Christian Leclerc&lt;br /&gt;
&lt;br /&gt;
Christian est spécialisé en conception et développement de solutions web sécuritaires. Tout au long de sa carrière, il a acquis une vaste expertise sur plusieurs types de technologies et méthodologies, intégré la sécurité dans le cycle de développement d’applications, effectué des revues de code sécurité, déployé des outils d’analyse des vulnérabilités et mis en place des systèmes d’authentification. De plus, il a participé à la conception et au développement de solutions sécuritaires de pointe comme la signature électronique à l’aide d’une infrastructure à clé publique (PKI), les authentifications fortes, le Registre des consentements au don d'organes et de tissus (RDOQ.org) et la migration de plusieurs applications web vers un environnement SOA (Service Oriented Architecture). &lt;br /&gt;
&amp;lt;br&amp;gt;Merci à Immunio &amp;amp; WeWork d'héberger l'événement!&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:Immunio-horizontal-r.png|Immunio|link=https://www.immun.io/]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[Image:Wework-r.jpg|WeWork|link=https://www.wework.com/]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Histoire d'un Hack ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Histoire-dun-hack-r.jpg | Histoire d'un Hack ]]&lt;br /&gt;
&lt;br /&gt;
WHEN &lt;br /&gt;
 21 novembre 2016 à midi&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
Pour son activité du mois de novembre, OWASP Montréal propose à la communauté de la sécurité des TI et aux gestionnaires de faire l'autopsie d'une attaque de haute voltige sur un site web et des outils mis à la disposition par OWASP.&lt;br /&gt;
 &lt;br /&gt;
Bernard Bolduc cumule plus de 17 années d’expérience en technologies de l’information et en sécurité. Il œuvre à titre de conseiller senior en sécurité de l’information au niveau d’entreprise de classe nationale et internationale.&lt;br /&gt;
 &lt;br /&gt;
Bernard se spécialise en sécurité Unix, applicative et en gestion de la sécurité des télécommunications. Il combine ces expertises techniques afin d’obtenir des résultats probants et efficaces pour ces clients des secteurs bancaire, télécommunication et multimédias, de l’énergie ou des services publiques. Tout au long de sa carrière, Bernard s’est toujours maintenu à jour sur les dernières menaces de sécurité technologique et commerciale en assistant à des formations spécialisées et d'échanger avec un grand nombre de partenaires dans l'industrie de la sécurité.&lt;br /&gt;
 &lt;br /&gt;
La conférence débute à midi.&lt;br /&gt;
 &lt;br /&gt;
La conférence vous donne droit à 1 CPE et pour les 50 premières personnes, un lunch gratuit.&lt;br /&gt;
 &lt;br /&gt;
Merci à Desjardins d'héberger l'événement!&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Workshop ! Création de votre première extension OWASP ZAP (ou BurpSuite) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-zap-mix.jpg | Workshop ! Création de votre première extension OWASP ZAP (ou BurpSuite)]]&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 11 novembre 2016 de 18h à 21h&lt;br /&gt;
&lt;br /&gt;
WHERE &lt;br /&gt;
 Google Montréal&lt;br /&gt;
&lt;br /&gt;
OWASP Zed Attack Proxy (ZAP) est un scanneur de vulnérabilités et un outil de débogage HTTP. Ce type d'outil est crucial dans un test d'intrusion web et contient un lot intéressant de fonctionnalités. Cela dit, il est possible d'étendre les fonctionnalités. Plusieurs types d'extension sont possibles : vue alternative pour les requêtes ou les réponses, scanneur passif des réponses, scanneur actif produisant des requêtes, etc.&lt;br /&gt;
&lt;br /&gt;
Plusieurs options seront données, par exemple :&lt;br /&gt;
&lt;br /&gt;
 Détection automatique de flag dans les sources&lt;br /&gt;
 Scanneur actif asynchrone DNS&lt;br /&gt;
 Ou votre propre idée&lt;br /&gt;
&lt;br /&gt;
Pour chacune des suggestions, des squelettes de code seront fournis pour les APIs de ZAP. Pour les utilisateurs de BurpSuite, des directives analogues seront également données.&lt;br /&gt;
&lt;br /&gt;
Niveau : débutant / intermédiaire&lt;br /&gt;
&lt;br /&gt;
Matériel requis&lt;br /&gt;
&lt;br /&gt;
 Votre portable&lt;br /&gt;
 [https://www.owasp.org/index.php/OWASP_Zed_Attack_Proxy_Project OWASP ZAP (gratuit)]&lt;br /&gt;
 [https://portswigger.net/burp/download.html BurpSuite]&lt;br /&gt;
 Éditeur de code pour Java, Python ou Ruby&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Présentateur : Philippe Arteau&lt;br /&gt;
&lt;br /&gt;
Philippe est un chercheur en cybersécurité chez GoSecure. Il est l'auteur de l'outil d'analyse statique Java &amp;quot;Find Security Bugs&amp;quot;. Il a découvert des vulnérabilités importantes dans les logiciels populaires tels que Google Chrome, Dropbox, Paypal, RunKeeper et Jira. Il a présenté dans différentes conférences incluant Black Hat USA, Black Hat Europe, ATL Sec Con, NorthSec, Hackfest (QC) et JavaOne. Il a développé de nombreux plug-ins pour les outils de proxy BurpSuite et OWASP ZAP (Retire.js, Reissue Request Script, PDF preview et Image Metadata). Il a fait également des contributions à d'autres plug-ins comme J2eeScan.&lt;br /&gt;
&lt;br /&gt;
Merci à Google d'héberger l'événement! &lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-zap-4-r.jpg | Google | link=https://www.google.ca/ ]]&lt;br /&gt;
&lt;br /&gt;
==Logiciel de rançon (Ransomware) s'attaque au domaine de la santé==&lt;br /&gt;
&lt;br /&gt;
[[Image:HackingHealth-2.jpg | Logiciel de rançon (Ransomware) s'attaque au domaine de la santé ]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/ransomware-and-healthcare-hacking-health ]] [https://speakerdeck.com/owaspmontreal/ransomware-and-healthcare-hacking-health See the slides / Voir la présentation]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;(Conférence en anglais)&lt;br /&gt;
Pour le lancement de la saison 2016 - 2017, OWASP Montréal propose à la communauté de la sécurité des TI et aux gestionnaires de la santé une incursion dans le monde du logiciel malveillant ciblant le domaine de la santé.&amp;lt;br /&amp;gt;&lt;br /&gt;
Cette conférence s'intége dans le Coopérathon co-organisé par le Mouvement Desjardins et Hacking Health.&amp;lt;/b&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Le domaine de la santé serait devenu une cible privilégiée des campagnes de ransomware parce que l'industrie a souvent payé la rançon demandée pour récupérer les données confidentielles et vitales de ses clients. Monsieur Ed Gershfang nous brossera un portrait du phénomène et des meilleures pratiques à mettre en place en matière de sécurité applicative.&lt;br /&gt;
Ed Gershfang possède une expérience solide dans l'infrastructure informatique et plus de 6 ans d'expérience dans les domaines de la sécurité de l'information, de la vulnérabilité, de la gouvernance et de la gestion des risques. Il était directeur de la sécurité pour la société PeriGen, un chef de file de développement de logiciels médicaux en Israël.&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== La sécurité applicative vue par un pentesteur ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Juin2016-OWASPMtl.jpg | OWASP Montréal reçoit Mario Contestabile, Pentester de renom ]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
From Left to Right : Isabelle Lusseyran, Head of Development at Hacking Health. Eduard Gershfang Information Security Analyst at WSP | Parsons Brinckerhoff.&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/owasp-montreal-recoit-mario-contestabile ]] [https://speakerdeck.com/owaspmontreal/owasp-montreal-recoit-mario-contestabile See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Pour clore la saison 2015 – 2016, OWASP Montréal est fier d’accueillir au Midi Conférence un des architectes de renom du développement applicatif au Canada, monsieur Mario Contestabile.&lt;br /&gt;
En tant qu’auteur de plusieurs centaines de tests d’intrusion, il connait tous les rouages de ce qu’est véritablement une application Web «sécurisée». Mais avez-vous déjà remarqué que les rapports de tests d’intrusion mentionnent rarement, voir jamais : «Votre site est très difficile à pirater. Félicitations !» ?&lt;br /&gt;
Et qu’en est-il de ces rapports qui contiennent des dizaines de soi-disant vulnérabilités ? Est-ce que cela signifie d’emblée que l’application devrait être mise hors ligne ?  &lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Lors de cette conférence, nous examinerons des rapports concrets (ambigus) de vulnérabilités et nous les analyserons afin de mieux comprendre si elles représentent une véritable menace, ou si elles ne servent qu’à «remplir» les rapports.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Avec son expertise en protection et en attaque d’applications Web, il abordera les points suivants :&lt;br /&gt;
Comment pouvez-vous sélectionner des systèmes de façon à mieux exécuter des protections de sécurité ?&lt;br /&gt;
Éviter certains pièges dans votre application Web qui rendent les attaques plus faciles et la protection plus difficile.&lt;br /&gt;
De nos jours, que peuvent faire les développeurs à l’intérieur de systèmes communs, qui puisse me rendre la tâche plus ardue en tant que « hacker »?&lt;br /&gt;
Pouvons-nous exiger de meilleurs rapports de la part des firmes de sécurité?&lt;br /&gt;
À quoi devrions-nous nous attendre de la part d’un « pentesters »?&lt;br /&gt;
Comment pouvons-nous savoir si le « pentester » a vérifié les failles de l’application et qu’il n’a pas simplement utilisé un scanneur?&lt;br /&gt;
Et enfin, comment pouvons-nous aider les « ethical hackers » à obtenir un meilleur rendement lors d’un test d’intrusion?&lt;br /&gt;
Il expliquera le sujet en détails, et ensemble, nous verrons de quelles façons les développeurs d’applications peuvent exploiter le savoir-faire des « pentesters », et comment nous pouvons faire en sorte qu’une application Web soit protégée.&lt;br /&gt;
Biographie :&lt;br /&gt;
Mario Contestabile est reconnu comme l’un des experts en sécurité les plus réputés au Canada. Son expertise, construire et protéger votre plateforme applicative. Ancien développeur C++ et Java, Mario partage ses nombreuses connaissances en « ethical hacking » et en développement de codes sécurisé.  &lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Tuesday, 14 June 2016 from 12:00 PM to 1:00 PM (EDT) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Comment protéger les applications mobiles? ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Avril2016-OWASPMtl.png | Comment protéger les applications mobiles? ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/comment-proteger-les-applications-mobiles ]] [https://speakerdeck.com/owaspmontreal/comment-proteger-les-applications-mobiles See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Dans le cadre des Midis Conférence à l'Espace Desjardins, l'équipe OWASP Montréal vous invite à assister à une présentation sur les vulnérabilités les plus communes associées aux appareils mobiles. &lt;br /&gt;
Marie-Claire Willig détaillera entre autres comment stocker de façon sécuritaire les données de l’application mobile ainsi que protéger l’application contre des attaques externes. Des outils simples vous seront dévoilés pour détecter ces vulnérabilités.&lt;br /&gt;
Marie-Claire est une professionnelle d'expérience en sécurité appliquée.&lt;br /&gt;
Une grande partie de son intérêt professionnel réside actuellement dans un domaine assez niche, soit la revue de code sécuritaire, un fondement important de tout cycle de développement sécuritaire en entreprise.&lt;br /&gt;
Au sein de l'équipe de sécurité technologique Desjardins, elle est, en autre, responsable de former les développeurs (Java et .NET principalement) afin de les sensibiliser aux meilleures pratiques de développement sécuritaire.&lt;br /&gt;
Également, elle est une professionnelle des tests d'intrusion sur les applications web, les applications mobiles ainsi que l'infrastructure réseau.&lt;br /&gt;
Bienvenue à tous&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 20 April 2016 from 12:15 PM to 1:00 PM (EDT) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== NorthSec, Le plus gros événement de cybersécurité appliquée au Canada ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Mars2016-OWASPMtl.jpg | NorthSec, Le plus gros événement de cybersécurité appliquée au Canada ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/YQtvltQYs7Y]] [https://youtu.be/YQtvltQYs7Y Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
OWASP Montréal est fier d’inviter au Midi Conférence de mars, NorthSec est le plus gros événement de sécurité appliquée au Canada qui comprend deux jours de formation, deux jours de conférences ainsi qu’une compétition du genre « capture the flag » (CTF) de trois jours.&lt;br /&gt;
Gabriel Tremblay, Benoit Guerette, Pierre-David Oriol et Laurent Desaulniers viendront vous parler de cet organisme sans but lucratif dynamique qui est géré par une équipe de bénévoles passionnés qui donnent à chaque année leur énergie et leur temps pour soutenir la communauté de la sécurité de l’information.&lt;br /&gt;
Le volet compétition, l’épreuve maîtresse, est présentée sous forme d’un scénario qui rend cohérent une centaine de défis techniques. Les équipes de participants attaquent l’infrastructure de compétition pour soutirer des drapeaux (flags) à travers un ensemble de vulnérabilités présentes comme de l’injection SQL, des XSS ou encore l’exploitation d’exécutables sur systèmes embarqués. Quelques exemples de défis des années passées seront également présentés.&lt;br /&gt;
Le volet conférence, qui est à sa 2ème année, met de l’avant plusieurs présentations techniques touchant la sécurité applicative mais aussi l’éthique et leurs impacts sociaux. Certaines présentations confirmées seront dévoilés.&lt;br /&gt;
Le tout nouveau volet formation propose deux formations en sécurité applicative de calibre international (anglais) : “Advanced Web Security Testing with Burp Pro” et “Modern Object-Oriented Malware Reverse Engineering”.&lt;br /&gt;
Venez aussi, découvrir comment l'équipe est partie d'une idée en 2012 pour se rendre à un évènement d'envergure, qui rassemblera plus de 600 professionnels, étudiants et autres passionnés de sécurité appliquée lors de la 4ème édition qui aura lieu du 17 au 22 mai 2016 au Marché Bonsecours.&lt;br /&gt;
Finalement, la mission, la vision ainsi que les activités sociales de la semaine de NorthSec sont aussi au menu de cette présentation qui sera suivie d’une période de questions.&lt;br /&gt;
&lt;br /&gt;
Gabriel Tremblay, Delve Labs, Président&lt;br /&gt;
Benoit Guerette, Desjardins, VP Finances&lt;br /&gt;
&lt;br /&gt;
Pierre-David Oriol, Delve Labs, VP Conférence&lt;br /&gt;
Laurent Desaulniers, Bell Canada, Artisant de drapeaux&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 23 March 2016 from 12:00 PM to 1:00 PM (EDT) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== La sécurité applicative et l'hameçonnage - February 24th ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Fevrier2016-OWASPMtl.jpg | La sécurité applicative et l'hameçonnage ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/1RYlOiIENjQ]] [https://youtu.be/1RYlOiIENjQ Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
De nos jours, une des méthodes les plus efficaces pour contourner les périmètres de sécurité externes est l'hameçonnage conjointement avec l’abus de certaines technologies Web.&lt;br /&gt;
&lt;br /&gt;
Dans le cadre ses activités, OWASP Montréal est heureux d'inviter d'accueillir, l'équipe OKIOK qui présentera les impacts liés à ce type d'attaque, tel que vu et expérimenté en entreprise ainsi que les plans d'action pour traiter ces risques. La présentation abordera aussi bien la sécurité web et applicatives, des systèmes informatiques ainsi que de la sécurité physique de centres de données. &lt;br /&gt;
&lt;br /&gt;
    Capture d'informations sensibles par imitations de portails Web ;&lt;br /&gt;
    Authentification Web par 2-facteurs ;&lt;br /&gt;
    Injection SMTP dans des formulaires Web ;&lt;br /&gt;
    Attaque de type “Drive-by-download”;&lt;br /&gt;
    Prise de contrôle à distance à travers des flux HTTP;&lt;br /&gt;
    Attaque de CSRF à partir de courriels ;&lt;br /&gt;
    Attaque d'hameçonnage basée sur des achats par Internet (ex : PayPal).&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
When&lt;br /&gt;
 Wednesday, 24 February 2016 from 12:00 PM to 1:15 PM (EST) - Add to Calendar &lt;br /&gt;
Where&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest Montreal, Quebec CA&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Internet of {Things, Threats} - January 20th ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Janvier2016-OWASPMtl-R.png | Internet of {Things, Threats} ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=http://gosecure.github.io/presentations/2016-01-20_owasp-mtl/internet-of-threats.html ]] [http://gosecure.github.io/presentations/2016-01-20_owasp-mtl/internet-of-threats.html See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
De plus en plus de périphériques se retrouvent connectés sur Internet. Sous la bannière &amp;quot;Internet of Things&amp;quot; (IoT) ces équipements, que ce soit une pompe à insuline ou un système de caméra de sécurité, tournent généralement sous un système GNU/Linux embarqué d'architecture MIPS ou ARM. La difficulté de mettre à jour ces équipements ainsi que le peu d'effort mis dans la sécurité des systèmes ou la sécurité applicative en font des cibles de choix. Ces derniers mois, nous avons analysé plusieurs logiciels malveillants ciblant ces architectures. Que ce soit par l'exploitation d'une vulnérabilité (Shellshock) ou encore un défaut de configuration, ces systèmes exposés sur Internet peuvent être compromis.&lt;br /&gt;
&lt;br /&gt;
Notre présentation couvrira quelques une de ces analyses:&lt;br /&gt;
&lt;br /&gt;
* Linux/Moose, un malware se propageant automatiquement qui fraude les réseaux sociaux (par exemple Facebook, Twitter et YouTube)&lt;br /&gt;
* LizardSquad et acteurs étrangers qui utilisent des systèmes embarqués compromis pour réaliser des dénis de service distribué (DDoS) &lt;br /&gt;
* Win32/RBrute est un logiciel malveillant qui tente de changer les paramètres de routeurs dans le but de faire du &amp;quot;DNS poisoning&amp;quot;. Il a été distribué par le populaire botnet Sality.&lt;br /&gt;
* Un kit d'exploits qui utilise seulement le navigateur de leur victime avec le même objectif, c'est-à-dire faire du &amp;quot;DNS poisoning&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Enfin, des conseils seront proposés à l'audience pour l'aider à se protéger de ces menaces.&lt;br /&gt;
&lt;br /&gt;
'''Thomas Dupuy''' (twitter: @nyx__o)&lt;br /&gt;
&lt;br /&gt;
Thomas est chercheur en logiciel malveillant chez ESET Canada Recherche. Bon vivant, Thomas déjeune en &amp;quot;reversant&amp;quot; des binaires, contribue à quelques projets open source durant le diner (yara, yara rules, pefile, APTnotes) et la nuit participe à des &amp;quot;Hacking Games&amp;quot; (Capture The Flag). Curieux de nature Thomas analyse des malware aux architectures &amp;quot;exotiques&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Olivier Bilodeau''' (twitter: @obilodeau)&lt;br /&gt;
&lt;br /&gt;
Olivier Bilodeau is the head of Cybersecurity Research at GoSecure a consultancy firm specializing in cybersecurity services for the public and private sector. With more than 10 years of infosec experience, Olivier worked on Unix servers at Bell Canada, managed a portion of Air Canada's network, wrote open source network access control software at Inverse and worked as a Malware Researcher at ESET. He likes to reverse engineer everything that crosses his path, participate in information security capture-the-flag competitions, hack open source code and brew beer. He has spoken at various conferences (Defcon, Botconf, VirusBulletin, Derbycon, ...), used to lecture on information security at ETS University in Montreal, drives the NorthSec Hacker Jeopardy and co-organizes the MontreHack capture-the-flag training initiative. His primary research interests include reverse-engineering tools, Linux and/or embedded malware and honeypots.&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Survivre aux attaques DDOS applicatives ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Decembre2015-OWASPMtl.jpg | Survivre aux attaques DDOS applicatives ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Survivre aux attaques DDOS (Distributed Denial-Of-Service) applicatives.&lt;br /&gt;
Cette conférence s'adresse aux professionnels et gestionnaires des TI.&lt;br /&gt;
Conférencier : Christian Shink, ing., CSSLP, ingénieur système chez Radware, manufacturier spécialisé dans la prévention des attaques DDOS. Il fut également consultant en sécurité applicative chez In Fidem.&lt;br /&gt;
Objectifs de la conférence:&lt;br /&gt;
Présenter les tendances actuelles en matière d'attaques DDOS applicatives.&lt;br /&gt;
Renseigner les participants sur les techniques et stratégies pour contrer ces attaques illustrées à partir de cas vécus.&lt;br /&gt;
Démystifier certains mythes en ce qui concernent les façons efficaces de protéger les applications contre des attaques DDOS.&lt;br /&gt;
Date : 16 décembre 2015&lt;br /&gt;
Heure : 11h45&lt;br /&gt;
La conférence débute à 12h00 et se termine à 12:55.&lt;br /&gt;
Un lunch sera servi.&lt;br /&gt;
Réservez maintenant!&lt;br /&gt;
1 CPE&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 16 December 2015 from 11:45 AM to 1:00 PM (EST) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec &lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Sécurité des applications - Systèmes de contrôles industriels ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Novembre2015-OWASPMtl-R.png | Sécurité des applications - Systèmes de contrôles industriels ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/0eAZpyiQQ9A]] [https://youtu.be/0eAZpyiQQ9A Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&lt;br /&gt;
La sécurité des applications et les systèmes de contrôles industriels.&lt;br /&gt;
Cette conférence s'adresse aux professionnels et gestionnaires des TI desinfrastructures critiques qui exploitent ou gèrent des systèmes de contrôles industriels(SCI) et SCADA (surveillance et d'acquisition de données).&amp;lt;br /&amp;gt;&lt;br /&gt;
Conférenciers : Robert Nastas, CSSA. Gestionnaire de projet et Youssef Jad, Architecte Cyber sécurité, ICS-CERT&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Objectifs de la conférence:&lt;br /&gt;
* Démystifier le domaine d'affaires.&lt;br /&gt;
* Renseigner les participants sur les bonnes pratiques de sécurité desapplications liées au secteur industriel.&lt;br /&gt;
* Proposer aux professionnels et gestionnaires des TI responsables dessystèmes SCADA et SCI des pistes de solutions aux enjeux de sécurité.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
L'équipe OWASP Montréal vous remercie d'avoir assisté en grand nombre à la conférence, 'La sécurité des applications et les systèmes de contrôles industriels'.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 18 November 2015 from 11:45 AM to 1:00 PM (EST) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Les préoccupations actuelles de hauts dirigeants en matière de cybersécurité et de sécurité applicative ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Septembre2015-OWASPMtl.jpg | Les préoccupations actuelles de hauts dirigeants en matière de cybersécurité et de sécurité applicative ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/un-regard-sur-la-securite-de-linformation-en-2015-par-eric-hebert ]] [https://speakerdeck.com/owaspmontreal/un-regard-sur-la-securite-de-linformation-en-2015-par-eric-hebert See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Pour le lancement des activités corporatives de la saison 2015 - 2016, le 8 septembre prochain à 12:00, l'équipe OWASP Montréal convie les gestionnaires et artisants de la sécurité des TIC à venir entendre monsieur Éric Hébert qui nous présentera son interprétation des préoccupations actuelles de hauts dirigeants en matière de cybersécurité et de sécurité applicative. L'événement se tiendra au complexe Desjardins à la salle &amp;quot;Espace Desjardins&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
''' ÉRIC G. HÉBERT, CISM, CISSP ''' &amp;lt;br /&amp;gt;&lt;br /&gt;
Après plus de 20 ans passés dans le domaine de la sécurité des technologies de l’information, Éric se spécialise dans la mise en œuvre et la gestion d'équipes performantes, capables de relever les plus hauts défis de la cybersécurité moderne.&amp;lt;br /&amp;gt;&lt;br /&gt;
Capable de dialoguer avec les hauts dirigeants, il sait traduire et vulgariser les enjeux techniques complexes tout en respectant la nature et l'appétence au risque de ses clients. Dynamique et pourvu d'une expérience couvrant presque toutes les sphères de la SI, il fonce dans le respect de la culture établie tout en implantant des solutions pragmatiques et efficaces.&amp;lt;br /&amp;gt;&lt;br /&gt;
Depuis plus de 10 ans, il gravite principalement autour des entreprises du domaine financier (BNC, Desjardins, Fonds de solidarité FTQ...) et les accompagne dans la mise en place de solutions efficaces tenant compte à la fois des risques et des budgets.&lt;br /&gt;
En plus d’avoir fondé de nombreuses associations telles que le RéseauSécurIT et le RPSI, il maintient une présence régulière auprès des milieux associatifs professionnels et partage régulièrement ses expériences lors de conférences et d'entrevues avec divers médias.&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Events / Évènements =&lt;br /&gt;
&lt;br /&gt;
== Owasp Montreal at [https://nsec.io/ NorthSec 2017] ==&lt;br /&gt;
&lt;br /&gt;
[[Image:NorthSec2017-5.jpg]]&lt;br /&gt;
[[Image:NorthSec2017-6.jpg]]&lt;br /&gt;
&lt;br /&gt;
From Left to Right: Anne Gauthier, OWASP Montréal Chapter Leader (President) and Application Security Analyst at GoSecure, Hugo Genesse, OWASP Montréal Chapter Leader and Research Intern at PNF Software, Julien, OWASP Montréal Chapter Leader&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal at [https://2017.appsec.eu/ AppSec] ==&lt;br /&gt;
&lt;br /&gt;
[[Image:OWASPAppSecBelfast2017-7.jpg]]&lt;br /&gt;
&lt;br /&gt;
OWASP Montreal and Ottawa Chapter Leaders at OWASP AppSec Belfast, UK #WomenInAppSec&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal at [https://hackfest.ca/ HackFest 2016] ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hackfest2016-r.jpg| HackFest |link=https://hackfest.ca/]]&lt;br /&gt;
&lt;br /&gt;
From left to right: Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Louis Nadeau, OWASP Québec Chapter Leader and Manager, Product Security at Bentley Systems and Patrick Leclerc, OWASP Québec Chapter Leader and Information Security Advisor at La Capitale.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal at OWASP [https://2016.appsecusa.org/ AppSec USA 2016, Washington] ==&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:OWASPMtl-AppSecUSA2016-Washington.jpg | OWASP Montreal at AppSec USA 2016, Washington]] &lt;br /&gt;
&lt;br /&gt;
​From left to right: Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Marie-Claire Willig, Application Security Analyst at Desjardins, Speaker and Cofounder of the Roslyn Security Guard tool which will be presented at Blackhat 2016, Alexandre Hamelin President at Synlabs Consulting Inc., Jonathan Marcil, Application Security Engineer at Blizzard Entertainment and former OWASP Montreal Chapter Leader. Philippe Arteau, Cybersecurity Researcher at GoSecure and designer of [https://find-sec-bugs.github.io/ Find Security Bugs] and Roslyn Security Guard tool which will be presented at Blackhat 2016.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://www.gosec.net GoSec] 2016 ==&lt;br /&gt;
&lt;br /&gt;
[[Image:OWASP-GoSec2016-1r.jpg|OWASP Montreal at GoSec 2016]] [[Image:OWASP-GoSec2016-2r.jpg|OWASP Montreal at GoSec 2016]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
From left to right : Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Simon Lacasse, student and volunteer, and Laurent Desaulniers, Security Analyst at Bell Canada.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://www.nsec.io/ NorthSec] 2016 – Annual Applied Security Event ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hackfest2016-OWASPMtl.jpg|OWASP Montreal at NorthSec 2016]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Simon Veilleux &lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
From left to right : Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Olivier Arteau OWASP Montréal Chapter Leader and Conseiller chez Groupe Technologie Desjardins, Hugo Genesse, OWASP Montréal Chapter Leader and Vulnerability Research Intern at Wurldtech Security Technologies.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://hackfest.ca/en/ Hackfest] 2015 ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hackfest2015-OWASPMtl-R.JPG | OWASP Montreal at Hackfest 2015]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Hackfest &lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
From left to right : Jonathan Marcil, Application Security Engineer at Blizzard Entertainment and former OWASP Montreal Chapter Leader. Philippe Arteau, Cybersecurity Researcher at GoSecure and designer of [http://find-sec-bugs.github.io/ Find Security Bugs] and Roslyn Security Guard tool which will be presented at Blackhat 2016. &lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/8U0qkEuUFy8]] [https://youtu.be/8U0qkEuUFy8 Watch the video / Regarder la vidéo]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://www.gosec.net/ GoSec] 2015 – The Annual Cybersecurity Conference presented by GoSecure, EY and ISACA. ==&lt;br /&gt;
&lt;br /&gt;
[[Image:GoSec2015-OWASPMtl.jpg|OWASP Montreal at GoSec 2015]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
From left to right : Marie-Claire Willig, Application Security Analyst at Desjardins, Speaker and Cofounder of the Roslyn Security Guard tool which will be presented at Blackhat 2016. Benoît Guérette, Application Security Team Leader at Desjardins, VP Finance at NorthSec and OWASP Montreal Chapter Founder and Former Chapter Leader.&lt;br /&gt;
&lt;br /&gt;
== See also / Voir aussi ==&lt;br /&gt;
&lt;br /&gt;
OWASP Montréal recommends Montréhack. Learn and share knowledge on IT security by solving technical challenges. Third Monday of every month. &lt;br /&gt;
&lt;br /&gt;
OWASP Montréal recommende Montréhack. Apprends et partages des connaissances sur la sécurité informatique en travaillant des problèmes appliqués. Chaque troisième lundi du mois. &lt;br /&gt;
&lt;br /&gt;
[[File:Montrehack.png|Montréhack|link=http://montrehack.ca/|alt=Montréhack]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Archives 2007-2015 =&lt;br /&gt;
{{:Montreal chapter past meetings}}&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - February 3rd - Getting to Know the Software Assurance Marketplace (SWAMP) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/p4_vjufcB6Q]] [https://youtu.be/p4_vjufcB6Q Watch the conference / Regarder la conférence]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/getting-to-know-the-software-assurance-marketplace-swamp-by-pat-beyer]] [https://speakerdeck.com/owaspmontreal/getting-to-know-the-software-assurance-marketplace-swamp-by-pat-beyer See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Pat Beyer&lt;br /&gt;
*'''ADDITIONAL PRESENTER:'''  Abe Megahed&lt;br /&gt;
*'''ABSTRACT:''' The Software Assurance Marketplace (SWAMP) is an open facility that is designed, built, and operated by four research institutions. The SWAMP provides no-cost access to an array of open-source and commercial software analysis tools. This presentation will provide an overview and demo of the SWAMP, including our goals, intended audience, current capabilities, and future plans. We will cover our relationship with OWASP, incorporation of open-source software assurance tools, and status as an open-source project and resource available to the software community. Visit https://continuousassurance.org/ to learn more about us.&lt;br /&gt;
*'''BIO:''' Pat Beyer serves as the Product Manager for the Software Assurance Marketplace (SWAMP). With over 25 years of experience successfully managing multi-million dollar global projects, Beyer’s expertise extends to the IT, construction, and operations sectors, with a specialization in managing government contracts and grants. A gifted communicator, Beyer is a sought after speaker due to his ability to deliver complex information about technology products and services in a way that is easily understood. He is a decorated combat veteran of the Global War on Terror, the international military campaign that started following the 9/11 terrorist attacks on the United States. In 2004, he constructed and rehabilitated over 20 schools, clinics, and water treatment plants for the Iraqi people using local contractors. Beyer also holds a Bachelor of Science, a Masters in Business Administration, a Ph.D. in Organization and Management, and a Project Management Professional (PMP) certification.&lt;br /&gt;
*'''BIO:''' Abe Megahed is a web developer for the Software Assurance Marketplace. In previous lifetimes, he has been a computer graphics researcher, a game programmer, a programming language and compiler nerd, a dot com company founder, a creator of helicopter simulations, and a developer of 3D simulations for NASA astronaut crew training.&lt;br /&gt;
*'''WHEN:'''  Tuesday, February 3rd 2015&lt;br /&gt;
*'''WHERE:''' Room PK-1140 - UQAM Pavillon Président-Kennedy, 201 Avenue du Président-Kennedy  J2X 3Y7&lt;br /&gt;
*'''REGISTRATION:''' https://owaspmtlswamp2015.eventbrite.ca&lt;br /&gt;
*'''WEBCAST:''' https://www.youtube.com/watch?v=p4_vjufcB6Q&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/getting-to-know-the-software-assurance-marketplace-swamp-by-pat-beyer&lt;br /&gt;
&lt;br /&gt;
*'''ACADEMIC PARTNER:''' AGEEI-UQAM - http://www.ageei.org/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Welcome speech by Chapter Leader (Jonathan Marcil)&lt;br /&gt;
  18:30-20:00 Main session: Getting to Know the Software Assurance Marketplace&lt;br /&gt;
  20:00-...   End of the meeting&lt;br /&gt;
&lt;br /&gt;
[[Image:SWAMP-Logo-Final-Med.png|300px|link=https://continuousassurance.org/]]&lt;br /&gt;
[[Image:Ageeilogo.jpg|200px|link=http://www.ageei.org/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - 4 décembre - Malware côté serveur — évolution, méthodes d’opération et forensic Linux ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/lo8WDl-WQ3E]] [https://youtu.be/lo8WDl-WQ3E Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/malware-cote-serveur-par-marc-etienne-m-dot-leveille]] [https://speakerdeck.com/owaspmontreal/malware-cote-serveur-par-marc-etienne-m-dot-leveille See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''PRÉSENTATEUR PRINCIPAL:''' Marc-Etienne M.Léveillé&lt;br /&gt;
*'''RÉSUMÉ:''' Les logiciels malveillants ciblant les serveurs ont évolué. Ils sont utilisés par des groupes de cybercriminels organisés dans le but de faire du profit via des redirections web et l’envoie de pourriels. La présentation portera sur Opération Windigo, une opération malveillante qui a affecté plus de 25 000 serveurs dans le monde. Après une brève description des composantes de Windigo, nous verrons comment les opérateurs déploient leurs logiciels malveillants et surveille leur réseau de serveurs infectés. Des trucs pratiques pour faire de la forensics sur des systèmes Linux seront donnés. Cette présentation est une suite à la présentation &amp;quot;Linux/Cdorked: Server side malware&amp;quot;, donnée par Olivier Bilodeau à OWASP Montréal en 2013. La présentation sera en français avec des diapositives en anglais (aka Montreal-style).&lt;br /&gt;
*'''BIO:''' Marc-Etienne est un chercheur en logiciel malveillant chez ESET depuis 2012. Il se spécialise dans les logiciels malveillants qui s’attaquent à des plateformes inhabituelles comme aux produits fruités et aux oiseaux nordiques. Dernièrement, il passe beaucoup de son temps à faire la rétro-ingénierie de logiciels malveillants sur des serveurs Linux et s’intéresse à leurs méthodes d’opération. Il adore participer de façon collégiale aux CTFs avec ses amis les CISSP Groupies et jouer de la clarinette. Il tweet très peu à @marc_etienne_.&lt;br /&gt;
*'''QUAND:''' 4 décembre 2014 à 18h00&lt;br /&gt;
*'''OÙ:''' Local M-1510, Polytechnique Montréal, 2900 Boulevard Edouard-Montpetit&lt;br /&gt;
*'''INSCRIPTION:''' https://www.eventbrite.ca/e/owasp-montreal-4-decembre-malware-cote-serveur-evolution-methodes-doperation-et-forensic-linux-tickets-14635313617&lt;br /&gt;
*'''ÉQUIPE ACADÉMIQUE:''' Polyhack - http://polyhack.org/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
&lt;br /&gt;
 18:00-18:30 Réseautage&lt;br /&gt;
 18:30-18:35 Mot de bienvenue par le leader du chapitre (Jonathan M.)&lt;br /&gt;
 18:35-19:30 Présentation principale : Malware côté serveur&lt;br /&gt;
 19:30-20:00 Période de questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Polyhacklogonoirpetit.png|200px|link=http://polyhack.org/]]&lt;br /&gt;
[[Image:LogoPolytechnique.gif|link=http://www.polymtl.ca/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - October 23rd - XXE : À l’assaut des analyseurs XML ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/MZviLB9-42E]] [https://youtu.be/MZviLB9-42E Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/xxe-a-lassaut-des-analyseurs-xml-par-philippe-arteau]] [https://speakerdeck.com/owaspmontreal/xxe-a-lassaut-des-analyseurs-xml-par-philippe-arteau See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''PRÉSENTATEUR PRINCIPAL:''' Philippe Arteau&lt;br /&gt;
*'''RÉSUMÉ:''' L'utilisation d’XML est fortement répandue. Le format est utilisé pour des fichiers de configuration, pour des métadonnées, pour des documents textes, et bien plus. La prise en charge de fichiers XML n’est pas sans risque. La plupart des analyseurs XML ne sont pas sécuritaires par défaut pour le traitement de fichier externe. Cette présentation fera un survol des vulnérabilités de type « Xml eXternal Entity » et de l’étendue des risques pour différents langages de programmation. Plusieurs démonstrations sont prévues.&lt;br /&gt;
*'''BIO:''' Philippe est conseiller en sécurité applicative pour le Groupe Technologies Desjardins. Au quotidien, il s’occupe d’effectuer des tests d’intrusions et des revues de code. Il a découvert des vulnérabilités importantes dans plusieurs logiciels populaires incluant Google Chrome, DropBox, ESAPI et Jira.&lt;br /&gt;
*'''QUAND:'''  23 Octobre 2014 à 18h00&lt;br /&gt;
*'''OÙ:''' École de Technologie Supérieure Local A-3230, 1100 Rue Notre-Dame Ouest, Montréal, QC H3C 1K3&lt;br /&gt;
*'''INSCRIPTION:''' http://www.eventbrite.ca/e/owasp-montreal-23-octobre-xxe-a-lassaut-des-analyseurs-xml-tickets-13426881163&lt;br /&gt;
*'''PARTENAIRE ACADÉMIQUE:''' ETS - DCI http://dciets.com/&lt;br /&gt;
*'''PROGRAMME:''' &lt;br /&gt;
&lt;br /&gt;
 18:00-18:30 Réseautage&lt;br /&gt;
 18:30-18:45 Mot de bienvenue&lt;br /&gt;
 18:45-19:45 Présentation principale - &amp;quot;À l’assaut des analyseurs XML&amp;quot; Philippe Arteau&lt;br /&gt;
 19:45-20:00 Période de questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Blason_dci.png‎‎‎|150px|link=http://dciets.com/]]&lt;br /&gt;
[[Image:ETS-rouge-devise-impr-fond_transparent.png|150px|link=http://www.etsmtl.ca/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - July 24th - Web security for DevOps: the glory is in the headers ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/6bp1NCLT-YQ]] [https://youtu.be/6bp1NCLT-YQ Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/web-security-for-devops-the-glory-is-in-the-headers-by-jonathan-marcil]] [https://speakerdeck.com/owaspmontreal/web-security-for-devops-the-glory-is-in-the-headers-by-jonathan-marcil See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Jonathan Marcil&lt;br /&gt;
*'''ABSTRACT:''' DevOps is a buzzword which can be easily demystified: in essence it is a process which aims to combine the development and system administration process into one; Operations. As developers become responsible for server setup, security counter measures are evolving as well. The line between server configuration and application behaviour has been blurred. In this talk we will cover some HTTP headers in regards to security such as CORS, CSP and HSTS. We will demonstrate several forms of attack, and how they can (should) be countered.&lt;br /&gt;
*'''BIO:''' Jonathan is devoted to security and specialized in Web application security.  His main occupation is consulting in Web security, but deep down he is a developer with a agnostic vision of programming languages. He has a diploma in Software Engineering from Ecole de Technologie Superieure and more than 10 years of experience in Information Technology and Security.&lt;br /&gt;
*'''WHEN:'''  At noon on July 24th 2014&lt;br /&gt;
*'''WHERE:''' 75 Queen Street, office 3100, Montreal, QC H3C 2N6&lt;br /&gt;
*'''REGISTRATION:''' You can join us on site for a pizza slice but this is mainly an online event. Contact jonathan.marcil@owasp.org.&lt;br /&gt;
*'''WEBCAST:''' https://www.youtube.com/watch?v=6bp1NCLT-YQ&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/web-security-for-devops-the-glory-is-in-the-headers-by-jonathan-marcil&lt;br /&gt;
*'''EVENT SPONSOR:''' Pheromone http://www.pheromone.ca/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  12:00-12:10 Welcome and quick OWASP introduction&lt;br /&gt;
  12:10-13:10 Main presentation - &amp;quot;Web security for DevOps: the glory is in the headers&amp;quot; Jonathan Marcil&lt;br /&gt;
  13:10-... Open discussion and questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Logo-phero.gif‎|link=http://www.pheromone.ca/]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - June 18th - Gaps in the Clouds ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/gaps-in-the-clouds-by-robert-fritz]] [https://speakerdeck.com/owaspmontreal/gaps-in-the-clouds-by-robert-fritz See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Robert Fritz&lt;br /&gt;
*'''ABSTRACT:''' Cloud technology offers agility and scaling, and a chance to break away from legacy IT choices.  Unfortunately, skipping traditional IT activities often results in poorly patched systems, out of date firewalls, and overprovisioned entitlements wielded by admins whose “day job” is development.  Boundaries of accountability and responsibility amongst cloud providers and consumers are confusing, vague, and shift, making security difficult to manage.  In such an environment, a “BP-spill” event, where cost wins over safely safety, is likely.  This talk will dive down into the cracks between the layers of cloud, and share some of the exciting dirt we have seen and expect to see in coming years.”&lt;br /&gt;
*'''BIO:''' Robert Fritz has been practicing security his entire career. Rob started as an Air Force lieutenant at Langley AFB and later at the Pentagon in Washington DC, building and managing classified networks. Finding he was getting too far from technology after a brief stint flying, he left the military to get back to the tech, and built security tools for HP in their HP-Unix lab.  Over time he found himself in more and more security design discussions, so co-authored HP’s Commercial Application Threat Analysis Methodology, building an internal consulting practice at HP.  This quantitative approach, led to two pending patents, an external-facing consulting practice, and his contributions to NIST IR-7502, the Common Configuration Scoring System (CVSS follow-on).  He is the former lead editor for the Center for Internet Security’s HP-UX Benchmark, and current lead for the Android Benchmark.  Robert now works for Morgan Stanley as global head of the Strategic Consulting team in the Security Architecture group, and leads the team’s cloud and social-media security practices.&lt;br /&gt;
*'''WHEN:''' June 18th 2014&lt;br /&gt;
*'''WHERE:''' 700 Rue Wellington, Floor 2, Montreal, QC H3C 3S4&lt;br /&gt;
*'''REGISTRATION:''' http://owaspmtl18junems.eventbrite.ca&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/gaps-in-the-clouds-by-robert-fritz&lt;br /&gt;
*'''EVENT SPONSOR:''' Morgan Stanley http://www.morganstanley.com/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:30 Networking and Morgan Stanley Hosted Pizza and Soft Drinks&lt;br /&gt;
  18:30-18:45 OWASP Chapter &amp;amp; Morgan Stanley Welcome&lt;br /&gt;
  18:45-19:45 Main presentation - &amp;quot;Gaps in the Clouds&amp;quot; Robert Fritz&lt;br /&gt;
  19:45-20:00 Open discussion and questions&lt;br /&gt;
  20:00-...   Optional, informal networking at Aziatic - 626 rue Marguerite-d'Youville, Montréal, QC H3C 1W7&lt;br /&gt;
&lt;br /&gt;
[[Image:Morgan_Stanley_Historical_Logo.png|link=http://www.morganstanley.com/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - May 26th - Récapitulatif des challenges NorthSec ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/P8_V3RI1Ru4]] [https://youtu.be/P8_V3RI1Ru4 Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''PRÉSENTATEUR PRINCIPAL:''' Laurent Desaulniers&lt;br /&gt;
*'''RÉSUMÉ:''' Solutions de la compétition en sécurité NorthSec 2014 sur les sujets de  XXE + SSRF, WAF Bypass, Xpath Injection, DOM Injection, HTTP Only Flag bypass et contournement de captchas. Une bonne façon d'apprendre sur ces failles que vous étiez ou non un participant de la compétition.&lt;br /&gt;
*'''MESSAGE DU PRÉSENTATEUR:''' Vous voyez Rao dans votre soupe? Vous voulez une solution pour un XSS avec des cookies http only? Les captchas illisibles sont un problème? Assistez à la présentation de l'OWASP!&lt;br /&gt;
*'''BIO:''' Laurent Desaulniers est un passionné de sécurité informatique. Il a présenté au Hackfest, au colloque RSI, à OWASP et est challenge designer à NorthSec. M. Desaulniers détient les certifications CISSP, CISM, CISA et OSCP.&lt;br /&gt;
*'''QUAND:''' 26 mai à 18h00&lt;br /&gt;
*'''OÙ:''' Local PK-1140 - Pavillon Président-Kennedy 201, Avenue du Président-Kennedy, J2X 3Y7&lt;br /&gt;
*'''INSCRIPTION:''' https://www.eventbrite.ca/e/owasp-montreal-26-mai-recapitulatif-des-challenges-northsec-tickets-11724413035&lt;br /&gt;
*'''WEBCAST:''' https://www.youtube.com/watch?v=P8_V3RI1Ru4&lt;br /&gt;
*'''ÉQUIPE ACADÉMIQUE''' AGEEI-UQAM - http://www.ageei.org/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
&lt;br /&gt;
 18:00-18:30 Réseautage&lt;br /&gt;
 18:30-18:35 Mot de bienvenue par le leader du chapitre (Jonathan M.)&lt;br /&gt;
 18:35-19:30 Présentation principale : Récapitulatif des challenges NorthSec&lt;br /&gt;
 19:30-20:00 Période de questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Ageeilogo.jpg|200px|link=http://www.ageei.org/]]&lt;br /&gt;
[[Image:2397_nsec_Logo_500-250.png|200px|link=http://nsec.io/]]&lt;br /&gt;
&lt;br /&gt;
== Networking with infosec communities - April 21st ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''RÉSUMÉ:''' En collaboration avec Montréhack, mtlsec et NorthSec, nous organisons une soirée réseautage dans un pub du centre-ville. Du plaisir garanti avec les membres de plusieurs communautés infosec de Montréal!&lt;br /&gt;
&lt;br /&gt;
*'''ABSTRACT:''' In collaboration with Montréhack, mtlsec and NorthSec, we are organizing a networking evening in a pub downtown. Fun guaranteed with the other security communities in Montreal!&lt;br /&gt;
&lt;br /&gt;
*'''QUAND:''' 21 Avril 2014&lt;br /&gt;
*'''WHEN:''' April 21st 2014&lt;br /&gt;
&lt;br /&gt;
*'''OÙ/WHERE:''' BENELUX - Brasserie Artisanale 245 Sherbrooke St W Montreal, QC H2X 1X7&lt;br /&gt;
&lt;br /&gt;
*'''INSCRIPTION/REGISTRATION:''' https://www.eventbrite.ca/e/montrehack-avril-april-northsec-pre-party-tickets-11232307133&lt;br /&gt;
&lt;br /&gt;
*'''PARTENAIRES/PARTNERS:''' Montréhack http://montrehack.ca/ - mtlsec http://blog.mtlsec.com/ - NorthSec https://www.nsec.io/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
  18:00-21:00 Networking&lt;br /&gt;
  21:00-23:59 Remember to drink responsibly!&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - March 27th - Panel Compétition en sécurité NorthSec ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Présentation sous forme de panel - venez poser vos questions!'''&lt;br /&gt;
&lt;br /&gt;
*'''RÉSUMÉ:''' Les compétitions de type Capture the Flag (CTF) sont un moyen pour les professionnels et amateurs de sécurité informatique de mettre leurs talents à l'épreuve. NorthSec est une compétition Montréalaise annuelle en sécurité appliquée, qui aura lieu cette année au Marché Bonsecours de Montréal le 25, 26 et 27 avril prochain. Elle vise à augmenter le niveau technique des professionnels de la sécurité au Québec, ainsi que de permettre à ses acteurs les plus talentueux de se démarquer.&lt;br /&gt;
*'''DÉTAILS:''' Le panel de jeudi, sous la forme d'un échange convivial entre les organisateurs de l'évènement et de ses participants, abordera des thèmes variés comme l'écriture de bon défis, l'infrastructure, la logistique, les inattendus, un bilan de 2013 et tout ça en passant par de savoureuses annecdotes (on l'espère). Venez en grand nombre toucher à ces légendes de la scène infosec montréalaise!&lt;br /&gt;
*'''PANÉLISTES:''' Gabriel Tremblay, François Proulx, Laurent Desaulniers, Stéphane Graber&lt;br /&gt;
*'''ANIMATEUR:''' Olivier Bilodeau&lt;br /&gt;
*'''QUAND:''' 27 mars 2014&lt;br /&gt;
*'''OÙ:''' Salle M-1510, École Polytechnique de Montréal, 2500 chemin de Polytechnique, Montréal (Québec) H3T 1J4, pavillon Lassonde&lt;br /&gt;
*'''INSCRIPTION:''' https://www.eventbrite.ca/e/owasp-montreal-27-mars-panel-competition-en-securite-northsec-tickets-10918436337&lt;br /&gt;
*'''ÉQUIPE ACADÉMIQUE:''' Polytechnique - Polyhack http://polyhack.org/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Mot de bienvenue par le leader du chapitre (Jonathan Marcil)&lt;br /&gt;
  18:30-20:00 Présentation principale : Panel NorthSsec&lt;br /&gt;
&lt;br /&gt;
[[Image:Polyhack.png‎‎|200px|link=http://polyhack.org/]]&lt;br /&gt;
[[Image:LogoPolytechnique.gif|link=http://www.polymtl.ca/]]&lt;br /&gt;
[[Image:2397_nsec_Logo_500-250.png|200px|link=http://nsec.io/]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - February 25th - Proven Strategies for Web Application Security ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/proven-strategies-for-web-application-security-by-justin-c-klein-keane]] [https://speakerdeck.com/owaspmontreal/proven-strategies-for-web-application-security-by-justin-c-klein-keane See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Justin C. Klein Keane&lt;br /&gt;
*'''ABSTRACT:''' The rising dominance of the web as an application delivery platform has focused attacker attention squarely on the security of dynamic web applications. Application security is a complex, and shifting, field. Learn about tested and successful techniques to build safer applications, find flaws before they become vulnerabilities, and deploy applications that can detect, and resist attack.&lt;br /&gt;
*'''BIO:''' Justin C. Klein Keane is a security engineer and chapter leaders of OWASP in Philadelphia. For over a decade Justin has worked as a trainer, coder, and exploit developer. Justin is currently writing a book for NoStarch Press on hacking, speaks regularly at conferences, holds a masters degree in information technology from the University of Pennsylvania and is credited with hundreds of application vulnerability discoveries.&lt;br /&gt;
*'''WHEN:''' February 25th 2014&lt;br /&gt;
*'''WHERE:''' Ecole de technologie superieure, 1100 Notre-Dame Street West, Montreal, Room: A-1150&lt;br /&gt;
*'''REGISTRATION:''' http://owaspmtljan2014.eventbrite.ca&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/proven-strategies-for-web-application-security-by-justin-c-klein-keane&lt;br /&gt;
*'''ACADEMIC PARTNER:''' ETS - DCI http://dciets.com/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Welcome speech by Chapter Leader (Jonathan Marcil)&lt;br /&gt;
  18:30-20:00 Main session and open discussion: Proven Strategies for Web Application Security&lt;br /&gt;
  20:00-...   End of the meeting in a pub&lt;br /&gt;
&lt;br /&gt;
[[Image:Dciets.png‎‎‎|100px|link=http://dciets.com/]]&lt;br /&gt;
[[Image:Logo_ets.png|link=http://www.etsmtl.ca/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - January 28th - Latest trends in Mobile Security ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/8qPyKj4FKgY]] [https://youtu.be/8qPyKj4FKgY Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/latest-trends-in-mobile-security-by-francois-proulx]] [https://speakerdeck.com/owaspmontreal/latest-trends-in-mobile-security-by-francois-proulx See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Francois Proulx&lt;br /&gt;
*'''ABSTRACT:''' Last AppSecUSA 2013 had a great line up of talks, especially regarding mobile applications. This session will be covering all the hottest presentations about mobile security by doing an overview from what see saw at AppSecUSA, all with some slides and snippets of presentations that was recorded at the event. Discussion will be encouraged within the audience as this will be more a dynamic event than a regular talk.&lt;br /&gt;
*'''BIO:''' François Proulx is a senior mobile application developer who has worked on dozens of iOS applications since the very beginning of the Apple iOS platform. Over the past few years he has switched his focus to security. He spends a lot of his free time participating in Capture the Flag events (CTFs) and organizing the NorthSec security competition.&lt;br /&gt;
*'''WHEN:''' January 28th 2014&lt;br /&gt;
*'''WHERE:''' UQAM Room PK-1705, Pavillon Président-Kennedy (the big boat at Place des Arts) - 201 Avenue du Président-Kennedy  J2X 3Y7&lt;br /&gt;
*'''REGISTRATION:''' http://owaspmtl-mobilesecurity.eventbrite.ca&lt;br /&gt;
*'''SLIDES/CONTENT:''' [http://www.youtube.com/playlist?list=PLQtB2ug5xmvaQ9jeRWV53-F_T555GQfhW YouTube playlist]&lt;br /&gt;
*'''SPONSOR:''' Academic partner AGEEI-UQAM - http://www.ageei.org/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Welcome speech by Chapter Leader (Jonathan M.)&lt;br /&gt;
  18:30-20:00 Main session and open discussion: Mobile Security&lt;br /&gt;
  20:00-...   End of the meeting in a pub&lt;br /&gt;
&lt;br /&gt;
[[Image:Ageeilogo.jpg|200px|link=http://www.ageei.org/]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Presentations For Download  ====&lt;br /&gt;
&lt;br /&gt;
[http://www.owasp.org/images/0/0d/20100209mstechdaysowaspasvssgiv01-12657916463819-phpapp02.ppt OWASP ASVS] by Sebastien Gioria (09/03/2010) &lt;br /&gt;
&lt;br /&gt;
[http://www.ph-il.ca/slides/afup__authetification_forte.pdf Authentification Forte] by Philippe Gamache (02/02/2010) &lt;br /&gt;
&lt;br /&gt;
[http://www.opensamm.org/downloads/OpenSAMM-1.0.ppt Software Assurance Maturity Model (OpenSAMM)] by Pravir Chandra (03/11/2009) &lt;br /&gt;
&lt;br /&gt;
[http://www.owasp.org/images/d/de/Owasp-montreal-sept-17h-2009-justin-foster.pdf Crossing the Border – Javascript Exploits] by Justin Foster (17/09/2009) &lt;br /&gt;
&lt;br /&gt;
[http://www.owasp.org/images/c/c2/ALaughRIAt.pdf A Laugh RIAt] by Rafal Los (07/04/2009) &lt;br /&gt;
&lt;br /&gt;
[https://www.owasp.org/images/e/eb/OWASP-Montreal-24022009-RobLabbe.pptx Microsoft Security Development Lifecycle for IT] by Rob Labbe (24/02/2009) &lt;br /&gt;
&lt;br /&gt;
[https://www.owasp.org/images/3/39/OWASP-Montreal-24022009-EN.pdf OWASP Goal and Top Ten 2007 for Managers - French version] by Benoit Guerette (24/02/2009)&lt;br /&gt;
&lt;br /&gt;
Newer presentations are available on [https://speakerdeck.com/owaspmontreal Speaker Deck]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Circle_owasp_logo_nowhitebackground.png|200px]]&lt;br /&gt;
&lt;br /&gt;
= OWASP Foundation / Mission OWASP    = &lt;br /&gt;
OWASP Foundation ([https://docs.google.com/a/owasp.org/presentation/d/10wi1EWFCPZwCpkB6qZaBNN8mR2XfQs8sLxcj9SCsP6c/edit?usp=sharing Overview Slides]) is a professional association of [[Membership | global members]] and is open to anyone interested in learning more about software security. Local chapters are run independently and guided by the [[Chapter_Leader_Handbook]].  As a [[About_OWASP | 501(c)(3)]] non-profit professional association your support and sponsorship of any meeting venue and/or refreshments is tax-deductible. Financial contributions should only be made online using the authorized online chapter donation button.  To be a &amp;lt;b&amp;gt;SPEAKER&amp;lt;/b&amp;gt; at ANY OWASP Chapter in the world simply review the [[Speaker_Agreement | speaker agreement]] and then contact the local chapter leader with details of what OWASP PROJECT, independent research or related software security topic you would like to present on.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;La fondation OWASP est une [https://www.owasp.org/index.php/Membership association de professionnels] et elle est ouverte à tout intervenant intéressé à en apprendre davantage sur la sécurité applicative. Les chapitres locaux (dont celui de Montréal) sont gérés de façon indépendante et selon un [https://www.owasp.org/index.php/Chapter_Leader_Handbook manuel de directives à respecter].   &lt;br /&gt;
Toute contribution financière au chapitre peut être faite en ligne en utilisant l’icône prévu à cet effet. Pour être conférencier au sein de n’importe quel chapitre à l’échelle mondiale, vous n’avez qu’à prendre connaissance du document [https://www.owasp.org/index.php/Speaker_Agreement &amp;quot;entente avec les conférenciers – speaker agreement&amp;quot;] et à joindre le responsable du chapitre Montréal avec un descriptif du sujet que vous aimeriez aborder et s’il est relié à un projet OWASP, à de la recherche indépendante ou encore le sujet en particulier, concernant la sécurité applicative, que vous souhaitez aborder.&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== [[Image:Circle_owasp_logo_nowhitebackground.png|128px]] Montreal OWASP Team == &lt;br /&gt;
&lt;br /&gt;
Scope of the team is to discuss and plan local activities and meetings &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Chapter Leaders ===&lt;br /&gt;
&lt;br /&gt;
* [mailto:anne.gauthier@owasp.org Anne Gauthier], President/Présidente&lt;br /&gt;
* [mailto:michel.bourque{at}owasp.org Michel Bourque], Chapter coordinator and marketing manager/Coordination et Marketing&lt;br /&gt;
* [mailto:hugo.genesse(at)owasp.org Hugo Genesse], Web content and production manager/Site internet et Production &lt;br /&gt;
* [mailto:olivier.arteau(at)owasp.org Olivier Arteau], Logistic manager/Logistique&lt;br /&gt;
&lt;br /&gt;
==== Chapter leader history ====&lt;br /&gt;
*2008-2010 - Benoit Guerette, founder and chapter leader&lt;br /&gt;
*2011-2012 - Philippe Gamache, chapter leader (vice chapter-leader since 2010)&lt;br /&gt;
*2013-2015 - Jonathan Marcil, chapter leader&lt;br /&gt;
*2016-... - Anne Gauthier, Michel Bourque, Marius Popescu, Hugo Genesse, Olivier Arteau&lt;br /&gt;
&lt;br /&gt;
==== Old board members ====&lt;br /&gt;
*Philippe Pépos Petitclerc&lt;br /&gt;
*Michael Robillard&lt;br /&gt;
*Benoit Guerette (logistics 2015)&lt;br /&gt;
*Alexandre Rimthong&lt;br /&gt;
*Mathieu Binette&lt;br /&gt;
*Sean Coates&lt;br /&gt;
*Jean-Marc Robert&lt;br /&gt;
*Philippe Blondin&lt;br /&gt;
*Benoit Guerette (founder)&lt;br /&gt;
*Laurent Desaulniers&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;headertabs&amp;gt;&amp;lt;/headertabs&amp;gt; &lt;br /&gt;
__NOTOC__ &lt;br /&gt;
[[Category:Canada]]&lt;/div&gt;</summary>
		<author><name>Svieg</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=Montr%C3%A9al&amp;diff=234394</id>
		<title>Montréal</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=Montr%C3%A9al&amp;diff=234394"/>
				<updated>2017-10-14T20:11:02Z</updated>
		
		<summary type="html">&lt;p&gt;Svieg: /* Chapter Leaders / Responsables du chapitre */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Welcome &amp;amp; Bienvenue to the OWASP Montréal chapter ==&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:OWASP-Montreal-Logo.png|Logo OWASP Montréal]]&lt;br /&gt;
&lt;br /&gt;
The OWASP Foundation was established in 2001 as an open community and software security resource. Since then, OWASP has grown to be globally recognized as a credible source for application security standards. &amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
OWASP is an open community dedicated to enabling organizations to conceive, develop, acquire, operate, and maintain applications that can be trusted. All of the OWASP tools, documents, forums, and chapters are free and open to anyone interested in improving application security. We advocate approaching application security as a people, process, and technology problem because the most effective approaches to application security include improvements in all of these areas. &amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
OWASP is open to anyone. Anyone can attend OWASP's vendor agnostic local chapter meetings, participate in regional and global conferences, and contribute to the many OWASP projects. And anyone can start a new project, form a new chapter, or lend their expertise to help an OWASP Global Committee.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt;On parle français aussi ! Le chapitre de Montréal organise plusieurs activités gratuites afin de partager les connaissances en sécurité applicative avec la communauté de développeurs et gestionnaires. Suivez-nous sur les réseaux sociaux pour connaître les dates des conférences du midi et des workshops !&amp;lt;/b&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Top documentation from OWASP includes: &lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/index.php/Top_10_2013-Top_10 OWASP TOP 10 : The Ten Most Critical Web Application Security Risks]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/images/3/33/OWASP_Application_Security_Verification_Standard_3.0.1.pdf OWASP ASVS : Application Security Verification Standard]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/images/5/52/OWASP_Testing_Guide_v4.pdf OWASP Testing Guide : Penetration Testing Framework]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/images/7/78/OWASP_AlphaRelease_CodeReviewGuide2.0.pdf OWASP Code Review Guide : Source Code Analysis Framework]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/index.php/OWASP_Cheat_Sheet_Series OWASP Cheat Sheet : Best practices guidelines for developers]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org OWASP Global]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Chapter Leaders / Responsables du chapitre ===&lt;br /&gt;
&lt;br /&gt;
* [mailto:anne.gauthier@owasp.org Anne Gauthier], President/Présidente&lt;br /&gt;
* [mailto:michel.bourque{at}owasp.org Michel Bourque], Chapter coordinator and marketing manager/Coordination et Marketing&lt;br /&gt;
* [mailto:hugo.genesse(at)owasp.org Hugo Genesse], Web content and production manager/Site internet et Production &lt;br /&gt;
* [mailto:olivier.arteau(at)owasp.org Olivier Arteau], Logistic manager/Logistique&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt; Volunteers / Volontaires OWASP Montréal: &amp;lt;/b&amp;gt;&lt;br /&gt;
* Simon Lacasse, Web content / Site internet&lt;br /&gt;
* Julien Touche, Logistique&lt;br /&gt;
* Jean-François Gill&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;b&amp;gt; Reach our chapter / Joindre le chapitre &amp;lt;/b&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Follow OWASP's Montreal chapter's activities through social medias, register to events, watch the previous presentations and more! &lt;br /&gt;
&lt;br /&gt;
Suivez les activités du chapitre OWASP Montréal via les réseaux sociaux, inscrivez-vous aux activités, visualisez les anciennes présentations et plus encore! &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;b&amp;gt;[http://lists.owasp.org/mailman/listinfo/owasp-montreal Click here] to join the local chapter mailing list.&lt;br /&gt;
&amp;lt;br /&amp;gt;[http://lists.owasp.org/mailman/listinfo/owasp-montreal Inscrivez-vous ici] à la liste de courriels du chapitre afin de recevoir les dernières nouvelles!&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Want to be part of the community ? &lt;br /&gt;
Devenez membre de notre communauté ! &lt;br /&gt;
[https://www.owasp.org/index.php/Membership_Map Click here / Cliquer ici]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Eb_press_little.gif‎|OWASP Montreal Eventbrite|link=http://owaspmontreal.eventbrite.ca/]] &lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[Image:Yt-brand-standard-logo-630px.png‎|128px|YouTube OWASP Montreal Channel|link=http://www.youtube.com/owaspmontreal]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]   &lt;br /&gt;
[[Image:Speakerdecklogo.png‎|Slides of OWASP Montreal on SpeakerDeck |link=https://speakerdeck.com/owaspmontreal]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Twitter-bird-cropped-onwhite.png|@owaspmontreal on Twitter|link=https://twitter.com/owaspmontreal]]&lt;br /&gt;
[[Image:FacebookSquareLogo.png|OWASP Montreal Facebook page|link=https://www.facebook.com/owasp.montreal]]&lt;br /&gt;
[[Image:LinkedinSquareLogo.png|OWASP Montreal on LinkedIn|link=https://www.linkedin.com/groups/1379007/profile]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
&lt;br /&gt;
== What we do / Nos activités ==&lt;br /&gt;
&lt;br /&gt;
OWASP Montreal is a really active chapter. We organize monthly conferences and workshops. All our events are free and meant to improve the knowledge and awareness of the community's developers, managers and computer security specialists. To be aware of the next event and for additional information, follow us on social medias. &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
OWASP Montréal est un des chapitres les plus actifs. Nous organisons mensuellement des ateliers et conférences. Tous nos événements sont gratuits et ont pour but d'améliorer les connaissances de la communauté. Ils s'adressent donc autant aux gestionnaires qu'aux développeurs et aux spécialistes en sécurité informatique. Pour plus d'informations sur nos activités et pour être au courant des prochaines dates d'événement, suivez nous sur les réseaux sociaux. &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;We also contribute to the vast OWASP knowledge base / Nous contribuons aussi aux ressources d'OWASP&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We list here the projects that were started by our members under OWASP's banner. &amp;lt;br /&amp;gt;&lt;br /&gt;
Nous listons ici les projets commencé par nos membres sous la banière d'OWASP. &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/index.php/Vulnerability_Disclosure_Cheat_Sheet Vulnerability Disclosure Cheat Sheet]&lt;br /&gt;
&lt;br /&gt;
== Sponsorship &amp;amp; Membership / Commandite &amp;amp; Adhésion ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Btn_donate_SM.gif|link=http://www.regonline.com/donation_1044369]] to this chapter or become a local chapter supporter.&lt;br /&gt;
&lt;br /&gt;
Or consider the value of [[Membership | Individual, Corporate, or Academic Supporter membership]]. Ready to become a member? [[Image:Join_Now_BlueIcon.JPG|75px|link=https://myowasp.force.com/]]&lt;br /&gt;
&lt;br /&gt;
[http://www.regonline.com/donation_1044369 Donnez] au chapitre ou devenez commanditaire du chapitre local! &lt;br /&gt;
&lt;br /&gt;
[https://myowasp.force.com/ Devenez membre !] Pour en savoir davantage sur les avantages d’une adhésion individuelle, corporative ou en tant qu’institution d’enseignement, [https://www.owasp.org/index.php/Membership cliquez ici]. &lt;br /&gt;
&lt;br /&gt;
[[Category:OWASP Chapter]]&lt;br /&gt;
&lt;br /&gt;
== Chapter Supporters / Commanditaires du chapitre ==&lt;br /&gt;
&lt;br /&gt;
[https://www.owasp.org/images/9/91/OWASP_Membership_Flyer_Montreal.png All details available here / Pour tous les détails] [[File:Chapter-supporter-owasp-montreal.png|200px|link=]] &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Platinum / Platine ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Gosecure-2.png|GoSecure|link=http://www.gosecure.ca/]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[File:Desjardins2-400x400.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Gold / Or ===&lt;br /&gt;
&lt;br /&gt;
[[Image:PM_SCADA_Logo_Gris_Cybersecurite_FR.png|PM SCADA|link=http://pmscada.ca/en/]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Lunch &amp;amp; Learn / Workshops 2017 =&lt;br /&gt;
&lt;br /&gt;
== Pourquoi un hacker peut-il contourner les mesures et solutions de sécurité... ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hamilton-septembre-2017-1.JPG  ]]&lt;br /&gt;
[[Image:Hamilton-septembre-2017-2.JPG ]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 September 18th 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
OWASP dans le cadre des Midis conférence est heureux de lancer la saison 2017-2018 en accueillant, M. Charles F. Hamilton.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Notre conférencier viendra brosser un tableau des différents éléments qui expliquent pourquoi les mesures et les solutions de sécurité en générales qui ont la fonction de protéger les données, les applications, les réseaux ou les équipements critiques sont si souvent contournées ou carrément inefficaces contre les attaques ciblées.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Biographie :&amp;lt;br /&amp;gt;&lt;br /&gt;
Charles F. Hamilton est un consultant en sécurité et membre d’équipe « Red Team » de calibre international. Il se spécialise en test d’intrusion et la recherche de solution proactive de sécurité.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Cas d'attaques vécus : Internet des objets (IOT) - Attaques DDoS ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Cas_dattaques_vecus-r.jpg  ]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 June 19th 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
Pour clore la saison printanière 2017, OWASP Montréal est fier d'accueillir au Midi Conférence, M. Christian Shink qui fera un survol de cas d'attaques vécus, des techniques utilisées et des acteurs impliqués dans ces attaques.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
L'incorporation généralisée de dispositifs «intelligents» dans les objets de la vie de tous les jours modifie la façon dont les gens et les machines interagissent les uns avec les autres. Cette incorporation offre une promesse d'une meilleure qualité de vie, une meilleure efficacité. En contrepartie, leur déploiement introduit également des vulnérabilités à la fois dans l'infrastructure qu'ils soutiennent et sur lesquels ils comptent, ainsi que dans les processus qu'ils guident. Que ce soit au niveau applicatif ou des infrastructures, ces vulnérabilités sont exploitées par des acteurs malicieux pour générer des attaques de déni de service massives et sophistiquées. Nous tenterons également de tirer des leçons afin de tenter de minimiser ce type d'attaques dans le futur.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Christian Shink possède plus d’une dizaine d’années d’expérience en développement et sécurité d’applications. Avant de se joindre à Radware, Christian était à l’emploi d'une firme conseil où il a conseillé de nombreuses entreprises, dont de grandes banques américaines et Casinos. Il détient une certification CSSLP et est membre de l'ordre des ingénieurs du Québec.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== HOW TO! Threat Modeling Toolkit ==&lt;br /&gt;
&lt;br /&gt;
[[Image:OWASPMtl-JonathanMarcil-1.jpg]]&lt;br /&gt;
[[Image:OWASPMtl-JonathanMarcil-3.jpg]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/threat-modeling-toolkit]] [https://speakerdeck.com/owaspmontreal/threat-modeling-toolkit See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 May 23rd, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Shopify Montreal&lt;br /&gt;
&lt;br /&gt;
Threat Modeling is a great way to analyze security early in software development by structuring possible attacks, bad actors and countermeasures over a broad view of the targeted system. This talk will describe basic components of a threat model and how to use them effectively.&lt;br /&gt;
Threat Intelligence is where you gather knowledge about the environment and business assets to determine what are the actual threats. But how do you reconcile that with the current architecture in a useful manner?&lt;br /&gt;
The toolkit presented in this talk will enable you to systematically structure related information using graphical notations such as flow diagram and attack tree. In case you are wondering where to start in your organization, a quick lightweight risk rating methodology will also be proposed.&lt;br /&gt;
And in the end, you’ll see how we can all tie those together and get threat modeling to a point where it’s an efficient application security activity for communication. Doing this will prevent security reviews from missing important things even when chaos prevails during the realization of a project.&lt;br /&gt;
Modeling concepts will be demonstrated with an actual IoT device used as example.&lt;br /&gt;
Presentation will be done in english.&lt;br /&gt;
&lt;br /&gt;
Speaker Bio:&lt;br /&gt;
Jonathan Marcil is the former chapter leader of OWASP Montreal and is now Senior Application Security Engineer at Blizzard Entertainment in beautiful Orange County, California.&lt;br /&gt;
Jonathan has been involved with OWASP for many years and has been behind the Media Project which gathered and promoted AppSec conferences video content in the official OWASP YouTube channel. He was also part of NorthSec CTF event as a challenge designer specialized in Web and imaginative contraptions.&lt;br /&gt;
He is passionate about Application Security and enjoys architecture analysis, code review, threat modeling and debunking security tools. He holds a diploma in Software Engineering from ÉTS Montreal and has more than 15 years of experience in Information Technology and Security.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Merci à nos précieux commanditaires !&lt;br /&gt;
&lt;br /&gt;
== Security Testing: Unlocking the Benefits of a Hybrid Approach ==&lt;br /&gt;
[[Image:Security testing hybrid approach-r 3.jpg    ]]&lt;br /&gt;
[[Image:Security testing hybrid approach-r 4.jpg    ]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/hybrid-approach-to-security-testing]] [https://speakerdeck.com/owaspmontreal/hybrid-approach-to-security-testing See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 April 24th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
As part of their defensive efforts, businesses commonly commission cybersecurity assessments of their web applications; with the aim of identifying any weaknesses in the security controls and ensuring a continually strong cybersecurity posture of their systems.&lt;br /&gt;
&lt;br /&gt;
The classical approach of either secure code review (white box) or penetration testing (black box) assessment have proven to be effective in securing of web applications. The new trend, however, is moving towards the combination of these two approaches; expert consensus is rapidly recognizing the advantages of using a hybrid approach. When applied properly, a hybrid approach can build on the strengths of both white and black box testing, while compensating for their individual shortcomings.&lt;br /&gt;
&lt;br /&gt;
In this presentation, we will examine the details of secure code review and penetration testing, and run demos to contrast their respective strengths and weaknesses. We will also examine why a hybrid approach can produce more complete and relevant assessment results. To conclude, we will cover proven approaches, and practical techniques, on how you can start leveraging a hybrid approach to web application assessments today.&lt;br /&gt;
&lt;br /&gt;
Anne Gauthier is an application security analyst at GoSecure. Anne is also the president of the Montreal Chapter of OWASP – the industry standard for web application security. With a penetration testing background, she specializes in secure code reviews and in helping companies to improve their software development lifecycle (SDLC) according to industry best practices. Anne is CSSLP, GWAPT and GSSP-JAVA certified. She obtained a Software Engineering bachelor’s degree from Ecole de Technologie Supérieure in Montréal and is now pursuing a Master of Engineering (MEng) degree in Information Systems Security at Concordia University. She is the author of the Project 201 Security blog.&lt;br /&gt;
&lt;br /&gt;
Merci à nos précieux commanditaires !&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;HOW-TO&amp;quot; NIGHT ! Tout sur les CTFs (Capture The Flag) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Howto_ctf.jpg]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://docs.google.com/presentation/d/1zEsCcX-Nvq8Nz0k-B1zHejCDNT2oGZx8oUBgMbvvMM0/edit#slide=id.p ]] [https://docs.google.com/presentation/d/1zEsCcX-Nvq8Nz0k-B1zHejCDNT2oGZx8oUBgMbvvMM0/edit#slide=id.p See the slides / Voir la présentation (Laurent Desaulniers)]&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://docs.google.com/presentation/d/1c1P1d2mKe767j1Y0V9cK6De5cpnK4I7GI-ORiodbg1A/edit#slide=id.p ]] [https://docs.google.com/presentation/d/1c1P1d2mKe767j1Y0V9cK6De5cpnK4I7GI-ORiodbg1A/edit#slide=id.p See the slides / Voir la présentation (Charles Hamilton)]&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=http://obilodeau.github.io/slides/2017-04-04_how-not-to-suck-at-ctfs/ ]] [http://obilodeau.github.io/slides/2017-04-04_how-not-to-suck-at-ctfs/ See the slides / Voir la présentation (Olivier Bilodeau)]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 April 4th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Shopify&lt;br /&gt;
&lt;br /&gt;
Cette nouvelle soirée &amp;quot;How-To&amp;quot; Night d'OWASP Montréal vise à présenter les CTFs (une compétition Capture The Flag) et aider les équipes à démarrer et à continuer à évoluer dans leurs pratique de la cyber sécurité pratique. L'objectif est d'outiller les participants en leur fournissant des ressources techniques et des contacts afin de les aider à progresser.&lt;br /&gt;
&lt;br /&gt;
Les éléments discutés seront:&lt;br /&gt;
&lt;br /&gt;
- Composition optimale d’une équipe : Fonctionnement d’une équipe de CTF et les principaux rôles (chef d’équipe, cryptographie, application web, rétro ingénierie et les causes perdues).&lt;br /&gt;
&lt;br /&gt;
- Pourquoi faire des CTFs? Discussion sur les différents styles (jeopardy, attack/defense, etc.), quels sont les problèmes fréquemments rencontrés + plusieurs anecdotes intéressantes (et drôles).&lt;br /&gt;
&lt;br /&gt;
- Trucs de Mr. Unikoder : Le créateur du fameux site ringzer0team, soit un des plus gros sites pour apprendre la résolution de problèmes de CTF (https://ringzer0team.com/) Apprenez des trucs du meilleur, sur comment débuter et interpréter un challenge web, binaire et crypto avec des trucs réels du métier.&lt;br /&gt;
&lt;br /&gt;
Matériel requis :&lt;br /&gt;
&lt;br /&gt;
    Votre légendaire enthousiasme&lt;br /&gt;
&lt;br /&gt;
Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
&lt;br /&gt;
Places limitées. Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Shopify pour l'événement.&lt;br /&gt;
&lt;br /&gt;
Présentateurs :&lt;br /&gt;
&lt;br /&gt;
Charles Hamilton, Senior Consultant chez Mandiant, FireEye, Inc.&lt;br /&gt;
&lt;br /&gt;
Olivier Bilodeau, Cybersecurity Research Lead at GoSecure&lt;br /&gt;
&lt;br /&gt;
Laurent Desaulniers, Senior Security Solution Specialist at Bell Canada&lt;br /&gt;
&lt;br /&gt;
== NorthSec - Applied Security Event ==&lt;br /&gt;
[[Image:Nsec_2017_midi_conf.jpg]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/northsec-applied-security-event]] [https://speakerdeck.com/owaspmontreal/northsec-applied-security-event See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 April 4th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
NorthSec: La plus grande compétition et conférence en cyber sécurité au Canada&lt;br /&gt;
&lt;br /&gt;
NorthSec est un organisme sans but lucratif qui organise une conférence et une compétition de sécurité de type &amp;quot;Capture-The-Flag&amp;quot; (CTF) et des formations. Avec plus de 400 participants présents sur le site pour la compétition, c’est la plus grande compétition du genre au monde.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
La conférence, dans sa 3e année, attire des présentateurs internationaux avec du contenu technique exclusif. L’ajout des séances de travail (workshops) devrait plaire aux plus chevronnés des binaires.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Des formations de 3 jours sont offertes avant la conférence: &amp;quot;Advanced Web Application Security&amp;quot; par Philippe Arteau et &amp;quot;Malware and Memory Forensics&amp;quot; par Michael Ligh, co-auteur des livres &amp;quot;Malware Analyst Cookbook&amp;quot; et &amp;quot;The Art of Memory Forensics&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
NorthSec est situé au Marché Bonsecours dans le Vieux-Port de Montréal au printemps du 15 au 21 mai 2017.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
La présentation couvrira:&lt;br /&gt;
&lt;br /&gt;
- Le plan pour 2017&amp;lt;br /&amp;gt;&lt;br /&gt;
- Ce qui différencie NorthSec&amp;lt;br /&amp;gt;&lt;br /&gt;
- Comment équilibrer une compétition pour les débutants et les experts&amp;lt;br /&amp;gt;&lt;br /&gt;
- Comment bâtir une infrastructure basée sur les conteneurs qui gère 50 équipes dans quelques serveurs sans qu’ils ne se partagent de machines virtuelles&amp;lt;br /&amp;gt;&lt;br /&gt;
- Comment faire du pain au levain à grande échelle&amp;lt;br /&amp;gt;&lt;br /&gt;
- Présentation de quelques défis et solutions&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Les présentateurs:&lt;br /&gt;
&lt;br /&gt;
- Gabriel Tremblay, Président, Delve Labs&amp;lt;br /&amp;gt;&lt;br /&gt;
- Olivier Bilodeau, VP Formations, Co-fondateur MontréHack, GoSecure&amp;lt;br /&amp;gt;&lt;br /&gt;
- Pierre-David Oriol, VP Conférences, Delve Labs&amp;lt;br /&amp;gt;&lt;br /&gt;
- Benoit Guérette, VP Partenaires, Desjardins&amp;lt;br /&amp;gt;&lt;br /&gt;
- Laurent Desaulniers, Tisserand de drapeaux, Bell Canada&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Merci à nos précieux commanditaires !&lt;br /&gt;
&lt;br /&gt;
== Sécurité des applications : Les fondements ==&lt;br /&gt;
[[Image:Tanya.jpeg]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/securite-des-applications-les-fondements]] [https://speakerdeck.com/owaspmontreal/securite-des-applications-les-fondements See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 March 20th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
OWASP Montréal est fier d’accueillir au Midi Conférence du mois de mars, Mme Tanya Janca, Co-Leader du chapitre OWASP Ottawa et spécialiste de la sécurité applicative au sein du Gouvernement fédéral.&lt;br /&gt;
&lt;br /&gt;
La conférence « Les fondements de la sécurité des applications » sera présentée en anglais.&lt;br /&gt;
&lt;br /&gt;
Session Description : Everyone has heard about the problem; everyone is “getting hacked”. But what is the answer? From scanning your code with a vulnerability scanner to red teaming exercises, developer education programs and bug bounties, this talk will take the audience through all the possibilities of an extensive application security program, with a detailed explanation of each part.&lt;br /&gt;
&lt;br /&gt;
Bio : Tanya Janca is an application security evangelist, a web application penetration tester and vulnerability assessor, a secure code reviewer, an ethical hacker, the Co-Leader of the OWASP Ottawa chapter, and has been developing software since the late 90’s. She has worn many hats and done many things, including; Custom Apps, Ethical Hacking, COTS, Incident Response, Enterprise Architect, Project and People Management, and even Tech Support. She is currently helping the Government of Canada secure their web applications.&lt;br /&gt;
&lt;br /&gt;
Merci à notre commanditaire principal de cet événement: Ubitrak!&lt;br /&gt;
&lt;br /&gt;
== WORKSHOP ! Server Side Template Injection (SSTI) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-okiok-SSTI-r.jpg | WORKSHOP ! Server Side Template Injection (SSTI) ]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/workshop-server-side-template-injection-ssti]] [https://speakerdeck.com/owaspmontreal/workshop-server-side-template-injection-ssti See the slides / Voir la présentation]&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 22 Février 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Shopify Montréal&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
OWASP Montreal vous invite à un atelier portant sur la sécurité des applications web supportant les moteurs de template (Template Engine). Le principe de séparation entre la présentation du site (code HTML statique) et de son contenu dynamique facilite la création de documents HTML et la capacité à modifier l'apparence du site sans mélanger le traitement et le rendu de la page. L'utilisation de moteurs de template amène de nouveaux enjeux de sécurité. Les vulnérabilités de type Server Side Template Injection (SSTI) sont exploitables à travers les données (non fiables) fournies par l'utilisateur et conduisent à l'exécution de code arbitraire (RCE) sur le serveur hébergeant l'application web.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ce workshop a pour but d'introduire cette classe de vulnérabilité à travers différents cas d'implémentation (php, java, python).&lt;br /&gt;
Nous verrons comment identifier et exploiter ces vulnérabilités et de quelle manière un attaquant peut &lt;br /&gt;
s'y prendre pour exécuter du code arbitraire sur le serveur afin d'en prendre le contrôle.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Niveau : Intermédiaire&amp;lt;br /&amp;gt;&lt;br /&gt;
Matériel requis :&lt;br /&gt;
* Votre portable&lt;br /&gt;
* Votre distribution Linux/Unix de votre choix&lt;br /&gt;
* Votre proxy Web de votre choix&lt;br /&gt;
&lt;br /&gt;
Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
Places limitées. Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Shopify pour l'événement.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Présentateur : Gérôme Dieu&amp;lt;br /&amp;gt;&lt;br /&gt;
Gérôme Dieu cumule plus de 7 années d’expérience en technologies de l’information et en sécurité. &lt;br /&gt;
Il œuvre à titre de conseiller senior en sécurité de l’information au sein de la firme OKIOK. Ces dernières années, il a acquis une expertise dans le domaine de la sécurité des applications web aussi bien d'un point de vue offensif que défensif. En plus de réaliser des tests d’intrusion pour des clients internationaux, Gérôme s’implique dans la recherche et développement afin de maintenir à la fine pointe de la technologie les tests d'intrusion et d'analyse de vulnérabilités. &amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Merci à Shopify d'héberger l'événement !&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Shopify Logo-r.png| Shopify | link=https://www.shopify.com/]]&lt;br /&gt;
== Le courriel en 2017 – risques et menaces pour tous ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Zero spam 2.jpg|Le courriel en 2017 – risques et menaces pour tous]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://www.youtube.com/watch?v=HX2vcijcCWw ]] [https://www.youtube.com/watch?v=HX2vcijcCWw Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 Le 23 janvier 2017 à midi&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
Monsieur Poellhuber nous brossera un tableau du phénomène grandissant du rançongiciels et de l'hameçonnage, personnification.&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
- Par les années passées, la menace courriel se résumait principalement en un fort volume de contenu simplement indésirable. Aujourd’hui la menace a passablement évolué. Quels sont les véritables risques actuels associés au courriel ? Rançongiciels, hameçonnage, personnification. Cette conférence présentera les nouveaux défis de sécurité pour les organisations qui doivent composer avec des attaques de plus en plus sophistiquées et de plus en plus ciblées tout en protégeant leur réputation. Des exemples biens réels, drôles et moins drôles seront disséqués pour bien dessiner l’ampleur de l’enjeu.&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
M. David Poellhuber, Chef de l’exploitation, ZEROSPAM Sécurité Inc&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note biographique :&amp;lt;br /&amp;gt;&lt;br /&gt;
Monsieur David Poellhuber oeuvre dans l’industrie de la sécurité informatique depuis quinze ans. Il a été conférencier dans plusieurs forums de sécurité au Canada et est maintenant reconnu comme une autorité en matière de sécurité du courriel. Il a fondé ZEROSPAM Sécurité en 2003, le premier service Québécois externalisé de sécurité du courriel infonuagique qui se distingue par sa convivialité, son efficacité et ses technologies de détection proactives.&amp;lt;br /&amp;gt;&lt;br /&gt;
Audience :  Généralistes et spécialistes de la sécurité des TI &lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Merci à Ubitrack pour le repas et à Desjardins d'héberger l'événement!&lt;br /&gt;
&lt;br /&gt;
[[Image:Ubitrak-r2.jpg|Ubitrak|link=http://www.ubitrak.com/fr/]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&lt;br /&gt;
== Effective XSS Mitigation ==&lt;br /&gt;
&lt;br /&gt;
[[Image:XSS mitigation.jpg | Effective XSS Mitigation ]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=http://slides.com/olivierarteau/xss-mitigation ]] [http://slides.com/olivierarteau/xss-mitigation See the slides / Voir la présentation]&lt;br /&gt;
&lt;br /&gt;
WHEN &lt;br /&gt;
 18 Janvier 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Google Montréal&lt;br /&gt;
&lt;br /&gt;
FRANÇAIS/ENGLISH&amp;lt;br /&amp;gt;&lt;br /&gt;
La mitigation de XSS a été un sujet important au cours des dernières années. Les navigateurs ont implémenté, en autre, deux fonctionnalités pour mitiger leur impact : l'entête &amp;quot;XSS-Protection&amp;quot; et l'entête &amp;quot;Content-Security-Policy&amp;quot;. Par contre, obtenir une mitigation contre les XSS efficace est souvent plus complexe que l'on pense. Cet atelier couvrira les deux entêtes. Il expliquera comme il est possible de contourner ces protections et ce qu'il est possible de faire pour se protéger. Des exercices de type &amp;quot;offensif&amp;quot; et &amp;quot;défensif&amp;quot; seront proposés.&lt;br /&gt;
Mitigation for XSS as been an important topic in the last few years. Browsers have implemented two main functionalities to help mitigate the impact of XSS : the &amp;quot;XSS-Protection&amp;quot; header and the &amp;quot;Content-Security-Policy&amp;quot; header. But, getting an effective XSS mitigation of those headers is trickier than it may seem. This workshop will cover both of those headers. It will explain how bypass of those protection work and what you can do about it. It will have both &amp;quot;defensive&amp;quot; exercises and &amp;quot;offensive&amp;quot; exercises.&lt;br /&gt;
Niveau : débutant/intermédiaire&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Matériel requis :&lt;br /&gt;
&lt;br /&gt;
Votre portable&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
&lt;br /&gt;
Places limitées. Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Google pour l'événement.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Présentateur : Olivier Arteau&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Olivier Arteau est un professionnel en sécurité informatique depuis quelques années et fait partie de l’équipe de test d’intrusion de Desjardins. Il est aussi un amateur de CTF qui a gagné à plusieurs reprises le CTF du NorthSec avec l’équipe HackToute et participe fréquemment à d’autres CTF avec l’équipe DCIETS.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Merci à Google d'héberger l'événement! &lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-zap-4-r.jpg | Google | link=https://www.google.ca/ ]]&lt;br /&gt;
&lt;br /&gt;
= Lunch &amp;amp; Learn / Workshops 2015-2016 =&lt;br /&gt;
&lt;br /&gt;
== WORKSHOP ! Top 10 OWASP - Unleash the threats ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-top10.jpg | WORKSHOP! Top 10 OWASP - Unleash the threats ]]&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 30 novembre 2016 de 17h30 à 20h30&lt;br /&gt;
WHERE&lt;br /&gt;
 Immunio @ WeWork&lt;br /&gt;
&lt;br /&gt;
De nos jours, la sécurité applicative est essentielle dans l’écosystème des entreprises de toutes tailles. Les vecteurs d’attaques sont multiples, les vulnérabilités de sécurité dans les applications peuvent être désastreuses et les impacts d’un « Hack » peuvent être irréversibles pour l’entreprise; vols de données sensibles, perte de réputation, perte de $$$$$, etc.&lt;br /&gt;
L’objectif du workshop est de comprendre la base sur les vulnérabilités de sécurité dans les applications et les techniques d’exploitation utilisées par les pirates informatiques, en plus de connaître les bonnes pratiques de développement en matière de sécurité applicative. &lt;br /&gt;
Avec l'aide de WebGoat, Damn Vulnerable Web Application et de Kali Linux, vous pourrez participer&lt;br /&gt;
à l'exploitation des applications et découvrir les techniques utilisées par les attaquants.&lt;br /&gt;
&lt;br /&gt;
Niveau : débutant&lt;br /&gt;
&lt;br /&gt;
Matériel requis :&lt;br /&gt;
 Votre portable&lt;br /&gt;
 Kali Linux&lt;br /&gt;
 La VM du workshop, envoyée aux participants&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
&lt;br /&gt;
Places très limitées (nb = 10). Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Immunio &amp;amp; WeWork pour l'événement.&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Présentateur : Christian Leclerc&lt;br /&gt;
&lt;br /&gt;
Christian est spécialisé en conception et développement de solutions web sécuritaires. Tout au long de sa carrière, il a acquis une vaste expertise sur plusieurs types de technologies et méthodologies, intégré la sécurité dans le cycle de développement d’applications, effectué des revues de code sécurité, déployé des outils d’analyse des vulnérabilités et mis en place des systèmes d’authentification. De plus, il a participé à la conception et au développement de solutions sécuritaires de pointe comme la signature électronique à l’aide d’une infrastructure à clé publique (PKI), les authentifications fortes, le Registre des consentements au don d'organes et de tissus (RDOQ.org) et la migration de plusieurs applications web vers un environnement SOA (Service Oriented Architecture). &lt;br /&gt;
&amp;lt;br&amp;gt;Merci à Immunio &amp;amp; WeWork d'héberger l'événement!&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:Immunio-horizontal-r.png|Immunio|link=https://www.immun.io/]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[Image:Wework-r.jpg|WeWork|link=https://www.wework.com/]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Histoire d'un Hack ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Histoire-dun-hack-r.jpg | Histoire d'un Hack ]]&lt;br /&gt;
&lt;br /&gt;
WHEN &lt;br /&gt;
 21 novembre 2016 à midi&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
Pour son activité du mois de novembre, OWASP Montréal propose à la communauté de la sécurité des TI et aux gestionnaires de faire l'autopsie d'une attaque de haute voltige sur un site web et des outils mis à la disposition par OWASP.&lt;br /&gt;
 &lt;br /&gt;
Bernard Bolduc cumule plus de 17 années d’expérience en technologies de l’information et en sécurité. Il œuvre à titre de conseiller senior en sécurité de l’information au niveau d’entreprise de classe nationale et internationale.&lt;br /&gt;
 &lt;br /&gt;
Bernard se spécialise en sécurité Unix, applicative et en gestion de la sécurité des télécommunications. Il combine ces expertises techniques afin d’obtenir des résultats probants et efficaces pour ces clients des secteurs bancaire, télécommunication et multimédias, de l’énergie ou des services publiques. Tout au long de sa carrière, Bernard s’est toujours maintenu à jour sur les dernières menaces de sécurité technologique et commerciale en assistant à des formations spécialisées et d'échanger avec un grand nombre de partenaires dans l'industrie de la sécurité.&lt;br /&gt;
 &lt;br /&gt;
La conférence débute à midi.&lt;br /&gt;
 &lt;br /&gt;
La conférence vous donne droit à 1 CPE et pour les 50 premières personnes, un lunch gratuit.&lt;br /&gt;
 &lt;br /&gt;
Merci à Desjardins d'héberger l'événement!&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Workshop ! Création de votre première extension OWASP ZAP (ou BurpSuite) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-zap-mix.jpg | Workshop ! Création de votre première extension OWASP ZAP (ou BurpSuite)]]&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 11 novembre 2016 de 18h à 21h&lt;br /&gt;
&lt;br /&gt;
WHERE &lt;br /&gt;
 Google Montréal&lt;br /&gt;
&lt;br /&gt;
OWASP Zed Attack Proxy (ZAP) est un scanneur de vulnérabilités et un outil de débogage HTTP. Ce type d'outil est crucial dans un test d'intrusion web et contient un lot intéressant de fonctionnalités. Cela dit, il est possible d'étendre les fonctionnalités. Plusieurs types d'extension sont possibles : vue alternative pour les requêtes ou les réponses, scanneur passif des réponses, scanneur actif produisant des requêtes, etc.&lt;br /&gt;
&lt;br /&gt;
Plusieurs options seront données, par exemple :&lt;br /&gt;
&lt;br /&gt;
 Détection automatique de flag dans les sources&lt;br /&gt;
 Scanneur actif asynchrone DNS&lt;br /&gt;
 Ou votre propre idée&lt;br /&gt;
&lt;br /&gt;
Pour chacune des suggestions, des squelettes de code seront fournis pour les APIs de ZAP. Pour les utilisateurs de BurpSuite, des directives analogues seront également données.&lt;br /&gt;
&lt;br /&gt;
Niveau : débutant / intermédiaire&lt;br /&gt;
&lt;br /&gt;
Matériel requis&lt;br /&gt;
&lt;br /&gt;
 Votre portable&lt;br /&gt;
 [https://www.owasp.org/index.php/OWASP_Zed_Attack_Proxy_Project OWASP ZAP (gratuit)]&lt;br /&gt;
 [https://portswigger.net/burp/download.html BurpSuite]&lt;br /&gt;
 Éditeur de code pour Java, Python ou Ruby&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Présentateur : Philippe Arteau&lt;br /&gt;
&lt;br /&gt;
Philippe est un chercheur en cybersécurité chez GoSecure. Il est l'auteur de l'outil d'analyse statique Java &amp;quot;Find Security Bugs&amp;quot;. Il a découvert des vulnérabilités importantes dans les logiciels populaires tels que Google Chrome, Dropbox, Paypal, RunKeeper et Jira. Il a présenté dans différentes conférences incluant Black Hat USA, Black Hat Europe, ATL Sec Con, NorthSec, Hackfest (QC) et JavaOne. Il a développé de nombreux plug-ins pour les outils de proxy BurpSuite et OWASP ZAP (Retire.js, Reissue Request Script, PDF preview et Image Metadata). Il a fait également des contributions à d'autres plug-ins comme J2eeScan.&lt;br /&gt;
&lt;br /&gt;
Merci à Google d'héberger l'événement! &lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-zap-4-r.jpg | Google | link=https://www.google.ca/ ]]&lt;br /&gt;
&lt;br /&gt;
==Logiciel de rançon (Ransomware) s'attaque au domaine de la santé==&lt;br /&gt;
&lt;br /&gt;
[[Image:HackingHealth-2.jpg | Logiciel de rançon (Ransomware) s'attaque au domaine de la santé ]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/ransomware-and-healthcare-hacking-health ]] [https://speakerdeck.com/owaspmontreal/ransomware-and-healthcare-hacking-health See the slides / Voir la présentation]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;(Conférence en anglais)&lt;br /&gt;
Pour le lancement de la saison 2016 - 2017, OWASP Montréal propose à la communauté de la sécurité des TI et aux gestionnaires de la santé une incursion dans le monde du logiciel malveillant ciblant le domaine de la santé.&amp;lt;br /&amp;gt;&lt;br /&gt;
Cette conférence s'intége dans le Coopérathon co-organisé par le Mouvement Desjardins et Hacking Health.&amp;lt;/b&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Le domaine de la santé serait devenu une cible privilégiée des campagnes de ransomware parce que l'industrie a souvent payé la rançon demandée pour récupérer les données confidentielles et vitales de ses clients. Monsieur Ed Gershfang nous brossera un portrait du phénomène et des meilleures pratiques à mettre en place en matière de sécurité applicative.&lt;br /&gt;
Ed Gershfang possède une expérience solide dans l'infrastructure informatique et plus de 6 ans d'expérience dans les domaines de la sécurité de l'information, de la vulnérabilité, de la gouvernance et de la gestion des risques. Il était directeur de la sécurité pour la société PeriGen, un chef de file de développement de logiciels médicaux en Israël.&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== La sécurité applicative vue par un pentesteur ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Juin2016-OWASPMtl.jpg | OWASP Montréal reçoit Mario Contestabile, Pentester de renom ]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
From Left to Right : Isabelle Lusseyran, Head of Development at Hacking Health. Eduard Gershfang Information Security Analyst at WSP | Parsons Brinckerhoff.&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/owasp-montreal-recoit-mario-contestabile ]] [https://speakerdeck.com/owaspmontreal/owasp-montreal-recoit-mario-contestabile See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Pour clore la saison 2015 – 2016, OWASP Montréal est fier d’accueillir au Midi Conférence un des architectes de renom du développement applicatif au Canada, monsieur Mario Contestabile.&lt;br /&gt;
En tant qu’auteur de plusieurs centaines de tests d’intrusion, il connait tous les rouages de ce qu’est véritablement une application Web «sécurisée». Mais avez-vous déjà remarqué que les rapports de tests d’intrusion mentionnent rarement, voir jamais : «Votre site est très difficile à pirater. Félicitations !» ?&lt;br /&gt;
Et qu’en est-il de ces rapports qui contiennent des dizaines de soi-disant vulnérabilités ? Est-ce que cela signifie d’emblée que l’application devrait être mise hors ligne ?  &lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Lors de cette conférence, nous examinerons des rapports concrets (ambigus) de vulnérabilités et nous les analyserons afin de mieux comprendre si elles représentent une véritable menace, ou si elles ne servent qu’à «remplir» les rapports.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Avec son expertise en protection et en attaque d’applications Web, il abordera les points suivants :&lt;br /&gt;
Comment pouvez-vous sélectionner des systèmes de façon à mieux exécuter des protections de sécurité ?&lt;br /&gt;
Éviter certains pièges dans votre application Web qui rendent les attaques plus faciles et la protection plus difficile.&lt;br /&gt;
De nos jours, que peuvent faire les développeurs à l’intérieur de systèmes communs, qui puisse me rendre la tâche plus ardue en tant que « hacker »?&lt;br /&gt;
Pouvons-nous exiger de meilleurs rapports de la part des firmes de sécurité?&lt;br /&gt;
À quoi devrions-nous nous attendre de la part d’un « pentesters »?&lt;br /&gt;
Comment pouvons-nous savoir si le « pentester » a vérifié les failles de l’application et qu’il n’a pas simplement utilisé un scanneur?&lt;br /&gt;
Et enfin, comment pouvons-nous aider les « ethical hackers » à obtenir un meilleur rendement lors d’un test d’intrusion?&lt;br /&gt;
Il expliquera le sujet en détails, et ensemble, nous verrons de quelles façons les développeurs d’applications peuvent exploiter le savoir-faire des « pentesters », et comment nous pouvons faire en sorte qu’une application Web soit protégée.&lt;br /&gt;
Biographie :&lt;br /&gt;
Mario Contestabile est reconnu comme l’un des experts en sécurité les plus réputés au Canada. Son expertise, construire et protéger votre plateforme applicative. Ancien développeur C++ et Java, Mario partage ses nombreuses connaissances en « ethical hacking » et en développement de codes sécurisé.  &lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Tuesday, 14 June 2016 from 12:00 PM to 1:00 PM (EDT) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Comment protéger les applications mobiles? ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Avril2016-OWASPMtl.png | Comment protéger les applications mobiles? ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/comment-proteger-les-applications-mobiles ]] [https://speakerdeck.com/owaspmontreal/comment-proteger-les-applications-mobiles See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Dans le cadre des Midis Conférence à l'Espace Desjardins, l'équipe OWASP Montréal vous invite à assister à une présentation sur les vulnérabilités les plus communes associées aux appareils mobiles. &lt;br /&gt;
Marie-Claire Willig détaillera entre autres comment stocker de façon sécuritaire les données de l’application mobile ainsi que protéger l’application contre des attaques externes. Des outils simples vous seront dévoilés pour détecter ces vulnérabilités.&lt;br /&gt;
Marie-Claire est une professionnelle d'expérience en sécurité appliquée.&lt;br /&gt;
Une grande partie de son intérêt professionnel réside actuellement dans un domaine assez niche, soit la revue de code sécuritaire, un fondement important de tout cycle de développement sécuritaire en entreprise.&lt;br /&gt;
Au sein de l'équipe de sécurité technologique Desjardins, elle est, en autre, responsable de former les développeurs (Java et .NET principalement) afin de les sensibiliser aux meilleures pratiques de développement sécuritaire.&lt;br /&gt;
Également, elle est une professionnelle des tests d'intrusion sur les applications web, les applications mobiles ainsi que l'infrastructure réseau.&lt;br /&gt;
Bienvenue à tous&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 20 April 2016 from 12:15 PM to 1:00 PM (EDT) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== NorthSec, Le plus gros événement de cybersécurité appliquée au Canada ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Mars2016-OWASPMtl.jpg | NorthSec, Le plus gros événement de cybersécurité appliquée au Canada ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/YQtvltQYs7Y]] [https://youtu.be/YQtvltQYs7Y Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
OWASP Montréal est fier d’inviter au Midi Conférence de mars, NorthSec est le plus gros événement de sécurité appliquée au Canada qui comprend deux jours de formation, deux jours de conférences ainsi qu’une compétition du genre « capture the flag » (CTF) de trois jours.&lt;br /&gt;
Gabriel Tremblay, Benoit Guerette, Pierre-David Oriol et Laurent Desaulniers viendront vous parler de cet organisme sans but lucratif dynamique qui est géré par une équipe de bénévoles passionnés qui donnent à chaque année leur énergie et leur temps pour soutenir la communauté de la sécurité de l’information.&lt;br /&gt;
Le volet compétition, l’épreuve maîtresse, est présentée sous forme d’un scénario qui rend cohérent une centaine de défis techniques. Les équipes de participants attaquent l’infrastructure de compétition pour soutirer des drapeaux (flags) à travers un ensemble de vulnérabilités présentes comme de l’injection SQL, des XSS ou encore l’exploitation d’exécutables sur systèmes embarqués. Quelques exemples de défis des années passées seront également présentés.&lt;br /&gt;
Le volet conférence, qui est à sa 2ème année, met de l’avant plusieurs présentations techniques touchant la sécurité applicative mais aussi l’éthique et leurs impacts sociaux. Certaines présentations confirmées seront dévoilés.&lt;br /&gt;
Le tout nouveau volet formation propose deux formations en sécurité applicative de calibre international (anglais) : “Advanced Web Security Testing with Burp Pro” et “Modern Object-Oriented Malware Reverse Engineering”.&lt;br /&gt;
Venez aussi, découvrir comment l'équipe est partie d'une idée en 2012 pour se rendre à un évènement d'envergure, qui rassemblera plus de 600 professionnels, étudiants et autres passionnés de sécurité appliquée lors de la 4ème édition qui aura lieu du 17 au 22 mai 2016 au Marché Bonsecours.&lt;br /&gt;
Finalement, la mission, la vision ainsi que les activités sociales de la semaine de NorthSec sont aussi au menu de cette présentation qui sera suivie d’une période de questions.&lt;br /&gt;
&lt;br /&gt;
Gabriel Tremblay, Delve Labs, Président&lt;br /&gt;
Benoit Guerette, Desjardins, VP Finances&lt;br /&gt;
&lt;br /&gt;
Pierre-David Oriol, Delve Labs, VP Conférence&lt;br /&gt;
Laurent Desaulniers, Bell Canada, Artisant de drapeaux&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 23 March 2016 from 12:00 PM to 1:00 PM (EDT) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== La sécurité applicative et l'hameçonnage - February 24th ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Fevrier2016-OWASPMtl.jpg | La sécurité applicative et l'hameçonnage ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/1RYlOiIENjQ]] [https://youtu.be/1RYlOiIENjQ Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
De nos jours, une des méthodes les plus efficaces pour contourner les périmètres de sécurité externes est l'hameçonnage conjointement avec l’abus de certaines technologies Web.&lt;br /&gt;
&lt;br /&gt;
Dans le cadre ses activités, OWASP Montréal est heureux d'inviter d'accueillir, l'équipe OKIOK qui présentera les impacts liés à ce type d'attaque, tel que vu et expérimenté en entreprise ainsi que les plans d'action pour traiter ces risques. La présentation abordera aussi bien la sécurité web et applicatives, des systèmes informatiques ainsi que de la sécurité physique de centres de données. &lt;br /&gt;
&lt;br /&gt;
    Capture d'informations sensibles par imitations de portails Web ;&lt;br /&gt;
    Authentification Web par 2-facteurs ;&lt;br /&gt;
    Injection SMTP dans des formulaires Web ;&lt;br /&gt;
    Attaque de type “Drive-by-download”;&lt;br /&gt;
    Prise de contrôle à distance à travers des flux HTTP;&lt;br /&gt;
    Attaque de CSRF à partir de courriels ;&lt;br /&gt;
    Attaque d'hameçonnage basée sur des achats par Internet (ex : PayPal).&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
When&lt;br /&gt;
 Wednesday, 24 February 2016 from 12:00 PM to 1:15 PM (EST) - Add to Calendar &lt;br /&gt;
Where&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest Montreal, Quebec CA&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Internet of {Things, Threats} - January 20th ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Janvier2016-OWASPMtl-R.png | Internet of {Things, Threats} ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=http://gosecure.github.io/presentations/2016-01-20_owasp-mtl/internet-of-threats.html ]] [http://gosecure.github.io/presentations/2016-01-20_owasp-mtl/internet-of-threats.html See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
De plus en plus de périphériques se retrouvent connectés sur Internet. Sous la bannière &amp;quot;Internet of Things&amp;quot; (IoT) ces équipements, que ce soit une pompe à insuline ou un système de caméra de sécurité, tournent généralement sous un système GNU/Linux embarqué d'architecture MIPS ou ARM. La difficulté de mettre à jour ces équipements ainsi que le peu d'effort mis dans la sécurité des systèmes ou la sécurité applicative en font des cibles de choix. Ces derniers mois, nous avons analysé plusieurs logiciels malveillants ciblant ces architectures. Que ce soit par l'exploitation d'une vulnérabilité (Shellshock) ou encore un défaut de configuration, ces systèmes exposés sur Internet peuvent être compromis.&lt;br /&gt;
&lt;br /&gt;
Notre présentation couvrira quelques une de ces analyses:&lt;br /&gt;
&lt;br /&gt;
* Linux/Moose, un malware se propageant automatiquement qui fraude les réseaux sociaux (par exemple Facebook, Twitter et YouTube)&lt;br /&gt;
* LizardSquad et acteurs étrangers qui utilisent des systèmes embarqués compromis pour réaliser des dénis de service distribué (DDoS) &lt;br /&gt;
* Win32/RBrute est un logiciel malveillant qui tente de changer les paramètres de routeurs dans le but de faire du &amp;quot;DNS poisoning&amp;quot;. Il a été distribué par le populaire botnet Sality.&lt;br /&gt;
* Un kit d'exploits qui utilise seulement le navigateur de leur victime avec le même objectif, c'est-à-dire faire du &amp;quot;DNS poisoning&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Enfin, des conseils seront proposés à l'audience pour l'aider à se protéger de ces menaces.&lt;br /&gt;
&lt;br /&gt;
'''Thomas Dupuy''' (twitter: @nyx__o)&lt;br /&gt;
&lt;br /&gt;
Thomas est chercheur en logiciel malveillant chez ESET Canada Recherche. Bon vivant, Thomas déjeune en &amp;quot;reversant&amp;quot; des binaires, contribue à quelques projets open source durant le diner (yara, yara rules, pefile, APTnotes) et la nuit participe à des &amp;quot;Hacking Games&amp;quot; (Capture The Flag). Curieux de nature Thomas analyse des malware aux architectures &amp;quot;exotiques&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Olivier Bilodeau''' (twitter: @obilodeau)&lt;br /&gt;
&lt;br /&gt;
Olivier Bilodeau is the head of Cybersecurity Research at GoSecure a consultancy firm specializing in cybersecurity services for the public and private sector. With more than 10 years of infosec experience, Olivier worked on Unix servers at Bell Canada, managed a portion of Air Canada's network, wrote open source network access control software at Inverse and worked as a Malware Researcher at ESET. He likes to reverse engineer everything that crosses his path, participate in information security capture-the-flag competitions, hack open source code and brew beer. He has spoken at various conferences (Defcon, Botconf, VirusBulletin, Derbycon, ...), used to lecture on information security at ETS University in Montreal, drives the NorthSec Hacker Jeopardy and co-organizes the MontreHack capture-the-flag training initiative. His primary research interests include reverse-engineering tools, Linux and/or embedded malware and honeypots.&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Survivre aux attaques DDOS applicatives ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Decembre2015-OWASPMtl.jpg | Survivre aux attaques DDOS applicatives ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Survivre aux attaques DDOS (Distributed Denial-Of-Service) applicatives.&lt;br /&gt;
Cette conférence s'adresse aux professionnels et gestionnaires des TI.&lt;br /&gt;
Conférencier : Christian Shink, ing., CSSLP, ingénieur système chez Radware, manufacturier spécialisé dans la prévention des attaques DDOS. Il fut également consultant en sécurité applicative chez In Fidem.&lt;br /&gt;
Objectifs de la conférence:&lt;br /&gt;
Présenter les tendances actuelles en matière d'attaques DDOS applicatives.&lt;br /&gt;
Renseigner les participants sur les techniques et stratégies pour contrer ces attaques illustrées à partir de cas vécus.&lt;br /&gt;
Démystifier certains mythes en ce qui concernent les façons efficaces de protéger les applications contre des attaques DDOS.&lt;br /&gt;
Date : 16 décembre 2015&lt;br /&gt;
Heure : 11h45&lt;br /&gt;
La conférence débute à 12h00 et se termine à 12:55.&lt;br /&gt;
Un lunch sera servi.&lt;br /&gt;
Réservez maintenant!&lt;br /&gt;
1 CPE&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 16 December 2015 from 11:45 AM to 1:00 PM (EST) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec &lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Sécurité des applications - Systèmes de contrôles industriels ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Novembre2015-OWASPMtl-R.png | Sécurité des applications - Systèmes de contrôles industriels ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/0eAZpyiQQ9A]] [https://youtu.be/0eAZpyiQQ9A Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&lt;br /&gt;
La sécurité des applications et les systèmes de contrôles industriels.&lt;br /&gt;
Cette conférence s'adresse aux professionnels et gestionnaires des TI desinfrastructures critiques qui exploitent ou gèrent des systèmes de contrôles industriels(SCI) et SCADA (surveillance et d'acquisition de données).&amp;lt;br /&amp;gt;&lt;br /&gt;
Conférenciers : Robert Nastas, CSSA. Gestionnaire de projet et Youssef Jad, Architecte Cyber sécurité, ICS-CERT&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Objectifs de la conférence:&lt;br /&gt;
* Démystifier le domaine d'affaires.&lt;br /&gt;
* Renseigner les participants sur les bonnes pratiques de sécurité desapplications liées au secteur industriel.&lt;br /&gt;
* Proposer aux professionnels et gestionnaires des TI responsables dessystèmes SCADA et SCI des pistes de solutions aux enjeux de sécurité.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
L'équipe OWASP Montréal vous remercie d'avoir assisté en grand nombre à la conférence, 'La sécurité des applications et les systèmes de contrôles industriels'.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 18 November 2015 from 11:45 AM to 1:00 PM (EST) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Les préoccupations actuelles de hauts dirigeants en matière de cybersécurité et de sécurité applicative ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Septembre2015-OWASPMtl.jpg | Les préoccupations actuelles de hauts dirigeants en matière de cybersécurité et de sécurité applicative ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/un-regard-sur-la-securite-de-linformation-en-2015-par-eric-hebert ]] [https://speakerdeck.com/owaspmontreal/un-regard-sur-la-securite-de-linformation-en-2015-par-eric-hebert See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Pour le lancement des activités corporatives de la saison 2015 - 2016, le 8 septembre prochain à 12:00, l'équipe OWASP Montréal convie les gestionnaires et artisants de la sécurité des TIC à venir entendre monsieur Éric Hébert qui nous présentera son interprétation des préoccupations actuelles de hauts dirigeants en matière de cybersécurité et de sécurité applicative. L'événement se tiendra au complexe Desjardins à la salle &amp;quot;Espace Desjardins&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
''' ÉRIC G. HÉBERT, CISM, CISSP ''' &amp;lt;br /&amp;gt;&lt;br /&gt;
Après plus de 20 ans passés dans le domaine de la sécurité des technologies de l’information, Éric se spécialise dans la mise en œuvre et la gestion d'équipes performantes, capables de relever les plus hauts défis de la cybersécurité moderne.&amp;lt;br /&amp;gt;&lt;br /&gt;
Capable de dialoguer avec les hauts dirigeants, il sait traduire et vulgariser les enjeux techniques complexes tout en respectant la nature et l'appétence au risque de ses clients. Dynamique et pourvu d'une expérience couvrant presque toutes les sphères de la SI, il fonce dans le respect de la culture établie tout en implantant des solutions pragmatiques et efficaces.&amp;lt;br /&amp;gt;&lt;br /&gt;
Depuis plus de 10 ans, il gravite principalement autour des entreprises du domaine financier (BNC, Desjardins, Fonds de solidarité FTQ...) et les accompagne dans la mise en place de solutions efficaces tenant compte à la fois des risques et des budgets.&lt;br /&gt;
En plus d’avoir fondé de nombreuses associations telles que le RéseauSécurIT et le RPSI, il maintient une présence régulière auprès des milieux associatifs professionnels et partage régulièrement ses expériences lors de conférences et d'entrevues avec divers médias.&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Events / Évènements =&lt;br /&gt;
&lt;br /&gt;
== Owasp Montreal at [https://nsec.io/ NorthSec 2017] ==&lt;br /&gt;
&lt;br /&gt;
[[Image:NorthSec2017-5.jpg]]&lt;br /&gt;
[[Image:NorthSec2017-6.jpg]]&lt;br /&gt;
&lt;br /&gt;
From Left to Right: Anne Gauthier, OWASP Montréal Chapter Leader (President) and Application Security Analyst at GoSecure, Hugo Genesse, OWASP Montréal Chapter Leader and Research Intern at PNF Software, Julien, OWASP Montréal Chapter Leader&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal at [https://2017.appsec.eu/ AppSec] ==&lt;br /&gt;
&lt;br /&gt;
[[Image:OWASPAppSecBelfast2017-7.jpg]]&lt;br /&gt;
&lt;br /&gt;
OWASP Montreal and Ottawa Chapter Leaders at OWASP AppSec Belfast, UK #WomenInAppSec&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal at [https://hackfest.ca/ HackFest 2016] ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hackfest2016-r.jpg| HackFest |link=https://hackfest.ca/]]&lt;br /&gt;
&lt;br /&gt;
From left to right: Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Louis Nadeau, OWASP Québec Chapter Leader and Manager, Product Security at Bentley Systems and Patrick Leclerc, OWASP Québec Chapter Leader and Information Security Advisor at La Capitale.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal at OWASP [https://2016.appsecusa.org/ AppSec USA 2016, Washington] ==&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:OWASPMtl-AppSecUSA2016-Washington.jpg | OWASP Montreal at AppSec USA 2016, Washington]] &lt;br /&gt;
&lt;br /&gt;
​From left to right: Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Marie-Claire Willig, Application Security Analyst at Desjardins, Speaker and Cofounder of the Roslyn Security Guard tool which will be presented at Blackhat 2016, Alexandre Hamelin President at Synlabs Consulting Inc., Jonathan Marcil, Application Security Engineer at Blizzard Entertainment and former OWASP Montreal Chapter Leader. Philippe Arteau, Cybersecurity Researcher at GoSecure and designer of [https://find-sec-bugs.github.io/ Find Security Bugs] and Roslyn Security Guard tool which will be presented at Blackhat 2016.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://www.gosec.net GoSec] 2016 ==&lt;br /&gt;
&lt;br /&gt;
[[Image:OWASP-GoSec2016-1r.jpg|OWASP Montreal at GoSec 2016]] [[Image:OWASP-GoSec2016-2r.jpg|OWASP Montreal at GoSec 2016]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
From left to right : Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Simon Lacasse, student and volunteer, and Laurent Desaulniers, Security Analyst at Bell Canada.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://www.nsec.io/ NorthSec] 2016 – Annual Applied Security Event ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hackfest2016-OWASPMtl.jpg|OWASP Montreal at NorthSec 2016]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Simon Veilleux &lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
From left to right : Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Olivier Arteau OWASP Montréal Chapter Leader and Conseiller chez Groupe Technologie Desjardins, Hugo Genesse, OWASP Montréal Chapter Leader and Vulnerability Research Intern at Wurldtech Security Technologies.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://hackfest.ca/en/ Hackfest] 2015 ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hackfest2015-OWASPMtl-R.JPG | OWASP Montreal at Hackfest 2015]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Hackfest &lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
From left to right : Jonathan Marcil, Application Security Engineer at Blizzard Entertainment and former OWASP Montreal Chapter Leader. Philippe Arteau, Cybersecurity Researcher at GoSecure and designer of [http://find-sec-bugs.github.io/ Find Security Bugs] and Roslyn Security Guard tool which will be presented at Blackhat 2016. &lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/8U0qkEuUFy8]] [https://youtu.be/8U0qkEuUFy8 Watch the video / Regarder la vidéo]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://www.gosec.net/ GoSec] 2015 – The Annual Cybersecurity Conference presented by GoSecure, EY and ISACA. ==&lt;br /&gt;
&lt;br /&gt;
[[Image:GoSec2015-OWASPMtl.jpg|OWASP Montreal at GoSec 2015]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
From left to right : Marie-Claire Willig, Application Security Analyst at Desjardins, Speaker and Cofounder of the Roslyn Security Guard tool which will be presented at Blackhat 2016. Benoît Guérette, Application Security Team Leader at Desjardins, VP Finance at NorthSec and OWASP Montreal Chapter Founder and Former Chapter Leader.&lt;br /&gt;
&lt;br /&gt;
== See also / Voir aussi ==&lt;br /&gt;
&lt;br /&gt;
OWASP Montréal recommends Montréhack. Learn and share knowledge on IT security by solving technical challenges. Third Monday of every month. &lt;br /&gt;
&lt;br /&gt;
OWASP Montréal recommende Montréhack. Apprends et partages des connaissances sur la sécurité informatique en travaillant des problèmes appliqués. Chaque troisième lundi du mois. &lt;br /&gt;
&lt;br /&gt;
[[File:Montrehack.png|Montréhack|link=http://montrehack.ca/|alt=Montréhack]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Archives 2007-2015 =&lt;br /&gt;
{{:Montreal chapter past meetings}}&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - February 3rd - Getting to Know the Software Assurance Marketplace (SWAMP) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/p4_vjufcB6Q]] [https://youtu.be/p4_vjufcB6Q Watch the conference / Regarder la conférence]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/getting-to-know-the-software-assurance-marketplace-swamp-by-pat-beyer]] [https://speakerdeck.com/owaspmontreal/getting-to-know-the-software-assurance-marketplace-swamp-by-pat-beyer See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Pat Beyer&lt;br /&gt;
*'''ADDITIONAL PRESENTER:'''  Abe Megahed&lt;br /&gt;
*'''ABSTRACT:''' The Software Assurance Marketplace (SWAMP) is an open facility that is designed, built, and operated by four research institutions. The SWAMP provides no-cost access to an array of open-source and commercial software analysis tools. This presentation will provide an overview and demo of the SWAMP, including our goals, intended audience, current capabilities, and future plans. We will cover our relationship with OWASP, incorporation of open-source software assurance tools, and status as an open-source project and resource available to the software community. Visit https://continuousassurance.org/ to learn more about us.&lt;br /&gt;
*'''BIO:''' Pat Beyer serves as the Product Manager for the Software Assurance Marketplace (SWAMP). With over 25 years of experience successfully managing multi-million dollar global projects, Beyer’s expertise extends to the IT, construction, and operations sectors, with a specialization in managing government contracts and grants. A gifted communicator, Beyer is a sought after speaker due to his ability to deliver complex information about technology products and services in a way that is easily understood. He is a decorated combat veteran of the Global War on Terror, the international military campaign that started following the 9/11 terrorist attacks on the United States. In 2004, he constructed and rehabilitated over 20 schools, clinics, and water treatment plants for the Iraqi people using local contractors. Beyer also holds a Bachelor of Science, a Masters in Business Administration, a Ph.D. in Organization and Management, and a Project Management Professional (PMP) certification.&lt;br /&gt;
*'''BIO:''' Abe Megahed is a web developer for the Software Assurance Marketplace. In previous lifetimes, he has been a computer graphics researcher, a game programmer, a programming language and compiler nerd, a dot com company founder, a creator of helicopter simulations, and a developer of 3D simulations for NASA astronaut crew training.&lt;br /&gt;
*'''WHEN:'''  Tuesday, February 3rd 2015&lt;br /&gt;
*'''WHERE:''' Room PK-1140 - UQAM Pavillon Président-Kennedy, 201 Avenue du Président-Kennedy  J2X 3Y7&lt;br /&gt;
*'''REGISTRATION:''' https://owaspmtlswamp2015.eventbrite.ca&lt;br /&gt;
*'''WEBCAST:''' https://www.youtube.com/watch?v=p4_vjufcB6Q&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/getting-to-know-the-software-assurance-marketplace-swamp-by-pat-beyer&lt;br /&gt;
&lt;br /&gt;
*'''ACADEMIC PARTNER:''' AGEEI-UQAM - http://www.ageei.org/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Welcome speech by Chapter Leader (Jonathan Marcil)&lt;br /&gt;
  18:30-20:00 Main session: Getting to Know the Software Assurance Marketplace&lt;br /&gt;
  20:00-...   End of the meeting&lt;br /&gt;
&lt;br /&gt;
[[Image:SWAMP-Logo-Final-Med.png|300px|link=https://continuousassurance.org/]]&lt;br /&gt;
[[Image:Ageeilogo.jpg|200px|link=http://www.ageei.org/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - 4 décembre - Malware côté serveur — évolution, méthodes d’opération et forensic Linux ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/lo8WDl-WQ3E]] [https://youtu.be/lo8WDl-WQ3E Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/malware-cote-serveur-par-marc-etienne-m-dot-leveille]] [https://speakerdeck.com/owaspmontreal/malware-cote-serveur-par-marc-etienne-m-dot-leveille See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''PRÉSENTATEUR PRINCIPAL:''' Marc-Etienne M.Léveillé&lt;br /&gt;
*'''RÉSUMÉ:''' Les logiciels malveillants ciblant les serveurs ont évolué. Ils sont utilisés par des groupes de cybercriminels organisés dans le but de faire du profit via des redirections web et l’envoie de pourriels. La présentation portera sur Opération Windigo, une opération malveillante qui a affecté plus de 25 000 serveurs dans le monde. Après une brève description des composantes de Windigo, nous verrons comment les opérateurs déploient leurs logiciels malveillants et surveille leur réseau de serveurs infectés. Des trucs pratiques pour faire de la forensics sur des systèmes Linux seront donnés. Cette présentation est une suite à la présentation &amp;quot;Linux/Cdorked: Server side malware&amp;quot;, donnée par Olivier Bilodeau à OWASP Montréal en 2013. La présentation sera en français avec des diapositives en anglais (aka Montreal-style).&lt;br /&gt;
*'''BIO:''' Marc-Etienne est un chercheur en logiciel malveillant chez ESET depuis 2012. Il se spécialise dans les logiciels malveillants qui s’attaquent à des plateformes inhabituelles comme aux produits fruités et aux oiseaux nordiques. Dernièrement, il passe beaucoup de son temps à faire la rétro-ingénierie de logiciels malveillants sur des serveurs Linux et s’intéresse à leurs méthodes d’opération. Il adore participer de façon collégiale aux CTFs avec ses amis les CISSP Groupies et jouer de la clarinette. Il tweet très peu à @marc_etienne_.&lt;br /&gt;
*'''QUAND:''' 4 décembre 2014 à 18h00&lt;br /&gt;
*'''OÙ:''' Local M-1510, Polytechnique Montréal, 2900 Boulevard Edouard-Montpetit&lt;br /&gt;
*'''INSCRIPTION:''' https://www.eventbrite.ca/e/owasp-montreal-4-decembre-malware-cote-serveur-evolution-methodes-doperation-et-forensic-linux-tickets-14635313617&lt;br /&gt;
*'''ÉQUIPE ACADÉMIQUE:''' Polyhack - http://polyhack.org/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
&lt;br /&gt;
 18:00-18:30 Réseautage&lt;br /&gt;
 18:30-18:35 Mot de bienvenue par le leader du chapitre (Jonathan M.)&lt;br /&gt;
 18:35-19:30 Présentation principale : Malware côté serveur&lt;br /&gt;
 19:30-20:00 Période de questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Polyhacklogonoirpetit.png|200px|link=http://polyhack.org/]]&lt;br /&gt;
[[Image:LogoPolytechnique.gif|link=http://www.polymtl.ca/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - October 23rd - XXE : À l’assaut des analyseurs XML ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/MZviLB9-42E]] [https://youtu.be/MZviLB9-42E Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/xxe-a-lassaut-des-analyseurs-xml-par-philippe-arteau]] [https://speakerdeck.com/owaspmontreal/xxe-a-lassaut-des-analyseurs-xml-par-philippe-arteau See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''PRÉSENTATEUR PRINCIPAL:''' Philippe Arteau&lt;br /&gt;
*'''RÉSUMÉ:''' L'utilisation d’XML est fortement répandue. Le format est utilisé pour des fichiers de configuration, pour des métadonnées, pour des documents textes, et bien plus. La prise en charge de fichiers XML n’est pas sans risque. La plupart des analyseurs XML ne sont pas sécuritaires par défaut pour le traitement de fichier externe. Cette présentation fera un survol des vulnérabilités de type « Xml eXternal Entity » et de l’étendue des risques pour différents langages de programmation. Plusieurs démonstrations sont prévues.&lt;br /&gt;
*'''BIO:''' Philippe est conseiller en sécurité applicative pour le Groupe Technologies Desjardins. Au quotidien, il s’occupe d’effectuer des tests d’intrusions et des revues de code. Il a découvert des vulnérabilités importantes dans plusieurs logiciels populaires incluant Google Chrome, DropBox, ESAPI et Jira.&lt;br /&gt;
*'''QUAND:'''  23 Octobre 2014 à 18h00&lt;br /&gt;
*'''OÙ:''' École de Technologie Supérieure Local A-3230, 1100 Rue Notre-Dame Ouest, Montréal, QC H3C 1K3&lt;br /&gt;
*'''INSCRIPTION:''' http://www.eventbrite.ca/e/owasp-montreal-23-octobre-xxe-a-lassaut-des-analyseurs-xml-tickets-13426881163&lt;br /&gt;
*'''PARTENAIRE ACADÉMIQUE:''' ETS - DCI http://dciets.com/&lt;br /&gt;
*'''PROGRAMME:''' &lt;br /&gt;
&lt;br /&gt;
 18:00-18:30 Réseautage&lt;br /&gt;
 18:30-18:45 Mot de bienvenue&lt;br /&gt;
 18:45-19:45 Présentation principale - &amp;quot;À l’assaut des analyseurs XML&amp;quot; Philippe Arteau&lt;br /&gt;
 19:45-20:00 Période de questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Blason_dci.png‎‎‎|150px|link=http://dciets.com/]]&lt;br /&gt;
[[Image:ETS-rouge-devise-impr-fond_transparent.png|150px|link=http://www.etsmtl.ca/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - July 24th - Web security for DevOps: the glory is in the headers ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/6bp1NCLT-YQ]] [https://youtu.be/6bp1NCLT-YQ Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/web-security-for-devops-the-glory-is-in-the-headers-by-jonathan-marcil]] [https://speakerdeck.com/owaspmontreal/web-security-for-devops-the-glory-is-in-the-headers-by-jonathan-marcil See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Jonathan Marcil&lt;br /&gt;
*'''ABSTRACT:''' DevOps is a buzzword which can be easily demystified: in essence it is a process which aims to combine the development and system administration process into one; Operations. As developers become responsible for server setup, security counter measures are evolving as well. The line between server configuration and application behaviour has been blurred. In this talk we will cover some HTTP headers in regards to security such as CORS, CSP and HSTS. We will demonstrate several forms of attack, and how they can (should) be countered.&lt;br /&gt;
*'''BIO:''' Jonathan is devoted to security and specialized in Web application security.  His main occupation is consulting in Web security, but deep down he is a developer with a agnostic vision of programming languages. He has a diploma in Software Engineering from Ecole de Technologie Superieure and more than 10 years of experience in Information Technology and Security.&lt;br /&gt;
*'''WHEN:'''  At noon on July 24th 2014&lt;br /&gt;
*'''WHERE:''' 75 Queen Street, office 3100, Montreal, QC H3C 2N6&lt;br /&gt;
*'''REGISTRATION:''' You can join us on site for a pizza slice but this is mainly an online event. Contact jonathan.marcil@owasp.org.&lt;br /&gt;
*'''WEBCAST:''' https://www.youtube.com/watch?v=6bp1NCLT-YQ&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/web-security-for-devops-the-glory-is-in-the-headers-by-jonathan-marcil&lt;br /&gt;
*'''EVENT SPONSOR:''' Pheromone http://www.pheromone.ca/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  12:00-12:10 Welcome and quick OWASP introduction&lt;br /&gt;
  12:10-13:10 Main presentation - &amp;quot;Web security for DevOps: the glory is in the headers&amp;quot; Jonathan Marcil&lt;br /&gt;
  13:10-... Open discussion and questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Logo-phero.gif‎|link=http://www.pheromone.ca/]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - June 18th - Gaps in the Clouds ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/gaps-in-the-clouds-by-robert-fritz]] [https://speakerdeck.com/owaspmontreal/gaps-in-the-clouds-by-robert-fritz See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Robert Fritz&lt;br /&gt;
*'''ABSTRACT:''' Cloud technology offers agility and scaling, and a chance to break away from legacy IT choices.  Unfortunately, skipping traditional IT activities often results in poorly patched systems, out of date firewalls, and overprovisioned entitlements wielded by admins whose “day job” is development.  Boundaries of accountability and responsibility amongst cloud providers and consumers are confusing, vague, and shift, making security difficult to manage.  In such an environment, a “BP-spill” event, where cost wins over safely safety, is likely.  This talk will dive down into the cracks between the layers of cloud, and share some of the exciting dirt we have seen and expect to see in coming years.”&lt;br /&gt;
*'''BIO:''' Robert Fritz has been practicing security his entire career. Rob started as an Air Force lieutenant at Langley AFB and later at the Pentagon in Washington DC, building and managing classified networks. Finding he was getting too far from technology after a brief stint flying, he left the military to get back to the tech, and built security tools for HP in their HP-Unix lab.  Over time he found himself in more and more security design discussions, so co-authored HP’s Commercial Application Threat Analysis Methodology, building an internal consulting practice at HP.  This quantitative approach, led to two pending patents, an external-facing consulting practice, and his contributions to NIST IR-7502, the Common Configuration Scoring System (CVSS follow-on).  He is the former lead editor for the Center for Internet Security’s HP-UX Benchmark, and current lead for the Android Benchmark.  Robert now works for Morgan Stanley as global head of the Strategic Consulting team in the Security Architecture group, and leads the team’s cloud and social-media security practices.&lt;br /&gt;
*'''WHEN:''' June 18th 2014&lt;br /&gt;
*'''WHERE:''' 700 Rue Wellington, Floor 2, Montreal, QC H3C 3S4&lt;br /&gt;
*'''REGISTRATION:''' http://owaspmtl18junems.eventbrite.ca&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/gaps-in-the-clouds-by-robert-fritz&lt;br /&gt;
*'''EVENT SPONSOR:''' Morgan Stanley http://www.morganstanley.com/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:30 Networking and Morgan Stanley Hosted Pizza and Soft Drinks&lt;br /&gt;
  18:30-18:45 OWASP Chapter &amp;amp; Morgan Stanley Welcome&lt;br /&gt;
  18:45-19:45 Main presentation - &amp;quot;Gaps in the Clouds&amp;quot; Robert Fritz&lt;br /&gt;
  19:45-20:00 Open discussion and questions&lt;br /&gt;
  20:00-...   Optional, informal networking at Aziatic - 626 rue Marguerite-d'Youville, Montréal, QC H3C 1W7&lt;br /&gt;
&lt;br /&gt;
[[Image:Morgan_Stanley_Historical_Logo.png|link=http://www.morganstanley.com/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - May 26th - Récapitulatif des challenges NorthSec ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/P8_V3RI1Ru4]] [https://youtu.be/P8_V3RI1Ru4 Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''PRÉSENTATEUR PRINCIPAL:''' Laurent Desaulniers&lt;br /&gt;
*'''RÉSUMÉ:''' Solutions de la compétition en sécurité NorthSec 2014 sur les sujets de  XXE + SSRF, WAF Bypass, Xpath Injection, DOM Injection, HTTP Only Flag bypass et contournement de captchas. Une bonne façon d'apprendre sur ces failles que vous étiez ou non un participant de la compétition.&lt;br /&gt;
*'''MESSAGE DU PRÉSENTATEUR:''' Vous voyez Rao dans votre soupe? Vous voulez une solution pour un XSS avec des cookies http only? Les captchas illisibles sont un problème? Assistez à la présentation de l'OWASP!&lt;br /&gt;
*'''BIO:''' Laurent Desaulniers est un passionné de sécurité informatique. Il a présenté au Hackfest, au colloque RSI, à OWASP et est challenge designer à NorthSec. M. Desaulniers détient les certifications CISSP, CISM, CISA et OSCP.&lt;br /&gt;
*'''QUAND:''' 26 mai à 18h00&lt;br /&gt;
*'''OÙ:''' Local PK-1140 - Pavillon Président-Kennedy 201, Avenue du Président-Kennedy, J2X 3Y7&lt;br /&gt;
*'''INSCRIPTION:''' https://www.eventbrite.ca/e/owasp-montreal-26-mai-recapitulatif-des-challenges-northsec-tickets-11724413035&lt;br /&gt;
*'''WEBCAST:''' https://www.youtube.com/watch?v=P8_V3RI1Ru4&lt;br /&gt;
*'''ÉQUIPE ACADÉMIQUE''' AGEEI-UQAM - http://www.ageei.org/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
&lt;br /&gt;
 18:00-18:30 Réseautage&lt;br /&gt;
 18:30-18:35 Mot de bienvenue par le leader du chapitre (Jonathan M.)&lt;br /&gt;
 18:35-19:30 Présentation principale : Récapitulatif des challenges NorthSec&lt;br /&gt;
 19:30-20:00 Période de questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Ageeilogo.jpg|200px|link=http://www.ageei.org/]]&lt;br /&gt;
[[Image:2397_nsec_Logo_500-250.png|200px|link=http://nsec.io/]]&lt;br /&gt;
&lt;br /&gt;
== Networking with infosec communities - April 21st ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''RÉSUMÉ:''' En collaboration avec Montréhack, mtlsec et NorthSec, nous organisons une soirée réseautage dans un pub du centre-ville. Du plaisir garanti avec les membres de plusieurs communautés infosec de Montréal!&lt;br /&gt;
&lt;br /&gt;
*'''ABSTRACT:''' In collaboration with Montréhack, mtlsec and NorthSec, we are organizing a networking evening in a pub downtown. Fun guaranteed with the other security communities in Montreal!&lt;br /&gt;
&lt;br /&gt;
*'''QUAND:''' 21 Avril 2014&lt;br /&gt;
*'''WHEN:''' April 21st 2014&lt;br /&gt;
&lt;br /&gt;
*'''OÙ/WHERE:''' BENELUX - Brasserie Artisanale 245 Sherbrooke St W Montreal, QC H2X 1X7&lt;br /&gt;
&lt;br /&gt;
*'''INSCRIPTION/REGISTRATION:''' https://www.eventbrite.ca/e/montrehack-avril-april-northsec-pre-party-tickets-11232307133&lt;br /&gt;
&lt;br /&gt;
*'''PARTENAIRES/PARTNERS:''' Montréhack http://montrehack.ca/ - mtlsec http://blog.mtlsec.com/ - NorthSec https://www.nsec.io/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
  18:00-21:00 Networking&lt;br /&gt;
  21:00-23:59 Remember to drink responsibly!&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - March 27th - Panel Compétition en sécurité NorthSec ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Présentation sous forme de panel - venez poser vos questions!'''&lt;br /&gt;
&lt;br /&gt;
*'''RÉSUMÉ:''' Les compétitions de type Capture the Flag (CTF) sont un moyen pour les professionnels et amateurs de sécurité informatique de mettre leurs talents à l'épreuve. NorthSec est une compétition Montréalaise annuelle en sécurité appliquée, qui aura lieu cette année au Marché Bonsecours de Montréal le 25, 26 et 27 avril prochain. Elle vise à augmenter le niveau technique des professionnels de la sécurité au Québec, ainsi que de permettre à ses acteurs les plus talentueux de se démarquer.&lt;br /&gt;
*'''DÉTAILS:''' Le panel de jeudi, sous la forme d'un échange convivial entre les organisateurs de l'évènement et de ses participants, abordera des thèmes variés comme l'écriture de bon défis, l'infrastructure, la logistique, les inattendus, un bilan de 2013 et tout ça en passant par de savoureuses annecdotes (on l'espère). Venez en grand nombre toucher à ces légendes de la scène infosec montréalaise!&lt;br /&gt;
*'''PANÉLISTES:''' Gabriel Tremblay, François Proulx, Laurent Desaulniers, Stéphane Graber&lt;br /&gt;
*'''ANIMATEUR:''' Olivier Bilodeau&lt;br /&gt;
*'''QUAND:''' 27 mars 2014&lt;br /&gt;
*'''OÙ:''' Salle M-1510, École Polytechnique de Montréal, 2500 chemin de Polytechnique, Montréal (Québec) H3T 1J4, pavillon Lassonde&lt;br /&gt;
*'''INSCRIPTION:''' https://www.eventbrite.ca/e/owasp-montreal-27-mars-panel-competition-en-securite-northsec-tickets-10918436337&lt;br /&gt;
*'''ÉQUIPE ACADÉMIQUE:''' Polytechnique - Polyhack http://polyhack.org/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Mot de bienvenue par le leader du chapitre (Jonathan Marcil)&lt;br /&gt;
  18:30-20:00 Présentation principale : Panel NorthSsec&lt;br /&gt;
&lt;br /&gt;
[[Image:Polyhack.png‎‎|200px|link=http://polyhack.org/]]&lt;br /&gt;
[[Image:LogoPolytechnique.gif|link=http://www.polymtl.ca/]]&lt;br /&gt;
[[Image:2397_nsec_Logo_500-250.png|200px|link=http://nsec.io/]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - February 25th - Proven Strategies for Web Application Security ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/proven-strategies-for-web-application-security-by-justin-c-klein-keane]] [https://speakerdeck.com/owaspmontreal/proven-strategies-for-web-application-security-by-justin-c-klein-keane See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Justin C. Klein Keane&lt;br /&gt;
*'''ABSTRACT:''' The rising dominance of the web as an application delivery platform has focused attacker attention squarely on the security of dynamic web applications. Application security is a complex, and shifting, field. Learn about tested and successful techniques to build safer applications, find flaws before they become vulnerabilities, and deploy applications that can detect, and resist attack.&lt;br /&gt;
*'''BIO:''' Justin C. Klein Keane is a security engineer and chapter leaders of OWASP in Philadelphia. For over a decade Justin has worked as a trainer, coder, and exploit developer. Justin is currently writing a book for NoStarch Press on hacking, speaks regularly at conferences, holds a masters degree in information technology from the University of Pennsylvania and is credited with hundreds of application vulnerability discoveries.&lt;br /&gt;
*'''WHEN:''' February 25th 2014&lt;br /&gt;
*'''WHERE:''' Ecole de technologie superieure, 1100 Notre-Dame Street West, Montreal, Room: A-1150&lt;br /&gt;
*'''REGISTRATION:''' http://owaspmtljan2014.eventbrite.ca&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/proven-strategies-for-web-application-security-by-justin-c-klein-keane&lt;br /&gt;
*'''ACADEMIC PARTNER:''' ETS - DCI http://dciets.com/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Welcome speech by Chapter Leader (Jonathan Marcil)&lt;br /&gt;
  18:30-20:00 Main session and open discussion: Proven Strategies for Web Application Security&lt;br /&gt;
  20:00-...   End of the meeting in a pub&lt;br /&gt;
&lt;br /&gt;
[[Image:Dciets.png‎‎‎|100px|link=http://dciets.com/]]&lt;br /&gt;
[[Image:Logo_ets.png|link=http://www.etsmtl.ca/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - January 28th - Latest trends in Mobile Security ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/8qPyKj4FKgY]] [https://youtu.be/8qPyKj4FKgY Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/latest-trends-in-mobile-security-by-francois-proulx]] [https://speakerdeck.com/owaspmontreal/latest-trends-in-mobile-security-by-francois-proulx See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Francois Proulx&lt;br /&gt;
*'''ABSTRACT:''' Last AppSecUSA 2013 had a great line up of talks, especially regarding mobile applications. This session will be covering all the hottest presentations about mobile security by doing an overview from what see saw at AppSecUSA, all with some slides and snippets of presentations that was recorded at the event. Discussion will be encouraged within the audience as this will be more a dynamic event than a regular talk.&lt;br /&gt;
*'''BIO:''' François Proulx is a senior mobile application developer who has worked on dozens of iOS applications since the very beginning of the Apple iOS platform. Over the past few years he has switched his focus to security. He spends a lot of his free time participating in Capture the Flag events (CTFs) and organizing the NorthSec security competition.&lt;br /&gt;
*'''WHEN:''' January 28th 2014&lt;br /&gt;
*'''WHERE:''' UQAM Room PK-1705, Pavillon Président-Kennedy (the big boat at Place des Arts) - 201 Avenue du Président-Kennedy  J2X 3Y7&lt;br /&gt;
*'''REGISTRATION:''' http://owaspmtl-mobilesecurity.eventbrite.ca&lt;br /&gt;
*'''SLIDES/CONTENT:''' [http://www.youtube.com/playlist?list=PLQtB2ug5xmvaQ9jeRWV53-F_T555GQfhW YouTube playlist]&lt;br /&gt;
*'''SPONSOR:''' Academic partner AGEEI-UQAM - http://www.ageei.org/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Welcome speech by Chapter Leader (Jonathan M.)&lt;br /&gt;
  18:30-20:00 Main session and open discussion: Mobile Security&lt;br /&gt;
  20:00-...   End of the meeting in a pub&lt;br /&gt;
&lt;br /&gt;
[[Image:Ageeilogo.jpg|200px|link=http://www.ageei.org/]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Presentations For Download  ====&lt;br /&gt;
&lt;br /&gt;
[http://www.owasp.org/images/0/0d/20100209mstechdaysowaspasvssgiv01-12657916463819-phpapp02.ppt OWASP ASVS] by Sebastien Gioria (09/03/2010) &lt;br /&gt;
&lt;br /&gt;
[http://www.ph-il.ca/slides/afup__authetification_forte.pdf Authentification Forte] by Philippe Gamache (02/02/2010) &lt;br /&gt;
&lt;br /&gt;
[http://www.opensamm.org/downloads/OpenSAMM-1.0.ppt Software Assurance Maturity Model (OpenSAMM)] by Pravir Chandra (03/11/2009) &lt;br /&gt;
&lt;br /&gt;
[http://www.owasp.org/images/d/de/Owasp-montreal-sept-17h-2009-justin-foster.pdf Crossing the Border – Javascript Exploits] by Justin Foster (17/09/2009) &lt;br /&gt;
&lt;br /&gt;
[http://www.owasp.org/images/c/c2/ALaughRIAt.pdf A Laugh RIAt] by Rafal Los (07/04/2009) &lt;br /&gt;
&lt;br /&gt;
[https://www.owasp.org/images/e/eb/OWASP-Montreal-24022009-RobLabbe.pptx Microsoft Security Development Lifecycle for IT] by Rob Labbe (24/02/2009) &lt;br /&gt;
&lt;br /&gt;
[https://www.owasp.org/images/3/39/OWASP-Montreal-24022009-EN.pdf OWASP Goal and Top Ten 2007 for Managers - French version] by Benoit Guerette (24/02/2009)&lt;br /&gt;
&lt;br /&gt;
Newer presentations are available on [https://speakerdeck.com/owaspmontreal Speaker Deck]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Circle_owasp_logo_nowhitebackground.png|200px]]&lt;br /&gt;
&lt;br /&gt;
= OWASP Foundation / Mission OWASP    = &lt;br /&gt;
OWASP Foundation ([https://docs.google.com/a/owasp.org/presentation/d/10wi1EWFCPZwCpkB6qZaBNN8mR2XfQs8sLxcj9SCsP6c/edit?usp=sharing Overview Slides]) is a professional association of [[Membership | global members]] and is open to anyone interested in learning more about software security. Local chapters are run independently and guided by the [[Chapter_Leader_Handbook]].  As a [[About_OWASP | 501(c)(3)]] non-profit professional association your support and sponsorship of any meeting venue and/or refreshments is tax-deductible. Financial contributions should only be made online using the authorized online chapter donation button.  To be a &amp;lt;b&amp;gt;SPEAKER&amp;lt;/b&amp;gt; at ANY OWASP Chapter in the world simply review the [[Speaker_Agreement | speaker agreement]] and then contact the local chapter leader with details of what OWASP PROJECT, independent research or related software security topic you would like to present on.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;La fondation OWASP est une [https://www.owasp.org/index.php/Membership association de professionnels] et elle est ouverte à tout intervenant intéressé à en apprendre davantage sur la sécurité applicative. Les chapitres locaux (dont celui de Montréal) sont gérés de façon indépendante et selon un [https://www.owasp.org/index.php/Chapter_Leader_Handbook manuel de directives à respecter].   &lt;br /&gt;
Toute contribution financière au chapitre peut être faite en ligne en utilisant l’icône prévu à cet effet. Pour être conférencier au sein de n’importe quel chapitre à l’échelle mondiale, vous n’avez qu’à prendre connaissance du document [https://www.owasp.org/index.php/Speaker_Agreement &amp;quot;entente avec les conférenciers – speaker agreement&amp;quot;] et à joindre le responsable du chapitre Montréal avec un descriptif du sujet que vous aimeriez aborder et s’il est relié à un projet OWASP, à de la recherche indépendante ou encore le sujet en particulier, concernant la sécurité applicative, que vous souhaitez aborder.&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== [[Image:Circle_owasp_logo_nowhitebackground.png|128px]] Montreal OWASP Team == &lt;br /&gt;
&lt;br /&gt;
Scope of the team is to discuss and plan local activities and meetings &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Chapter Leaders ===&lt;br /&gt;
&lt;br /&gt;
* [mailto:anne.gauthier@owasp.org Anne Gauthier], President/Présidente&lt;br /&gt;
* [mailto:michel.bourque{at}owasp.org Michel Bourque], Chapter coordinator and marketing manager/Coordination et Marketing&lt;br /&gt;
* [mailto:hugo.genesse(at)owasp.org Hugo Genesse], Web content and production manager/Site internet et Production &lt;br /&gt;
* [mailto:olivier.arteau(at)owasp.org Olivier Arteau], Logistic manager/Logistique&lt;br /&gt;
&lt;br /&gt;
==== Chapter leader history ====&lt;br /&gt;
*2008-2010 - Benoit Guerette, founder and chapter leader&lt;br /&gt;
*2011-2012 - Philippe Gamache, chapter leader (vice chapter-leader since 2010)&lt;br /&gt;
*2013-2015 - Jonathan Marcil, chapter leader&lt;br /&gt;
*2016-... - Anne Gauthier, Michel Bourque, Marius Popescu, Hugo Genesse, Olivier Arteau&lt;br /&gt;
&lt;br /&gt;
==== Old board members ====&lt;br /&gt;
*Philippe Pépos Petitclerc&lt;br /&gt;
*Michael Robillard&lt;br /&gt;
*Benoit Guerette (logistics 2015)&lt;br /&gt;
*Alexandre Rimthong&lt;br /&gt;
*Mathieu Binette&lt;br /&gt;
*Sean Coates&lt;br /&gt;
*Jean-Marc Robert&lt;br /&gt;
*Philippe Blondin&lt;br /&gt;
*Benoit Guerette (founder)&lt;br /&gt;
*Laurent Desaulniers&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;headertabs&amp;gt;&amp;lt;/headertabs&amp;gt; &lt;br /&gt;
__NOTOC__ &lt;br /&gt;
[[Category:Canada]]&lt;/div&gt;</summary>
		<author><name>Svieg</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=Montr%C3%A9al&amp;diff=234342</id>
		<title>Montréal</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=Montr%C3%A9al&amp;diff=234342"/>
				<updated>2017-10-13T02:35:13Z</updated>
		
		<summary type="html">&lt;p&gt;Svieg: What we do / Nos activités&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Welcome &amp;amp; Bienvenue to the OWASP Montréal chapter ==&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:OWASP-Montreal-Logo.png|Logo OWASP Montréal]]&lt;br /&gt;
&lt;br /&gt;
The OWASP Foundation was established in 2001 as an open community and software security resource. Since then, OWASP has grown to be globally recognized as a credible source for application security standards. &amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
OWASP is an open community dedicated to enabling organizations to conceive, develop, acquire, operate, and maintain applications that can be trusted. All of the OWASP tools, documents, forums, and chapters are free and open to anyone interested in improving application security. We advocate approaching application security as a people, process, and technology problem because the most effective approaches to application security include improvements in all of these areas. &amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
OWASP is open to anyone. Anyone can attend OWASP's vendor agnostic local chapter meetings, participate in regional and global conferences, and contribute to the many OWASP projects. And anyone can start a new project, form a new chapter, or lend their expertise to help an OWASP Global Committee.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt;On parle français aussi ! Le chapitre de Montréal organise plusieurs activités gratuites afin de partager les connaissances en sécurité applicative avec la communauté de développeurs et gestionnaires. Suivez-nous sur les réseaux sociaux pour connaître les dates des conférences du midi et des workshops !&amp;lt;/b&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Top documentation from OWASP includes: &lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/index.php/Top_10_2013-Top_10 OWASP TOP 10 : The Ten Most Critical Web Application Security Risks]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/images/3/33/OWASP_Application_Security_Verification_Standard_3.0.1.pdf OWASP ASVS : Application Security Verification Standard]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/images/5/52/OWASP_Testing_Guide_v4.pdf OWASP Testing Guide : Penetration Testing Framework]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/images/7/78/OWASP_AlphaRelease_CodeReviewGuide2.0.pdf OWASP Code Review Guide : Source Code Analysis Framework]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/index.php/OWASP_Cheat_Sheet_Series OWASP Cheat Sheet : Best practices guidelines for developers]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org OWASP Global]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Chapter Leaders / Responsables du chapitre ===&lt;br /&gt;
&lt;br /&gt;
* [mailto:anne.gauthier@owasp.org Anne Gauthier], President/Présidente&lt;br /&gt;
* [mailto:michel.bourque{at}owasp.org Michel Bourque], Chapter coordinator and marketing manager/Coordination et Marketing&lt;br /&gt;
* [mailto:hugo.genesse(at)owasp.org Hugo Genesse], Web content and production manager/Site internet et Production &lt;br /&gt;
* [mailto:olivier.arteau(at)owasp.org Olivier Arteau], Logistic manager/Logistique&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Special thanks to / Remerciements : &lt;br /&gt;
* Simon Lacasse, Web content / Site internet&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;b&amp;gt; Reach our chapter / Joindre le chapitre &amp;lt;/b&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Follow OWASP's Montreal chapter's activities through social medias, register to events, watch the previous presentations and more! &lt;br /&gt;
&lt;br /&gt;
Suivez les activités du chapitre OWASP Montréal via les réseaux sociaux, inscrivez-vous aux activités, visualisez les anciennes présentations et plus encore! &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;b&amp;gt;[http://lists.owasp.org/mailman/listinfo/owasp-montreal Click here] to join the local chapter mailing list.&lt;br /&gt;
&amp;lt;br /&amp;gt;[http://lists.owasp.org/mailman/listinfo/owasp-montreal Inscrivez-vous ici] à la liste de courriels du chapitre afin de recevoir les dernières nouvelles!&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Want to be part of the community ? &lt;br /&gt;
Devenez membre de notre communauté ! &lt;br /&gt;
[https://www.owasp.org/index.php/Membership_Map Click here / Cliquer ici]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Eb_press_little.gif‎|OWASP Montreal Eventbrite|link=http://owaspmontreal.eventbrite.ca/]] &lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[Image:Yt-brand-standard-logo-630px.png‎|128px|YouTube OWASP Montreal Channel|link=http://www.youtube.com/owaspmontreal]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]   &lt;br /&gt;
[[Image:Speakerdecklogo.png‎|Slides of OWASP Montreal on SpeakerDeck |link=https://speakerdeck.com/owaspmontreal]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Twitter-bird-cropped-onwhite.png|@owaspmontreal on Twitter|link=https://twitter.com/owaspmontreal]]&lt;br /&gt;
[[Image:FacebookSquareLogo.png|OWASP Montreal Facebook page|link=https://www.facebook.com/owasp.montreal]]&lt;br /&gt;
[[Image:LinkedinSquareLogo.png|OWASP Montreal on LinkedIn|link=https://www.linkedin.com/groups/1379007/profile]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
&lt;br /&gt;
== What we do / Nos activités ==&lt;br /&gt;
&lt;br /&gt;
OWASP Montreal is a really active chapter. We organize monthly conferences and workshops. All our events are free and meant to improve the knowledge and awareness of the community's developers, managers and computer security specialists. To be aware of the next event and for additional information, follow us on social medias. &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
OWASP Montréal est un des chapitres les plus actifs. Nous organisons mensuellement des ateliers et conférences. Tous nos événements sont gratuits et ont pour but d'améliorer les connaissances de la communauté. Ils s'adressent donc autant aux gestionnaires qu'aux développeurs et aux spécialistes en sécurité informatique. Pour plus d'informations sur nos activités et pour être au courant des prochaines dates d'événement, suivez nous sur les réseaux sociaux. &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;We also contribute to the vast OWASP knowledge base / Nous contribuons aussi aux ressources d'OWASP&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
We list here the projects that were started by our members under OWASP's banner. &amp;lt;br /&amp;gt;&lt;br /&gt;
Nous listons ici les projets commencé par nos membres sous la banière d'OWASP. &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/index.php/Vulnerability_Disclosure_Cheat_Sheet Vulnerability Disclosure Cheat Sheet]&lt;br /&gt;
&lt;br /&gt;
== Sponsorship &amp;amp; Membership / Commandite &amp;amp; Adhésion ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Btn_donate_SM.gif|link=http://www.regonline.com/donation_1044369]] to this chapter or become a local chapter supporter.&lt;br /&gt;
&lt;br /&gt;
Or consider the value of [[Membership | Individual, Corporate, or Academic Supporter membership]]. Ready to become a member? [[Image:Join_Now_BlueIcon.JPG|75px|link=https://myowasp.force.com/]]&lt;br /&gt;
&lt;br /&gt;
[http://www.regonline.com/donation_1044369 Donnez] au chapitre ou devenez commanditaire du chapitre local! &lt;br /&gt;
&lt;br /&gt;
[https://myowasp.force.com/ Devenez membre !] Pour en savoir davantage sur les avantages d’une adhésion individuelle, corporative ou en tant qu’institution d’enseignement, [https://www.owasp.org/index.php/Membership cliquez ici]. &lt;br /&gt;
&lt;br /&gt;
[[Category:OWASP Chapter]]&lt;br /&gt;
&lt;br /&gt;
== Chapter Supporters / Commanditaires du chapitre ==&lt;br /&gt;
&lt;br /&gt;
[https://www.owasp.org/images/9/91/OWASP_Membership_Flyer_Montreal.png All details available here / Pour tous les détails] [[File:Chapter-supporter-owasp-montreal.png|200px|link=]] &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Platinum / Platine ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Gosecure-2.png|GoSecure|link=http://www.gosecure.ca/]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[File:Desjardins2-400x400.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Gold / Or ===&lt;br /&gt;
&lt;br /&gt;
[[Image:PM_SCADA_Logo_Gris_Cybersecurite_FR.png|PM SCADA|link=http://pmscada.ca/en/]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Lunch &amp;amp; Learn / Workshops 2017 =&lt;br /&gt;
&lt;br /&gt;
== Pourquoi un hacker peut-il contourner les mesures et solutions de sécurité... ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hamilton-septembre-2017-1.JPG  ]]&lt;br /&gt;
[[Image:Hamilton-septembre-2017-2.JPG ]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 September 18th 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
OWASP dans le cadre des Midis conférence est heureux de lancer la saison 2017-2018 en accueillant, M. Charles F. Hamilton.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Notre conférencier viendra brosser un tableau des différents éléments qui expliquent pourquoi les mesures et les solutions de sécurité en générales qui ont la fonction de protéger les données, les applications, les réseaux ou les équipements critiques sont si souvent contournées ou carrément inefficaces contre les attaques ciblées.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Biographie :&amp;lt;br /&amp;gt;&lt;br /&gt;
Charles F. Hamilton est un consultant en sécurité et membre d’équipe « Red Team » de calibre international. Il se spécialise en test d’intrusion et la recherche de solution proactive de sécurité.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Cas d'attaques vécus : Internet des objets (IOT) - Attaques DDoS ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Cas_dattaques_vecus-r.jpg  ]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 June 19th 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
Pour clore la saison printanière 2017, OWASP Montréal est fier d'accueillir au Midi Conférence, M. Christian Shink qui fera un survol de cas d'attaques vécus, des techniques utilisées et des acteurs impliqués dans ces attaques.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
L'incorporation généralisée de dispositifs «intelligents» dans les objets de la vie de tous les jours modifie la façon dont les gens et les machines interagissent les uns avec les autres. Cette incorporation offre une promesse d'une meilleure qualité de vie, une meilleure efficacité. En contrepartie, leur déploiement introduit également des vulnérabilités à la fois dans l'infrastructure qu'ils soutiennent et sur lesquels ils comptent, ainsi que dans les processus qu'ils guident. Que ce soit au niveau applicatif ou des infrastructures, ces vulnérabilités sont exploitées par des acteurs malicieux pour générer des attaques de déni de service massives et sophistiquées. Nous tenterons également de tirer des leçons afin de tenter de minimiser ce type d'attaques dans le futur.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Christian Shink possède plus d’une dizaine d’années d’expérience en développement et sécurité d’applications. Avant de se joindre à Radware, Christian était à l’emploi d'une firme conseil où il a conseillé de nombreuses entreprises, dont de grandes banques américaines et Casinos. Il détient une certification CSSLP et est membre de l'ordre des ingénieurs du Québec.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== HOW TO! Threat Modeling Toolkit ==&lt;br /&gt;
&lt;br /&gt;
[[Image:OWASPMtl-JonathanMarcil-1.jpg]]&lt;br /&gt;
[[Image:OWASPMtl-JonathanMarcil-3.jpg]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/threat-modeling-toolkit]] [https://speakerdeck.com/owaspmontreal/threat-modeling-toolkit See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 May 23rd, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Shopify Montreal&lt;br /&gt;
&lt;br /&gt;
Threat Modeling is a great way to analyze security early in software development by structuring possible attacks, bad actors and countermeasures over a broad view of the targeted system. This talk will describe basic components of a threat model and how to use them effectively.&lt;br /&gt;
Threat Intelligence is where you gather knowledge about the environment and business assets to determine what are the actual threats. But how do you reconcile that with the current architecture in a useful manner?&lt;br /&gt;
The toolkit presented in this talk will enable you to systematically structure related information using graphical notations such as flow diagram and attack tree. In case you are wondering where to start in your organization, a quick lightweight risk rating methodology will also be proposed.&lt;br /&gt;
And in the end, you’ll see how we can all tie those together and get threat modeling to a point where it’s an efficient application security activity for communication. Doing this will prevent security reviews from missing important things even when chaos prevails during the realization of a project.&lt;br /&gt;
Modeling concepts will be demonstrated with an actual IoT device used as example.&lt;br /&gt;
Presentation will be done in english.&lt;br /&gt;
&lt;br /&gt;
Speaker Bio:&lt;br /&gt;
Jonathan Marcil is the former chapter leader of OWASP Montreal and is now Senior Application Security Engineer at Blizzard Entertainment in beautiful Orange County, California.&lt;br /&gt;
Jonathan has been involved with OWASP for many years and has been behind the Media Project which gathered and promoted AppSec conferences video content in the official OWASP YouTube channel. He was also part of NorthSec CTF event as a challenge designer specialized in Web and imaginative contraptions.&lt;br /&gt;
He is passionate about Application Security and enjoys architecture analysis, code review, threat modeling and debunking security tools. He holds a diploma in Software Engineering from ÉTS Montreal and has more than 15 years of experience in Information Technology and Security.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Merci à nos précieux commanditaires !&lt;br /&gt;
&lt;br /&gt;
== Security Testing: Unlocking the Benefits of a Hybrid Approach ==&lt;br /&gt;
[[Image:Security testing hybrid approach-r 3.jpg    ]]&lt;br /&gt;
[[Image:Security testing hybrid approach-r 4.jpg    ]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/hybrid-approach-to-security-testing]] [https://speakerdeck.com/owaspmontreal/hybrid-approach-to-security-testing See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 April 24th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
As part of their defensive efforts, businesses commonly commission cybersecurity assessments of their web applications; with the aim of identifying any weaknesses in the security controls and ensuring a continually strong cybersecurity posture of their systems.&lt;br /&gt;
&lt;br /&gt;
The classical approach of either secure code review (white box) or penetration testing (black box) assessment have proven to be effective in securing of web applications. The new trend, however, is moving towards the combination of these two approaches; expert consensus is rapidly recognizing the advantages of using a hybrid approach. When applied properly, a hybrid approach can build on the strengths of both white and black box testing, while compensating for their individual shortcomings.&lt;br /&gt;
&lt;br /&gt;
In this presentation, we will examine the details of secure code review and penetration testing, and run demos to contrast their respective strengths and weaknesses. We will also examine why a hybrid approach can produce more complete and relevant assessment results. To conclude, we will cover proven approaches, and practical techniques, on how you can start leveraging a hybrid approach to web application assessments today.&lt;br /&gt;
&lt;br /&gt;
Anne Gauthier is an application security analyst at GoSecure. Anne is also the president of the Montreal Chapter of OWASP – the industry standard for web application security. With a penetration testing background, she specializes in secure code reviews and in helping companies to improve their software development lifecycle (SDLC) according to industry best practices. Anne is CSSLP, GWAPT and GSSP-JAVA certified. She obtained a Software Engineering bachelor’s degree from Ecole de Technologie Supérieure in Montréal and is now pursuing a Master of Engineering (MEng) degree in Information Systems Security at Concordia University. She is the author of the Project 201 Security blog.&lt;br /&gt;
&lt;br /&gt;
Merci à nos précieux commanditaires !&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;HOW-TO&amp;quot; NIGHT ! Tout sur les CTFs (Capture The Flag) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Howto_ctf.jpg]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://docs.google.com/presentation/d/1zEsCcX-Nvq8Nz0k-B1zHejCDNT2oGZx8oUBgMbvvMM0/edit#slide=id.p ]] [https://docs.google.com/presentation/d/1zEsCcX-Nvq8Nz0k-B1zHejCDNT2oGZx8oUBgMbvvMM0/edit#slide=id.p See the slides / Voir la présentation (Laurent Desaulniers)]&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://docs.google.com/presentation/d/1c1P1d2mKe767j1Y0V9cK6De5cpnK4I7GI-ORiodbg1A/edit#slide=id.p ]] [https://docs.google.com/presentation/d/1c1P1d2mKe767j1Y0V9cK6De5cpnK4I7GI-ORiodbg1A/edit#slide=id.p See the slides / Voir la présentation (Charles Hamilton)]&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=http://obilodeau.github.io/slides/2017-04-04_how-not-to-suck-at-ctfs/ ]] [http://obilodeau.github.io/slides/2017-04-04_how-not-to-suck-at-ctfs/ See the slides / Voir la présentation (Olivier Bilodeau)]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 April 4th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Shopify&lt;br /&gt;
&lt;br /&gt;
Cette nouvelle soirée &amp;quot;How-To&amp;quot; Night d'OWASP Montréal vise à présenter les CTFs (une compétition Capture The Flag) et aider les équipes à démarrer et à continuer à évoluer dans leurs pratique de la cyber sécurité pratique. L'objectif est d'outiller les participants en leur fournissant des ressources techniques et des contacts afin de les aider à progresser.&lt;br /&gt;
&lt;br /&gt;
Les éléments discutés seront:&lt;br /&gt;
&lt;br /&gt;
- Composition optimale d’une équipe : Fonctionnement d’une équipe de CTF et les principaux rôles (chef d’équipe, cryptographie, application web, rétro ingénierie et les causes perdues).&lt;br /&gt;
&lt;br /&gt;
- Pourquoi faire des CTFs? Discussion sur les différents styles (jeopardy, attack/defense, etc.), quels sont les problèmes fréquemments rencontrés + plusieurs anecdotes intéressantes (et drôles).&lt;br /&gt;
&lt;br /&gt;
- Trucs de Mr. Unikoder : Le créateur du fameux site ringzer0team, soit un des plus gros sites pour apprendre la résolution de problèmes de CTF (https://ringzer0team.com/) Apprenez des trucs du meilleur, sur comment débuter et interpréter un challenge web, binaire et crypto avec des trucs réels du métier.&lt;br /&gt;
&lt;br /&gt;
Matériel requis :&lt;br /&gt;
&lt;br /&gt;
    Votre légendaire enthousiasme&lt;br /&gt;
&lt;br /&gt;
Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
&lt;br /&gt;
Places limitées. Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Shopify pour l'événement.&lt;br /&gt;
&lt;br /&gt;
Présentateurs :&lt;br /&gt;
&lt;br /&gt;
Charles Hamilton, Senior Consultant chez Mandiant, FireEye, Inc.&lt;br /&gt;
&lt;br /&gt;
Olivier Bilodeau, Cybersecurity Research Lead at GoSecure&lt;br /&gt;
&lt;br /&gt;
Laurent Desaulniers, Senior Security Solution Specialist at Bell Canada&lt;br /&gt;
&lt;br /&gt;
== NorthSec - Applied Security Event ==&lt;br /&gt;
[[Image:Nsec_2017_midi_conf.jpg]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/northsec-applied-security-event]] [https://speakerdeck.com/owaspmontreal/northsec-applied-security-event See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 April 4th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
NorthSec: La plus grande compétition et conférence en cyber sécurité au Canada&lt;br /&gt;
&lt;br /&gt;
NorthSec est un organisme sans but lucratif qui organise une conférence et une compétition de sécurité de type &amp;quot;Capture-The-Flag&amp;quot; (CTF) et des formations. Avec plus de 400 participants présents sur le site pour la compétition, c’est la plus grande compétition du genre au monde.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
La conférence, dans sa 3e année, attire des présentateurs internationaux avec du contenu technique exclusif. L’ajout des séances de travail (workshops) devrait plaire aux plus chevronnés des binaires.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Des formations de 3 jours sont offertes avant la conférence: &amp;quot;Advanced Web Application Security&amp;quot; par Philippe Arteau et &amp;quot;Malware and Memory Forensics&amp;quot; par Michael Ligh, co-auteur des livres &amp;quot;Malware Analyst Cookbook&amp;quot; et &amp;quot;The Art of Memory Forensics&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
NorthSec est situé au Marché Bonsecours dans le Vieux-Port de Montréal au printemps du 15 au 21 mai 2017.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
La présentation couvrira:&lt;br /&gt;
&lt;br /&gt;
- Le plan pour 2017&amp;lt;br /&amp;gt;&lt;br /&gt;
- Ce qui différencie NorthSec&amp;lt;br /&amp;gt;&lt;br /&gt;
- Comment équilibrer une compétition pour les débutants et les experts&amp;lt;br /&amp;gt;&lt;br /&gt;
- Comment bâtir une infrastructure basée sur les conteneurs qui gère 50 équipes dans quelques serveurs sans qu’ils ne se partagent de machines virtuelles&amp;lt;br /&amp;gt;&lt;br /&gt;
- Comment faire du pain au levain à grande échelle&amp;lt;br /&amp;gt;&lt;br /&gt;
- Présentation de quelques défis et solutions&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Les présentateurs:&lt;br /&gt;
&lt;br /&gt;
- Gabriel Tremblay, Président, Delve Labs&amp;lt;br /&amp;gt;&lt;br /&gt;
- Olivier Bilodeau, VP Formations, Co-fondateur MontréHack, GoSecure&amp;lt;br /&amp;gt;&lt;br /&gt;
- Pierre-David Oriol, VP Conférences, Delve Labs&amp;lt;br /&amp;gt;&lt;br /&gt;
- Benoit Guérette, VP Partenaires, Desjardins&amp;lt;br /&amp;gt;&lt;br /&gt;
- Laurent Desaulniers, Tisserand de drapeaux, Bell Canada&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Merci à nos précieux commanditaires !&lt;br /&gt;
&lt;br /&gt;
== Sécurité des applications : Les fondements ==&lt;br /&gt;
[[Image:Tanya.jpeg]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/securite-des-applications-les-fondements]] [https://speakerdeck.com/owaspmontreal/securite-des-applications-les-fondements See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 March 20th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
OWASP Montréal est fier d’accueillir au Midi Conférence du mois de mars, Mme Tanya Janca, Co-Leader du chapitre OWASP Ottawa et spécialiste de la sécurité applicative au sein du Gouvernement fédéral.&lt;br /&gt;
&lt;br /&gt;
La conférence « Les fondements de la sécurité des applications » sera présentée en anglais.&lt;br /&gt;
&lt;br /&gt;
Session Description : Everyone has heard about the problem; everyone is “getting hacked”. But what is the answer? From scanning your code with a vulnerability scanner to red teaming exercises, developer education programs and bug bounties, this talk will take the audience through all the possibilities of an extensive application security program, with a detailed explanation of each part.&lt;br /&gt;
&lt;br /&gt;
Bio : Tanya Janca is an application security evangelist, a web application penetration tester and vulnerability assessor, a secure code reviewer, an ethical hacker, the Co-Leader of the OWASP Ottawa chapter, and has been developing software since the late 90’s. She has worn many hats and done many things, including; Custom Apps, Ethical Hacking, COTS, Incident Response, Enterprise Architect, Project and People Management, and even Tech Support. She is currently helping the Government of Canada secure their web applications.&lt;br /&gt;
&lt;br /&gt;
Merci à notre commanditaire principal de cet événement: Ubitrak!&lt;br /&gt;
&lt;br /&gt;
== WORKSHOP ! Server Side Template Injection (SSTI) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-okiok-SSTI-r.jpg | WORKSHOP ! Server Side Template Injection (SSTI) ]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/workshop-server-side-template-injection-ssti]] [https://speakerdeck.com/owaspmontreal/workshop-server-side-template-injection-ssti See the slides / Voir la présentation]&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 22 Février 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Shopify Montréal&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
OWASP Montreal vous invite à un atelier portant sur la sécurité des applications web supportant les moteurs de template (Template Engine). Le principe de séparation entre la présentation du site (code HTML statique) et de son contenu dynamique facilite la création de documents HTML et la capacité à modifier l'apparence du site sans mélanger le traitement et le rendu de la page. L'utilisation de moteurs de template amène de nouveaux enjeux de sécurité. Les vulnérabilités de type Server Side Template Injection (SSTI) sont exploitables à travers les données (non fiables) fournies par l'utilisateur et conduisent à l'exécution de code arbitraire (RCE) sur le serveur hébergeant l'application web.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ce workshop a pour but d'introduire cette classe de vulnérabilité à travers différents cas d'implémentation (php, java, python).&lt;br /&gt;
Nous verrons comment identifier et exploiter ces vulnérabilités et de quelle manière un attaquant peut &lt;br /&gt;
s'y prendre pour exécuter du code arbitraire sur le serveur afin d'en prendre le contrôle.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Niveau : Intermédiaire&amp;lt;br /&amp;gt;&lt;br /&gt;
Matériel requis :&lt;br /&gt;
* Votre portable&lt;br /&gt;
* Votre distribution Linux/Unix de votre choix&lt;br /&gt;
* Votre proxy Web de votre choix&lt;br /&gt;
&lt;br /&gt;
Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
Places limitées. Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Shopify pour l'événement.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Présentateur : Gérôme Dieu&amp;lt;br /&amp;gt;&lt;br /&gt;
Gérôme Dieu cumule plus de 7 années d’expérience en technologies de l’information et en sécurité. &lt;br /&gt;
Il œuvre à titre de conseiller senior en sécurité de l’information au sein de la firme OKIOK. Ces dernières années, il a acquis une expertise dans le domaine de la sécurité des applications web aussi bien d'un point de vue offensif que défensif. En plus de réaliser des tests d’intrusion pour des clients internationaux, Gérôme s’implique dans la recherche et développement afin de maintenir à la fine pointe de la technologie les tests d'intrusion et d'analyse de vulnérabilités. &amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Merci à Shopify d'héberger l'événement !&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Shopify Logo-r.png| Shopify | link=https://www.shopify.com/]]&lt;br /&gt;
== Le courriel en 2017 – risques et menaces pour tous ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Zero spam 2.jpg|Le courriel en 2017 – risques et menaces pour tous]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://www.youtube.com/watch?v=HX2vcijcCWw ]] [https://www.youtube.com/watch?v=HX2vcijcCWw Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 Le 23 janvier 2017 à midi&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
Monsieur Poellhuber nous brossera un tableau du phénomène grandissant du rançongiciels et de l'hameçonnage, personnification.&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
- Par les années passées, la menace courriel se résumait principalement en un fort volume de contenu simplement indésirable. Aujourd’hui la menace a passablement évolué. Quels sont les véritables risques actuels associés au courriel ? Rançongiciels, hameçonnage, personnification. Cette conférence présentera les nouveaux défis de sécurité pour les organisations qui doivent composer avec des attaques de plus en plus sophistiquées et de plus en plus ciblées tout en protégeant leur réputation. Des exemples biens réels, drôles et moins drôles seront disséqués pour bien dessiner l’ampleur de l’enjeu.&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
M. David Poellhuber, Chef de l’exploitation, ZEROSPAM Sécurité Inc&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note biographique :&amp;lt;br /&amp;gt;&lt;br /&gt;
Monsieur David Poellhuber oeuvre dans l’industrie de la sécurité informatique depuis quinze ans. Il a été conférencier dans plusieurs forums de sécurité au Canada et est maintenant reconnu comme une autorité en matière de sécurité du courriel. Il a fondé ZEROSPAM Sécurité en 2003, le premier service Québécois externalisé de sécurité du courriel infonuagique qui se distingue par sa convivialité, son efficacité et ses technologies de détection proactives.&amp;lt;br /&amp;gt;&lt;br /&gt;
Audience :  Généralistes et spécialistes de la sécurité des TI &lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Merci à Ubitrack pour le repas et à Desjardins d'héberger l'événement!&lt;br /&gt;
&lt;br /&gt;
[[Image:Ubitrak-r2.jpg|Ubitrak|link=http://www.ubitrak.com/fr/]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&lt;br /&gt;
== Effective XSS Mitigation ==&lt;br /&gt;
&lt;br /&gt;
[[Image:XSS mitigation.jpg | Effective XSS Mitigation ]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=http://slides.com/olivierarteau/xss-mitigation ]] [http://slides.com/olivierarteau/xss-mitigation See the slides / Voir la présentation]&lt;br /&gt;
&lt;br /&gt;
WHEN &lt;br /&gt;
 18 Janvier 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Google Montréal&lt;br /&gt;
&lt;br /&gt;
FRANÇAIS/ENGLISH&amp;lt;br /&amp;gt;&lt;br /&gt;
La mitigation de XSS a été un sujet important au cours des dernières années. Les navigateurs ont implémenté, en autre, deux fonctionnalités pour mitiger leur impact : l'entête &amp;quot;XSS-Protection&amp;quot; et l'entête &amp;quot;Content-Security-Policy&amp;quot;. Par contre, obtenir une mitigation contre les XSS efficace est souvent plus complexe que l'on pense. Cet atelier couvrira les deux entêtes. Il expliquera comme il est possible de contourner ces protections et ce qu'il est possible de faire pour se protéger. Des exercices de type &amp;quot;offensif&amp;quot; et &amp;quot;défensif&amp;quot; seront proposés.&lt;br /&gt;
Mitigation for XSS as been an important topic in the last few years. Browsers have implemented two main functionalities to help mitigate the impact of XSS : the &amp;quot;XSS-Protection&amp;quot; header and the &amp;quot;Content-Security-Policy&amp;quot; header. But, getting an effective XSS mitigation of those headers is trickier than it may seem. This workshop will cover both of those headers. It will explain how bypass of those protection work and what you can do about it. It will have both &amp;quot;defensive&amp;quot; exercises and &amp;quot;offensive&amp;quot; exercises.&lt;br /&gt;
Niveau : débutant/intermédiaire&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Matériel requis :&lt;br /&gt;
&lt;br /&gt;
Votre portable&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
&lt;br /&gt;
Places limitées. Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Google pour l'événement.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Présentateur : Olivier Arteau&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Olivier Arteau est un professionnel en sécurité informatique depuis quelques années et fait partie de l’équipe de test d’intrusion de Desjardins. Il est aussi un amateur de CTF qui a gagné à plusieurs reprises le CTF du NorthSec avec l’équipe HackToute et participe fréquemment à d’autres CTF avec l’équipe DCIETS.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Merci à Google d'héberger l'événement! &lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-zap-4-r.jpg | Google | link=https://www.google.ca/ ]]&lt;br /&gt;
&lt;br /&gt;
= Lunch &amp;amp; Learn / Workshops 2015-2016 =&lt;br /&gt;
&lt;br /&gt;
== WORKSHOP ! Top 10 OWASP - Unleash the threats ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-top10.jpg | WORKSHOP! Top 10 OWASP - Unleash the threats ]]&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 30 novembre 2016 de 17h30 à 20h30&lt;br /&gt;
WHERE&lt;br /&gt;
 Immunio @ WeWork&lt;br /&gt;
&lt;br /&gt;
De nos jours, la sécurité applicative est essentielle dans l’écosystème des entreprises de toutes tailles. Les vecteurs d’attaques sont multiples, les vulnérabilités de sécurité dans les applications peuvent être désastreuses et les impacts d’un « Hack » peuvent être irréversibles pour l’entreprise; vols de données sensibles, perte de réputation, perte de $$$$$, etc.&lt;br /&gt;
L’objectif du workshop est de comprendre la base sur les vulnérabilités de sécurité dans les applications et les techniques d’exploitation utilisées par les pirates informatiques, en plus de connaître les bonnes pratiques de développement en matière de sécurité applicative. &lt;br /&gt;
Avec l'aide de WebGoat, Damn Vulnerable Web Application et de Kali Linux, vous pourrez participer&lt;br /&gt;
à l'exploitation des applications et découvrir les techniques utilisées par les attaquants.&lt;br /&gt;
&lt;br /&gt;
Niveau : débutant&lt;br /&gt;
&lt;br /&gt;
Matériel requis :&lt;br /&gt;
 Votre portable&lt;br /&gt;
 Kali Linux&lt;br /&gt;
 La VM du workshop, envoyée aux participants&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
&lt;br /&gt;
Places très limitées (nb = 10). Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Immunio &amp;amp; WeWork pour l'événement.&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Présentateur : Christian Leclerc&lt;br /&gt;
&lt;br /&gt;
Christian est spécialisé en conception et développement de solutions web sécuritaires. Tout au long de sa carrière, il a acquis une vaste expertise sur plusieurs types de technologies et méthodologies, intégré la sécurité dans le cycle de développement d’applications, effectué des revues de code sécurité, déployé des outils d’analyse des vulnérabilités et mis en place des systèmes d’authentification. De plus, il a participé à la conception et au développement de solutions sécuritaires de pointe comme la signature électronique à l’aide d’une infrastructure à clé publique (PKI), les authentifications fortes, le Registre des consentements au don d'organes et de tissus (RDOQ.org) et la migration de plusieurs applications web vers un environnement SOA (Service Oriented Architecture). &lt;br /&gt;
&amp;lt;br&amp;gt;Merci à Immunio &amp;amp; WeWork d'héberger l'événement!&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:Immunio-horizontal-r.png|Immunio|link=https://www.immun.io/]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[Image:Wework-r.jpg|WeWork|link=https://www.wework.com/]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Histoire d'un Hack ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Histoire-dun-hack-r.jpg | Histoire d'un Hack ]]&lt;br /&gt;
&lt;br /&gt;
WHEN &lt;br /&gt;
 21 novembre 2016 à midi&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
Pour son activité du mois de novembre, OWASP Montréal propose à la communauté de la sécurité des TI et aux gestionnaires de faire l'autopsie d'une attaque de haute voltige sur un site web et des outils mis à la disposition par OWASP.&lt;br /&gt;
 &lt;br /&gt;
Bernard Bolduc cumule plus de 17 années d’expérience en technologies de l’information et en sécurité. Il œuvre à titre de conseiller senior en sécurité de l’information au niveau d’entreprise de classe nationale et internationale.&lt;br /&gt;
 &lt;br /&gt;
Bernard se spécialise en sécurité Unix, applicative et en gestion de la sécurité des télécommunications. Il combine ces expertises techniques afin d’obtenir des résultats probants et efficaces pour ces clients des secteurs bancaire, télécommunication et multimédias, de l’énergie ou des services publiques. Tout au long de sa carrière, Bernard s’est toujours maintenu à jour sur les dernières menaces de sécurité technologique et commerciale en assistant à des formations spécialisées et d'échanger avec un grand nombre de partenaires dans l'industrie de la sécurité.&lt;br /&gt;
 &lt;br /&gt;
La conférence débute à midi.&lt;br /&gt;
 &lt;br /&gt;
La conférence vous donne droit à 1 CPE et pour les 50 premières personnes, un lunch gratuit.&lt;br /&gt;
 &lt;br /&gt;
Merci à Desjardins d'héberger l'événement!&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Workshop ! Création de votre première extension OWASP ZAP (ou BurpSuite) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-zap-mix.jpg | Workshop ! Création de votre première extension OWASP ZAP (ou BurpSuite)]]&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 11 novembre 2016 de 18h à 21h&lt;br /&gt;
&lt;br /&gt;
WHERE &lt;br /&gt;
 Google Montréal&lt;br /&gt;
&lt;br /&gt;
OWASP Zed Attack Proxy (ZAP) est un scanneur de vulnérabilités et un outil de débogage HTTP. Ce type d'outil est crucial dans un test d'intrusion web et contient un lot intéressant de fonctionnalités. Cela dit, il est possible d'étendre les fonctionnalités. Plusieurs types d'extension sont possibles : vue alternative pour les requêtes ou les réponses, scanneur passif des réponses, scanneur actif produisant des requêtes, etc.&lt;br /&gt;
&lt;br /&gt;
Plusieurs options seront données, par exemple :&lt;br /&gt;
&lt;br /&gt;
 Détection automatique de flag dans les sources&lt;br /&gt;
 Scanneur actif asynchrone DNS&lt;br /&gt;
 Ou votre propre idée&lt;br /&gt;
&lt;br /&gt;
Pour chacune des suggestions, des squelettes de code seront fournis pour les APIs de ZAP. Pour les utilisateurs de BurpSuite, des directives analogues seront également données.&lt;br /&gt;
&lt;br /&gt;
Niveau : débutant / intermédiaire&lt;br /&gt;
&lt;br /&gt;
Matériel requis&lt;br /&gt;
&lt;br /&gt;
 Votre portable&lt;br /&gt;
 [https://www.owasp.org/index.php/OWASP_Zed_Attack_Proxy_Project OWASP ZAP (gratuit)]&lt;br /&gt;
 [https://portswigger.net/burp/download.html BurpSuite]&lt;br /&gt;
 Éditeur de code pour Java, Python ou Ruby&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Présentateur : Philippe Arteau&lt;br /&gt;
&lt;br /&gt;
Philippe est un chercheur en cybersécurité chez GoSecure. Il est l'auteur de l'outil d'analyse statique Java &amp;quot;Find Security Bugs&amp;quot;. Il a découvert des vulnérabilités importantes dans les logiciels populaires tels que Google Chrome, Dropbox, Paypal, RunKeeper et Jira. Il a présenté dans différentes conférences incluant Black Hat USA, Black Hat Europe, ATL Sec Con, NorthSec, Hackfest (QC) et JavaOne. Il a développé de nombreux plug-ins pour les outils de proxy BurpSuite et OWASP ZAP (Retire.js, Reissue Request Script, PDF preview et Image Metadata). Il a fait également des contributions à d'autres plug-ins comme J2eeScan.&lt;br /&gt;
&lt;br /&gt;
Merci à Google d'héberger l'événement! &lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-zap-4-r.jpg | Google | link=https://www.google.ca/ ]]&lt;br /&gt;
&lt;br /&gt;
==Logiciel de rançon (Ransomware) s'attaque au domaine de la santé==&lt;br /&gt;
&lt;br /&gt;
[[Image:HackingHealth-2.jpg | Logiciel de rançon (Ransomware) s'attaque au domaine de la santé ]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/ransomware-and-healthcare-hacking-health ]] [https://speakerdeck.com/owaspmontreal/ransomware-and-healthcare-hacking-health See the slides / Voir la présentation]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;(Conférence en anglais)&lt;br /&gt;
Pour le lancement de la saison 2016 - 2017, OWASP Montréal propose à la communauté de la sécurité des TI et aux gestionnaires de la santé une incursion dans le monde du logiciel malveillant ciblant le domaine de la santé.&amp;lt;br /&amp;gt;&lt;br /&gt;
Cette conférence s'intége dans le Coopérathon co-organisé par le Mouvement Desjardins et Hacking Health.&amp;lt;/b&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Le domaine de la santé serait devenu une cible privilégiée des campagnes de ransomware parce que l'industrie a souvent payé la rançon demandée pour récupérer les données confidentielles et vitales de ses clients. Monsieur Ed Gershfang nous brossera un portrait du phénomène et des meilleures pratiques à mettre en place en matière de sécurité applicative.&lt;br /&gt;
Ed Gershfang possède une expérience solide dans l'infrastructure informatique et plus de 6 ans d'expérience dans les domaines de la sécurité de l'information, de la vulnérabilité, de la gouvernance et de la gestion des risques. Il était directeur de la sécurité pour la société PeriGen, un chef de file de développement de logiciels médicaux en Israël.&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== La sécurité applicative vue par un pentesteur ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Juin2016-OWASPMtl.jpg | OWASP Montréal reçoit Mario Contestabile, Pentester de renom ]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
From Left to Right : Isabelle Lusseyran, Head of Development at Hacking Health. Eduard Gershfang Information Security Analyst at WSP | Parsons Brinckerhoff.&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/owasp-montreal-recoit-mario-contestabile ]] [https://speakerdeck.com/owaspmontreal/owasp-montreal-recoit-mario-contestabile See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Pour clore la saison 2015 – 2016, OWASP Montréal est fier d’accueillir au Midi Conférence un des architectes de renom du développement applicatif au Canada, monsieur Mario Contestabile.&lt;br /&gt;
En tant qu’auteur de plusieurs centaines de tests d’intrusion, il connait tous les rouages de ce qu’est véritablement une application Web «sécurisée». Mais avez-vous déjà remarqué que les rapports de tests d’intrusion mentionnent rarement, voir jamais : «Votre site est très difficile à pirater. Félicitations !» ?&lt;br /&gt;
Et qu’en est-il de ces rapports qui contiennent des dizaines de soi-disant vulnérabilités ? Est-ce que cela signifie d’emblée que l’application devrait être mise hors ligne ?  &lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Lors de cette conférence, nous examinerons des rapports concrets (ambigus) de vulnérabilités et nous les analyserons afin de mieux comprendre si elles représentent une véritable menace, ou si elles ne servent qu’à «remplir» les rapports.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Avec son expertise en protection et en attaque d’applications Web, il abordera les points suivants :&lt;br /&gt;
Comment pouvez-vous sélectionner des systèmes de façon à mieux exécuter des protections de sécurité ?&lt;br /&gt;
Éviter certains pièges dans votre application Web qui rendent les attaques plus faciles et la protection plus difficile.&lt;br /&gt;
De nos jours, que peuvent faire les développeurs à l’intérieur de systèmes communs, qui puisse me rendre la tâche plus ardue en tant que « hacker »?&lt;br /&gt;
Pouvons-nous exiger de meilleurs rapports de la part des firmes de sécurité?&lt;br /&gt;
À quoi devrions-nous nous attendre de la part d’un « pentesters »?&lt;br /&gt;
Comment pouvons-nous savoir si le « pentester » a vérifié les failles de l’application et qu’il n’a pas simplement utilisé un scanneur?&lt;br /&gt;
Et enfin, comment pouvons-nous aider les « ethical hackers » à obtenir un meilleur rendement lors d’un test d’intrusion?&lt;br /&gt;
Il expliquera le sujet en détails, et ensemble, nous verrons de quelles façons les développeurs d’applications peuvent exploiter le savoir-faire des « pentesters », et comment nous pouvons faire en sorte qu’une application Web soit protégée.&lt;br /&gt;
Biographie :&lt;br /&gt;
Mario Contestabile est reconnu comme l’un des experts en sécurité les plus réputés au Canada. Son expertise, construire et protéger votre plateforme applicative. Ancien développeur C++ et Java, Mario partage ses nombreuses connaissances en « ethical hacking » et en développement de codes sécurisé.  &lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Tuesday, 14 June 2016 from 12:00 PM to 1:00 PM (EDT) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Comment protéger les applications mobiles? ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Avril2016-OWASPMtl.png | Comment protéger les applications mobiles? ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/comment-proteger-les-applications-mobiles ]] [https://speakerdeck.com/owaspmontreal/comment-proteger-les-applications-mobiles See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Dans le cadre des Midis Conférence à l'Espace Desjardins, l'équipe OWASP Montréal vous invite à assister à une présentation sur les vulnérabilités les plus communes associées aux appareils mobiles. &lt;br /&gt;
Marie-Claire Willig détaillera entre autres comment stocker de façon sécuritaire les données de l’application mobile ainsi que protéger l’application contre des attaques externes. Des outils simples vous seront dévoilés pour détecter ces vulnérabilités.&lt;br /&gt;
Marie-Claire est une professionnelle d'expérience en sécurité appliquée.&lt;br /&gt;
Une grande partie de son intérêt professionnel réside actuellement dans un domaine assez niche, soit la revue de code sécuritaire, un fondement important de tout cycle de développement sécuritaire en entreprise.&lt;br /&gt;
Au sein de l'équipe de sécurité technologique Desjardins, elle est, en autre, responsable de former les développeurs (Java et .NET principalement) afin de les sensibiliser aux meilleures pratiques de développement sécuritaire.&lt;br /&gt;
Également, elle est une professionnelle des tests d'intrusion sur les applications web, les applications mobiles ainsi que l'infrastructure réseau.&lt;br /&gt;
Bienvenue à tous&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 20 April 2016 from 12:15 PM to 1:00 PM (EDT) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== NorthSec, Le plus gros événement de cybersécurité appliquée au Canada ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Mars2016-OWASPMtl.jpg | NorthSec, Le plus gros événement de cybersécurité appliquée au Canada ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/YQtvltQYs7Y]] [https://youtu.be/YQtvltQYs7Y Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
OWASP Montréal est fier d’inviter au Midi Conférence de mars, NorthSec est le plus gros événement de sécurité appliquée au Canada qui comprend deux jours de formation, deux jours de conférences ainsi qu’une compétition du genre « capture the flag » (CTF) de trois jours.&lt;br /&gt;
Gabriel Tremblay, Benoit Guerette, Pierre-David Oriol et Laurent Desaulniers viendront vous parler de cet organisme sans but lucratif dynamique qui est géré par une équipe de bénévoles passionnés qui donnent à chaque année leur énergie et leur temps pour soutenir la communauté de la sécurité de l’information.&lt;br /&gt;
Le volet compétition, l’épreuve maîtresse, est présentée sous forme d’un scénario qui rend cohérent une centaine de défis techniques. Les équipes de participants attaquent l’infrastructure de compétition pour soutirer des drapeaux (flags) à travers un ensemble de vulnérabilités présentes comme de l’injection SQL, des XSS ou encore l’exploitation d’exécutables sur systèmes embarqués. Quelques exemples de défis des années passées seront également présentés.&lt;br /&gt;
Le volet conférence, qui est à sa 2ème année, met de l’avant plusieurs présentations techniques touchant la sécurité applicative mais aussi l’éthique et leurs impacts sociaux. Certaines présentations confirmées seront dévoilés.&lt;br /&gt;
Le tout nouveau volet formation propose deux formations en sécurité applicative de calibre international (anglais) : “Advanced Web Security Testing with Burp Pro” et “Modern Object-Oriented Malware Reverse Engineering”.&lt;br /&gt;
Venez aussi, découvrir comment l'équipe est partie d'une idée en 2012 pour se rendre à un évènement d'envergure, qui rassemblera plus de 600 professionnels, étudiants et autres passionnés de sécurité appliquée lors de la 4ème édition qui aura lieu du 17 au 22 mai 2016 au Marché Bonsecours.&lt;br /&gt;
Finalement, la mission, la vision ainsi que les activités sociales de la semaine de NorthSec sont aussi au menu de cette présentation qui sera suivie d’une période de questions.&lt;br /&gt;
&lt;br /&gt;
Gabriel Tremblay, Delve Labs, Président&lt;br /&gt;
Benoit Guerette, Desjardins, VP Finances&lt;br /&gt;
&lt;br /&gt;
Pierre-David Oriol, Delve Labs, VP Conférence&lt;br /&gt;
Laurent Desaulniers, Bell Canada, Artisant de drapeaux&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 23 March 2016 from 12:00 PM to 1:00 PM (EDT) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== La sécurité applicative et l'hameçonnage - February 24th ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Fevrier2016-OWASPMtl.jpg | La sécurité applicative et l'hameçonnage ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/1RYlOiIENjQ]] [https://youtu.be/1RYlOiIENjQ Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
De nos jours, une des méthodes les plus efficaces pour contourner les périmètres de sécurité externes est l'hameçonnage conjointement avec l’abus de certaines technologies Web.&lt;br /&gt;
&lt;br /&gt;
Dans le cadre ses activités, OWASP Montréal est heureux d'inviter d'accueillir, l'équipe OKIOK qui présentera les impacts liés à ce type d'attaque, tel que vu et expérimenté en entreprise ainsi que les plans d'action pour traiter ces risques. La présentation abordera aussi bien la sécurité web et applicatives, des systèmes informatiques ainsi que de la sécurité physique de centres de données. &lt;br /&gt;
&lt;br /&gt;
    Capture d'informations sensibles par imitations de portails Web ;&lt;br /&gt;
    Authentification Web par 2-facteurs ;&lt;br /&gt;
    Injection SMTP dans des formulaires Web ;&lt;br /&gt;
    Attaque de type “Drive-by-download”;&lt;br /&gt;
    Prise de contrôle à distance à travers des flux HTTP;&lt;br /&gt;
    Attaque de CSRF à partir de courriels ;&lt;br /&gt;
    Attaque d'hameçonnage basée sur des achats par Internet (ex : PayPal).&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
When&lt;br /&gt;
 Wednesday, 24 February 2016 from 12:00 PM to 1:15 PM (EST) - Add to Calendar &lt;br /&gt;
Where&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest Montreal, Quebec CA&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Internet of {Things, Threats} - January 20th ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Janvier2016-OWASPMtl-R.png | Internet of {Things, Threats} ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=http://gosecure.github.io/presentations/2016-01-20_owasp-mtl/internet-of-threats.html ]] [http://gosecure.github.io/presentations/2016-01-20_owasp-mtl/internet-of-threats.html See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
De plus en plus de périphériques se retrouvent connectés sur Internet. Sous la bannière &amp;quot;Internet of Things&amp;quot; (IoT) ces équipements, que ce soit une pompe à insuline ou un système de caméra de sécurité, tournent généralement sous un système GNU/Linux embarqué d'architecture MIPS ou ARM. La difficulté de mettre à jour ces équipements ainsi que le peu d'effort mis dans la sécurité des systèmes ou la sécurité applicative en font des cibles de choix. Ces derniers mois, nous avons analysé plusieurs logiciels malveillants ciblant ces architectures. Que ce soit par l'exploitation d'une vulnérabilité (Shellshock) ou encore un défaut de configuration, ces systèmes exposés sur Internet peuvent être compromis.&lt;br /&gt;
&lt;br /&gt;
Notre présentation couvrira quelques une de ces analyses:&lt;br /&gt;
&lt;br /&gt;
* Linux/Moose, un malware se propageant automatiquement qui fraude les réseaux sociaux (par exemple Facebook, Twitter et YouTube)&lt;br /&gt;
* LizardSquad et acteurs étrangers qui utilisent des systèmes embarqués compromis pour réaliser des dénis de service distribué (DDoS) &lt;br /&gt;
* Win32/RBrute est un logiciel malveillant qui tente de changer les paramètres de routeurs dans le but de faire du &amp;quot;DNS poisoning&amp;quot;. Il a été distribué par le populaire botnet Sality.&lt;br /&gt;
* Un kit d'exploits qui utilise seulement le navigateur de leur victime avec le même objectif, c'est-à-dire faire du &amp;quot;DNS poisoning&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Enfin, des conseils seront proposés à l'audience pour l'aider à se protéger de ces menaces.&lt;br /&gt;
&lt;br /&gt;
'''Thomas Dupuy''' (twitter: @nyx__o)&lt;br /&gt;
&lt;br /&gt;
Thomas est chercheur en logiciel malveillant chez ESET Canada Recherche. Bon vivant, Thomas déjeune en &amp;quot;reversant&amp;quot; des binaires, contribue à quelques projets open source durant le diner (yara, yara rules, pefile, APTnotes) et la nuit participe à des &amp;quot;Hacking Games&amp;quot; (Capture The Flag). Curieux de nature Thomas analyse des malware aux architectures &amp;quot;exotiques&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Olivier Bilodeau''' (twitter: @obilodeau)&lt;br /&gt;
&lt;br /&gt;
Olivier Bilodeau is the head of Cybersecurity Research at GoSecure a consultancy firm specializing in cybersecurity services for the public and private sector. With more than 10 years of infosec experience, Olivier worked on Unix servers at Bell Canada, managed a portion of Air Canada's network, wrote open source network access control software at Inverse and worked as a Malware Researcher at ESET. He likes to reverse engineer everything that crosses his path, participate in information security capture-the-flag competitions, hack open source code and brew beer. He has spoken at various conferences (Defcon, Botconf, VirusBulletin, Derbycon, ...), used to lecture on information security at ETS University in Montreal, drives the NorthSec Hacker Jeopardy and co-organizes the MontreHack capture-the-flag training initiative. His primary research interests include reverse-engineering tools, Linux and/or embedded malware and honeypots.&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Survivre aux attaques DDOS applicatives ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Decembre2015-OWASPMtl.jpg | Survivre aux attaques DDOS applicatives ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Survivre aux attaques DDOS (Distributed Denial-Of-Service) applicatives.&lt;br /&gt;
Cette conférence s'adresse aux professionnels et gestionnaires des TI.&lt;br /&gt;
Conférencier : Christian Shink, ing., CSSLP, ingénieur système chez Radware, manufacturier spécialisé dans la prévention des attaques DDOS. Il fut également consultant en sécurité applicative chez In Fidem.&lt;br /&gt;
Objectifs de la conférence:&lt;br /&gt;
Présenter les tendances actuelles en matière d'attaques DDOS applicatives.&lt;br /&gt;
Renseigner les participants sur les techniques et stratégies pour contrer ces attaques illustrées à partir de cas vécus.&lt;br /&gt;
Démystifier certains mythes en ce qui concernent les façons efficaces de protéger les applications contre des attaques DDOS.&lt;br /&gt;
Date : 16 décembre 2015&lt;br /&gt;
Heure : 11h45&lt;br /&gt;
La conférence débute à 12h00 et se termine à 12:55.&lt;br /&gt;
Un lunch sera servi.&lt;br /&gt;
Réservez maintenant!&lt;br /&gt;
1 CPE&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 16 December 2015 from 11:45 AM to 1:00 PM (EST) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec &lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Sécurité des applications - Systèmes de contrôles industriels ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Novembre2015-OWASPMtl-R.png | Sécurité des applications - Systèmes de contrôles industriels ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/0eAZpyiQQ9A]] [https://youtu.be/0eAZpyiQQ9A Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&lt;br /&gt;
La sécurité des applications et les systèmes de contrôles industriels.&lt;br /&gt;
Cette conférence s'adresse aux professionnels et gestionnaires des TI desinfrastructures critiques qui exploitent ou gèrent des systèmes de contrôles industriels(SCI) et SCADA (surveillance et d'acquisition de données).&amp;lt;br /&amp;gt;&lt;br /&gt;
Conférenciers : Robert Nastas, CSSA. Gestionnaire de projet et Youssef Jad, Architecte Cyber sécurité, ICS-CERT&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Objectifs de la conférence:&lt;br /&gt;
* Démystifier le domaine d'affaires.&lt;br /&gt;
* Renseigner les participants sur les bonnes pratiques de sécurité desapplications liées au secteur industriel.&lt;br /&gt;
* Proposer aux professionnels et gestionnaires des TI responsables dessystèmes SCADA et SCI des pistes de solutions aux enjeux de sécurité.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
L'équipe OWASP Montréal vous remercie d'avoir assisté en grand nombre à la conférence, 'La sécurité des applications et les systèmes de contrôles industriels'.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 18 November 2015 from 11:45 AM to 1:00 PM (EST) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Les préoccupations actuelles de hauts dirigeants en matière de cybersécurité et de sécurité applicative ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Septembre2015-OWASPMtl.jpg | Les préoccupations actuelles de hauts dirigeants en matière de cybersécurité et de sécurité applicative ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/un-regard-sur-la-securite-de-linformation-en-2015-par-eric-hebert ]] [https://speakerdeck.com/owaspmontreal/un-regard-sur-la-securite-de-linformation-en-2015-par-eric-hebert See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Pour le lancement des activités corporatives de la saison 2015 - 2016, le 8 septembre prochain à 12:00, l'équipe OWASP Montréal convie les gestionnaires et artisants de la sécurité des TIC à venir entendre monsieur Éric Hébert qui nous présentera son interprétation des préoccupations actuelles de hauts dirigeants en matière de cybersécurité et de sécurité applicative. L'événement se tiendra au complexe Desjardins à la salle &amp;quot;Espace Desjardins&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
''' ÉRIC G. HÉBERT, CISM, CISSP ''' &amp;lt;br /&amp;gt;&lt;br /&gt;
Après plus de 20 ans passés dans le domaine de la sécurité des technologies de l’information, Éric se spécialise dans la mise en œuvre et la gestion d'équipes performantes, capables de relever les plus hauts défis de la cybersécurité moderne.&amp;lt;br /&amp;gt;&lt;br /&gt;
Capable de dialoguer avec les hauts dirigeants, il sait traduire et vulgariser les enjeux techniques complexes tout en respectant la nature et l'appétence au risque de ses clients. Dynamique et pourvu d'une expérience couvrant presque toutes les sphères de la SI, il fonce dans le respect de la culture établie tout en implantant des solutions pragmatiques et efficaces.&amp;lt;br /&amp;gt;&lt;br /&gt;
Depuis plus de 10 ans, il gravite principalement autour des entreprises du domaine financier (BNC, Desjardins, Fonds de solidarité FTQ...) et les accompagne dans la mise en place de solutions efficaces tenant compte à la fois des risques et des budgets.&lt;br /&gt;
En plus d’avoir fondé de nombreuses associations telles que le RéseauSécurIT et le RPSI, il maintient une présence régulière auprès des milieux associatifs professionnels et partage régulièrement ses expériences lors de conférences et d'entrevues avec divers médias.&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Events / Évènements =&lt;br /&gt;
&lt;br /&gt;
== Owasp Montreal at [https://nsec.io/ NorthSec 2017] ==&lt;br /&gt;
&lt;br /&gt;
[[Image:NorthSec2017-5.jpg]]&lt;br /&gt;
[[Image:NorthSec2017-6.jpg]]&lt;br /&gt;
&lt;br /&gt;
From Left to Right: Anne Gauthier, OWASP Montréal Chapter Leader (President) and Application Security Analyst at GoSecure, Hugo Genesse, OWASP Montréal Chapter Leader and Research Intern at PNF Software, Julien, OWASP Montréal Chapter Leader&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal at [https://2017.appsec.eu/ AppSec] ==&lt;br /&gt;
&lt;br /&gt;
[[Image:OWASPAppSecBelfast2017-7.jpg]]&lt;br /&gt;
&lt;br /&gt;
OWASP Montreal and Ottawa Chapter Leaders at OWASP AppSec Belfast, UK #WomenInAppSec&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal at [https://hackfest.ca/ HackFest 2016] ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hackfest2016-r.jpg| HackFest |link=https://hackfest.ca/]]&lt;br /&gt;
&lt;br /&gt;
From left to right: Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Louis Nadeau, OWASP Québec Chapter Leader and Manager, Product Security at Bentley Systems and Patrick Leclerc, OWASP Québec Chapter Leader and Information Security Advisor at La Capitale.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal at OWASP [https://2016.appsecusa.org/ AppSec USA 2016, Washington] ==&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:OWASPMtl-AppSecUSA2016-Washington.jpg | OWASP Montreal at AppSec USA 2016, Washington]] &lt;br /&gt;
&lt;br /&gt;
​From left to right: Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Marie-Claire Willig, Application Security Analyst at Desjardins, Speaker and Cofounder of the Roslyn Security Guard tool which will be presented at Blackhat 2016, Alexandre Hamelin President at Synlabs Consulting Inc., Jonathan Marcil, Application Security Engineer at Blizzard Entertainment and former OWASP Montreal Chapter Leader. Philippe Arteau, Cybersecurity Researcher at GoSecure and designer of [https://find-sec-bugs.github.io/ Find Security Bugs] and Roslyn Security Guard tool which will be presented at Blackhat 2016.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://www.gosec.net GoSec] 2016 ==&lt;br /&gt;
&lt;br /&gt;
[[Image:OWASP-GoSec2016-1r.jpg|OWASP Montreal at GoSec 2016]] [[Image:OWASP-GoSec2016-2r.jpg|OWASP Montreal at GoSec 2016]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
From left to right : Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Simon Lacasse, student and volunteer, and Laurent Desaulniers, Security Analyst at Bell Canada.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://www.nsec.io/ NorthSec] 2016 – Annual Applied Security Event ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hackfest2016-OWASPMtl.jpg|OWASP Montreal at NorthSec 2016]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Simon Veilleux &lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
From left to right : Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Olivier Arteau OWASP Montréal Chapter Leader and Conseiller chez Groupe Technologie Desjardins, Hugo Genesse, OWASP Montréal Chapter Leader and Vulnerability Research Intern at Wurldtech Security Technologies.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://hackfest.ca/en/ Hackfest] 2015 ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hackfest2015-OWASPMtl-R.JPG | OWASP Montreal at Hackfest 2015]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Hackfest &lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
From left to right : Jonathan Marcil, Application Security Engineer at Blizzard Entertainment and former OWASP Montreal Chapter Leader. Philippe Arteau, Cybersecurity Researcher at GoSecure and designer of [http://find-sec-bugs.github.io/ Find Security Bugs] and Roslyn Security Guard tool which will be presented at Blackhat 2016. &lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/8U0qkEuUFy8]] [https://youtu.be/8U0qkEuUFy8 Watch the video / Regarder la vidéo]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://www.gosec.net/ GoSec] 2015 – The Annual Cybersecurity Conference presented by GoSecure, EY and ISACA. ==&lt;br /&gt;
&lt;br /&gt;
[[Image:GoSec2015-OWASPMtl.jpg|OWASP Montreal at GoSec 2015]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
From left to right : Marie-Claire Willig, Application Security Analyst at Desjardins, Speaker and Cofounder of the Roslyn Security Guard tool which will be presented at Blackhat 2016. Benoît Guérette, Application Security Team Leader at Desjardins, VP Finance at NorthSec and OWASP Montreal Chapter Founder and Former Chapter Leader.&lt;br /&gt;
&lt;br /&gt;
== See also / Voir aussi ==&lt;br /&gt;
&lt;br /&gt;
OWASP Montréal recommends Montréhack. Learn and share knowledge on IT security by solving technical challenges. Third Monday of every month. &lt;br /&gt;
&lt;br /&gt;
OWASP Montréal recommende Montréhack. Apprends et partages des connaissances sur la sécurité informatique en travaillant des problèmes appliqués. Chaque troisième lundi du mois. &lt;br /&gt;
&lt;br /&gt;
[[File:Montrehack.png|Montréhack|link=http://montrehack.ca/|alt=Montréhack]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Archives 2007-2015 =&lt;br /&gt;
{{:Montreal chapter past meetings}}&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - February 3rd - Getting to Know the Software Assurance Marketplace (SWAMP) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/p4_vjufcB6Q]] [https://youtu.be/p4_vjufcB6Q Watch the conference / Regarder la conférence]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/getting-to-know-the-software-assurance-marketplace-swamp-by-pat-beyer]] [https://speakerdeck.com/owaspmontreal/getting-to-know-the-software-assurance-marketplace-swamp-by-pat-beyer See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Pat Beyer&lt;br /&gt;
*'''ADDITIONAL PRESENTER:'''  Abe Megahed&lt;br /&gt;
*'''ABSTRACT:''' The Software Assurance Marketplace (SWAMP) is an open facility that is designed, built, and operated by four research institutions. The SWAMP provides no-cost access to an array of open-source and commercial software analysis tools. This presentation will provide an overview and demo of the SWAMP, including our goals, intended audience, current capabilities, and future plans. We will cover our relationship with OWASP, incorporation of open-source software assurance tools, and status as an open-source project and resource available to the software community. Visit https://continuousassurance.org/ to learn more about us.&lt;br /&gt;
*'''BIO:''' Pat Beyer serves as the Product Manager for the Software Assurance Marketplace (SWAMP). With over 25 years of experience successfully managing multi-million dollar global projects, Beyer’s expertise extends to the IT, construction, and operations sectors, with a specialization in managing government contracts and grants. A gifted communicator, Beyer is a sought after speaker due to his ability to deliver complex information about technology products and services in a way that is easily understood. He is a decorated combat veteran of the Global War on Terror, the international military campaign that started following the 9/11 terrorist attacks on the United States. In 2004, he constructed and rehabilitated over 20 schools, clinics, and water treatment plants for the Iraqi people using local contractors. Beyer also holds a Bachelor of Science, a Masters in Business Administration, a Ph.D. in Organization and Management, and a Project Management Professional (PMP) certification.&lt;br /&gt;
*'''BIO:''' Abe Megahed is a web developer for the Software Assurance Marketplace. In previous lifetimes, he has been a computer graphics researcher, a game programmer, a programming language and compiler nerd, a dot com company founder, a creator of helicopter simulations, and a developer of 3D simulations for NASA astronaut crew training.&lt;br /&gt;
*'''WHEN:'''  Tuesday, February 3rd 2015&lt;br /&gt;
*'''WHERE:''' Room PK-1140 - UQAM Pavillon Président-Kennedy, 201 Avenue du Président-Kennedy  J2X 3Y7&lt;br /&gt;
*'''REGISTRATION:''' https://owaspmtlswamp2015.eventbrite.ca&lt;br /&gt;
*'''WEBCAST:''' https://www.youtube.com/watch?v=p4_vjufcB6Q&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/getting-to-know-the-software-assurance-marketplace-swamp-by-pat-beyer&lt;br /&gt;
&lt;br /&gt;
*'''ACADEMIC PARTNER:''' AGEEI-UQAM - http://www.ageei.org/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Welcome speech by Chapter Leader (Jonathan Marcil)&lt;br /&gt;
  18:30-20:00 Main session: Getting to Know the Software Assurance Marketplace&lt;br /&gt;
  20:00-...   End of the meeting&lt;br /&gt;
&lt;br /&gt;
[[Image:SWAMP-Logo-Final-Med.png|300px|link=https://continuousassurance.org/]]&lt;br /&gt;
[[Image:Ageeilogo.jpg|200px|link=http://www.ageei.org/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - 4 décembre - Malware côté serveur — évolution, méthodes d’opération et forensic Linux ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/lo8WDl-WQ3E]] [https://youtu.be/lo8WDl-WQ3E Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/malware-cote-serveur-par-marc-etienne-m-dot-leveille]] [https://speakerdeck.com/owaspmontreal/malware-cote-serveur-par-marc-etienne-m-dot-leveille See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''PRÉSENTATEUR PRINCIPAL:''' Marc-Etienne M.Léveillé&lt;br /&gt;
*'''RÉSUMÉ:''' Les logiciels malveillants ciblant les serveurs ont évolué. Ils sont utilisés par des groupes de cybercriminels organisés dans le but de faire du profit via des redirections web et l’envoie de pourriels. La présentation portera sur Opération Windigo, une opération malveillante qui a affecté plus de 25 000 serveurs dans le monde. Après une brève description des composantes de Windigo, nous verrons comment les opérateurs déploient leurs logiciels malveillants et surveille leur réseau de serveurs infectés. Des trucs pratiques pour faire de la forensics sur des systèmes Linux seront donnés. Cette présentation est une suite à la présentation &amp;quot;Linux/Cdorked: Server side malware&amp;quot;, donnée par Olivier Bilodeau à OWASP Montréal en 2013. La présentation sera en français avec des diapositives en anglais (aka Montreal-style).&lt;br /&gt;
*'''BIO:''' Marc-Etienne est un chercheur en logiciel malveillant chez ESET depuis 2012. Il se spécialise dans les logiciels malveillants qui s’attaquent à des plateformes inhabituelles comme aux produits fruités et aux oiseaux nordiques. Dernièrement, il passe beaucoup de son temps à faire la rétro-ingénierie de logiciels malveillants sur des serveurs Linux et s’intéresse à leurs méthodes d’opération. Il adore participer de façon collégiale aux CTFs avec ses amis les CISSP Groupies et jouer de la clarinette. Il tweet très peu à @marc_etienne_.&lt;br /&gt;
*'''QUAND:''' 4 décembre 2014 à 18h00&lt;br /&gt;
*'''OÙ:''' Local M-1510, Polytechnique Montréal, 2900 Boulevard Edouard-Montpetit&lt;br /&gt;
*'''INSCRIPTION:''' https://www.eventbrite.ca/e/owasp-montreal-4-decembre-malware-cote-serveur-evolution-methodes-doperation-et-forensic-linux-tickets-14635313617&lt;br /&gt;
*'''ÉQUIPE ACADÉMIQUE:''' Polyhack - http://polyhack.org/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
&lt;br /&gt;
 18:00-18:30 Réseautage&lt;br /&gt;
 18:30-18:35 Mot de bienvenue par le leader du chapitre (Jonathan M.)&lt;br /&gt;
 18:35-19:30 Présentation principale : Malware côté serveur&lt;br /&gt;
 19:30-20:00 Période de questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Polyhacklogonoirpetit.png|200px|link=http://polyhack.org/]]&lt;br /&gt;
[[Image:LogoPolytechnique.gif|link=http://www.polymtl.ca/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - October 23rd - XXE : À l’assaut des analyseurs XML ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/MZviLB9-42E]] [https://youtu.be/MZviLB9-42E Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/xxe-a-lassaut-des-analyseurs-xml-par-philippe-arteau]] [https://speakerdeck.com/owaspmontreal/xxe-a-lassaut-des-analyseurs-xml-par-philippe-arteau See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''PRÉSENTATEUR PRINCIPAL:''' Philippe Arteau&lt;br /&gt;
*'''RÉSUMÉ:''' L'utilisation d’XML est fortement répandue. Le format est utilisé pour des fichiers de configuration, pour des métadonnées, pour des documents textes, et bien plus. La prise en charge de fichiers XML n’est pas sans risque. La plupart des analyseurs XML ne sont pas sécuritaires par défaut pour le traitement de fichier externe. Cette présentation fera un survol des vulnérabilités de type « Xml eXternal Entity » et de l’étendue des risques pour différents langages de programmation. Plusieurs démonstrations sont prévues.&lt;br /&gt;
*'''BIO:''' Philippe est conseiller en sécurité applicative pour le Groupe Technologies Desjardins. Au quotidien, il s’occupe d’effectuer des tests d’intrusions et des revues de code. Il a découvert des vulnérabilités importantes dans plusieurs logiciels populaires incluant Google Chrome, DropBox, ESAPI et Jira.&lt;br /&gt;
*'''QUAND:'''  23 Octobre 2014 à 18h00&lt;br /&gt;
*'''OÙ:''' École de Technologie Supérieure Local A-3230, 1100 Rue Notre-Dame Ouest, Montréal, QC H3C 1K3&lt;br /&gt;
*'''INSCRIPTION:''' http://www.eventbrite.ca/e/owasp-montreal-23-octobre-xxe-a-lassaut-des-analyseurs-xml-tickets-13426881163&lt;br /&gt;
*'''PARTENAIRE ACADÉMIQUE:''' ETS - DCI http://dciets.com/&lt;br /&gt;
*'''PROGRAMME:''' &lt;br /&gt;
&lt;br /&gt;
 18:00-18:30 Réseautage&lt;br /&gt;
 18:30-18:45 Mot de bienvenue&lt;br /&gt;
 18:45-19:45 Présentation principale - &amp;quot;À l’assaut des analyseurs XML&amp;quot; Philippe Arteau&lt;br /&gt;
 19:45-20:00 Période de questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Blason_dci.png‎‎‎|150px|link=http://dciets.com/]]&lt;br /&gt;
[[Image:ETS-rouge-devise-impr-fond_transparent.png|150px|link=http://www.etsmtl.ca/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - July 24th - Web security for DevOps: the glory is in the headers ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/6bp1NCLT-YQ]] [https://youtu.be/6bp1NCLT-YQ Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/web-security-for-devops-the-glory-is-in-the-headers-by-jonathan-marcil]] [https://speakerdeck.com/owaspmontreal/web-security-for-devops-the-glory-is-in-the-headers-by-jonathan-marcil See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Jonathan Marcil&lt;br /&gt;
*'''ABSTRACT:''' DevOps is a buzzword which can be easily demystified: in essence it is a process which aims to combine the development and system administration process into one; Operations. As developers become responsible for server setup, security counter measures are evolving as well. The line between server configuration and application behaviour has been blurred. In this talk we will cover some HTTP headers in regards to security such as CORS, CSP and HSTS. We will demonstrate several forms of attack, and how they can (should) be countered.&lt;br /&gt;
*'''BIO:''' Jonathan is devoted to security and specialized in Web application security.  His main occupation is consulting in Web security, but deep down he is a developer with a agnostic vision of programming languages. He has a diploma in Software Engineering from Ecole de Technologie Superieure and more than 10 years of experience in Information Technology and Security.&lt;br /&gt;
*'''WHEN:'''  At noon on July 24th 2014&lt;br /&gt;
*'''WHERE:''' 75 Queen Street, office 3100, Montreal, QC H3C 2N6&lt;br /&gt;
*'''REGISTRATION:''' You can join us on site for a pizza slice but this is mainly an online event. Contact jonathan.marcil@owasp.org.&lt;br /&gt;
*'''WEBCAST:''' https://www.youtube.com/watch?v=6bp1NCLT-YQ&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/web-security-for-devops-the-glory-is-in-the-headers-by-jonathan-marcil&lt;br /&gt;
*'''EVENT SPONSOR:''' Pheromone http://www.pheromone.ca/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  12:00-12:10 Welcome and quick OWASP introduction&lt;br /&gt;
  12:10-13:10 Main presentation - &amp;quot;Web security for DevOps: the glory is in the headers&amp;quot; Jonathan Marcil&lt;br /&gt;
  13:10-... Open discussion and questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Logo-phero.gif‎|link=http://www.pheromone.ca/]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - June 18th - Gaps in the Clouds ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/gaps-in-the-clouds-by-robert-fritz]] [https://speakerdeck.com/owaspmontreal/gaps-in-the-clouds-by-robert-fritz See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Robert Fritz&lt;br /&gt;
*'''ABSTRACT:''' Cloud technology offers agility and scaling, and a chance to break away from legacy IT choices.  Unfortunately, skipping traditional IT activities often results in poorly patched systems, out of date firewalls, and overprovisioned entitlements wielded by admins whose “day job” is development.  Boundaries of accountability and responsibility amongst cloud providers and consumers are confusing, vague, and shift, making security difficult to manage.  In such an environment, a “BP-spill” event, where cost wins over safely safety, is likely.  This talk will dive down into the cracks between the layers of cloud, and share some of the exciting dirt we have seen and expect to see in coming years.”&lt;br /&gt;
*'''BIO:''' Robert Fritz has been practicing security his entire career. Rob started as an Air Force lieutenant at Langley AFB and later at the Pentagon in Washington DC, building and managing classified networks. Finding he was getting too far from technology after a brief stint flying, he left the military to get back to the tech, and built security tools for HP in their HP-Unix lab.  Over time he found himself in more and more security design discussions, so co-authored HP’s Commercial Application Threat Analysis Methodology, building an internal consulting practice at HP.  This quantitative approach, led to two pending patents, an external-facing consulting practice, and his contributions to NIST IR-7502, the Common Configuration Scoring System (CVSS follow-on).  He is the former lead editor for the Center for Internet Security’s HP-UX Benchmark, and current lead for the Android Benchmark.  Robert now works for Morgan Stanley as global head of the Strategic Consulting team in the Security Architecture group, and leads the team’s cloud and social-media security practices.&lt;br /&gt;
*'''WHEN:''' June 18th 2014&lt;br /&gt;
*'''WHERE:''' 700 Rue Wellington, Floor 2, Montreal, QC H3C 3S4&lt;br /&gt;
*'''REGISTRATION:''' http://owaspmtl18junems.eventbrite.ca&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/gaps-in-the-clouds-by-robert-fritz&lt;br /&gt;
*'''EVENT SPONSOR:''' Morgan Stanley http://www.morganstanley.com/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:30 Networking and Morgan Stanley Hosted Pizza and Soft Drinks&lt;br /&gt;
  18:30-18:45 OWASP Chapter &amp;amp; Morgan Stanley Welcome&lt;br /&gt;
  18:45-19:45 Main presentation - &amp;quot;Gaps in the Clouds&amp;quot; Robert Fritz&lt;br /&gt;
  19:45-20:00 Open discussion and questions&lt;br /&gt;
  20:00-...   Optional, informal networking at Aziatic - 626 rue Marguerite-d'Youville, Montréal, QC H3C 1W7&lt;br /&gt;
&lt;br /&gt;
[[Image:Morgan_Stanley_Historical_Logo.png|link=http://www.morganstanley.com/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - May 26th - Récapitulatif des challenges NorthSec ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/P8_V3RI1Ru4]] [https://youtu.be/P8_V3RI1Ru4 Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''PRÉSENTATEUR PRINCIPAL:''' Laurent Desaulniers&lt;br /&gt;
*'''RÉSUMÉ:''' Solutions de la compétition en sécurité NorthSec 2014 sur les sujets de  XXE + SSRF, WAF Bypass, Xpath Injection, DOM Injection, HTTP Only Flag bypass et contournement de captchas. Une bonne façon d'apprendre sur ces failles que vous étiez ou non un participant de la compétition.&lt;br /&gt;
*'''MESSAGE DU PRÉSENTATEUR:''' Vous voyez Rao dans votre soupe? Vous voulez une solution pour un XSS avec des cookies http only? Les captchas illisibles sont un problème? Assistez à la présentation de l'OWASP!&lt;br /&gt;
*'''BIO:''' Laurent Desaulniers est un passionné de sécurité informatique. Il a présenté au Hackfest, au colloque RSI, à OWASP et est challenge designer à NorthSec. M. Desaulniers détient les certifications CISSP, CISM, CISA et OSCP.&lt;br /&gt;
*'''QUAND:''' 26 mai à 18h00&lt;br /&gt;
*'''OÙ:''' Local PK-1140 - Pavillon Président-Kennedy 201, Avenue du Président-Kennedy, J2X 3Y7&lt;br /&gt;
*'''INSCRIPTION:''' https://www.eventbrite.ca/e/owasp-montreal-26-mai-recapitulatif-des-challenges-northsec-tickets-11724413035&lt;br /&gt;
*'''WEBCAST:''' https://www.youtube.com/watch?v=P8_V3RI1Ru4&lt;br /&gt;
*'''ÉQUIPE ACADÉMIQUE''' AGEEI-UQAM - http://www.ageei.org/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
&lt;br /&gt;
 18:00-18:30 Réseautage&lt;br /&gt;
 18:30-18:35 Mot de bienvenue par le leader du chapitre (Jonathan M.)&lt;br /&gt;
 18:35-19:30 Présentation principale : Récapitulatif des challenges NorthSec&lt;br /&gt;
 19:30-20:00 Période de questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Ageeilogo.jpg|200px|link=http://www.ageei.org/]]&lt;br /&gt;
[[Image:2397_nsec_Logo_500-250.png|200px|link=http://nsec.io/]]&lt;br /&gt;
&lt;br /&gt;
== Networking with infosec communities - April 21st ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''RÉSUMÉ:''' En collaboration avec Montréhack, mtlsec et NorthSec, nous organisons une soirée réseautage dans un pub du centre-ville. Du plaisir garanti avec les membres de plusieurs communautés infosec de Montréal!&lt;br /&gt;
&lt;br /&gt;
*'''ABSTRACT:''' In collaboration with Montréhack, mtlsec and NorthSec, we are organizing a networking evening in a pub downtown. Fun guaranteed with the other security communities in Montreal!&lt;br /&gt;
&lt;br /&gt;
*'''QUAND:''' 21 Avril 2014&lt;br /&gt;
*'''WHEN:''' April 21st 2014&lt;br /&gt;
&lt;br /&gt;
*'''OÙ/WHERE:''' BENELUX - Brasserie Artisanale 245 Sherbrooke St W Montreal, QC H2X 1X7&lt;br /&gt;
&lt;br /&gt;
*'''INSCRIPTION/REGISTRATION:''' https://www.eventbrite.ca/e/montrehack-avril-april-northsec-pre-party-tickets-11232307133&lt;br /&gt;
&lt;br /&gt;
*'''PARTENAIRES/PARTNERS:''' Montréhack http://montrehack.ca/ - mtlsec http://blog.mtlsec.com/ - NorthSec https://www.nsec.io/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
  18:00-21:00 Networking&lt;br /&gt;
  21:00-23:59 Remember to drink responsibly!&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - March 27th - Panel Compétition en sécurité NorthSec ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Présentation sous forme de panel - venez poser vos questions!'''&lt;br /&gt;
&lt;br /&gt;
*'''RÉSUMÉ:''' Les compétitions de type Capture the Flag (CTF) sont un moyen pour les professionnels et amateurs de sécurité informatique de mettre leurs talents à l'épreuve. NorthSec est une compétition Montréalaise annuelle en sécurité appliquée, qui aura lieu cette année au Marché Bonsecours de Montréal le 25, 26 et 27 avril prochain. Elle vise à augmenter le niveau technique des professionnels de la sécurité au Québec, ainsi que de permettre à ses acteurs les plus talentueux de se démarquer.&lt;br /&gt;
*'''DÉTAILS:''' Le panel de jeudi, sous la forme d'un échange convivial entre les organisateurs de l'évènement et de ses participants, abordera des thèmes variés comme l'écriture de bon défis, l'infrastructure, la logistique, les inattendus, un bilan de 2013 et tout ça en passant par de savoureuses annecdotes (on l'espère). Venez en grand nombre toucher à ces légendes de la scène infosec montréalaise!&lt;br /&gt;
*'''PANÉLISTES:''' Gabriel Tremblay, François Proulx, Laurent Desaulniers, Stéphane Graber&lt;br /&gt;
*'''ANIMATEUR:''' Olivier Bilodeau&lt;br /&gt;
*'''QUAND:''' 27 mars 2014&lt;br /&gt;
*'''OÙ:''' Salle M-1510, École Polytechnique de Montréal, 2500 chemin de Polytechnique, Montréal (Québec) H3T 1J4, pavillon Lassonde&lt;br /&gt;
*'''INSCRIPTION:''' https://www.eventbrite.ca/e/owasp-montreal-27-mars-panel-competition-en-securite-northsec-tickets-10918436337&lt;br /&gt;
*'''ÉQUIPE ACADÉMIQUE:''' Polytechnique - Polyhack http://polyhack.org/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Mot de bienvenue par le leader du chapitre (Jonathan Marcil)&lt;br /&gt;
  18:30-20:00 Présentation principale : Panel NorthSsec&lt;br /&gt;
&lt;br /&gt;
[[Image:Polyhack.png‎‎|200px|link=http://polyhack.org/]]&lt;br /&gt;
[[Image:LogoPolytechnique.gif|link=http://www.polymtl.ca/]]&lt;br /&gt;
[[Image:2397_nsec_Logo_500-250.png|200px|link=http://nsec.io/]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - February 25th - Proven Strategies for Web Application Security ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/proven-strategies-for-web-application-security-by-justin-c-klein-keane]] [https://speakerdeck.com/owaspmontreal/proven-strategies-for-web-application-security-by-justin-c-klein-keane See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Justin C. Klein Keane&lt;br /&gt;
*'''ABSTRACT:''' The rising dominance of the web as an application delivery platform has focused attacker attention squarely on the security of dynamic web applications. Application security is a complex, and shifting, field. Learn about tested and successful techniques to build safer applications, find flaws before they become vulnerabilities, and deploy applications that can detect, and resist attack.&lt;br /&gt;
*'''BIO:''' Justin C. Klein Keane is a security engineer and chapter leaders of OWASP in Philadelphia. For over a decade Justin has worked as a trainer, coder, and exploit developer. Justin is currently writing a book for NoStarch Press on hacking, speaks regularly at conferences, holds a masters degree in information technology from the University of Pennsylvania and is credited with hundreds of application vulnerability discoveries.&lt;br /&gt;
*'''WHEN:''' February 25th 2014&lt;br /&gt;
*'''WHERE:''' Ecole de technologie superieure, 1100 Notre-Dame Street West, Montreal, Room: A-1150&lt;br /&gt;
*'''REGISTRATION:''' http://owaspmtljan2014.eventbrite.ca&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/proven-strategies-for-web-application-security-by-justin-c-klein-keane&lt;br /&gt;
*'''ACADEMIC PARTNER:''' ETS - DCI http://dciets.com/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Welcome speech by Chapter Leader (Jonathan Marcil)&lt;br /&gt;
  18:30-20:00 Main session and open discussion: Proven Strategies for Web Application Security&lt;br /&gt;
  20:00-...   End of the meeting in a pub&lt;br /&gt;
&lt;br /&gt;
[[Image:Dciets.png‎‎‎|100px|link=http://dciets.com/]]&lt;br /&gt;
[[Image:Logo_ets.png|link=http://www.etsmtl.ca/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - January 28th - Latest trends in Mobile Security ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/8qPyKj4FKgY]] [https://youtu.be/8qPyKj4FKgY Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/latest-trends-in-mobile-security-by-francois-proulx]] [https://speakerdeck.com/owaspmontreal/latest-trends-in-mobile-security-by-francois-proulx See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Francois Proulx&lt;br /&gt;
*'''ABSTRACT:''' Last AppSecUSA 2013 had a great line up of talks, especially regarding mobile applications. This session will be covering all the hottest presentations about mobile security by doing an overview from what see saw at AppSecUSA, all with some slides and snippets of presentations that was recorded at the event. Discussion will be encouraged within the audience as this will be more a dynamic event than a regular talk.&lt;br /&gt;
*'''BIO:''' François Proulx is a senior mobile application developer who has worked on dozens of iOS applications since the very beginning of the Apple iOS platform. Over the past few years he has switched his focus to security. He spends a lot of his free time participating in Capture the Flag events (CTFs) and organizing the NorthSec security competition.&lt;br /&gt;
*'''WHEN:''' January 28th 2014&lt;br /&gt;
*'''WHERE:''' UQAM Room PK-1705, Pavillon Président-Kennedy (the big boat at Place des Arts) - 201 Avenue du Président-Kennedy  J2X 3Y7&lt;br /&gt;
*'''REGISTRATION:''' http://owaspmtl-mobilesecurity.eventbrite.ca&lt;br /&gt;
*'''SLIDES/CONTENT:''' [http://www.youtube.com/playlist?list=PLQtB2ug5xmvaQ9jeRWV53-F_T555GQfhW YouTube playlist]&lt;br /&gt;
*'''SPONSOR:''' Academic partner AGEEI-UQAM - http://www.ageei.org/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Welcome speech by Chapter Leader (Jonathan M.)&lt;br /&gt;
  18:30-20:00 Main session and open discussion: Mobile Security&lt;br /&gt;
  20:00-...   End of the meeting in a pub&lt;br /&gt;
&lt;br /&gt;
[[Image:Ageeilogo.jpg|200px|link=http://www.ageei.org/]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Presentations For Download  ====&lt;br /&gt;
&lt;br /&gt;
[http://www.owasp.org/images/0/0d/20100209mstechdaysowaspasvssgiv01-12657916463819-phpapp02.ppt OWASP ASVS] by Sebastien Gioria (09/03/2010) &lt;br /&gt;
&lt;br /&gt;
[http://www.ph-il.ca/slides/afup__authetification_forte.pdf Authentification Forte] by Philippe Gamache (02/02/2010) &lt;br /&gt;
&lt;br /&gt;
[http://www.opensamm.org/downloads/OpenSAMM-1.0.ppt Software Assurance Maturity Model (OpenSAMM)] by Pravir Chandra (03/11/2009) &lt;br /&gt;
&lt;br /&gt;
[http://www.owasp.org/images/d/de/Owasp-montreal-sept-17h-2009-justin-foster.pdf Crossing the Border – Javascript Exploits] by Justin Foster (17/09/2009) &lt;br /&gt;
&lt;br /&gt;
[http://www.owasp.org/images/c/c2/ALaughRIAt.pdf A Laugh RIAt] by Rafal Los (07/04/2009) &lt;br /&gt;
&lt;br /&gt;
[https://www.owasp.org/images/e/eb/OWASP-Montreal-24022009-RobLabbe.pptx Microsoft Security Development Lifecycle for IT] by Rob Labbe (24/02/2009) &lt;br /&gt;
&lt;br /&gt;
[https://www.owasp.org/images/3/39/OWASP-Montreal-24022009-EN.pdf OWASP Goal and Top Ten 2007 for Managers - French version] by Benoit Guerette (24/02/2009)&lt;br /&gt;
&lt;br /&gt;
Newer presentations are available on [https://speakerdeck.com/owaspmontreal Speaker Deck]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Circle_owasp_logo_nowhitebackground.png|200px]]&lt;br /&gt;
&lt;br /&gt;
= OWASP Foundation / Mission OWASP    = &lt;br /&gt;
OWASP Foundation ([https://docs.google.com/a/owasp.org/presentation/d/10wi1EWFCPZwCpkB6qZaBNN8mR2XfQs8sLxcj9SCsP6c/edit?usp=sharing Overview Slides]) is a professional association of [[Membership | global members]] and is open to anyone interested in learning more about software security. Local chapters are run independently and guided by the [[Chapter_Leader_Handbook]].  As a [[About_OWASP | 501(c)(3)]] non-profit professional association your support and sponsorship of any meeting venue and/or refreshments is tax-deductible. Financial contributions should only be made online using the authorized online chapter donation button.  To be a &amp;lt;b&amp;gt;SPEAKER&amp;lt;/b&amp;gt; at ANY OWASP Chapter in the world simply review the [[Speaker_Agreement | speaker agreement]] and then contact the local chapter leader with details of what OWASP PROJECT, independent research or related software security topic you would like to present on.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;La fondation OWASP est une [https://www.owasp.org/index.php/Membership association de professionnels] et elle est ouverte à tout intervenant intéressé à en apprendre davantage sur la sécurité applicative. Les chapitres locaux (dont celui de Montréal) sont gérés de façon indépendante et selon un [https://www.owasp.org/index.php/Chapter_Leader_Handbook manuel de directives à respecter].   &lt;br /&gt;
Toute contribution financière au chapitre peut être faite en ligne en utilisant l’icône prévu à cet effet. Pour être conférencier au sein de n’importe quel chapitre à l’échelle mondiale, vous n’avez qu’à prendre connaissance du document [https://www.owasp.org/index.php/Speaker_Agreement &amp;quot;entente avec les conférenciers – speaker agreement&amp;quot;] et à joindre le responsable du chapitre Montréal avec un descriptif du sujet que vous aimeriez aborder et s’il est relié à un projet OWASP, à de la recherche indépendante ou encore le sujet en particulier, concernant la sécurité applicative, que vous souhaitez aborder.&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== [[Image:Circle_owasp_logo_nowhitebackground.png|128px]] Montreal OWASP Team == &lt;br /&gt;
&lt;br /&gt;
Scope of the team is to discuss and plan local activities and meetings &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Chapter Leaders ===&lt;br /&gt;
&lt;br /&gt;
* [mailto:anne.gauthier@owasp.org Anne Gauthier], President/Présidente&lt;br /&gt;
* [mailto:michel.bourque{at}owasp.org Michel Bourque], Chapter coordinator and marketing manager/Coordination et Marketing&lt;br /&gt;
* [mailto:hugo.genesse(at)owasp.org Hugo Genesse], Web content and production manager/Site internet et Production &lt;br /&gt;
* [mailto:olivier.arteau(at)owasp.org Olivier Arteau], Logistic manager/Logistique&lt;br /&gt;
&lt;br /&gt;
==== Chapter leader history ====&lt;br /&gt;
*2008-2010 - Benoit Guerette, founder and chapter leader&lt;br /&gt;
*2011-2012 - Philippe Gamache, chapter leader (vice chapter-leader since 2010)&lt;br /&gt;
*2013-2015 - Jonathan Marcil, chapter leader&lt;br /&gt;
*2016-... - Anne Gauthier, Michel Bourque, Marius Popescu, Hugo Genesse, Olivier Arteau&lt;br /&gt;
&lt;br /&gt;
==== Old board members ====&lt;br /&gt;
*Philippe Pépos Petitclerc&lt;br /&gt;
*Michael Robillard&lt;br /&gt;
*Benoit Guerette (logistics 2015)&lt;br /&gt;
*Alexandre Rimthong&lt;br /&gt;
*Mathieu Binette&lt;br /&gt;
*Sean Coates&lt;br /&gt;
*Jean-Marc Robert&lt;br /&gt;
*Philippe Blondin&lt;br /&gt;
*Benoit Guerette (founder)&lt;br /&gt;
*Laurent Desaulniers&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;headertabs&amp;gt;&amp;lt;/headertabs&amp;gt; &lt;br /&gt;
__NOTOC__ &lt;br /&gt;
[[Category:Canada]]&lt;/div&gt;</summary>
		<author><name>Svieg</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=Montr%C3%A9al&amp;diff=234271</id>
		<title>Montréal</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=Montr%C3%A9al&amp;diff=234271"/>
				<updated>2017-10-10T19:24:10Z</updated>
		
		<summary type="html">&lt;p&gt;Svieg: /* Cas d'attaques vécus : Internet des objets (IOT) - Attaques DDoS */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Welcome &amp;amp; Bienvenue to the OWASP Montréal chapter ==&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:OWASP-Montreal-Logo.png|Logo OWASP Montréal]]&lt;br /&gt;
&lt;br /&gt;
The OWASP Foundation was established in 2001 as an open community and software security resource. Since then, OWASP has grown to be globally recognized as a credible source for application security standards. &amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
OWASP is an open community dedicated to enabling organizations to conceive, develop, acquire, operate, and maintain applications that can be trusted. All of the OWASP tools, documents, forums, and chapters are free and open to anyone interested in improving application security. We advocate approaching application security as a people, process, and technology problem because the most effective approaches to application security include improvements in all of these areas. &amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
OWASP is open to anyone. Anyone can attend OWASP's vendor agnostic local chapter meetings, participate in regional and global conferences, and contribute to the many OWASP projects. And anyone can start a new project, form a new chapter, or lend their expertise to help an OWASP Global Committee.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt;On parle français aussi ! Le chapitre de Montréal organise plusieurs activités gratuites afin de partager les connaissances en sécurité applicative avec la communauté de développeurs et gestionnaires. Suivez-nous sur les réseaux sociaux pour connaître les dates des conférences du midi et des workshops !&amp;lt;/b&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Top documentation from OWASP includes: &lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/index.php/Top_10_2013-Top_10 OWASP TOP 10 : The Ten Most Critical Web Application Security Risks]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/images/3/33/OWASP_Application_Security_Verification_Standard_3.0.1.pdf OWASP ASVS : Application Security Verification Standard]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/images/5/52/OWASP_Testing_Guide_v4.pdf OWASP Testing Guide : Penetration Testing Framework]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/images/7/78/OWASP_AlphaRelease_CodeReviewGuide2.0.pdf OWASP Code Review Guide : Source Code Analysis Framework]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/index.php/OWASP_Cheat_Sheet_Series OWASP Cheat Sheet : Best practices guidelines for developers]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org OWASP Global]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Chapter Leaders / Responsables du chapitre ===&lt;br /&gt;
&lt;br /&gt;
* [mailto:anne.gauthier@owasp.org Anne Gauthier], President/Présidente&lt;br /&gt;
* [mailto:michel.bourque{at}owasp.org Michel Bourque], Chapter coordinator and marketing manager/Coordination et Marketing&lt;br /&gt;
* [mailto:hugo.genesse(at)owasp.org Hugo Genesse], Web content and production manager/Site internet et Production &lt;br /&gt;
* [mailto:olivier.arteau(at)owasp.org Olivier Arteau], Logistic manager/Logistique&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Special thanks to / Remerciements : &lt;br /&gt;
* Simon Lacasse, Web content / Site internet&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;b&amp;gt; Reach our chapter / Joindre le chapitre &amp;lt;/b&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Follow OWASP's Montreal chapter's activities through social medias, register to events, watch the previous presentations and more! &lt;br /&gt;
&lt;br /&gt;
Suivez les activités du chapitre OWASP Montréal via les réseaux sociaux, inscrivez-vous aux activités, visualisez les anciennes présentations et plus encore! &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;b&amp;gt;[http://lists.owasp.org/mailman/listinfo/owasp-montreal Click here] to join the local chapter mailing list.&lt;br /&gt;
&amp;lt;br /&amp;gt;[http://lists.owasp.org/mailman/listinfo/owasp-montreal Inscrivez-vous ici] à la liste de courriels du chapitre afin de recevoir les dernières nouvelles!&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Want to be part of the community ? &lt;br /&gt;
Devenez membre de notre communauté ! &lt;br /&gt;
[https://www.owasp.org/index.php/Membership_Map Click here / Cliquer ici]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Eb_press_little.gif‎|OWASP Montreal Eventbrite|link=http://owaspmontreal.eventbrite.ca/]] &lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[Image:Yt-brand-standard-logo-630px.png‎|128px|YouTube OWASP Montreal Channel|link=http://www.youtube.com/owaspmontreal]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]   &lt;br /&gt;
[[Image:Speakerdecklogo.png‎|Slides of OWASP Montreal on SpeakerDeck |link=https://speakerdeck.com/owaspmontreal]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Twitter-bird-cropped-onwhite.png|@owaspmontreal on Twitter|link=https://twitter.com/owaspmontreal]]&lt;br /&gt;
[[Image:FacebookSquareLogo.png|OWASP Montreal Facebook page|link=https://www.facebook.com/owasp.montreal]]&lt;br /&gt;
[[Image:LinkedinSquareLogo.png|OWASP Montreal on LinkedIn|link=https://www.linkedin.com/groups/1379007/profile]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
&lt;br /&gt;
== Sponsorship &amp;amp; Membership / Commandite &amp;amp; Adhésion ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Btn_donate_SM.gif|link=http://www.regonline.com/donation_1044369]] to this chapter or become a local chapter supporter.&lt;br /&gt;
&lt;br /&gt;
Or consider the value of [[Membership | Individual, Corporate, or Academic Supporter membership]]. Ready to become a member? [[Image:Join_Now_BlueIcon.JPG|75px|link=https://myowasp.force.com/]]&lt;br /&gt;
&lt;br /&gt;
[http://www.regonline.com/donation_1044369 Donnez] au chapitre ou devenez commanditaire du chapitre local! &lt;br /&gt;
&lt;br /&gt;
[https://myowasp.force.com/ Devenez membre !] Pour en savoir davantage sur les avantages d’une adhésion individuelle, corporative ou en tant qu’institution d’enseignement, [https://www.owasp.org/index.php/Membership cliquez ici]. &lt;br /&gt;
&lt;br /&gt;
[[Category:OWASP Chapter]]&lt;br /&gt;
&lt;br /&gt;
== Chapter Supporters / Commanditaires du chapitre ==&lt;br /&gt;
&lt;br /&gt;
[https://www.owasp.org/images/9/91/OWASP_Membership_Flyer_Montreal.png All details available here / Pour tous les détails] [[File:Chapter-supporter-owasp-montreal.png|200px|link=]] &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Platinum / Platine ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Gosecure-2.png|GoSecure|link=http://www.gosecure.ca/]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[File:Desjardins2-400x400.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Gold / Or ===&lt;br /&gt;
&lt;br /&gt;
[[Image:PM_SCADA_Logo_Gris_Cybersecurite_FR.png|PM SCADA|link=http://pmscada.ca/en/]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Lunch &amp;amp; Learn / Workshops 2017 =&lt;br /&gt;
&lt;br /&gt;
== Pourquoi un hacker peut-il contourner les mesures et solutions de sécurité... ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hamilton-septembre-2017-1.JPG  ]]&lt;br /&gt;
[[Image:Hamilton-septembre-2017-2.JPG ]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 September 18th 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
OWASP dans le cadre des Midis conférence est heureux de lancer la saison 2017-2018 en accueillant, M. Charles F. Hamilton.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Notre conférencier viendra brosser un tableau des différents éléments qui expliquent pourquoi les mesures et les solutions de sécurité en générales qui ont la fonction de protéger les données, les applications, les réseaux ou les équipements critiques sont si souvent contournées ou carrément inefficaces contre les attaques ciblées.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Biographie :&amp;lt;br /&amp;gt;&lt;br /&gt;
Charles F. Hamilton est un consultant en sécurité et membre d’équipe « Red Team » de calibre international. Il se spécialise en test d’intrusion et la recherche de solution proactive de sécurité.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Cas d'attaques vécus : Internet des objets (IOT) - Attaques DDoS ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Cas_dattaques_vecus-r.jpg  ]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 June 19th 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
Pour clore la saison printanière 2017, OWASP Montréal est fier d'accueillir au Midi Conférence, M. Christian Shink qui fera un survol de cas d'attaques vécus, des techniques utilisées et des acteurs impliqués dans ces attaques.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
L'incorporation généralisée de dispositifs «intelligents» dans les objets de la vie de tous les jours modifie la façon dont les gens et les machines interagissent les uns avec les autres. Cette incorporation offre une promesse d'une meilleure qualité de vie, une meilleure efficacité. En contrepartie, leur déploiement introduit également des vulnérabilités à la fois dans l'infrastructure qu'ils soutiennent et sur lesquels ils comptent, ainsi que dans les processus qu'ils guident. Que ce soit au niveau applicatif ou des infrastructures, ces vulnérabilités sont exploitées par des acteurs malicieux pour générer des attaques de déni de service massives et sophistiquées. Nous tenterons également de tirer des leçons afin de tenter de minimiser ce type d'attaques dans le futur.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Christian Shink possède plus d’une dizaine d’années d’expérience en développement et sécurité d’applications. Avant de se joindre à Radware, Christian était à l’emploi d'une firme conseil où il a conseillé de nombreuses entreprises, dont de grandes banques américaines et Casinos. Il détient une certification CSSLP et est membre de l'ordre des ingénieurs du Québec.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== HOW TO! Threat Modeling Toolkit ==&lt;br /&gt;
&lt;br /&gt;
[[Image:OWASPMtl-JonathanMarcil-1.jpg]]&lt;br /&gt;
[[Image:OWASPMtl-JonathanMarcil-3.jpg]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/threat-modeling-toolkit]] [https://speakerdeck.com/owaspmontreal/threat-modeling-toolkit See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 May 23rd, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Shopify Montreal&lt;br /&gt;
&lt;br /&gt;
Threat Modeling is a great way to analyze security early in software development by structuring possible attacks, bad actors and countermeasures over a broad view of the targeted system. This talk will describe basic components of a threat model and how to use them effectively.&lt;br /&gt;
Threat Intelligence is where you gather knowledge about the environment and business assets to determine what are the actual threats. But how do you reconcile that with the current architecture in a useful manner?&lt;br /&gt;
The toolkit presented in this talk will enable you to systematically structure related information using graphical notations such as flow diagram and attack tree. In case you are wondering where to start in your organization, a quick lightweight risk rating methodology will also be proposed.&lt;br /&gt;
And in the end, you’ll see how we can all tie those together and get threat modeling to a point where it’s an efficient application security activity for communication. Doing this will prevent security reviews from missing important things even when chaos prevails during the realization of a project.&lt;br /&gt;
Modeling concepts will be demonstrated with an actual IoT device used as example.&lt;br /&gt;
Presentation will be done in english.&lt;br /&gt;
&lt;br /&gt;
Speaker Bio:&lt;br /&gt;
Jonathan Marcil is the former chapter leader of OWASP Montreal and is now Senior Application Security Engineer at Blizzard Entertainment in beautiful Orange County, California.&lt;br /&gt;
Jonathan has been involved with OWASP for many years and has been behind the Media Project which gathered and promoted AppSec conferences video content in the official OWASP YouTube channel. He was also part of NorthSec CTF event as a challenge designer specialized in Web and imaginative contraptions.&lt;br /&gt;
He is passionate about Application Security and enjoys architecture analysis, code review, threat modeling and debunking security tools. He holds a diploma in Software Engineering from ÉTS Montreal and has more than 15 years of experience in Information Technology and Security.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Merci à nos précieux commanditaires !&lt;br /&gt;
&lt;br /&gt;
== Security Testing: Unlocking the Benefits of a Hybrid Approach ==&lt;br /&gt;
[[Image:Security testing hybrid approach-r 3.jpg    ]]&lt;br /&gt;
[[Image:Security testing hybrid approach-r 4.jpg    ]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/hybrid-approach-to-security-testing]] [https://speakerdeck.com/owaspmontreal/hybrid-approach-to-security-testing See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 April 24th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
As part of their defensive efforts, businesses commonly commission cybersecurity assessments of their web applications; with the aim of identifying any weaknesses in the security controls and ensuring a continually strong cybersecurity posture of their systems.&lt;br /&gt;
&lt;br /&gt;
The classical approach of either secure code review (white box) or penetration testing (black box) assessment have proven to be effective in securing of web applications. The new trend, however, is moving towards the combination of these two approaches; expert consensus is rapidly recognizing the advantages of using a hybrid approach. When applied properly, a hybrid approach can build on the strengths of both white and black box testing, while compensating for their individual shortcomings.&lt;br /&gt;
&lt;br /&gt;
In this presentation, we will examine the details of secure code review and penetration testing, and run demos to contrast their respective strengths and weaknesses. We will also examine why a hybrid approach can produce more complete and relevant assessment results. To conclude, we will cover proven approaches, and practical techniques, on how you can start leveraging a hybrid approach to web application assessments today.&lt;br /&gt;
&lt;br /&gt;
Anne Gauthier is an application security analyst at GoSecure. Anne is also the president of the Montreal Chapter of OWASP – the industry standard for web application security. With a penetration testing background, she specializes in secure code reviews and in helping companies to improve their software development lifecycle (SDLC) according to industry best practices. Anne is CSSLP, GWAPT and GSSP-JAVA certified. She obtained a Software Engineering bachelor’s degree from Ecole de Technologie Supérieure in Montréal and is now pursuing a Master of Engineering (MEng) degree in Information Systems Security at Concordia University. She is the author of the Project 201 Security blog.&lt;br /&gt;
&lt;br /&gt;
Merci à nos précieux commanditaires !&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;HOW-TO&amp;quot; NIGHT ! Tout sur les CTFs (Capture The Flag) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Howto_ctf.jpg]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://docs.google.com/presentation/d/1zEsCcX-Nvq8Nz0k-B1zHejCDNT2oGZx8oUBgMbvvMM0/edit#slide=id.p ]] [https://docs.google.com/presentation/d/1zEsCcX-Nvq8Nz0k-B1zHejCDNT2oGZx8oUBgMbvvMM0/edit#slide=id.p See the slides / Voir la présentation (Laurent Desaulniers)]&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://docs.google.com/presentation/d/1c1P1d2mKe767j1Y0V9cK6De5cpnK4I7GI-ORiodbg1A/edit#slide=id.p ]] [https://docs.google.com/presentation/d/1c1P1d2mKe767j1Y0V9cK6De5cpnK4I7GI-ORiodbg1A/edit#slide=id.p See the slides / Voir la présentation (Charles Hamilton)]&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=http://obilodeau.github.io/slides/2017-04-04_how-not-to-suck-at-ctfs/ ]] [http://obilodeau.github.io/slides/2017-04-04_how-not-to-suck-at-ctfs/ See the slides / Voir la présentation (Olivier Bilodeau)]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 April 4th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Shopify&lt;br /&gt;
&lt;br /&gt;
Cette nouvelle soirée &amp;quot;How-To&amp;quot; Night d'OWASP Montréal vise à présenter les CTFs (une compétition Capture The Flag) et aider les équipes à démarrer et à continuer à évoluer dans leurs pratique de la cyber sécurité pratique. L'objectif est d'outiller les participants en leur fournissant des ressources techniques et des contacts afin de les aider à progresser.&lt;br /&gt;
&lt;br /&gt;
Les éléments discutés seront:&lt;br /&gt;
&lt;br /&gt;
- Composition optimale d’une équipe : Fonctionnement d’une équipe de CTF et les principaux rôles (chef d’équipe, cryptographie, application web, rétro ingénierie et les causes perdues).&lt;br /&gt;
&lt;br /&gt;
- Pourquoi faire des CTFs? Discussion sur les différents styles (jeopardy, attack/defense, etc.), quels sont les problèmes fréquemments rencontrés + plusieurs anecdotes intéressantes (et drôles).&lt;br /&gt;
&lt;br /&gt;
- Trucs de Mr. Unikoder : Le créateur du fameux site ringzer0team, soit un des plus gros sites pour apprendre la résolution de problèmes de CTF (https://ringzer0team.com/) Apprenez des trucs du meilleur, sur comment débuter et interpréter un challenge web, binaire et crypto avec des trucs réels du métier.&lt;br /&gt;
&lt;br /&gt;
Matériel requis :&lt;br /&gt;
&lt;br /&gt;
    Votre légendaire enthousiasme&lt;br /&gt;
&lt;br /&gt;
Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
&lt;br /&gt;
Places limitées. Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Shopify pour l'événement.&lt;br /&gt;
&lt;br /&gt;
Présentateurs :&lt;br /&gt;
&lt;br /&gt;
Charles Hamilton, Senior Consultant chez Mandiant, FireEye, Inc.&lt;br /&gt;
&lt;br /&gt;
Olivier Bilodeau, Cybersecurity Research Lead at GoSecure&lt;br /&gt;
&lt;br /&gt;
Laurent Desaulniers, Senior Security Solution Specialist at Bell Canada&lt;br /&gt;
&lt;br /&gt;
== NorthSec - Applied Security Event ==&lt;br /&gt;
[[Image:Nsec_2017_midi_conf.jpg]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/northsec-applied-security-event]] [https://speakerdeck.com/owaspmontreal/northsec-applied-security-event See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 April 4th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
NorthSec: La plus grande compétition et conférence en cyber sécurité au Canada&lt;br /&gt;
&lt;br /&gt;
NorthSec est un organisme sans but lucratif qui organise une conférence et une compétition de sécurité de type &amp;quot;Capture-The-Flag&amp;quot; (CTF) et des formations. Avec plus de 400 participants présents sur le site pour la compétition, c’est la plus grande compétition du genre au monde.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
La conférence, dans sa 3e année, attire des présentateurs internationaux avec du contenu technique exclusif. L’ajout des séances de travail (workshops) devrait plaire aux plus chevronnés des binaires.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Des formations de 3 jours sont offertes avant la conférence: &amp;quot;Advanced Web Application Security&amp;quot; par Philippe Arteau et &amp;quot;Malware and Memory Forensics&amp;quot; par Michael Ligh, co-auteur des livres &amp;quot;Malware Analyst Cookbook&amp;quot; et &amp;quot;The Art of Memory Forensics&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
NorthSec est situé au Marché Bonsecours dans le Vieux-Port de Montréal au printemps du 15 au 21 mai 2017.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
La présentation couvrira:&lt;br /&gt;
&lt;br /&gt;
- Le plan pour 2017&amp;lt;br /&amp;gt;&lt;br /&gt;
- Ce qui différencie NorthSec&amp;lt;br /&amp;gt;&lt;br /&gt;
- Comment équilibrer une compétition pour les débutants et les experts&amp;lt;br /&amp;gt;&lt;br /&gt;
- Comment bâtir une infrastructure basée sur les conteneurs qui gère 50 équipes dans quelques serveurs sans qu’ils ne se partagent de machines virtuelles&amp;lt;br /&amp;gt;&lt;br /&gt;
- Comment faire du pain au levain à grande échelle&amp;lt;br /&amp;gt;&lt;br /&gt;
- Présentation de quelques défis et solutions&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Les présentateurs:&lt;br /&gt;
&lt;br /&gt;
- Gabriel Tremblay, Président, Delve Labs&amp;lt;br /&amp;gt;&lt;br /&gt;
- Olivier Bilodeau, VP Formations, Co-fondateur MontréHack, GoSecure&amp;lt;br /&amp;gt;&lt;br /&gt;
- Pierre-David Oriol, VP Conférences, Delve Labs&amp;lt;br /&amp;gt;&lt;br /&gt;
- Benoit Guérette, VP Partenaires, Desjardins&amp;lt;br /&amp;gt;&lt;br /&gt;
- Laurent Desaulniers, Tisserand de drapeaux, Bell Canada&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Merci à nos précieux commanditaires !&lt;br /&gt;
&lt;br /&gt;
== Sécurité des applications : Les fondements ==&lt;br /&gt;
[[Image:Tanya.jpeg]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/securite-des-applications-les-fondements]] [https://speakerdeck.com/owaspmontreal/securite-des-applications-les-fondements See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 March 20th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
OWASP Montréal est fier d’accueillir au Midi Conférence du mois de mars, Mme Tanya Janca, Co-Leader du chapitre OWASP Ottawa et spécialiste de la sécurité applicative au sein du Gouvernement fédéral.&lt;br /&gt;
&lt;br /&gt;
La conférence « Les fondements de la sécurité des applications » sera présentée en anglais.&lt;br /&gt;
&lt;br /&gt;
Session Description : Everyone has heard about the problem; everyone is “getting hacked”. But what is the answer? From scanning your code with a vulnerability scanner to red teaming exercises, developer education programs and bug bounties, this talk will take the audience through all the possibilities of an extensive application security program, with a detailed explanation of each part.&lt;br /&gt;
&lt;br /&gt;
Bio : Tanya Janca is an application security evangelist, a web application penetration tester and vulnerability assessor, a secure code reviewer, an ethical hacker, the Co-Leader of the OWASP Ottawa chapter, and has been developing software since the late 90’s. She has worn many hats and done many things, including; Custom Apps, Ethical Hacking, COTS, Incident Response, Enterprise Architect, Project and People Management, and even Tech Support. She is currently helping the Government of Canada secure their web applications.&lt;br /&gt;
&lt;br /&gt;
Merci à notre commanditaire principal de cet événement: Ubitrak!&lt;br /&gt;
&lt;br /&gt;
== WORKSHOP ! Server Side Template Injection (SSTI) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-okiok-SSTI-r.jpg | WORKSHOP ! Server Side Template Injection (SSTI) ]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/workshop-server-side-template-injection-ssti]] [https://speakerdeck.com/owaspmontreal/workshop-server-side-template-injection-ssti See the slides / Voir la présentation]&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 22 Février 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Shopify Montréal&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
OWASP Montreal vous invite à un atelier portant sur la sécurité des applications web supportant les moteurs de template (Template Engine). Le principe de séparation entre la présentation du site (code HTML statique) et de son contenu dynamique facilite la création de documents HTML et la capacité à modifier l'apparence du site sans mélanger le traitement et le rendu de la page. L'utilisation de moteurs de template amène de nouveaux enjeux de sécurité. Les vulnérabilités de type Server Side Template Injection (SSTI) sont exploitables à travers les données (non fiables) fournies par l'utilisateur et conduisent à l'exécution de code arbitraire (RCE) sur le serveur hébergeant l'application web.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ce workshop a pour but d'introduire cette classe de vulnérabilité à travers différents cas d'implémentation (php, java, python).&lt;br /&gt;
Nous verrons comment identifier et exploiter ces vulnérabilités et de quelle manière un attaquant peut &lt;br /&gt;
s'y prendre pour exécuter du code arbitraire sur le serveur afin d'en prendre le contrôle.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Niveau : Intermédiaire&amp;lt;br /&amp;gt;&lt;br /&gt;
Matériel requis :&lt;br /&gt;
* Votre portable&lt;br /&gt;
* Votre distribution Linux/Unix de votre choix&lt;br /&gt;
* Votre proxy Web de votre choix&lt;br /&gt;
&lt;br /&gt;
Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
Places limitées. Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Shopify pour l'événement.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Présentateur : Gérôme Dieu&amp;lt;br /&amp;gt;&lt;br /&gt;
Gérôme Dieu cumule plus de 7 années d’expérience en technologies de l’information et en sécurité. &lt;br /&gt;
Il œuvre à titre de conseiller senior en sécurité de l’information au sein de la firme OKIOK. Ces dernières années, il a acquis une expertise dans le domaine de la sécurité des applications web aussi bien d'un point de vue offensif que défensif. En plus de réaliser des tests d’intrusion pour des clients internationaux, Gérôme s’implique dans la recherche et développement afin de maintenir à la fine pointe de la technologie les tests d'intrusion et d'analyse de vulnérabilités. &amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Merci à Shopify d'héberger l'événement !&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Shopify Logo-r.png| Shopify | link=https://www.shopify.com/]]&lt;br /&gt;
== Le courriel en 2017 – risques et menaces pour tous ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Zero spam 2.jpg|Le courriel en 2017 – risques et menaces pour tous]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://www.youtube.com/watch?v=HX2vcijcCWw ]] [https://www.youtube.com/watch?v=HX2vcijcCWw Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 Le 23 janvier 2017 à midi&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
Monsieur Poellhuber nous brossera un tableau du phénomène grandissant du rançongiciels et de l'hameçonnage, personnification.&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
- Par les années passées, la menace courriel se résumait principalement en un fort volume de contenu simplement indésirable. Aujourd’hui la menace a passablement évolué. Quels sont les véritables risques actuels associés au courriel ? Rançongiciels, hameçonnage, personnification. Cette conférence présentera les nouveaux défis de sécurité pour les organisations qui doivent composer avec des attaques de plus en plus sophistiquées et de plus en plus ciblées tout en protégeant leur réputation. Des exemples biens réels, drôles et moins drôles seront disséqués pour bien dessiner l’ampleur de l’enjeu.&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
M. David Poellhuber, Chef de l’exploitation, ZEROSPAM Sécurité Inc&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note biographique :&amp;lt;br /&amp;gt;&lt;br /&gt;
Monsieur David Poellhuber oeuvre dans l’industrie de la sécurité informatique depuis quinze ans. Il a été conférencier dans plusieurs forums de sécurité au Canada et est maintenant reconnu comme une autorité en matière de sécurité du courriel. Il a fondé ZEROSPAM Sécurité en 2003, le premier service Québécois externalisé de sécurité du courriel infonuagique qui se distingue par sa convivialité, son efficacité et ses technologies de détection proactives.&amp;lt;br /&amp;gt;&lt;br /&gt;
Audience :  Généralistes et spécialistes de la sécurité des TI &lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Merci à Ubitrack pour le repas et à Desjardins d'héberger l'événement!&lt;br /&gt;
&lt;br /&gt;
[[Image:Ubitrak-r2.jpg|Ubitrak|link=http://www.ubitrak.com/fr/]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&lt;br /&gt;
== Effective XSS Mitigation ==&lt;br /&gt;
&lt;br /&gt;
[[Image:XSS mitigation.jpg | Effective XSS Mitigation ]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=http://slides.com/olivierarteau/xss-mitigation ]] [http://slides.com/olivierarteau/xss-mitigation See the slides / Voir la présentation]&lt;br /&gt;
&lt;br /&gt;
WHEN &lt;br /&gt;
 18 Janvier 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Google Montréal&lt;br /&gt;
&lt;br /&gt;
FRANÇAIS/ENGLISH&amp;lt;br /&amp;gt;&lt;br /&gt;
La mitigation de XSS a été un sujet important au cours des dernières années. Les navigateurs ont implémenté, en autre, deux fonctionnalités pour mitiger leur impact : l'entête &amp;quot;XSS-Protection&amp;quot; et l'entête &amp;quot;Content-Security-Policy&amp;quot;. Par contre, obtenir une mitigation contre les XSS efficace est souvent plus complexe que l'on pense. Cet atelier couvrira les deux entêtes. Il expliquera comme il est possible de contourner ces protections et ce qu'il est possible de faire pour se protéger. Des exercices de type &amp;quot;offensif&amp;quot; et &amp;quot;défensif&amp;quot; seront proposés.&lt;br /&gt;
Mitigation for XSS as been an important topic in the last few years. Browsers have implemented two main functionalities to help mitigate the impact of XSS : the &amp;quot;XSS-Protection&amp;quot; header and the &amp;quot;Content-Security-Policy&amp;quot; header. But, getting an effective XSS mitigation of those headers is trickier than it may seem. This workshop will cover both of those headers. It will explain how bypass of those protection work and what you can do about it. It will have both &amp;quot;defensive&amp;quot; exercises and &amp;quot;offensive&amp;quot; exercises.&lt;br /&gt;
Niveau : débutant/intermédiaire&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Matériel requis :&lt;br /&gt;
&lt;br /&gt;
Votre portable&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
&lt;br /&gt;
Places limitées. Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Google pour l'événement.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Présentateur : Olivier Arteau&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Olivier Arteau est un professionnel en sécurité informatique depuis quelques années et fait partie de l’équipe de test d’intrusion de Desjardins. Il est aussi un amateur de CTF qui a gagné à plusieurs reprises le CTF du NorthSec avec l’équipe HackToute et participe fréquemment à d’autres CTF avec l’équipe DCIETS.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Merci à Google d'héberger l'événement! &lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-zap-4-r.jpg | Google | link=https://www.google.ca/ ]]&lt;br /&gt;
&lt;br /&gt;
= Lunch &amp;amp; Learn / Workshops 2015-2016 =&lt;br /&gt;
&lt;br /&gt;
== WORKSHOP ! Top 10 OWASP - Unleash the threats ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-top10.jpg | WORKSHOP! Top 10 OWASP - Unleash the threats ]]&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 30 novembre 2016 de 17h30 à 20h30&lt;br /&gt;
WHERE&lt;br /&gt;
 Immunio @ WeWork&lt;br /&gt;
&lt;br /&gt;
De nos jours, la sécurité applicative est essentielle dans l’écosystème des entreprises de toutes tailles. Les vecteurs d’attaques sont multiples, les vulnérabilités de sécurité dans les applications peuvent être désastreuses et les impacts d’un « Hack » peuvent être irréversibles pour l’entreprise; vols de données sensibles, perte de réputation, perte de $$$$$, etc.&lt;br /&gt;
L’objectif du workshop est de comprendre la base sur les vulnérabilités de sécurité dans les applications et les techniques d’exploitation utilisées par les pirates informatiques, en plus de connaître les bonnes pratiques de développement en matière de sécurité applicative. &lt;br /&gt;
Avec l'aide de WebGoat, Damn Vulnerable Web Application et de Kali Linux, vous pourrez participer&lt;br /&gt;
à l'exploitation des applications et découvrir les techniques utilisées par les attaquants.&lt;br /&gt;
&lt;br /&gt;
Niveau : débutant&lt;br /&gt;
&lt;br /&gt;
Matériel requis :&lt;br /&gt;
 Votre portable&lt;br /&gt;
 Kali Linux&lt;br /&gt;
 La VM du workshop, envoyée aux participants&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
&lt;br /&gt;
Places très limitées (nb = 10). Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Immunio &amp;amp; WeWork pour l'événement.&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Présentateur : Christian Leclerc&lt;br /&gt;
&lt;br /&gt;
Christian est spécialisé en conception et développement de solutions web sécuritaires. Tout au long de sa carrière, il a acquis une vaste expertise sur plusieurs types de technologies et méthodologies, intégré la sécurité dans le cycle de développement d’applications, effectué des revues de code sécurité, déployé des outils d’analyse des vulnérabilités et mis en place des systèmes d’authentification. De plus, il a participé à la conception et au développement de solutions sécuritaires de pointe comme la signature électronique à l’aide d’une infrastructure à clé publique (PKI), les authentifications fortes, le Registre des consentements au don d'organes et de tissus (RDOQ.org) et la migration de plusieurs applications web vers un environnement SOA (Service Oriented Architecture). &lt;br /&gt;
&amp;lt;br&amp;gt;Merci à Immunio &amp;amp; WeWork d'héberger l'événement!&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:Immunio-horizontal-r.png|Immunio|link=https://www.immun.io/]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[Image:Wework-r.jpg|WeWork|link=https://www.wework.com/]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Histoire d'un Hack ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Histoire-dun-hack-r.jpg | Histoire d'un Hack ]]&lt;br /&gt;
&lt;br /&gt;
WHEN &lt;br /&gt;
 21 novembre 2016 à midi&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
Pour son activité du mois de novembre, OWASP Montréal propose à la communauté de la sécurité des TI et aux gestionnaires de faire l'autopsie d'une attaque de haute voltige sur un site web et des outils mis à la disposition par OWASP.&lt;br /&gt;
 &lt;br /&gt;
Bernard Bolduc cumule plus de 17 années d’expérience en technologies de l’information et en sécurité. Il œuvre à titre de conseiller senior en sécurité de l’information au niveau d’entreprise de classe nationale et internationale.&lt;br /&gt;
 &lt;br /&gt;
Bernard se spécialise en sécurité Unix, applicative et en gestion de la sécurité des télécommunications. Il combine ces expertises techniques afin d’obtenir des résultats probants et efficaces pour ces clients des secteurs bancaire, télécommunication et multimédias, de l’énergie ou des services publiques. Tout au long de sa carrière, Bernard s’est toujours maintenu à jour sur les dernières menaces de sécurité technologique et commerciale en assistant à des formations spécialisées et d'échanger avec un grand nombre de partenaires dans l'industrie de la sécurité.&lt;br /&gt;
 &lt;br /&gt;
La conférence débute à midi.&lt;br /&gt;
 &lt;br /&gt;
La conférence vous donne droit à 1 CPE et pour les 50 premières personnes, un lunch gratuit.&lt;br /&gt;
 &lt;br /&gt;
Merci à Desjardins d'héberger l'événement!&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Workshop ! Création de votre première extension OWASP ZAP (ou BurpSuite) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-zap-mix.jpg | Workshop ! Création de votre première extension OWASP ZAP (ou BurpSuite)]]&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 11 novembre 2016 de 18h à 21h&lt;br /&gt;
&lt;br /&gt;
WHERE &lt;br /&gt;
 Google Montréal&lt;br /&gt;
&lt;br /&gt;
OWASP Zed Attack Proxy (ZAP) est un scanneur de vulnérabilités et un outil de débogage HTTP. Ce type d'outil est crucial dans un test d'intrusion web et contient un lot intéressant de fonctionnalités. Cela dit, il est possible d'étendre les fonctionnalités. Plusieurs types d'extension sont possibles : vue alternative pour les requêtes ou les réponses, scanneur passif des réponses, scanneur actif produisant des requêtes, etc.&lt;br /&gt;
&lt;br /&gt;
Plusieurs options seront données, par exemple :&lt;br /&gt;
&lt;br /&gt;
 Détection automatique de flag dans les sources&lt;br /&gt;
 Scanneur actif asynchrone DNS&lt;br /&gt;
 Ou votre propre idée&lt;br /&gt;
&lt;br /&gt;
Pour chacune des suggestions, des squelettes de code seront fournis pour les APIs de ZAP. Pour les utilisateurs de BurpSuite, des directives analogues seront également données.&lt;br /&gt;
&lt;br /&gt;
Niveau : débutant / intermédiaire&lt;br /&gt;
&lt;br /&gt;
Matériel requis&lt;br /&gt;
&lt;br /&gt;
 Votre portable&lt;br /&gt;
 [https://www.owasp.org/index.php/OWASP_Zed_Attack_Proxy_Project OWASP ZAP (gratuit)]&lt;br /&gt;
 [https://portswigger.net/burp/download.html BurpSuite]&lt;br /&gt;
 Éditeur de code pour Java, Python ou Ruby&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Présentateur : Philippe Arteau&lt;br /&gt;
&lt;br /&gt;
Philippe est un chercheur en cybersécurité chez GoSecure. Il est l'auteur de l'outil d'analyse statique Java &amp;quot;Find Security Bugs&amp;quot;. Il a découvert des vulnérabilités importantes dans les logiciels populaires tels que Google Chrome, Dropbox, Paypal, RunKeeper et Jira. Il a présenté dans différentes conférences incluant Black Hat USA, Black Hat Europe, ATL Sec Con, NorthSec, Hackfest (QC) et JavaOne. Il a développé de nombreux plug-ins pour les outils de proxy BurpSuite et OWASP ZAP (Retire.js, Reissue Request Script, PDF preview et Image Metadata). Il a fait également des contributions à d'autres plug-ins comme J2eeScan.&lt;br /&gt;
&lt;br /&gt;
Merci à Google d'héberger l'événement! &lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-zap-4-r.jpg | Google | link=https://www.google.ca/ ]]&lt;br /&gt;
&lt;br /&gt;
==Logiciel de rançon (Ransomware) s'attaque au domaine de la santé==&lt;br /&gt;
&lt;br /&gt;
[[Image:HackingHealth-2.jpg | Logiciel de rançon (Ransomware) s'attaque au domaine de la santé ]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/ransomware-and-healthcare-hacking-health ]] [https://speakerdeck.com/owaspmontreal/ransomware-and-healthcare-hacking-health See the slides / Voir la présentation]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;(Conférence en anglais)&lt;br /&gt;
Pour le lancement de la saison 2016 - 2017, OWASP Montréal propose à la communauté de la sécurité des TI et aux gestionnaires de la santé une incursion dans le monde du logiciel malveillant ciblant le domaine de la santé.&amp;lt;br /&amp;gt;&lt;br /&gt;
Cette conférence s'intége dans le Coopérathon co-organisé par le Mouvement Desjardins et Hacking Health.&amp;lt;/b&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Le domaine de la santé serait devenu une cible privilégiée des campagnes de ransomware parce que l'industrie a souvent payé la rançon demandée pour récupérer les données confidentielles et vitales de ses clients. Monsieur Ed Gershfang nous brossera un portrait du phénomène et des meilleures pratiques à mettre en place en matière de sécurité applicative.&lt;br /&gt;
Ed Gershfang possède une expérience solide dans l'infrastructure informatique et plus de 6 ans d'expérience dans les domaines de la sécurité de l'information, de la vulnérabilité, de la gouvernance et de la gestion des risques. Il était directeur de la sécurité pour la société PeriGen, un chef de file de développement de logiciels médicaux en Israël.&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== La sécurité applicative vue par un pentesteur ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Juin2016-OWASPMtl.jpg | OWASP Montréal reçoit Mario Contestabile, Pentester de renom ]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
From Left to Right : Isabelle Lusseyran, Head of Development at Hacking Health. Eduard Gershfang Information Security Analyst at WSP | Parsons Brinckerhoff.&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/owasp-montreal-recoit-mario-contestabile ]] [https://speakerdeck.com/owaspmontreal/owasp-montreal-recoit-mario-contestabile See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Pour clore la saison 2015 – 2016, OWASP Montréal est fier d’accueillir au Midi Conférence un des architectes de renom du développement applicatif au Canada, monsieur Mario Contestabile.&lt;br /&gt;
En tant qu’auteur de plusieurs centaines de tests d’intrusion, il connait tous les rouages de ce qu’est véritablement une application Web «sécurisée». Mais avez-vous déjà remarqué que les rapports de tests d’intrusion mentionnent rarement, voir jamais : «Votre site est très difficile à pirater. Félicitations !» ?&lt;br /&gt;
Et qu’en est-il de ces rapports qui contiennent des dizaines de soi-disant vulnérabilités ? Est-ce que cela signifie d’emblée que l’application devrait être mise hors ligne ?  &lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Lors de cette conférence, nous examinerons des rapports concrets (ambigus) de vulnérabilités et nous les analyserons afin de mieux comprendre si elles représentent une véritable menace, ou si elles ne servent qu’à «remplir» les rapports.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Avec son expertise en protection et en attaque d’applications Web, il abordera les points suivants :&lt;br /&gt;
Comment pouvez-vous sélectionner des systèmes de façon à mieux exécuter des protections de sécurité ?&lt;br /&gt;
Éviter certains pièges dans votre application Web qui rendent les attaques plus faciles et la protection plus difficile.&lt;br /&gt;
De nos jours, que peuvent faire les développeurs à l’intérieur de systèmes communs, qui puisse me rendre la tâche plus ardue en tant que « hacker »?&lt;br /&gt;
Pouvons-nous exiger de meilleurs rapports de la part des firmes de sécurité?&lt;br /&gt;
À quoi devrions-nous nous attendre de la part d’un « pentesters »?&lt;br /&gt;
Comment pouvons-nous savoir si le « pentester » a vérifié les failles de l’application et qu’il n’a pas simplement utilisé un scanneur?&lt;br /&gt;
Et enfin, comment pouvons-nous aider les « ethical hackers » à obtenir un meilleur rendement lors d’un test d’intrusion?&lt;br /&gt;
Il expliquera le sujet en détails, et ensemble, nous verrons de quelles façons les développeurs d’applications peuvent exploiter le savoir-faire des « pentesters », et comment nous pouvons faire en sorte qu’une application Web soit protégée.&lt;br /&gt;
Biographie :&lt;br /&gt;
Mario Contestabile est reconnu comme l’un des experts en sécurité les plus réputés au Canada. Son expertise, construire et protéger votre plateforme applicative. Ancien développeur C++ et Java, Mario partage ses nombreuses connaissances en « ethical hacking » et en développement de codes sécurisé.  &lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Tuesday, 14 June 2016 from 12:00 PM to 1:00 PM (EDT) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Comment protéger les applications mobiles? ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Avril2016-OWASPMtl.png | Comment protéger les applications mobiles? ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/comment-proteger-les-applications-mobiles ]] [https://speakerdeck.com/owaspmontreal/comment-proteger-les-applications-mobiles See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Dans le cadre des Midis Conférence à l'Espace Desjardins, l'équipe OWASP Montréal vous invite à assister à une présentation sur les vulnérabilités les plus communes associées aux appareils mobiles. &lt;br /&gt;
Marie-Claire Willig détaillera entre autres comment stocker de façon sécuritaire les données de l’application mobile ainsi que protéger l’application contre des attaques externes. Des outils simples vous seront dévoilés pour détecter ces vulnérabilités.&lt;br /&gt;
Marie-Claire est une professionnelle d'expérience en sécurité appliquée.&lt;br /&gt;
Une grande partie de son intérêt professionnel réside actuellement dans un domaine assez niche, soit la revue de code sécuritaire, un fondement important de tout cycle de développement sécuritaire en entreprise.&lt;br /&gt;
Au sein de l'équipe de sécurité technologique Desjardins, elle est, en autre, responsable de former les développeurs (Java et .NET principalement) afin de les sensibiliser aux meilleures pratiques de développement sécuritaire.&lt;br /&gt;
Également, elle est une professionnelle des tests d'intrusion sur les applications web, les applications mobiles ainsi que l'infrastructure réseau.&lt;br /&gt;
Bienvenue à tous&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 20 April 2016 from 12:15 PM to 1:00 PM (EDT) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== NorthSec, Le plus gros événement de cybersécurité appliquée au Canada ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Mars2016-OWASPMtl.jpg | NorthSec, Le plus gros événement de cybersécurité appliquée au Canada ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/YQtvltQYs7Y]] [https://youtu.be/YQtvltQYs7Y Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
OWASP Montréal est fier d’inviter au Midi Conférence de mars, NorthSec est le plus gros événement de sécurité appliquée au Canada qui comprend deux jours de formation, deux jours de conférences ainsi qu’une compétition du genre « capture the flag » (CTF) de trois jours.&lt;br /&gt;
Gabriel Tremblay, Benoit Guerette, Pierre-David Oriol et Laurent Desaulniers viendront vous parler de cet organisme sans but lucratif dynamique qui est géré par une équipe de bénévoles passionnés qui donnent à chaque année leur énergie et leur temps pour soutenir la communauté de la sécurité de l’information.&lt;br /&gt;
Le volet compétition, l’épreuve maîtresse, est présentée sous forme d’un scénario qui rend cohérent une centaine de défis techniques. Les équipes de participants attaquent l’infrastructure de compétition pour soutirer des drapeaux (flags) à travers un ensemble de vulnérabilités présentes comme de l’injection SQL, des XSS ou encore l’exploitation d’exécutables sur systèmes embarqués. Quelques exemples de défis des années passées seront également présentés.&lt;br /&gt;
Le volet conférence, qui est à sa 2ème année, met de l’avant plusieurs présentations techniques touchant la sécurité applicative mais aussi l’éthique et leurs impacts sociaux. Certaines présentations confirmées seront dévoilés.&lt;br /&gt;
Le tout nouveau volet formation propose deux formations en sécurité applicative de calibre international (anglais) : “Advanced Web Security Testing with Burp Pro” et “Modern Object-Oriented Malware Reverse Engineering”.&lt;br /&gt;
Venez aussi, découvrir comment l'équipe est partie d'une idée en 2012 pour se rendre à un évènement d'envergure, qui rassemblera plus de 600 professionnels, étudiants et autres passionnés de sécurité appliquée lors de la 4ème édition qui aura lieu du 17 au 22 mai 2016 au Marché Bonsecours.&lt;br /&gt;
Finalement, la mission, la vision ainsi que les activités sociales de la semaine de NorthSec sont aussi au menu de cette présentation qui sera suivie d’une période de questions.&lt;br /&gt;
&lt;br /&gt;
Gabriel Tremblay, Delve Labs, Président&lt;br /&gt;
Benoit Guerette, Desjardins, VP Finances&lt;br /&gt;
&lt;br /&gt;
Pierre-David Oriol, Delve Labs, VP Conférence&lt;br /&gt;
Laurent Desaulniers, Bell Canada, Artisant de drapeaux&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 23 March 2016 from 12:00 PM to 1:00 PM (EDT) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== La sécurité applicative et l'hameçonnage - February 24th ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Fevrier2016-OWASPMtl.jpg | La sécurité applicative et l'hameçonnage ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/1RYlOiIENjQ]] [https://youtu.be/1RYlOiIENjQ Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
De nos jours, une des méthodes les plus efficaces pour contourner les périmètres de sécurité externes est l'hameçonnage conjointement avec l’abus de certaines technologies Web.&lt;br /&gt;
&lt;br /&gt;
Dans le cadre ses activités, OWASP Montréal est heureux d'inviter d'accueillir, l'équipe OKIOK qui présentera les impacts liés à ce type d'attaque, tel que vu et expérimenté en entreprise ainsi que les plans d'action pour traiter ces risques. La présentation abordera aussi bien la sécurité web et applicatives, des systèmes informatiques ainsi que de la sécurité physique de centres de données. &lt;br /&gt;
&lt;br /&gt;
    Capture d'informations sensibles par imitations de portails Web ;&lt;br /&gt;
    Authentification Web par 2-facteurs ;&lt;br /&gt;
    Injection SMTP dans des formulaires Web ;&lt;br /&gt;
    Attaque de type “Drive-by-download”;&lt;br /&gt;
    Prise de contrôle à distance à travers des flux HTTP;&lt;br /&gt;
    Attaque de CSRF à partir de courriels ;&lt;br /&gt;
    Attaque d'hameçonnage basée sur des achats par Internet (ex : PayPal).&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
When&lt;br /&gt;
 Wednesday, 24 February 2016 from 12:00 PM to 1:15 PM (EST) - Add to Calendar &lt;br /&gt;
Where&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest Montreal, Quebec CA&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Internet of {Things, Threats} - January 20th ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Janvier2016-OWASPMtl-R.png | Internet of {Things, Threats} ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=http://gosecure.github.io/presentations/2016-01-20_owasp-mtl/internet-of-threats.html ]] [http://gosecure.github.io/presentations/2016-01-20_owasp-mtl/internet-of-threats.html See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
De plus en plus de périphériques se retrouvent connectés sur Internet. Sous la bannière &amp;quot;Internet of Things&amp;quot; (IoT) ces équipements, que ce soit une pompe à insuline ou un système de caméra de sécurité, tournent généralement sous un système GNU/Linux embarqué d'architecture MIPS ou ARM. La difficulté de mettre à jour ces équipements ainsi que le peu d'effort mis dans la sécurité des systèmes ou la sécurité applicative en font des cibles de choix. Ces derniers mois, nous avons analysé plusieurs logiciels malveillants ciblant ces architectures. Que ce soit par l'exploitation d'une vulnérabilité (Shellshock) ou encore un défaut de configuration, ces systèmes exposés sur Internet peuvent être compromis.&lt;br /&gt;
&lt;br /&gt;
Notre présentation couvrira quelques une de ces analyses:&lt;br /&gt;
&lt;br /&gt;
* Linux/Moose, un malware se propageant automatiquement qui fraude les réseaux sociaux (par exemple Facebook, Twitter et YouTube)&lt;br /&gt;
* LizardSquad et acteurs étrangers qui utilisent des systèmes embarqués compromis pour réaliser des dénis de service distribué (DDoS) &lt;br /&gt;
* Win32/RBrute est un logiciel malveillant qui tente de changer les paramètres de routeurs dans le but de faire du &amp;quot;DNS poisoning&amp;quot;. Il a été distribué par le populaire botnet Sality.&lt;br /&gt;
* Un kit d'exploits qui utilise seulement le navigateur de leur victime avec le même objectif, c'est-à-dire faire du &amp;quot;DNS poisoning&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Enfin, des conseils seront proposés à l'audience pour l'aider à se protéger de ces menaces.&lt;br /&gt;
&lt;br /&gt;
'''Thomas Dupuy''' (twitter: @nyx__o)&lt;br /&gt;
&lt;br /&gt;
Thomas est chercheur en logiciel malveillant chez ESET Canada Recherche. Bon vivant, Thomas déjeune en &amp;quot;reversant&amp;quot; des binaires, contribue à quelques projets open source durant le diner (yara, yara rules, pefile, APTnotes) et la nuit participe à des &amp;quot;Hacking Games&amp;quot; (Capture The Flag). Curieux de nature Thomas analyse des malware aux architectures &amp;quot;exotiques&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Olivier Bilodeau''' (twitter: @obilodeau)&lt;br /&gt;
&lt;br /&gt;
Olivier Bilodeau is the head of Cybersecurity Research at GoSecure a consultancy firm specializing in cybersecurity services for the public and private sector. With more than 10 years of infosec experience, Olivier worked on Unix servers at Bell Canada, managed a portion of Air Canada's network, wrote open source network access control software at Inverse and worked as a Malware Researcher at ESET. He likes to reverse engineer everything that crosses his path, participate in information security capture-the-flag competitions, hack open source code and brew beer. He has spoken at various conferences (Defcon, Botconf, VirusBulletin, Derbycon, ...), used to lecture on information security at ETS University in Montreal, drives the NorthSec Hacker Jeopardy and co-organizes the MontreHack capture-the-flag training initiative. His primary research interests include reverse-engineering tools, Linux and/or embedded malware and honeypots.&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Survivre aux attaques DDOS applicatives ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Decembre2015-OWASPMtl.jpg | Survivre aux attaques DDOS applicatives ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Survivre aux attaques DDOS (Distributed Denial-Of-Service) applicatives.&lt;br /&gt;
Cette conférence s'adresse aux professionnels et gestionnaires des TI.&lt;br /&gt;
Conférencier : Christian Shink, ing., CSSLP, ingénieur système chez Radware, manufacturier spécialisé dans la prévention des attaques DDOS. Il fut également consultant en sécurité applicative chez In Fidem.&lt;br /&gt;
Objectifs de la conférence:&lt;br /&gt;
Présenter les tendances actuelles en matière d'attaques DDOS applicatives.&lt;br /&gt;
Renseigner les participants sur les techniques et stratégies pour contrer ces attaques illustrées à partir de cas vécus.&lt;br /&gt;
Démystifier certains mythes en ce qui concernent les façons efficaces de protéger les applications contre des attaques DDOS.&lt;br /&gt;
Date : 16 décembre 2015&lt;br /&gt;
Heure : 11h45&lt;br /&gt;
La conférence débute à 12h00 et se termine à 12:55.&lt;br /&gt;
Un lunch sera servi.&lt;br /&gt;
Réservez maintenant!&lt;br /&gt;
1 CPE&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 16 December 2015 from 11:45 AM to 1:00 PM (EST) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec &lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Sécurité des applications - Systèmes de contrôles industriels ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Novembre2015-OWASPMtl-R.png | Sécurité des applications - Systèmes de contrôles industriels ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/0eAZpyiQQ9A]] [https://youtu.be/0eAZpyiQQ9A Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&lt;br /&gt;
La sécurité des applications et les systèmes de contrôles industriels.&lt;br /&gt;
Cette conférence s'adresse aux professionnels et gestionnaires des TI desinfrastructures critiques qui exploitent ou gèrent des systèmes de contrôles industriels(SCI) et SCADA (surveillance et d'acquisition de données).&amp;lt;br /&amp;gt;&lt;br /&gt;
Conférenciers : Robert Nastas, CSSA. Gestionnaire de projet et Youssef Jad, Architecte Cyber sécurité, ICS-CERT&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Objectifs de la conférence:&lt;br /&gt;
* Démystifier le domaine d'affaires.&lt;br /&gt;
* Renseigner les participants sur les bonnes pratiques de sécurité desapplications liées au secteur industriel.&lt;br /&gt;
* Proposer aux professionnels et gestionnaires des TI responsables dessystèmes SCADA et SCI des pistes de solutions aux enjeux de sécurité.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
L'équipe OWASP Montréal vous remercie d'avoir assisté en grand nombre à la conférence, 'La sécurité des applications et les systèmes de contrôles industriels'.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 18 November 2015 from 11:45 AM to 1:00 PM (EST) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Les préoccupations actuelles de hauts dirigeants en matière de cybersécurité et de sécurité applicative ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Septembre2015-OWASPMtl.jpg | Les préoccupations actuelles de hauts dirigeants en matière de cybersécurité et de sécurité applicative ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/un-regard-sur-la-securite-de-linformation-en-2015-par-eric-hebert ]] [https://speakerdeck.com/owaspmontreal/un-regard-sur-la-securite-de-linformation-en-2015-par-eric-hebert See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Pour le lancement des activités corporatives de la saison 2015 - 2016, le 8 septembre prochain à 12:00, l'équipe OWASP Montréal convie les gestionnaires et artisants de la sécurité des TIC à venir entendre monsieur Éric Hébert qui nous présentera son interprétation des préoccupations actuelles de hauts dirigeants en matière de cybersécurité et de sécurité applicative. L'événement se tiendra au complexe Desjardins à la salle &amp;quot;Espace Desjardins&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
''' ÉRIC G. HÉBERT, CISM, CISSP ''' &amp;lt;br /&amp;gt;&lt;br /&gt;
Après plus de 20 ans passés dans le domaine de la sécurité des technologies de l’information, Éric se spécialise dans la mise en œuvre et la gestion d'équipes performantes, capables de relever les plus hauts défis de la cybersécurité moderne.&amp;lt;br /&amp;gt;&lt;br /&gt;
Capable de dialoguer avec les hauts dirigeants, il sait traduire et vulgariser les enjeux techniques complexes tout en respectant la nature et l'appétence au risque de ses clients. Dynamique et pourvu d'une expérience couvrant presque toutes les sphères de la SI, il fonce dans le respect de la culture établie tout en implantant des solutions pragmatiques et efficaces.&amp;lt;br /&amp;gt;&lt;br /&gt;
Depuis plus de 10 ans, il gravite principalement autour des entreprises du domaine financier (BNC, Desjardins, Fonds de solidarité FTQ...) et les accompagne dans la mise en place de solutions efficaces tenant compte à la fois des risques et des budgets.&lt;br /&gt;
En plus d’avoir fondé de nombreuses associations telles que le RéseauSécurIT et le RPSI, il maintient une présence régulière auprès des milieux associatifs professionnels et partage régulièrement ses expériences lors de conférences et d'entrevues avec divers médias.&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Events / Évènements =&lt;br /&gt;
&lt;br /&gt;
== Owasp Montreal at [https://nsec.io/ NorthSec 2017] ==&lt;br /&gt;
&lt;br /&gt;
[[Image:NorthSec2017-5.jpg]]&lt;br /&gt;
[[Image:NorthSec2017-6.jpg]]&lt;br /&gt;
&lt;br /&gt;
From Left to Right: Anne Gauthier, OWASP Montréal Chapter Leader (President) and Application Security Analyst at GoSecure, Hugo Genesse, OWASP Montréal Chapter Leader and Research Intern at PNF Software, Julien, OWASP Montréal Chapter Leader&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal at [https://2017.appsec.eu/ AppSec] ==&lt;br /&gt;
&lt;br /&gt;
[[Image:OWASPAppSecBelfast2017-7.jpg]]&lt;br /&gt;
&lt;br /&gt;
OWASP Montreal and Ottawa Chapter Leaders at OWASP AppSec Belfast, UK #WomenInAppSec&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal at [https://hackfest.ca/ HackFest 2016] ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hackfest2016-r.jpg| HackFest |link=https://hackfest.ca/]]&lt;br /&gt;
&lt;br /&gt;
From left to right: Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Louis Nadeau, OWASP Québec Chapter Leader and Manager, Product Security at Bentley Systems and Patrick Leclerc, OWASP Québec Chapter Leader and Information Security Advisor at La Capitale.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal at OWASP [https://2016.appsecusa.org/ AppSec USA 2016, Washington] ==&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:OWASPMtl-AppSecUSA2016-Washington.jpg | OWASP Montreal at AppSec USA 2016, Washington]] &lt;br /&gt;
&lt;br /&gt;
​From left to right: Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Marie-Claire Willig, Application Security Analyst at Desjardins, Speaker and Cofounder of the Roslyn Security Guard tool which will be presented at Blackhat 2016, Alexandre Hamelin President at Synlabs Consulting Inc., Jonathan Marcil, Application Security Engineer at Blizzard Entertainment and former OWASP Montreal Chapter Leader. Philippe Arteau, Cybersecurity Researcher at GoSecure and designer of [https://find-sec-bugs.github.io/ Find Security Bugs] and Roslyn Security Guard tool which will be presented at Blackhat 2016.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://www.gosec.net GoSec] 2016 ==&lt;br /&gt;
&lt;br /&gt;
[[Image:OWASP-GoSec2016-1r.jpg|OWASP Montreal at GoSec 2016]] [[Image:OWASP-GoSec2016-2r.jpg|OWASP Montreal at GoSec 2016]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
From left to right : Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Simon Lacasse, student and volunteer, and Laurent Desaulniers, Security Analyst at Bell Canada.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://www.nsec.io/ NorthSec] 2016 – Annual Applied Security Event ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hackfest2016-OWASPMtl.jpg|OWASP Montreal at NorthSec 2016]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Simon Veilleux &lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
From left to right : Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Olivier Arteau OWASP Montréal Chapter Leader and Conseiller chez Groupe Technologie Desjardins, Hugo Genesse, OWASP Montréal Chapter Leader and Vulnerability Research Intern at Wurldtech Security Technologies.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://hackfest.ca/en/ Hackfest] 2015 ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hackfest2015-OWASPMtl-R.JPG | OWASP Montreal at Hackfest 2015]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Hackfest &lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
From left to right : Jonathan Marcil, Application Security Engineer at Blizzard Entertainment and former OWASP Montreal Chapter Leader. Philippe Arteau, Cybersecurity Researcher at GoSecure and designer of [http://find-sec-bugs.github.io/ Find Security Bugs] and Roslyn Security Guard tool which will be presented at Blackhat 2016. &lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/8U0qkEuUFy8]] [https://youtu.be/8U0qkEuUFy8 Watch the video / Regarder la vidéo]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://www.gosec.net/ GoSec] 2015 – The Annual Cybersecurity Conference presented by GoSecure, EY and ISACA. ==&lt;br /&gt;
&lt;br /&gt;
[[Image:GoSec2015-OWASPMtl.jpg|OWASP Montreal at GoSec 2015]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
From left to right : Marie-Claire Willig, Application Security Analyst at Desjardins, Speaker and Cofounder of the Roslyn Security Guard tool which will be presented at Blackhat 2016. Benoît Guérette, Application Security Team Leader at Desjardins, VP Finance at NorthSec and OWASP Montreal Chapter Founder and Former Chapter Leader.&lt;br /&gt;
&lt;br /&gt;
== See also / Voir aussi ==&lt;br /&gt;
&lt;br /&gt;
OWASP Montréal recommends Montréhack. Learn and share knowledge on IT security by solving technical challenges. Third Monday of every month. &lt;br /&gt;
&lt;br /&gt;
OWASP Montréal recommende Montréhack. Apprends et partages des connaissances sur la sécurité informatique en travaillant des problèmes appliqués. Chaque troisième lundi du mois. &lt;br /&gt;
&lt;br /&gt;
[[File:Montrehack.png|Montréhack|link=http://montrehack.ca/|alt=Montréhack]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Archives 2007-2015 =&lt;br /&gt;
{{:Montreal chapter past meetings}}&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - February 3rd - Getting to Know the Software Assurance Marketplace (SWAMP) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/p4_vjufcB6Q]] [https://youtu.be/p4_vjufcB6Q Watch the conference / Regarder la conférence]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/getting-to-know-the-software-assurance-marketplace-swamp-by-pat-beyer]] [https://speakerdeck.com/owaspmontreal/getting-to-know-the-software-assurance-marketplace-swamp-by-pat-beyer See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Pat Beyer&lt;br /&gt;
*'''ADDITIONAL PRESENTER:'''  Abe Megahed&lt;br /&gt;
*'''ABSTRACT:''' The Software Assurance Marketplace (SWAMP) is an open facility that is designed, built, and operated by four research institutions. The SWAMP provides no-cost access to an array of open-source and commercial software analysis tools. This presentation will provide an overview and demo of the SWAMP, including our goals, intended audience, current capabilities, and future plans. We will cover our relationship with OWASP, incorporation of open-source software assurance tools, and status as an open-source project and resource available to the software community. Visit https://continuousassurance.org/ to learn more about us.&lt;br /&gt;
*'''BIO:''' Pat Beyer serves as the Product Manager for the Software Assurance Marketplace (SWAMP). With over 25 years of experience successfully managing multi-million dollar global projects, Beyer’s expertise extends to the IT, construction, and operations sectors, with a specialization in managing government contracts and grants. A gifted communicator, Beyer is a sought after speaker due to his ability to deliver complex information about technology products and services in a way that is easily understood. He is a decorated combat veteran of the Global War on Terror, the international military campaign that started following the 9/11 terrorist attacks on the United States. In 2004, he constructed and rehabilitated over 20 schools, clinics, and water treatment plants for the Iraqi people using local contractors. Beyer also holds a Bachelor of Science, a Masters in Business Administration, a Ph.D. in Organization and Management, and a Project Management Professional (PMP) certification.&lt;br /&gt;
*'''BIO:''' Abe Megahed is a web developer for the Software Assurance Marketplace. In previous lifetimes, he has been a computer graphics researcher, a game programmer, a programming language and compiler nerd, a dot com company founder, a creator of helicopter simulations, and a developer of 3D simulations for NASA astronaut crew training.&lt;br /&gt;
*'''WHEN:'''  Tuesday, February 3rd 2015&lt;br /&gt;
*'''WHERE:''' Room PK-1140 - UQAM Pavillon Président-Kennedy, 201 Avenue du Président-Kennedy  J2X 3Y7&lt;br /&gt;
*'''REGISTRATION:''' https://owaspmtlswamp2015.eventbrite.ca&lt;br /&gt;
*'''WEBCAST:''' https://www.youtube.com/watch?v=p4_vjufcB6Q&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/getting-to-know-the-software-assurance-marketplace-swamp-by-pat-beyer&lt;br /&gt;
&lt;br /&gt;
*'''ACADEMIC PARTNER:''' AGEEI-UQAM - http://www.ageei.org/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Welcome speech by Chapter Leader (Jonathan Marcil)&lt;br /&gt;
  18:30-20:00 Main session: Getting to Know the Software Assurance Marketplace&lt;br /&gt;
  20:00-...   End of the meeting&lt;br /&gt;
&lt;br /&gt;
[[Image:SWAMP-Logo-Final-Med.png|300px|link=https://continuousassurance.org/]]&lt;br /&gt;
[[Image:Ageeilogo.jpg|200px|link=http://www.ageei.org/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - 4 décembre - Malware côté serveur — évolution, méthodes d’opération et forensic Linux ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/lo8WDl-WQ3E]] [https://youtu.be/lo8WDl-WQ3E Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/malware-cote-serveur-par-marc-etienne-m-dot-leveille]] [https://speakerdeck.com/owaspmontreal/malware-cote-serveur-par-marc-etienne-m-dot-leveille See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''PRÉSENTATEUR PRINCIPAL:''' Marc-Etienne M.Léveillé&lt;br /&gt;
*'''RÉSUMÉ:''' Les logiciels malveillants ciblant les serveurs ont évolué. Ils sont utilisés par des groupes de cybercriminels organisés dans le but de faire du profit via des redirections web et l’envoie de pourriels. La présentation portera sur Opération Windigo, une opération malveillante qui a affecté plus de 25 000 serveurs dans le monde. Après une brève description des composantes de Windigo, nous verrons comment les opérateurs déploient leurs logiciels malveillants et surveille leur réseau de serveurs infectés. Des trucs pratiques pour faire de la forensics sur des systèmes Linux seront donnés. Cette présentation est une suite à la présentation &amp;quot;Linux/Cdorked: Server side malware&amp;quot;, donnée par Olivier Bilodeau à OWASP Montréal en 2013. La présentation sera en français avec des diapositives en anglais (aka Montreal-style).&lt;br /&gt;
*'''BIO:''' Marc-Etienne est un chercheur en logiciel malveillant chez ESET depuis 2012. Il se spécialise dans les logiciels malveillants qui s’attaquent à des plateformes inhabituelles comme aux produits fruités et aux oiseaux nordiques. Dernièrement, il passe beaucoup de son temps à faire la rétro-ingénierie de logiciels malveillants sur des serveurs Linux et s’intéresse à leurs méthodes d’opération. Il adore participer de façon collégiale aux CTFs avec ses amis les CISSP Groupies et jouer de la clarinette. Il tweet très peu à @marc_etienne_.&lt;br /&gt;
*'''QUAND:''' 4 décembre 2014 à 18h00&lt;br /&gt;
*'''OÙ:''' Local M-1510, Polytechnique Montréal, 2900 Boulevard Edouard-Montpetit&lt;br /&gt;
*'''INSCRIPTION:''' https://www.eventbrite.ca/e/owasp-montreal-4-decembre-malware-cote-serveur-evolution-methodes-doperation-et-forensic-linux-tickets-14635313617&lt;br /&gt;
*'''ÉQUIPE ACADÉMIQUE:''' Polyhack - http://polyhack.org/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
&lt;br /&gt;
 18:00-18:30 Réseautage&lt;br /&gt;
 18:30-18:35 Mot de bienvenue par le leader du chapitre (Jonathan M.)&lt;br /&gt;
 18:35-19:30 Présentation principale : Malware côté serveur&lt;br /&gt;
 19:30-20:00 Période de questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Polyhacklogonoirpetit.png|200px|link=http://polyhack.org/]]&lt;br /&gt;
[[Image:LogoPolytechnique.gif|link=http://www.polymtl.ca/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - October 23rd - XXE : À l’assaut des analyseurs XML ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/MZviLB9-42E]] [https://youtu.be/MZviLB9-42E Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/xxe-a-lassaut-des-analyseurs-xml-par-philippe-arteau]] [https://speakerdeck.com/owaspmontreal/xxe-a-lassaut-des-analyseurs-xml-par-philippe-arteau See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''PRÉSENTATEUR PRINCIPAL:''' Philippe Arteau&lt;br /&gt;
*'''RÉSUMÉ:''' L'utilisation d’XML est fortement répandue. Le format est utilisé pour des fichiers de configuration, pour des métadonnées, pour des documents textes, et bien plus. La prise en charge de fichiers XML n’est pas sans risque. La plupart des analyseurs XML ne sont pas sécuritaires par défaut pour le traitement de fichier externe. Cette présentation fera un survol des vulnérabilités de type « Xml eXternal Entity » et de l’étendue des risques pour différents langages de programmation. Plusieurs démonstrations sont prévues.&lt;br /&gt;
*'''BIO:''' Philippe est conseiller en sécurité applicative pour le Groupe Technologies Desjardins. Au quotidien, il s’occupe d’effectuer des tests d’intrusions et des revues de code. Il a découvert des vulnérabilités importantes dans plusieurs logiciels populaires incluant Google Chrome, DropBox, ESAPI et Jira.&lt;br /&gt;
*'''QUAND:'''  23 Octobre 2014 à 18h00&lt;br /&gt;
*'''OÙ:''' École de Technologie Supérieure Local A-3230, 1100 Rue Notre-Dame Ouest, Montréal, QC H3C 1K3&lt;br /&gt;
*'''INSCRIPTION:''' http://www.eventbrite.ca/e/owasp-montreal-23-octobre-xxe-a-lassaut-des-analyseurs-xml-tickets-13426881163&lt;br /&gt;
*'''PARTENAIRE ACADÉMIQUE:''' ETS - DCI http://dciets.com/&lt;br /&gt;
*'''PROGRAMME:''' &lt;br /&gt;
&lt;br /&gt;
 18:00-18:30 Réseautage&lt;br /&gt;
 18:30-18:45 Mot de bienvenue&lt;br /&gt;
 18:45-19:45 Présentation principale - &amp;quot;À l’assaut des analyseurs XML&amp;quot; Philippe Arteau&lt;br /&gt;
 19:45-20:00 Période de questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Blason_dci.png‎‎‎|150px|link=http://dciets.com/]]&lt;br /&gt;
[[Image:ETS-rouge-devise-impr-fond_transparent.png|150px|link=http://www.etsmtl.ca/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - July 24th - Web security for DevOps: the glory is in the headers ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/6bp1NCLT-YQ]] [https://youtu.be/6bp1NCLT-YQ Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/web-security-for-devops-the-glory-is-in-the-headers-by-jonathan-marcil]] [https://speakerdeck.com/owaspmontreal/web-security-for-devops-the-glory-is-in-the-headers-by-jonathan-marcil See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Jonathan Marcil&lt;br /&gt;
*'''ABSTRACT:''' DevOps is a buzzword which can be easily demystified: in essence it is a process which aims to combine the development and system administration process into one; Operations. As developers become responsible for server setup, security counter measures are evolving as well. The line between server configuration and application behaviour has been blurred. In this talk we will cover some HTTP headers in regards to security such as CORS, CSP and HSTS. We will demonstrate several forms of attack, and how they can (should) be countered.&lt;br /&gt;
*'''BIO:''' Jonathan is devoted to security and specialized in Web application security.  His main occupation is consulting in Web security, but deep down he is a developer with a agnostic vision of programming languages. He has a diploma in Software Engineering from Ecole de Technologie Superieure and more than 10 years of experience in Information Technology and Security.&lt;br /&gt;
*'''WHEN:'''  At noon on July 24th 2014&lt;br /&gt;
*'''WHERE:''' 75 Queen Street, office 3100, Montreal, QC H3C 2N6&lt;br /&gt;
*'''REGISTRATION:''' You can join us on site for a pizza slice but this is mainly an online event. Contact jonathan.marcil@owasp.org.&lt;br /&gt;
*'''WEBCAST:''' https://www.youtube.com/watch?v=6bp1NCLT-YQ&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/web-security-for-devops-the-glory-is-in-the-headers-by-jonathan-marcil&lt;br /&gt;
*'''EVENT SPONSOR:''' Pheromone http://www.pheromone.ca/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  12:00-12:10 Welcome and quick OWASP introduction&lt;br /&gt;
  12:10-13:10 Main presentation - &amp;quot;Web security for DevOps: the glory is in the headers&amp;quot; Jonathan Marcil&lt;br /&gt;
  13:10-... Open discussion and questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Logo-phero.gif‎|link=http://www.pheromone.ca/]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - June 18th - Gaps in the Clouds ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/gaps-in-the-clouds-by-robert-fritz]] [https://speakerdeck.com/owaspmontreal/gaps-in-the-clouds-by-robert-fritz See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Robert Fritz&lt;br /&gt;
*'''ABSTRACT:''' Cloud technology offers agility and scaling, and a chance to break away from legacy IT choices.  Unfortunately, skipping traditional IT activities often results in poorly patched systems, out of date firewalls, and overprovisioned entitlements wielded by admins whose “day job” is development.  Boundaries of accountability and responsibility amongst cloud providers and consumers are confusing, vague, and shift, making security difficult to manage.  In such an environment, a “BP-spill” event, where cost wins over safely safety, is likely.  This talk will dive down into the cracks between the layers of cloud, and share some of the exciting dirt we have seen and expect to see in coming years.”&lt;br /&gt;
*'''BIO:''' Robert Fritz has been practicing security his entire career. Rob started as an Air Force lieutenant at Langley AFB and later at the Pentagon in Washington DC, building and managing classified networks. Finding he was getting too far from technology after a brief stint flying, he left the military to get back to the tech, and built security tools for HP in their HP-Unix lab.  Over time he found himself in more and more security design discussions, so co-authored HP’s Commercial Application Threat Analysis Methodology, building an internal consulting practice at HP.  This quantitative approach, led to two pending patents, an external-facing consulting practice, and his contributions to NIST IR-7502, the Common Configuration Scoring System (CVSS follow-on).  He is the former lead editor for the Center for Internet Security’s HP-UX Benchmark, and current lead for the Android Benchmark.  Robert now works for Morgan Stanley as global head of the Strategic Consulting team in the Security Architecture group, and leads the team’s cloud and social-media security practices.&lt;br /&gt;
*'''WHEN:''' June 18th 2014&lt;br /&gt;
*'''WHERE:''' 700 Rue Wellington, Floor 2, Montreal, QC H3C 3S4&lt;br /&gt;
*'''REGISTRATION:''' http://owaspmtl18junems.eventbrite.ca&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/gaps-in-the-clouds-by-robert-fritz&lt;br /&gt;
*'''EVENT SPONSOR:''' Morgan Stanley http://www.morganstanley.com/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:30 Networking and Morgan Stanley Hosted Pizza and Soft Drinks&lt;br /&gt;
  18:30-18:45 OWASP Chapter &amp;amp; Morgan Stanley Welcome&lt;br /&gt;
  18:45-19:45 Main presentation - &amp;quot;Gaps in the Clouds&amp;quot; Robert Fritz&lt;br /&gt;
  19:45-20:00 Open discussion and questions&lt;br /&gt;
  20:00-...   Optional, informal networking at Aziatic - 626 rue Marguerite-d'Youville, Montréal, QC H3C 1W7&lt;br /&gt;
&lt;br /&gt;
[[Image:Morgan_Stanley_Historical_Logo.png|link=http://www.morganstanley.com/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - May 26th - Récapitulatif des challenges NorthSec ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/P8_V3RI1Ru4]] [https://youtu.be/P8_V3RI1Ru4 Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''PRÉSENTATEUR PRINCIPAL:''' Laurent Desaulniers&lt;br /&gt;
*'''RÉSUMÉ:''' Solutions de la compétition en sécurité NorthSec 2014 sur les sujets de  XXE + SSRF, WAF Bypass, Xpath Injection, DOM Injection, HTTP Only Flag bypass et contournement de captchas. Une bonne façon d'apprendre sur ces failles que vous étiez ou non un participant de la compétition.&lt;br /&gt;
*'''MESSAGE DU PRÉSENTATEUR:''' Vous voyez Rao dans votre soupe? Vous voulez une solution pour un XSS avec des cookies http only? Les captchas illisibles sont un problème? Assistez à la présentation de l'OWASP!&lt;br /&gt;
*'''BIO:''' Laurent Desaulniers est un passionné de sécurité informatique. Il a présenté au Hackfest, au colloque RSI, à OWASP et est challenge designer à NorthSec. M. Desaulniers détient les certifications CISSP, CISM, CISA et OSCP.&lt;br /&gt;
*'''QUAND:''' 26 mai à 18h00&lt;br /&gt;
*'''OÙ:''' Local PK-1140 - Pavillon Président-Kennedy 201, Avenue du Président-Kennedy, J2X 3Y7&lt;br /&gt;
*'''INSCRIPTION:''' https://www.eventbrite.ca/e/owasp-montreal-26-mai-recapitulatif-des-challenges-northsec-tickets-11724413035&lt;br /&gt;
*'''WEBCAST:''' https://www.youtube.com/watch?v=P8_V3RI1Ru4&lt;br /&gt;
*'''ÉQUIPE ACADÉMIQUE''' AGEEI-UQAM - http://www.ageei.org/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
&lt;br /&gt;
 18:00-18:30 Réseautage&lt;br /&gt;
 18:30-18:35 Mot de bienvenue par le leader du chapitre (Jonathan M.)&lt;br /&gt;
 18:35-19:30 Présentation principale : Récapitulatif des challenges NorthSec&lt;br /&gt;
 19:30-20:00 Période de questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Ageeilogo.jpg|200px|link=http://www.ageei.org/]]&lt;br /&gt;
[[Image:2397_nsec_Logo_500-250.png|200px|link=http://nsec.io/]]&lt;br /&gt;
&lt;br /&gt;
== Networking with infosec communities - April 21st ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''RÉSUMÉ:''' En collaboration avec Montréhack, mtlsec et NorthSec, nous organisons une soirée réseautage dans un pub du centre-ville. Du plaisir garanti avec les membres de plusieurs communautés infosec de Montréal!&lt;br /&gt;
&lt;br /&gt;
*'''ABSTRACT:''' In collaboration with Montréhack, mtlsec and NorthSec, we are organizing a networking evening in a pub downtown. Fun guaranteed with the other security communities in Montreal!&lt;br /&gt;
&lt;br /&gt;
*'''QUAND:''' 21 Avril 2014&lt;br /&gt;
*'''WHEN:''' April 21st 2014&lt;br /&gt;
&lt;br /&gt;
*'''OÙ/WHERE:''' BENELUX - Brasserie Artisanale 245 Sherbrooke St W Montreal, QC H2X 1X7&lt;br /&gt;
&lt;br /&gt;
*'''INSCRIPTION/REGISTRATION:''' https://www.eventbrite.ca/e/montrehack-avril-april-northsec-pre-party-tickets-11232307133&lt;br /&gt;
&lt;br /&gt;
*'''PARTENAIRES/PARTNERS:''' Montréhack http://montrehack.ca/ - mtlsec http://blog.mtlsec.com/ - NorthSec https://www.nsec.io/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
  18:00-21:00 Networking&lt;br /&gt;
  21:00-23:59 Remember to drink responsibly!&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - March 27th - Panel Compétition en sécurité NorthSec ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Présentation sous forme de panel - venez poser vos questions!'''&lt;br /&gt;
&lt;br /&gt;
*'''RÉSUMÉ:''' Les compétitions de type Capture the Flag (CTF) sont un moyen pour les professionnels et amateurs de sécurité informatique de mettre leurs talents à l'épreuve. NorthSec est une compétition Montréalaise annuelle en sécurité appliquée, qui aura lieu cette année au Marché Bonsecours de Montréal le 25, 26 et 27 avril prochain. Elle vise à augmenter le niveau technique des professionnels de la sécurité au Québec, ainsi que de permettre à ses acteurs les plus talentueux de se démarquer.&lt;br /&gt;
*'''DÉTAILS:''' Le panel de jeudi, sous la forme d'un échange convivial entre les organisateurs de l'évènement et de ses participants, abordera des thèmes variés comme l'écriture de bon défis, l'infrastructure, la logistique, les inattendus, un bilan de 2013 et tout ça en passant par de savoureuses annecdotes (on l'espère). Venez en grand nombre toucher à ces légendes de la scène infosec montréalaise!&lt;br /&gt;
*'''PANÉLISTES:''' Gabriel Tremblay, François Proulx, Laurent Desaulniers, Stéphane Graber&lt;br /&gt;
*'''ANIMATEUR:''' Olivier Bilodeau&lt;br /&gt;
*'''QUAND:''' 27 mars 2014&lt;br /&gt;
*'''OÙ:''' Salle M-1510, École Polytechnique de Montréal, 2500 chemin de Polytechnique, Montréal (Québec) H3T 1J4, pavillon Lassonde&lt;br /&gt;
*'''INSCRIPTION:''' https://www.eventbrite.ca/e/owasp-montreal-27-mars-panel-competition-en-securite-northsec-tickets-10918436337&lt;br /&gt;
*'''ÉQUIPE ACADÉMIQUE:''' Polytechnique - Polyhack http://polyhack.org/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Mot de bienvenue par le leader du chapitre (Jonathan Marcil)&lt;br /&gt;
  18:30-20:00 Présentation principale : Panel NorthSsec&lt;br /&gt;
&lt;br /&gt;
[[Image:Polyhack.png‎‎|200px|link=http://polyhack.org/]]&lt;br /&gt;
[[Image:LogoPolytechnique.gif|link=http://www.polymtl.ca/]]&lt;br /&gt;
[[Image:2397_nsec_Logo_500-250.png|200px|link=http://nsec.io/]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - February 25th - Proven Strategies for Web Application Security ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/proven-strategies-for-web-application-security-by-justin-c-klein-keane]] [https://speakerdeck.com/owaspmontreal/proven-strategies-for-web-application-security-by-justin-c-klein-keane See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Justin C. Klein Keane&lt;br /&gt;
*'''ABSTRACT:''' The rising dominance of the web as an application delivery platform has focused attacker attention squarely on the security of dynamic web applications. Application security is a complex, and shifting, field. Learn about tested and successful techniques to build safer applications, find flaws before they become vulnerabilities, and deploy applications that can detect, and resist attack.&lt;br /&gt;
*'''BIO:''' Justin C. Klein Keane is a security engineer and chapter leaders of OWASP in Philadelphia. For over a decade Justin has worked as a trainer, coder, and exploit developer. Justin is currently writing a book for NoStarch Press on hacking, speaks regularly at conferences, holds a masters degree in information technology from the University of Pennsylvania and is credited with hundreds of application vulnerability discoveries.&lt;br /&gt;
*'''WHEN:''' February 25th 2014&lt;br /&gt;
*'''WHERE:''' Ecole de technologie superieure, 1100 Notre-Dame Street West, Montreal, Room: A-1150&lt;br /&gt;
*'''REGISTRATION:''' http://owaspmtljan2014.eventbrite.ca&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/proven-strategies-for-web-application-security-by-justin-c-klein-keane&lt;br /&gt;
*'''ACADEMIC PARTNER:''' ETS - DCI http://dciets.com/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Welcome speech by Chapter Leader (Jonathan Marcil)&lt;br /&gt;
  18:30-20:00 Main session and open discussion: Proven Strategies for Web Application Security&lt;br /&gt;
  20:00-...   End of the meeting in a pub&lt;br /&gt;
&lt;br /&gt;
[[Image:Dciets.png‎‎‎|100px|link=http://dciets.com/]]&lt;br /&gt;
[[Image:Logo_ets.png|link=http://www.etsmtl.ca/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - January 28th - Latest trends in Mobile Security ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/8qPyKj4FKgY]] [https://youtu.be/8qPyKj4FKgY Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/latest-trends-in-mobile-security-by-francois-proulx]] [https://speakerdeck.com/owaspmontreal/latest-trends-in-mobile-security-by-francois-proulx See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Francois Proulx&lt;br /&gt;
*'''ABSTRACT:''' Last AppSecUSA 2013 had a great line up of talks, especially regarding mobile applications. This session will be covering all the hottest presentations about mobile security by doing an overview from what see saw at AppSecUSA, all with some slides and snippets of presentations that was recorded at the event. Discussion will be encouraged within the audience as this will be more a dynamic event than a regular talk.&lt;br /&gt;
*'''BIO:''' François Proulx is a senior mobile application developer who has worked on dozens of iOS applications since the very beginning of the Apple iOS platform. Over the past few years he has switched his focus to security. He spends a lot of his free time participating in Capture the Flag events (CTFs) and organizing the NorthSec security competition.&lt;br /&gt;
*'''WHEN:''' January 28th 2014&lt;br /&gt;
*'''WHERE:''' UQAM Room PK-1705, Pavillon Président-Kennedy (the big boat at Place des Arts) - 201 Avenue du Président-Kennedy  J2X 3Y7&lt;br /&gt;
*'''REGISTRATION:''' http://owaspmtl-mobilesecurity.eventbrite.ca&lt;br /&gt;
*'''SLIDES/CONTENT:''' [http://www.youtube.com/playlist?list=PLQtB2ug5xmvaQ9jeRWV53-F_T555GQfhW YouTube playlist]&lt;br /&gt;
*'''SPONSOR:''' Academic partner AGEEI-UQAM - http://www.ageei.org/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Welcome speech by Chapter Leader (Jonathan M.)&lt;br /&gt;
  18:30-20:00 Main session and open discussion: Mobile Security&lt;br /&gt;
  20:00-...   End of the meeting in a pub&lt;br /&gt;
&lt;br /&gt;
[[Image:Ageeilogo.jpg|200px|link=http://www.ageei.org/]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Presentations For Download  ====&lt;br /&gt;
&lt;br /&gt;
[http://www.owasp.org/images/0/0d/20100209mstechdaysowaspasvssgiv01-12657916463819-phpapp02.ppt OWASP ASVS] by Sebastien Gioria (09/03/2010) &lt;br /&gt;
&lt;br /&gt;
[http://www.ph-il.ca/slides/afup__authetification_forte.pdf Authentification Forte] by Philippe Gamache (02/02/2010) &lt;br /&gt;
&lt;br /&gt;
[http://www.opensamm.org/downloads/OpenSAMM-1.0.ppt Software Assurance Maturity Model (OpenSAMM)] by Pravir Chandra (03/11/2009) &lt;br /&gt;
&lt;br /&gt;
[http://www.owasp.org/images/d/de/Owasp-montreal-sept-17h-2009-justin-foster.pdf Crossing the Border – Javascript Exploits] by Justin Foster (17/09/2009) &lt;br /&gt;
&lt;br /&gt;
[http://www.owasp.org/images/c/c2/ALaughRIAt.pdf A Laugh RIAt] by Rafal Los (07/04/2009) &lt;br /&gt;
&lt;br /&gt;
[https://www.owasp.org/images/e/eb/OWASP-Montreal-24022009-RobLabbe.pptx Microsoft Security Development Lifecycle for IT] by Rob Labbe (24/02/2009) &lt;br /&gt;
&lt;br /&gt;
[https://www.owasp.org/images/3/39/OWASP-Montreal-24022009-EN.pdf OWASP Goal and Top Ten 2007 for Managers - French version] by Benoit Guerette (24/02/2009)&lt;br /&gt;
&lt;br /&gt;
Newer presentations are available on [https://speakerdeck.com/owaspmontreal Speaker Deck]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Circle_owasp_logo_nowhitebackground.png|200px]]&lt;br /&gt;
&lt;br /&gt;
= OWASP Foundation / Mission OWASP    = &lt;br /&gt;
OWASP Foundation ([https://docs.google.com/a/owasp.org/presentation/d/10wi1EWFCPZwCpkB6qZaBNN8mR2XfQs8sLxcj9SCsP6c/edit?usp=sharing Overview Slides]) is a professional association of [[Membership | global members]] and is open to anyone interested in learning more about software security. Local chapters are run independently and guided by the [[Chapter_Leader_Handbook]].  As a [[About_OWASP | 501(c)(3)]] non-profit professional association your support and sponsorship of any meeting venue and/or refreshments is tax-deductible. Financial contributions should only be made online using the authorized online chapter donation button.  To be a &amp;lt;b&amp;gt;SPEAKER&amp;lt;/b&amp;gt; at ANY OWASP Chapter in the world simply review the [[Speaker_Agreement | speaker agreement]] and then contact the local chapter leader with details of what OWASP PROJECT, independent research or related software security topic you would like to present on.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;La fondation OWASP est une [https://www.owasp.org/index.php/Membership association de professionnels] et elle est ouverte à tout intervenant intéressé à en apprendre davantage sur la sécurité applicative. Les chapitres locaux (dont celui de Montréal) sont gérés de façon indépendante et selon un [https://www.owasp.org/index.php/Chapter_Leader_Handbook manuel de directives à respecter].   &lt;br /&gt;
Toute contribution financière au chapitre peut être faite en ligne en utilisant l’icône prévu à cet effet. Pour être conférencier au sein de n’importe quel chapitre à l’échelle mondiale, vous n’avez qu’à prendre connaissance du document [https://www.owasp.org/index.php/Speaker_Agreement &amp;quot;entente avec les conférenciers – speaker agreement&amp;quot;] et à joindre le responsable du chapitre Montréal avec un descriptif du sujet que vous aimeriez aborder et s’il est relié à un projet OWASP, à de la recherche indépendante ou encore le sujet en particulier, concernant la sécurité applicative, que vous souhaitez aborder.&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== [[Image:Circle_owasp_logo_nowhitebackground.png|128px]] Montreal OWASP Team == &lt;br /&gt;
&lt;br /&gt;
Scope of the team is to discuss and plan local activities and meetings &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Chapter Leaders ===&lt;br /&gt;
&lt;br /&gt;
* [mailto:anne.gauthier@owasp.org Anne Gauthier], President/Présidente&lt;br /&gt;
* [mailto:michel.bourque{at}owasp.org Michel Bourque], Chapter coordinator and marketing manager/Coordination et Marketing&lt;br /&gt;
* [mailto:hugo.genesse(at)owasp.org Hugo Genesse], Web content and production manager/Site internet et Production &lt;br /&gt;
* [mailto:olivier.arteau(at)owasp.org Olivier Arteau], Logistic manager/Logistique&lt;br /&gt;
&lt;br /&gt;
==== Chapter leader history ====&lt;br /&gt;
*2008-2010 - Benoit Guerette, founder and chapter leader&lt;br /&gt;
*2011-2012 - Philippe Gamache, chapter leader (vice chapter-leader since 2010)&lt;br /&gt;
*2013-2015 - Jonathan Marcil, chapter leader&lt;br /&gt;
*2016-... - Anne Gauthier, Michel Bourque, Marius Popescu, Hugo Genesse, Olivier Arteau&lt;br /&gt;
&lt;br /&gt;
==== Old board members ====&lt;br /&gt;
*Philippe Pépos Petitclerc&lt;br /&gt;
*Michael Robillard&lt;br /&gt;
*Benoit Guerette (logistics 2015)&lt;br /&gt;
*Alexandre Rimthong&lt;br /&gt;
*Mathieu Binette&lt;br /&gt;
*Sean Coates&lt;br /&gt;
*Jean-Marc Robert&lt;br /&gt;
*Philippe Blondin&lt;br /&gt;
*Benoit Guerette (founder)&lt;br /&gt;
*Laurent Desaulniers&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;headertabs&amp;gt;&amp;lt;/headertabs&amp;gt; &lt;br /&gt;
__NOTOC__ &lt;br /&gt;
[[Category:Canada]]&lt;/div&gt;</summary>
		<author><name>Svieg</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=File:Hamilton-septembre-2017-2.JPG&amp;diff=234269</id>
		<title>File:Hamilton-septembre-2017-2.JPG</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=File:Hamilton-septembre-2017-2.JPG&amp;diff=234269"/>
				<updated>2017-10-10T19:20:10Z</updated>
		
		<summary type="html">&lt;p&gt;Svieg: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Svieg</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=File:Hamilton-septembre-2017-1.JPG&amp;diff=234268</id>
		<title>File:Hamilton-septembre-2017-1.JPG</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=File:Hamilton-septembre-2017-1.JPG&amp;diff=234268"/>
				<updated>2017-10-10T19:19:58Z</updated>
		
		<summary type="html">&lt;p&gt;Svieg: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Svieg</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=Montr%C3%A9al&amp;diff=234267</id>
		<title>Montréal</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=Montr%C3%A9al&amp;diff=234267"/>
				<updated>2017-10-10T19:13:27Z</updated>
		
		<summary type="html">&lt;p&gt;Svieg: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Welcome &amp;amp; Bienvenue to the OWASP Montréal chapter ==&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:OWASP-Montreal-Logo.png|Logo OWASP Montréal]]&lt;br /&gt;
&lt;br /&gt;
The OWASP Foundation was established in 2001 as an open community and software security resource. Since then, OWASP has grown to be globally recognized as a credible source for application security standards. &amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
OWASP is an open community dedicated to enabling organizations to conceive, develop, acquire, operate, and maintain applications that can be trusted. All of the OWASP tools, documents, forums, and chapters are free and open to anyone interested in improving application security. We advocate approaching application security as a people, process, and technology problem because the most effective approaches to application security include improvements in all of these areas. &amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
OWASP is open to anyone. Anyone can attend OWASP's vendor agnostic local chapter meetings, participate in regional and global conferences, and contribute to the many OWASP projects. And anyone can start a new project, form a new chapter, or lend their expertise to help an OWASP Global Committee.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt;On parle français aussi ! Le chapitre de Montréal organise plusieurs activités gratuites afin de partager les connaissances en sécurité applicative avec la communauté de développeurs et gestionnaires. Suivez-nous sur les réseaux sociaux pour connaître les dates des conférences du midi et des workshops !&amp;lt;/b&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Top documentation from OWASP includes: &lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/index.php/Top_10_2013-Top_10 OWASP TOP 10 : The Ten Most Critical Web Application Security Risks]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/images/3/33/OWASP_Application_Security_Verification_Standard_3.0.1.pdf OWASP ASVS : Application Security Verification Standard]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/images/5/52/OWASP_Testing_Guide_v4.pdf OWASP Testing Guide : Penetration Testing Framework]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/images/7/78/OWASP_AlphaRelease_CodeReviewGuide2.0.pdf OWASP Code Review Guide : Source Code Analysis Framework]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/index.php/OWASP_Cheat_Sheet_Series OWASP Cheat Sheet : Best practices guidelines for developers]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org OWASP Global]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Chapter Leaders / Responsables du chapitre ===&lt;br /&gt;
&lt;br /&gt;
* [mailto:anne.gauthier@owasp.org Anne Gauthier], President/Présidente&lt;br /&gt;
* [mailto:michel.bourque{at}owasp.org Michel Bourque], Chapter coordinator and marketing manager/Coordination et Marketing&lt;br /&gt;
* [mailto:hugo.genesse(at)owasp.org Hugo Genesse], Web content and production manager/Site internet et Production &lt;br /&gt;
* [mailto:olivier.arteau(at)owasp.org Olivier Arteau], Logistic manager/Logistique&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Special thanks to / Remerciements : &lt;br /&gt;
* Simon Lacasse, Web content / Site internet&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;b&amp;gt; Reach our chapter / Joindre le chapitre &amp;lt;/b&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Follow OWASP's Montreal chapter's activities through social medias, register to events, watch the previous presentations and more! &lt;br /&gt;
&lt;br /&gt;
Suivez les activités du chapitre OWASP Montréal via les réseaux sociaux, inscrivez-vous aux activités, visualisez les anciennes présentations et plus encore! &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;b&amp;gt;[http://lists.owasp.org/mailman/listinfo/owasp-montreal Click here] to join the local chapter mailing list.&lt;br /&gt;
&amp;lt;br /&amp;gt;[http://lists.owasp.org/mailman/listinfo/owasp-montreal Inscrivez-vous ici] à la liste de courriels du chapitre afin de recevoir les dernières nouvelles!&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Want to be part of the community ? &lt;br /&gt;
Devenez membre de notre communauté ! &lt;br /&gt;
[https://www.owasp.org/index.php/Membership_Map Click here / Cliquer ici]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Eb_press_little.gif‎|OWASP Montreal Eventbrite|link=http://owaspmontreal.eventbrite.ca/]] &lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[Image:Yt-brand-standard-logo-630px.png‎|128px|YouTube OWASP Montreal Channel|link=http://www.youtube.com/owaspmontreal]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]   &lt;br /&gt;
[[Image:Speakerdecklogo.png‎|Slides of OWASP Montreal on SpeakerDeck |link=https://speakerdeck.com/owaspmontreal]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Twitter-bird-cropped-onwhite.png|@owaspmontreal on Twitter|link=https://twitter.com/owaspmontreal]]&lt;br /&gt;
[[Image:FacebookSquareLogo.png|OWASP Montreal Facebook page|link=https://www.facebook.com/owasp.montreal]]&lt;br /&gt;
[[Image:LinkedinSquareLogo.png|OWASP Montreal on LinkedIn|link=https://www.linkedin.com/groups/1379007/profile]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
&lt;br /&gt;
== Sponsorship &amp;amp; Membership / Commandite &amp;amp; Adhésion ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Btn_donate_SM.gif|link=http://www.regonline.com/donation_1044369]] to this chapter or become a local chapter supporter.&lt;br /&gt;
&lt;br /&gt;
Or consider the value of [[Membership | Individual, Corporate, or Academic Supporter membership]]. Ready to become a member? [[Image:Join_Now_BlueIcon.JPG|75px|link=https://myowasp.force.com/]]&lt;br /&gt;
&lt;br /&gt;
[http://www.regonline.com/donation_1044369 Donnez] au chapitre ou devenez commanditaire du chapitre local! &lt;br /&gt;
&lt;br /&gt;
[https://myowasp.force.com/ Devenez membre !] Pour en savoir davantage sur les avantages d’une adhésion individuelle, corporative ou en tant qu’institution d’enseignement, [https://www.owasp.org/index.php/Membership cliquez ici]. &lt;br /&gt;
&lt;br /&gt;
[[Category:OWASP Chapter]]&lt;br /&gt;
&lt;br /&gt;
== Chapter Supporters / Commanditaires du chapitre ==&lt;br /&gt;
&lt;br /&gt;
[https://www.owasp.org/images/9/91/OWASP_Membership_Flyer_Montreal.png All details available here / Pour tous les détails] [[File:Chapter-supporter-owasp-montreal.png|200px|link=]] &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Platinum / Platine ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Gosecure-2.png|GoSecure|link=http://www.gosecure.ca/]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[File:Desjardins2-400x400.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Gold / Or ===&lt;br /&gt;
&lt;br /&gt;
[[Image:PM_SCADA_Logo_Gris_Cybersecurite_FR.png|PM SCADA|link=http://pmscada.ca/en/]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Lunch &amp;amp; Learn / Workshops 2017 =&lt;br /&gt;
&lt;br /&gt;
== Cas d'attaques vécus : Internet des objets (IOT) - Attaques DDoS ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Cas_dattaques_vecus-r.jpg  ]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 June 19th 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
Pour clore la saison printanière 2017, OWASP Montréal est fier d'accueillir au Midi Conférence, M. Christian Shink qui fera un survol de cas d'attaques vécus, des techniques utilisées et des acteurs impliqués dans ces attaques.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
L'incorporation généralisée de dispositifs «intelligents» dans les objets de la vie de tous les jours modifie la façon dont les gens et les machines interagissent les uns avec les autres. Cette incorporation offre une promesse d'une meilleure qualité de vie, une meilleure efficacité. En contrepartie, leur déploiement introduit également des vulnérabilités à la fois dans l'infrastructure qu'ils soutiennent et sur lesquels ils comptent, ainsi que dans les processus qu'ils guident. Que ce soit au niveau applicatif ou des infrastructures, ces vulnérabilités sont exploitées par des acteurs malicieux pour générer des attaques de déni de service massives et sophistiquées. Nous tenterons également de tirer des leçons afin de tenter de minimiser ce type d'attaques dans le futur.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Christian Shink possède plus d’une dizaine d’années d’expérience en développement et sécurité d’applications. Avant de se joindre à Radware, Christian était à l’emploi d'une firme conseil où il a conseillé de nombreuses entreprises, dont de grandes banques américaines et Casinos. Il détient une certification CSSLP et est membre de l'ordre des ingénieurs du Québec.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== HOW TO! Threat Modeling Toolkit ==&lt;br /&gt;
&lt;br /&gt;
[[Image:OWASPMtl-JonathanMarcil-1.jpg]]&lt;br /&gt;
[[Image:OWASPMtl-JonathanMarcil-3.jpg]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/threat-modeling-toolkit]] [https://speakerdeck.com/owaspmontreal/threat-modeling-toolkit See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 May 23rd, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Shopify Montreal&lt;br /&gt;
&lt;br /&gt;
Threat Modeling is a great way to analyze security early in software development by structuring possible attacks, bad actors and countermeasures over a broad view of the targeted system. This talk will describe basic components of a threat model and how to use them effectively.&lt;br /&gt;
Threat Intelligence is where you gather knowledge about the environment and business assets to determine what are the actual threats. But how do you reconcile that with the current architecture in a useful manner?&lt;br /&gt;
The toolkit presented in this talk will enable you to systematically structure related information using graphical notations such as flow diagram and attack tree. In case you are wondering where to start in your organization, a quick lightweight risk rating methodology will also be proposed.&lt;br /&gt;
And in the end, you’ll see how we can all tie those together and get threat modeling to a point where it’s an efficient application security activity for communication. Doing this will prevent security reviews from missing important things even when chaos prevails during the realization of a project.&lt;br /&gt;
Modeling concepts will be demonstrated with an actual IoT device used as example.&lt;br /&gt;
Presentation will be done in english.&lt;br /&gt;
&lt;br /&gt;
Speaker Bio:&lt;br /&gt;
Jonathan Marcil is the former chapter leader of OWASP Montreal and is now Senior Application Security Engineer at Blizzard Entertainment in beautiful Orange County, California.&lt;br /&gt;
Jonathan has been involved with OWASP for many years and has been behind the Media Project which gathered and promoted AppSec conferences video content in the official OWASP YouTube channel. He was also part of NorthSec CTF event as a challenge designer specialized in Web and imaginative contraptions.&lt;br /&gt;
He is passionate about Application Security and enjoys architecture analysis, code review, threat modeling and debunking security tools. He holds a diploma in Software Engineering from ÉTS Montreal and has more than 15 years of experience in Information Technology and Security.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Merci à nos précieux commanditaires !&lt;br /&gt;
&lt;br /&gt;
== Security Testing: Unlocking the Benefits of a Hybrid Approach ==&lt;br /&gt;
[[Image:Security testing hybrid approach-r 3.jpg    ]]&lt;br /&gt;
[[Image:Security testing hybrid approach-r 4.jpg    ]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/hybrid-approach-to-security-testing]] [https://speakerdeck.com/owaspmontreal/hybrid-approach-to-security-testing See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 April 24th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
As part of their defensive efforts, businesses commonly commission cybersecurity assessments of their web applications; with the aim of identifying any weaknesses in the security controls and ensuring a continually strong cybersecurity posture of their systems.&lt;br /&gt;
&lt;br /&gt;
The classical approach of either secure code review (white box) or penetration testing (black box) assessment have proven to be effective in securing of web applications. The new trend, however, is moving towards the combination of these two approaches; expert consensus is rapidly recognizing the advantages of using a hybrid approach. When applied properly, a hybrid approach can build on the strengths of both white and black box testing, while compensating for their individual shortcomings.&lt;br /&gt;
&lt;br /&gt;
In this presentation, we will examine the details of secure code review and penetration testing, and run demos to contrast their respective strengths and weaknesses. We will also examine why a hybrid approach can produce more complete and relevant assessment results. To conclude, we will cover proven approaches, and practical techniques, on how you can start leveraging a hybrid approach to web application assessments today.&lt;br /&gt;
&lt;br /&gt;
Anne Gauthier is an application security analyst at GoSecure. Anne is also the president of the Montreal Chapter of OWASP – the industry standard for web application security. With a penetration testing background, she specializes in secure code reviews and in helping companies to improve their software development lifecycle (SDLC) according to industry best practices. Anne is CSSLP, GWAPT and GSSP-JAVA certified. She obtained a Software Engineering bachelor’s degree from Ecole de Technologie Supérieure in Montréal and is now pursuing a Master of Engineering (MEng) degree in Information Systems Security at Concordia University. She is the author of the Project 201 Security blog.&lt;br /&gt;
&lt;br /&gt;
Merci à nos précieux commanditaires !&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;HOW-TO&amp;quot; NIGHT ! Tout sur les CTFs (Capture The Flag) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Howto_ctf.jpg]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://docs.google.com/presentation/d/1zEsCcX-Nvq8Nz0k-B1zHejCDNT2oGZx8oUBgMbvvMM0/edit#slide=id.p ]] [https://docs.google.com/presentation/d/1zEsCcX-Nvq8Nz0k-B1zHejCDNT2oGZx8oUBgMbvvMM0/edit#slide=id.p See the slides / Voir la présentation (Laurent Desaulniers)]&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://docs.google.com/presentation/d/1c1P1d2mKe767j1Y0V9cK6De5cpnK4I7GI-ORiodbg1A/edit#slide=id.p ]] [https://docs.google.com/presentation/d/1c1P1d2mKe767j1Y0V9cK6De5cpnK4I7GI-ORiodbg1A/edit#slide=id.p See the slides / Voir la présentation (Charles Hamilton)]&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=http://obilodeau.github.io/slides/2017-04-04_how-not-to-suck-at-ctfs/ ]] [http://obilodeau.github.io/slides/2017-04-04_how-not-to-suck-at-ctfs/ See the slides / Voir la présentation (Olivier Bilodeau)]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 April 4th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Shopify&lt;br /&gt;
&lt;br /&gt;
Cette nouvelle soirée &amp;quot;How-To&amp;quot; Night d'OWASP Montréal vise à présenter les CTFs (une compétition Capture The Flag) et aider les équipes à démarrer et à continuer à évoluer dans leurs pratique de la cyber sécurité pratique. L'objectif est d'outiller les participants en leur fournissant des ressources techniques et des contacts afin de les aider à progresser.&lt;br /&gt;
&lt;br /&gt;
Les éléments discutés seront:&lt;br /&gt;
&lt;br /&gt;
- Composition optimale d’une équipe : Fonctionnement d’une équipe de CTF et les principaux rôles (chef d’équipe, cryptographie, application web, rétro ingénierie et les causes perdues).&lt;br /&gt;
&lt;br /&gt;
- Pourquoi faire des CTFs? Discussion sur les différents styles (jeopardy, attack/defense, etc.), quels sont les problèmes fréquemments rencontrés + plusieurs anecdotes intéressantes (et drôles).&lt;br /&gt;
&lt;br /&gt;
- Trucs de Mr. Unikoder : Le créateur du fameux site ringzer0team, soit un des plus gros sites pour apprendre la résolution de problèmes de CTF (https://ringzer0team.com/) Apprenez des trucs du meilleur, sur comment débuter et interpréter un challenge web, binaire et crypto avec des trucs réels du métier.&lt;br /&gt;
&lt;br /&gt;
Matériel requis :&lt;br /&gt;
&lt;br /&gt;
    Votre légendaire enthousiasme&lt;br /&gt;
&lt;br /&gt;
Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
&lt;br /&gt;
Places limitées. Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Shopify pour l'événement.&lt;br /&gt;
&lt;br /&gt;
Présentateurs :&lt;br /&gt;
&lt;br /&gt;
Charles Hamilton, Senior Consultant chez Mandiant, FireEye, Inc.&lt;br /&gt;
&lt;br /&gt;
Olivier Bilodeau, Cybersecurity Research Lead at GoSecure&lt;br /&gt;
&lt;br /&gt;
Laurent Desaulniers, Senior Security Solution Specialist at Bell Canada&lt;br /&gt;
&lt;br /&gt;
== NorthSec - Applied Security Event ==&lt;br /&gt;
[[Image:Nsec_2017_midi_conf.jpg]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/northsec-applied-security-event]] [https://speakerdeck.com/owaspmontreal/northsec-applied-security-event See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 April 4th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
NorthSec: La plus grande compétition et conférence en cyber sécurité au Canada&lt;br /&gt;
&lt;br /&gt;
NorthSec est un organisme sans but lucratif qui organise une conférence et une compétition de sécurité de type &amp;quot;Capture-The-Flag&amp;quot; (CTF) et des formations. Avec plus de 400 participants présents sur le site pour la compétition, c’est la plus grande compétition du genre au monde.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
La conférence, dans sa 3e année, attire des présentateurs internationaux avec du contenu technique exclusif. L’ajout des séances de travail (workshops) devrait plaire aux plus chevronnés des binaires.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Des formations de 3 jours sont offertes avant la conférence: &amp;quot;Advanced Web Application Security&amp;quot; par Philippe Arteau et &amp;quot;Malware and Memory Forensics&amp;quot; par Michael Ligh, co-auteur des livres &amp;quot;Malware Analyst Cookbook&amp;quot; et &amp;quot;The Art of Memory Forensics&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
NorthSec est situé au Marché Bonsecours dans le Vieux-Port de Montréal au printemps du 15 au 21 mai 2017.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
La présentation couvrira:&lt;br /&gt;
&lt;br /&gt;
- Le plan pour 2017&amp;lt;br /&amp;gt;&lt;br /&gt;
- Ce qui différencie NorthSec&amp;lt;br /&amp;gt;&lt;br /&gt;
- Comment équilibrer une compétition pour les débutants et les experts&amp;lt;br /&amp;gt;&lt;br /&gt;
- Comment bâtir une infrastructure basée sur les conteneurs qui gère 50 équipes dans quelques serveurs sans qu’ils ne se partagent de machines virtuelles&amp;lt;br /&amp;gt;&lt;br /&gt;
- Comment faire du pain au levain à grande échelle&amp;lt;br /&amp;gt;&lt;br /&gt;
- Présentation de quelques défis et solutions&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Les présentateurs:&lt;br /&gt;
&lt;br /&gt;
- Gabriel Tremblay, Président, Delve Labs&amp;lt;br /&amp;gt;&lt;br /&gt;
- Olivier Bilodeau, VP Formations, Co-fondateur MontréHack, GoSecure&amp;lt;br /&amp;gt;&lt;br /&gt;
- Pierre-David Oriol, VP Conférences, Delve Labs&amp;lt;br /&amp;gt;&lt;br /&gt;
- Benoit Guérette, VP Partenaires, Desjardins&amp;lt;br /&amp;gt;&lt;br /&gt;
- Laurent Desaulniers, Tisserand de drapeaux, Bell Canada&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Merci à nos précieux commanditaires !&lt;br /&gt;
&lt;br /&gt;
== Sécurité des applications : Les fondements ==&lt;br /&gt;
[[Image:Tanya.jpeg]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/securite-des-applications-les-fondements]] [https://speakerdeck.com/owaspmontreal/securite-des-applications-les-fondements See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 March 20th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
OWASP Montréal est fier d’accueillir au Midi Conférence du mois de mars, Mme Tanya Janca, Co-Leader du chapitre OWASP Ottawa et spécialiste de la sécurité applicative au sein du Gouvernement fédéral.&lt;br /&gt;
&lt;br /&gt;
La conférence « Les fondements de la sécurité des applications » sera présentée en anglais.&lt;br /&gt;
&lt;br /&gt;
Session Description : Everyone has heard about the problem; everyone is “getting hacked”. But what is the answer? From scanning your code with a vulnerability scanner to red teaming exercises, developer education programs and bug bounties, this talk will take the audience through all the possibilities of an extensive application security program, with a detailed explanation of each part.&lt;br /&gt;
&lt;br /&gt;
Bio : Tanya Janca is an application security evangelist, a web application penetration tester and vulnerability assessor, a secure code reviewer, an ethical hacker, the Co-Leader of the OWASP Ottawa chapter, and has been developing software since the late 90’s. She has worn many hats and done many things, including; Custom Apps, Ethical Hacking, COTS, Incident Response, Enterprise Architect, Project and People Management, and even Tech Support. She is currently helping the Government of Canada secure their web applications.&lt;br /&gt;
&lt;br /&gt;
Merci à notre commanditaire principal de cet événement: Ubitrak!&lt;br /&gt;
&lt;br /&gt;
== WORKSHOP ! Server Side Template Injection (SSTI) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-okiok-SSTI-r.jpg | WORKSHOP ! Server Side Template Injection (SSTI) ]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/workshop-server-side-template-injection-ssti]] [https://speakerdeck.com/owaspmontreal/workshop-server-side-template-injection-ssti See the slides / Voir la présentation]&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 22 Février 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Shopify Montréal&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
OWASP Montreal vous invite à un atelier portant sur la sécurité des applications web supportant les moteurs de template (Template Engine). Le principe de séparation entre la présentation du site (code HTML statique) et de son contenu dynamique facilite la création de documents HTML et la capacité à modifier l'apparence du site sans mélanger le traitement et le rendu de la page. L'utilisation de moteurs de template amène de nouveaux enjeux de sécurité. Les vulnérabilités de type Server Side Template Injection (SSTI) sont exploitables à travers les données (non fiables) fournies par l'utilisateur et conduisent à l'exécution de code arbitraire (RCE) sur le serveur hébergeant l'application web.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ce workshop a pour but d'introduire cette classe de vulnérabilité à travers différents cas d'implémentation (php, java, python).&lt;br /&gt;
Nous verrons comment identifier et exploiter ces vulnérabilités et de quelle manière un attaquant peut &lt;br /&gt;
s'y prendre pour exécuter du code arbitraire sur le serveur afin d'en prendre le contrôle.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Niveau : Intermédiaire&amp;lt;br /&amp;gt;&lt;br /&gt;
Matériel requis :&lt;br /&gt;
* Votre portable&lt;br /&gt;
* Votre distribution Linux/Unix de votre choix&lt;br /&gt;
* Votre proxy Web de votre choix&lt;br /&gt;
&lt;br /&gt;
Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
Places limitées. Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Shopify pour l'événement.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Présentateur : Gérôme Dieu&amp;lt;br /&amp;gt;&lt;br /&gt;
Gérôme Dieu cumule plus de 7 années d’expérience en technologies de l’information et en sécurité. &lt;br /&gt;
Il œuvre à titre de conseiller senior en sécurité de l’information au sein de la firme OKIOK. Ces dernières années, il a acquis une expertise dans le domaine de la sécurité des applications web aussi bien d'un point de vue offensif que défensif. En plus de réaliser des tests d’intrusion pour des clients internationaux, Gérôme s’implique dans la recherche et développement afin de maintenir à la fine pointe de la technologie les tests d'intrusion et d'analyse de vulnérabilités. &amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Merci à Shopify d'héberger l'événement !&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Shopify Logo-r.png| Shopify | link=https://www.shopify.com/]]&lt;br /&gt;
== Le courriel en 2017 – risques et menaces pour tous ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Zero spam 2.jpg|Le courriel en 2017 – risques et menaces pour tous]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://www.youtube.com/watch?v=HX2vcijcCWw ]] [https://www.youtube.com/watch?v=HX2vcijcCWw Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 Le 23 janvier 2017 à midi&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
Monsieur Poellhuber nous brossera un tableau du phénomène grandissant du rançongiciels et de l'hameçonnage, personnification.&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
- Par les années passées, la menace courriel se résumait principalement en un fort volume de contenu simplement indésirable. Aujourd’hui la menace a passablement évolué. Quels sont les véritables risques actuels associés au courriel ? Rançongiciels, hameçonnage, personnification. Cette conférence présentera les nouveaux défis de sécurité pour les organisations qui doivent composer avec des attaques de plus en plus sophistiquées et de plus en plus ciblées tout en protégeant leur réputation. Des exemples biens réels, drôles et moins drôles seront disséqués pour bien dessiner l’ampleur de l’enjeu.&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
M. David Poellhuber, Chef de l’exploitation, ZEROSPAM Sécurité Inc&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note biographique :&amp;lt;br /&amp;gt;&lt;br /&gt;
Monsieur David Poellhuber oeuvre dans l’industrie de la sécurité informatique depuis quinze ans. Il a été conférencier dans plusieurs forums de sécurité au Canada et est maintenant reconnu comme une autorité en matière de sécurité du courriel. Il a fondé ZEROSPAM Sécurité en 2003, le premier service Québécois externalisé de sécurité du courriel infonuagique qui se distingue par sa convivialité, son efficacité et ses technologies de détection proactives.&amp;lt;br /&amp;gt;&lt;br /&gt;
Audience :  Généralistes et spécialistes de la sécurité des TI &lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Merci à Ubitrack pour le repas et à Desjardins d'héberger l'événement!&lt;br /&gt;
&lt;br /&gt;
[[Image:Ubitrak-r2.jpg|Ubitrak|link=http://www.ubitrak.com/fr/]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&lt;br /&gt;
== Effective XSS Mitigation ==&lt;br /&gt;
&lt;br /&gt;
[[Image:XSS mitigation.jpg | Effective XSS Mitigation ]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=http://slides.com/olivierarteau/xss-mitigation ]] [http://slides.com/olivierarteau/xss-mitigation See the slides / Voir la présentation]&lt;br /&gt;
&lt;br /&gt;
WHEN &lt;br /&gt;
 18 Janvier 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Google Montréal&lt;br /&gt;
&lt;br /&gt;
FRANÇAIS/ENGLISH&amp;lt;br /&amp;gt;&lt;br /&gt;
La mitigation de XSS a été un sujet important au cours des dernières années. Les navigateurs ont implémenté, en autre, deux fonctionnalités pour mitiger leur impact : l'entête &amp;quot;XSS-Protection&amp;quot; et l'entête &amp;quot;Content-Security-Policy&amp;quot;. Par contre, obtenir une mitigation contre les XSS efficace est souvent plus complexe que l'on pense. Cet atelier couvrira les deux entêtes. Il expliquera comme il est possible de contourner ces protections et ce qu'il est possible de faire pour se protéger. Des exercices de type &amp;quot;offensif&amp;quot; et &amp;quot;défensif&amp;quot; seront proposés.&lt;br /&gt;
Mitigation for XSS as been an important topic in the last few years. Browsers have implemented two main functionalities to help mitigate the impact of XSS : the &amp;quot;XSS-Protection&amp;quot; header and the &amp;quot;Content-Security-Policy&amp;quot; header. But, getting an effective XSS mitigation of those headers is trickier than it may seem. This workshop will cover both of those headers. It will explain how bypass of those protection work and what you can do about it. It will have both &amp;quot;defensive&amp;quot; exercises and &amp;quot;offensive&amp;quot; exercises.&lt;br /&gt;
Niveau : débutant/intermédiaire&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Matériel requis :&lt;br /&gt;
&lt;br /&gt;
Votre portable&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
&lt;br /&gt;
Places limitées. Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Google pour l'événement.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Présentateur : Olivier Arteau&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Olivier Arteau est un professionnel en sécurité informatique depuis quelques années et fait partie de l’équipe de test d’intrusion de Desjardins. Il est aussi un amateur de CTF qui a gagné à plusieurs reprises le CTF du NorthSec avec l’équipe HackToute et participe fréquemment à d’autres CTF avec l’équipe DCIETS.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Merci à Google d'héberger l'événement! &lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-zap-4-r.jpg | Google | link=https://www.google.ca/ ]]&lt;br /&gt;
&lt;br /&gt;
= Lunch &amp;amp; Learn / Workshops 2015-2016 =&lt;br /&gt;
&lt;br /&gt;
== WORKSHOP ! Top 10 OWASP - Unleash the threats ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-top10.jpg | WORKSHOP! Top 10 OWASP - Unleash the threats ]]&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 30 novembre 2016 de 17h30 à 20h30&lt;br /&gt;
WHERE&lt;br /&gt;
 Immunio @ WeWork&lt;br /&gt;
&lt;br /&gt;
De nos jours, la sécurité applicative est essentielle dans l’écosystème des entreprises de toutes tailles. Les vecteurs d’attaques sont multiples, les vulnérabilités de sécurité dans les applications peuvent être désastreuses et les impacts d’un « Hack » peuvent être irréversibles pour l’entreprise; vols de données sensibles, perte de réputation, perte de $$$$$, etc.&lt;br /&gt;
L’objectif du workshop est de comprendre la base sur les vulnérabilités de sécurité dans les applications et les techniques d’exploitation utilisées par les pirates informatiques, en plus de connaître les bonnes pratiques de développement en matière de sécurité applicative. &lt;br /&gt;
Avec l'aide de WebGoat, Damn Vulnerable Web Application et de Kali Linux, vous pourrez participer&lt;br /&gt;
à l'exploitation des applications et découvrir les techniques utilisées par les attaquants.&lt;br /&gt;
&lt;br /&gt;
Niveau : débutant&lt;br /&gt;
&lt;br /&gt;
Matériel requis :&lt;br /&gt;
 Votre portable&lt;br /&gt;
 Kali Linux&lt;br /&gt;
 La VM du workshop, envoyée aux participants&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
&lt;br /&gt;
Places très limitées (nb = 10). Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Immunio &amp;amp; WeWork pour l'événement.&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Présentateur : Christian Leclerc&lt;br /&gt;
&lt;br /&gt;
Christian est spécialisé en conception et développement de solutions web sécuritaires. Tout au long de sa carrière, il a acquis une vaste expertise sur plusieurs types de technologies et méthodologies, intégré la sécurité dans le cycle de développement d’applications, effectué des revues de code sécurité, déployé des outils d’analyse des vulnérabilités et mis en place des systèmes d’authentification. De plus, il a participé à la conception et au développement de solutions sécuritaires de pointe comme la signature électronique à l’aide d’une infrastructure à clé publique (PKI), les authentifications fortes, le Registre des consentements au don d'organes et de tissus (RDOQ.org) et la migration de plusieurs applications web vers un environnement SOA (Service Oriented Architecture). &lt;br /&gt;
&amp;lt;br&amp;gt;Merci à Immunio &amp;amp; WeWork d'héberger l'événement!&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:Immunio-horizontal-r.png|Immunio|link=https://www.immun.io/]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[Image:Wework-r.jpg|WeWork|link=https://www.wework.com/]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Histoire d'un Hack ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Histoire-dun-hack-r.jpg | Histoire d'un Hack ]]&lt;br /&gt;
&lt;br /&gt;
WHEN &lt;br /&gt;
 21 novembre 2016 à midi&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
Pour son activité du mois de novembre, OWASP Montréal propose à la communauté de la sécurité des TI et aux gestionnaires de faire l'autopsie d'une attaque de haute voltige sur un site web et des outils mis à la disposition par OWASP.&lt;br /&gt;
 &lt;br /&gt;
Bernard Bolduc cumule plus de 17 années d’expérience en technologies de l’information et en sécurité. Il œuvre à titre de conseiller senior en sécurité de l’information au niveau d’entreprise de classe nationale et internationale.&lt;br /&gt;
 &lt;br /&gt;
Bernard se spécialise en sécurité Unix, applicative et en gestion de la sécurité des télécommunications. Il combine ces expertises techniques afin d’obtenir des résultats probants et efficaces pour ces clients des secteurs bancaire, télécommunication et multimédias, de l’énergie ou des services publiques. Tout au long de sa carrière, Bernard s’est toujours maintenu à jour sur les dernières menaces de sécurité technologique et commerciale en assistant à des formations spécialisées et d'échanger avec un grand nombre de partenaires dans l'industrie de la sécurité.&lt;br /&gt;
 &lt;br /&gt;
La conférence débute à midi.&lt;br /&gt;
 &lt;br /&gt;
La conférence vous donne droit à 1 CPE et pour les 50 premières personnes, un lunch gratuit.&lt;br /&gt;
 &lt;br /&gt;
Merci à Desjardins d'héberger l'événement!&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Workshop ! Création de votre première extension OWASP ZAP (ou BurpSuite) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-zap-mix.jpg | Workshop ! Création de votre première extension OWASP ZAP (ou BurpSuite)]]&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 11 novembre 2016 de 18h à 21h&lt;br /&gt;
&lt;br /&gt;
WHERE &lt;br /&gt;
 Google Montréal&lt;br /&gt;
&lt;br /&gt;
OWASP Zed Attack Proxy (ZAP) est un scanneur de vulnérabilités et un outil de débogage HTTP. Ce type d'outil est crucial dans un test d'intrusion web et contient un lot intéressant de fonctionnalités. Cela dit, il est possible d'étendre les fonctionnalités. Plusieurs types d'extension sont possibles : vue alternative pour les requêtes ou les réponses, scanneur passif des réponses, scanneur actif produisant des requêtes, etc.&lt;br /&gt;
&lt;br /&gt;
Plusieurs options seront données, par exemple :&lt;br /&gt;
&lt;br /&gt;
 Détection automatique de flag dans les sources&lt;br /&gt;
 Scanneur actif asynchrone DNS&lt;br /&gt;
 Ou votre propre idée&lt;br /&gt;
&lt;br /&gt;
Pour chacune des suggestions, des squelettes de code seront fournis pour les APIs de ZAP. Pour les utilisateurs de BurpSuite, des directives analogues seront également données.&lt;br /&gt;
&lt;br /&gt;
Niveau : débutant / intermédiaire&lt;br /&gt;
&lt;br /&gt;
Matériel requis&lt;br /&gt;
&lt;br /&gt;
 Votre portable&lt;br /&gt;
 [https://www.owasp.org/index.php/OWASP_Zed_Attack_Proxy_Project OWASP ZAP (gratuit)]&lt;br /&gt;
 [https://portswigger.net/burp/download.html BurpSuite]&lt;br /&gt;
 Éditeur de code pour Java, Python ou Ruby&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Présentateur : Philippe Arteau&lt;br /&gt;
&lt;br /&gt;
Philippe est un chercheur en cybersécurité chez GoSecure. Il est l'auteur de l'outil d'analyse statique Java &amp;quot;Find Security Bugs&amp;quot;. Il a découvert des vulnérabilités importantes dans les logiciels populaires tels que Google Chrome, Dropbox, Paypal, RunKeeper et Jira. Il a présenté dans différentes conférences incluant Black Hat USA, Black Hat Europe, ATL Sec Con, NorthSec, Hackfest (QC) et JavaOne. Il a développé de nombreux plug-ins pour les outils de proxy BurpSuite et OWASP ZAP (Retire.js, Reissue Request Script, PDF preview et Image Metadata). Il a fait également des contributions à d'autres plug-ins comme J2eeScan.&lt;br /&gt;
&lt;br /&gt;
Merci à Google d'héberger l'événement! &lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-zap-4-r.jpg | Google | link=https://www.google.ca/ ]]&lt;br /&gt;
&lt;br /&gt;
==Logiciel de rançon (Ransomware) s'attaque au domaine de la santé==&lt;br /&gt;
&lt;br /&gt;
[[Image:HackingHealth-2.jpg | Logiciel de rançon (Ransomware) s'attaque au domaine de la santé ]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/ransomware-and-healthcare-hacking-health ]] [https://speakerdeck.com/owaspmontreal/ransomware-and-healthcare-hacking-health See the slides / Voir la présentation]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;(Conférence en anglais)&lt;br /&gt;
Pour le lancement de la saison 2016 - 2017, OWASP Montréal propose à la communauté de la sécurité des TI et aux gestionnaires de la santé une incursion dans le monde du logiciel malveillant ciblant le domaine de la santé.&amp;lt;br /&amp;gt;&lt;br /&gt;
Cette conférence s'intége dans le Coopérathon co-organisé par le Mouvement Desjardins et Hacking Health.&amp;lt;/b&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Le domaine de la santé serait devenu une cible privilégiée des campagnes de ransomware parce que l'industrie a souvent payé la rançon demandée pour récupérer les données confidentielles et vitales de ses clients. Monsieur Ed Gershfang nous brossera un portrait du phénomène et des meilleures pratiques à mettre en place en matière de sécurité applicative.&lt;br /&gt;
Ed Gershfang possède une expérience solide dans l'infrastructure informatique et plus de 6 ans d'expérience dans les domaines de la sécurité de l'information, de la vulnérabilité, de la gouvernance et de la gestion des risques. Il était directeur de la sécurité pour la société PeriGen, un chef de file de développement de logiciels médicaux en Israël.&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== La sécurité applicative vue par un pentesteur ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Juin2016-OWASPMtl.jpg | OWASP Montréal reçoit Mario Contestabile, Pentester de renom ]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
From Left to Right : Isabelle Lusseyran, Head of Development at Hacking Health. Eduard Gershfang Information Security Analyst at WSP | Parsons Brinckerhoff.&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/owasp-montreal-recoit-mario-contestabile ]] [https://speakerdeck.com/owaspmontreal/owasp-montreal-recoit-mario-contestabile See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Pour clore la saison 2015 – 2016, OWASP Montréal est fier d’accueillir au Midi Conférence un des architectes de renom du développement applicatif au Canada, monsieur Mario Contestabile.&lt;br /&gt;
En tant qu’auteur de plusieurs centaines de tests d’intrusion, il connait tous les rouages de ce qu’est véritablement une application Web «sécurisée». Mais avez-vous déjà remarqué que les rapports de tests d’intrusion mentionnent rarement, voir jamais : «Votre site est très difficile à pirater. Félicitations !» ?&lt;br /&gt;
Et qu’en est-il de ces rapports qui contiennent des dizaines de soi-disant vulnérabilités ? Est-ce que cela signifie d’emblée que l’application devrait être mise hors ligne ?  &lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Lors de cette conférence, nous examinerons des rapports concrets (ambigus) de vulnérabilités et nous les analyserons afin de mieux comprendre si elles représentent une véritable menace, ou si elles ne servent qu’à «remplir» les rapports.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Avec son expertise en protection et en attaque d’applications Web, il abordera les points suivants :&lt;br /&gt;
Comment pouvez-vous sélectionner des systèmes de façon à mieux exécuter des protections de sécurité ?&lt;br /&gt;
Éviter certains pièges dans votre application Web qui rendent les attaques plus faciles et la protection plus difficile.&lt;br /&gt;
De nos jours, que peuvent faire les développeurs à l’intérieur de systèmes communs, qui puisse me rendre la tâche plus ardue en tant que « hacker »?&lt;br /&gt;
Pouvons-nous exiger de meilleurs rapports de la part des firmes de sécurité?&lt;br /&gt;
À quoi devrions-nous nous attendre de la part d’un « pentesters »?&lt;br /&gt;
Comment pouvons-nous savoir si le « pentester » a vérifié les failles de l’application et qu’il n’a pas simplement utilisé un scanneur?&lt;br /&gt;
Et enfin, comment pouvons-nous aider les « ethical hackers » à obtenir un meilleur rendement lors d’un test d’intrusion?&lt;br /&gt;
Il expliquera le sujet en détails, et ensemble, nous verrons de quelles façons les développeurs d’applications peuvent exploiter le savoir-faire des « pentesters », et comment nous pouvons faire en sorte qu’une application Web soit protégée.&lt;br /&gt;
Biographie :&lt;br /&gt;
Mario Contestabile est reconnu comme l’un des experts en sécurité les plus réputés au Canada. Son expertise, construire et protéger votre plateforme applicative. Ancien développeur C++ et Java, Mario partage ses nombreuses connaissances en « ethical hacking » et en développement de codes sécurisé.  &lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Tuesday, 14 June 2016 from 12:00 PM to 1:00 PM (EDT) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Comment protéger les applications mobiles? ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Avril2016-OWASPMtl.png | Comment protéger les applications mobiles? ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/comment-proteger-les-applications-mobiles ]] [https://speakerdeck.com/owaspmontreal/comment-proteger-les-applications-mobiles See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Dans le cadre des Midis Conférence à l'Espace Desjardins, l'équipe OWASP Montréal vous invite à assister à une présentation sur les vulnérabilités les plus communes associées aux appareils mobiles. &lt;br /&gt;
Marie-Claire Willig détaillera entre autres comment stocker de façon sécuritaire les données de l’application mobile ainsi que protéger l’application contre des attaques externes. Des outils simples vous seront dévoilés pour détecter ces vulnérabilités.&lt;br /&gt;
Marie-Claire est une professionnelle d'expérience en sécurité appliquée.&lt;br /&gt;
Une grande partie de son intérêt professionnel réside actuellement dans un domaine assez niche, soit la revue de code sécuritaire, un fondement important de tout cycle de développement sécuritaire en entreprise.&lt;br /&gt;
Au sein de l'équipe de sécurité technologique Desjardins, elle est, en autre, responsable de former les développeurs (Java et .NET principalement) afin de les sensibiliser aux meilleures pratiques de développement sécuritaire.&lt;br /&gt;
Également, elle est une professionnelle des tests d'intrusion sur les applications web, les applications mobiles ainsi que l'infrastructure réseau.&lt;br /&gt;
Bienvenue à tous&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 20 April 2016 from 12:15 PM to 1:00 PM (EDT) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== NorthSec, Le plus gros événement de cybersécurité appliquée au Canada ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Mars2016-OWASPMtl.jpg | NorthSec, Le plus gros événement de cybersécurité appliquée au Canada ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/YQtvltQYs7Y]] [https://youtu.be/YQtvltQYs7Y Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
OWASP Montréal est fier d’inviter au Midi Conférence de mars, NorthSec est le plus gros événement de sécurité appliquée au Canada qui comprend deux jours de formation, deux jours de conférences ainsi qu’une compétition du genre « capture the flag » (CTF) de trois jours.&lt;br /&gt;
Gabriel Tremblay, Benoit Guerette, Pierre-David Oriol et Laurent Desaulniers viendront vous parler de cet organisme sans but lucratif dynamique qui est géré par une équipe de bénévoles passionnés qui donnent à chaque année leur énergie et leur temps pour soutenir la communauté de la sécurité de l’information.&lt;br /&gt;
Le volet compétition, l’épreuve maîtresse, est présentée sous forme d’un scénario qui rend cohérent une centaine de défis techniques. Les équipes de participants attaquent l’infrastructure de compétition pour soutirer des drapeaux (flags) à travers un ensemble de vulnérabilités présentes comme de l’injection SQL, des XSS ou encore l’exploitation d’exécutables sur systèmes embarqués. Quelques exemples de défis des années passées seront également présentés.&lt;br /&gt;
Le volet conférence, qui est à sa 2ème année, met de l’avant plusieurs présentations techniques touchant la sécurité applicative mais aussi l’éthique et leurs impacts sociaux. Certaines présentations confirmées seront dévoilés.&lt;br /&gt;
Le tout nouveau volet formation propose deux formations en sécurité applicative de calibre international (anglais) : “Advanced Web Security Testing with Burp Pro” et “Modern Object-Oriented Malware Reverse Engineering”.&lt;br /&gt;
Venez aussi, découvrir comment l'équipe est partie d'une idée en 2012 pour se rendre à un évènement d'envergure, qui rassemblera plus de 600 professionnels, étudiants et autres passionnés de sécurité appliquée lors de la 4ème édition qui aura lieu du 17 au 22 mai 2016 au Marché Bonsecours.&lt;br /&gt;
Finalement, la mission, la vision ainsi que les activités sociales de la semaine de NorthSec sont aussi au menu de cette présentation qui sera suivie d’une période de questions.&lt;br /&gt;
&lt;br /&gt;
Gabriel Tremblay, Delve Labs, Président&lt;br /&gt;
Benoit Guerette, Desjardins, VP Finances&lt;br /&gt;
&lt;br /&gt;
Pierre-David Oriol, Delve Labs, VP Conférence&lt;br /&gt;
Laurent Desaulniers, Bell Canada, Artisant de drapeaux&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 23 March 2016 from 12:00 PM to 1:00 PM (EDT) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== La sécurité applicative et l'hameçonnage - February 24th ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Fevrier2016-OWASPMtl.jpg | La sécurité applicative et l'hameçonnage ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/1RYlOiIENjQ]] [https://youtu.be/1RYlOiIENjQ Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
De nos jours, une des méthodes les plus efficaces pour contourner les périmètres de sécurité externes est l'hameçonnage conjointement avec l’abus de certaines technologies Web.&lt;br /&gt;
&lt;br /&gt;
Dans le cadre ses activités, OWASP Montréal est heureux d'inviter d'accueillir, l'équipe OKIOK qui présentera les impacts liés à ce type d'attaque, tel que vu et expérimenté en entreprise ainsi que les plans d'action pour traiter ces risques. La présentation abordera aussi bien la sécurité web et applicatives, des systèmes informatiques ainsi que de la sécurité physique de centres de données. &lt;br /&gt;
&lt;br /&gt;
    Capture d'informations sensibles par imitations de portails Web ;&lt;br /&gt;
    Authentification Web par 2-facteurs ;&lt;br /&gt;
    Injection SMTP dans des formulaires Web ;&lt;br /&gt;
    Attaque de type “Drive-by-download”;&lt;br /&gt;
    Prise de contrôle à distance à travers des flux HTTP;&lt;br /&gt;
    Attaque de CSRF à partir de courriels ;&lt;br /&gt;
    Attaque d'hameçonnage basée sur des achats par Internet (ex : PayPal).&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
When&lt;br /&gt;
 Wednesday, 24 February 2016 from 12:00 PM to 1:15 PM (EST) - Add to Calendar &lt;br /&gt;
Where&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest Montreal, Quebec CA&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Internet of {Things, Threats} - January 20th ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Janvier2016-OWASPMtl-R.png | Internet of {Things, Threats} ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=http://gosecure.github.io/presentations/2016-01-20_owasp-mtl/internet-of-threats.html ]] [http://gosecure.github.io/presentations/2016-01-20_owasp-mtl/internet-of-threats.html See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
De plus en plus de périphériques se retrouvent connectés sur Internet. Sous la bannière &amp;quot;Internet of Things&amp;quot; (IoT) ces équipements, que ce soit une pompe à insuline ou un système de caméra de sécurité, tournent généralement sous un système GNU/Linux embarqué d'architecture MIPS ou ARM. La difficulté de mettre à jour ces équipements ainsi que le peu d'effort mis dans la sécurité des systèmes ou la sécurité applicative en font des cibles de choix. Ces derniers mois, nous avons analysé plusieurs logiciels malveillants ciblant ces architectures. Que ce soit par l'exploitation d'une vulnérabilité (Shellshock) ou encore un défaut de configuration, ces systèmes exposés sur Internet peuvent être compromis.&lt;br /&gt;
&lt;br /&gt;
Notre présentation couvrira quelques une de ces analyses:&lt;br /&gt;
&lt;br /&gt;
* Linux/Moose, un malware se propageant automatiquement qui fraude les réseaux sociaux (par exemple Facebook, Twitter et YouTube)&lt;br /&gt;
* LizardSquad et acteurs étrangers qui utilisent des systèmes embarqués compromis pour réaliser des dénis de service distribué (DDoS) &lt;br /&gt;
* Win32/RBrute est un logiciel malveillant qui tente de changer les paramètres de routeurs dans le but de faire du &amp;quot;DNS poisoning&amp;quot;. Il a été distribué par le populaire botnet Sality.&lt;br /&gt;
* Un kit d'exploits qui utilise seulement le navigateur de leur victime avec le même objectif, c'est-à-dire faire du &amp;quot;DNS poisoning&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Enfin, des conseils seront proposés à l'audience pour l'aider à se protéger de ces menaces.&lt;br /&gt;
&lt;br /&gt;
'''Thomas Dupuy''' (twitter: @nyx__o)&lt;br /&gt;
&lt;br /&gt;
Thomas est chercheur en logiciel malveillant chez ESET Canada Recherche. Bon vivant, Thomas déjeune en &amp;quot;reversant&amp;quot; des binaires, contribue à quelques projets open source durant le diner (yara, yara rules, pefile, APTnotes) et la nuit participe à des &amp;quot;Hacking Games&amp;quot; (Capture The Flag). Curieux de nature Thomas analyse des malware aux architectures &amp;quot;exotiques&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Olivier Bilodeau''' (twitter: @obilodeau)&lt;br /&gt;
&lt;br /&gt;
Olivier Bilodeau is the head of Cybersecurity Research at GoSecure a consultancy firm specializing in cybersecurity services for the public and private sector. With more than 10 years of infosec experience, Olivier worked on Unix servers at Bell Canada, managed a portion of Air Canada's network, wrote open source network access control software at Inverse and worked as a Malware Researcher at ESET. He likes to reverse engineer everything that crosses his path, participate in information security capture-the-flag competitions, hack open source code and brew beer. He has spoken at various conferences (Defcon, Botconf, VirusBulletin, Derbycon, ...), used to lecture on information security at ETS University in Montreal, drives the NorthSec Hacker Jeopardy and co-organizes the MontreHack capture-the-flag training initiative. His primary research interests include reverse-engineering tools, Linux and/or embedded malware and honeypots.&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Survivre aux attaques DDOS applicatives ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Decembre2015-OWASPMtl.jpg | Survivre aux attaques DDOS applicatives ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Survivre aux attaques DDOS (Distributed Denial-Of-Service) applicatives.&lt;br /&gt;
Cette conférence s'adresse aux professionnels et gestionnaires des TI.&lt;br /&gt;
Conférencier : Christian Shink, ing., CSSLP, ingénieur système chez Radware, manufacturier spécialisé dans la prévention des attaques DDOS. Il fut également consultant en sécurité applicative chez In Fidem.&lt;br /&gt;
Objectifs de la conférence:&lt;br /&gt;
Présenter les tendances actuelles en matière d'attaques DDOS applicatives.&lt;br /&gt;
Renseigner les participants sur les techniques et stratégies pour contrer ces attaques illustrées à partir de cas vécus.&lt;br /&gt;
Démystifier certains mythes en ce qui concernent les façons efficaces de protéger les applications contre des attaques DDOS.&lt;br /&gt;
Date : 16 décembre 2015&lt;br /&gt;
Heure : 11h45&lt;br /&gt;
La conférence débute à 12h00 et se termine à 12:55.&lt;br /&gt;
Un lunch sera servi.&lt;br /&gt;
Réservez maintenant!&lt;br /&gt;
1 CPE&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 16 December 2015 from 11:45 AM to 1:00 PM (EST) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec &lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Sécurité des applications - Systèmes de contrôles industriels ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Novembre2015-OWASPMtl-R.png | Sécurité des applications - Systèmes de contrôles industriels ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/0eAZpyiQQ9A]] [https://youtu.be/0eAZpyiQQ9A Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&lt;br /&gt;
La sécurité des applications et les systèmes de contrôles industriels.&lt;br /&gt;
Cette conférence s'adresse aux professionnels et gestionnaires des TI desinfrastructures critiques qui exploitent ou gèrent des systèmes de contrôles industriels(SCI) et SCADA (surveillance et d'acquisition de données).&amp;lt;br /&amp;gt;&lt;br /&gt;
Conférenciers : Robert Nastas, CSSA. Gestionnaire de projet et Youssef Jad, Architecte Cyber sécurité, ICS-CERT&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Objectifs de la conférence:&lt;br /&gt;
* Démystifier le domaine d'affaires.&lt;br /&gt;
* Renseigner les participants sur les bonnes pratiques de sécurité desapplications liées au secteur industriel.&lt;br /&gt;
* Proposer aux professionnels et gestionnaires des TI responsables dessystèmes SCADA et SCI des pistes de solutions aux enjeux de sécurité.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
L'équipe OWASP Montréal vous remercie d'avoir assisté en grand nombre à la conférence, 'La sécurité des applications et les systèmes de contrôles industriels'.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 18 November 2015 from 11:45 AM to 1:00 PM (EST) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Les préoccupations actuelles de hauts dirigeants en matière de cybersécurité et de sécurité applicative ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Septembre2015-OWASPMtl.jpg | Les préoccupations actuelles de hauts dirigeants en matière de cybersécurité et de sécurité applicative ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/un-regard-sur-la-securite-de-linformation-en-2015-par-eric-hebert ]] [https://speakerdeck.com/owaspmontreal/un-regard-sur-la-securite-de-linformation-en-2015-par-eric-hebert See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Pour le lancement des activités corporatives de la saison 2015 - 2016, le 8 septembre prochain à 12:00, l'équipe OWASP Montréal convie les gestionnaires et artisants de la sécurité des TIC à venir entendre monsieur Éric Hébert qui nous présentera son interprétation des préoccupations actuelles de hauts dirigeants en matière de cybersécurité et de sécurité applicative. L'événement se tiendra au complexe Desjardins à la salle &amp;quot;Espace Desjardins&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
''' ÉRIC G. HÉBERT, CISM, CISSP ''' &amp;lt;br /&amp;gt;&lt;br /&gt;
Après plus de 20 ans passés dans le domaine de la sécurité des technologies de l’information, Éric se spécialise dans la mise en œuvre et la gestion d'équipes performantes, capables de relever les plus hauts défis de la cybersécurité moderne.&amp;lt;br /&amp;gt;&lt;br /&gt;
Capable de dialoguer avec les hauts dirigeants, il sait traduire et vulgariser les enjeux techniques complexes tout en respectant la nature et l'appétence au risque de ses clients. Dynamique et pourvu d'une expérience couvrant presque toutes les sphères de la SI, il fonce dans le respect de la culture établie tout en implantant des solutions pragmatiques et efficaces.&amp;lt;br /&amp;gt;&lt;br /&gt;
Depuis plus de 10 ans, il gravite principalement autour des entreprises du domaine financier (BNC, Desjardins, Fonds de solidarité FTQ...) et les accompagne dans la mise en place de solutions efficaces tenant compte à la fois des risques et des budgets.&lt;br /&gt;
En plus d’avoir fondé de nombreuses associations telles que le RéseauSécurIT et le RPSI, il maintient une présence régulière auprès des milieux associatifs professionnels et partage régulièrement ses expériences lors de conférences et d'entrevues avec divers médias.&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Events / Évènements =&lt;br /&gt;
&lt;br /&gt;
== Owasp Montreal at [https://nsec.io/ NorthSec 2017] ==&lt;br /&gt;
&lt;br /&gt;
[[Image:NorthSec2017-5.jpg]]&lt;br /&gt;
[[Image:NorthSec2017-6.jpg]]&lt;br /&gt;
&lt;br /&gt;
From Left to Right: Anne Gauthier, OWASP Montréal Chapter Leader (President) and Application Security Analyst at GoSecure, Hugo Genesse, OWASP Montréal Chapter Leader and Research Intern at PNF Software, Julien, OWASP Montréal Chapter Leader&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal at [https://2017.appsec.eu/ AppSec] ==&lt;br /&gt;
&lt;br /&gt;
[[Image:OWASPAppSecBelfast2017-7.jpg]]&lt;br /&gt;
&lt;br /&gt;
OWASP Montreal and Ottawa Chapter Leaders at OWASP AppSec Belfast, UK #WomenInAppSec&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal at [https://hackfest.ca/ HackFest 2016] ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hackfest2016-r.jpg| HackFest |link=https://hackfest.ca/]]&lt;br /&gt;
&lt;br /&gt;
From left to right: Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Louis Nadeau, OWASP Québec Chapter Leader and Manager, Product Security at Bentley Systems and Patrick Leclerc, OWASP Québec Chapter Leader and Information Security Advisor at La Capitale.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal at OWASP [https://2016.appsecusa.org/ AppSec USA 2016, Washington] ==&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:OWASPMtl-AppSecUSA2016-Washington.jpg | OWASP Montreal at AppSec USA 2016, Washington]] &lt;br /&gt;
&lt;br /&gt;
​From left to right: Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Marie-Claire Willig, Application Security Analyst at Desjardins, Speaker and Cofounder of the Roslyn Security Guard tool which will be presented at Blackhat 2016, Alexandre Hamelin President at Synlabs Consulting Inc., Jonathan Marcil, Application Security Engineer at Blizzard Entertainment and former OWASP Montreal Chapter Leader. Philippe Arteau, Cybersecurity Researcher at GoSecure and designer of [https://find-sec-bugs.github.io/ Find Security Bugs] and Roslyn Security Guard tool which will be presented at Blackhat 2016.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://www.gosec.net GoSec] 2016 ==&lt;br /&gt;
&lt;br /&gt;
[[Image:OWASP-GoSec2016-1r.jpg|OWASP Montreal at GoSec 2016]] [[Image:OWASP-GoSec2016-2r.jpg|OWASP Montreal at GoSec 2016]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
From left to right : Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Simon Lacasse, student and volunteer, and Laurent Desaulniers, Security Analyst at Bell Canada.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://www.nsec.io/ NorthSec] 2016 – Annual Applied Security Event ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hackfest2016-OWASPMtl.jpg|OWASP Montreal at NorthSec 2016]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Simon Veilleux &lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
From left to right : Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Olivier Arteau OWASP Montréal Chapter Leader and Conseiller chez Groupe Technologie Desjardins, Hugo Genesse, OWASP Montréal Chapter Leader and Vulnerability Research Intern at Wurldtech Security Technologies.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://hackfest.ca/en/ Hackfest] 2015 ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hackfest2015-OWASPMtl-R.JPG | OWASP Montreal at Hackfest 2015]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Hackfest &lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
From left to right : Jonathan Marcil, Application Security Engineer at Blizzard Entertainment and former OWASP Montreal Chapter Leader. Philippe Arteau, Cybersecurity Researcher at GoSecure and designer of [http://find-sec-bugs.github.io/ Find Security Bugs] and Roslyn Security Guard tool which will be presented at Blackhat 2016. &lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/8U0qkEuUFy8]] [https://youtu.be/8U0qkEuUFy8 Watch the video / Regarder la vidéo]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://www.gosec.net/ GoSec] 2015 – The Annual Cybersecurity Conference presented by GoSecure, EY and ISACA. ==&lt;br /&gt;
&lt;br /&gt;
[[Image:GoSec2015-OWASPMtl.jpg|OWASP Montreal at GoSec 2015]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
From left to right : Marie-Claire Willig, Application Security Analyst at Desjardins, Speaker and Cofounder of the Roslyn Security Guard tool which will be presented at Blackhat 2016. Benoît Guérette, Application Security Team Leader at Desjardins, VP Finance at NorthSec and OWASP Montreal Chapter Founder and Former Chapter Leader.&lt;br /&gt;
&lt;br /&gt;
== See also / Voir aussi ==&lt;br /&gt;
&lt;br /&gt;
OWASP Montréal recommends Montréhack. Learn and share knowledge on IT security by solving technical challenges. Third Monday of every month. &lt;br /&gt;
&lt;br /&gt;
OWASP Montréal recommende Montréhack. Apprends et partages des connaissances sur la sécurité informatique en travaillant des problèmes appliqués. Chaque troisième lundi du mois. &lt;br /&gt;
&lt;br /&gt;
[[File:Montrehack.png|Montréhack|link=http://montrehack.ca/|alt=Montréhack]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Archives 2007-2015 =&lt;br /&gt;
{{:Montreal chapter past meetings}}&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - February 3rd - Getting to Know the Software Assurance Marketplace (SWAMP) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/p4_vjufcB6Q]] [https://youtu.be/p4_vjufcB6Q Watch the conference / Regarder la conférence]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/getting-to-know-the-software-assurance-marketplace-swamp-by-pat-beyer]] [https://speakerdeck.com/owaspmontreal/getting-to-know-the-software-assurance-marketplace-swamp-by-pat-beyer See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Pat Beyer&lt;br /&gt;
*'''ADDITIONAL PRESENTER:'''  Abe Megahed&lt;br /&gt;
*'''ABSTRACT:''' The Software Assurance Marketplace (SWAMP) is an open facility that is designed, built, and operated by four research institutions. The SWAMP provides no-cost access to an array of open-source and commercial software analysis tools. This presentation will provide an overview and demo of the SWAMP, including our goals, intended audience, current capabilities, and future plans. We will cover our relationship with OWASP, incorporation of open-source software assurance tools, and status as an open-source project and resource available to the software community. Visit https://continuousassurance.org/ to learn more about us.&lt;br /&gt;
*'''BIO:''' Pat Beyer serves as the Product Manager for the Software Assurance Marketplace (SWAMP). With over 25 years of experience successfully managing multi-million dollar global projects, Beyer’s expertise extends to the IT, construction, and operations sectors, with a specialization in managing government contracts and grants. A gifted communicator, Beyer is a sought after speaker due to his ability to deliver complex information about technology products and services in a way that is easily understood. He is a decorated combat veteran of the Global War on Terror, the international military campaign that started following the 9/11 terrorist attacks on the United States. In 2004, he constructed and rehabilitated over 20 schools, clinics, and water treatment plants for the Iraqi people using local contractors. Beyer also holds a Bachelor of Science, a Masters in Business Administration, a Ph.D. in Organization and Management, and a Project Management Professional (PMP) certification.&lt;br /&gt;
*'''BIO:''' Abe Megahed is a web developer for the Software Assurance Marketplace. In previous lifetimes, he has been a computer graphics researcher, a game programmer, a programming language and compiler nerd, a dot com company founder, a creator of helicopter simulations, and a developer of 3D simulations for NASA astronaut crew training.&lt;br /&gt;
*'''WHEN:'''  Tuesday, February 3rd 2015&lt;br /&gt;
*'''WHERE:''' Room PK-1140 - UQAM Pavillon Président-Kennedy, 201 Avenue du Président-Kennedy  J2X 3Y7&lt;br /&gt;
*'''REGISTRATION:''' https://owaspmtlswamp2015.eventbrite.ca&lt;br /&gt;
*'''WEBCAST:''' https://www.youtube.com/watch?v=p4_vjufcB6Q&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/getting-to-know-the-software-assurance-marketplace-swamp-by-pat-beyer&lt;br /&gt;
&lt;br /&gt;
*'''ACADEMIC PARTNER:''' AGEEI-UQAM - http://www.ageei.org/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Welcome speech by Chapter Leader (Jonathan Marcil)&lt;br /&gt;
  18:30-20:00 Main session: Getting to Know the Software Assurance Marketplace&lt;br /&gt;
  20:00-...   End of the meeting&lt;br /&gt;
&lt;br /&gt;
[[Image:SWAMP-Logo-Final-Med.png|300px|link=https://continuousassurance.org/]]&lt;br /&gt;
[[Image:Ageeilogo.jpg|200px|link=http://www.ageei.org/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - 4 décembre - Malware côté serveur — évolution, méthodes d’opération et forensic Linux ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/lo8WDl-WQ3E]] [https://youtu.be/lo8WDl-WQ3E Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/malware-cote-serveur-par-marc-etienne-m-dot-leveille]] [https://speakerdeck.com/owaspmontreal/malware-cote-serveur-par-marc-etienne-m-dot-leveille See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''PRÉSENTATEUR PRINCIPAL:''' Marc-Etienne M.Léveillé&lt;br /&gt;
*'''RÉSUMÉ:''' Les logiciels malveillants ciblant les serveurs ont évolué. Ils sont utilisés par des groupes de cybercriminels organisés dans le but de faire du profit via des redirections web et l’envoie de pourriels. La présentation portera sur Opération Windigo, une opération malveillante qui a affecté plus de 25 000 serveurs dans le monde. Après une brève description des composantes de Windigo, nous verrons comment les opérateurs déploient leurs logiciels malveillants et surveille leur réseau de serveurs infectés. Des trucs pratiques pour faire de la forensics sur des systèmes Linux seront donnés. Cette présentation est une suite à la présentation &amp;quot;Linux/Cdorked: Server side malware&amp;quot;, donnée par Olivier Bilodeau à OWASP Montréal en 2013. La présentation sera en français avec des diapositives en anglais (aka Montreal-style).&lt;br /&gt;
*'''BIO:''' Marc-Etienne est un chercheur en logiciel malveillant chez ESET depuis 2012. Il se spécialise dans les logiciels malveillants qui s’attaquent à des plateformes inhabituelles comme aux produits fruités et aux oiseaux nordiques. Dernièrement, il passe beaucoup de son temps à faire la rétro-ingénierie de logiciels malveillants sur des serveurs Linux et s’intéresse à leurs méthodes d’opération. Il adore participer de façon collégiale aux CTFs avec ses amis les CISSP Groupies et jouer de la clarinette. Il tweet très peu à @marc_etienne_.&lt;br /&gt;
*'''QUAND:''' 4 décembre 2014 à 18h00&lt;br /&gt;
*'''OÙ:''' Local M-1510, Polytechnique Montréal, 2900 Boulevard Edouard-Montpetit&lt;br /&gt;
*'''INSCRIPTION:''' https://www.eventbrite.ca/e/owasp-montreal-4-decembre-malware-cote-serveur-evolution-methodes-doperation-et-forensic-linux-tickets-14635313617&lt;br /&gt;
*'''ÉQUIPE ACADÉMIQUE:''' Polyhack - http://polyhack.org/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
&lt;br /&gt;
 18:00-18:30 Réseautage&lt;br /&gt;
 18:30-18:35 Mot de bienvenue par le leader du chapitre (Jonathan M.)&lt;br /&gt;
 18:35-19:30 Présentation principale : Malware côté serveur&lt;br /&gt;
 19:30-20:00 Période de questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Polyhacklogonoirpetit.png|200px|link=http://polyhack.org/]]&lt;br /&gt;
[[Image:LogoPolytechnique.gif|link=http://www.polymtl.ca/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - October 23rd - XXE : À l’assaut des analyseurs XML ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/MZviLB9-42E]] [https://youtu.be/MZviLB9-42E Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/xxe-a-lassaut-des-analyseurs-xml-par-philippe-arteau]] [https://speakerdeck.com/owaspmontreal/xxe-a-lassaut-des-analyseurs-xml-par-philippe-arteau See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''PRÉSENTATEUR PRINCIPAL:''' Philippe Arteau&lt;br /&gt;
*'''RÉSUMÉ:''' L'utilisation d’XML est fortement répandue. Le format est utilisé pour des fichiers de configuration, pour des métadonnées, pour des documents textes, et bien plus. La prise en charge de fichiers XML n’est pas sans risque. La plupart des analyseurs XML ne sont pas sécuritaires par défaut pour le traitement de fichier externe. Cette présentation fera un survol des vulnérabilités de type « Xml eXternal Entity » et de l’étendue des risques pour différents langages de programmation. Plusieurs démonstrations sont prévues.&lt;br /&gt;
*'''BIO:''' Philippe est conseiller en sécurité applicative pour le Groupe Technologies Desjardins. Au quotidien, il s’occupe d’effectuer des tests d’intrusions et des revues de code. Il a découvert des vulnérabilités importantes dans plusieurs logiciels populaires incluant Google Chrome, DropBox, ESAPI et Jira.&lt;br /&gt;
*'''QUAND:'''  23 Octobre 2014 à 18h00&lt;br /&gt;
*'''OÙ:''' École de Technologie Supérieure Local A-3230, 1100 Rue Notre-Dame Ouest, Montréal, QC H3C 1K3&lt;br /&gt;
*'''INSCRIPTION:''' http://www.eventbrite.ca/e/owasp-montreal-23-octobre-xxe-a-lassaut-des-analyseurs-xml-tickets-13426881163&lt;br /&gt;
*'''PARTENAIRE ACADÉMIQUE:''' ETS - DCI http://dciets.com/&lt;br /&gt;
*'''PROGRAMME:''' &lt;br /&gt;
&lt;br /&gt;
 18:00-18:30 Réseautage&lt;br /&gt;
 18:30-18:45 Mot de bienvenue&lt;br /&gt;
 18:45-19:45 Présentation principale - &amp;quot;À l’assaut des analyseurs XML&amp;quot; Philippe Arteau&lt;br /&gt;
 19:45-20:00 Période de questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Blason_dci.png‎‎‎|150px|link=http://dciets.com/]]&lt;br /&gt;
[[Image:ETS-rouge-devise-impr-fond_transparent.png|150px|link=http://www.etsmtl.ca/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - July 24th - Web security for DevOps: the glory is in the headers ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/6bp1NCLT-YQ]] [https://youtu.be/6bp1NCLT-YQ Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/web-security-for-devops-the-glory-is-in-the-headers-by-jonathan-marcil]] [https://speakerdeck.com/owaspmontreal/web-security-for-devops-the-glory-is-in-the-headers-by-jonathan-marcil See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Jonathan Marcil&lt;br /&gt;
*'''ABSTRACT:''' DevOps is a buzzword which can be easily demystified: in essence it is a process which aims to combine the development and system administration process into one; Operations. As developers become responsible for server setup, security counter measures are evolving as well. The line between server configuration and application behaviour has been blurred. In this talk we will cover some HTTP headers in regards to security such as CORS, CSP and HSTS. We will demonstrate several forms of attack, and how they can (should) be countered.&lt;br /&gt;
*'''BIO:''' Jonathan is devoted to security and specialized in Web application security.  His main occupation is consulting in Web security, but deep down he is a developer with a agnostic vision of programming languages. He has a diploma in Software Engineering from Ecole de Technologie Superieure and more than 10 years of experience in Information Technology and Security.&lt;br /&gt;
*'''WHEN:'''  At noon on July 24th 2014&lt;br /&gt;
*'''WHERE:''' 75 Queen Street, office 3100, Montreal, QC H3C 2N6&lt;br /&gt;
*'''REGISTRATION:''' You can join us on site for a pizza slice but this is mainly an online event. Contact jonathan.marcil@owasp.org.&lt;br /&gt;
*'''WEBCAST:''' https://www.youtube.com/watch?v=6bp1NCLT-YQ&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/web-security-for-devops-the-glory-is-in-the-headers-by-jonathan-marcil&lt;br /&gt;
*'''EVENT SPONSOR:''' Pheromone http://www.pheromone.ca/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  12:00-12:10 Welcome and quick OWASP introduction&lt;br /&gt;
  12:10-13:10 Main presentation - &amp;quot;Web security for DevOps: the glory is in the headers&amp;quot; Jonathan Marcil&lt;br /&gt;
  13:10-... Open discussion and questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Logo-phero.gif‎|link=http://www.pheromone.ca/]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - June 18th - Gaps in the Clouds ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/gaps-in-the-clouds-by-robert-fritz]] [https://speakerdeck.com/owaspmontreal/gaps-in-the-clouds-by-robert-fritz See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Robert Fritz&lt;br /&gt;
*'''ABSTRACT:''' Cloud technology offers agility and scaling, and a chance to break away from legacy IT choices.  Unfortunately, skipping traditional IT activities often results in poorly patched systems, out of date firewalls, and overprovisioned entitlements wielded by admins whose “day job” is development.  Boundaries of accountability and responsibility amongst cloud providers and consumers are confusing, vague, and shift, making security difficult to manage.  In such an environment, a “BP-spill” event, where cost wins over safely safety, is likely.  This talk will dive down into the cracks between the layers of cloud, and share some of the exciting dirt we have seen and expect to see in coming years.”&lt;br /&gt;
*'''BIO:''' Robert Fritz has been practicing security his entire career. Rob started as an Air Force lieutenant at Langley AFB and later at the Pentagon in Washington DC, building and managing classified networks. Finding he was getting too far from technology after a brief stint flying, he left the military to get back to the tech, and built security tools for HP in their HP-Unix lab.  Over time he found himself in more and more security design discussions, so co-authored HP’s Commercial Application Threat Analysis Methodology, building an internal consulting practice at HP.  This quantitative approach, led to two pending patents, an external-facing consulting practice, and his contributions to NIST IR-7502, the Common Configuration Scoring System (CVSS follow-on).  He is the former lead editor for the Center for Internet Security’s HP-UX Benchmark, and current lead for the Android Benchmark.  Robert now works for Morgan Stanley as global head of the Strategic Consulting team in the Security Architecture group, and leads the team’s cloud and social-media security practices.&lt;br /&gt;
*'''WHEN:''' June 18th 2014&lt;br /&gt;
*'''WHERE:''' 700 Rue Wellington, Floor 2, Montreal, QC H3C 3S4&lt;br /&gt;
*'''REGISTRATION:''' http://owaspmtl18junems.eventbrite.ca&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/gaps-in-the-clouds-by-robert-fritz&lt;br /&gt;
*'''EVENT SPONSOR:''' Morgan Stanley http://www.morganstanley.com/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:30 Networking and Morgan Stanley Hosted Pizza and Soft Drinks&lt;br /&gt;
  18:30-18:45 OWASP Chapter &amp;amp; Morgan Stanley Welcome&lt;br /&gt;
  18:45-19:45 Main presentation - &amp;quot;Gaps in the Clouds&amp;quot; Robert Fritz&lt;br /&gt;
  19:45-20:00 Open discussion and questions&lt;br /&gt;
  20:00-...   Optional, informal networking at Aziatic - 626 rue Marguerite-d'Youville, Montréal, QC H3C 1W7&lt;br /&gt;
&lt;br /&gt;
[[Image:Morgan_Stanley_Historical_Logo.png|link=http://www.morganstanley.com/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - May 26th - Récapitulatif des challenges NorthSec ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/P8_V3RI1Ru4]] [https://youtu.be/P8_V3RI1Ru4 Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''PRÉSENTATEUR PRINCIPAL:''' Laurent Desaulniers&lt;br /&gt;
*'''RÉSUMÉ:''' Solutions de la compétition en sécurité NorthSec 2014 sur les sujets de  XXE + SSRF, WAF Bypass, Xpath Injection, DOM Injection, HTTP Only Flag bypass et contournement de captchas. Une bonne façon d'apprendre sur ces failles que vous étiez ou non un participant de la compétition.&lt;br /&gt;
*'''MESSAGE DU PRÉSENTATEUR:''' Vous voyez Rao dans votre soupe? Vous voulez une solution pour un XSS avec des cookies http only? Les captchas illisibles sont un problème? Assistez à la présentation de l'OWASP!&lt;br /&gt;
*'''BIO:''' Laurent Desaulniers est un passionné de sécurité informatique. Il a présenté au Hackfest, au colloque RSI, à OWASP et est challenge designer à NorthSec. M. Desaulniers détient les certifications CISSP, CISM, CISA et OSCP.&lt;br /&gt;
*'''QUAND:''' 26 mai à 18h00&lt;br /&gt;
*'''OÙ:''' Local PK-1140 - Pavillon Président-Kennedy 201, Avenue du Président-Kennedy, J2X 3Y7&lt;br /&gt;
*'''INSCRIPTION:''' https://www.eventbrite.ca/e/owasp-montreal-26-mai-recapitulatif-des-challenges-northsec-tickets-11724413035&lt;br /&gt;
*'''WEBCAST:''' https://www.youtube.com/watch?v=P8_V3RI1Ru4&lt;br /&gt;
*'''ÉQUIPE ACADÉMIQUE''' AGEEI-UQAM - http://www.ageei.org/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
&lt;br /&gt;
 18:00-18:30 Réseautage&lt;br /&gt;
 18:30-18:35 Mot de bienvenue par le leader du chapitre (Jonathan M.)&lt;br /&gt;
 18:35-19:30 Présentation principale : Récapitulatif des challenges NorthSec&lt;br /&gt;
 19:30-20:00 Période de questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Ageeilogo.jpg|200px|link=http://www.ageei.org/]]&lt;br /&gt;
[[Image:2397_nsec_Logo_500-250.png|200px|link=http://nsec.io/]]&lt;br /&gt;
&lt;br /&gt;
== Networking with infosec communities - April 21st ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''RÉSUMÉ:''' En collaboration avec Montréhack, mtlsec et NorthSec, nous organisons une soirée réseautage dans un pub du centre-ville. Du plaisir garanti avec les membres de plusieurs communautés infosec de Montréal!&lt;br /&gt;
&lt;br /&gt;
*'''ABSTRACT:''' In collaboration with Montréhack, mtlsec and NorthSec, we are organizing a networking evening in a pub downtown. Fun guaranteed with the other security communities in Montreal!&lt;br /&gt;
&lt;br /&gt;
*'''QUAND:''' 21 Avril 2014&lt;br /&gt;
*'''WHEN:''' April 21st 2014&lt;br /&gt;
&lt;br /&gt;
*'''OÙ/WHERE:''' BENELUX - Brasserie Artisanale 245 Sherbrooke St W Montreal, QC H2X 1X7&lt;br /&gt;
&lt;br /&gt;
*'''INSCRIPTION/REGISTRATION:''' https://www.eventbrite.ca/e/montrehack-avril-april-northsec-pre-party-tickets-11232307133&lt;br /&gt;
&lt;br /&gt;
*'''PARTENAIRES/PARTNERS:''' Montréhack http://montrehack.ca/ - mtlsec http://blog.mtlsec.com/ - NorthSec https://www.nsec.io/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
  18:00-21:00 Networking&lt;br /&gt;
  21:00-23:59 Remember to drink responsibly!&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - March 27th - Panel Compétition en sécurité NorthSec ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Présentation sous forme de panel - venez poser vos questions!'''&lt;br /&gt;
&lt;br /&gt;
*'''RÉSUMÉ:''' Les compétitions de type Capture the Flag (CTF) sont un moyen pour les professionnels et amateurs de sécurité informatique de mettre leurs talents à l'épreuve. NorthSec est une compétition Montréalaise annuelle en sécurité appliquée, qui aura lieu cette année au Marché Bonsecours de Montréal le 25, 26 et 27 avril prochain. Elle vise à augmenter le niveau technique des professionnels de la sécurité au Québec, ainsi que de permettre à ses acteurs les plus talentueux de se démarquer.&lt;br /&gt;
*'''DÉTAILS:''' Le panel de jeudi, sous la forme d'un échange convivial entre les organisateurs de l'évènement et de ses participants, abordera des thèmes variés comme l'écriture de bon défis, l'infrastructure, la logistique, les inattendus, un bilan de 2013 et tout ça en passant par de savoureuses annecdotes (on l'espère). Venez en grand nombre toucher à ces légendes de la scène infosec montréalaise!&lt;br /&gt;
*'''PANÉLISTES:''' Gabriel Tremblay, François Proulx, Laurent Desaulniers, Stéphane Graber&lt;br /&gt;
*'''ANIMATEUR:''' Olivier Bilodeau&lt;br /&gt;
*'''QUAND:''' 27 mars 2014&lt;br /&gt;
*'''OÙ:''' Salle M-1510, École Polytechnique de Montréal, 2500 chemin de Polytechnique, Montréal (Québec) H3T 1J4, pavillon Lassonde&lt;br /&gt;
*'''INSCRIPTION:''' https://www.eventbrite.ca/e/owasp-montreal-27-mars-panel-competition-en-securite-northsec-tickets-10918436337&lt;br /&gt;
*'''ÉQUIPE ACADÉMIQUE:''' Polytechnique - Polyhack http://polyhack.org/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Mot de bienvenue par le leader du chapitre (Jonathan Marcil)&lt;br /&gt;
  18:30-20:00 Présentation principale : Panel NorthSsec&lt;br /&gt;
&lt;br /&gt;
[[Image:Polyhack.png‎‎|200px|link=http://polyhack.org/]]&lt;br /&gt;
[[Image:LogoPolytechnique.gif|link=http://www.polymtl.ca/]]&lt;br /&gt;
[[Image:2397_nsec_Logo_500-250.png|200px|link=http://nsec.io/]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - February 25th - Proven Strategies for Web Application Security ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/proven-strategies-for-web-application-security-by-justin-c-klein-keane]] [https://speakerdeck.com/owaspmontreal/proven-strategies-for-web-application-security-by-justin-c-klein-keane See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Justin C. Klein Keane&lt;br /&gt;
*'''ABSTRACT:''' The rising dominance of the web as an application delivery platform has focused attacker attention squarely on the security of dynamic web applications. Application security is a complex, and shifting, field. Learn about tested and successful techniques to build safer applications, find flaws before they become vulnerabilities, and deploy applications that can detect, and resist attack.&lt;br /&gt;
*'''BIO:''' Justin C. Klein Keane is a security engineer and chapter leaders of OWASP in Philadelphia. For over a decade Justin has worked as a trainer, coder, and exploit developer. Justin is currently writing a book for NoStarch Press on hacking, speaks regularly at conferences, holds a masters degree in information technology from the University of Pennsylvania and is credited with hundreds of application vulnerability discoveries.&lt;br /&gt;
*'''WHEN:''' February 25th 2014&lt;br /&gt;
*'''WHERE:''' Ecole de technologie superieure, 1100 Notre-Dame Street West, Montreal, Room: A-1150&lt;br /&gt;
*'''REGISTRATION:''' http://owaspmtljan2014.eventbrite.ca&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/proven-strategies-for-web-application-security-by-justin-c-klein-keane&lt;br /&gt;
*'''ACADEMIC PARTNER:''' ETS - DCI http://dciets.com/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Welcome speech by Chapter Leader (Jonathan Marcil)&lt;br /&gt;
  18:30-20:00 Main session and open discussion: Proven Strategies for Web Application Security&lt;br /&gt;
  20:00-...   End of the meeting in a pub&lt;br /&gt;
&lt;br /&gt;
[[Image:Dciets.png‎‎‎|100px|link=http://dciets.com/]]&lt;br /&gt;
[[Image:Logo_ets.png|link=http://www.etsmtl.ca/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - January 28th - Latest trends in Mobile Security ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/8qPyKj4FKgY]] [https://youtu.be/8qPyKj4FKgY Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/latest-trends-in-mobile-security-by-francois-proulx]] [https://speakerdeck.com/owaspmontreal/latest-trends-in-mobile-security-by-francois-proulx See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Francois Proulx&lt;br /&gt;
*'''ABSTRACT:''' Last AppSecUSA 2013 had a great line up of talks, especially regarding mobile applications. This session will be covering all the hottest presentations about mobile security by doing an overview from what see saw at AppSecUSA, all with some slides and snippets of presentations that was recorded at the event. Discussion will be encouraged within the audience as this will be more a dynamic event than a regular talk.&lt;br /&gt;
*'''BIO:''' François Proulx is a senior mobile application developer who has worked on dozens of iOS applications since the very beginning of the Apple iOS platform. Over the past few years he has switched his focus to security. He spends a lot of his free time participating in Capture the Flag events (CTFs) and organizing the NorthSec security competition.&lt;br /&gt;
*'''WHEN:''' January 28th 2014&lt;br /&gt;
*'''WHERE:''' UQAM Room PK-1705, Pavillon Président-Kennedy (the big boat at Place des Arts) - 201 Avenue du Président-Kennedy  J2X 3Y7&lt;br /&gt;
*'''REGISTRATION:''' http://owaspmtl-mobilesecurity.eventbrite.ca&lt;br /&gt;
*'''SLIDES/CONTENT:''' [http://www.youtube.com/playlist?list=PLQtB2ug5xmvaQ9jeRWV53-F_T555GQfhW YouTube playlist]&lt;br /&gt;
*'''SPONSOR:''' Academic partner AGEEI-UQAM - http://www.ageei.org/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Welcome speech by Chapter Leader (Jonathan M.)&lt;br /&gt;
  18:30-20:00 Main session and open discussion: Mobile Security&lt;br /&gt;
  20:00-...   End of the meeting in a pub&lt;br /&gt;
&lt;br /&gt;
[[Image:Ageeilogo.jpg|200px|link=http://www.ageei.org/]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Presentations For Download  ====&lt;br /&gt;
&lt;br /&gt;
[http://www.owasp.org/images/0/0d/20100209mstechdaysowaspasvssgiv01-12657916463819-phpapp02.ppt OWASP ASVS] by Sebastien Gioria (09/03/2010) &lt;br /&gt;
&lt;br /&gt;
[http://www.ph-il.ca/slides/afup__authetification_forte.pdf Authentification Forte] by Philippe Gamache (02/02/2010) &lt;br /&gt;
&lt;br /&gt;
[http://www.opensamm.org/downloads/OpenSAMM-1.0.ppt Software Assurance Maturity Model (OpenSAMM)] by Pravir Chandra (03/11/2009) &lt;br /&gt;
&lt;br /&gt;
[http://www.owasp.org/images/d/de/Owasp-montreal-sept-17h-2009-justin-foster.pdf Crossing the Border – Javascript Exploits] by Justin Foster (17/09/2009) &lt;br /&gt;
&lt;br /&gt;
[http://www.owasp.org/images/c/c2/ALaughRIAt.pdf A Laugh RIAt] by Rafal Los (07/04/2009) &lt;br /&gt;
&lt;br /&gt;
[https://www.owasp.org/images/e/eb/OWASP-Montreal-24022009-RobLabbe.pptx Microsoft Security Development Lifecycle for IT] by Rob Labbe (24/02/2009) &lt;br /&gt;
&lt;br /&gt;
[https://www.owasp.org/images/3/39/OWASP-Montreal-24022009-EN.pdf OWASP Goal and Top Ten 2007 for Managers - French version] by Benoit Guerette (24/02/2009)&lt;br /&gt;
&lt;br /&gt;
Newer presentations are available on [https://speakerdeck.com/owaspmontreal Speaker Deck]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Circle_owasp_logo_nowhitebackground.png|200px]]&lt;br /&gt;
&lt;br /&gt;
= OWASP Foundation / Mission OWASP    = &lt;br /&gt;
OWASP Foundation ([https://docs.google.com/a/owasp.org/presentation/d/10wi1EWFCPZwCpkB6qZaBNN8mR2XfQs8sLxcj9SCsP6c/edit?usp=sharing Overview Slides]) is a professional association of [[Membership | global members]] and is open to anyone interested in learning more about software security. Local chapters are run independently and guided by the [[Chapter_Leader_Handbook]].  As a [[About_OWASP | 501(c)(3)]] non-profit professional association your support and sponsorship of any meeting venue and/or refreshments is tax-deductible. Financial contributions should only be made online using the authorized online chapter donation button.  To be a &amp;lt;b&amp;gt;SPEAKER&amp;lt;/b&amp;gt; at ANY OWASP Chapter in the world simply review the [[Speaker_Agreement | speaker agreement]] and then contact the local chapter leader with details of what OWASP PROJECT, independent research or related software security topic you would like to present on.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;La fondation OWASP est une [https://www.owasp.org/index.php/Membership association de professionnels] et elle est ouverte à tout intervenant intéressé à en apprendre davantage sur la sécurité applicative. Les chapitres locaux (dont celui de Montréal) sont gérés de façon indépendante et selon un [https://www.owasp.org/index.php/Chapter_Leader_Handbook manuel de directives à respecter].   &lt;br /&gt;
Toute contribution financière au chapitre peut être faite en ligne en utilisant l’icône prévu à cet effet. Pour être conférencier au sein de n’importe quel chapitre à l’échelle mondiale, vous n’avez qu’à prendre connaissance du document [https://www.owasp.org/index.php/Speaker_Agreement &amp;quot;entente avec les conférenciers – speaker agreement&amp;quot;] et à joindre le responsable du chapitre Montréal avec un descriptif du sujet que vous aimeriez aborder et s’il est relié à un projet OWASP, à de la recherche indépendante ou encore le sujet en particulier, concernant la sécurité applicative, que vous souhaitez aborder.&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== [[Image:Circle_owasp_logo_nowhitebackground.png|128px]] Montreal OWASP Team == &lt;br /&gt;
&lt;br /&gt;
Scope of the team is to discuss and plan local activities and meetings &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Chapter Leaders ===&lt;br /&gt;
&lt;br /&gt;
* [mailto:anne.gauthier@owasp.org Anne Gauthier], President/Présidente&lt;br /&gt;
* [mailto:michel.bourque{at}owasp.org Michel Bourque], Chapter coordinator and marketing manager/Coordination et Marketing&lt;br /&gt;
* [mailto:hugo.genesse(at)owasp.org Hugo Genesse], Web content and production manager/Site internet et Production &lt;br /&gt;
* [mailto:olivier.arteau(at)owasp.org Olivier Arteau], Logistic manager/Logistique&lt;br /&gt;
&lt;br /&gt;
==== Chapter leader history ====&lt;br /&gt;
*2008-2010 - Benoit Guerette, founder and chapter leader&lt;br /&gt;
*2011-2012 - Philippe Gamache, chapter leader (vice chapter-leader since 2010)&lt;br /&gt;
*2013-2015 - Jonathan Marcil, chapter leader&lt;br /&gt;
*2016-... - Anne Gauthier, Michel Bourque, Marius Popescu, Hugo Genesse, Olivier Arteau&lt;br /&gt;
&lt;br /&gt;
==== Old board members ====&lt;br /&gt;
*Philippe Pépos Petitclerc&lt;br /&gt;
*Michael Robillard&lt;br /&gt;
*Benoit Guerette (logistics 2015)&lt;br /&gt;
*Alexandre Rimthong&lt;br /&gt;
*Mathieu Binette&lt;br /&gt;
*Sean Coates&lt;br /&gt;
*Jean-Marc Robert&lt;br /&gt;
*Philippe Blondin&lt;br /&gt;
*Benoit Guerette (founder)&lt;br /&gt;
*Laurent Desaulniers&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;headertabs&amp;gt;&amp;lt;/headertabs&amp;gt; &lt;br /&gt;
__NOTOC__ &lt;br /&gt;
[[Category:Canada]]&lt;/div&gt;</summary>
		<author><name>Svieg</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=File:PM_SCADA_Logo_Gris_Cybersecurite_FR.png&amp;diff=234266</id>
		<title>File:PM SCADA Logo Gris Cybersecurite FR.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=File:PM_SCADA_Logo_Gris_Cybersecurite_FR.png&amp;diff=234266"/>
				<updated>2017-10-10T19:04:54Z</updated>
		
		<summary type="html">&lt;p&gt;Svieg: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Svieg</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=Montr%C3%A9al&amp;diff=233678</id>
		<title>Montréal</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=Montr%C3%A9al&amp;diff=233678"/>
				<updated>2017-09-24T19:51:43Z</updated>
		
		<summary type="html">&lt;p&gt;Svieg: Enlever nom julien&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Welcome &amp;amp; Bienvenue to the OWASP Montréal chapter ==&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:OWASP-Montreal-Logo.png|Logo OWASP Montréal]]&lt;br /&gt;
&lt;br /&gt;
The OWASP Foundation was established in 2001 as an open community and software security resource. Since then, OWASP has grown to be globally recognized as a credible source for application security standards. &amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
OWASP is an open community dedicated to enabling organizations to conceive, develop, acquire, operate, and maintain applications that can be trusted. All of the OWASP tools, documents, forums, and chapters are free and open to anyone interested in improving application security. We advocate approaching application security as a people, process, and technology problem because the most effective approaches to application security include improvements in all of these areas. &amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
OWASP is open to anyone. Anyone can attend OWASP's vendor agnostic local chapter meetings, participate in regional and global conferences, and contribute to the many OWASP projects. And anyone can start a new project, form a new chapter, or lend their expertise to help an OWASP Global Committee.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt;On parle français aussi ! Le chapitre de Montréal organise plusieurs activités gratuites afin de partager les connaissances en sécurité applicative avec la communauté de développeurs et gestionnaires. Suivez-nous sur les réseaux sociaux pour connaître les dates des conférences du midi et des workshops !&amp;lt;/b&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Top documentation from OWASP includes: &lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/index.php/Top_10_2013-Top_10 OWASP TOP 10 : The Ten Most Critical Web Application Security Risks]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/images/3/33/OWASP_Application_Security_Verification_Standard_3.0.1.pdf OWASP ASVS : Application Security Verification Standard]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/images/5/52/OWASP_Testing_Guide_v4.pdf OWASP Testing Guide : Penetration Testing Framework]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/images/7/78/OWASP_AlphaRelease_CodeReviewGuide2.0.pdf OWASP Code Review Guide : Source Code Analysis Framework]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/index.php/OWASP_Cheat_Sheet_Series OWASP Cheat Sheet : Best practices guidelines for developers]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org OWASP Global]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Chapter Leaders / Responsables du chapitre ===&lt;br /&gt;
&lt;br /&gt;
* [mailto:anne.gauthier@owasp.org Anne Gauthier], President/Présidente&lt;br /&gt;
* [mailto:michel.bourque{at}owasp.org Michel Bourque], Chapter coordinator and marketing manager/Coordination et Marketing&lt;br /&gt;
* [mailto:hugo.genesse(at)owasp.org Hugo Genesse], Web content and production manager/Site internet et Production &lt;br /&gt;
* [mailto:olivier.arteau(at)owasp.org Olivier Arteau], Logistic manager/Logistique&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Special thanks to / Remerciements : &lt;br /&gt;
* Simon Lacasse, Web content / Site internet&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;b&amp;gt; Reach our chapter / Joindre le chapitre &amp;lt;/b&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Follow OWASP's Montreal chapter's activities through social medias, register to events, watch the previous presentations and more! &lt;br /&gt;
&lt;br /&gt;
Suivez les activités du chapitre OWASP Montréal via les réseaux sociaux, inscrivez-vous aux activités, visualisez les anciennes présentations et plus encore! &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;b&amp;gt;[http://lists.owasp.org/mailman/listinfo/owasp-montreal Click here] to join the local chapter mailing list.&lt;br /&gt;
&amp;lt;br /&amp;gt;[http://lists.owasp.org/mailman/listinfo/owasp-montreal Inscrivez-vous ici] à la liste de courriels du chapitre afin de recevoir les dernières nouvelles!&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Want to be part of the community ? &lt;br /&gt;
Devenez membre de notre communauté ! &lt;br /&gt;
[https://www.owasp.org/index.php/Membership_Map Click here / Cliquer ici]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Eb_press_little.gif‎|OWASP Montreal Eventbrite|link=http://owaspmontreal.eventbrite.ca/]] &lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[Image:Yt-brand-standard-logo-630px.png‎|128px|YouTube OWASP Montreal Channel|link=http://www.youtube.com/owaspmontreal]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]   &lt;br /&gt;
[[Image:Speakerdecklogo.png‎|Slides of OWASP Montreal on SpeakerDeck |link=https://speakerdeck.com/owaspmontreal]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Twitter-bird-cropped-onwhite.png|@owaspmontreal on Twitter|link=https://twitter.com/owaspmontreal]]&lt;br /&gt;
[[Image:FacebookSquareLogo.png|OWASP Montreal Facebook page|link=https://www.facebook.com/owasp.montreal]]&lt;br /&gt;
[[Image:LinkedinSquareLogo.png|OWASP Montreal on LinkedIn|link=https://www.linkedin.com/groups/1379007/profile]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
&lt;br /&gt;
== Sponsorship &amp;amp; Membership / Commandite &amp;amp; Adhésion ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Btn_donate_SM.gif|link=http://www.regonline.com/donation_1044369]] to this chapter or become a local chapter supporter.&lt;br /&gt;
&lt;br /&gt;
Or consider the value of [[Membership | Individual, Corporate, or Academic Supporter membership]]. Ready to become a member? [[Image:Join_Now_BlueIcon.JPG|75px|link=https://myowasp.force.com/]]&lt;br /&gt;
&lt;br /&gt;
[http://www.regonline.com/donation_1044369 Donnez] au chapitre ou devenez commanditaire du chapitre local! &lt;br /&gt;
&lt;br /&gt;
[https://myowasp.force.com/ Devenez membre !] Pour en savoir davantage sur les avantages d’une adhésion individuelle, corporative ou en tant qu’institution d’enseignement, [https://www.owasp.org/index.php/Membership cliquez ici]. &lt;br /&gt;
&lt;br /&gt;
[[Category:OWASP Chapter]]&lt;br /&gt;
&lt;br /&gt;
== Chapter Supporters / Commanditaires du chapitre ==&lt;br /&gt;
&lt;br /&gt;
[https://www.owasp.org/images/9/91/OWASP_Membership_Flyer_Montreal.png All details available here / Pour tous les détails] [[File:Chapter-supporter-owasp-montreal.png|200px|link=]] &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Platinum / Platine ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Gosecure-2.png|GoSecure|link=http://www.gosecure.ca/]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[File:Desjardins2-400x400.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Gold / Or ===&lt;br /&gt;
&lt;br /&gt;
[[Image:ImmunioLogo.jpg|Immunio|link=https://www.immun.io/]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Lunch &amp;amp; Learn / Workshops 2017 =&lt;br /&gt;
&lt;br /&gt;
== Cas d'attaques vécus : Internet des objets (IOT) - Attaques DDoS ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Cas_dattaques_vecus-r.jpg  ]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 June 19th 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
Pour clore la saison printanière 2017, OWASP Montréal est fier d'accueillir au Midi Conférence, M. Christian Shink qui fera un survol de cas d'attaques vécus, des techniques utilisées et des acteurs impliqués dans ces attaques.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
L'incorporation généralisée de dispositifs «intelligents» dans les objets de la vie de tous les jours modifie la façon dont les gens et les machines interagissent les uns avec les autres. Cette incorporation offre une promesse d'une meilleure qualité de vie, une meilleure efficacité. En contrepartie, leur déploiement introduit également des vulnérabilités à la fois dans l'infrastructure qu'ils soutiennent et sur lesquels ils comptent, ainsi que dans les processus qu'ils guident. Que ce soit au niveau applicatif ou des infrastructures, ces vulnérabilités sont exploitées par des acteurs malicieux pour générer des attaques de déni de service massives et sophistiquées. Nous tenterons également de tirer des leçons afin de tenter de minimiser ce type d'attaques dans le futur.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Christian Shink possède plus d’une dizaine d’années d’expérience en développement et sécurité d’applications. Avant de se joindre à Radware, Christian était à l’emploi d'une firme conseil où il a conseillé de nombreuses entreprises, dont de grandes banques américaines et Casinos. Il détient une certification CSSLP et est membre de l'ordre des ingénieurs du Québec.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== HOW TO! Threat Modeling Toolkit ==&lt;br /&gt;
&lt;br /&gt;
[[Image:OWASPMtl-JonathanMarcil-1.jpg]]&lt;br /&gt;
[[Image:OWASPMtl-JonathanMarcil-3.jpg]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/threat-modeling-toolkit]] [https://speakerdeck.com/owaspmontreal/threat-modeling-toolkit See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 May 23rd, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Shopify Montreal&lt;br /&gt;
&lt;br /&gt;
Threat Modeling is a great way to analyze security early in software development by structuring possible attacks, bad actors and countermeasures over a broad view of the targeted system. This talk will describe basic components of a threat model and how to use them effectively.&lt;br /&gt;
Threat Intelligence is where you gather knowledge about the environment and business assets to determine what are the actual threats. But how do you reconcile that with the current architecture in a useful manner?&lt;br /&gt;
The toolkit presented in this talk will enable you to systematically structure related information using graphical notations such as flow diagram and attack tree. In case you are wondering where to start in your organization, a quick lightweight risk rating methodology will also be proposed.&lt;br /&gt;
And in the end, you’ll see how we can all tie those together and get threat modeling to a point where it’s an efficient application security activity for communication. Doing this will prevent security reviews from missing important things even when chaos prevails during the realization of a project.&lt;br /&gt;
Modeling concepts will be demonstrated with an actual IoT device used as example.&lt;br /&gt;
Presentation will be done in english.&lt;br /&gt;
&lt;br /&gt;
Speaker Bio:&lt;br /&gt;
Jonathan Marcil is the former chapter leader of OWASP Montreal and is now Senior Application Security Engineer at Blizzard Entertainment in beautiful Orange County, California.&lt;br /&gt;
Jonathan has been involved with OWASP for many years and has been behind the Media Project which gathered and promoted AppSec conferences video content in the official OWASP YouTube channel. He was also part of NorthSec CTF event as a challenge designer specialized in Web and imaginative contraptions.&lt;br /&gt;
He is passionate about Application Security and enjoys architecture analysis, code review, threat modeling and debunking security tools. He holds a diploma in Software Engineering from ÉTS Montreal and has more than 15 years of experience in Information Technology and Security.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Merci à nos précieux commanditaires !&lt;br /&gt;
&lt;br /&gt;
== Security Testing: Unlocking the Benefits of a Hybrid Approach ==&lt;br /&gt;
[[Image:Security testing hybrid approach-r 3.jpg    ]]&lt;br /&gt;
[[Image:Security testing hybrid approach-r 4.jpg    ]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/hybrid-approach-to-security-testing]] [https://speakerdeck.com/owaspmontreal/hybrid-approach-to-security-testing See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 April 24th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
As part of their defensive efforts, businesses commonly commission cybersecurity assessments of their web applications; with the aim of identifying any weaknesses in the security controls and ensuring a continually strong cybersecurity posture of their systems.&lt;br /&gt;
&lt;br /&gt;
The classical approach of either secure code review (white box) or penetration testing (black box) assessment have proven to be effective in securing of web applications. The new trend, however, is moving towards the combination of these two approaches; expert consensus is rapidly recognizing the advantages of using a hybrid approach. When applied properly, a hybrid approach can build on the strengths of both white and black box testing, while compensating for their individual shortcomings.&lt;br /&gt;
&lt;br /&gt;
In this presentation, we will examine the details of secure code review and penetration testing, and run demos to contrast their respective strengths and weaknesses. We will also examine why a hybrid approach can produce more complete and relevant assessment results. To conclude, we will cover proven approaches, and practical techniques, on how you can start leveraging a hybrid approach to web application assessments today.&lt;br /&gt;
&lt;br /&gt;
Anne Gauthier is an application security analyst at GoSecure. Anne is also the president of the Montreal Chapter of OWASP – the industry standard for web application security. With a penetration testing background, she specializes in secure code reviews and in helping companies to improve their software development lifecycle (SDLC) according to industry best practices. Anne is CSSLP, GWAPT and GSSP-JAVA certified. She obtained a Software Engineering bachelor’s degree from Ecole de Technologie Supérieure in Montréal and is now pursuing a Master of Engineering (MEng) degree in Information Systems Security at Concordia University. She is the author of the Project 201 Security blog.&lt;br /&gt;
&lt;br /&gt;
Merci à nos précieux commanditaires !&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;HOW-TO&amp;quot; NIGHT ! Tout sur les CTFs (Capture The Flag) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Howto_ctf.jpg]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://docs.google.com/presentation/d/1zEsCcX-Nvq8Nz0k-B1zHejCDNT2oGZx8oUBgMbvvMM0/edit#slide=id.p ]] [https://docs.google.com/presentation/d/1zEsCcX-Nvq8Nz0k-B1zHejCDNT2oGZx8oUBgMbvvMM0/edit#slide=id.p See the slides / Voir la présentation (Laurent Desaulniers)]&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://docs.google.com/presentation/d/1c1P1d2mKe767j1Y0V9cK6De5cpnK4I7GI-ORiodbg1A/edit#slide=id.p ]] [https://docs.google.com/presentation/d/1c1P1d2mKe767j1Y0V9cK6De5cpnK4I7GI-ORiodbg1A/edit#slide=id.p See the slides / Voir la présentation (Charles Hamilton)]&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=http://obilodeau.github.io/slides/2017-04-04_how-not-to-suck-at-ctfs/ ]] [http://obilodeau.github.io/slides/2017-04-04_how-not-to-suck-at-ctfs/ See the slides / Voir la présentation (Olivier Bilodeau)]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 April 4th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Shopify&lt;br /&gt;
&lt;br /&gt;
Cette nouvelle soirée &amp;quot;How-To&amp;quot; Night d'OWASP Montréal vise à présenter les CTFs (une compétition Capture The Flag) et aider les équipes à démarrer et à continuer à évoluer dans leurs pratique de la cyber sécurité pratique. L'objectif est d'outiller les participants en leur fournissant des ressources techniques et des contacts afin de les aider à progresser.&lt;br /&gt;
&lt;br /&gt;
Les éléments discutés seront:&lt;br /&gt;
&lt;br /&gt;
- Composition optimale d’une équipe : Fonctionnement d’une équipe de CTF et les principaux rôles (chef d’équipe, cryptographie, application web, rétro ingénierie et les causes perdues).&lt;br /&gt;
&lt;br /&gt;
- Pourquoi faire des CTFs? Discussion sur les différents styles (jeopardy, attack/defense, etc.), quels sont les problèmes fréquemments rencontrés + plusieurs anecdotes intéressantes (et drôles).&lt;br /&gt;
&lt;br /&gt;
- Trucs de Mr. Unikoder : Le créateur du fameux site ringzer0team, soit un des plus gros sites pour apprendre la résolution de problèmes de CTF (https://ringzer0team.com/) Apprenez des trucs du meilleur, sur comment débuter et interpréter un challenge web, binaire et crypto avec des trucs réels du métier.&lt;br /&gt;
&lt;br /&gt;
Matériel requis :&lt;br /&gt;
&lt;br /&gt;
    Votre légendaire enthousiasme&lt;br /&gt;
&lt;br /&gt;
Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
&lt;br /&gt;
Places limitées. Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Shopify pour l'événement.&lt;br /&gt;
&lt;br /&gt;
Présentateurs :&lt;br /&gt;
&lt;br /&gt;
Charles Hamilton, Senior Consultant chez Mandiant, FireEye, Inc.&lt;br /&gt;
&lt;br /&gt;
Olivier Bilodeau, Cybersecurity Research Lead at GoSecure&lt;br /&gt;
&lt;br /&gt;
Laurent Desaulniers, Senior Security Solution Specialist at Bell Canada&lt;br /&gt;
&lt;br /&gt;
== NorthSec - Applied Security Event ==&lt;br /&gt;
[[Image:Nsec_2017_midi_conf.jpg]]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/northsec-applied-security-event]] [https://speakerdeck.com/owaspmontreal/northsec-applied-security-event See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 April 4th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
NorthSec: La plus grande compétition et conférence en cyber sécurité au Canada&lt;br /&gt;
&lt;br /&gt;
NorthSec est un organisme sans but lucratif qui organise une conférence et une compétition de sécurité de type &amp;quot;Capture-The-Flag&amp;quot; (CTF) et des formations. Avec plus de 400 participants présents sur le site pour la compétition, c’est la plus grande compétition du genre au monde.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
La conférence, dans sa 3e année, attire des présentateurs internationaux avec du contenu technique exclusif. L’ajout des séances de travail (workshops) devrait plaire aux plus chevronnés des binaires.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Des formations de 3 jours sont offertes avant la conférence: &amp;quot;Advanced Web Application Security&amp;quot; par Philippe Arteau et &amp;quot;Malware and Memory Forensics&amp;quot; par Michael Ligh, co-auteur des livres &amp;quot;Malware Analyst Cookbook&amp;quot; et &amp;quot;The Art of Memory Forensics&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
NorthSec est situé au Marché Bonsecours dans le Vieux-Port de Montréal au printemps du 15 au 21 mai 2017.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
La présentation couvrira:&lt;br /&gt;
&lt;br /&gt;
- Le plan pour 2017&amp;lt;br /&amp;gt;&lt;br /&gt;
- Ce qui différencie NorthSec&amp;lt;br /&amp;gt;&lt;br /&gt;
- Comment équilibrer une compétition pour les débutants et les experts&amp;lt;br /&amp;gt;&lt;br /&gt;
- Comment bâtir une infrastructure basée sur les conteneurs qui gère 50 équipes dans quelques serveurs sans qu’ils ne se partagent de machines virtuelles&amp;lt;br /&amp;gt;&lt;br /&gt;
- Comment faire du pain au levain à grande échelle&amp;lt;br /&amp;gt;&lt;br /&gt;
- Présentation de quelques défis et solutions&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Les présentateurs:&lt;br /&gt;
&lt;br /&gt;
- Gabriel Tremblay, Président, Delve Labs&amp;lt;br /&amp;gt;&lt;br /&gt;
- Olivier Bilodeau, VP Formations, Co-fondateur MontréHack, GoSecure&amp;lt;br /&amp;gt;&lt;br /&gt;
- Pierre-David Oriol, VP Conférences, Delve Labs&amp;lt;br /&amp;gt;&lt;br /&gt;
- Benoit Guérette, VP Partenaires, Desjardins&amp;lt;br /&amp;gt;&lt;br /&gt;
- Laurent Desaulniers, Tisserand de drapeaux, Bell Canada&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Merci à nos précieux commanditaires !&lt;br /&gt;
&lt;br /&gt;
== Sécurité des applications : Les fondements ==&lt;br /&gt;
[[Image:Tanya.jpeg]]&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/securite-des-applications-les-fondements]] [https://speakerdeck.com/owaspmontreal/securite-des-applications-les-fondements See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 March 20th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
OWASP Montréal est fier d’accueillir au Midi Conférence du mois de mars, Mme Tanya Janca, Co-Leader du chapitre OWASP Ottawa et spécialiste de la sécurité applicative au sein du Gouvernement fédéral.&lt;br /&gt;
&lt;br /&gt;
La conférence « Les fondements de la sécurité des applications » sera présentée en anglais.&lt;br /&gt;
&lt;br /&gt;
Session Description : Everyone has heard about the problem; everyone is “getting hacked”. But what is the answer? From scanning your code with a vulnerability scanner to red teaming exercises, developer education programs and bug bounties, this talk will take the audience through all the possibilities of an extensive application security program, with a detailed explanation of each part.&lt;br /&gt;
&lt;br /&gt;
Bio : Tanya Janca is an application security evangelist, a web application penetration tester and vulnerability assessor, a secure code reviewer, an ethical hacker, the Co-Leader of the OWASP Ottawa chapter, and has been developing software since the late 90’s. She has worn many hats and done many things, including; Custom Apps, Ethical Hacking, COTS, Incident Response, Enterprise Architect, Project and People Management, and even Tech Support. She is currently helping the Government of Canada secure their web applications.&lt;br /&gt;
&lt;br /&gt;
Merci à notre commanditaire principal de cet événement: Ubitrak!&lt;br /&gt;
&lt;br /&gt;
== WORKSHOP ! Server Side Template Injection (SSTI) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-okiok-SSTI-r.jpg | WORKSHOP ! Server Side Template Injection (SSTI) ]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/workshop-server-side-template-injection-ssti]] [https://speakerdeck.com/owaspmontreal/workshop-server-side-template-injection-ssti See the slides / Voir la présentation]&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 22 Février 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Shopify Montréal&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
OWASP Montreal vous invite à un atelier portant sur la sécurité des applications web supportant les moteurs de template (Template Engine). Le principe de séparation entre la présentation du site (code HTML statique) et de son contenu dynamique facilite la création de documents HTML et la capacité à modifier l'apparence du site sans mélanger le traitement et le rendu de la page. L'utilisation de moteurs de template amène de nouveaux enjeux de sécurité. Les vulnérabilités de type Server Side Template Injection (SSTI) sont exploitables à travers les données (non fiables) fournies par l'utilisateur et conduisent à l'exécution de code arbitraire (RCE) sur le serveur hébergeant l'application web.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ce workshop a pour but d'introduire cette classe de vulnérabilité à travers différents cas d'implémentation (php, java, python).&lt;br /&gt;
Nous verrons comment identifier et exploiter ces vulnérabilités et de quelle manière un attaquant peut &lt;br /&gt;
s'y prendre pour exécuter du code arbitraire sur le serveur afin d'en prendre le contrôle.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Niveau : Intermédiaire&amp;lt;br /&amp;gt;&lt;br /&gt;
Matériel requis :&lt;br /&gt;
* Votre portable&lt;br /&gt;
* Votre distribution Linux/Unix de votre choix&lt;br /&gt;
* Votre proxy Web de votre choix&lt;br /&gt;
&lt;br /&gt;
Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
Places limitées. Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Shopify pour l'événement.&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Présentateur : Gérôme Dieu&amp;lt;br /&amp;gt;&lt;br /&gt;
Gérôme Dieu cumule plus de 7 années d’expérience en technologies de l’information et en sécurité. &lt;br /&gt;
Il œuvre à titre de conseiller senior en sécurité de l’information au sein de la firme OKIOK. Ces dernières années, il a acquis une expertise dans le domaine de la sécurité des applications web aussi bien d'un point de vue offensif que défensif. En plus de réaliser des tests d’intrusion pour des clients internationaux, Gérôme s’implique dans la recherche et développement afin de maintenir à la fine pointe de la technologie les tests d'intrusion et d'analyse de vulnérabilités. &amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Merci à Shopify d'héberger l'événement !&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Shopify Logo-r.png| Shopify | link=https://www.shopify.com/]]&lt;br /&gt;
== Le courriel en 2017 – risques et menaces pour tous ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Zero spam 2.jpg|Le courriel en 2017 – risques et menaces pour tous]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://www.youtube.com/watch?v=HX2vcijcCWw ]] [https://www.youtube.com/watch?v=HX2vcijcCWw Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 Le 23 janvier 2017 à midi&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
Monsieur Poellhuber nous brossera un tableau du phénomène grandissant du rançongiciels et de l'hameçonnage, personnification.&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
- Par les années passées, la menace courriel se résumait principalement en un fort volume de contenu simplement indésirable. Aujourd’hui la menace a passablement évolué. Quels sont les véritables risques actuels associés au courriel ? Rançongiciels, hameçonnage, personnification. Cette conférence présentera les nouveaux défis de sécurité pour les organisations qui doivent composer avec des attaques de plus en plus sophistiquées et de plus en plus ciblées tout en protégeant leur réputation. Des exemples biens réels, drôles et moins drôles seront disséqués pour bien dessiner l’ampleur de l’enjeu.&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
M. David Poellhuber, Chef de l’exploitation, ZEROSPAM Sécurité Inc&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note biographique :&amp;lt;br /&amp;gt;&lt;br /&gt;
Monsieur David Poellhuber oeuvre dans l’industrie de la sécurité informatique depuis quinze ans. Il a été conférencier dans plusieurs forums de sécurité au Canada et est maintenant reconnu comme une autorité en matière de sécurité du courriel. Il a fondé ZEROSPAM Sécurité en 2003, le premier service Québécois externalisé de sécurité du courriel infonuagique qui se distingue par sa convivialité, son efficacité et ses technologies de détection proactives.&amp;lt;br /&amp;gt;&lt;br /&gt;
Audience :  Généralistes et spécialistes de la sécurité des TI &lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Merci à Ubitrack pour le repas et à Desjardins d'héberger l'événement!&lt;br /&gt;
&lt;br /&gt;
[[Image:Ubitrak-r2.jpg|Ubitrak|link=http://www.ubitrak.com/fr/]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&lt;br /&gt;
== Effective XSS Mitigation ==&lt;br /&gt;
&lt;br /&gt;
[[Image:XSS mitigation.jpg | Effective XSS Mitigation ]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=http://slides.com/olivierarteau/xss-mitigation ]] [http://slides.com/olivierarteau/xss-mitigation See the slides / Voir la présentation]&lt;br /&gt;
&lt;br /&gt;
WHEN &lt;br /&gt;
 18 Janvier 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Google Montréal&lt;br /&gt;
&lt;br /&gt;
FRANÇAIS/ENGLISH&amp;lt;br /&amp;gt;&lt;br /&gt;
La mitigation de XSS a été un sujet important au cours des dernières années. Les navigateurs ont implémenté, en autre, deux fonctionnalités pour mitiger leur impact : l'entête &amp;quot;XSS-Protection&amp;quot; et l'entête &amp;quot;Content-Security-Policy&amp;quot;. Par contre, obtenir une mitigation contre les XSS efficace est souvent plus complexe que l'on pense. Cet atelier couvrira les deux entêtes. Il expliquera comme il est possible de contourner ces protections et ce qu'il est possible de faire pour se protéger. Des exercices de type &amp;quot;offensif&amp;quot; et &amp;quot;défensif&amp;quot; seront proposés.&lt;br /&gt;
Mitigation for XSS as been an important topic in the last few years. Browsers have implemented two main functionalities to help mitigate the impact of XSS : the &amp;quot;XSS-Protection&amp;quot; header and the &amp;quot;Content-Security-Policy&amp;quot; header. But, getting an effective XSS mitigation of those headers is trickier than it may seem. This workshop will cover both of those headers. It will explain how bypass of those protection work and what you can do about it. It will have both &amp;quot;defensive&amp;quot; exercises and &amp;quot;offensive&amp;quot; exercises.&lt;br /&gt;
Niveau : débutant/intermédiaire&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Matériel requis :&lt;br /&gt;
&lt;br /&gt;
Votre portable&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
&lt;br /&gt;
Places limitées. Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Google pour l'événement.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Présentateur : Olivier Arteau&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Olivier Arteau est un professionnel en sécurité informatique depuis quelques années et fait partie de l’équipe de test d’intrusion de Desjardins. Il est aussi un amateur de CTF qui a gagné à plusieurs reprises le CTF du NorthSec avec l’équipe HackToute et participe fréquemment à d’autres CTF avec l’équipe DCIETS.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Merci à Google d'héberger l'événement! &lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-zap-4-r.jpg | Google | link=https://www.google.ca/ ]]&lt;br /&gt;
&lt;br /&gt;
= Lunch &amp;amp; Learn / Workshops 2015-2016 =&lt;br /&gt;
&lt;br /&gt;
== WORKSHOP ! Top 10 OWASP - Unleash the threats ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-top10.jpg | WORKSHOP! Top 10 OWASP - Unleash the threats ]]&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 30 novembre 2016 de 17h30 à 20h30&lt;br /&gt;
WHERE&lt;br /&gt;
 Immunio @ WeWork&lt;br /&gt;
&lt;br /&gt;
De nos jours, la sécurité applicative est essentielle dans l’écosystème des entreprises de toutes tailles. Les vecteurs d’attaques sont multiples, les vulnérabilités de sécurité dans les applications peuvent être désastreuses et les impacts d’un « Hack » peuvent être irréversibles pour l’entreprise; vols de données sensibles, perte de réputation, perte de $$$$$, etc.&lt;br /&gt;
L’objectif du workshop est de comprendre la base sur les vulnérabilités de sécurité dans les applications et les techniques d’exploitation utilisées par les pirates informatiques, en plus de connaître les bonnes pratiques de développement en matière de sécurité applicative. &lt;br /&gt;
Avec l'aide de WebGoat, Damn Vulnerable Web Application et de Kali Linux, vous pourrez participer&lt;br /&gt;
à l'exploitation des applications et découvrir les techniques utilisées par les attaquants.&lt;br /&gt;
&lt;br /&gt;
Niveau : débutant&lt;br /&gt;
&lt;br /&gt;
Matériel requis :&lt;br /&gt;
 Votre portable&lt;br /&gt;
 Kali Linux&lt;br /&gt;
 La VM du workshop, envoyée aux participants&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
&lt;br /&gt;
Places très limitées (nb = 10). Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Immunio &amp;amp; WeWork pour l'événement.&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Présentateur : Christian Leclerc&lt;br /&gt;
&lt;br /&gt;
Christian est spécialisé en conception et développement de solutions web sécuritaires. Tout au long de sa carrière, il a acquis une vaste expertise sur plusieurs types de technologies et méthodologies, intégré la sécurité dans le cycle de développement d’applications, effectué des revues de code sécurité, déployé des outils d’analyse des vulnérabilités et mis en place des systèmes d’authentification. De plus, il a participé à la conception et au développement de solutions sécuritaires de pointe comme la signature électronique à l’aide d’une infrastructure à clé publique (PKI), les authentifications fortes, le Registre des consentements au don d'organes et de tissus (RDOQ.org) et la migration de plusieurs applications web vers un environnement SOA (Service Oriented Architecture). &lt;br /&gt;
&amp;lt;br&amp;gt;Merci à Immunio &amp;amp; WeWork d'héberger l'événement!&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:Immunio-horizontal-r.png|Immunio|link=https://www.immun.io/]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[Image:Wework-r.jpg|WeWork|link=https://www.wework.com/]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Histoire d'un Hack ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Histoire-dun-hack-r.jpg | Histoire d'un Hack ]]&lt;br /&gt;
&lt;br /&gt;
WHEN &lt;br /&gt;
 21 novembre 2016 à midi&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
Pour son activité du mois de novembre, OWASP Montréal propose à la communauté de la sécurité des TI et aux gestionnaires de faire l'autopsie d'une attaque de haute voltige sur un site web et des outils mis à la disposition par OWASP.&lt;br /&gt;
 &lt;br /&gt;
Bernard Bolduc cumule plus de 17 années d’expérience en technologies de l’information et en sécurité. Il œuvre à titre de conseiller senior en sécurité de l’information au niveau d’entreprise de classe nationale et internationale.&lt;br /&gt;
 &lt;br /&gt;
Bernard se spécialise en sécurité Unix, applicative et en gestion de la sécurité des télécommunications. Il combine ces expertises techniques afin d’obtenir des résultats probants et efficaces pour ces clients des secteurs bancaire, télécommunication et multimédias, de l’énergie ou des services publiques. Tout au long de sa carrière, Bernard s’est toujours maintenu à jour sur les dernières menaces de sécurité technologique et commerciale en assistant à des formations spécialisées et d'échanger avec un grand nombre de partenaires dans l'industrie de la sécurité.&lt;br /&gt;
 &lt;br /&gt;
La conférence débute à midi.&lt;br /&gt;
 &lt;br /&gt;
La conférence vous donne droit à 1 CPE et pour les 50 premières personnes, un lunch gratuit.&lt;br /&gt;
 &lt;br /&gt;
Merci à Desjardins d'héberger l'événement!&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Workshop ! Création de votre première extension OWASP ZAP (ou BurpSuite) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-zap-mix.jpg | Workshop ! Création de votre première extension OWASP ZAP (ou BurpSuite)]]&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 11 novembre 2016 de 18h à 21h&lt;br /&gt;
&lt;br /&gt;
WHERE &lt;br /&gt;
 Google Montréal&lt;br /&gt;
&lt;br /&gt;
OWASP Zed Attack Proxy (ZAP) est un scanneur de vulnérabilités et un outil de débogage HTTP. Ce type d'outil est crucial dans un test d'intrusion web et contient un lot intéressant de fonctionnalités. Cela dit, il est possible d'étendre les fonctionnalités. Plusieurs types d'extension sont possibles : vue alternative pour les requêtes ou les réponses, scanneur passif des réponses, scanneur actif produisant des requêtes, etc.&lt;br /&gt;
&lt;br /&gt;
Plusieurs options seront données, par exemple :&lt;br /&gt;
&lt;br /&gt;
 Détection automatique de flag dans les sources&lt;br /&gt;
 Scanneur actif asynchrone DNS&lt;br /&gt;
 Ou votre propre idée&lt;br /&gt;
&lt;br /&gt;
Pour chacune des suggestions, des squelettes de code seront fournis pour les APIs de ZAP. Pour les utilisateurs de BurpSuite, des directives analogues seront également données.&lt;br /&gt;
&lt;br /&gt;
Niveau : débutant / intermédiaire&lt;br /&gt;
&lt;br /&gt;
Matériel requis&lt;br /&gt;
&lt;br /&gt;
 Votre portable&lt;br /&gt;
 [https://www.owasp.org/index.php/OWASP_Zed_Attack_Proxy_Project OWASP ZAP (gratuit)]&lt;br /&gt;
 [https://portswigger.net/burp/download.html BurpSuite]&lt;br /&gt;
 Éditeur de code pour Java, Python ou Ruby&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Présentateur : Philippe Arteau&lt;br /&gt;
&lt;br /&gt;
Philippe est un chercheur en cybersécurité chez GoSecure. Il est l'auteur de l'outil d'analyse statique Java &amp;quot;Find Security Bugs&amp;quot;. Il a découvert des vulnérabilités importantes dans les logiciels populaires tels que Google Chrome, Dropbox, Paypal, RunKeeper et Jira. Il a présenté dans différentes conférences incluant Black Hat USA, Black Hat Europe, ATL Sec Con, NorthSec, Hackfest (QC) et JavaOne. Il a développé de nombreux plug-ins pour les outils de proxy BurpSuite et OWASP ZAP (Retire.js, Reissue Request Script, PDF preview et Image Metadata). Il a fait également des contributions à d'autres plug-ins comme J2eeScan.&lt;br /&gt;
&lt;br /&gt;
Merci à Google d'héberger l'événement! &lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-zap-4-r.jpg | Google | link=https://www.google.ca/ ]]&lt;br /&gt;
&lt;br /&gt;
==Logiciel de rançon (Ransomware) s'attaque au domaine de la santé==&lt;br /&gt;
&lt;br /&gt;
[[Image:HackingHealth-2.jpg | Logiciel de rançon (Ransomware) s'attaque au domaine de la santé ]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/ransomware-and-healthcare-hacking-health ]] [https://speakerdeck.com/owaspmontreal/ransomware-and-healthcare-hacking-health See the slides / Voir la présentation]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;(Conférence en anglais)&lt;br /&gt;
Pour le lancement de la saison 2016 - 2017, OWASP Montréal propose à la communauté de la sécurité des TI et aux gestionnaires de la santé une incursion dans le monde du logiciel malveillant ciblant le domaine de la santé.&amp;lt;br /&amp;gt;&lt;br /&gt;
Cette conférence s'intége dans le Coopérathon co-organisé par le Mouvement Desjardins et Hacking Health.&amp;lt;/b&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Le domaine de la santé serait devenu une cible privilégiée des campagnes de ransomware parce que l'industrie a souvent payé la rançon demandée pour récupérer les données confidentielles et vitales de ses clients. Monsieur Ed Gershfang nous brossera un portrait du phénomène et des meilleures pratiques à mettre en place en matière de sécurité applicative.&lt;br /&gt;
Ed Gershfang possède une expérience solide dans l'infrastructure informatique et plus de 6 ans d'expérience dans les domaines de la sécurité de l'information, de la vulnérabilité, de la gouvernance et de la gestion des risques. Il était directeur de la sécurité pour la société PeriGen, un chef de file de développement de logiciels médicaux en Israël.&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== La sécurité applicative vue par un pentesteur ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Juin2016-OWASPMtl.jpg | OWASP Montréal reçoit Mario Contestabile, Pentester de renom ]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
From Left to Right : Isabelle Lusseyran, Head of Development at Hacking Health. Eduard Gershfang Information Security Analyst at WSP | Parsons Brinckerhoff.&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/owasp-montreal-recoit-mario-contestabile ]] [https://speakerdeck.com/owaspmontreal/owasp-montreal-recoit-mario-contestabile See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Pour clore la saison 2015 – 2016, OWASP Montréal est fier d’accueillir au Midi Conférence un des architectes de renom du développement applicatif au Canada, monsieur Mario Contestabile.&lt;br /&gt;
En tant qu’auteur de plusieurs centaines de tests d’intrusion, il connait tous les rouages de ce qu’est véritablement une application Web «sécurisée». Mais avez-vous déjà remarqué que les rapports de tests d’intrusion mentionnent rarement, voir jamais : «Votre site est très difficile à pirater. Félicitations !» ?&lt;br /&gt;
Et qu’en est-il de ces rapports qui contiennent des dizaines de soi-disant vulnérabilités ? Est-ce que cela signifie d’emblée que l’application devrait être mise hors ligne ?  &lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Lors de cette conférence, nous examinerons des rapports concrets (ambigus) de vulnérabilités et nous les analyserons afin de mieux comprendre si elles représentent une véritable menace, ou si elles ne servent qu’à «remplir» les rapports.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
Avec son expertise en protection et en attaque d’applications Web, il abordera les points suivants :&lt;br /&gt;
Comment pouvez-vous sélectionner des systèmes de façon à mieux exécuter des protections de sécurité ?&lt;br /&gt;
Éviter certains pièges dans votre application Web qui rendent les attaques plus faciles et la protection plus difficile.&lt;br /&gt;
De nos jours, que peuvent faire les développeurs à l’intérieur de systèmes communs, qui puisse me rendre la tâche plus ardue en tant que « hacker »?&lt;br /&gt;
Pouvons-nous exiger de meilleurs rapports de la part des firmes de sécurité?&lt;br /&gt;
À quoi devrions-nous nous attendre de la part d’un « pentesters »?&lt;br /&gt;
Comment pouvons-nous savoir si le « pentester » a vérifié les failles de l’application et qu’il n’a pas simplement utilisé un scanneur?&lt;br /&gt;
Et enfin, comment pouvons-nous aider les « ethical hackers » à obtenir un meilleur rendement lors d’un test d’intrusion?&lt;br /&gt;
Il expliquera le sujet en détails, et ensemble, nous verrons de quelles façons les développeurs d’applications peuvent exploiter le savoir-faire des « pentesters », et comment nous pouvons faire en sorte qu’une application Web soit protégée.&lt;br /&gt;
Biographie :&lt;br /&gt;
Mario Contestabile est reconnu comme l’un des experts en sécurité les plus réputés au Canada. Son expertise, construire et protéger votre plateforme applicative. Ancien développeur C++ et Java, Mario partage ses nombreuses connaissances en « ethical hacking » et en développement de codes sécurisé.  &lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Tuesday, 14 June 2016 from 12:00 PM to 1:00 PM (EDT) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Comment protéger les applications mobiles? ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Avril2016-OWASPMtl.png | Comment protéger les applications mobiles? ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/comment-proteger-les-applications-mobiles ]] [https://speakerdeck.com/owaspmontreal/comment-proteger-les-applications-mobiles See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Dans le cadre des Midis Conférence à l'Espace Desjardins, l'équipe OWASP Montréal vous invite à assister à une présentation sur les vulnérabilités les plus communes associées aux appareils mobiles. &lt;br /&gt;
Marie-Claire Willig détaillera entre autres comment stocker de façon sécuritaire les données de l’application mobile ainsi que protéger l’application contre des attaques externes. Des outils simples vous seront dévoilés pour détecter ces vulnérabilités.&lt;br /&gt;
Marie-Claire est une professionnelle d'expérience en sécurité appliquée.&lt;br /&gt;
Une grande partie de son intérêt professionnel réside actuellement dans un domaine assez niche, soit la revue de code sécuritaire, un fondement important de tout cycle de développement sécuritaire en entreprise.&lt;br /&gt;
Au sein de l'équipe de sécurité technologique Desjardins, elle est, en autre, responsable de former les développeurs (Java et .NET principalement) afin de les sensibiliser aux meilleures pratiques de développement sécuritaire.&lt;br /&gt;
Également, elle est une professionnelle des tests d'intrusion sur les applications web, les applications mobiles ainsi que l'infrastructure réseau.&lt;br /&gt;
Bienvenue à tous&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 20 April 2016 from 12:15 PM to 1:00 PM (EDT) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== NorthSec, Le plus gros événement de cybersécurité appliquée au Canada ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Mars2016-OWASPMtl.jpg | NorthSec, Le plus gros événement de cybersécurité appliquée au Canada ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/YQtvltQYs7Y]] [https://youtu.be/YQtvltQYs7Y Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
OWASP Montréal est fier d’inviter au Midi Conférence de mars, NorthSec est le plus gros événement de sécurité appliquée au Canada qui comprend deux jours de formation, deux jours de conférences ainsi qu’une compétition du genre « capture the flag » (CTF) de trois jours.&lt;br /&gt;
Gabriel Tremblay, Benoit Guerette, Pierre-David Oriol et Laurent Desaulniers viendront vous parler de cet organisme sans but lucratif dynamique qui est géré par une équipe de bénévoles passionnés qui donnent à chaque année leur énergie et leur temps pour soutenir la communauté de la sécurité de l’information.&lt;br /&gt;
Le volet compétition, l’épreuve maîtresse, est présentée sous forme d’un scénario qui rend cohérent une centaine de défis techniques. Les équipes de participants attaquent l’infrastructure de compétition pour soutirer des drapeaux (flags) à travers un ensemble de vulnérabilités présentes comme de l’injection SQL, des XSS ou encore l’exploitation d’exécutables sur systèmes embarqués. Quelques exemples de défis des années passées seront également présentés.&lt;br /&gt;
Le volet conférence, qui est à sa 2ème année, met de l’avant plusieurs présentations techniques touchant la sécurité applicative mais aussi l’éthique et leurs impacts sociaux. Certaines présentations confirmées seront dévoilés.&lt;br /&gt;
Le tout nouveau volet formation propose deux formations en sécurité applicative de calibre international (anglais) : “Advanced Web Security Testing with Burp Pro” et “Modern Object-Oriented Malware Reverse Engineering”.&lt;br /&gt;
Venez aussi, découvrir comment l'équipe est partie d'une idée en 2012 pour se rendre à un évènement d'envergure, qui rassemblera plus de 600 professionnels, étudiants et autres passionnés de sécurité appliquée lors de la 4ème édition qui aura lieu du 17 au 22 mai 2016 au Marché Bonsecours.&lt;br /&gt;
Finalement, la mission, la vision ainsi que les activités sociales de la semaine de NorthSec sont aussi au menu de cette présentation qui sera suivie d’une période de questions.&lt;br /&gt;
&lt;br /&gt;
Gabriel Tremblay, Delve Labs, Président&lt;br /&gt;
Benoit Guerette, Desjardins, VP Finances&lt;br /&gt;
&lt;br /&gt;
Pierre-David Oriol, Delve Labs, VP Conférence&lt;br /&gt;
Laurent Desaulniers, Bell Canada, Artisant de drapeaux&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 23 March 2016 from 12:00 PM to 1:00 PM (EDT) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== La sécurité applicative et l'hameçonnage - February 24th ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Fevrier2016-OWASPMtl.jpg | La sécurité applicative et l'hameçonnage ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/1RYlOiIENjQ]] [https://youtu.be/1RYlOiIENjQ Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
De nos jours, une des méthodes les plus efficaces pour contourner les périmètres de sécurité externes est l'hameçonnage conjointement avec l’abus de certaines technologies Web.&lt;br /&gt;
&lt;br /&gt;
Dans le cadre ses activités, OWASP Montréal est heureux d'inviter d'accueillir, l'équipe OKIOK qui présentera les impacts liés à ce type d'attaque, tel que vu et expérimenté en entreprise ainsi que les plans d'action pour traiter ces risques. La présentation abordera aussi bien la sécurité web et applicatives, des systèmes informatiques ainsi que de la sécurité physique de centres de données. &lt;br /&gt;
&lt;br /&gt;
    Capture d'informations sensibles par imitations de portails Web ;&lt;br /&gt;
    Authentification Web par 2-facteurs ;&lt;br /&gt;
    Injection SMTP dans des formulaires Web ;&lt;br /&gt;
    Attaque de type “Drive-by-download”;&lt;br /&gt;
    Prise de contrôle à distance à travers des flux HTTP;&lt;br /&gt;
    Attaque de CSRF à partir de courriels ;&lt;br /&gt;
    Attaque d'hameçonnage basée sur des achats par Internet (ex : PayPal).&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
When&lt;br /&gt;
 Wednesday, 24 February 2016 from 12:00 PM to 1:15 PM (EST) - Add to Calendar &lt;br /&gt;
Where&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest Montreal, Quebec CA&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Internet of {Things, Threats} - January 20th ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Janvier2016-OWASPMtl-R.png | Internet of {Things, Threats} ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=http://gosecure.github.io/presentations/2016-01-20_owasp-mtl/internet-of-threats.html ]] [http://gosecure.github.io/presentations/2016-01-20_owasp-mtl/internet-of-threats.html See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
De plus en plus de périphériques se retrouvent connectés sur Internet. Sous la bannière &amp;quot;Internet of Things&amp;quot; (IoT) ces équipements, que ce soit une pompe à insuline ou un système de caméra de sécurité, tournent généralement sous un système GNU/Linux embarqué d'architecture MIPS ou ARM. La difficulté de mettre à jour ces équipements ainsi que le peu d'effort mis dans la sécurité des systèmes ou la sécurité applicative en font des cibles de choix. Ces derniers mois, nous avons analysé plusieurs logiciels malveillants ciblant ces architectures. Que ce soit par l'exploitation d'une vulnérabilité (Shellshock) ou encore un défaut de configuration, ces systèmes exposés sur Internet peuvent être compromis.&lt;br /&gt;
&lt;br /&gt;
Notre présentation couvrira quelques une de ces analyses:&lt;br /&gt;
&lt;br /&gt;
* Linux/Moose, un malware se propageant automatiquement qui fraude les réseaux sociaux (par exemple Facebook, Twitter et YouTube)&lt;br /&gt;
* LizardSquad et acteurs étrangers qui utilisent des systèmes embarqués compromis pour réaliser des dénis de service distribué (DDoS) &lt;br /&gt;
* Win32/RBrute est un logiciel malveillant qui tente de changer les paramètres de routeurs dans le but de faire du &amp;quot;DNS poisoning&amp;quot;. Il a été distribué par le populaire botnet Sality.&lt;br /&gt;
* Un kit d'exploits qui utilise seulement le navigateur de leur victime avec le même objectif, c'est-à-dire faire du &amp;quot;DNS poisoning&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Enfin, des conseils seront proposés à l'audience pour l'aider à se protéger de ces menaces.&lt;br /&gt;
&lt;br /&gt;
'''Thomas Dupuy''' (twitter: @nyx__o)&lt;br /&gt;
&lt;br /&gt;
Thomas est chercheur en logiciel malveillant chez ESET Canada Recherche. Bon vivant, Thomas déjeune en &amp;quot;reversant&amp;quot; des binaires, contribue à quelques projets open source durant le diner (yara, yara rules, pefile, APTnotes) et la nuit participe à des &amp;quot;Hacking Games&amp;quot; (Capture The Flag). Curieux de nature Thomas analyse des malware aux architectures &amp;quot;exotiques&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Olivier Bilodeau''' (twitter: @obilodeau)&lt;br /&gt;
&lt;br /&gt;
Olivier Bilodeau is the head of Cybersecurity Research at GoSecure a consultancy firm specializing in cybersecurity services for the public and private sector. With more than 10 years of infosec experience, Olivier worked on Unix servers at Bell Canada, managed a portion of Air Canada's network, wrote open source network access control software at Inverse and worked as a Malware Researcher at ESET. He likes to reverse engineer everything that crosses his path, participate in information security capture-the-flag competitions, hack open source code and brew beer. He has spoken at various conferences (Defcon, Botconf, VirusBulletin, Derbycon, ...), used to lecture on information security at ETS University in Montreal, drives the NorthSec Hacker Jeopardy and co-organizes the MontreHack capture-the-flag training initiative. His primary research interests include reverse-engineering tools, Linux and/or embedded malware and honeypots.&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Survivre aux attaques DDOS applicatives ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Decembre2015-OWASPMtl.jpg | Survivre aux attaques DDOS applicatives ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Survivre aux attaques DDOS (Distributed Denial-Of-Service) applicatives.&lt;br /&gt;
Cette conférence s'adresse aux professionnels et gestionnaires des TI.&lt;br /&gt;
Conférencier : Christian Shink, ing., CSSLP, ingénieur système chez Radware, manufacturier spécialisé dans la prévention des attaques DDOS. Il fut également consultant en sécurité applicative chez In Fidem.&lt;br /&gt;
Objectifs de la conférence:&lt;br /&gt;
Présenter les tendances actuelles en matière d'attaques DDOS applicatives.&lt;br /&gt;
Renseigner les participants sur les techniques et stratégies pour contrer ces attaques illustrées à partir de cas vécus.&lt;br /&gt;
Démystifier certains mythes en ce qui concernent les façons efficaces de protéger les applications contre des attaques DDOS.&lt;br /&gt;
Date : 16 décembre 2015&lt;br /&gt;
Heure : 11h45&lt;br /&gt;
La conférence débute à 12h00 et se termine à 12:55.&lt;br /&gt;
Un lunch sera servi.&lt;br /&gt;
Réservez maintenant!&lt;br /&gt;
1 CPE&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 16 December 2015 from 11:45 AM to 1:00 PM (EST) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec &lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Sécurité des applications - Systèmes de contrôles industriels ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Novembre2015-OWASPMtl-R.png | Sécurité des applications - Systèmes de contrôles industriels ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/0eAZpyiQQ9A]] [https://youtu.be/0eAZpyiQQ9A Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&lt;br /&gt;
La sécurité des applications et les systèmes de contrôles industriels.&lt;br /&gt;
Cette conférence s'adresse aux professionnels et gestionnaires des TI desinfrastructures critiques qui exploitent ou gèrent des systèmes de contrôles industriels(SCI) et SCADA (surveillance et d'acquisition de données).&amp;lt;br /&amp;gt;&lt;br /&gt;
Conférenciers : Robert Nastas, CSSA. Gestionnaire de projet et Youssef Jad, Architecte Cyber sécurité, ICS-CERT&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Objectifs de la conférence:&lt;br /&gt;
* Démystifier le domaine d'affaires.&lt;br /&gt;
* Renseigner les participants sur les bonnes pratiques de sécurité desapplications liées au secteur industriel.&lt;br /&gt;
* Proposer aux professionnels et gestionnaires des TI responsables dessystèmes SCADA et SCI des pistes de solutions aux enjeux de sécurité.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
L'équipe OWASP Montréal vous remercie d'avoir assisté en grand nombre à la conférence, 'La sécurité des applications et les systèmes de contrôles industriels'.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 18 November 2015 from 11:45 AM to 1:00 PM (EST) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Les préoccupations actuelles de hauts dirigeants en matière de cybersécurité et de sécurité applicative ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Septembre2015-OWASPMtl.jpg | Les préoccupations actuelles de hauts dirigeants en matière de cybersécurité et de sécurité applicative ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/un-regard-sur-la-securite-de-linformation-en-2015-par-eric-hebert ]] [https://speakerdeck.com/owaspmontreal/un-regard-sur-la-securite-de-linformation-en-2015-par-eric-hebert See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Pour le lancement des activités corporatives de la saison 2015 - 2016, le 8 septembre prochain à 12:00, l'équipe OWASP Montréal convie les gestionnaires et artisants de la sécurité des TIC à venir entendre monsieur Éric Hébert qui nous présentera son interprétation des préoccupations actuelles de hauts dirigeants en matière de cybersécurité et de sécurité applicative. L'événement se tiendra au complexe Desjardins à la salle &amp;quot;Espace Desjardins&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
''' ÉRIC G. HÉBERT, CISM, CISSP ''' &amp;lt;br /&amp;gt;&lt;br /&gt;
Après plus de 20 ans passés dans le domaine de la sécurité des technologies de l’information, Éric se spécialise dans la mise en œuvre et la gestion d'équipes performantes, capables de relever les plus hauts défis de la cybersécurité moderne.&amp;lt;br /&amp;gt;&lt;br /&gt;
Capable de dialoguer avec les hauts dirigeants, il sait traduire et vulgariser les enjeux techniques complexes tout en respectant la nature et l'appétence au risque de ses clients. Dynamique et pourvu d'une expérience couvrant presque toutes les sphères de la SI, il fonce dans le respect de la culture établie tout en implantant des solutions pragmatiques et efficaces.&amp;lt;br /&amp;gt;&lt;br /&gt;
Depuis plus de 10 ans, il gravite principalement autour des entreprises du domaine financier (BNC, Desjardins, Fonds de solidarité FTQ...) et les accompagne dans la mise en place de solutions efficaces tenant compte à la fois des risques et des budgets.&lt;br /&gt;
En plus d’avoir fondé de nombreuses associations telles que le RéseauSécurIT et le RPSI, il maintient une présence régulière auprès des milieux associatifs professionnels et partage régulièrement ses expériences lors de conférences et d'entrevues avec divers médias.&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Events / Évènements =&lt;br /&gt;
&lt;br /&gt;
== Owasp Montreal at [https://nsec.io/ NorthSec 2017] ==&lt;br /&gt;
&lt;br /&gt;
[[Image:NorthSec2017-5.jpg]]&lt;br /&gt;
[[Image:NorthSec2017-6.jpg]]&lt;br /&gt;
&lt;br /&gt;
From Left to Right: Anne Gauthier, OWASP Montréal Chapter Leader (President) and Application Security Analyst at GoSecure, Hugo Genesse, OWASP Montréal Chapter Leader and Research Intern at PNF Software, Julien, OWASP Montréal Chapter Leader&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal at [https://2017.appsec.eu/ AppSec] ==&lt;br /&gt;
&lt;br /&gt;
[[Image:OWASPAppSecBelfast2017-7.jpg]]&lt;br /&gt;
&lt;br /&gt;
OWASP Montreal and Ottawa Chapter Leaders at OWASP AppSec Belfast, UK #WomenInAppSec&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal at [https://hackfest.ca/ HackFest 2016] ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hackfest2016-r.jpg| HackFest |link=https://hackfest.ca/]]&lt;br /&gt;
&lt;br /&gt;
From left to right: Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Louis Nadeau, OWASP Québec Chapter Leader and Manager, Product Security at Bentley Systems and Patrick Leclerc, OWASP Québec Chapter Leader and Information Security Advisor at La Capitale.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal at OWASP [https://2016.appsecusa.org/ AppSec USA 2016, Washington] ==&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:OWASPMtl-AppSecUSA2016-Washington.jpg | OWASP Montreal at AppSec USA 2016, Washington]] &lt;br /&gt;
&lt;br /&gt;
​From left to right: Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Marie-Claire Willig, Application Security Analyst at Desjardins, Speaker and Cofounder of the Roslyn Security Guard tool which will be presented at Blackhat 2016, Alexandre Hamelin President at Synlabs Consulting Inc., Jonathan Marcil, Application Security Engineer at Blizzard Entertainment and former OWASP Montreal Chapter Leader. Philippe Arteau, Cybersecurity Researcher at GoSecure and designer of [https://find-sec-bugs.github.io/ Find Security Bugs] and Roslyn Security Guard tool which will be presented at Blackhat 2016.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://www.gosec.net GoSec] 2016 ==&lt;br /&gt;
&lt;br /&gt;
[[Image:OWASP-GoSec2016-1r.jpg|OWASP Montreal at GoSec 2016]] [[Image:OWASP-GoSec2016-2r.jpg|OWASP Montreal at GoSec 2016]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
From left to right : Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Simon Lacasse, student and volunteer, and Laurent Desaulniers, Security Analyst at Bell Canada.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://www.nsec.io/ NorthSec] 2016 – Annual Applied Security Event ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hackfest2016-OWASPMtl.jpg|OWASP Montreal at NorthSec 2016]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Simon Veilleux &lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
From left to right : Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Olivier Arteau OWASP Montréal Chapter Leader and Conseiller chez Groupe Technologie Desjardins, Hugo Genesse, OWASP Montréal Chapter Leader and Vulnerability Research Intern at Wurldtech Security Technologies.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://hackfest.ca/en/ Hackfest] 2015 ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hackfest2015-OWASPMtl-R.JPG | OWASP Montreal at Hackfest 2015]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Hackfest &lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
From left to right : Jonathan Marcil, Application Security Engineer at Blizzard Entertainment and former OWASP Montreal Chapter Leader. Philippe Arteau, Cybersecurity Researcher at GoSecure and designer of [http://find-sec-bugs.github.io/ Find Security Bugs] and Roslyn Security Guard tool which will be presented at Blackhat 2016. &lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/8U0qkEuUFy8]] [https://youtu.be/8U0qkEuUFy8 Watch the video / Regarder la vidéo]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://www.gosec.net/ GoSec] 2015 – The Annual Cybersecurity Conference presented by GoSecure, EY and ISACA. ==&lt;br /&gt;
&lt;br /&gt;
[[Image:GoSec2015-OWASPMtl.jpg|OWASP Montreal at GoSec 2015]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
From left to right : Marie-Claire Willig, Application Security Analyst at Desjardins, Speaker and Cofounder of the Roslyn Security Guard tool which will be presented at Blackhat 2016. Benoît Guérette, Application Security Team Leader at Desjardins, VP Finance at NorthSec and OWASP Montreal Chapter Founder and Former Chapter Leader.&lt;br /&gt;
&lt;br /&gt;
== See also / Voir aussi ==&lt;br /&gt;
&lt;br /&gt;
OWASP Montréal recommends Montréhack. Learn and share knowledge on IT security by solving technical challenges. Third Monday of every month. &lt;br /&gt;
&lt;br /&gt;
OWASP Montréal recommende Montréhack. Apprends et partages des connaissances sur la sécurité informatique en travaillant des problèmes appliqués. Chaque troisième lundi du mois. &lt;br /&gt;
&lt;br /&gt;
[[File:Montrehack.png|Montréhack|link=http://montrehack.ca/|alt=Montréhack]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Archives 2007-2015 =&lt;br /&gt;
{{:Montreal chapter past meetings}}&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - February 3rd - Getting to Know the Software Assurance Marketplace (SWAMP) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/p4_vjufcB6Q]] [https://youtu.be/p4_vjufcB6Q Watch the conference / Regarder la conférence]&amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/getting-to-know-the-software-assurance-marketplace-swamp-by-pat-beyer]] [https://speakerdeck.com/owaspmontreal/getting-to-know-the-software-assurance-marketplace-swamp-by-pat-beyer See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Pat Beyer&lt;br /&gt;
*'''ADDITIONAL PRESENTER:'''  Abe Megahed&lt;br /&gt;
*'''ABSTRACT:''' The Software Assurance Marketplace (SWAMP) is an open facility that is designed, built, and operated by four research institutions. The SWAMP provides no-cost access to an array of open-source and commercial software analysis tools. This presentation will provide an overview and demo of the SWAMP, including our goals, intended audience, current capabilities, and future plans. We will cover our relationship with OWASP, incorporation of open-source software assurance tools, and status as an open-source project and resource available to the software community. Visit https://continuousassurance.org/ to learn more about us.&lt;br /&gt;
*'''BIO:''' Pat Beyer serves as the Product Manager for the Software Assurance Marketplace (SWAMP). With over 25 years of experience successfully managing multi-million dollar global projects, Beyer’s expertise extends to the IT, construction, and operations sectors, with a specialization in managing government contracts and grants. A gifted communicator, Beyer is a sought after speaker due to his ability to deliver complex information about technology products and services in a way that is easily understood. He is a decorated combat veteran of the Global War on Terror, the international military campaign that started following the 9/11 terrorist attacks on the United States. In 2004, he constructed and rehabilitated over 20 schools, clinics, and water treatment plants for the Iraqi people using local contractors. Beyer also holds a Bachelor of Science, a Masters in Business Administration, a Ph.D. in Organization and Management, and a Project Management Professional (PMP) certification.&lt;br /&gt;
*'''BIO:''' Abe Megahed is a web developer for the Software Assurance Marketplace. In previous lifetimes, he has been a computer graphics researcher, a game programmer, a programming language and compiler nerd, a dot com company founder, a creator of helicopter simulations, and a developer of 3D simulations for NASA astronaut crew training.&lt;br /&gt;
*'''WHEN:'''  Tuesday, February 3rd 2015&lt;br /&gt;
*'''WHERE:''' Room PK-1140 - UQAM Pavillon Président-Kennedy, 201 Avenue du Président-Kennedy  J2X 3Y7&lt;br /&gt;
*'''REGISTRATION:''' https://owaspmtlswamp2015.eventbrite.ca&lt;br /&gt;
*'''WEBCAST:''' https://www.youtube.com/watch?v=p4_vjufcB6Q&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/getting-to-know-the-software-assurance-marketplace-swamp-by-pat-beyer&lt;br /&gt;
&lt;br /&gt;
*'''ACADEMIC PARTNER:''' AGEEI-UQAM - http://www.ageei.org/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Welcome speech by Chapter Leader (Jonathan Marcil)&lt;br /&gt;
  18:30-20:00 Main session: Getting to Know the Software Assurance Marketplace&lt;br /&gt;
  20:00-...   End of the meeting&lt;br /&gt;
&lt;br /&gt;
[[Image:SWAMP-Logo-Final-Med.png|300px|link=https://continuousassurance.org/]]&lt;br /&gt;
[[Image:Ageeilogo.jpg|200px|link=http://www.ageei.org/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - 4 décembre - Malware côté serveur — évolution, méthodes d’opération et forensic Linux ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/lo8WDl-WQ3E]] [https://youtu.be/lo8WDl-WQ3E Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/malware-cote-serveur-par-marc-etienne-m-dot-leveille]] [https://speakerdeck.com/owaspmontreal/malware-cote-serveur-par-marc-etienne-m-dot-leveille See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''PRÉSENTATEUR PRINCIPAL:''' Marc-Etienne M.Léveillé&lt;br /&gt;
*'''RÉSUMÉ:''' Les logiciels malveillants ciblant les serveurs ont évolué. Ils sont utilisés par des groupes de cybercriminels organisés dans le but de faire du profit via des redirections web et l’envoie de pourriels. La présentation portera sur Opération Windigo, une opération malveillante qui a affecté plus de 25 000 serveurs dans le monde. Après une brève description des composantes de Windigo, nous verrons comment les opérateurs déploient leurs logiciels malveillants et surveille leur réseau de serveurs infectés. Des trucs pratiques pour faire de la forensics sur des systèmes Linux seront donnés. Cette présentation est une suite à la présentation &amp;quot;Linux/Cdorked: Server side malware&amp;quot;, donnée par Olivier Bilodeau à OWASP Montréal en 2013. La présentation sera en français avec des diapositives en anglais (aka Montreal-style).&lt;br /&gt;
*'''BIO:''' Marc-Etienne est un chercheur en logiciel malveillant chez ESET depuis 2012. Il se spécialise dans les logiciels malveillants qui s’attaquent à des plateformes inhabituelles comme aux produits fruités et aux oiseaux nordiques. Dernièrement, il passe beaucoup de son temps à faire la rétro-ingénierie de logiciels malveillants sur des serveurs Linux et s’intéresse à leurs méthodes d’opération. Il adore participer de façon collégiale aux CTFs avec ses amis les CISSP Groupies et jouer de la clarinette. Il tweet très peu à @marc_etienne_.&lt;br /&gt;
*'''QUAND:''' 4 décembre 2014 à 18h00&lt;br /&gt;
*'''OÙ:''' Local M-1510, Polytechnique Montréal, 2900 Boulevard Edouard-Montpetit&lt;br /&gt;
*'''INSCRIPTION:''' https://www.eventbrite.ca/e/owasp-montreal-4-decembre-malware-cote-serveur-evolution-methodes-doperation-et-forensic-linux-tickets-14635313617&lt;br /&gt;
*'''ÉQUIPE ACADÉMIQUE:''' Polyhack - http://polyhack.org/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
&lt;br /&gt;
 18:00-18:30 Réseautage&lt;br /&gt;
 18:30-18:35 Mot de bienvenue par le leader du chapitre (Jonathan M.)&lt;br /&gt;
 18:35-19:30 Présentation principale : Malware côté serveur&lt;br /&gt;
 19:30-20:00 Période de questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Polyhacklogonoirpetit.png|200px|link=http://polyhack.org/]]&lt;br /&gt;
[[Image:LogoPolytechnique.gif|link=http://www.polymtl.ca/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - October 23rd - XXE : À l’assaut des analyseurs XML ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/MZviLB9-42E]] [https://youtu.be/MZviLB9-42E Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/xxe-a-lassaut-des-analyseurs-xml-par-philippe-arteau]] [https://speakerdeck.com/owaspmontreal/xxe-a-lassaut-des-analyseurs-xml-par-philippe-arteau See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''PRÉSENTATEUR PRINCIPAL:''' Philippe Arteau&lt;br /&gt;
*'''RÉSUMÉ:''' L'utilisation d’XML est fortement répandue. Le format est utilisé pour des fichiers de configuration, pour des métadonnées, pour des documents textes, et bien plus. La prise en charge de fichiers XML n’est pas sans risque. La plupart des analyseurs XML ne sont pas sécuritaires par défaut pour le traitement de fichier externe. Cette présentation fera un survol des vulnérabilités de type « Xml eXternal Entity » et de l’étendue des risques pour différents langages de programmation. Plusieurs démonstrations sont prévues.&lt;br /&gt;
*'''BIO:''' Philippe est conseiller en sécurité applicative pour le Groupe Technologies Desjardins. Au quotidien, il s’occupe d’effectuer des tests d’intrusions et des revues de code. Il a découvert des vulnérabilités importantes dans plusieurs logiciels populaires incluant Google Chrome, DropBox, ESAPI et Jira.&lt;br /&gt;
*'''QUAND:'''  23 Octobre 2014 à 18h00&lt;br /&gt;
*'''OÙ:''' École de Technologie Supérieure Local A-3230, 1100 Rue Notre-Dame Ouest, Montréal, QC H3C 1K3&lt;br /&gt;
*'''INSCRIPTION:''' http://www.eventbrite.ca/e/owasp-montreal-23-octobre-xxe-a-lassaut-des-analyseurs-xml-tickets-13426881163&lt;br /&gt;
*'''PARTENAIRE ACADÉMIQUE:''' ETS - DCI http://dciets.com/&lt;br /&gt;
*'''PROGRAMME:''' &lt;br /&gt;
&lt;br /&gt;
 18:00-18:30 Réseautage&lt;br /&gt;
 18:30-18:45 Mot de bienvenue&lt;br /&gt;
 18:45-19:45 Présentation principale - &amp;quot;À l’assaut des analyseurs XML&amp;quot; Philippe Arteau&lt;br /&gt;
 19:45-20:00 Période de questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Blason_dci.png‎‎‎|150px|link=http://dciets.com/]]&lt;br /&gt;
[[Image:ETS-rouge-devise-impr-fond_transparent.png|150px|link=http://www.etsmtl.ca/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - July 24th - Web security for DevOps: the glory is in the headers ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/6bp1NCLT-YQ]] [https://youtu.be/6bp1NCLT-YQ Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/web-security-for-devops-the-glory-is-in-the-headers-by-jonathan-marcil]] [https://speakerdeck.com/owaspmontreal/web-security-for-devops-the-glory-is-in-the-headers-by-jonathan-marcil See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Jonathan Marcil&lt;br /&gt;
*'''ABSTRACT:''' DevOps is a buzzword which can be easily demystified: in essence it is a process which aims to combine the development and system administration process into one; Operations. As developers become responsible for server setup, security counter measures are evolving as well. The line between server configuration and application behaviour has been blurred. In this talk we will cover some HTTP headers in regards to security such as CORS, CSP and HSTS. We will demonstrate several forms of attack, and how they can (should) be countered.&lt;br /&gt;
*'''BIO:''' Jonathan is devoted to security and specialized in Web application security.  His main occupation is consulting in Web security, but deep down he is a developer with a agnostic vision of programming languages. He has a diploma in Software Engineering from Ecole de Technologie Superieure and more than 10 years of experience in Information Technology and Security.&lt;br /&gt;
*'''WHEN:'''  At noon on July 24th 2014&lt;br /&gt;
*'''WHERE:''' 75 Queen Street, office 3100, Montreal, QC H3C 2N6&lt;br /&gt;
*'''REGISTRATION:''' You can join us on site for a pizza slice but this is mainly an online event. Contact jonathan.marcil@owasp.org.&lt;br /&gt;
*'''WEBCAST:''' https://www.youtube.com/watch?v=6bp1NCLT-YQ&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/web-security-for-devops-the-glory-is-in-the-headers-by-jonathan-marcil&lt;br /&gt;
*'''EVENT SPONSOR:''' Pheromone http://www.pheromone.ca/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  12:00-12:10 Welcome and quick OWASP introduction&lt;br /&gt;
  12:10-13:10 Main presentation - &amp;quot;Web security for DevOps: the glory is in the headers&amp;quot; Jonathan Marcil&lt;br /&gt;
  13:10-... Open discussion and questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Logo-phero.gif‎|link=http://www.pheromone.ca/]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - June 18th - Gaps in the Clouds ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/gaps-in-the-clouds-by-robert-fritz]] [https://speakerdeck.com/owaspmontreal/gaps-in-the-clouds-by-robert-fritz See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Robert Fritz&lt;br /&gt;
*'''ABSTRACT:''' Cloud technology offers agility and scaling, and a chance to break away from legacy IT choices.  Unfortunately, skipping traditional IT activities often results in poorly patched systems, out of date firewalls, and overprovisioned entitlements wielded by admins whose “day job” is development.  Boundaries of accountability and responsibility amongst cloud providers and consumers are confusing, vague, and shift, making security difficult to manage.  In such an environment, a “BP-spill” event, where cost wins over safely safety, is likely.  This talk will dive down into the cracks between the layers of cloud, and share some of the exciting dirt we have seen and expect to see in coming years.”&lt;br /&gt;
*'''BIO:''' Robert Fritz has been practicing security his entire career. Rob started as an Air Force lieutenant at Langley AFB and later at the Pentagon in Washington DC, building and managing classified networks. Finding he was getting too far from technology after a brief stint flying, he left the military to get back to the tech, and built security tools for HP in their HP-Unix lab.  Over time he found himself in more and more security design discussions, so co-authored HP’s Commercial Application Threat Analysis Methodology, building an internal consulting practice at HP.  This quantitative approach, led to two pending patents, an external-facing consulting practice, and his contributions to NIST IR-7502, the Common Configuration Scoring System (CVSS follow-on).  He is the former lead editor for the Center for Internet Security’s HP-UX Benchmark, and current lead for the Android Benchmark.  Robert now works for Morgan Stanley as global head of the Strategic Consulting team in the Security Architecture group, and leads the team’s cloud and social-media security practices.&lt;br /&gt;
*'''WHEN:''' June 18th 2014&lt;br /&gt;
*'''WHERE:''' 700 Rue Wellington, Floor 2, Montreal, QC H3C 3S4&lt;br /&gt;
*'''REGISTRATION:''' http://owaspmtl18junems.eventbrite.ca&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/gaps-in-the-clouds-by-robert-fritz&lt;br /&gt;
*'''EVENT SPONSOR:''' Morgan Stanley http://www.morganstanley.com/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:30 Networking and Morgan Stanley Hosted Pizza and Soft Drinks&lt;br /&gt;
  18:30-18:45 OWASP Chapter &amp;amp; Morgan Stanley Welcome&lt;br /&gt;
  18:45-19:45 Main presentation - &amp;quot;Gaps in the Clouds&amp;quot; Robert Fritz&lt;br /&gt;
  19:45-20:00 Open discussion and questions&lt;br /&gt;
  20:00-...   Optional, informal networking at Aziatic - 626 rue Marguerite-d'Youville, Montréal, QC H3C 1W7&lt;br /&gt;
&lt;br /&gt;
[[Image:Morgan_Stanley_Historical_Logo.png|link=http://www.morganstanley.com/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - May 26th - Récapitulatif des challenges NorthSec ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/P8_V3RI1Ru4]] [https://youtu.be/P8_V3RI1Ru4 Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''PRÉSENTATEUR PRINCIPAL:''' Laurent Desaulniers&lt;br /&gt;
*'''RÉSUMÉ:''' Solutions de la compétition en sécurité NorthSec 2014 sur les sujets de  XXE + SSRF, WAF Bypass, Xpath Injection, DOM Injection, HTTP Only Flag bypass et contournement de captchas. Une bonne façon d'apprendre sur ces failles que vous étiez ou non un participant de la compétition.&lt;br /&gt;
*'''MESSAGE DU PRÉSENTATEUR:''' Vous voyez Rao dans votre soupe? Vous voulez une solution pour un XSS avec des cookies http only? Les captchas illisibles sont un problème? Assistez à la présentation de l'OWASP!&lt;br /&gt;
*'''BIO:''' Laurent Desaulniers est un passionné de sécurité informatique. Il a présenté au Hackfest, au colloque RSI, à OWASP et est challenge designer à NorthSec. M. Desaulniers détient les certifications CISSP, CISM, CISA et OSCP.&lt;br /&gt;
*'''QUAND:''' 26 mai à 18h00&lt;br /&gt;
*'''OÙ:''' Local PK-1140 - Pavillon Président-Kennedy 201, Avenue du Président-Kennedy, J2X 3Y7&lt;br /&gt;
*'''INSCRIPTION:''' https://www.eventbrite.ca/e/owasp-montreal-26-mai-recapitulatif-des-challenges-northsec-tickets-11724413035&lt;br /&gt;
*'''WEBCAST:''' https://www.youtube.com/watch?v=P8_V3RI1Ru4&lt;br /&gt;
*'''ÉQUIPE ACADÉMIQUE''' AGEEI-UQAM - http://www.ageei.org/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
&lt;br /&gt;
 18:00-18:30 Réseautage&lt;br /&gt;
 18:30-18:35 Mot de bienvenue par le leader du chapitre (Jonathan M.)&lt;br /&gt;
 18:35-19:30 Présentation principale : Récapitulatif des challenges NorthSec&lt;br /&gt;
 19:30-20:00 Période de questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Ageeilogo.jpg|200px|link=http://www.ageei.org/]]&lt;br /&gt;
[[Image:2397_nsec_Logo_500-250.png|200px|link=http://nsec.io/]]&lt;br /&gt;
&lt;br /&gt;
== Networking with infosec communities - April 21st ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''RÉSUMÉ:''' En collaboration avec Montréhack, mtlsec et NorthSec, nous organisons une soirée réseautage dans un pub du centre-ville. Du plaisir garanti avec les membres de plusieurs communautés infosec de Montréal!&lt;br /&gt;
&lt;br /&gt;
*'''ABSTRACT:''' In collaboration with Montréhack, mtlsec and NorthSec, we are organizing a networking evening in a pub downtown. Fun guaranteed with the other security communities in Montreal!&lt;br /&gt;
&lt;br /&gt;
*'''QUAND:''' 21 Avril 2014&lt;br /&gt;
*'''WHEN:''' April 21st 2014&lt;br /&gt;
&lt;br /&gt;
*'''OÙ/WHERE:''' BENELUX - Brasserie Artisanale 245 Sherbrooke St W Montreal, QC H2X 1X7&lt;br /&gt;
&lt;br /&gt;
*'''INSCRIPTION/REGISTRATION:''' https://www.eventbrite.ca/e/montrehack-avril-april-northsec-pre-party-tickets-11232307133&lt;br /&gt;
&lt;br /&gt;
*'''PARTENAIRES/PARTNERS:''' Montréhack http://montrehack.ca/ - mtlsec http://blog.mtlsec.com/ - NorthSec https://www.nsec.io/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
  18:00-21:00 Networking&lt;br /&gt;
  21:00-23:59 Remember to drink responsibly!&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - March 27th - Panel Compétition en sécurité NorthSec ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Présentation sous forme de panel - venez poser vos questions!'''&lt;br /&gt;
&lt;br /&gt;
*'''RÉSUMÉ:''' Les compétitions de type Capture the Flag (CTF) sont un moyen pour les professionnels et amateurs de sécurité informatique de mettre leurs talents à l'épreuve. NorthSec est une compétition Montréalaise annuelle en sécurité appliquée, qui aura lieu cette année au Marché Bonsecours de Montréal le 25, 26 et 27 avril prochain. Elle vise à augmenter le niveau technique des professionnels de la sécurité au Québec, ainsi que de permettre à ses acteurs les plus talentueux de se démarquer.&lt;br /&gt;
*'''DÉTAILS:''' Le panel de jeudi, sous la forme d'un échange convivial entre les organisateurs de l'évènement et de ses participants, abordera des thèmes variés comme l'écriture de bon défis, l'infrastructure, la logistique, les inattendus, un bilan de 2013 et tout ça en passant par de savoureuses annecdotes (on l'espère). Venez en grand nombre toucher à ces légendes de la scène infosec montréalaise!&lt;br /&gt;
*'''PANÉLISTES:''' Gabriel Tremblay, François Proulx, Laurent Desaulniers, Stéphane Graber&lt;br /&gt;
*'''ANIMATEUR:''' Olivier Bilodeau&lt;br /&gt;
*'''QUAND:''' 27 mars 2014&lt;br /&gt;
*'''OÙ:''' Salle M-1510, École Polytechnique de Montréal, 2500 chemin de Polytechnique, Montréal (Québec) H3T 1J4, pavillon Lassonde&lt;br /&gt;
*'''INSCRIPTION:''' https://www.eventbrite.ca/e/owasp-montreal-27-mars-panel-competition-en-securite-northsec-tickets-10918436337&lt;br /&gt;
*'''ÉQUIPE ACADÉMIQUE:''' Polytechnique - Polyhack http://polyhack.org/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Mot de bienvenue par le leader du chapitre (Jonathan Marcil)&lt;br /&gt;
  18:30-20:00 Présentation principale : Panel NorthSsec&lt;br /&gt;
&lt;br /&gt;
[[Image:Polyhack.png‎‎|200px|link=http://polyhack.org/]]&lt;br /&gt;
[[Image:LogoPolytechnique.gif|link=http://www.polymtl.ca/]]&lt;br /&gt;
[[Image:2397_nsec_Logo_500-250.png|200px|link=http://nsec.io/]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - February 25th - Proven Strategies for Web Application Security ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/proven-strategies-for-web-application-security-by-justin-c-klein-keane]] [https://speakerdeck.com/owaspmontreal/proven-strategies-for-web-application-security-by-justin-c-klein-keane See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Justin C. Klein Keane&lt;br /&gt;
*'''ABSTRACT:''' The rising dominance of the web as an application delivery platform has focused attacker attention squarely on the security of dynamic web applications. Application security is a complex, and shifting, field. Learn about tested and successful techniques to build safer applications, find flaws before they become vulnerabilities, and deploy applications that can detect, and resist attack.&lt;br /&gt;
*'''BIO:''' Justin C. Klein Keane is a security engineer and chapter leaders of OWASP in Philadelphia. For over a decade Justin has worked as a trainer, coder, and exploit developer. Justin is currently writing a book for NoStarch Press on hacking, speaks regularly at conferences, holds a masters degree in information technology from the University of Pennsylvania and is credited with hundreds of application vulnerability discoveries.&lt;br /&gt;
*'''WHEN:''' February 25th 2014&lt;br /&gt;
*'''WHERE:''' Ecole de technologie superieure, 1100 Notre-Dame Street West, Montreal, Room: A-1150&lt;br /&gt;
*'''REGISTRATION:''' http://owaspmtljan2014.eventbrite.ca&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/proven-strategies-for-web-application-security-by-justin-c-klein-keane&lt;br /&gt;
*'''ACADEMIC PARTNER:''' ETS - DCI http://dciets.com/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Welcome speech by Chapter Leader (Jonathan Marcil)&lt;br /&gt;
  18:30-20:00 Main session and open discussion: Proven Strategies for Web Application Security&lt;br /&gt;
  20:00-...   End of the meeting in a pub&lt;br /&gt;
&lt;br /&gt;
[[Image:Dciets.png‎‎‎|100px|link=http://dciets.com/]]&lt;br /&gt;
[[Image:Logo_ets.png|link=http://www.etsmtl.ca/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - January 28th - Latest trends in Mobile Security ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/8qPyKj4FKgY]] [https://youtu.be/8qPyKj4FKgY Watch the conference / Regarder la conférence] &amp;lt;br /&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/latest-trends-in-mobile-security-by-francois-proulx]] [https://speakerdeck.com/owaspmontreal/latest-trends-in-mobile-security-by-francois-proulx See the slides / Voir la présentation] &amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Francois Proulx&lt;br /&gt;
*'''ABSTRACT:''' Last AppSecUSA 2013 had a great line up of talks, especially regarding mobile applications. This session will be covering all the hottest presentations about mobile security by doing an overview from what see saw at AppSecUSA, all with some slides and snippets of presentations that was recorded at the event. Discussion will be encouraged within the audience as this will be more a dynamic event than a regular talk.&lt;br /&gt;
*'''BIO:''' François Proulx is a senior mobile application developer who has worked on dozens of iOS applications since the very beginning of the Apple iOS platform. Over the past few years he has switched his focus to security. He spends a lot of his free time participating in Capture the Flag events (CTFs) and organizing the NorthSec security competition.&lt;br /&gt;
*'''WHEN:''' January 28th 2014&lt;br /&gt;
*'''WHERE:''' UQAM Room PK-1705, Pavillon Président-Kennedy (the big boat at Place des Arts) - 201 Avenue du Président-Kennedy  J2X 3Y7&lt;br /&gt;
*'''REGISTRATION:''' http://owaspmtl-mobilesecurity.eventbrite.ca&lt;br /&gt;
*'''SLIDES/CONTENT:''' [http://www.youtube.com/playlist?list=PLQtB2ug5xmvaQ9jeRWV53-F_T555GQfhW YouTube playlist]&lt;br /&gt;
*'''SPONSOR:''' Academic partner AGEEI-UQAM - http://www.ageei.org/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Welcome speech by Chapter Leader (Jonathan M.)&lt;br /&gt;
  18:30-20:00 Main session and open discussion: Mobile Security&lt;br /&gt;
  20:00-...   End of the meeting in a pub&lt;br /&gt;
&lt;br /&gt;
[[Image:Ageeilogo.jpg|200px|link=http://www.ageei.org/]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Presentations For Download  ====&lt;br /&gt;
&lt;br /&gt;
[http://www.owasp.org/images/0/0d/20100209mstechdaysowaspasvssgiv01-12657916463819-phpapp02.ppt OWASP ASVS] by Sebastien Gioria (09/03/2010) &lt;br /&gt;
&lt;br /&gt;
[http://www.ph-il.ca/slides/afup__authetification_forte.pdf Authentification Forte] by Philippe Gamache (02/02/2010) &lt;br /&gt;
&lt;br /&gt;
[http://www.opensamm.org/downloads/OpenSAMM-1.0.ppt Software Assurance Maturity Model (OpenSAMM)] by Pravir Chandra (03/11/2009) &lt;br /&gt;
&lt;br /&gt;
[http://www.owasp.org/images/d/de/Owasp-montreal-sept-17h-2009-justin-foster.pdf Crossing the Border – Javascript Exploits] by Justin Foster (17/09/2009) &lt;br /&gt;
&lt;br /&gt;
[http://www.owasp.org/images/c/c2/ALaughRIAt.pdf A Laugh RIAt] by Rafal Los (07/04/2009) &lt;br /&gt;
&lt;br /&gt;
[https://www.owasp.org/images/e/eb/OWASP-Montreal-24022009-RobLabbe.pptx Microsoft Security Development Lifecycle for IT] by Rob Labbe (24/02/2009) &lt;br /&gt;
&lt;br /&gt;
[https://www.owasp.org/images/3/39/OWASP-Montreal-24022009-EN.pdf OWASP Goal and Top Ten 2007 for Managers - French version] by Benoit Guerette (24/02/2009)&lt;br /&gt;
&lt;br /&gt;
Newer presentations are available on [https://speakerdeck.com/owaspmontreal Speaker Deck]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Circle_owasp_logo_nowhitebackground.png|200px]]&lt;br /&gt;
&lt;br /&gt;
= OWASP Foundation / Mission OWASP    = &lt;br /&gt;
OWASP Foundation ([https://docs.google.com/a/owasp.org/presentation/d/10wi1EWFCPZwCpkB6qZaBNN8mR2XfQs8sLxcj9SCsP6c/edit?usp=sharing Overview Slides]) is a professional association of [[Membership | global members]] and is open to anyone interested in learning more about software security. Local chapters are run independently and guided by the [[Chapter_Leader_Handbook]].  As a [[About_OWASP | 501(c)(3)]] non-profit professional association your support and sponsorship of any meeting venue and/or refreshments is tax-deductible. Financial contributions should only be made online using the authorized online chapter donation button.  To be a &amp;lt;b&amp;gt;SPEAKER&amp;lt;/b&amp;gt; at ANY OWASP Chapter in the world simply review the [[Speaker_Agreement | speaker agreement]] and then contact the local chapter leader with details of what OWASP PROJECT, independent research or related software security topic you would like to present on.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;La fondation OWASP est une [https://www.owasp.org/index.php/Membership association de professionnels] et elle est ouverte à tout intervenant intéressé à en apprendre davantage sur la sécurité applicative. Les chapitres locaux (dont celui de Montréal) sont gérés de façon indépendante et selon un [https://www.owasp.org/index.php/Chapter_Leader_Handbook manuel de directives à respecter].   &lt;br /&gt;
Toute contribution financière au chapitre peut être faite en ligne en utilisant l’icône prévu à cet effet. Pour être conférencier au sein de n’importe quel chapitre à l’échelle mondiale, vous n’avez qu’à prendre connaissance du document [https://www.owasp.org/index.php/Speaker_Agreement &amp;quot;entente avec les conférenciers – speaker agreement&amp;quot;] et à joindre le responsable du chapitre Montréal avec un descriptif du sujet que vous aimeriez aborder et s’il est relié à un projet OWASP, à de la recherche indépendante ou encore le sujet en particulier, concernant la sécurité applicative, que vous souhaitez aborder.&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== [[Image:Circle_owasp_logo_nowhitebackground.png|128px]] Montreal OWASP Team == &lt;br /&gt;
&lt;br /&gt;
Scope of the team is to discuss and plan local activities and meetings &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Chapter Leaders ===&lt;br /&gt;
&lt;br /&gt;
* [mailto:anne.gauthier@owasp.org Anne Gauthier], President/Présidente&lt;br /&gt;
* [mailto:michel.bourque{at}owasp.org Michel Bourque], Chapter coordinator and marketing manager/Coordination et Marketing&lt;br /&gt;
* [mailto:hugo.genesse(at)owasp.org Hugo Genesse], Web content and production manager/Site internet et Production &lt;br /&gt;
* [mailto:olivier.arteau(at)owasp.org Olivier Arteau], Logistic manager/Logistique&lt;br /&gt;
&lt;br /&gt;
==== Chapter leader history ====&lt;br /&gt;
*2008-2010 - Benoit Guerette, founder and chapter leader&lt;br /&gt;
*2011-2012 - Philippe Gamache, chapter leader (vice chapter-leader since 2010)&lt;br /&gt;
*2013-2015 - Jonathan Marcil, chapter leader&lt;br /&gt;
*2016-... - Anne Gauthier, Michel Bourque, Marius Popescu, Hugo Genesse, Olivier Arteau&lt;br /&gt;
&lt;br /&gt;
==== Old board members ====&lt;br /&gt;
*Philippe Pépos Petitclerc&lt;br /&gt;
*Michael Robillard&lt;br /&gt;
*Benoit Guerette (logistics 2015)&lt;br /&gt;
*Alexandre Rimthong&lt;br /&gt;
*Mathieu Binette&lt;br /&gt;
*Sean Coates&lt;br /&gt;
*Jean-Marc Robert&lt;br /&gt;
*Philippe Blondin&lt;br /&gt;
*Benoit Guerette (founder)&lt;br /&gt;
*Laurent Desaulniers&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;headertabs&amp;gt;&amp;lt;/headertabs&amp;gt; &lt;br /&gt;
__NOTOC__ &lt;br /&gt;
[[Category:Canada]]&lt;/div&gt;</summary>
		<author><name>Svieg</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=Montr%C3%A9al&amp;diff=232456</id>
		<title>Montréal</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=Montr%C3%A9al&amp;diff=232456"/>
				<updated>2017-08-18T16:13:39Z</updated>
		
		<summary type="html">&lt;p&gt;Svieg: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Welcome &amp;amp; Bienvenue to the OWASP Montréal chapter ==&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:OWASP-Montreal-Logo.png|Logo OWASP Montréal]]&lt;br /&gt;
&lt;br /&gt;
The OWASP Foundation was established in 2001 as an open community and software security resource. Since then, OWASP has grown to be globally recognized as a credible source for application security standards. &amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
OWASP is an open community dedicated to enabling organizations to conceive, develop, acquire, operate, and maintain applications that can be trusted. All of the OWASP tools, documents, forums, and chapters are free and open to anyone interested in improving application security. We advocate approaching application security as a people, process, and technology problem because the most effective approaches to application security include improvements in all of these areas. &amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
OWASP is open to anyone. Anyone can attend OWASP's vendor agnostic local chapter meetings, participate in regional and global conferences, and contribute to the many OWASP projects. And anyone can start a new project, form a new chapter, or lend their expertise to help an OWASP Global Committee.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt;On parle français aussi ! Le chapitre de Montréal organise plusieurs activités gratuites afin de partager les connaissances en sécurité applicative avec la communauté de développeurs et gestionnaires. Suivez-nous sur les réseaux sociaux pour connaître les dates des conférences du midi et des workshops !&amp;lt;/b&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Top documentation from OWASP includes: &lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/index.php/Top_10_2013-Top_10 OWASP TOP 10 : The Ten Most Critical Web Application Security Risks]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/images/3/33/OWASP_Application_Security_Verification_Standard_3.0.1.pdf OWASP ASVS : Application Security Verification Standard]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/images/5/52/OWASP_Testing_Guide_v4.pdf OWASP Testing Guide : Penetration Testing Framework ]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/images/7/78/OWASP_AlphaRelease_CodeReviewGuide2.0.pdf OWASP Code Review Guide : Source Code Analysis Framework ]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/index.php/OWASP_Cheat_Sheet_Series OWASP Cheat Sheet : Best practices guidelines for developers ]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org OWASP Global ]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Chapter Leaders / Responsables du chapitre ===&lt;br /&gt;
&lt;br /&gt;
* [mailto:anne.gauthier@owasp.org Anne Gauthier], President/Présidente&lt;br /&gt;
* [mailto:michel.bourque{at}owasp.org Michel Bourque], Chapter coordinator and marketing manager/Coordination et Marketing&lt;br /&gt;
* [mailto:hugo.genesse(at)owasp.org Hugo Genesse], Web content and production manager/Site internet et Production &lt;br /&gt;
* [mailto:olivier.arteau(at)owasp.org Olivier Arteau], Logistic manager/Logistique&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Special thanks to / Remerciements : &lt;br /&gt;
* Simon Lacasse, Web content / Site internet&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;b&amp;gt; Reach our chapter / Joindre le chapitre &amp;lt;/b&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Follow OWASP's Montreal chapter's activities through social medias, register to events, watch the previous presentations and more! &lt;br /&gt;
&lt;br /&gt;
Suivez les activités du chapitre OWASP Montréal via les réseaux sociaux, inscrivez-vous aux activités, visualisez les anciennes présentations et plus encore! &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;b&amp;gt;[http://lists.owasp.org/mailman/listinfo/owasp-montreal Click here] to join the local chapter mailing list.&lt;br /&gt;
&amp;lt;br/&amp;gt;[http://lists.owasp.org/mailman/listinfo/owasp-montreal Inscrivez-vous ici] à la liste de courriels du chapitre afin de recevoir les dernières nouvelles!&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Want to be part of the community ? &lt;br /&gt;
Devenez membre de notre communauté ! &lt;br /&gt;
[https://www.owasp.org/index.php/Membership_Map Click here / Cliquer ici]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Eb_press_little.gif‎|OWASP Montreal Eventbrite|link=http://owaspmontreal.eventbrite.ca/]] &lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[Image:Yt-brand-standard-logo-630px.png‎|128px|YouTube OWASP Montreal Channel|link=http://www.youtube.com/owaspmontreal]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]   &lt;br /&gt;
[[Image:Speakerdecklogo.png‎|Slides of OWASP Montreal on SpeakerDeck |link=https://speakerdeck.com/owaspmontreal]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Twitter-bird-cropped-onwhite.png|@owaspmontreal on Twitter|link=https://twitter.com/owaspmontreal]]&lt;br /&gt;
[[Image:FacebookSquareLogo.png|OWASP Montreal Facebook page|link=https://www.facebook.com/owasp.montreal]]&lt;br /&gt;
[[Image:LinkedinSquareLogo.png|OWASP Montreal on LinkedIn|link=https://www.linkedin.com/groups/1379007/profile]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
&lt;br /&gt;
== Sponsorship &amp;amp; Membership / Commandite &amp;amp; Adhésion ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Btn_donate_SM.gif|link=http://www.regonline.com/donation_1044369]] to this chapter or become a local chapter supporter.&lt;br /&gt;
&lt;br /&gt;
Or consider the value of [[Membership | Individual, Corporate, or Academic Supporter membership]]. Ready to become a member? [[Image:Join_Now_BlueIcon.JPG|75px|link=https://myowasp.force.com/]]&lt;br /&gt;
&lt;br /&gt;
[http://www.regonline.com/donation_1044369 Donnez] au chapitre ou devenez commanditaire du chapitre local! &lt;br /&gt;
&lt;br /&gt;
[https://myowasp.force.com/ Devenez membre !] Pour en savoir davantage sur les avantages d’une adhésion individuelle, corporative ou en tant qu’institution d’enseignement, [https://www.owasp.org/index.php/Membership cliquez ici]. &lt;br /&gt;
&lt;br /&gt;
[[Category:OWASP Chapter]]&lt;br /&gt;
&lt;br /&gt;
== Chapter Supporters / Commanditaires du chapitre ==&lt;br /&gt;
&lt;br /&gt;
[https://www.owasp.org/images/9/91/OWASP_Membership_Flyer_Montreal.png All details available here / Pour tous les détails ] [[File:Chapter-supporter-owasp-montreal.png|200px|link=https://www.owasp.org/images/9/91/OWASP_Membership_Flyer_Montreal.png]] &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Platinum / Platine ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Gosecure-2.png|GoSecure|link=http://www.gosecure.ca/]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[File:Desjardins2-400x400.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Gold / Or ===&lt;br /&gt;
&lt;br /&gt;
[[Image:ImmunioLogo.jpg|Immunio|link=https://www.immun.io/]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Lunch &amp;amp; Learn / Workshops 2017 =&lt;br /&gt;
&lt;br /&gt;
== Cas d'attaques vécus : Internet des objets (IOT) - Attaques DDoS ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Cas_dattaques_vecus-r.jpg  ]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 June 19th 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
Pour clore la saison printanière 2017, OWASP Montréal est fier d'accueillir au Midi Conférence, M. Christian Shink qui fera un survol de cas d'attaques vécus, des techniques utilisées et des acteurs impliqués dans ces attaques.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
L'incorporation généralisée de dispositifs «intelligents» dans les objets de la vie de tous les jours modifie la façon dont les gens et les machines interagissent les uns avec les autres. Cette incorporation offre une promesse d'une meilleure qualité de vie, une meilleure efficacité. En contrepartie, leur déploiement introduit également des vulnérabilités à la fois dans l'infrastructure qu'ils soutiennent et sur lesquels ils comptent, ainsi que dans les processus qu'ils guident. Que ce soit au niveau applicatif ou des infrastructures, ces vulnérabilités sont exploitées par des acteurs malicieux pour générer des attaques de déni de service massives et sophistiquées. Nous tenterons également de tirer des leçons afin de tenter de minimiser ce type d'attaques dans le futur.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Christian Shink possède plus d’une dizaine d’années d’expérience en développement et sécurité d’applications. Avant de se joindre à Radware, Christian était à l’emploi d'une firme conseil où il a conseillé de nombreuses entreprises, dont de grandes banques américaines et Casinos. Il détient une certification CSSLP et est membre de l'ordre des ingénieurs du Québec.&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== HOW TO! Threat Modeling Toolkit ==&lt;br /&gt;
&lt;br /&gt;
[[Image:OWASPMtl-JonathanMarcil-1.jpg]]&lt;br /&gt;
[[Image:OWASPMtl-JonathanMarcil-3.jpg]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/threat-modeling-toolkit]] [https://speakerdeck.com/owaspmontreal/threat-modeling-toolkit See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 May 23rd, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Shopify Montreal&lt;br /&gt;
&lt;br /&gt;
Threat Modeling is a great way to analyze security early in software development by structuring possible attacks, bad actors and countermeasures over a broad view of the targeted system. This talk will describe basic components of a threat model and how to use them effectively.&lt;br /&gt;
Threat Intelligence is where you gather knowledge about the environment and business assets to determine what are the actual threats. But how do you reconcile that with the current architecture in a useful manner?&lt;br /&gt;
The toolkit presented in this talk will enable you to systematically structure related information using graphical notations such as flow diagram and attack tree. In case you are wondering where to start in your organization, a quick lightweight risk rating methodology will also be proposed.&lt;br /&gt;
And in the end, you’ll see how we can all tie those together and get threat modeling to a point where it’s an efficient application security activity for communication. Doing this will prevent security reviews from missing important things even when chaos prevails during the realization of a project.&lt;br /&gt;
Modeling concepts will be demonstrated with an actual IoT device used as example.&lt;br /&gt;
Presentation will be done in english.&lt;br /&gt;
&lt;br /&gt;
Speaker Bio:&lt;br /&gt;
Jonathan Marcil is the former chapter leader of OWASP Montreal and is now Senior Application Security Engineer at Blizzard Entertainment in beautiful Orange County, California.&lt;br /&gt;
Jonathan has been involved with OWASP for many years and has been behind the Media Project which gathered and promoted AppSec conferences video content in the official OWASP YouTube channel. He was also part of NorthSec CTF event as a challenge designer specialized in Web and imaginative contraptions.&lt;br /&gt;
He is passionate about Application Security and enjoys architecture analysis, code review, threat modeling and debunking security tools. He holds a diploma in Software Engineering from ÉTS Montreal and has more than 15 years of experience in Information Technology and Security.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Merci à nos précieux commanditaires !&lt;br /&gt;
&lt;br /&gt;
== Security Testing: Unlocking the Benefits of a Hybrid Approach ==&lt;br /&gt;
[[Image:Security testing hybrid approach-r 3.jpg    ]]&lt;br /&gt;
[[Image:Security testing hybrid approach-r 4.jpg    ]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/hybrid-approach-to-security-testing]] [https://speakerdeck.com/owaspmontreal/hybrid-approach-to-security-testing See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 April 24th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
As part of their defensive efforts, businesses commonly commission cybersecurity assessments of their web applications; with the aim of identifying any weaknesses in the security controls and ensuring a continually strong cybersecurity posture of their systems.&lt;br /&gt;
&lt;br /&gt;
The classical approach of either secure code review (white box) or penetration testing (black box) assessment have proven to be effective in securing of web applications. The new trend, however, is moving towards the combination of these two approaches; expert consensus is rapidly recognizing the advantages of using a hybrid approach. When applied properly, a hybrid approach can build on the strengths of both white and black box testing, while compensating for their individual shortcomings.&lt;br /&gt;
&lt;br /&gt;
In this presentation, we will examine the details of secure code review and penetration testing, and run demos to contrast their respective strengths and weaknesses. We will also examine why a hybrid approach can produce more complete and relevant assessment results. To conclude, we will cover proven approaches, and practical techniques, on how you can start leveraging a hybrid approach to web application assessments today.&lt;br /&gt;
&lt;br /&gt;
Anne Gauthier is an application security analyst at GoSecure. Anne is also the president of the Montreal Chapter of OWASP – the industry standard for web application security. With a penetration testing background, she specializes in secure code reviews and in helping companies to improve their software development lifecycle (SDLC) according to industry best practices. Anne is CSSLP, GWAPT and GSSP-JAVA certified. She obtained a Software Engineering bachelor’s degree from Ecole de Technologie Supérieure in Montréal and is now pursuing a Master of Engineering (MEng) degree in Information Systems Security at Concordia University. She is the author of the Project 201 Security blog.&lt;br /&gt;
&lt;br /&gt;
Merci à nos précieux commanditaires !&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;HOW-TO&amp;quot; NIGHT ! Tout sur les CTFs (Capture The Flag) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Howto_ctf.jpg]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://docs.google.com/presentation/d/1zEsCcX-Nvq8Nz0k-B1zHejCDNT2oGZx8oUBgMbvvMM0/edit#slide=id.p ]] [https://docs.google.com/presentation/d/1zEsCcX-Nvq8Nz0k-B1zHejCDNT2oGZx8oUBgMbvvMM0/edit#slide=id.p  See the slides / Voir la présentation (Laurent Desaulniers)]&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://docs.google.com/presentation/d/1c1P1d2mKe767j1Y0V9cK6De5cpnK4I7GI-ORiodbg1A/edit#slide=id.p ]] [https://docs.google.com/presentation/d/1c1P1d2mKe767j1Y0V9cK6De5cpnK4I7GI-ORiodbg1A/edit#slide=id.p  See the slides / Voir la présentation (Charles Hamilton)]&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=http://obilodeau.github.io/slides/2017-04-04_how-not-to-suck-at-ctfs/ ]] [http://obilodeau.github.io/slides/2017-04-04_how-not-to-suck-at-ctfs/  See the slides / Voir la présentation (Olivier Bilodeau)]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 April 4th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Shopify&lt;br /&gt;
&lt;br /&gt;
Cette nouvelle soirée &amp;quot;How-To&amp;quot; Night d'OWASP Montréal vise à présenter les CTFs (une compétition Capture The Flag) et aider les équipes à démarrer et à continuer à évoluer dans leurs pratique de la cyber sécurité pratique. L'objectif est d'outiller les participants en leur fournissant des ressources techniques et des contacts afin de les aider à progresser.&lt;br /&gt;
&lt;br /&gt;
Les éléments discutés seront:&lt;br /&gt;
&lt;br /&gt;
- Composition optimale d’une équipe : Fonctionnement d’une équipe de CTF et les principaux rôles (chef d’équipe, cryptographie, application web, rétro ingénierie et les causes perdues).&lt;br /&gt;
&lt;br /&gt;
- Pourquoi faire des CTFs? Discussion sur les différents styles (jeopardy, attack/defense, etc.), quels sont les problèmes fréquemments rencontrés + plusieurs anecdotes intéressantes (et drôles).&lt;br /&gt;
&lt;br /&gt;
- Trucs de Mr. Unikoder : Le créateur du fameux site ringzer0team, soit un des plus gros sites pour apprendre la résolution de problèmes de CTF (https://ringzer0team.com/) Apprenez des trucs du meilleur, sur comment débuter et interpréter un challenge web, binaire et crypto avec des trucs réels du métier.&lt;br /&gt;
&lt;br /&gt;
Matériel requis :&lt;br /&gt;
&lt;br /&gt;
    Votre légendaire enthousiasme&lt;br /&gt;
&lt;br /&gt;
Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
&lt;br /&gt;
Places limitées. Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Shopify pour l'événement.&lt;br /&gt;
&lt;br /&gt;
Présentateurs :&lt;br /&gt;
&lt;br /&gt;
Charles Hamilton, Senior Consultant chez Mandiant, FireEye, Inc.&lt;br /&gt;
&lt;br /&gt;
Olivier Bilodeau, Cybersecurity Research Lead at GoSecure&lt;br /&gt;
&lt;br /&gt;
Laurent Desaulniers, Senior Security Solution Specialist at Bell Canada&lt;br /&gt;
&lt;br /&gt;
== NorthSec - Applied Security Event ==&lt;br /&gt;
[[Image:Nsec_2017_midi_conf.jpg]]&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/northsec-applied-security-event]] [https://speakerdeck.com/owaspmontreal/northsec-applied-security-event See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 April 4th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
NorthSec: La plus grande compétition et conférence en cyber sécurité au Canada&lt;br /&gt;
&lt;br /&gt;
NorthSec est un organisme sans but lucratif qui organise une conférence et une compétition de sécurité de type &amp;quot;Capture-The-Flag&amp;quot; (CTF) et des formations. Avec plus de 400 participants présents sur le site pour la compétition, c’est la plus grande compétition du genre au monde.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
La conférence, dans sa 3e année, attire des présentateurs internationaux avec du contenu technique exclusif. L’ajout des séances de travail (workshops) devrait plaire aux plus chevronnés des binaires.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Des formations de 3 jours sont offertes avant la conférence: &amp;quot;Advanced Web Application Security&amp;quot; par Philippe Arteau et &amp;quot;Malware and Memory Forensics&amp;quot; par Michael Ligh, co-auteur des livres &amp;quot;Malware Analyst Cookbook&amp;quot; et &amp;quot;The Art of Memory Forensics&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
NorthSec est situé au Marché Bonsecours dans le Vieux-Port de Montréal au printemps du 15 au 21 mai 2017.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
La présentation couvrira:&lt;br /&gt;
&lt;br /&gt;
- Le plan pour 2017&amp;lt;br/&amp;gt;&lt;br /&gt;
- Ce qui différencie NorthSec&amp;lt;br/&amp;gt;&lt;br /&gt;
- Comment équilibrer une compétition pour les débutants et les experts&amp;lt;br/&amp;gt;&lt;br /&gt;
- Comment bâtir une infrastructure basée sur les conteneurs qui gère 50 équipes dans quelques serveurs sans qu’ils ne se partagent de machines virtuelles&amp;lt;br/&amp;gt;&lt;br /&gt;
- Comment faire du pain au levain à grande échelle&amp;lt;br/&amp;gt;&lt;br /&gt;
- Présentation de quelques défis et solutions&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Les présentateurs:&lt;br /&gt;
&lt;br /&gt;
- Gabriel Tremblay, Président, Delve Labs&amp;lt;br/&amp;gt;&lt;br /&gt;
- Olivier Bilodeau, VP Formations, Co-fondateur MontréHack, GoSecure&amp;lt;br/&amp;gt;&lt;br /&gt;
- Pierre-David Oriol, VP Conférences, Delve Labs&amp;lt;br/&amp;gt;&lt;br /&gt;
- Benoit Guérette, VP Partenaires, Desjardins&amp;lt;br/&amp;gt;&lt;br /&gt;
- Laurent Desaulniers, Tisserand de drapeaux, Bell Canada&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Merci à nos précieux commanditaires !&lt;br /&gt;
&lt;br /&gt;
== Sécurité des applications : Les fondements ==&lt;br /&gt;
[[Image:Tanya.jpeg]]&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/securite-des-applications-les-fondements]] [https://speakerdeck.com/owaspmontreal/securite-des-applications-les-fondements See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 March 20th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
OWASP Montréal est fier d’accueillir au Midi Conférence du mois de mars, Mme Tanya Janca, Co-Leader du chapitre OWASP Ottawa et spécialiste de la sécurité applicative au sein du Gouvernement fédéral.&lt;br /&gt;
&lt;br /&gt;
La conférence « Les fondements de la sécurité des applications » sera présentée en anglais.&lt;br /&gt;
&lt;br /&gt;
Session Description : Everyone has heard about the problem; everyone is “getting hacked”. But what is the answer? From scanning your code with a vulnerability scanner to red teaming exercises, developer education programs and bug bounties, this talk will take the audience through all the possibilities of an extensive application security program, with a detailed explanation of each part.&lt;br /&gt;
&lt;br /&gt;
Bio : Tanya Janca is an application security evangelist, a web application penetration tester and vulnerability assessor, a secure code reviewer, an ethical hacker, the Co-Leader of the OWASP Ottawa chapter, and has been developing software since the late 90’s. She has worn many hats and done many things, including; Custom Apps, Ethical Hacking, COTS, Incident Response, Enterprise Architect, Project and People Management, and even Tech Support. She is currently helping the Government of Canada secure their web applications.&lt;br /&gt;
&lt;br /&gt;
Merci à notre commanditaire principal de cet événement: Ubitrak!&lt;br /&gt;
&lt;br /&gt;
== WORKSHOP ! Server Side Template Injection (SSTI) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-okiok-SSTI-r.jpg | WORKSHOP ! Server Side Template Injection (SSTI) ]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/workshop-server-side-template-injection-ssti]] [https://speakerdeck.com/owaspmontreal/workshop-server-side-template-injection-ssti See the slides / Voir la présentation]&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 22 Février 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Shopify Montréal&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
OWASP Montreal vous invite à un atelier portant sur la sécurité des applications web supportant les moteurs de template (Template Engine). Le principe de séparation entre la présentation du site (code HTML statique) et de son contenu dynamique facilite la création de documents HTML et la capacité à modifier l'apparence du site sans mélanger le traitement et le rendu de la page. L'utilisation de moteurs de template amène de nouveaux enjeux de sécurité. Les vulnérabilités de type Server Side Template Injection (SSTI) sont exploitables à travers les données (non fiables) fournies par l'utilisateur et conduisent à l'exécution de code arbitraire (RCE) sur le serveur hébergeant l'application web.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ce workshop a pour but d'introduire cette classe de vulnérabilité à travers différents cas d'implémentation (php, java, python).&lt;br /&gt;
Nous verrons comment identifier et exploiter ces vulnérabilités et de quelle manière un attaquant peut &lt;br /&gt;
s'y prendre pour exécuter du code arbitraire sur le serveur afin d'en prendre le contrôle.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Niveau : Intermédiaire&amp;lt;br/&amp;gt;&lt;br /&gt;
Matériel requis :&lt;br /&gt;
* Votre portable&lt;br /&gt;
* Votre distribution Linux/Unix de votre choix&lt;br /&gt;
* Votre proxy Web de votre choix&lt;br /&gt;
&lt;br /&gt;
Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
Places limitées. Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Shopify pour l'événement.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Présentateur : Gérôme Dieu&amp;lt;br/&amp;gt;&lt;br /&gt;
Gérôme Dieu cumule plus de 7 années d’expérience en technologies de l’information et en sécurité. &lt;br /&gt;
Il œuvre à titre de conseiller senior en sécurité de l’information au sein de la firme OKIOK. Ces dernières années, il a acquis une expertise dans le domaine de la sécurité des applications web aussi bien d'un point de vue offensif que défensif. En plus de réaliser des tests d’intrusion pour des clients internationaux, Gérôme s’implique dans la recherche et développement afin de maintenir à la fine pointe de la technologie les tests d'intrusion et d'analyse de vulnérabilités. &amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Merci à Shopify d'héberger l'événement !&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Shopify Logo-r.png| Shopify | link=https://www.shopify.com/]]&lt;br /&gt;
== Le courriel en 2017 – risques et menaces pour tous ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Zero spam 2.jpg|Le courriel en 2017 – risques et menaces pour tous]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://www.youtube.com/watch?v=HX2vcijcCWw ]] [https://www.youtube.com/watch?v=HX2vcijcCWw Watch the conference / Regarder la conférence ]&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 Le 23 janvier 2017 à midi&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
Monsieur Poellhuber nous brossera un tableau du phénomène grandissant du rançongiciels et de l'hameçonnage, personnification.&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
- Par les années passées, la menace courriel se résumait principalement en un fort volume de contenu simplement indésirable. Aujourd’hui la menace a passablement évolué. Quels sont les véritables risques actuels associés au courriel ? Rançongiciels, hameçonnage, personnification. Cette conférence présentera les nouveaux défis de sécurité pour les organisations qui doivent composer avec des attaques de plus en plus sophistiquées et de plus en plus ciblées tout en protégeant leur réputation. Des exemples biens réels, drôles et moins drôles seront disséqués pour bien dessiner l’ampleur de l’enjeu.&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
M. David Poellhuber, Chef de l’exploitation, ZEROSPAM Sécurité Inc&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note biographique :&amp;lt;br/&amp;gt;&lt;br /&gt;
Monsieur David Poellhuber oeuvre dans l’industrie de la sécurité informatique depuis quinze ans. Il a été conférencier dans plusieurs forums de sécurité au Canada et est maintenant reconnu comme une autorité en matière de sécurité du courriel. Il a fondé ZEROSPAM Sécurité en 2003, le premier service Québécois externalisé de sécurité du courriel infonuagique qui se distingue par sa convivialité, son efficacité et ses technologies de détection proactives.&amp;lt;br/&amp;gt;&lt;br /&gt;
Audience :  Généralistes et spécialistes de la sécurité des TI &lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Merci à Ubitrack pour le repas et à Desjardins d'héberger l'événement!&lt;br /&gt;
&lt;br /&gt;
[[Image:Ubitrak-r2.jpg|Ubitrak|link=http://www.ubitrak.com/fr/]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&lt;br /&gt;
== Effective XSS Mitigation ==&lt;br /&gt;
&lt;br /&gt;
[[Image:XSS mitigation.jpg | Effective XSS Mitigation ]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=http://slides.com/olivierarteau/xss-mitigation ]] [http://slides.com/olivierarteau/xss-mitigation See the slides / Voir la présentation]&lt;br /&gt;
&lt;br /&gt;
WHEN &lt;br /&gt;
 18 Janvier 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Google Montréal&lt;br /&gt;
&lt;br /&gt;
FRANÇAIS/ENGLISH&amp;lt;br/&amp;gt;&lt;br /&gt;
La mitigation de XSS a été un sujet important au cours des dernières années. Les navigateurs ont implémenté, en autre, deux fonctionnalités pour mitiger leur impact : l'entête &amp;quot;XSS-Protection&amp;quot; et l'entête &amp;quot;Content-Security-Policy&amp;quot;. Par contre, obtenir une mitigation contre les XSS efficace est souvent plus complexe que l'on pense. Cet atelier couvrira les deux entêtes. Il expliquera comme il est possible de contourner ces protections et ce qu'il est possible de faire pour se protéger. Des exercices de type &amp;quot;offensif&amp;quot; et &amp;quot;défensif&amp;quot; seront proposés.&lt;br /&gt;
Mitigation for XSS as been an important topic in the last few years. Browsers have implemented two main functionalities to help mitigate the impact of XSS : the &amp;quot;XSS-Protection&amp;quot; header and the &amp;quot;Content-Security-Policy&amp;quot; header. But, getting an effective XSS mitigation of those headers is trickier than it may seem. This workshop will cover both of those headers. It will explain how bypass of those protection work and what you can do about it. It will have both &amp;quot;defensive&amp;quot; exercises and &amp;quot;offensive&amp;quot; exercises.&lt;br /&gt;
Niveau : débutant/intermédiaire&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Matériel requis :&lt;br /&gt;
&lt;br /&gt;
Votre portable&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
&lt;br /&gt;
Places limitées. Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Google pour l'événement.&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Présentateur : Olivier Arteau&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Olivier Arteau est un professionnel en sécurité informatique depuis quelques années et fait partie de l’équipe de test d’intrusion de Desjardins. Il est aussi un amateur de CTF qui a gagné à plusieurs reprises le CTF du NorthSec avec l’équipe HackToute et participe fréquemment à d’autres CTF avec l’équipe DCIETS.&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Merci à Google d'héberger l'événement! &lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-zap-4-r.jpg | Google | link=https://www.google.ca/ ]]&lt;br /&gt;
&lt;br /&gt;
= Lunch &amp;amp; Learn / Workshops 2015-2016 =&lt;br /&gt;
&lt;br /&gt;
== WORKSHOP ! Top 10 OWASP - Unleash the threats ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-top10.jpg | WORKSHOP! Top 10 OWASP - Unleash the threats ]]&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 30 novembre 2016 de 17h30 à 20h30&lt;br /&gt;
WHERE&lt;br /&gt;
 Immunio @ WeWork&lt;br /&gt;
&lt;br /&gt;
De nos jours, la sécurité applicative est essentielle dans l’écosystème des entreprises de toutes tailles. Les vecteurs d’attaques sont multiples, les vulnérabilités de sécurité dans les applications peuvent être désastreuses et les impacts d’un « Hack » peuvent être irréversibles pour l’entreprise; vols de données sensibles, perte de réputation, perte de $$$$$, etc.&lt;br /&gt;
L’objectif du workshop est de comprendre la base sur les vulnérabilités de sécurité dans les applications et les techniques d’exploitation utilisées par les pirates informatiques, en plus de connaître les bonnes pratiques de développement en matière de sécurité applicative. &lt;br /&gt;
Avec l'aide de WebGoat, Damn Vulnerable Web Application et de Kali Linux, vous pourrez participer&lt;br /&gt;
à l'exploitation des applications et découvrir les techniques utilisées par les attaquants.&lt;br /&gt;
&lt;br /&gt;
Niveau : débutant&lt;br /&gt;
&lt;br /&gt;
Matériel requis :&lt;br /&gt;
 Votre portable&lt;br /&gt;
 Kali Linux&lt;br /&gt;
 La VM du workshop, envoyée aux participants&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
&lt;br /&gt;
Places très limitées (nb = 10). Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Immunio &amp;amp; WeWork pour l'événement.&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Présentateur : Christian Leclerc&lt;br /&gt;
&lt;br /&gt;
Christian est spécialisé en conception et développement de solutions web sécuritaires. Tout au long de sa carrière, il a acquis une vaste expertise sur plusieurs types de technologies et méthodologies, intégré la sécurité dans le cycle de développement d’applications, effectué des revues de code sécurité, déployé des outils d’analyse des vulnérabilités et mis en place des systèmes d’authentification. De plus, il a participé à la conception et au développement de solutions sécuritaires de pointe comme la signature électronique à l’aide d’une infrastructure à clé publique (PKI), les authentifications fortes, le Registre des consentements au don d'organes et de tissus (RDOQ.org) et la migration de plusieurs applications web vers un environnement SOA (Service Oriented Architecture). &lt;br /&gt;
&amp;lt;br&amp;gt;Merci à Immunio &amp;amp; WeWork d'héberger l'événement!&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:Immunio-horizontal-r.png|Immunio|link=https://www.immun.io/]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[Image:Wework-r.jpg|WeWork|link=https://www.wework.com/]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Histoire d'un Hack ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Histoire-dun-hack-r.jpg | Histoire d'un Hack ]]&lt;br /&gt;
&lt;br /&gt;
WHEN &lt;br /&gt;
 21 novembre 2016 à midi&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
Pour son activité du mois de novembre, OWASP Montréal propose à la communauté de la sécurité des TI et aux gestionnaires de faire l'autopsie d'une attaque de haute voltige sur un site web et des outils mis à la disposition par OWASP.&lt;br /&gt;
 &lt;br /&gt;
Bernard Bolduc cumule plus de 17 années d’expérience en technologies de l’information et en sécurité. Il œuvre à titre de conseiller senior en sécurité de l’information au niveau d’entreprise de classe nationale et internationale.&lt;br /&gt;
 &lt;br /&gt;
Bernard se spécialise en sécurité Unix, applicative et en gestion de la sécurité des télécommunications. Il combine ces expertises techniques afin d’obtenir des résultats probants et efficaces pour ces clients des secteurs bancaire, télécommunication et multimédias, de l’énergie ou des services publiques. Tout au long de sa carrière, Bernard s’est toujours maintenu à jour sur les dernières menaces de sécurité technologique et commerciale en assistant à des formations spécialisées et d'échanger avec un grand nombre de partenaires dans l'industrie de la sécurité.&lt;br /&gt;
 &lt;br /&gt;
La conférence débute à midi.&lt;br /&gt;
 &lt;br /&gt;
La conférence vous donne droit à 1 CPE et pour les 50 premières personnes, un lunch gratuit.&lt;br /&gt;
 &lt;br /&gt;
Merci à Desjardins d'héberger l'événement!&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Workshop ! Création de votre première extension OWASP ZAP (ou BurpSuite) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-zap-mix.jpg | Workshop ! Création de votre première extension OWASP ZAP (ou BurpSuite)]]&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 11 novembre 2016 de 18h à 21h&lt;br /&gt;
&lt;br /&gt;
WHERE &lt;br /&gt;
 Google Montréal&lt;br /&gt;
&lt;br /&gt;
OWASP Zed Attack Proxy (ZAP) est un scanneur de vulnérabilités et un outil de débogage HTTP. Ce type d'outil est crucial dans un test d'intrusion web et contient un lot intéressant de fonctionnalités. Cela dit, il est possible d'étendre les fonctionnalités. Plusieurs types d'extension sont possibles : vue alternative pour les requêtes ou les réponses, scanneur passif des réponses, scanneur actif produisant des requêtes, etc.&lt;br /&gt;
&lt;br /&gt;
Plusieurs options seront données, par exemple :&lt;br /&gt;
&lt;br /&gt;
 Détection automatique de flag dans les sources&lt;br /&gt;
 Scanneur actif asynchrone DNS&lt;br /&gt;
 Ou votre propre idée&lt;br /&gt;
&lt;br /&gt;
Pour chacune des suggestions, des squelettes de code seront fournis pour les APIs de ZAP. Pour les utilisateurs de BurpSuite, des directives analogues seront également données.&lt;br /&gt;
&lt;br /&gt;
Niveau : débutant / intermédiaire&lt;br /&gt;
&lt;br /&gt;
Matériel requis&lt;br /&gt;
&lt;br /&gt;
 Votre portable&lt;br /&gt;
 [https://www.owasp.org/index.php/OWASP_Zed_Attack_Proxy_Project OWASP ZAP (gratuit)]&lt;br /&gt;
 [https://portswigger.net/burp/download.html BurpSuite]&lt;br /&gt;
 Éditeur de code pour Java, Python ou Ruby&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Présentateur : Philippe Arteau&lt;br /&gt;
&lt;br /&gt;
Philippe est un chercheur en cybersécurité chez GoSecure. Il est l'auteur de l'outil d'analyse statique Java &amp;quot;Find Security Bugs&amp;quot;. Il a découvert des vulnérabilités importantes dans les logiciels populaires tels que Google Chrome, Dropbox, Paypal, RunKeeper et Jira. Il a présenté dans différentes conférences incluant Black Hat USA, Black Hat Europe, ATL Sec Con, NorthSec, Hackfest (QC) et JavaOne. Il a développé de nombreux plug-ins pour les outils de proxy BurpSuite et OWASP ZAP (Retire.js, Reissue Request Script, PDF preview et Image Metadata). Il a fait également des contributions à d'autres plug-ins comme J2eeScan.&lt;br /&gt;
&lt;br /&gt;
Merci à Google d'héberger l'événement! &lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-zap-4-r.jpg | Google | link=https://www.google.ca/ ]]&lt;br /&gt;
&lt;br /&gt;
==Logiciel de rançon (Ransomware) s'attaque au domaine de la santé==&lt;br /&gt;
&lt;br /&gt;
[[Image:HackingHealth-2.jpg | Logiciel de rançon (Ransomware) s'attaque au domaine de la santé ]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/ransomware-and-healthcare-hacking-health ]] [https://speakerdeck.com/owaspmontreal/ransomware-and-healthcare-hacking-health See the slides / Voir la présentation]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;(Conférence en anglais)&lt;br /&gt;
Pour le lancement de la saison 2016 - 2017, OWASP Montréal propose à la communauté de la sécurité des TI et aux gestionnaires de la santé une incursion dans le monde du logiciel malveillant ciblant le domaine de la santé.&amp;lt;br/&amp;gt;&lt;br /&gt;
Cette conférence s'intége dans le Coopérathon co-organisé par le Mouvement Desjardins et Hacking Health.&amp;lt;/b&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Le domaine de la santé serait devenu une cible privilégiée des campagnes de ransomware parce que l'industrie a souvent payé la rançon demandée pour récupérer les données confidentielles et vitales de ses clients. Monsieur Ed Gershfang nous brossera un portrait du phénomène et des meilleures pratiques à mettre en place en matière de sécurité applicative.&lt;br /&gt;
Ed Gershfang possède une expérience solide dans l'infrastructure informatique et plus de 6 ans d'expérience dans les domaines de la sécurité de l'information, de la vulnérabilité, de la gouvernance et de la gestion des risques. Il était directeur de la sécurité pour la société PeriGen, un chef de file de développement de logiciels médicaux en Israël.&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== La sécurité applicative vue par un pentesteur ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Juin2016-OWASPMtl.jpg | OWASP Montréal reçoit Mario Contestabile, Pentester de renom ]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
From Left to Right : Isabelle Lusseyran, Head of Development at Hacking Health. Eduard Gershfang Information Security Analyst at WSP | Parsons Brinckerhoff.&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/owasp-montreal-recoit-mario-contestabile ]] [https://speakerdeck.com/owaspmontreal/owasp-montreal-recoit-mario-contestabile See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Pour clore la saison 2015 – 2016, OWASP Montréal est fier d’accueillir au Midi Conférence un des architectes de renom du développement applicatif au Canada, monsieur Mario Contestabile.&lt;br /&gt;
En tant qu’auteur de plusieurs centaines de tests d’intrusion, il connait tous les rouages de ce qu’est véritablement une application Web «sécurisée». Mais avez-vous déjà remarqué que les rapports de tests d’intrusion mentionnent rarement, voir jamais : «Votre site est très difficile à pirater. Félicitations !» ?&lt;br /&gt;
Et qu’en est-il de ces rapports qui contiennent des dizaines de soi-disant vulnérabilités ? Est-ce que cela signifie d’emblée que l’application devrait être mise hors ligne ?  &lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Lors de cette conférence, nous examinerons des rapports concrets (ambigus) de vulnérabilités et nous les analyserons afin de mieux comprendre si elles représentent une véritable menace, ou si elles ne servent qu’à «remplir» les rapports.&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Avec son expertise en protection et en attaque d’applications Web, il abordera les points suivants :&lt;br /&gt;
Comment pouvez-vous sélectionner des systèmes de façon à mieux exécuter des protections de sécurité ?&lt;br /&gt;
Éviter certains pièges dans votre application Web qui rendent les attaques plus faciles et la protection plus difficile.&lt;br /&gt;
De nos jours, que peuvent faire les développeurs à l’intérieur de systèmes communs, qui puisse me rendre la tâche plus ardue en tant que « hacker »?&lt;br /&gt;
Pouvons-nous exiger de meilleurs rapports de la part des firmes de sécurité?&lt;br /&gt;
À quoi devrions-nous nous attendre de la part d’un « pentesters »?&lt;br /&gt;
Comment pouvons-nous savoir si le « pentester » a vérifié les failles de l’application et qu’il n’a pas simplement utilisé un scanneur?&lt;br /&gt;
Et enfin, comment pouvons-nous aider les « ethical hackers » à obtenir un meilleur rendement lors d’un test d’intrusion?&lt;br /&gt;
Il expliquera le sujet en détails, et ensemble, nous verrons de quelles façons les développeurs d’applications peuvent exploiter le savoir-faire des « pentesters », et comment nous pouvons faire en sorte qu’une application Web soit protégée.&lt;br /&gt;
Biographie :&lt;br /&gt;
Mario Contestabile est reconnu comme l’un des experts en sécurité les plus réputés au Canada. Son expertise, construire et protéger votre plateforme applicative. Ancien développeur C++ et Java, Mario partage ses nombreuses connaissances en « ethical hacking » et en développement de codes sécurisé.  &lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Tuesday, 14 June 2016 from 12:00 PM to 1:00 PM (EDT) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Comment protéger les applications mobiles? ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Avril2016-OWASPMtl.png | Comment protéger les applications mobiles? ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/comment-proteger-les-applications-mobiles ]] [https://speakerdeck.com/owaspmontreal/comment-proteger-les-applications-mobiles See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Dans le cadre des Midis Conférence à l'Espace Desjardins, l'équipe OWASP Montréal vous invite à assister à une présentation sur les vulnérabilités les plus communes associées aux appareils mobiles. &lt;br /&gt;
Marie-Claire Willig détaillera entre autres comment stocker de façon sécuritaire les données de l’application mobile ainsi que protéger l’application contre des attaques externes. Des outils simples vous seront dévoilés pour détecter ces vulnérabilités.&lt;br /&gt;
Marie-Claire est une professionnelle d'expérience en sécurité appliquée.&lt;br /&gt;
Une grande partie de son intérêt professionnel réside actuellement dans un domaine assez niche, soit la revue de code sécuritaire, un fondement important de tout cycle de développement sécuritaire en entreprise.&lt;br /&gt;
Au sein de l'équipe de sécurité technologique Desjardins, elle est, en autre, responsable de former les développeurs (Java et .NET principalement) afin de les sensibiliser aux meilleures pratiques de développement sécuritaire.&lt;br /&gt;
Également, elle est une professionnelle des tests d'intrusion sur les applications web, les applications mobiles ainsi que l'infrastructure réseau.&lt;br /&gt;
Bienvenue à tous&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 20 April 2016 from 12:15 PM to 1:00 PM (EDT) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== NorthSec, Le plus gros événement de cybersécurité appliquée au Canada ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Mars2016-OWASPMtl.jpg | NorthSec, Le plus gros événement de cybersécurité appliquée au Canada ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/YQtvltQYs7Y]] [https://youtu.be/YQtvltQYs7Y Watch the conference / Regarder la conférence] &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
OWASP Montréal est fier d’inviter au Midi Conférence de mars, NorthSec est le plus gros événement de sécurité appliquée au Canada qui comprend deux jours de formation, deux jours de conférences ainsi qu’une compétition du genre « capture the flag » (CTF) de trois jours.&lt;br /&gt;
Gabriel Tremblay, Benoit Guerette, Pierre-David Oriol et Laurent Desaulniers viendront vous parler de cet organisme sans but lucratif dynamique qui est géré par une équipe de bénévoles passionnés qui donnent à chaque année leur énergie et leur temps pour soutenir la communauté de la sécurité de l’information.&lt;br /&gt;
Le volet compétition, l’épreuve maîtresse, est présentée sous forme d’un scénario qui rend cohérent une centaine de défis techniques. Les équipes de participants attaquent l’infrastructure de compétition pour soutirer des drapeaux (flags) à travers un ensemble de vulnérabilités présentes comme de l’injection SQL, des XSS ou encore l’exploitation d’exécutables sur systèmes embarqués. Quelques exemples de défis des années passées seront également présentés.&lt;br /&gt;
Le volet conférence, qui est à sa 2ème année, met de l’avant plusieurs présentations techniques touchant la sécurité applicative mais aussi l’éthique et leurs impacts sociaux. Certaines présentations confirmées seront dévoilés.&lt;br /&gt;
Le tout nouveau volet formation propose deux formations en sécurité applicative de calibre international (anglais) : “Advanced Web Security Testing with Burp Pro” et “Modern Object-Oriented Malware Reverse Engineering”.&lt;br /&gt;
Venez aussi, découvrir comment l'équipe est partie d'une idée en 2012 pour se rendre à un évènement d'envergure, qui rassemblera plus de 600 professionnels, étudiants et autres passionnés de sécurité appliquée lors de la 4ème édition qui aura lieu du 17 au 22 mai 2016 au Marché Bonsecours.&lt;br /&gt;
Finalement, la mission, la vision ainsi que les activités sociales de la semaine de NorthSec sont aussi au menu de cette présentation qui sera suivie d’une période de questions.&lt;br /&gt;
&lt;br /&gt;
Gabriel Tremblay, Delve Labs, Président&lt;br /&gt;
Benoit Guerette, Desjardins, VP Finances&lt;br /&gt;
&lt;br /&gt;
Pierre-David Oriol, Delve Labs, VP Conférence&lt;br /&gt;
Laurent Desaulniers, Bell Canada, Artisant de drapeaux&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 23 March 2016 from 12:00 PM to 1:00 PM (EDT) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== La sécurité applicative et l'hameçonnage - February 24th ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Fevrier2016-OWASPMtl.jpg | La sécurité applicative et l'hameçonnage ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/1RYlOiIENjQ]] [https://youtu.be/1RYlOiIENjQ Watch the conference / Regarder la conférence] &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
De nos jours, une des méthodes les plus efficaces pour contourner les périmètres de sécurité externes est l'hameçonnage conjointement avec l’abus de certaines technologies Web.&lt;br /&gt;
&lt;br /&gt;
Dans le cadre ses activités, OWASP Montréal est heureux d'inviter d'accueillir, l'équipe OKIOK qui présentera les impacts liés à ce type d'attaque, tel que vu et expérimenté en entreprise ainsi que les plans d'action pour traiter ces risques. La présentation abordera aussi bien la sécurité web et applicatives, des systèmes informatiques ainsi que de la sécurité physique de centres de données. &lt;br /&gt;
&lt;br /&gt;
    Capture d'informations sensibles par imitations de portails Web ;&lt;br /&gt;
    Authentification Web par 2-facteurs ;&lt;br /&gt;
    Injection SMTP dans des formulaires Web ;&lt;br /&gt;
    Attaque de type “Drive-by-download”;&lt;br /&gt;
    Prise de contrôle à distance à travers des flux HTTP;&lt;br /&gt;
    Attaque de CSRF à partir de courriels ;&lt;br /&gt;
    Attaque d'hameçonnage basée sur des achats par Internet (ex : PayPal).&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
When&lt;br /&gt;
 Wednesday, 24 February 2016 from 12:00 PM to 1:15 PM (EST) - Add to Calendar &lt;br /&gt;
Where&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest Montreal, Quebec CA&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Internet of {Things, Threats} - January 20th ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Janvier2016-OWASPMtl-R.png | Internet of {Things, Threats} ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=http://gosecure.github.io/presentations/2016-01-20_owasp-mtl/internet-of-threats.html ]] [http://gosecure.github.io/presentations/2016-01-20_owasp-mtl/internet-of-threats.html See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
De plus en plus de périphériques se retrouvent connectés sur Internet. Sous la bannière &amp;quot;Internet of Things&amp;quot; (IoT) ces équipements, que ce soit une pompe à insuline ou un système de caméra de sécurité, tournent généralement sous un système GNU/Linux embarqué d'architecture MIPS ou ARM. La difficulté de mettre à jour ces équipements ainsi que le peu d'effort mis dans la sécurité des systèmes ou la sécurité applicative en font des cibles de choix. Ces derniers mois, nous avons analysé plusieurs logiciels malveillants ciblant ces architectures. Que ce soit par l'exploitation d'une vulnérabilité (Shellshock) ou encore un défaut de configuration, ces systèmes exposés sur Internet peuvent être compromis.&lt;br /&gt;
&lt;br /&gt;
Notre présentation couvrira quelques une de ces analyses:&lt;br /&gt;
&lt;br /&gt;
* Linux/Moose, un malware se propageant automatiquement qui fraude les réseaux sociaux (par exemple Facebook, Twitter et YouTube)&lt;br /&gt;
* LizardSquad et acteurs étrangers qui utilisent des systèmes embarqués compromis pour réaliser des dénis de service distribué (DDoS) &lt;br /&gt;
* Win32/RBrute est un logiciel malveillant qui tente de changer les paramètres de routeurs dans le but de faire du &amp;quot;DNS poisoning&amp;quot;. Il a été distribué par le populaire botnet Sality.&lt;br /&gt;
* Un kit d'exploits qui utilise seulement le navigateur de leur victime avec le même objectif, c'est-à-dire faire du &amp;quot;DNS poisoning&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Enfin, des conseils seront proposés à l'audience pour l'aider à se protéger de ces menaces.&lt;br /&gt;
&lt;br /&gt;
'''Thomas Dupuy''' (twitter: @nyx__o)&lt;br /&gt;
&lt;br /&gt;
Thomas est chercheur en logiciel malveillant chez ESET Canada Recherche. Bon vivant, Thomas déjeune en &amp;quot;reversant&amp;quot; des binaires, contribue à quelques projets open source durant le diner (yara, yara rules, pefile, APTnotes) et la nuit participe à des &amp;quot;Hacking Games&amp;quot; (Capture The Flag). Curieux de nature Thomas analyse des malware aux architectures &amp;quot;exotiques&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Olivier Bilodeau''' (twitter: @obilodeau)&lt;br /&gt;
&lt;br /&gt;
Olivier Bilodeau is the head of Cybersecurity Research at GoSecure a consultancy firm specializing in cybersecurity services for the public and private sector. With more than 10 years of infosec experience, Olivier worked on Unix servers at Bell Canada, managed a portion of Air Canada's network, wrote open source network access control software at Inverse and worked as a Malware Researcher at ESET. He likes to reverse engineer everything that crosses his path, participate in information security capture-the-flag competitions, hack open source code and brew beer. He has spoken at various conferences (Defcon, Botconf, VirusBulletin, Derbycon, ...), used to lecture on information security at ETS University in Montreal, drives the NorthSec Hacker Jeopardy and co-organizes the MontreHack capture-the-flag training initiative. His primary research interests include reverse-engineering tools, Linux and/or embedded malware and honeypots.&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Survivre aux attaques DDOS applicatives ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Decembre2015-OWASPMtl.jpg | Survivre aux attaques DDOS applicatives ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Survivre aux attaques DDOS (Distributed Denial-Of-Service) applicatives.&lt;br /&gt;
Cette conférence s'adresse aux professionnels et gestionnaires des TI.&lt;br /&gt;
Conférencier : Christian Shink, ing., CSSLP, ingénieur système chez Radware, manufacturier spécialisé dans la prévention des attaques DDOS. Il fut également consultant en sécurité applicative chez In Fidem.&lt;br /&gt;
Objectifs de la conférence:&lt;br /&gt;
Présenter les tendances actuelles en matière d'attaques DDOS applicatives.&lt;br /&gt;
Renseigner les participants sur les techniques et stratégies pour contrer ces attaques illustrées à partir de cas vécus.&lt;br /&gt;
Démystifier certains mythes en ce qui concernent les façons efficaces de protéger les applications contre des attaques DDOS.&lt;br /&gt;
Date : 16 décembre 2015&lt;br /&gt;
Heure : 11h45&lt;br /&gt;
La conférence débute à 12h00 et se termine à 12:55.&lt;br /&gt;
Un lunch sera servi.&lt;br /&gt;
Réservez maintenant!&lt;br /&gt;
1 CPE&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 16 December 2015 from 11:45 AM to 1:00 PM (EST) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec &lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Sécurité des applications - Systèmes de contrôles industriels ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Novembre2015-OWASPMtl-R.png | Sécurité des applications - Systèmes de contrôles industriels ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/0eAZpyiQQ9A]] [https://youtu.be/0eAZpyiQQ9A Watch the conference / Regarder la conférence] &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&lt;br /&gt;
La sécurité des applications et les systèmes de contrôles industriels.&lt;br /&gt;
Cette conférence s'adresse aux professionnels et gestionnaires des TI desinfrastructures critiques qui exploitent ou gèrent des systèmes de contrôles industriels(SCI) et SCADA (surveillance et d'acquisition de données).&amp;lt;br/&amp;gt;&lt;br /&gt;
Conférenciers : Robert Nastas, CSSA. Gestionnaire de projet et Youssef Jad, Architecte Cyber sécurité, ICS-CERT&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Objectifs de la conférence:&lt;br /&gt;
* Démystifier le domaine d'affaires.&lt;br /&gt;
* Renseigner les participants sur les bonnes pratiques de sécurité desapplications liées au secteur industriel.&lt;br /&gt;
* Proposer aux professionnels et gestionnaires des TI responsables dessystèmes SCADA et SCI des pistes de solutions aux enjeux de sécurité.&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
L'équipe OWASP Montréal vous remercie d'avoir assisté en grand nombre à la conférence, 'La sécurité des applications et les systèmes de contrôles industriels'.&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 18 November 2015 from 11:45 AM to 1:00 PM (EST) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Les préoccupations actuelles de hauts dirigeants en matière de cybersécurité et de sécurité applicative ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Septembre2015-OWASPMtl.jpg | Les préoccupations actuelles de hauts dirigeants en matière de cybersécurité et de sécurité applicative ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/un-regard-sur-la-securite-de-linformation-en-2015-par-eric-hebert ]] [https://speakerdeck.com/owaspmontreal/un-regard-sur-la-securite-de-linformation-en-2015-par-eric-hebert See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Pour le lancement des activités corporatives de la saison 2015 - 2016, le 8 septembre prochain à 12:00, l'équipe OWASP Montréal convie les gestionnaires et artisants de la sécurité des TIC à venir entendre monsieur Éric Hébert qui nous présentera son interprétation des préoccupations actuelles de hauts dirigeants en matière de cybersécurité et de sécurité applicative. L'événement se tiendra au complexe Desjardins à la salle &amp;quot;Espace Desjardins&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
''' ÉRIC G. HÉBERT, CISM, CISSP ''' &amp;lt;br/&amp;gt;&lt;br /&gt;
Après plus de 20 ans passés dans le domaine de la sécurité des technologies de l’information, Éric se spécialise dans la mise en œuvre et la gestion d'équipes performantes, capables de relever les plus hauts défis de la cybersécurité moderne.&amp;lt;br/&amp;gt;&lt;br /&gt;
Capable de dialoguer avec les hauts dirigeants, il sait traduire et vulgariser les enjeux techniques complexes tout en respectant la nature et l'appétence au risque de ses clients. Dynamique et pourvu d'une expérience couvrant presque toutes les sphères de la SI, il fonce dans le respect de la culture établie tout en implantant des solutions pragmatiques et efficaces.&amp;lt;br/&amp;gt;&lt;br /&gt;
Depuis plus de 10 ans, il gravite principalement autour des entreprises du domaine financier (BNC, Desjardins, Fonds de solidarité FTQ...) et les accompagne dans la mise en place de solutions efficaces tenant compte à la fois des risques et des budgets.&lt;br /&gt;
En plus d’avoir fondé de nombreuses associations telles que le RéseauSécurIT et le RPSI, il maintient une présence régulière auprès des milieux associatifs professionnels et partage régulièrement ses expériences lors de conférences et d'entrevues avec divers médias.&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Events / Évènements =&lt;br /&gt;
&lt;br /&gt;
== Owasp Montreal at [https://nsec.io/ NorthSec 2017] ==&lt;br /&gt;
&lt;br /&gt;
[[Image:NorthSec2017-5.jpg]]&lt;br /&gt;
[[Image:NorthSec2017-6.jpg]]&lt;br /&gt;
&lt;br /&gt;
From Left to Right: Anne Gauthier, OWASP Montréal Chapter Leader (President) and Application Security Analyst at GoSecure, Hugo Genesse, OWASP Montréal Chapter Leader and Research Intern at PNF Software, Julien Touche, OWASP Montréal Chapter Leader and Principal Security Engineer at Nuance Communications&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal at [https://2017.appsec.eu/ AppSec] ==&lt;br /&gt;
&lt;br /&gt;
[[Image:OWASPAppSecBelfast2017-7.jpg]]&lt;br /&gt;
&lt;br /&gt;
OWASP Montreal and Ottawa Chapter Leaders at OWASP AppSec Belfast, UK #WomenInAppSec&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal at [https://hackfest.ca/ HackFest 2016] ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hackfest2016-r.jpg| HackFest |link=https://hackfest.ca/]]&lt;br /&gt;
&lt;br /&gt;
From left to right: Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Louis Nadeau, OWASP Québec Chapter Leader and Manager, Product Security at Bentley Systems and Patrick Leclerc, OWASP Québec Chapter Leader and Information Security Advisor at La Capitale.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal at OWASP [https://2016.appsecusa.org/ AppSec USA 2016, Washington] ==&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:OWASPMtl-AppSecUSA2016-Washington.jpg | OWASP Montreal at AppSec USA 2016, Washington]] &lt;br /&gt;
&lt;br /&gt;
​From left to right: Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Marie-Claire Willig, Application Security Analyst at Desjardins, Speaker and Cofounder of the Roslyn Security Guard tool which will be presented at Blackhat 2016, Alexandre Hamelin President at Synlabs Consulting Inc., Jonathan Marcil, Application Security Engineer at Blizzard Entertainment and former OWASP Montreal Chapter Leader. Philippe Arteau, Cybersecurity Researcher at GoSecure and designer of [https://find-sec-bugs.github.io/ Find Security Bugs] and Roslyn Security Guard tool which will be presented at Blackhat 2016.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://www.gosec.net GoSec] 2016 ==&lt;br /&gt;
&lt;br /&gt;
[[Image:OWASP-GoSec2016-1r.jpg|OWASP Montreal at GoSec 2016]] [[Image:OWASP-GoSec2016-2r.jpg|OWASP Montreal at GoSec 2016]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
From left to right : Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Simon Lacasse, student and volunteer, and Laurent Desaulniers, Security Analyst at Bell Canada.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://www.nsec.io/ NorthSec] 2016 – Annual Applied Security Event ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hackfest2016-OWASPMtl.jpg|OWASP Montreal at NorthSec 2016]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Simon Veilleux &lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
From left to right : Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Olivier Arteau OWASP Montréal Chapter Leader and Conseiller chez Groupe Technologie Desjardins, Hugo Genesse, OWASP Montréal Chapter Leader and Vulnerability Research Intern at Wurldtech Security Technologies.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://hackfest.ca/en/ Hackfest] 2015 ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hackfest2015-OWASPMtl-R.JPG | OWASP Montreal at Hackfest 2015]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Hackfest &lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
From left to right : Jonathan Marcil, Application Security Engineer at Blizzard Entertainment and former OWASP Montreal Chapter Leader. Philippe Arteau, Cybersecurity Researcher at GoSecure and designer of [http://find-sec-bugs.github.io/ Find Security Bugs] and Roslyn Security Guard tool which will be presented at Blackhat 2016. &lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/8U0qkEuUFy8]] [https://youtu.be/8U0qkEuUFy8 Watch the video / Regarder la vidéo]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://www.gosec.net/ GoSec] 2015 – The Annual Cybersecurity Conference presented by GoSecure, EY and ISACA. ==&lt;br /&gt;
&lt;br /&gt;
[[Image:GoSec2015-OWASPMtl.jpg|OWASP Montreal at GoSec 2015]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
From left to right : Marie-Claire Willig, Application Security Analyst at Desjardins, Speaker and Cofounder of the Roslyn Security Guard tool which will be presented at Blackhat 2016. Benoît Guérette, Application Security Team Leader at Desjardins, VP Finance at NorthSec and OWASP Montreal Chapter Founder and Former Chapter Leader.&lt;br /&gt;
&lt;br /&gt;
== See also / Voir aussi ==&lt;br /&gt;
&lt;br /&gt;
OWASP Montréal recommends Montréhack. Learn and share knowledge on IT security by solving technical challenges. Third Monday of every month. &lt;br /&gt;
&lt;br /&gt;
OWASP Montréal recommende Montréhack. Apprends et partages des connaissances sur la sécurité informatique en travaillant des problèmes appliqués. Chaque troisième lundi du mois. &lt;br /&gt;
&lt;br /&gt;
[[File:Montrehack.png|Montréhack|link=http://montrehack.ca/|alt=Montréhack]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Archives 2007-2015 =&lt;br /&gt;
{{:Montreal chapter past meetings}}&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - February 3rd - Getting to Know the Software Assurance Marketplace (SWAMP) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/p4_vjufcB6Q]] [https://youtu.be/p4_vjufcB6Q Watch the conference / Regarder la conférence]&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/getting-to-know-the-software-assurance-marketplace-swamp-by-pat-beyer]] [https://speakerdeck.com/owaspmontreal/getting-to-know-the-software-assurance-marketplace-swamp-by-pat-beyer See the slides / Voir la présentation] &amp;lt;br/&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Pat Beyer&lt;br /&gt;
*'''ADDITIONAL PRESENTER:'''  Abe Megahed&lt;br /&gt;
*'''ABSTRACT:''' The Software Assurance Marketplace (SWAMP) is an open facility that is designed, built, and operated by four research institutions. The SWAMP provides no-cost access to an array of open-source and commercial software analysis tools. This presentation will provide an overview and demo of the SWAMP, including our goals, intended audience, current capabilities, and future plans. We will cover our relationship with OWASP, incorporation of open-source software assurance tools, and status as an open-source project and resource available to the software community. Visit https://continuousassurance.org/ to learn more about us.&lt;br /&gt;
*'''BIO:''' Pat Beyer serves as the Product Manager for the Software Assurance Marketplace (SWAMP). With over 25 years of experience successfully managing multi-million dollar global projects, Beyer’s expertise extends to the IT, construction, and operations sectors, with a specialization in managing government contracts and grants. A gifted communicator, Beyer is a sought after speaker due to his ability to deliver complex information about technology products and services in a way that is easily understood. He is a decorated combat veteran of the Global War on Terror, the international military campaign that started following the 9/11 terrorist attacks on the United States. In 2004, he constructed and rehabilitated over 20 schools, clinics, and water treatment plants for the Iraqi people using local contractors. Beyer also holds a Bachelor of Science, a Masters in Business Administration, a Ph.D. in Organization and Management, and a Project Management Professional (PMP) certification.&lt;br /&gt;
*'''BIO:''' Abe Megahed is a web developer for the Software Assurance Marketplace. In previous lifetimes, he has been a computer graphics researcher, a game programmer, a programming language and compiler nerd, a dot com company founder, a creator of helicopter simulations, and a developer of 3D simulations for NASA astronaut crew training.&lt;br /&gt;
*'''WHEN:'''  Tuesday, February 3rd 2015&lt;br /&gt;
*'''WHERE:''' Room PK-1140 - UQAM Pavillon Président-Kennedy, 201 Avenue du Président-Kennedy  J2X 3Y7&lt;br /&gt;
*'''REGISTRATION:''' https://owaspmtlswamp2015.eventbrite.ca&lt;br /&gt;
*'''WEBCAST:''' https://www.youtube.com/watch?v=p4_vjufcB6Q&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/getting-to-know-the-software-assurance-marketplace-swamp-by-pat-beyer&lt;br /&gt;
&lt;br /&gt;
*'''ACADEMIC PARTNER:''' AGEEI-UQAM - http://www.ageei.org/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Welcome speech by Chapter Leader (Jonathan Marcil)&lt;br /&gt;
  18:30-20:00 Main session: Getting to Know the Software Assurance Marketplace&lt;br /&gt;
  20:00-...   End of the meeting&lt;br /&gt;
&lt;br /&gt;
[[Image:SWAMP-Logo-Final-Med.png|300px|link=https://continuousassurance.org/]]&lt;br /&gt;
[[Image:Ageeilogo.jpg|200px|link=http://www.ageei.org/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - 4 décembre - Malware côté serveur — évolution, méthodes d’opération et forensic Linux ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/lo8WDl-WQ3E]] [https://youtu.be/lo8WDl-WQ3E Watch the conference / Regarder la conférence] &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/malware-cote-serveur-par-marc-etienne-m-dot-leveille]] [https://speakerdeck.com/owaspmontreal/malware-cote-serveur-par-marc-etienne-m-dot-leveille See the slides / Voir la présentation] &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''PRÉSENTATEUR PRINCIPAL:''' Marc-Etienne M.Léveillé&lt;br /&gt;
*'''RÉSUMÉ:''' Les logiciels malveillants ciblant les serveurs ont évolué. Ils sont utilisés par des groupes de cybercriminels organisés dans le but de faire du profit via des redirections web et l’envoie de pourriels. La présentation portera sur Opération Windigo, une opération malveillante qui a affecté plus de 25 000 serveurs dans le monde. Après une brève description des composantes de Windigo, nous verrons comment les opérateurs déploient leurs logiciels malveillants et surveille leur réseau de serveurs infectés. Des trucs pratiques pour faire de la forensics sur des systèmes Linux seront donnés. Cette présentation est une suite à la présentation &amp;quot;Linux/Cdorked: Server side malware&amp;quot;, donnée par Olivier Bilodeau à OWASP Montréal en 2013. La présentation sera en français avec des diapositives en anglais (aka Montreal-style).&lt;br /&gt;
*'''BIO:''' Marc-Etienne est un chercheur en logiciel malveillant chez ESET depuis 2012. Il se spécialise dans les logiciels malveillants qui s’attaquent à des plateformes inhabituelles comme aux produits fruités et aux oiseaux nordiques. Dernièrement, il passe beaucoup de son temps à faire la rétro-ingénierie de logiciels malveillants sur des serveurs Linux et s’intéresse à leurs méthodes d’opération. Il adore participer de façon collégiale aux CTFs avec ses amis les CISSP Groupies et jouer de la clarinette. Il tweet très peu à @marc_etienne_.&lt;br /&gt;
*'''QUAND:''' 4 décembre 2014 à 18h00&lt;br /&gt;
*'''OÙ:''' Local M-1510, Polytechnique Montréal, 2900 Boulevard Edouard-Montpetit&lt;br /&gt;
*'''INSCRIPTION:''' https://www.eventbrite.ca/e/owasp-montreal-4-decembre-malware-cote-serveur-evolution-methodes-doperation-et-forensic-linux-tickets-14635313617&lt;br /&gt;
*'''ÉQUIPE ACADÉMIQUE:''' Polyhack - http://polyhack.org/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
&lt;br /&gt;
 18:00-18:30 Réseautage&lt;br /&gt;
 18:30-18:35 Mot de bienvenue par le leader du chapitre (Jonathan M.)&lt;br /&gt;
 18:35-19:30 Présentation principale : Malware côté serveur&lt;br /&gt;
 19:30-20:00 Période de questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Polyhacklogonoirpetit.png|200px|link=http://polyhack.org/]]&lt;br /&gt;
[[Image:LogoPolytechnique.gif|link=http://www.polymtl.ca/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - October 23rd - XXE : À l’assaut des analyseurs XML ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/MZviLB9-42E]] [https://youtu.be/MZviLB9-42E Watch the conference / Regarder la conférence] &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/xxe-a-lassaut-des-analyseurs-xml-par-philippe-arteau]] [https://speakerdeck.com/owaspmontreal/xxe-a-lassaut-des-analyseurs-xml-par-philippe-arteau See the slides / Voir la présentation] &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''PRÉSENTATEUR PRINCIPAL:''' Philippe Arteau&lt;br /&gt;
*'''RÉSUMÉ:''' L'utilisation d’XML est fortement répandue. Le format est utilisé pour des fichiers de configuration, pour des métadonnées, pour des documents textes, et bien plus. La prise en charge de fichiers XML n’est pas sans risque. La plupart des analyseurs XML ne sont pas sécuritaires par défaut pour le traitement de fichier externe. Cette présentation fera un survol des vulnérabilités de type « Xml eXternal Entity » et de l’étendue des risques pour différents langages de programmation. Plusieurs démonstrations sont prévues.&lt;br /&gt;
*'''BIO:''' Philippe est conseiller en sécurité applicative pour le Groupe Technologies Desjardins. Au quotidien, il s’occupe d’effectuer des tests d’intrusions et des revues de code. Il a découvert des vulnérabilités importantes dans plusieurs logiciels populaires incluant Google Chrome, DropBox, ESAPI et Jira.&lt;br /&gt;
*'''QUAND:'''  23 Octobre 2014 à 18h00&lt;br /&gt;
*'''OÙ:''' École de Technologie Supérieure Local A-3230, 1100 Rue Notre-Dame Ouest, Montréal, QC H3C 1K3&lt;br /&gt;
*'''INSCRIPTION:''' http://www.eventbrite.ca/e/owasp-montreal-23-octobre-xxe-a-lassaut-des-analyseurs-xml-tickets-13426881163&lt;br /&gt;
*'''PARTENAIRE ACADÉMIQUE:''' ETS - DCI http://dciets.com/&lt;br /&gt;
*'''PROGRAMME:''' &lt;br /&gt;
&lt;br /&gt;
 18:00-18:30 Réseautage&lt;br /&gt;
 18:30-18:45 Mot de bienvenue&lt;br /&gt;
 18:45-19:45 Présentation principale - &amp;quot;À l’assaut des analyseurs XML&amp;quot; Philippe Arteau&lt;br /&gt;
 19:45-20:00 Période de questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Blason_dci.png‎‎‎|150px|link=http://dciets.com/]]&lt;br /&gt;
[[Image:ETS-rouge-devise-impr-fond_transparent.png|150px|link=http://www.etsmtl.ca/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - July 24th - Web security for DevOps: the glory is in the headers ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/6bp1NCLT-YQ]] [https://youtu.be/6bp1NCLT-YQ Watch the conference / Regarder la conférence] &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/web-security-for-devops-the-glory-is-in-the-headers-by-jonathan-marcil]] [https://speakerdeck.com/owaspmontreal/web-security-for-devops-the-glory-is-in-the-headers-by-jonathan-marcil See the slides / Voir la présentation] &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Jonathan Marcil&lt;br /&gt;
*'''ABSTRACT:''' DevOps is a buzzword which can be easily demystified: in essence it is a process which aims to combine the development and system administration process into one; Operations. As developers become responsible for server setup, security counter measures are evolving as well. The line between server configuration and application behaviour has been blurred. In this talk we will cover some HTTP headers in regards to security such as CORS, CSP and HSTS. We will demonstrate several forms of attack, and how they can (should) be countered.&lt;br /&gt;
*'''BIO:''' Jonathan is devoted to security and specialized in Web application security.  His main occupation is consulting in Web security, but deep down he is a developer with a agnostic vision of programming languages. He has a diploma in Software Engineering from Ecole de Technologie Superieure and more than 10 years of experience in Information Technology and Security.&lt;br /&gt;
*'''WHEN:'''  At noon on July 24th 2014&lt;br /&gt;
*'''WHERE:''' 75 Queen Street, office 3100, Montreal, QC H3C 2N6&lt;br /&gt;
*'''REGISTRATION:''' You can join us on site for a pizza slice but this is mainly an online event. Contact jonathan.marcil@owasp.org.&lt;br /&gt;
*'''WEBCAST:''' https://www.youtube.com/watch?v=6bp1NCLT-YQ&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/web-security-for-devops-the-glory-is-in-the-headers-by-jonathan-marcil&lt;br /&gt;
*'''EVENT SPONSOR:''' Pheromone http://www.pheromone.ca/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  12:00-12:10 Welcome and quick OWASP introduction&lt;br /&gt;
  12:10-13:10 Main presentation - &amp;quot;Web security for DevOps: the glory is in the headers&amp;quot; Jonathan Marcil&lt;br /&gt;
  13:10-... Open discussion and questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Logo-phero.gif‎|link=http://www.pheromone.ca/]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - June 18th - Gaps in the Clouds ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/gaps-in-the-clouds-by-robert-fritz]] [https://speakerdeck.com/owaspmontreal/gaps-in-the-clouds-by-robert-fritz See the slides / Voir la présentation] &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Robert Fritz&lt;br /&gt;
*'''ABSTRACT:''' Cloud technology offers agility and scaling, and a chance to break away from legacy IT choices.  Unfortunately, skipping traditional IT activities often results in poorly patched systems, out of date firewalls, and overprovisioned entitlements wielded by admins whose “day job” is development.  Boundaries of accountability and responsibility amongst cloud providers and consumers are confusing, vague, and shift, making security difficult to manage.  In such an environment, a “BP-spill” event, where cost wins over safely safety, is likely.  This talk will dive down into the cracks between the layers of cloud, and share some of the exciting dirt we have seen and expect to see in coming years.”&lt;br /&gt;
*'''BIO:''' Robert Fritz has been practicing security his entire career. Rob started as an Air Force lieutenant at Langley AFB and later at the Pentagon in Washington DC, building and managing classified networks. Finding he was getting too far from technology after a brief stint flying, he left the military to get back to the tech, and built security tools for HP in their HP-Unix lab.  Over time he found himself in more and more security design discussions, so co-authored HP’s Commercial Application Threat Analysis Methodology, building an internal consulting practice at HP.  This quantitative approach, led to two pending patents, an external-facing consulting practice, and his contributions to NIST IR-7502, the Common Configuration Scoring System (CVSS follow-on).  He is the former lead editor for the Center for Internet Security’s HP-UX Benchmark, and current lead for the Android Benchmark.  Robert now works for Morgan Stanley as global head of the Strategic Consulting team in the Security Architecture group, and leads the team’s cloud and social-media security practices.&lt;br /&gt;
*'''WHEN:''' June 18th 2014&lt;br /&gt;
*'''WHERE:''' 700 Rue Wellington, Floor 2, Montreal, QC H3C 3S4&lt;br /&gt;
*'''REGISTRATION:''' http://owaspmtl18junems.eventbrite.ca&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/gaps-in-the-clouds-by-robert-fritz&lt;br /&gt;
*'''EVENT SPONSOR:''' Morgan Stanley http://www.morganstanley.com/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:30 Networking and Morgan Stanley Hosted Pizza and Soft Drinks&lt;br /&gt;
  18:30-18:45 OWASP Chapter &amp;amp; Morgan Stanley Welcome&lt;br /&gt;
  18:45-19:45 Main presentation - &amp;quot;Gaps in the Clouds&amp;quot; Robert Fritz&lt;br /&gt;
  19:45-20:00 Open discussion and questions&lt;br /&gt;
  20:00-...   Optional, informal networking at Aziatic - 626 rue Marguerite-d'Youville, Montréal, QC H3C 1W7&lt;br /&gt;
&lt;br /&gt;
[[Image:Morgan_Stanley_Historical_Logo.png|link=http://www.morganstanley.com/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - May 26th - Récapitulatif des challenges NorthSec ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/P8_V3RI1Ru4]] [https://youtu.be/P8_V3RI1Ru4 Watch the conference / Regarder la conférence] &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''PRÉSENTATEUR PRINCIPAL:''' Laurent Desaulniers&lt;br /&gt;
*'''RÉSUMÉ:''' Solutions de la compétition en sécurité NorthSec 2014 sur les sujets de  XXE + SSRF, WAF Bypass, Xpath Injection, DOM Injection, HTTP Only Flag bypass et contournement de captchas. Une bonne façon d'apprendre sur ces failles que vous étiez ou non un participant de la compétition.&lt;br /&gt;
*'''MESSAGE DU PRÉSENTATEUR:''' Vous voyez Rao dans votre soupe? Vous voulez une solution pour un XSS avec des cookies http only? Les captchas illisibles sont un problème? Assistez à la présentation de l'OWASP!&lt;br /&gt;
*'''BIO:''' Laurent Desaulniers est un passionné de sécurité informatique. Il a présenté au Hackfest, au colloque RSI, à OWASP et est challenge designer à NorthSec. M. Desaulniers détient les certifications CISSP, CISM, CISA et OSCP.&lt;br /&gt;
*'''QUAND:''' 26 mai à 18h00&lt;br /&gt;
*'''OÙ:''' Local PK-1140 - Pavillon Président-Kennedy 201, Avenue du Président-Kennedy, J2X 3Y7&lt;br /&gt;
*'''INSCRIPTION:''' https://www.eventbrite.ca/e/owasp-montreal-26-mai-recapitulatif-des-challenges-northsec-tickets-11724413035&lt;br /&gt;
*'''WEBCAST:''' https://www.youtube.com/watch?v=P8_V3RI1Ru4&lt;br /&gt;
*'''ÉQUIPE ACADÉMIQUE''' AGEEI-UQAM - http://www.ageei.org/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
&lt;br /&gt;
 18:00-18:30 Réseautage&lt;br /&gt;
 18:30-18:35 Mot de bienvenue par le leader du chapitre (Jonathan M.)&lt;br /&gt;
 18:35-19:30 Présentation principale : Récapitulatif des challenges NorthSec&lt;br /&gt;
 19:30-20:00 Période de questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Ageeilogo.jpg|200px|link=http://www.ageei.org/]]&lt;br /&gt;
[[Image:2397_nsec_Logo_500-250.png|200px|link=http://nsec.io/]]&lt;br /&gt;
&lt;br /&gt;
== Networking with infosec communities - April 21st ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''RÉSUMÉ:''' En collaboration avec Montréhack, mtlsec et NorthSec, nous organisons une soirée réseautage dans un pub du centre-ville. Du plaisir garanti avec les membres de plusieurs communautés infosec de Montréal!&lt;br /&gt;
&lt;br /&gt;
*'''ABSTRACT:''' In collaboration with Montréhack, mtlsec and NorthSec, we are organizing a networking evening in a pub downtown. Fun guaranteed with the other security communities in Montreal!&lt;br /&gt;
&lt;br /&gt;
*'''QUAND:''' 21 Avril 2014&lt;br /&gt;
*'''WHEN:''' April 21st 2014&lt;br /&gt;
&lt;br /&gt;
*'''OÙ/WHERE:''' BENELUX - Brasserie Artisanale 245 Sherbrooke St W Montreal, QC H2X 1X7&lt;br /&gt;
&lt;br /&gt;
*'''INSCRIPTION/REGISTRATION:''' https://www.eventbrite.ca/e/montrehack-avril-april-northsec-pre-party-tickets-11232307133&lt;br /&gt;
&lt;br /&gt;
*'''PARTENAIRES/PARTNERS:''' Montréhack http://montrehack.ca/ - mtlsec http://blog.mtlsec.com/ - NorthSec https://www.nsec.io/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
  18:00-21:00 Networking&lt;br /&gt;
  21:00-23:59 Remember to drink responsibly!&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - March 27th - Panel Compétition en sécurité NorthSec ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Présentation sous forme de panel - venez poser vos questions!'''&lt;br /&gt;
&lt;br /&gt;
*'''RÉSUMÉ:''' Les compétitions de type Capture the Flag (CTF) sont un moyen pour les professionnels et amateurs de sécurité informatique de mettre leurs talents à l'épreuve. NorthSec est une compétition Montréalaise annuelle en sécurité appliquée, qui aura lieu cette année au Marché Bonsecours de Montréal le 25, 26 et 27 avril prochain. Elle vise à augmenter le niveau technique des professionnels de la sécurité au Québec, ainsi que de permettre à ses acteurs les plus talentueux de se démarquer.&lt;br /&gt;
*'''DÉTAILS:''' Le panel de jeudi, sous la forme d'un échange convivial entre les organisateurs de l'évènement et de ses participants, abordera des thèmes variés comme l'écriture de bon défis, l'infrastructure, la logistique, les inattendus, un bilan de 2013 et tout ça en passant par de savoureuses annecdotes (on l'espère). Venez en grand nombre toucher à ces légendes de la scène infosec montréalaise!&lt;br /&gt;
*'''PANÉLISTES:''' Gabriel Tremblay, François Proulx, Laurent Desaulniers, Stéphane Graber&lt;br /&gt;
*'''ANIMATEUR:''' Olivier Bilodeau&lt;br /&gt;
*'''QUAND:''' 27 mars 2014&lt;br /&gt;
*'''OÙ:''' Salle M-1510, École Polytechnique de Montréal, 2500 chemin de Polytechnique, Montréal (Québec) H3T 1J4, pavillon Lassonde&lt;br /&gt;
*'''INSCRIPTION:''' https://www.eventbrite.ca/e/owasp-montreal-27-mars-panel-competition-en-securite-northsec-tickets-10918436337&lt;br /&gt;
*'''ÉQUIPE ACADÉMIQUE:''' Polytechnique - Polyhack http://polyhack.org/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Mot de bienvenue par le leader du chapitre (Jonathan Marcil)&lt;br /&gt;
  18:30-20:00 Présentation principale : Panel NorthSsec&lt;br /&gt;
&lt;br /&gt;
[[Image:Polyhack.png‎‎|200px|link=http://polyhack.org/]]&lt;br /&gt;
[[Image:LogoPolytechnique.gif|link=http://www.polymtl.ca/]]&lt;br /&gt;
[[Image:2397_nsec_Logo_500-250.png|200px|link=http://nsec.io/]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - February 25th - Proven Strategies for Web Application Security ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/proven-strategies-for-web-application-security-by-justin-c-klein-keane]] [https://speakerdeck.com/owaspmontreal/proven-strategies-for-web-application-security-by-justin-c-klein-keane See the slides / Voir la présentation] &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Justin C. Klein Keane&lt;br /&gt;
*'''ABSTRACT:''' The rising dominance of the web as an application delivery platform has focused attacker attention squarely on the security of dynamic web applications. Application security is a complex, and shifting, field. Learn about tested and successful techniques to build safer applications, find flaws before they become vulnerabilities, and deploy applications that can detect, and resist attack.&lt;br /&gt;
*'''BIO:''' Justin C. Klein Keane is a security engineer and chapter leaders of OWASP in Philadelphia. For over a decade Justin has worked as a trainer, coder, and exploit developer. Justin is currently writing a book for NoStarch Press on hacking, speaks regularly at conferences, holds a masters degree in information technology from the University of Pennsylvania and is credited with hundreds of application vulnerability discoveries.&lt;br /&gt;
*'''WHEN:''' February 25th 2014&lt;br /&gt;
*'''WHERE:''' Ecole de technologie superieure, 1100 Notre-Dame Street West, Montreal, Room: A-1150&lt;br /&gt;
*'''REGISTRATION:''' http://owaspmtljan2014.eventbrite.ca&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/proven-strategies-for-web-application-security-by-justin-c-klein-keane&lt;br /&gt;
*'''ACADEMIC PARTNER:''' ETS - DCI http://dciets.com/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Welcome speech by Chapter Leader (Jonathan Marcil)&lt;br /&gt;
  18:30-20:00 Main session and open discussion: Proven Strategies for Web Application Security&lt;br /&gt;
  20:00-...   End of the meeting in a pub&lt;br /&gt;
&lt;br /&gt;
[[Image:Dciets.png‎‎‎|100px|link=http://dciets.com/]]&lt;br /&gt;
[[Image:Logo_ets.png|link=http://www.etsmtl.ca/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - January 28th - Latest trends in Mobile Security ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/8qPyKj4FKgY]] [https://youtu.be/8qPyKj4FKgY Watch the conference / Regarder la conférence] &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/latest-trends-in-mobile-security-by-francois-proulx]] [https://speakerdeck.com/owaspmontreal/latest-trends-in-mobile-security-by-francois-proulx See the slides / Voir la présentation] &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Francois Proulx&lt;br /&gt;
*'''ABSTRACT:''' Last AppSecUSA 2013 had a great line up of talks, especially regarding mobile applications. This session will be covering all the hottest presentations about mobile security by doing an overview from what see saw at AppSecUSA, all with some slides and snippets of presentations that was recorded at the event. Discussion will be encouraged within the audience as this will be more a dynamic event than a regular talk.&lt;br /&gt;
*'''BIO:''' François Proulx is a senior mobile application developer who has worked on dozens of iOS applications since the very beginning of the Apple iOS platform. Over the past few years he has switched his focus to security. He spends a lot of his free time participating in Capture the Flag events (CTFs) and organizing the NorthSec security competition.&lt;br /&gt;
*'''WHEN:''' January 28th 2014&lt;br /&gt;
*'''WHERE:''' UQAM Room PK-1705, Pavillon Président-Kennedy (the big boat at Place des Arts) - 201 Avenue du Président-Kennedy  J2X 3Y7&lt;br /&gt;
*'''REGISTRATION:''' http://owaspmtl-mobilesecurity.eventbrite.ca&lt;br /&gt;
*'''SLIDES/CONTENT:''' [http://www.youtube.com/playlist?list=PLQtB2ug5xmvaQ9jeRWV53-F_T555GQfhW YouTube playlist]&lt;br /&gt;
*'''SPONSOR:''' Academic partner AGEEI-UQAM - http://www.ageei.org/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Welcome speech by Chapter Leader (Jonathan M.)&lt;br /&gt;
  18:30-20:00 Main session and open discussion: Mobile Security&lt;br /&gt;
  20:00-...   End of the meeting in a pub&lt;br /&gt;
&lt;br /&gt;
[[Image:Ageeilogo.jpg|200px|link=http://www.ageei.org/]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Presentations For Download  ====&lt;br /&gt;
&lt;br /&gt;
[http://www.owasp.org/images/0/0d/20100209mstechdaysowaspasvssgiv01-12657916463819-phpapp02.ppt OWASP ASVS] by Sebastien Gioria (09/03/2010) &lt;br /&gt;
&lt;br /&gt;
[http://www.ph-il.ca/slides/afup__authetification_forte.pdf Authentification Forte] by Philippe Gamache (02/02/2010) &lt;br /&gt;
&lt;br /&gt;
[http://www.opensamm.org/downloads/OpenSAMM-1.0.ppt Software Assurance Maturity Model (OpenSAMM)] by Pravir Chandra (03/11/2009) &lt;br /&gt;
&lt;br /&gt;
[http://www.owasp.org/images/d/de/Owasp-montreal-sept-17h-2009-justin-foster.pdf Crossing the Border – Javascript Exploits] by Justin Foster (17/09/2009) &lt;br /&gt;
&lt;br /&gt;
[http://www.owasp.org/images/c/c2/ALaughRIAt.pdf A Laugh RIAt] by Rafal Los (07/04/2009) &lt;br /&gt;
&lt;br /&gt;
[https://www.owasp.org/images/e/eb/OWASP-Montreal-24022009-RobLabbe.pptx Microsoft Security Development Lifecycle for IT] by Rob Labbe (24/02/2009) &lt;br /&gt;
&lt;br /&gt;
[https://www.owasp.org/images/3/39/OWASP-Montreal-24022009-EN.pdf OWASP Goal and Top Ten 2007 for Managers - French version] by Benoit Guerette (24/02/2009)&lt;br /&gt;
&lt;br /&gt;
Newer presentations are available on [https://speakerdeck.com/owaspmontreal Speaker Deck]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Circle_owasp_logo_nowhitebackground.png|200px]]&lt;br /&gt;
&lt;br /&gt;
= OWASP Foundation / Mission OWASP    = &lt;br /&gt;
OWASP Foundation ([https://docs.google.com/a/owasp.org/presentation/d/10wi1EWFCPZwCpkB6qZaBNN8mR2XfQs8sLxcj9SCsP6c/edit?usp=sharing Overview Slides]) is a professional association of [[Membership | global members]] and is open to anyone interested in learning more about software security. Local chapters are run independently and guided by the [[Chapter_Leader_Handbook]].  As a [[About_OWASP | 501(c)(3)]] non-profit professional association your support and sponsorship of any meeting venue and/or refreshments is tax-deductible. Financial contributions should only be made online using the authorized online chapter donation button.  To be a &amp;lt;b&amp;gt;SPEAKER&amp;lt;/b&amp;gt; at ANY OWASP Chapter in the world simply review the [[Speaker_Agreement | speaker agreement]] and then contact the local chapter leader with details of what OWASP PROJECT, independent research or related software security topic you would like to present on.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;La fondation OWASP est une [https://www.owasp.org/index.php/Membership association de professionnels] et elle est ouverte à tout intervenant intéressé à en apprendre davantage sur la sécurité applicative. Les chapitres locaux (dont celui de Montréal) sont gérés de façon indépendante et selon un [https://www.owasp.org/index.php/Chapter_Leader_Handbook manuel de directives à respecter].   &lt;br /&gt;
Toute contribution financière au chapitre peut être faite en ligne en utilisant l’icône prévu à cet effet. Pour être conférencier au sein de n’importe quel chapitre à l’échelle mondiale, vous n’avez qu’à prendre connaissance du document [https://www.owasp.org/index.php/Speaker_Agreement &amp;quot;entente avec les conférenciers – speaker agreement&amp;quot;] et à joindre le responsable du chapitre Montréal avec un descriptif du sujet que vous aimeriez aborder et s’il est relié à un projet OWASP, à de la recherche indépendante ou encore le sujet en particulier, concernant la sécurité applicative, que vous souhaitez aborder.&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== [[Image:Circle_owasp_logo_nowhitebackground.png|128px]] Montreal OWASP Team == &lt;br /&gt;
&lt;br /&gt;
Scope of the team is to discuss and plan local activities and meetings &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Chapter Leaders ===&lt;br /&gt;
&lt;br /&gt;
* [mailto:anne.gauthier@owasp.org Anne Gauthier], President/Présidente&lt;br /&gt;
* [mailto:michel.bourque{at}owasp.org Michel Bourque], Chapter coordinator and marketing manager/Coordination et Marketing&lt;br /&gt;
* [mailto:hugo.genesse(at)owasp.org Hugo Genesse], Web content and production manager/Site internet et Production &lt;br /&gt;
* [mailto:olivier.arteau(at)owasp.org Olivier Arteau], Logistic manager/Logistique&lt;br /&gt;
&lt;br /&gt;
==== Chapter leader history ====&lt;br /&gt;
*2008-2010 - Benoit Guerette, founder and chapter leader&lt;br /&gt;
*2011-2012 - Philippe Gamache, chapter leader (vice chapter-leader since 2010)&lt;br /&gt;
*2013-2015 - Jonathan Marcil, chapter leader&lt;br /&gt;
*2016-... - Anne Gauthier, Michel Bourque, Marius Popescu, Hugo Genesse, Olivier Arteau&lt;br /&gt;
&lt;br /&gt;
==== Old board members ====&lt;br /&gt;
*Philippe Pépos Petitclerc&lt;br /&gt;
*Michael Robillard&lt;br /&gt;
*Benoit Guerette (logistics 2015)&lt;br /&gt;
*Alexandre Rimthong&lt;br /&gt;
*Mathieu Binette&lt;br /&gt;
*Sean Coates&lt;br /&gt;
*Jean-Marc Robert&lt;br /&gt;
*Philippe Blondin&lt;br /&gt;
*Benoit Guerette (founder)&lt;br /&gt;
*Laurent Desaulniers&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;headertabs/&amp;gt; &lt;br /&gt;
__NOTOC__ &lt;br /&gt;
[[Category:Canada]]&lt;/div&gt;</summary>
		<author><name>Svieg</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=File:Tanya.jpeg&amp;diff=232455</id>
		<title>File:Tanya.jpeg</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=File:Tanya.jpeg&amp;diff=232455"/>
				<updated>2017-08-18T16:12:22Z</updated>
		
		<summary type="html">&lt;p&gt;Svieg: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Svieg</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=Montr%C3%A9al&amp;diff=232278</id>
		<title>Montréal</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=Montr%C3%A9al&amp;diff=232278"/>
				<updated>2017-08-14T20:58:23Z</updated>
		
		<summary type="html">&lt;p&gt;Svieg: /* Security Testing: Unlocking the Benefits of a Hybrid Approach */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Welcome &amp;amp; Bienvenue to the OWASP Montréal chapter ==&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:OWASP-Montreal-Logo.png|Logo OWASP Montréal]]&lt;br /&gt;
&lt;br /&gt;
The OWASP Foundation was established in 2001 as an open community and software security resource. Since then, OWASP has grown to be globally recognized as a credible source for application security standards. &amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
OWASP is an open community dedicated to enabling organizations to conceive, develop, acquire, operate, and maintain applications that can be trusted. All of the OWASP tools, documents, forums, and chapters are free and open to anyone interested in improving application security. We advocate approaching application security as a people, process, and technology problem because the most effective approaches to application security include improvements in all of these areas. &amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
OWASP is open to anyone. Anyone can attend OWASP's vendor agnostic local chapter meetings, participate in regional and global conferences, and contribute to the many OWASP projects. And anyone can start a new project, form a new chapter, or lend their expertise to help an OWASP Global Committee.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt;On parle français aussi ! Le chapitre de Montréal organise plusieurs activités gratuites afin de partager les connaissances en sécurité applicative avec la communauté de développeurs et gestionnaires. Suivez-nous sur les réseaux sociaux pour connaître les dates des conférences du midi et des workshops !&amp;lt;/b&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Top documentation from OWASP includes: &lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/index.php/Top_10_2013-Top_10 OWASP TOP 10 : The Ten Most Critical Web Application Security Risks]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/images/3/33/OWASP_Application_Security_Verification_Standard_3.0.1.pdf OWASP ASVS : Application Security Verification Standard]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/images/5/52/OWASP_Testing_Guide_v4.pdf OWASP Testing Guide : Penetration Testing Framework ]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/images/7/78/OWASP_AlphaRelease_CodeReviewGuide2.0.pdf OWASP Code Review Guide : Source Code Analysis Framework ]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/index.php/OWASP_Cheat_Sheet_Series OWASP Cheat Sheet : Best practices guidelines for developers ]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org OWASP Global ]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Chapter Leaders / Responsables du chapitre ===&lt;br /&gt;
&lt;br /&gt;
* [mailto:anne.gauthier@owasp.org Anne Gauthier], President/Présidente&lt;br /&gt;
* [mailto:michel.bourque{at}owasp.org Michel Bourque], Chapter coordinator and marketing manager/Coordination et Marketing&lt;br /&gt;
* [mailto:hugo.genesse(at)owasp.org Hugo Genesse], Web content and production manager/Site internet et Production &lt;br /&gt;
* [mailto:olivier.arteau(at)owasp.org Olivier Arteau], Logistic manager/Logistique&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Special thanks to / Remerciements : &lt;br /&gt;
* Simon Lacasse, Web content / Site internet&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;b&amp;gt; Reach our chapter / Joindre le chapitre &amp;lt;/b&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Follow OWASP's Montreal chapter's activities through social medias, register to events, watch the previous presentations and more! &lt;br /&gt;
&lt;br /&gt;
Suivez les activités du chapitre OWASP Montréal via les réseaux sociaux, inscrivez-vous aux activités, visualisez les anciennes présentations et plus encore! &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;b&amp;gt;[http://lists.owasp.org/mailman/listinfo/owasp-montreal Click here] to join the local chapter mailing list.&lt;br /&gt;
&amp;lt;br/&amp;gt;[http://lists.owasp.org/mailman/listinfo/owasp-montreal Inscrivez-vous ici] à la liste de courriels du chapitre afin de recevoir les dernières nouvelles!&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Want to be part of the community ? &lt;br /&gt;
Devenez membre de notre communauté ! &lt;br /&gt;
[https://www.owasp.org/index.php/Membership_Map Click here / Cliquer ici]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Eb_press_little.gif‎|OWASP Montreal Eventbrite|link=http://owaspmontreal.eventbrite.ca/]] &lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[Image:Yt-brand-standard-logo-630px.png‎|128px|YouTube OWASP Montreal Channel|link=http://www.youtube.com/owaspmontreal]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]   &lt;br /&gt;
[[Image:Speakerdecklogo.png‎|Slides of OWASP Montreal on SpeakerDeck |link=https://speakerdeck.com/owaspmontreal]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Twitter-bird-cropped-onwhite.png|@owaspmontreal on Twitter|link=https://twitter.com/owaspmontreal]]&lt;br /&gt;
[[Image:FacebookSquareLogo.png|OWASP Montreal Facebook page|link=https://www.facebook.com/owasp.montreal]]&lt;br /&gt;
[[Image:LinkedinSquareLogo.png|OWASP Montreal on LinkedIn|link=https://www.linkedin.com/groups/1379007/profile]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
&lt;br /&gt;
== Sponsorship &amp;amp; Membership / Commandite &amp;amp; Adhésion ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Btn_donate_SM.gif|link=http://www.regonline.com/donation_1044369]] to this chapter or become a local chapter supporter.&lt;br /&gt;
&lt;br /&gt;
Or consider the value of [[Membership | Individual, Corporate, or Academic Supporter membership]]. Ready to become a member? [[Image:Join_Now_BlueIcon.JPG|75px|link=https://myowasp.force.com/]]&lt;br /&gt;
&lt;br /&gt;
[http://www.regonline.com/donation_1044369 Donnez] au chapitre ou devenez commanditaire du chapitre local! &lt;br /&gt;
&lt;br /&gt;
[https://myowasp.force.com/ Devenez membre !] Pour en savoir davantage sur les avantages d’une adhésion individuelle, corporative ou en tant qu’institution d’enseignement, [https://www.owasp.org/index.php/Membership cliquez ici]. &lt;br /&gt;
&lt;br /&gt;
[[Category:OWASP Chapter]]&lt;br /&gt;
&lt;br /&gt;
== Chapter Supporters / Commanditaires du chapitre ==&lt;br /&gt;
&lt;br /&gt;
[https://www.owasp.org/images/9/91/OWASP_Membership_Flyer_Montreal.png All details available here / Pour tous les détails ] [[File:Chapter-supporter-owasp-montreal.png|200px|link=https://www.owasp.org/images/9/91/OWASP_Membership_Flyer_Montreal.png]] &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Platinum / Platine ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Gosecure-2.png|GoSecure|link=http://www.gosecure.ca/]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[File:Desjardins2-400x400.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Gold / Or ===&lt;br /&gt;
&lt;br /&gt;
[[Image:ImmunioLogo.jpg|Immunio|link=https://www.immun.io/]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Lunch &amp;amp; Learn / Workshops 2017 =&lt;br /&gt;
&lt;br /&gt;
== Cas d'attaques vécus : Internet des objets (IOT) - Attaques DDoS ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Cas_dattaques_vecus-r.jpg  ]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 June 19th 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
Pour clore la saison printanière 2017, OWASP Montréal est fier d'accueillir au Midi Conférence, M. Christian Shink qui fera un survol de cas d'attaques vécus, des techniques utilisées et des acteurs impliqués dans ces attaques.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
L'incorporation généralisée de dispositifs «intelligents» dans les objets de la vie de tous les jours modifie la façon dont les gens et les machines interagissent les uns avec les autres. Cette incorporation offre une promesse d'une meilleure qualité de vie, une meilleure efficacité. En contrepartie, leur déploiement introduit également des vulnérabilités à la fois dans l'infrastructure qu'ils soutiennent et sur lesquels ils comptent, ainsi que dans les processus qu'ils guident. Que ce soit au niveau applicatif ou des infrastructures, ces vulnérabilités sont exploitées par des acteurs malicieux pour générer des attaques de déni de service massives et sophistiquées. Nous tenterons également de tirer des leçons afin de tenter de minimiser ce type d'attaques dans le futur.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Christian Shink possède plus d’une dizaine d’années d’expérience en développement et sécurité d’applications. Avant de se joindre à Radware, Christian était à l’emploi d'une firme conseil où il a conseillé de nombreuses entreprises, dont de grandes banques américaines et Casinos. Il détient une certification CSSLP et est membre de l'ordre des ingénieurs du Québec.&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== HOW TO! Threat Modeling Toolkit ==&lt;br /&gt;
&lt;br /&gt;
[[Image:OWASPMtl-JonathanMarcil-1.jpg]]&lt;br /&gt;
[[Image:OWASPMtl-JonathanMarcil-3.jpg]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/threat-modeling-toolkit]] [https://speakerdeck.com/owaspmontreal/threat-modeling-toolkit See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 May 23rd, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Shopify Montreal&lt;br /&gt;
&lt;br /&gt;
Threat Modeling is a great way to analyze security early in software development by structuring possible attacks, bad actors and countermeasures over a broad view of the targeted system. This talk will describe basic components of a threat model and how to use them effectively.&lt;br /&gt;
Threat Intelligence is where you gather knowledge about the environment and business assets to determine what are the actual threats. But how do you reconcile that with the current architecture in a useful manner?&lt;br /&gt;
The toolkit presented in this talk will enable you to systematically structure related information using graphical notations such as flow diagram and attack tree. In case you are wondering where to start in your organization, a quick lightweight risk rating methodology will also be proposed.&lt;br /&gt;
And in the end, you’ll see how we can all tie those together and get threat modeling to a point where it’s an efficient application security activity for communication. Doing this will prevent security reviews from missing important things even when chaos prevails during the realization of a project.&lt;br /&gt;
Modeling concepts will be demonstrated with an actual IoT device used as example.&lt;br /&gt;
Presentation will be done in english.&lt;br /&gt;
&lt;br /&gt;
Speaker Bio:&lt;br /&gt;
Jonathan Marcil is the former chapter leader of OWASP Montreal and is now Senior Application Security Engineer at Blizzard Entertainment in beautiful Orange County, California.&lt;br /&gt;
Jonathan has been involved with OWASP for many years and has been behind the Media Project which gathered and promoted AppSec conferences video content in the official OWASP YouTube channel. He was also part of NorthSec CTF event as a challenge designer specialized in Web and imaginative contraptions.&lt;br /&gt;
He is passionate about Application Security and enjoys architecture analysis, code review, threat modeling and debunking security tools. He holds a diploma in Software Engineering from ÉTS Montreal and has more than 15 years of experience in Information Technology and Security.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Merci à nos précieux commanditaires !&lt;br /&gt;
&lt;br /&gt;
== Security Testing: Unlocking the Benefits of a Hybrid Approach ==&lt;br /&gt;
[[Image:Security testing hybrid approach-r 3.jpg    ]]&lt;br /&gt;
[[Image:Security testing hybrid approach-r 4.jpg    ]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/hybrid-approach-to-security-testing]] [https://speakerdeck.com/owaspmontreal/hybrid-approach-to-security-testing See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 April 24th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
As part of their defensive efforts, businesses commonly commission cybersecurity assessments of their web applications; with the aim of identifying any weaknesses in the security controls and ensuring a continually strong cybersecurity posture of their systems.&lt;br /&gt;
&lt;br /&gt;
The classical approach of either secure code review (white box) or penetration testing (black box) assessment have proven to be effective in securing of web applications. The new trend, however, is moving towards the combination of these two approaches; expert consensus is rapidly recognizing the advantages of using a hybrid approach. When applied properly, a hybrid approach can build on the strengths of both white and black box testing, while compensating for their individual shortcomings.&lt;br /&gt;
&lt;br /&gt;
In this presentation, we will examine the details of secure code review and penetration testing, and run demos to contrast their respective strengths and weaknesses. We will also examine why a hybrid approach can produce more complete and relevant assessment results. To conclude, we will cover proven approaches, and practical techniques, on how you can start leveraging a hybrid approach to web application assessments today.&lt;br /&gt;
&lt;br /&gt;
Anne Gauthier is an application security analyst at GoSecure. Anne is also the president of the Montreal Chapter of OWASP – the industry standard for web application security. With a penetration testing background, she specializes in secure code reviews and in helping companies to improve their software development lifecycle (SDLC) according to industry best practices. Anne is CSSLP, GWAPT and GSSP-JAVA certified. She obtained a Software Engineering bachelor’s degree from Ecole de Technologie Supérieure in Montréal and is now pursuing a Master of Engineering (MEng) degree in Information Systems Security at Concordia University. She is the author of the Project 201 Security blog.&lt;br /&gt;
&lt;br /&gt;
Merci à nos précieux commanditaires !&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;HOW-TO&amp;quot; NIGHT ! Tout sur les CTFs (Capture The Flag) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Howto_ctf.jpg]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://docs.google.com/presentation/d/1zEsCcX-Nvq8Nz0k-B1zHejCDNT2oGZx8oUBgMbvvMM0/edit#slide=id.p ]] [https://docs.google.com/presentation/d/1zEsCcX-Nvq8Nz0k-B1zHejCDNT2oGZx8oUBgMbvvMM0/edit#slide=id.p  See the slides / Voir la présentation (Laurent Desaulniers)]&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://docs.google.com/presentation/d/1c1P1d2mKe767j1Y0V9cK6De5cpnK4I7GI-ORiodbg1A/edit#slide=id.p ]] [https://docs.google.com/presentation/d/1c1P1d2mKe767j1Y0V9cK6De5cpnK4I7GI-ORiodbg1A/edit#slide=id.p  See the slides / Voir la présentation (Charles Hamilton)]&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=http://obilodeau.github.io/slides/2017-04-04_how-not-to-suck-at-ctfs/ ]] [http://obilodeau.github.io/slides/2017-04-04_how-not-to-suck-at-ctfs/  See the slides / Voir la présentation (Olivier Bilodeau)]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 April 4th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Shopify&lt;br /&gt;
&lt;br /&gt;
Cette nouvelle soirée &amp;quot;How-To&amp;quot; Night d'OWASP Montréal vise à présenter les CTFs (une compétition Capture The Flag) et aider les équipes à démarrer et à continuer à évoluer dans leurs pratique de la cyber sécurité pratique. L'objectif est d'outiller les participants en leur fournissant des ressources techniques et des contacts afin de les aider à progresser.&lt;br /&gt;
&lt;br /&gt;
Les éléments discutés seront:&lt;br /&gt;
&lt;br /&gt;
- Composition optimale d’une équipe : Fonctionnement d’une équipe de CTF et les principaux rôles (chef d’équipe, cryptographie, application web, rétro ingénierie et les causes perdues).&lt;br /&gt;
&lt;br /&gt;
- Pourquoi faire des CTFs? Discussion sur les différents styles (jeopardy, attack/defense, etc.), quels sont les problèmes fréquemments rencontrés + plusieurs anecdotes intéressantes (et drôles).&lt;br /&gt;
&lt;br /&gt;
- Trucs de Mr. Unikoder : Le créateur du fameux site ringzer0team, soit un des plus gros sites pour apprendre la résolution de problèmes de CTF (https://ringzer0team.com/) Apprenez des trucs du meilleur, sur comment débuter et interpréter un challenge web, binaire et crypto avec des trucs réels du métier.&lt;br /&gt;
&lt;br /&gt;
Matériel requis :&lt;br /&gt;
&lt;br /&gt;
    Votre légendaire enthousiasme&lt;br /&gt;
&lt;br /&gt;
Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
&lt;br /&gt;
Places limitées. Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Shopify pour l'événement.&lt;br /&gt;
&lt;br /&gt;
Présentateurs :&lt;br /&gt;
&lt;br /&gt;
Charles Hamilton, Senior Consultant chez Mandiant, FireEye, Inc.&lt;br /&gt;
&lt;br /&gt;
Olivier Bilodeau, Cybersecurity Research Lead at GoSecure&lt;br /&gt;
&lt;br /&gt;
Laurent Desaulniers, Senior Security Solution Specialist at Bell Canada&lt;br /&gt;
&lt;br /&gt;
== NorthSec - Applied Security Event ==&lt;br /&gt;
[[Image:Nsec_2017_midi_conf.jpg]]&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/northsec-applied-security-event]] [https://speakerdeck.com/owaspmontreal/northsec-applied-security-event See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 April 4th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
NorthSec: La plus grande compétition et conférence en cyber sécurité au Canada&lt;br /&gt;
&lt;br /&gt;
NorthSec est un organisme sans but lucratif qui organise une conférence et une compétition de sécurité de type &amp;quot;Capture-The-Flag&amp;quot; (CTF) et des formations. Avec plus de 400 participants présents sur le site pour la compétition, c’est la plus grande compétition du genre au monde.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
La conférence, dans sa 3e année, attire des présentateurs internationaux avec du contenu technique exclusif. L’ajout des séances de travail (workshops) devrait plaire aux plus chevronnés des binaires.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Des formations de 3 jours sont offertes avant la conférence: &amp;quot;Advanced Web Application Security&amp;quot; par Philippe Arteau et &amp;quot;Malware and Memory Forensics&amp;quot; par Michael Ligh, co-auteur des livres &amp;quot;Malware Analyst Cookbook&amp;quot; et &amp;quot;The Art of Memory Forensics&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
NorthSec est situé au Marché Bonsecours dans le Vieux-Port de Montréal au printemps du 15 au 21 mai 2017.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
La présentation couvrira:&lt;br /&gt;
&lt;br /&gt;
- Le plan pour 2017&amp;lt;br/&amp;gt;&lt;br /&gt;
- Ce qui différencie NorthSec&amp;lt;br/&amp;gt;&lt;br /&gt;
- Comment équilibrer une compétition pour les débutants et les experts&amp;lt;br/&amp;gt;&lt;br /&gt;
- Comment bâtir une infrastructure basée sur les conteneurs qui gère 50 équipes dans quelques serveurs sans qu’ils ne se partagent de machines virtuelles&amp;lt;br/&amp;gt;&lt;br /&gt;
- Comment faire du pain au levain à grande échelle&amp;lt;br/&amp;gt;&lt;br /&gt;
- Présentation de quelques défis et solutions&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Les présentateurs:&lt;br /&gt;
&lt;br /&gt;
- Gabriel Tremblay, Président, Delve Labs&amp;lt;br/&amp;gt;&lt;br /&gt;
- Olivier Bilodeau, VP Formations, Co-fondateur MontréHack, GoSecure&amp;lt;br/&amp;gt;&lt;br /&gt;
- Pierre-David Oriol, VP Conférences, Delve Labs&amp;lt;br/&amp;gt;&lt;br /&gt;
- Benoit Guérette, VP Partenaires, Desjardins&amp;lt;br/&amp;gt;&lt;br /&gt;
- Laurent Desaulniers, Tisserand de drapeaux, Bell Canada&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Merci à nos précieux commanditaires !&lt;br /&gt;
&lt;br /&gt;
== Sécurité des applications : Les fondements ==&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/securite-des-applications-les-fondements]] [https://speakerdeck.com/owaspmontreal/securite-des-applications-les-fondements See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 March 20th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
OWASP Montréal est fier d’accueillir au Midi Conférence du mois de mars, Mme Tanya Janca, Co-Leader du chapitre OWASP Ottawa et spécialiste de la sécurité applicative au sein du Gouvernement fédéral.&lt;br /&gt;
&lt;br /&gt;
La conférence « Les fondements de la sécurité des applications » sera présentée en anglais.&lt;br /&gt;
&lt;br /&gt;
Session Description : Everyone has heard about the problem; everyone is “getting hacked”. But what is the answer? From scanning your code with a vulnerability scanner to red teaming exercises, developer education programs and bug bounties, this talk will take the audience through all the possibilities of an extensive application security program, with a detailed explanation of each part.&lt;br /&gt;
&lt;br /&gt;
Bio : Tanya Janca is an application security evangelist, a web application penetration tester and vulnerability assessor, a secure code reviewer, an ethical hacker, the Co-Leader of the OWASP Ottawa chapter, and has been developing software since the late 90’s. She has worn many hats and done many things, including; Custom Apps, Ethical Hacking, COTS, Incident Response, Enterprise Architect, Project and People Management, and even Tech Support. She is currently helping the Government of Canada secure their web applications.&lt;br /&gt;
&lt;br /&gt;
Merci à notre commanditaire principal de cet événement: Ubitrak!&lt;br /&gt;
&lt;br /&gt;
== WORKSHOP ! Server Side Template Injection (SSTI) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-okiok-SSTI-r.jpg | WORKSHOP ! Server Side Template Injection (SSTI) ]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/workshop-server-side-template-injection-ssti]] [https://speakerdeck.com/owaspmontreal/workshop-server-side-template-injection-ssti See the slides / Voir la présentation]&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 22 Février 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Shopify Montréal&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
OWASP Montreal vous invite à un atelier portant sur la sécurité des applications web supportant les moteurs de template (Template Engine). Le principe de séparation entre la présentation du site (code HTML statique) et de son contenu dynamique facilite la création de documents HTML et la capacité à modifier l'apparence du site sans mélanger le traitement et le rendu de la page. L'utilisation de moteurs de template amène de nouveaux enjeux de sécurité. Les vulnérabilités de type Server Side Template Injection (SSTI) sont exploitables à travers les données (non fiables) fournies par l'utilisateur et conduisent à l'exécution de code arbitraire (RCE) sur le serveur hébergeant l'application web.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ce workshop a pour but d'introduire cette classe de vulnérabilité à travers différents cas d'implémentation (php, java, python).&lt;br /&gt;
Nous verrons comment identifier et exploiter ces vulnérabilités et de quelle manière un attaquant peut &lt;br /&gt;
s'y prendre pour exécuter du code arbitraire sur le serveur afin d'en prendre le contrôle.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Niveau : Intermédiaire&amp;lt;br/&amp;gt;&lt;br /&gt;
Matériel requis :&lt;br /&gt;
* Votre portable&lt;br /&gt;
* Votre distribution Linux/Unix de votre choix&lt;br /&gt;
* Votre proxy Web de votre choix&lt;br /&gt;
&lt;br /&gt;
Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
Places limitées. Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Shopify pour l'événement.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Présentateur : Gérôme Dieu&amp;lt;br/&amp;gt;&lt;br /&gt;
Gérôme Dieu cumule plus de 7 années d’expérience en technologies de l’information et en sécurité. &lt;br /&gt;
Il œuvre à titre de conseiller senior en sécurité de l’information au sein de la firme OKIOK. Ces dernières années, il a acquis une expertise dans le domaine de la sécurité des applications web aussi bien d'un point de vue offensif que défensif. En plus de réaliser des tests d’intrusion pour des clients internationaux, Gérôme s’implique dans la recherche et développement afin de maintenir à la fine pointe de la technologie les tests d'intrusion et d'analyse de vulnérabilités. &amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Merci à Shopify d'héberger l'événement !&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Shopify Logo-r.png| Shopify | link=https://www.shopify.com/]]&lt;br /&gt;
== Le courriel en 2017 – risques et menaces pour tous ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Zero spam 2.jpg|Le courriel en 2017 – risques et menaces pour tous]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://www.youtube.com/watch?v=HX2vcijcCWw ]] [https://www.youtube.com/watch?v=HX2vcijcCWw Watch the conference / Regarder la conférence ]&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 Le 23 janvier 2017 à midi&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
Monsieur Poellhuber nous brossera un tableau du phénomène grandissant du rançongiciels et de l'hameçonnage, personnification.&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
- Par les années passées, la menace courriel se résumait principalement en un fort volume de contenu simplement indésirable. Aujourd’hui la menace a passablement évolué. Quels sont les véritables risques actuels associés au courriel ? Rançongiciels, hameçonnage, personnification. Cette conférence présentera les nouveaux défis de sécurité pour les organisations qui doivent composer avec des attaques de plus en plus sophistiquées et de plus en plus ciblées tout en protégeant leur réputation. Des exemples biens réels, drôles et moins drôles seront disséqués pour bien dessiner l’ampleur de l’enjeu.&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
M. David Poellhuber, Chef de l’exploitation, ZEROSPAM Sécurité Inc&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note biographique :&amp;lt;br/&amp;gt;&lt;br /&gt;
Monsieur David Poellhuber oeuvre dans l’industrie de la sécurité informatique depuis quinze ans. Il a été conférencier dans plusieurs forums de sécurité au Canada et est maintenant reconnu comme une autorité en matière de sécurité du courriel. Il a fondé ZEROSPAM Sécurité en 2003, le premier service Québécois externalisé de sécurité du courriel infonuagique qui se distingue par sa convivialité, son efficacité et ses technologies de détection proactives.&amp;lt;br/&amp;gt;&lt;br /&gt;
Audience :  Généralistes et spécialistes de la sécurité des TI &lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Merci à Ubitrack pour le repas et à Desjardins d'héberger l'événement!&lt;br /&gt;
&lt;br /&gt;
[[Image:Ubitrak-r2.jpg|Ubitrak|link=http://www.ubitrak.com/fr/]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&lt;br /&gt;
== Effective XSS Mitigation ==&lt;br /&gt;
&lt;br /&gt;
[[Image:XSS mitigation.jpg | Effective XSS Mitigation ]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=http://slides.com/olivierarteau/xss-mitigation ]] [http://slides.com/olivierarteau/xss-mitigation See the slides / Voir la présentation]&lt;br /&gt;
&lt;br /&gt;
WHEN &lt;br /&gt;
 18 Janvier 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Google Montréal&lt;br /&gt;
&lt;br /&gt;
FRANÇAIS/ENGLISH&amp;lt;br/&amp;gt;&lt;br /&gt;
La mitigation de XSS a été un sujet important au cours des dernières années. Les navigateurs ont implémenté, en autre, deux fonctionnalités pour mitiger leur impact : l'entête &amp;quot;XSS-Protection&amp;quot; et l'entête &amp;quot;Content-Security-Policy&amp;quot;. Par contre, obtenir une mitigation contre les XSS efficace est souvent plus complexe que l'on pense. Cet atelier couvrira les deux entêtes. Il expliquera comme il est possible de contourner ces protections et ce qu'il est possible de faire pour se protéger. Des exercices de type &amp;quot;offensif&amp;quot; et &amp;quot;défensif&amp;quot; seront proposés.&lt;br /&gt;
Mitigation for XSS as been an important topic in the last few years. Browsers have implemented two main functionalities to help mitigate the impact of XSS : the &amp;quot;XSS-Protection&amp;quot; header and the &amp;quot;Content-Security-Policy&amp;quot; header. But, getting an effective XSS mitigation of those headers is trickier than it may seem. This workshop will cover both of those headers. It will explain how bypass of those protection work and what you can do about it. It will have both &amp;quot;defensive&amp;quot; exercises and &amp;quot;offensive&amp;quot; exercises.&lt;br /&gt;
Niveau : débutant/intermédiaire&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Matériel requis :&lt;br /&gt;
&lt;br /&gt;
Votre portable&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
&lt;br /&gt;
Places limitées. Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Google pour l'événement.&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Présentateur : Olivier Arteau&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Olivier Arteau est un professionnel en sécurité informatique depuis quelques années et fait partie de l’équipe de test d’intrusion de Desjardins. Il est aussi un amateur de CTF qui a gagné à plusieurs reprises le CTF du NorthSec avec l’équipe HackToute et participe fréquemment à d’autres CTF avec l’équipe DCIETS.&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Merci à Google d'héberger l'événement! &lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-zap-4-r.jpg | Google | link=https://www.google.ca/ ]]&lt;br /&gt;
&lt;br /&gt;
= Lunch &amp;amp; Learn / Workshops 2015-2016 =&lt;br /&gt;
&lt;br /&gt;
== WORKSHOP ! Top 10 OWASP - Unleash the threats ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-top10.jpg | WORKSHOP! Top 10 OWASP - Unleash the threats ]]&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 30 novembre 2016 de 17h30 à 20h30&lt;br /&gt;
WHERE&lt;br /&gt;
 Immunio @ WeWork&lt;br /&gt;
&lt;br /&gt;
De nos jours, la sécurité applicative est essentielle dans l’écosystème des entreprises de toutes tailles. Les vecteurs d’attaques sont multiples, les vulnérabilités de sécurité dans les applications peuvent être désastreuses et les impacts d’un « Hack » peuvent être irréversibles pour l’entreprise; vols de données sensibles, perte de réputation, perte de $$$$$, etc.&lt;br /&gt;
L’objectif du workshop est de comprendre la base sur les vulnérabilités de sécurité dans les applications et les techniques d’exploitation utilisées par les pirates informatiques, en plus de connaître les bonnes pratiques de développement en matière de sécurité applicative. &lt;br /&gt;
Avec l'aide de WebGoat, Damn Vulnerable Web Application et de Kali Linux, vous pourrez participer&lt;br /&gt;
à l'exploitation des applications et découvrir les techniques utilisées par les attaquants.&lt;br /&gt;
&lt;br /&gt;
Niveau : débutant&lt;br /&gt;
&lt;br /&gt;
Matériel requis :&lt;br /&gt;
 Votre portable&lt;br /&gt;
 Kali Linux&lt;br /&gt;
 La VM du workshop, envoyée aux participants&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
&lt;br /&gt;
Places très limitées (nb = 10). Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Immunio &amp;amp; WeWork pour l'événement.&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Présentateur : Christian Leclerc&lt;br /&gt;
&lt;br /&gt;
Christian est spécialisé en conception et développement de solutions web sécuritaires. Tout au long de sa carrière, il a acquis une vaste expertise sur plusieurs types de technologies et méthodologies, intégré la sécurité dans le cycle de développement d’applications, effectué des revues de code sécurité, déployé des outils d’analyse des vulnérabilités et mis en place des systèmes d’authentification. De plus, il a participé à la conception et au développement de solutions sécuritaires de pointe comme la signature électronique à l’aide d’une infrastructure à clé publique (PKI), les authentifications fortes, le Registre des consentements au don d'organes et de tissus (RDOQ.org) et la migration de plusieurs applications web vers un environnement SOA (Service Oriented Architecture). &lt;br /&gt;
&amp;lt;br&amp;gt;Merci à Immunio &amp;amp; WeWork d'héberger l'événement!&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:Immunio-horizontal-r.png|Immunio|link=https://www.immun.io/]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[Image:Wework-r.jpg|WeWork|link=https://www.wework.com/]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Histoire d'un Hack ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Histoire-dun-hack-r.jpg | Histoire d'un Hack ]]&lt;br /&gt;
&lt;br /&gt;
WHEN &lt;br /&gt;
 21 novembre 2016 à midi&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
Pour son activité du mois de novembre, OWASP Montréal propose à la communauté de la sécurité des TI et aux gestionnaires de faire l'autopsie d'une attaque de haute voltige sur un site web et des outils mis à la disposition par OWASP.&lt;br /&gt;
 &lt;br /&gt;
Bernard Bolduc cumule plus de 17 années d’expérience en technologies de l’information et en sécurité. Il œuvre à titre de conseiller senior en sécurité de l’information au niveau d’entreprise de classe nationale et internationale.&lt;br /&gt;
 &lt;br /&gt;
Bernard se spécialise en sécurité Unix, applicative et en gestion de la sécurité des télécommunications. Il combine ces expertises techniques afin d’obtenir des résultats probants et efficaces pour ces clients des secteurs bancaire, télécommunication et multimédias, de l’énergie ou des services publiques. Tout au long de sa carrière, Bernard s’est toujours maintenu à jour sur les dernières menaces de sécurité technologique et commerciale en assistant à des formations spécialisées et d'échanger avec un grand nombre de partenaires dans l'industrie de la sécurité.&lt;br /&gt;
 &lt;br /&gt;
La conférence débute à midi.&lt;br /&gt;
 &lt;br /&gt;
La conférence vous donne droit à 1 CPE et pour les 50 premières personnes, un lunch gratuit.&lt;br /&gt;
 &lt;br /&gt;
Merci à Desjardins d'héberger l'événement!&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Workshop ! Création de votre première extension OWASP ZAP (ou BurpSuite) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-zap-mix.jpg | Workshop ! Création de votre première extension OWASP ZAP (ou BurpSuite)]]&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 11 novembre 2016 de 18h à 21h&lt;br /&gt;
&lt;br /&gt;
WHERE &lt;br /&gt;
 Google Montréal&lt;br /&gt;
&lt;br /&gt;
OWASP Zed Attack Proxy (ZAP) est un scanneur de vulnérabilités et un outil de débogage HTTP. Ce type d'outil est crucial dans un test d'intrusion web et contient un lot intéressant de fonctionnalités. Cela dit, il est possible d'étendre les fonctionnalités. Plusieurs types d'extension sont possibles : vue alternative pour les requêtes ou les réponses, scanneur passif des réponses, scanneur actif produisant des requêtes, etc.&lt;br /&gt;
&lt;br /&gt;
Plusieurs options seront données, par exemple :&lt;br /&gt;
&lt;br /&gt;
 Détection automatique de flag dans les sources&lt;br /&gt;
 Scanneur actif asynchrone DNS&lt;br /&gt;
 Ou votre propre idée&lt;br /&gt;
&lt;br /&gt;
Pour chacune des suggestions, des squelettes de code seront fournis pour les APIs de ZAP. Pour les utilisateurs de BurpSuite, des directives analogues seront également données.&lt;br /&gt;
&lt;br /&gt;
Niveau : débutant / intermédiaire&lt;br /&gt;
&lt;br /&gt;
Matériel requis&lt;br /&gt;
&lt;br /&gt;
 Votre portable&lt;br /&gt;
 [https://www.owasp.org/index.php/OWASP_Zed_Attack_Proxy_Project OWASP ZAP (gratuit)]&lt;br /&gt;
 [https://portswigger.net/burp/download.html BurpSuite]&lt;br /&gt;
 Éditeur de code pour Java, Python ou Ruby&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Présentateur : Philippe Arteau&lt;br /&gt;
&lt;br /&gt;
Philippe est un chercheur en cybersécurité chez GoSecure. Il est l'auteur de l'outil d'analyse statique Java &amp;quot;Find Security Bugs&amp;quot;. Il a découvert des vulnérabilités importantes dans les logiciels populaires tels que Google Chrome, Dropbox, Paypal, RunKeeper et Jira. Il a présenté dans différentes conférences incluant Black Hat USA, Black Hat Europe, ATL Sec Con, NorthSec, Hackfest (QC) et JavaOne. Il a développé de nombreux plug-ins pour les outils de proxy BurpSuite et OWASP ZAP (Retire.js, Reissue Request Script, PDF preview et Image Metadata). Il a fait également des contributions à d'autres plug-ins comme J2eeScan.&lt;br /&gt;
&lt;br /&gt;
Merci à Google d'héberger l'événement! &lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-zap-4-r.jpg | Google | link=https://www.google.ca/ ]]&lt;br /&gt;
&lt;br /&gt;
==Logiciel de rançon (Ransomware) s'attaque au domaine de la santé==&lt;br /&gt;
&lt;br /&gt;
[[Image:HackingHealth-2.jpg | Logiciel de rançon (Ransomware) s'attaque au domaine de la santé ]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/ransomware-and-healthcare-hacking-health ]] [https://speakerdeck.com/owaspmontreal/ransomware-and-healthcare-hacking-health See the slides / Voir la présentation]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;(Conférence en anglais)&lt;br /&gt;
Pour le lancement de la saison 2016 - 2017, OWASP Montréal propose à la communauté de la sécurité des TI et aux gestionnaires de la santé une incursion dans le monde du logiciel malveillant ciblant le domaine de la santé.&amp;lt;br/&amp;gt;&lt;br /&gt;
Cette conférence s'intége dans le Coopérathon co-organisé par le Mouvement Desjardins et Hacking Health.&amp;lt;/b&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Le domaine de la santé serait devenu une cible privilégiée des campagnes de ransomware parce que l'industrie a souvent payé la rançon demandée pour récupérer les données confidentielles et vitales de ses clients. Monsieur Ed Gershfang nous brossera un portrait du phénomène et des meilleures pratiques à mettre en place en matière de sécurité applicative.&lt;br /&gt;
Ed Gershfang possède une expérience solide dans l'infrastructure informatique et plus de 6 ans d'expérience dans les domaines de la sécurité de l'information, de la vulnérabilité, de la gouvernance et de la gestion des risques. Il était directeur de la sécurité pour la société PeriGen, un chef de file de développement de logiciels médicaux en Israël.&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== La sécurité applicative vue par un pentesteur ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Juin2016-OWASPMtl.jpg | OWASP Montréal reçoit Mario Contestabile, Pentester de renom ]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
From Left to Right : Isabelle Lusseyran, Head of Development at Hacking Health. Eduard Gershfang Information Security Analyst at WSP | Parsons Brinckerhoff.&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/owasp-montreal-recoit-mario-contestabile ]] [https://speakerdeck.com/owaspmontreal/owasp-montreal-recoit-mario-contestabile See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Pour clore la saison 2015 – 2016, OWASP Montréal est fier d’accueillir au Midi Conférence un des architectes de renom du développement applicatif au Canada, monsieur Mario Contestabile.&lt;br /&gt;
En tant qu’auteur de plusieurs centaines de tests d’intrusion, il connait tous les rouages de ce qu’est véritablement une application Web «sécurisée». Mais avez-vous déjà remarqué que les rapports de tests d’intrusion mentionnent rarement, voir jamais : «Votre site est très difficile à pirater. Félicitations !» ?&lt;br /&gt;
Et qu’en est-il de ces rapports qui contiennent des dizaines de soi-disant vulnérabilités ? Est-ce que cela signifie d’emblée que l’application devrait être mise hors ligne ?  &lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Lors de cette conférence, nous examinerons des rapports concrets (ambigus) de vulnérabilités et nous les analyserons afin de mieux comprendre si elles représentent une véritable menace, ou si elles ne servent qu’à «remplir» les rapports.&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Avec son expertise en protection et en attaque d’applications Web, il abordera les points suivants :&lt;br /&gt;
Comment pouvez-vous sélectionner des systèmes de façon à mieux exécuter des protections de sécurité ?&lt;br /&gt;
Éviter certains pièges dans votre application Web qui rendent les attaques plus faciles et la protection plus difficile.&lt;br /&gt;
De nos jours, que peuvent faire les développeurs à l’intérieur de systèmes communs, qui puisse me rendre la tâche plus ardue en tant que « hacker »?&lt;br /&gt;
Pouvons-nous exiger de meilleurs rapports de la part des firmes de sécurité?&lt;br /&gt;
À quoi devrions-nous nous attendre de la part d’un « pentesters »?&lt;br /&gt;
Comment pouvons-nous savoir si le « pentester » a vérifié les failles de l’application et qu’il n’a pas simplement utilisé un scanneur?&lt;br /&gt;
Et enfin, comment pouvons-nous aider les « ethical hackers » à obtenir un meilleur rendement lors d’un test d’intrusion?&lt;br /&gt;
Il expliquera le sujet en détails, et ensemble, nous verrons de quelles façons les développeurs d’applications peuvent exploiter le savoir-faire des « pentesters », et comment nous pouvons faire en sorte qu’une application Web soit protégée.&lt;br /&gt;
Biographie :&lt;br /&gt;
Mario Contestabile est reconnu comme l’un des experts en sécurité les plus réputés au Canada. Son expertise, construire et protéger votre plateforme applicative. Ancien développeur C++ et Java, Mario partage ses nombreuses connaissances en « ethical hacking » et en développement de codes sécurisé.  &lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Tuesday, 14 June 2016 from 12:00 PM to 1:00 PM (EDT) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Comment protéger les applications mobiles? ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Avril2016-OWASPMtl.png | Comment protéger les applications mobiles? ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/comment-proteger-les-applications-mobiles ]] [https://speakerdeck.com/owaspmontreal/comment-proteger-les-applications-mobiles See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Dans le cadre des Midis Conférence à l'Espace Desjardins, l'équipe OWASP Montréal vous invite à assister à une présentation sur les vulnérabilités les plus communes associées aux appareils mobiles. &lt;br /&gt;
Marie-Claire Willig détaillera entre autres comment stocker de façon sécuritaire les données de l’application mobile ainsi que protéger l’application contre des attaques externes. Des outils simples vous seront dévoilés pour détecter ces vulnérabilités.&lt;br /&gt;
Marie-Claire est une professionnelle d'expérience en sécurité appliquée.&lt;br /&gt;
Une grande partie de son intérêt professionnel réside actuellement dans un domaine assez niche, soit la revue de code sécuritaire, un fondement important de tout cycle de développement sécuritaire en entreprise.&lt;br /&gt;
Au sein de l'équipe de sécurité technologique Desjardins, elle est, en autre, responsable de former les développeurs (Java et .NET principalement) afin de les sensibiliser aux meilleures pratiques de développement sécuritaire.&lt;br /&gt;
Également, elle est une professionnelle des tests d'intrusion sur les applications web, les applications mobiles ainsi que l'infrastructure réseau.&lt;br /&gt;
Bienvenue à tous&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 20 April 2016 from 12:15 PM to 1:00 PM (EDT) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== NorthSec, Le plus gros événement de cybersécurité appliquée au Canada ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Mars2016-OWASPMtl.jpg | NorthSec, Le plus gros événement de cybersécurité appliquée au Canada ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/YQtvltQYs7Y]] [https://youtu.be/YQtvltQYs7Y Watch the conference / Regarder la conférence] &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
OWASP Montréal est fier d’inviter au Midi Conférence de mars, NorthSec est le plus gros événement de sécurité appliquée au Canada qui comprend deux jours de formation, deux jours de conférences ainsi qu’une compétition du genre « capture the flag » (CTF) de trois jours.&lt;br /&gt;
Gabriel Tremblay, Benoit Guerette, Pierre-David Oriol et Laurent Desaulniers viendront vous parler de cet organisme sans but lucratif dynamique qui est géré par une équipe de bénévoles passionnés qui donnent à chaque année leur énergie et leur temps pour soutenir la communauté de la sécurité de l’information.&lt;br /&gt;
Le volet compétition, l’épreuve maîtresse, est présentée sous forme d’un scénario qui rend cohérent une centaine de défis techniques. Les équipes de participants attaquent l’infrastructure de compétition pour soutirer des drapeaux (flags) à travers un ensemble de vulnérabilités présentes comme de l’injection SQL, des XSS ou encore l’exploitation d’exécutables sur systèmes embarqués. Quelques exemples de défis des années passées seront également présentés.&lt;br /&gt;
Le volet conférence, qui est à sa 2ème année, met de l’avant plusieurs présentations techniques touchant la sécurité applicative mais aussi l’éthique et leurs impacts sociaux. Certaines présentations confirmées seront dévoilés.&lt;br /&gt;
Le tout nouveau volet formation propose deux formations en sécurité applicative de calibre international (anglais) : “Advanced Web Security Testing with Burp Pro” et “Modern Object-Oriented Malware Reverse Engineering”.&lt;br /&gt;
Venez aussi, découvrir comment l'équipe est partie d'une idée en 2012 pour se rendre à un évènement d'envergure, qui rassemblera plus de 600 professionnels, étudiants et autres passionnés de sécurité appliquée lors de la 4ème édition qui aura lieu du 17 au 22 mai 2016 au Marché Bonsecours.&lt;br /&gt;
Finalement, la mission, la vision ainsi que les activités sociales de la semaine de NorthSec sont aussi au menu de cette présentation qui sera suivie d’une période de questions.&lt;br /&gt;
&lt;br /&gt;
Gabriel Tremblay, Delve Labs, Président&lt;br /&gt;
Benoit Guerette, Desjardins, VP Finances&lt;br /&gt;
&lt;br /&gt;
Pierre-David Oriol, Delve Labs, VP Conférence&lt;br /&gt;
Laurent Desaulniers, Bell Canada, Artisant de drapeaux&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 23 March 2016 from 12:00 PM to 1:00 PM (EDT) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== La sécurité applicative et l'hameçonnage - February 24th ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Fevrier2016-OWASPMtl.jpg | La sécurité applicative et l'hameçonnage ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/1RYlOiIENjQ]] [https://youtu.be/1RYlOiIENjQ Watch the conference / Regarder la conférence] &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
De nos jours, une des méthodes les plus efficaces pour contourner les périmètres de sécurité externes est l'hameçonnage conjointement avec l’abus de certaines technologies Web.&lt;br /&gt;
&lt;br /&gt;
Dans le cadre ses activités, OWASP Montréal est heureux d'inviter d'accueillir, l'équipe OKIOK qui présentera les impacts liés à ce type d'attaque, tel que vu et expérimenté en entreprise ainsi que les plans d'action pour traiter ces risques. La présentation abordera aussi bien la sécurité web et applicatives, des systèmes informatiques ainsi que de la sécurité physique de centres de données. &lt;br /&gt;
&lt;br /&gt;
    Capture d'informations sensibles par imitations de portails Web ;&lt;br /&gt;
    Authentification Web par 2-facteurs ;&lt;br /&gt;
    Injection SMTP dans des formulaires Web ;&lt;br /&gt;
    Attaque de type “Drive-by-download”;&lt;br /&gt;
    Prise de contrôle à distance à travers des flux HTTP;&lt;br /&gt;
    Attaque de CSRF à partir de courriels ;&lt;br /&gt;
    Attaque d'hameçonnage basée sur des achats par Internet (ex : PayPal).&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
When&lt;br /&gt;
 Wednesday, 24 February 2016 from 12:00 PM to 1:15 PM (EST) - Add to Calendar &lt;br /&gt;
Where&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest Montreal, Quebec CA&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Internet of {Things, Threats} - January 20th ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Janvier2016-OWASPMtl-R.png | Internet of {Things, Threats} ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=http://gosecure.github.io/presentations/2016-01-20_owasp-mtl/internet-of-threats.html ]] [http://gosecure.github.io/presentations/2016-01-20_owasp-mtl/internet-of-threats.html See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
De plus en plus de périphériques se retrouvent connectés sur Internet. Sous la bannière &amp;quot;Internet of Things&amp;quot; (IoT) ces équipements, que ce soit une pompe à insuline ou un système de caméra de sécurité, tournent généralement sous un système GNU/Linux embarqué d'architecture MIPS ou ARM. La difficulté de mettre à jour ces équipements ainsi que le peu d'effort mis dans la sécurité des systèmes ou la sécurité applicative en font des cibles de choix. Ces derniers mois, nous avons analysé plusieurs logiciels malveillants ciblant ces architectures. Que ce soit par l'exploitation d'une vulnérabilité (Shellshock) ou encore un défaut de configuration, ces systèmes exposés sur Internet peuvent être compromis.&lt;br /&gt;
&lt;br /&gt;
Notre présentation couvrira quelques une de ces analyses:&lt;br /&gt;
&lt;br /&gt;
* Linux/Moose, un malware se propageant automatiquement qui fraude les réseaux sociaux (par exemple Facebook, Twitter et YouTube)&lt;br /&gt;
* LizardSquad et acteurs étrangers qui utilisent des systèmes embarqués compromis pour réaliser des dénis de service distribué (DDoS) &lt;br /&gt;
* Win32/RBrute est un logiciel malveillant qui tente de changer les paramètres de routeurs dans le but de faire du &amp;quot;DNS poisoning&amp;quot;. Il a été distribué par le populaire botnet Sality.&lt;br /&gt;
* Un kit d'exploits qui utilise seulement le navigateur de leur victime avec le même objectif, c'est-à-dire faire du &amp;quot;DNS poisoning&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Enfin, des conseils seront proposés à l'audience pour l'aider à se protéger de ces menaces.&lt;br /&gt;
&lt;br /&gt;
'''Thomas Dupuy''' (twitter: @nyx__o)&lt;br /&gt;
&lt;br /&gt;
Thomas est chercheur en logiciel malveillant chez ESET Canada Recherche. Bon vivant, Thomas déjeune en &amp;quot;reversant&amp;quot; des binaires, contribue à quelques projets open source durant le diner (yara, yara rules, pefile, APTnotes) et la nuit participe à des &amp;quot;Hacking Games&amp;quot; (Capture The Flag). Curieux de nature Thomas analyse des malware aux architectures &amp;quot;exotiques&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Olivier Bilodeau''' (twitter: @obilodeau)&lt;br /&gt;
&lt;br /&gt;
Olivier Bilodeau is the head of Cybersecurity Research at GoSecure a consultancy firm specializing in cybersecurity services for the public and private sector. With more than 10 years of infosec experience, Olivier worked on Unix servers at Bell Canada, managed a portion of Air Canada's network, wrote open source network access control software at Inverse and worked as a Malware Researcher at ESET. He likes to reverse engineer everything that crosses his path, participate in information security capture-the-flag competitions, hack open source code and brew beer. He has spoken at various conferences (Defcon, Botconf, VirusBulletin, Derbycon, ...), used to lecture on information security at ETS University in Montreal, drives the NorthSec Hacker Jeopardy and co-organizes the MontreHack capture-the-flag training initiative. His primary research interests include reverse-engineering tools, Linux and/or embedded malware and honeypots.&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Survivre aux attaques DDOS applicatives ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Decembre2015-OWASPMtl.jpg | Survivre aux attaques DDOS applicatives ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Survivre aux attaques DDOS (Distributed Denial-Of-Service) applicatives.&lt;br /&gt;
Cette conférence s'adresse aux professionnels et gestionnaires des TI.&lt;br /&gt;
Conférencier : Christian Shink, ing., CSSLP, ingénieur système chez Radware, manufacturier spécialisé dans la prévention des attaques DDOS. Il fut également consultant en sécurité applicative chez In Fidem.&lt;br /&gt;
Objectifs de la conférence:&lt;br /&gt;
Présenter les tendances actuelles en matière d'attaques DDOS applicatives.&lt;br /&gt;
Renseigner les participants sur les techniques et stratégies pour contrer ces attaques illustrées à partir de cas vécus.&lt;br /&gt;
Démystifier certains mythes en ce qui concernent les façons efficaces de protéger les applications contre des attaques DDOS.&lt;br /&gt;
Date : 16 décembre 2015&lt;br /&gt;
Heure : 11h45&lt;br /&gt;
La conférence débute à 12h00 et se termine à 12:55.&lt;br /&gt;
Un lunch sera servi.&lt;br /&gt;
Réservez maintenant!&lt;br /&gt;
1 CPE&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 16 December 2015 from 11:45 AM to 1:00 PM (EST) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec &lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Sécurité des applications - Systèmes de contrôles industriels ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Novembre2015-OWASPMtl-R.png | Sécurité des applications - Systèmes de contrôles industriels ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/0eAZpyiQQ9A]] [https://youtu.be/0eAZpyiQQ9A Watch the conference / Regarder la conférence] &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&lt;br /&gt;
La sécurité des applications et les systèmes de contrôles industriels.&lt;br /&gt;
Cette conférence s'adresse aux professionnels et gestionnaires des TI desinfrastructures critiques qui exploitent ou gèrent des systèmes de contrôles industriels(SCI) et SCADA (surveillance et d'acquisition de données).&amp;lt;br/&amp;gt;&lt;br /&gt;
Conférenciers : Robert Nastas, CSSA. Gestionnaire de projet et Youssef Jad, Architecte Cyber sécurité, ICS-CERT&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Objectifs de la conférence:&lt;br /&gt;
* Démystifier le domaine d'affaires.&lt;br /&gt;
* Renseigner les participants sur les bonnes pratiques de sécurité desapplications liées au secteur industriel.&lt;br /&gt;
* Proposer aux professionnels et gestionnaires des TI responsables dessystèmes SCADA et SCI des pistes de solutions aux enjeux de sécurité.&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
L'équipe OWASP Montréal vous remercie d'avoir assisté en grand nombre à la conférence, 'La sécurité des applications et les systèmes de contrôles industriels'.&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 18 November 2015 from 11:45 AM to 1:00 PM (EST) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Les préoccupations actuelles de hauts dirigeants en matière de cybersécurité et de sécurité applicative ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Septembre2015-OWASPMtl.jpg | Les préoccupations actuelles de hauts dirigeants en matière de cybersécurité et de sécurité applicative ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/un-regard-sur-la-securite-de-linformation-en-2015-par-eric-hebert ]] [https://speakerdeck.com/owaspmontreal/un-regard-sur-la-securite-de-linformation-en-2015-par-eric-hebert See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Pour le lancement des activités corporatives de la saison 2015 - 2016, le 8 septembre prochain à 12:00, l'équipe OWASP Montréal convie les gestionnaires et artisants de la sécurité des TIC à venir entendre monsieur Éric Hébert qui nous présentera son interprétation des préoccupations actuelles de hauts dirigeants en matière de cybersécurité et de sécurité applicative. L'événement se tiendra au complexe Desjardins à la salle &amp;quot;Espace Desjardins&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
''' ÉRIC G. HÉBERT, CISM, CISSP ''' &amp;lt;br/&amp;gt;&lt;br /&gt;
Après plus de 20 ans passés dans le domaine de la sécurité des technologies de l’information, Éric se spécialise dans la mise en œuvre et la gestion d'équipes performantes, capables de relever les plus hauts défis de la cybersécurité moderne.&amp;lt;br/&amp;gt;&lt;br /&gt;
Capable de dialoguer avec les hauts dirigeants, il sait traduire et vulgariser les enjeux techniques complexes tout en respectant la nature et l'appétence au risque de ses clients. Dynamique et pourvu d'une expérience couvrant presque toutes les sphères de la SI, il fonce dans le respect de la culture établie tout en implantant des solutions pragmatiques et efficaces.&amp;lt;br/&amp;gt;&lt;br /&gt;
Depuis plus de 10 ans, il gravite principalement autour des entreprises du domaine financier (BNC, Desjardins, Fonds de solidarité FTQ...) et les accompagne dans la mise en place de solutions efficaces tenant compte à la fois des risques et des budgets.&lt;br /&gt;
En plus d’avoir fondé de nombreuses associations telles que le RéseauSécurIT et le RPSI, il maintient une présence régulière auprès des milieux associatifs professionnels et partage régulièrement ses expériences lors de conférences et d'entrevues avec divers médias.&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Events / Évènements =&lt;br /&gt;
&lt;br /&gt;
== Owasp Montreal at [https://nsec.io/ NorthSec 2017] ==&lt;br /&gt;
&lt;br /&gt;
[[Image:NorthSec2017-5.jpg]]&lt;br /&gt;
[[Image:NorthSec2017-6.jpg]]&lt;br /&gt;
&lt;br /&gt;
From Left to Right: Anne Gauthier, OWASP Montréal Chapter Leader (President) and Application Security Analyst at GoSecure, Hugo Genesse, OWASP Montréal Chapter Leader and Research Intern at PNF Software, Julien Touche, OWASP Montréal Chapter Leader and Principal Security Engineer at Nuance Communications&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal at [https://2017.appsec.eu/ AppSec] ==&lt;br /&gt;
&lt;br /&gt;
[[Image:OWASPAppSecBelfast2017-7.jpg]]&lt;br /&gt;
&lt;br /&gt;
OWASP Montreal and Ottawa Chapter Leaders at OWASP AppSec Belfast, UK #WomenInAppSec&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal at [https://hackfest.ca/ HackFest 2016] ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hackfest2016-r.jpg| HackFest |link=https://hackfest.ca/]]&lt;br /&gt;
&lt;br /&gt;
From left to right: Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Louis Nadeau, OWASP Québec Chapter Leader and Manager, Product Security at Bentley Systems and Patrick Leclerc, OWASP Québec Chapter Leader and Information Security Advisor at La Capitale.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal at OWASP [https://2016.appsecusa.org/ AppSec USA 2016, Washington] ==&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:OWASPMtl-AppSecUSA2016-Washington.jpg | OWASP Montreal at AppSec USA 2016, Washington]] &lt;br /&gt;
&lt;br /&gt;
​From left to right: Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Marie-Claire Willig, Application Security Analyst at Desjardins, Speaker and Cofounder of the Roslyn Security Guard tool which will be presented at Blackhat 2016, Alexandre Hamelin President at Synlabs Consulting Inc., Jonathan Marcil, Application Security Engineer at Blizzard Entertainment and former OWASP Montreal Chapter Leader. Philippe Arteau, Cybersecurity Researcher at GoSecure and designer of [https://find-sec-bugs.github.io/ Find Security Bugs] and Roslyn Security Guard tool which will be presented at Blackhat 2016.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://www.gosec.net GoSec] 2016 ==&lt;br /&gt;
&lt;br /&gt;
[[Image:OWASP-GoSec2016-1r.jpg|OWASP Montreal at GoSec 2016]] [[Image:OWASP-GoSec2016-2r.jpg|OWASP Montreal at GoSec 2016]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
From left to right : Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Simon Lacasse, student and volunteer, and Laurent Desaulniers, Security Analyst at Bell Canada.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://www.nsec.io/ NorthSec] 2016 – Annual Applied Security Event ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hackfest2016-OWASPMtl.jpg|OWASP Montreal at NorthSec 2016]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Simon Veilleux &lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
From left to right : Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Olivier Arteau OWASP Montréal Chapter Leader and Conseiller chez Groupe Technologie Desjardins, Hugo Genesse, OWASP Montréal Chapter Leader and Vulnerability Research Intern at Wurldtech Security Technologies.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://hackfest.ca/en/ Hackfest] 2015 ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hackfest2015-OWASPMtl-R.JPG | OWASP Montreal at Hackfest 2015]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Hackfest &lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
From left to right : Jonathan Marcil, Application Security Engineer at Blizzard Entertainment and former OWASP Montreal Chapter Leader. Philippe Arteau, Cybersecurity Researcher at GoSecure and designer of [http://find-sec-bugs.github.io/ Find Security Bugs] and Roslyn Security Guard tool which will be presented at Blackhat 2016. &lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/8U0qkEuUFy8]] [https://youtu.be/8U0qkEuUFy8 Watch the video / Regarder la vidéo]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://www.gosec.net/ GoSec] 2015 – The Annual Cybersecurity Conference presented by GoSecure, EY and ISACA. ==&lt;br /&gt;
&lt;br /&gt;
[[Image:GoSec2015-OWASPMtl.jpg|OWASP Montreal at GoSec 2015]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
From left to right : Marie-Claire Willig, Application Security Analyst at Desjardins, Speaker and Cofounder of the Roslyn Security Guard tool which will be presented at Blackhat 2016. Benoît Guérette, Application Security Team Leader at Desjardins, VP Finance at NorthSec and OWASP Montreal Chapter Founder and Former Chapter Leader.&lt;br /&gt;
&lt;br /&gt;
== See also / Voir aussi ==&lt;br /&gt;
&lt;br /&gt;
OWASP Montréal recommends Montréhack. Learn and share knowledge on IT security by solving technical challenges. Third Monday of every month. &lt;br /&gt;
&lt;br /&gt;
OWASP Montréal recommende Montréhack. Apprends et partages des connaissances sur la sécurité informatique en travaillant des problèmes appliqués. Chaque troisième lundi du mois. &lt;br /&gt;
&lt;br /&gt;
[[File:Montrehack.png|Montréhack|link=http://montrehack.ca/|alt=Montréhack]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Archives 2007-2015 =&lt;br /&gt;
{{:Montreal chapter past meetings}}&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - February 3rd - Getting to Know the Software Assurance Marketplace (SWAMP) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/p4_vjufcB6Q]] [https://youtu.be/p4_vjufcB6Q Watch the conference / Regarder la conférence]&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/getting-to-know-the-software-assurance-marketplace-swamp-by-pat-beyer]] [https://speakerdeck.com/owaspmontreal/getting-to-know-the-software-assurance-marketplace-swamp-by-pat-beyer See the slides / Voir la présentation] &amp;lt;br/&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Pat Beyer&lt;br /&gt;
*'''ADDITIONAL PRESENTER:'''  Abe Megahed&lt;br /&gt;
*'''ABSTRACT:''' The Software Assurance Marketplace (SWAMP) is an open facility that is designed, built, and operated by four research institutions. The SWAMP provides no-cost access to an array of open-source and commercial software analysis tools. This presentation will provide an overview and demo of the SWAMP, including our goals, intended audience, current capabilities, and future plans. We will cover our relationship with OWASP, incorporation of open-source software assurance tools, and status as an open-source project and resource available to the software community. Visit https://continuousassurance.org/ to learn more about us.&lt;br /&gt;
*'''BIO:''' Pat Beyer serves as the Product Manager for the Software Assurance Marketplace (SWAMP). With over 25 years of experience successfully managing multi-million dollar global projects, Beyer’s expertise extends to the IT, construction, and operations sectors, with a specialization in managing government contracts and grants. A gifted communicator, Beyer is a sought after speaker due to his ability to deliver complex information about technology products and services in a way that is easily understood. He is a decorated combat veteran of the Global War on Terror, the international military campaign that started following the 9/11 terrorist attacks on the United States. In 2004, he constructed and rehabilitated over 20 schools, clinics, and water treatment plants for the Iraqi people using local contractors. Beyer also holds a Bachelor of Science, a Masters in Business Administration, a Ph.D. in Organization and Management, and a Project Management Professional (PMP) certification.&lt;br /&gt;
*'''BIO:''' Abe Megahed is a web developer for the Software Assurance Marketplace. In previous lifetimes, he has been a computer graphics researcher, a game programmer, a programming language and compiler nerd, a dot com company founder, a creator of helicopter simulations, and a developer of 3D simulations for NASA astronaut crew training.&lt;br /&gt;
*'''WHEN:'''  Tuesday, February 3rd 2015&lt;br /&gt;
*'''WHERE:''' Room PK-1140 - UQAM Pavillon Président-Kennedy, 201 Avenue du Président-Kennedy  J2X 3Y7&lt;br /&gt;
*'''REGISTRATION:''' https://owaspmtlswamp2015.eventbrite.ca&lt;br /&gt;
*'''WEBCAST:''' https://www.youtube.com/watch?v=p4_vjufcB6Q&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/getting-to-know-the-software-assurance-marketplace-swamp-by-pat-beyer&lt;br /&gt;
&lt;br /&gt;
*'''ACADEMIC PARTNER:''' AGEEI-UQAM - http://www.ageei.org/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Welcome speech by Chapter Leader (Jonathan Marcil)&lt;br /&gt;
  18:30-20:00 Main session: Getting to Know the Software Assurance Marketplace&lt;br /&gt;
  20:00-...   End of the meeting&lt;br /&gt;
&lt;br /&gt;
[[Image:SWAMP-Logo-Final-Med.png|300px|link=https://continuousassurance.org/]]&lt;br /&gt;
[[Image:Ageeilogo.jpg|200px|link=http://www.ageei.org/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - 4 décembre - Malware côté serveur — évolution, méthodes d’opération et forensic Linux ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/lo8WDl-WQ3E]] [https://youtu.be/lo8WDl-WQ3E Watch the conference / Regarder la conférence] &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/malware-cote-serveur-par-marc-etienne-m-dot-leveille]] [https://speakerdeck.com/owaspmontreal/malware-cote-serveur-par-marc-etienne-m-dot-leveille See the slides / Voir la présentation] &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''PRÉSENTATEUR PRINCIPAL:''' Marc-Etienne M.Léveillé&lt;br /&gt;
*'''RÉSUMÉ:''' Les logiciels malveillants ciblant les serveurs ont évolué. Ils sont utilisés par des groupes de cybercriminels organisés dans le but de faire du profit via des redirections web et l’envoie de pourriels. La présentation portera sur Opération Windigo, une opération malveillante qui a affecté plus de 25 000 serveurs dans le monde. Après une brève description des composantes de Windigo, nous verrons comment les opérateurs déploient leurs logiciels malveillants et surveille leur réseau de serveurs infectés. Des trucs pratiques pour faire de la forensics sur des systèmes Linux seront donnés. Cette présentation est une suite à la présentation &amp;quot;Linux/Cdorked: Server side malware&amp;quot;, donnée par Olivier Bilodeau à OWASP Montréal en 2013. La présentation sera en français avec des diapositives en anglais (aka Montreal-style).&lt;br /&gt;
*'''BIO:''' Marc-Etienne est un chercheur en logiciel malveillant chez ESET depuis 2012. Il se spécialise dans les logiciels malveillants qui s’attaquent à des plateformes inhabituelles comme aux produits fruités et aux oiseaux nordiques. Dernièrement, il passe beaucoup de son temps à faire la rétro-ingénierie de logiciels malveillants sur des serveurs Linux et s’intéresse à leurs méthodes d’opération. Il adore participer de façon collégiale aux CTFs avec ses amis les CISSP Groupies et jouer de la clarinette. Il tweet très peu à @marc_etienne_.&lt;br /&gt;
*'''QUAND:''' 4 décembre 2014 à 18h00&lt;br /&gt;
*'''OÙ:''' Local M-1510, Polytechnique Montréal, 2900 Boulevard Edouard-Montpetit&lt;br /&gt;
*'''INSCRIPTION:''' https://www.eventbrite.ca/e/owasp-montreal-4-decembre-malware-cote-serveur-evolution-methodes-doperation-et-forensic-linux-tickets-14635313617&lt;br /&gt;
*'''ÉQUIPE ACADÉMIQUE:''' Polyhack - http://polyhack.org/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
&lt;br /&gt;
 18:00-18:30 Réseautage&lt;br /&gt;
 18:30-18:35 Mot de bienvenue par le leader du chapitre (Jonathan M.)&lt;br /&gt;
 18:35-19:30 Présentation principale : Malware côté serveur&lt;br /&gt;
 19:30-20:00 Période de questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Polyhacklogonoirpetit.png|200px|link=http://polyhack.org/]]&lt;br /&gt;
[[Image:LogoPolytechnique.gif|link=http://www.polymtl.ca/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - October 23rd - XXE : À l’assaut des analyseurs XML ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/MZviLB9-42E]] [https://youtu.be/MZviLB9-42E Watch the conference / Regarder la conférence] &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/xxe-a-lassaut-des-analyseurs-xml-par-philippe-arteau]] [https://speakerdeck.com/owaspmontreal/xxe-a-lassaut-des-analyseurs-xml-par-philippe-arteau See the slides / Voir la présentation] &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''PRÉSENTATEUR PRINCIPAL:''' Philippe Arteau&lt;br /&gt;
*'''RÉSUMÉ:''' L'utilisation d’XML est fortement répandue. Le format est utilisé pour des fichiers de configuration, pour des métadonnées, pour des documents textes, et bien plus. La prise en charge de fichiers XML n’est pas sans risque. La plupart des analyseurs XML ne sont pas sécuritaires par défaut pour le traitement de fichier externe. Cette présentation fera un survol des vulnérabilités de type « Xml eXternal Entity » et de l’étendue des risques pour différents langages de programmation. Plusieurs démonstrations sont prévues.&lt;br /&gt;
*'''BIO:''' Philippe est conseiller en sécurité applicative pour le Groupe Technologies Desjardins. Au quotidien, il s’occupe d’effectuer des tests d’intrusions et des revues de code. Il a découvert des vulnérabilités importantes dans plusieurs logiciels populaires incluant Google Chrome, DropBox, ESAPI et Jira.&lt;br /&gt;
*'''QUAND:'''  23 Octobre 2014 à 18h00&lt;br /&gt;
*'''OÙ:''' École de Technologie Supérieure Local A-3230, 1100 Rue Notre-Dame Ouest, Montréal, QC H3C 1K3&lt;br /&gt;
*'''INSCRIPTION:''' http://www.eventbrite.ca/e/owasp-montreal-23-octobre-xxe-a-lassaut-des-analyseurs-xml-tickets-13426881163&lt;br /&gt;
*'''PARTENAIRE ACADÉMIQUE:''' ETS - DCI http://dciets.com/&lt;br /&gt;
*'''PROGRAMME:''' &lt;br /&gt;
&lt;br /&gt;
 18:00-18:30 Réseautage&lt;br /&gt;
 18:30-18:45 Mot de bienvenue&lt;br /&gt;
 18:45-19:45 Présentation principale - &amp;quot;À l’assaut des analyseurs XML&amp;quot; Philippe Arteau&lt;br /&gt;
 19:45-20:00 Période de questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Blason_dci.png‎‎‎|150px|link=http://dciets.com/]]&lt;br /&gt;
[[Image:ETS-rouge-devise-impr-fond_transparent.png|150px|link=http://www.etsmtl.ca/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - July 24th - Web security for DevOps: the glory is in the headers ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/6bp1NCLT-YQ]] [https://youtu.be/6bp1NCLT-YQ Watch the conference / Regarder la conférence] &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/web-security-for-devops-the-glory-is-in-the-headers-by-jonathan-marcil]] [https://speakerdeck.com/owaspmontreal/web-security-for-devops-the-glory-is-in-the-headers-by-jonathan-marcil See the slides / Voir la présentation] &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Jonathan Marcil&lt;br /&gt;
*'''ABSTRACT:''' DevOps is a buzzword which can be easily demystified: in essence it is a process which aims to combine the development and system administration process into one; Operations. As developers become responsible for server setup, security counter measures are evolving as well. The line between server configuration and application behaviour has been blurred. In this talk we will cover some HTTP headers in regards to security such as CORS, CSP and HSTS. We will demonstrate several forms of attack, and how they can (should) be countered.&lt;br /&gt;
*'''BIO:''' Jonathan is devoted to security and specialized in Web application security.  His main occupation is consulting in Web security, but deep down he is a developer with a agnostic vision of programming languages. He has a diploma in Software Engineering from Ecole de Technologie Superieure and more than 10 years of experience in Information Technology and Security.&lt;br /&gt;
*'''WHEN:'''  At noon on July 24th 2014&lt;br /&gt;
*'''WHERE:''' 75 Queen Street, office 3100, Montreal, QC H3C 2N6&lt;br /&gt;
*'''REGISTRATION:''' You can join us on site for a pizza slice but this is mainly an online event. Contact jonathan.marcil@owasp.org.&lt;br /&gt;
*'''WEBCAST:''' https://www.youtube.com/watch?v=6bp1NCLT-YQ&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/web-security-for-devops-the-glory-is-in-the-headers-by-jonathan-marcil&lt;br /&gt;
*'''EVENT SPONSOR:''' Pheromone http://www.pheromone.ca/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  12:00-12:10 Welcome and quick OWASP introduction&lt;br /&gt;
  12:10-13:10 Main presentation - &amp;quot;Web security for DevOps: the glory is in the headers&amp;quot; Jonathan Marcil&lt;br /&gt;
  13:10-... Open discussion and questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Logo-phero.gif‎|link=http://www.pheromone.ca/]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - June 18th - Gaps in the Clouds ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/gaps-in-the-clouds-by-robert-fritz]] [https://speakerdeck.com/owaspmontreal/gaps-in-the-clouds-by-robert-fritz See the slides / Voir la présentation] &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Robert Fritz&lt;br /&gt;
*'''ABSTRACT:''' Cloud technology offers agility and scaling, and a chance to break away from legacy IT choices.  Unfortunately, skipping traditional IT activities often results in poorly patched systems, out of date firewalls, and overprovisioned entitlements wielded by admins whose “day job” is development.  Boundaries of accountability and responsibility amongst cloud providers and consumers are confusing, vague, and shift, making security difficult to manage.  In such an environment, a “BP-spill” event, where cost wins over safely safety, is likely.  This talk will dive down into the cracks between the layers of cloud, and share some of the exciting dirt we have seen and expect to see in coming years.”&lt;br /&gt;
*'''BIO:''' Robert Fritz has been practicing security his entire career. Rob started as an Air Force lieutenant at Langley AFB and later at the Pentagon in Washington DC, building and managing classified networks. Finding he was getting too far from technology after a brief stint flying, he left the military to get back to the tech, and built security tools for HP in their HP-Unix lab.  Over time he found himself in more and more security design discussions, so co-authored HP’s Commercial Application Threat Analysis Methodology, building an internal consulting practice at HP.  This quantitative approach, led to two pending patents, an external-facing consulting practice, and his contributions to NIST IR-7502, the Common Configuration Scoring System (CVSS follow-on).  He is the former lead editor for the Center for Internet Security’s HP-UX Benchmark, and current lead for the Android Benchmark.  Robert now works for Morgan Stanley as global head of the Strategic Consulting team in the Security Architecture group, and leads the team’s cloud and social-media security practices.&lt;br /&gt;
*'''WHEN:''' June 18th 2014&lt;br /&gt;
*'''WHERE:''' 700 Rue Wellington, Floor 2, Montreal, QC H3C 3S4&lt;br /&gt;
*'''REGISTRATION:''' http://owaspmtl18junems.eventbrite.ca&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/gaps-in-the-clouds-by-robert-fritz&lt;br /&gt;
*'''EVENT SPONSOR:''' Morgan Stanley http://www.morganstanley.com/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:30 Networking and Morgan Stanley Hosted Pizza and Soft Drinks&lt;br /&gt;
  18:30-18:45 OWASP Chapter &amp;amp; Morgan Stanley Welcome&lt;br /&gt;
  18:45-19:45 Main presentation - &amp;quot;Gaps in the Clouds&amp;quot; Robert Fritz&lt;br /&gt;
  19:45-20:00 Open discussion and questions&lt;br /&gt;
  20:00-...   Optional, informal networking at Aziatic - 626 rue Marguerite-d'Youville, Montréal, QC H3C 1W7&lt;br /&gt;
&lt;br /&gt;
[[Image:Morgan_Stanley_Historical_Logo.png|link=http://www.morganstanley.com/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - May 26th - Récapitulatif des challenges NorthSec ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/P8_V3RI1Ru4]] [https://youtu.be/P8_V3RI1Ru4 Watch the conference / Regarder la conférence] &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''PRÉSENTATEUR PRINCIPAL:''' Laurent Desaulniers&lt;br /&gt;
*'''RÉSUMÉ:''' Solutions de la compétition en sécurité NorthSec 2014 sur les sujets de  XXE + SSRF, WAF Bypass, Xpath Injection, DOM Injection, HTTP Only Flag bypass et contournement de captchas. Une bonne façon d'apprendre sur ces failles que vous étiez ou non un participant de la compétition.&lt;br /&gt;
*'''MESSAGE DU PRÉSENTATEUR:''' Vous voyez Rao dans votre soupe? Vous voulez une solution pour un XSS avec des cookies http only? Les captchas illisibles sont un problème? Assistez à la présentation de l'OWASP!&lt;br /&gt;
*'''BIO:''' Laurent Desaulniers est un passionné de sécurité informatique. Il a présenté au Hackfest, au colloque RSI, à OWASP et est challenge designer à NorthSec. M. Desaulniers détient les certifications CISSP, CISM, CISA et OSCP.&lt;br /&gt;
*'''QUAND:''' 26 mai à 18h00&lt;br /&gt;
*'''OÙ:''' Local PK-1140 - Pavillon Président-Kennedy 201, Avenue du Président-Kennedy, J2X 3Y7&lt;br /&gt;
*'''INSCRIPTION:''' https://www.eventbrite.ca/e/owasp-montreal-26-mai-recapitulatif-des-challenges-northsec-tickets-11724413035&lt;br /&gt;
*'''WEBCAST:''' https://www.youtube.com/watch?v=P8_V3RI1Ru4&lt;br /&gt;
*'''ÉQUIPE ACADÉMIQUE''' AGEEI-UQAM - http://www.ageei.org/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
&lt;br /&gt;
 18:00-18:30 Réseautage&lt;br /&gt;
 18:30-18:35 Mot de bienvenue par le leader du chapitre (Jonathan M.)&lt;br /&gt;
 18:35-19:30 Présentation principale : Récapitulatif des challenges NorthSec&lt;br /&gt;
 19:30-20:00 Période de questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Ageeilogo.jpg|200px|link=http://www.ageei.org/]]&lt;br /&gt;
[[Image:2397_nsec_Logo_500-250.png|200px|link=http://nsec.io/]]&lt;br /&gt;
&lt;br /&gt;
== Networking with infosec communities - April 21st ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''RÉSUMÉ:''' En collaboration avec Montréhack, mtlsec et NorthSec, nous organisons une soirée réseautage dans un pub du centre-ville. Du plaisir garanti avec les membres de plusieurs communautés infosec de Montréal!&lt;br /&gt;
&lt;br /&gt;
*'''ABSTRACT:''' In collaboration with Montréhack, mtlsec and NorthSec, we are organizing a networking evening in a pub downtown. Fun guaranteed with the other security communities in Montreal!&lt;br /&gt;
&lt;br /&gt;
*'''QUAND:''' 21 Avril 2014&lt;br /&gt;
*'''WHEN:''' April 21st 2014&lt;br /&gt;
&lt;br /&gt;
*'''OÙ/WHERE:''' BENELUX - Brasserie Artisanale 245 Sherbrooke St W Montreal, QC H2X 1X7&lt;br /&gt;
&lt;br /&gt;
*'''INSCRIPTION/REGISTRATION:''' https://www.eventbrite.ca/e/montrehack-avril-april-northsec-pre-party-tickets-11232307133&lt;br /&gt;
&lt;br /&gt;
*'''PARTENAIRES/PARTNERS:''' Montréhack http://montrehack.ca/ - mtlsec http://blog.mtlsec.com/ - NorthSec https://www.nsec.io/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
  18:00-21:00 Networking&lt;br /&gt;
  21:00-23:59 Remember to drink responsibly!&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - March 27th - Panel Compétition en sécurité NorthSec ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Présentation sous forme de panel - venez poser vos questions!'''&lt;br /&gt;
&lt;br /&gt;
*'''RÉSUMÉ:''' Les compétitions de type Capture the Flag (CTF) sont un moyen pour les professionnels et amateurs de sécurité informatique de mettre leurs talents à l'épreuve. NorthSec est une compétition Montréalaise annuelle en sécurité appliquée, qui aura lieu cette année au Marché Bonsecours de Montréal le 25, 26 et 27 avril prochain. Elle vise à augmenter le niveau technique des professionnels de la sécurité au Québec, ainsi que de permettre à ses acteurs les plus talentueux de se démarquer.&lt;br /&gt;
*'''DÉTAILS:''' Le panel de jeudi, sous la forme d'un échange convivial entre les organisateurs de l'évènement et de ses participants, abordera des thèmes variés comme l'écriture de bon défis, l'infrastructure, la logistique, les inattendus, un bilan de 2013 et tout ça en passant par de savoureuses annecdotes (on l'espère). Venez en grand nombre toucher à ces légendes de la scène infosec montréalaise!&lt;br /&gt;
*'''PANÉLISTES:''' Gabriel Tremblay, François Proulx, Laurent Desaulniers, Stéphane Graber&lt;br /&gt;
*'''ANIMATEUR:''' Olivier Bilodeau&lt;br /&gt;
*'''QUAND:''' 27 mars 2014&lt;br /&gt;
*'''OÙ:''' Salle M-1510, École Polytechnique de Montréal, 2500 chemin de Polytechnique, Montréal (Québec) H3T 1J4, pavillon Lassonde&lt;br /&gt;
*'''INSCRIPTION:''' https://www.eventbrite.ca/e/owasp-montreal-27-mars-panel-competition-en-securite-northsec-tickets-10918436337&lt;br /&gt;
*'''ÉQUIPE ACADÉMIQUE:''' Polytechnique - Polyhack http://polyhack.org/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Mot de bienvenue par le leader du chapitre (Jonathan Marcil)&lt;br /&gt;
  18:30-20:00 Présentation principale : Panel NorthSsec&lt;br /&gt;
&lt;br /&gt;
[[Image:Polyhack.png‎‎|200px|link=http://polyhack.org/]]&lt;br /&gt;
[[Image:LogoPolytechnique.gif|link=http://www.polymtl.ca/]]&lt;br /&gt;
[[Image:2397_nsec_Logo_500-250.png|200px|link=http://nsec.io/]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - February 25th - Proven Strategies for Web Application Security ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/proven-strategies-for-web-application-security-by-justin-c-klein-keane]] [https://speakerdeck.com/owaspmontreal/proven-strategies-for-web-application-security-by-justin-c-klein-keane See the slides / Voir la présentation] &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Justin C. Klein Keane&lt;br /&gt;
*'''ABSTRACT:''' The rising dominance of the web as an application delivery platform has focused attacker attention squarely on the security of dynamic web applications. Application security is a complex, and shifting, field. Learn about tested and successful techniques to build safer applications, find flaws before they become vulnerabilities, and deploy applications that can detect, and resist attack.&lt;br /&gt;
*'''BIO:''' Justin C. Klein Keane is a security engineer and chapter leaders of OWASP in Philadelphia. For over a decade Justin has worked as a trainer, coder, and exploit developer. Justin is currently writing a book for NoStarch Press on hacking, speaks regularly at conferences, holds a masters degree in information technology from the University of Pennsylvania and is credited with hundreds of application vulnerability discoveries.&lt;br /&gt;
*'''WHEN:''' February 25th 2014&lt;br /&gt;
*'''WHERE:''' Ecole de technologie superieure, 1100 Notre-Dame Street West, Montreal, Room: A-1150&lt;br /&gt;
*'''REGISTRATION:''' http://owaspmtljan2014.eventbrite.ca&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/proven-strategies-for-web-application-security-by-justin-c-klein-keane&lt;br /&gt;
*'''ACADEMIC PARTNER:''' ETS - DCI http://dciets.com/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Welcome speech by Chapter Leader (Jonathan Marcil)&lt;br /&gt;
  18:30-20:00 Main session and open discussion: Proven Strategies for Web Application Security&lt;br /&gt;
  20:00-...   End of the meeting in a pub&lt;br /&gt;
&lt;br /&gt;
[[Image:Dciets.png‎‎‎|100px|link=http://dciets.com/]]&lt;br /&gt;
[[Image:Logo_ets.png|link=http://www.etsmtl.ca/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - January 28th - Latest trends in Mobile Security ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/8qPyKj4FKgY]] [https://youtu.be/8qPyKj4FKgY Watch the conference / Regarder la conférence] &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/latest-trends-in-mobile-security-by-francois-proulx]] [https://speakerdeck.com/owaspmontreal/latest-trends-in-mobile-security-by-francois-proulx See the slides / Voir la présentation] &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Francois Proulx&lt;br /&gt;
*'''ABSTRACT:''' Last AppSecUSA 2013 had a great line up of talks, especially regarding mobile applications. This session will be covering all the hottest presentations about mobile security by doing an overview from what see saw at AppSecUSA, all with some slides and snippets of presentations that was recorded at the event. Discussion will be encouraged within the audience as this will be more a dynamic event than a regular talk.&lt;br /&gt;
*'''BIO:''' François Proulx is a senior mobile application developer who has worked on dozens of iOS applications since the very beginning of the Apple iOS platform. Over the past few years he has switched his focus to security. He spends a lot of his free time participating in Capture the Flag events (CTFs) and organizing the NorthSec security competition.&lt;br /&gt;
*'''WHEN:''' January 28th 2014&lt;br /&gt;
*'''WHERE:''' UQAM Room PK-1705, Pavillon Président-Kennedy (the big boat at Place des Arts) - 201 Avenue du Président-Kennedy  J2X 3Y7&lt;br /&gt;
*'''REGISTRATION:''' http://owaspmtl-mobilesecurity.eventbrite.ca&lt;br /&gt;
*'''SLIDES/CONTENT:''' [http://www.youtube.com/playlist?list=PLQtB2ug5xmvaQ9jeRWV53-F_T555GQfhW YouTube playlist]&lt;br /&gt;
*'''SPONSOR:''' Academic partner AGEEI-UQAM - http://www.ageei.org/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Welcome speech by Chapter Leader (Jonathan M.)&lt;br /&gt;
  18:30-20:00 Main session and open discussion: Mobile Security&lt;br /&gt;
  20:00-...   End of the meeting in a pub&lt;br /&gt;
&lt;br /&gt;
[[Image:Ageeilogo.jpg|200px|link=http://www.ageei.org/]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Presentations For Download  ====&lt;br /&gt;
&lt;br /&gt;
[http://www.owasp.org/images/0/0d/20100209mstechdaysowaspasvssgiv01-12657916463819-phpapp02.ppt OWASP ASVS] by Sebastien Gioria (09/03/2010) &lt;br /&gt;
&lt;br /&gt;
[http://www.ph-il.ca/slides/afup__authetification_forte.pdf Authentification Forte] by Philippe Gamache (02/02/2010) &lt;br /&gt;
&lt;br /&gt;
[http://www.opensamm.org/downloads/OpenSAMM-1.0.ppt Software Assurance Maturity Model (OpenSAMM)] by Pravir Chandra (03/11/2009) &lt;br /&gt;
&lt;br /&gt;
[http://www.owasp.org/images/d/de/Owasp-montreal-sept-17h-2009-justin-foster.pdf Crossing the Border – Javascript Exploits] by Justin Foster (17/09/2009) &lt;br /&gt;
&lt;br /&gt;
[http://www.owasp.org/images/c/c2/ALaughRIAt.pdf A Laugh RIAt] by Rafal Los (07/04/2009) &lt;br /&gt;
&lt;br /&gt;
[https://www.owasp.org/images/e/eb/OWASP-Montreal-24022009-RobLabbe.pptx Microsoft Security Development Lifecycle for IT] by Rob Labbe (24/02/2009) &lt;br /&gt;
&lt;br /&gt;
[https://www.owasp.org/images/3/39/OWASP-Montreal-24022009-EN.pdf OWASP Goal and Top Ten 2007 for Managers - French version] by Benoit Guerette (24/02/2009)&lt;br /&gt;
&lt;br /&gt;
Newer presentations are available on [https://speakerdeck.com/owaspmontreal Speaker Deck]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Circle_owasp_logo_nowhitebackground.png|200px]]&lt;br /&gt;
&lt;br /&gt;
= OWASP Foundation / Mission OWASP    = &lt;br /&gt;
OWASP Foundation ([https://docs.google.com/a/owasp.org/presentation/d/10wi1EWFCPZwCpkB6qZaBNN8mR2XfQs8sLxcj9SCsP6c/edit?usp=sharing Overview Slides]) is a professional association of [[Membership | global members]] and is open to anyone interested in learning more about software security. Local chapters are run independently and guided by the [[Chapter_Leader_Handbook]].  As a [[About_OWASP | 501(c)(3)]] non-profit professional association your support and sponsorship of any meeting venue and/or refreshments is tax-deductible. Financial contributions should only be made online using the authorized online chapter donation button.  To be a &amp;lt;b&amp;gt;SPEAKER&amp;lt;/b&amp;gt; at ANY OWASP Chapter in the world simply review the [[Speaker_Agreement | speaker agreement]] and then contact the local chapter leader with details of what OWASP PROJECT, independent research or related software security topic you would like to present on.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;La fondation OWASP est une [https://www.owasp.org/index.php/Membership association de professionnels] et elle est ouverte à tout intervenant intéressé à en apprendre davantage sur la sécurité applicative. Les chapitres locaux (dont celui de Montréal) sont gérés de façon indépendante et selon un [https://www.owasp.org/index.php/Chapter_Leader_Handbook manuel de directives à respecter].   &lt;br /&gt;
Toute contribution financière au chapitre peut être faite en ligne en utilisant l’icône prévu à cet effet. Pour être conférencier au sein de n’importe quel chapitre à l’échelle mondiale, vous n’avez qu’à prendre connaissance du document [https://www.owasp.org/index.php/Speaker_Agreement &amp;quot;entente avec les conférenciers – speaker agreement&amp;quot;] et à joindre le responsable du chapitre Montréal avec un descriptif du sujet que vous aimeriez aborder et s’il est relié à un projet OWASP, à de la recherche indépendante ou encore le sujet en particulier, concernant la sécurité applicative, que vous souhaitez aborder.&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== [[Image:Circle_owasp_logo_nowhitebackground.png|128px]] Montreal OWASP Team == &lt;br /&gt;
&lt;br /&gt;
Scope of the team is to discuss and plan local activities and meetings &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Chapter Leaders ===&lt;br /&gt;
&lt;br /&gt;
* [mailto:anne.gauthier@owasp.org Anne Gauthier], President/Présidente&lt;br /&gt;
* [mailto:michel.bourque{at}owasp.org Michel Bourque], Chapter coordinator and marketing manager/Coordination et Marketing&lt;br /&gt;
* [mailto:hugo.genesse(at)owasp.org Hugo Genesse], Web content and production manager/Site internet et Production &lt;br /&gt;
* [mailto:olivier.arteau(at)owasp.org Olivier Arteau], Logistic manager/Logistique&lt;br /&gt;
&lt;br /&gt;
==== Chapter leader history ====&lt;br /&gt;
*2008-2010 - Benoit Guerette, founder and chapter leader&lt;br /&gt;
*2011-2012 - Philippe Gamache, chapter leader (vice chapter-leader since 2010)&lt;br /&gt;
*2013-2015 - Jonathan Marcil, chapter leader&lt;br /&gt;
*2016-... - Anne Gauthier, Michel Bourque, Marius Popescu, Hugo Genesse, Olivier Arteau&lt;br /&gt;
&lt;br /&gt;
==== Old board members ====&lt;br /&gt;
*Philippe Pépos Petitclerc&lt;br /&gt;
*Michael Robillard&lt;br /&gt;
*Benoit Guerette (logistics 2015)&lt;br /&gt;
*Alexandre Rimthong&lt;br /&gt;
*Mathieu Binette&lt;br /&gt;
*Sean Coates&lt;br /&gt;
*Jean-Marc Robert&lt;br /&gt;
*Philippe Blondin&lt;br /&gt;
*Benoit Guerette (founder)&lt;br /&gt;
*Laurent Desaulniers&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;headertabs/&amp;gt; &lt;br /&gt;
__NOTOC__ &lt;br /&gt;
[[Category:Canada]]&lt;/div&gt;</summary>
		<author><name>Svieg</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=File:Security_testing_hybrid_approach-r_4.jpg&amp;diff=232277</id>
		<title>File:Security testing hybrid approach-r 4.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=File:Security_testing_hybrid_approach-r_4.jpg&amp;diff=232277"/>
				<updated>2017-08-14T20:56:51Z</updated>
		
		<summary type="html">&lt;p&gt;Svieg: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Svieg</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=Montr%C3%A9al&amp;diff=232276</id>
		<title>Montréal</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=Montr%C3%A9al&amp;diff=232276"/>
				<updated>2017-08-14T20:25:23Z</updated>
		
		<summary type="html">&lt;p&gt;Svieg: Adds a lot of details to the conferences we did this year and also adds the one that happened in June&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Welcome &amp;amp; Bienvenue to the OWASP Montréal chapter ==&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:OWASP-Montreal-Logo.png|Logo OWASP Montréal]]&lt;br /&gt;
&lt;br /&gt;
The OWASP Foundation was established in 2001 as an open community and software security resource. Since then, OWASP has grown to be globally recognized as a credible source for application security standards. &amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
OWASP is an open community dedicated to enabling organizations to conceive, develop, acquire, operate, and maintain applications that can be trusted. All of the OWASP tools, documents, forums, and chapters are free and open to anyone interested in improving application security. We advocate approaching application security as a people, process, and technology problem because the most effective approaches to application security include improvements in all of these areas. &amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
OWASP is open to anyone. Anyone can attend OWASP's vendor agnostic local chapter meetings, participate in regional and global conferences, and contribute to the many OWASP projects. And anyone can start a new project, form a new chapter, or lend their expertise to help an OWASP Global Committee.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt;On parle français aussi ! Le chapitre de Montréal organise plusieurs activités gratuites afin de partager les connaissances en sécurité applicative avec la communauté de développeurs et gestionnaires. Suivez-nous sur les réseaux sociaux pour connaître les dates des conférences du midi et des workshops !&amp;lt;/b&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Top documentation from OWASP includes: &lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/index.php/Top_10_2013-Top_10 OWASP TOP 10 : The Ten Most Critical Web Application Security Risks]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/images/3/33/OWASP_Application_Security_Verification_Standard_3.0.1.pdf OWASP ASVS : Application Security Verification Standard]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/images/5/52/OWASP_Testing_Guide_v4.pdf OWASP Testing Guide : Penetration Testing Framework ]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/images/7/78/OWASP_AlphaRelease_CodeReviewGuide2.0.pdf OWASP Code Review Guide : Source Code Analysis Framework ]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/index.php/OWASP_Cheat_Sheet_Series OWASP Cheat Sheet : Best practices guidelines for developers ]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org OWASP Global ]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Chapter Leaders / Responsables du chapitre ===&lt;br /&gt;
&lt;br /&gt;
* [mailto:anne.gauthier@owasp.org Anne Gauthier], President/Présidente&lt;br /&gt;
* [mailto:michel.bourque{at}owasp.org Michel Bourque], Chapter coordinator and marketing manager/Coordination et Marketing&lt;br /&gt;
* [mailto:hugo.genesse(at)owasp.org Hugo Genesse], Web content and production manager/Site internet et Production &lt;br /&gt;
* [mailto:olivier.arteau(at)owasp.org Olivier Arteau], Logistic manager/Logistique&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Special thanks to / Remerciements : &lt;br /&gt;
* Simon Lacasse, Web content / Site internet&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;b&amp;gt; Reach our chapter / Joindre le chapitre &amp;lt;/b&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Follow OWASP's Montreal chapter's activities through social medias, register to events, watch the previous presentations and more! &lt;br /&gt;
&lt;br /&gt;
Suivez les activités du chapitre OWASP Montréal via les réseaux sociaux, inscrivez-vous aux activités, visualisez les anciennes présentations et plus encore! &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;b&amp;gt;[http://lists.owasp.org/mailman/listinfo/owasp-montreal Click here] to join the local chapter mailing list.&lt;br /&gt;
&amp;lt;br/&amp;gt;[http://lists.owasp.org/mailman/listinfo/owasp-montreal Inscrivez-vous ici] à la liste de courriels du chapitre afin de recevoir les dernières nouvelles!&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Want to be part of the community ? &lt;br /&gt;
Devenez membre de notre communauté ! &lt;br /&gt;
[https://www.owasp.org/index.php/Membership_Map Click here / Cliquer ici]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Eb_press_little.gif‎|OWASP Montreal Eventbrite|link=http://owaspmontreal.eventbrite.ca/]] &lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[Image:Yt-brand-standard-logo-630px.png‎|128px|YouTube OWASP Montreal Channel|link=http://www.youtube.com/owaspmontreal]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]   &lt;br /&gt;
[[Image:Speakerdecklogo.png‎|Slides of OWASP Montreal on SpeakerDeck |link=https://speakerdeck.com/owaspmontreal]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Twitter-bird-cropped-onwhite.png|@owaspmontreal on Twitter|link=https://twitter.com/owaspmontreal]]&lt;br /&gt;
[[Image:FacebookSquareLogo.png|OWASP Montreal Facebook page|link=https://www.facebook.com/owasp.montreal]]&lt;br /&gt;
[[Image:LinkedinSquareLogo.png|OWASP Montreal on LinkedIn|link=https://www.linkedin.com/groups/1379007/profile]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
&lt;br /&gt;
== Sponsorship &amp;amp; Membership / Commandite &amp;amp; Adhésion ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Btn_donate_SM.gif|link=http://www.regonline.com/donation_1044369]] to this chapter or become a local chapter supporter.&lt;br /&gt;
&lt;br /&gt;
Or consider the value of [[Membership | Individual, Corporate, or Academic Supporter membership]]. Ready to become a member? [[Image:Join_Now_BlueIcon.JPG|75px|link=https://myowasp.force.com/]]&lt;br /&gt;
&lt;br /&gt;
[http://www.regonline.com/donation_1044369 Donnez] au chapitre ou devenez commanditaire du chapitre local! &lt;br /&gt;
&lt;br /&gt;
[https://myowasp.force.com/ Devenez membre !] Pour en savoir davantage sur les avantages d’une adhésion individuelle, corporative ou en tant qu’institution d’enseignement, [https://www.owasp.org/index.php/Membership cliquez ici]. &lt;br /&gt;
&lt;br /&gt;
[[Category:OWASP Chapter]]&lt;br /&gt;
&lt;br /&gt;
== Chapter Supporters / Commanditaires du chapitre ==&lt;br /&gt;
&lt;br /&gt;
[https://www.owasp.org/images/9/91/OWASP_Membership_Flyer_Montreal.png All details available here / Pour tous les détails ] [[File:Chapter-supporter-owasp-montreal.png|200px|link=https://www.owasp.org/images/9/91/OWASP_Membership_Flyer_Montreal.png]] &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Platinum / Platine ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Gosecure-2.png|GoSecure|link=http://www.gosecure.ca/]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[File:Desjardins2-400x400.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Gold / Or ===&lt;br /&gt;
&lt;br /&gt;
[[Image:ImmunioLogo.jpg|Immunio|link=https://www.immun.io/]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Lunch &amp;amp; Learn / Workshops 2017 =&lt;br /&gt;
&lt;br /&gt;
== Cas d'attaques vécus : Internet des objets (IOT) - Attaques DDoS ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Cas_dattaques_vecus-r.jpg  ]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 June 19th 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
Pour clore la saison printanière 2017, OWASP Montréal est fier d'accueillir au Midi Conférence, M. Christian Shink qui fera un survol de cas d'attaques vécus, des techniques utilisées et des acteurs impliqués dans ces attaques.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
L'incorporation généralisée de dispositifs «intelligents» dans les objets de la vie de tous les jours modifie la façon dont les gens et les machines interagissent les uns avec les autres. Cette incorporation offre une promesse d'une meilleure qualité de vie, une meilleure efficacité. En contrepartie, leur déploiement introduit également des vulnérabilités à la fois dans l'infrastructure qu'ils soutiennent et sur lesquels ils comptent, ainsi que dans les processus qu'ils guident. Que ce soit au niveau applicatif ou des infrastructures, ces vulnérabilités sont exploitées par des acteurs malicieux pour générer des attaques de déni de service massives et sophistiquées. Nous tenterons également de tirer des leçons afin de tenter de minimiser ce type d'attaques dans le futur.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Christian Shink possède plus d’une dizaine d’années d’expérience en développement et sécurité d’applications. Avant de se joindre à Radware, Christian était à l’emploi d'une firme conseil où il a conseillé de nombreuses entreprises, dont de grandes banques américaines et Casinos. Il détient une certification CSSLP et est membre de l'ordre des ingénieurs du Québec.&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== HOW TO! Threat Modeling Toolkit ==&lt;br /&gt;
&lt;br /&gt;
[[Image:OWASPMtl-JonathanMarcil-1.jpg]]&lt;br /&gt;
[[Image:OWASPMtl-JonathanMarcil-3.jpg]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/threat-modeling-toolkit]] [https://speakerdeck.com/owaspmontreal/threat-modeling-toolkit See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 May 23rd, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Shopify Montreal&lt;br /&gt;
&lt;br /&gt;
Threat Modeling is a great way to analyze security early in software development by structuring possible attacks, bad actors and countermeasures over a broad view of the targeted system. This talk will describe basic components of a threat model and how to use them effectively.&lt;br /&gt;
Threat Intelligence is where you gather knowledge about the environment and business assets to determine what are the actual threats. But how do you reconcile that with the current architecture in a useful manner?&lt;br /&gt;
The toolkit presented in this talk will enable you to systematically structure related information using graphical notations such as flow diagram and attack tree. In case you are wondering where to start in your organization, a quick lightweight risk rating methodology will also be proposed.&lt;br /&gt;
And in the end, you’ll see how we can all tie those together and get threat modeling to a point where it’s an efficient application security activity for communication. Doing this will prevent security reviews from missing important things even when chaos prevails during the realization of a project.&lt;br /&gt;
Modeling concepts will be demonstrated with an actual IoT device used as example.&lt;br /&gt;
Presentation will be done in english.&lt;br /&gt;
&lt;br /&gt;
Speaker Bio:&lt;br /&gt;
Jonathan Marcil is the former chapter leader of OWASP Montreal and is now Senior Application Security Engineer at Blizzard Entertainment in beautiful Orange County, California.&lt;br /&gt;
Jonathan has been involved with OWASP for many years and has been behind the Media Project which gathered and promoted AppSec conferences video content in the official OWASP YouTube channel. He was also part of NorthSec CTF event as a challenge designer specialized in Web and imaginative contraptions.&lt;br /&gt;
He is passionate about Application Security and enjoys architecture analysis, code review, threat modeling and debunking security tools. He holds a diploma in Software Engineering from ÉTS Montreal and has more than 15 years of experience in Information Technology and Security.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Merci à nos précieux commanditaires !&lt;br /&gt;
&lt;br /&gt;
== Security Testing: Unlocking the Benefits of a Hybrid Approach ==&lt;br /&gt;
[[Image:Security_testing_hybrid_approach-r_3.jpg    ]]&lt;br /&gt;
[[Image:Security_tessting_hybrid_approach-r_2.JPG    ]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/hybrid-approach-to-security-testing]] [https://speakerdeck.com/owaspmontreal/hybrid-approach-to-security-testing See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 April 24th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
As part of their defensive efforts, businesses commonly commission cybersecurity assessments of their web applications; with the aim of identifying any weaknesses in the security controls and ensuring a continually strong cybersecurity posture of their systems.&lt;br /&gt;
&lt;br /&gt;
The classical approach of either secure code review (white box) or penetration testing (black box) assessment have proven to be effective in securing of web applications. The new trend, however, is moving towards the combination of these two approaches; expert consensus is rapidly recognizing the advantages of using a hybrid approach. When applied properly, a hybrid approach can build on the strengths of both white and black box testing, while compensating for their individual shortcomings.&lt;br /&gt;
&lt;br /&gt;
In this presentation, we will examine the details of secure code review and penetration testing, and run demos to contrast their respective strengths and weaknesses. We will also examine why a hybrid approach can produce more complete and relevant assessment results. To conclude, we will cover proven approaches, and practical techniques, on how you can start leveraging a hybrid approach to web application assessments today.&lt;br /&gt;
&lt;br /&gt;
Anne Gauthier is an application security analyst at GoSecure. Anne is also the president of the Montreal Chapter of OWASP – the industry standard for web application security. With a penetration testing background, she specializes in secure code reviews and in helping companies to improve their software development lifecycle (SDLC) according to industry best practices. Anne is CSSLP, GWAPT and GSSP-JAVA certified. She obtained a Software Engineering bachelor’s degree from Ecole de Technologie Supérieure in Montréal and is now pursuing a Master of Engineering (MEng) degree in Information Systems Security at Concordia University. She is the author of the Project 201 Security blog.&lt;br /&gt;
&lt;br /&gt;
Merci à nos précieux commanditaires !&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;HOW-TO&amp;quot; NIGHT ! Tout sur les CTFs (Capture The Flag) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Howto_ctf.jpg]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://docs.google.com/presentation/d/1zEsCcX-Nvq8Nz0k-B1zHejCDNT2oGZx8oUBgMbvvMM0/edit#slide=id.p ]] [https://docs.google.com/presentation/d/1zEsCcX-Nvq8Nz0k-B1zHejCDNT2oGZx8oUBgMbvvMM0/edit#slide=id.p  See the slides / Voir la présentation (Laurent Desaulniers)]&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://docs.google.com/presentation/d/1c1P1d2mKe767j1Y0V9cK6De5cpnK4I7GI-ORiodbg1A/edit#slide=id.p ]] [https://docs.google.com/presentation/d/1c1P1d2mKe767j1Y0V9cK6De5cpnK4I7GI-ORiodbg1A/edit#slide=id.p  See the slides / Voir la présentation (Charles Hamilton)]&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=http://obilodeau.github.io/slides/2017-04-04_how-not-to-suck-at-ctfs/ ]] [http://obilodeau.github.io/slides/2017-04-04_how-not-to-suck-at-ctfs/  See the slides / Voir la présentation (Olivier Bilodeau)]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 April 4th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Shopify&lt;br /&gt;
&lt;br /&gt;
Cette nouvelle soirée &amp;quot;How-To&amp;quot; Night d'OWASP Montréal vise à présenter les CTFs (une compétition Capture The Flag) et aider les équipes à démarrer et à continuer à évoluer dans leurs pratique de la cyber sécurité pratique. L'objectif est d'outiller les participants en leur fournissant des ressources techniques et des contacts afin de les aider à progresser.&lt;br /&gt;
&lt;br /&gt;
Les éléments discutés seront:&lt;br /&gt;
&lt;br /&gt;
- Composition optimale d’une équipe : Fonctionnement d’une équipe de CTF et les principaux rôles (chef d’équipe, cryptographie, application web, rétro ingénierie et les causes perdues).&lt;br /&gt;
&lt;br /&gt;
- Pourquoi faire des CTFs? Discussion sur les différents styles (jeopardy, attack/defense, etc.), quels sont les problèmes fréquemments rencontrés + plusieurs anecdotes intéressantes (et drôles).&lt;br /&gt;
&lt;br /&gt;
- Trucs de Mr. Unikoder : Le créateur du fameux site ringzer0team, soit un des plus gros sites pour apprendre la résolution de problèmes de CTF (https://ringzer0team.com/) Apprenez des trucs du meilleur, sur comment débuter et interpréter un challenge web, binaire et crypto avec des trucs réels du métier.&lt;br /&gt;
&lt;br /&gt;
Matériel requis :&lt;br /&gt;
&lt;br /&gt;
    Votre légendaire enthousiasme&lt;br /&gt;
&lt;br /&gt;
Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
&lt;br /&gt;
Places limitées. Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Shopify pour l'événement.&lt;br /&gt;
&lt;br /&gt;
Présentateurs :&lt;br /&gt;
&lt;br /&gt;
Charles Hamilton, Senior Consultant chez Mandiant, FireEye, Inc.&lt;br /&gt;
&lt;br /&gt;
Olivier Bilodeau, Cybersecurity Research Lead at GoSecure&lt;br /&gt;
&lt;br /&gt;
Laurent Desaulniers, Senior Security Solution Specialist at Bell Canada&lt;br /&gt;
&lt;br /&gt;
== NorthSec - Applied Security Event ==&lt;br /&gt;
[[Image:Nsec_2017_midi_conf.jpg]]&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/northsec-applied-security-event]] [https://speakerdeck.com/owaspmontreal/northsec-applied-security-event See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 April 4th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
NorthSec: La plus grande compétition et conférence en cyber sécurité au Canada&lt;br /&gt;
&lt;br /&gt;
NorthSec est un organisme sans but lucratif qui organise une conférence et une compétition de sécurité de type &amp;quot;Capture-The-Flag&amp;quot; (CTF) et des formations. Avec plus de 400 participants présents sur le site pour la compétition, c’est la plus grande compétition du genre au monde.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
La conférence, dans sa 3e année, attire des présentateurs internationaux avec du contenu technique exclusif. L’ajout des séances de travail (workshops) devrait plaire aux plus chevronnés des binaires.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Des formations de 3 jours sont offertes avant la conférence: &amp;quot;Advanced Web Application Security&amp;quot; par Philippe Arteau et &amp;quot;Malware and Memory Forensics&amp;quot; par Michael Ligh, co-auteur des livres &amp;quot;Malware Analyst Cookbook&amp;quot; et &amp;quot;The Art of Memory Forensics&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
NorthSec est situé au Marché Bonsecours dans le Vieux-Port de Montréal au printemps du 15 au 21 mai 2017.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
La présentation couvrira:&lt;br /&gt;
&lt;br /&gt;
- Le plan pour 2017&amp;lt;br/&amp;gt;&lt;br /&gt;
- Ce qui différencie NorthSec&amp;lt;br/&amp;gt;&lt;br /&gt;
- Comment équilibrer une compétition pour les débutants et les experts&amp;lt;br/&amp;gt;&lt;br /&gt;
- Comment bâtir une infrastructure basée sur les conteneurs qui gère 50 équipes dans quelques serveurs sans qu’ils ne se partagent de machines virtuelles&amp;lt;br/&amp;gt;&lt;br /&gt;
- Comment faire du pain au levain à grande échelle&amp;lt;br/&amp;gt;&lt;br /&gt;
- Présentation de quelques défis et solutions&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Les présentateurs:&lt;br /&gt;
&lt;br /&gt;
- Gabriel Tremblay, Président, Delve Labs&amp;lt;br/&amp;gt;&lt;br /&gt;
- Olivier Bilodeau, VP Formations, Co-fondateur MontréHack, GoSecure&amp;lt;br/&amp;gt;&lt;br /&gt;
- Pierre-David Oriol, VP Conférences, Delve Labs&amp;lt;br/&amp;gt;&lt;br /&gt;
- Benoit Guérette, VP Partenaires, Desjardins&amp;lt;br/&amp;gt;&lt;br /&gt;
- Laurent Desaulniers, Tisserand de drapeaux, Bell Canada&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Merci à nos précieux commanditaires !&lt;br /&gt;
&lt;br /&gt;
== Sécurité des applications : Les fondements ==&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/securite-des-applications-les-fondements]] [https://speakerdeck.com/owaspmontreal/securite-des-applications-les-fondements See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 March 20th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
OWASP Montréal est fier d’accueillir au Midi Conférence du mois de mars, Mme Tanya Janca, Co-Leader du chapitre OWASP Ottawa et spécialiste de la sécurité applicative au sein du Gouvernement fédéral.&lt;br /&gt;
&lt;br /&gt;
La conférence « Les fondements de la sécurité des applications » sera présentée en anglais.&lt;br /&gt;
&lt;br /&gt;
Session Description : Everyone has heard about the problem; everyone is “getting hacked”. But what is the answer? From scanning your code with a vulnerability scanner to red teaming exercises, developer education programs and bug bounties, this talk will take the audience through all the possibilities of an extensive application security program, with a detailed explanation of each part.&lt;br /&gt;
&lt;br /&gt;
Bio : Tanya Janca is an application security evangelist, a web application penetration tester and vulnerability assessor, a secure code reviewer, an ethical hacker, the Co-Leader of the OWASP Ottawa chapter, and has been developing software since the late 90’s. She has worn many hats and done many things, including; Custom Apps, Ethical Hacking, COTS, Incident Response, Enterprise Architect, Project and People Management, and even Tech Support. She is currently helping the Government of Canada secure their web applications.&lt;br /&gt;
&lt;br /&gt;
Merci à notre commanditaire principal de cet événement: Ubitrak!&lt;br /&gt;
&lt;br /&gt;
== WORKSHOP ! Server Side Template Injection (SSTI) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-okiok-SSTI-r.jpg | WORKSHOP ! Server Side Template Injection (SSTI) ]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/workshop-server-side-template-injection-ssti]] [https://speakerdeck.com/owaspmontreal/workshop-server-side-template-injection-ssti See the slides / Voir la présentation]&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 22 Février 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Shopify Montréal&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
OWASP Montreal vous invite à un atelier portant sur la sécurité des applications web supportant les moteurs de template (Template Engine). Le principe de séparation entre la présentation du site (code HTML statique) et de son contenu dynamique facilite la création de documents HTML et la capacité à modifier l'apparence du site sans mélanger le traitement et le rendu de la page. L'utilisation de moteurs de template amène de nouveaux enjeux de sécurité. Les vulnérabilités de type Server Side Template Injection (SSTI) sont exploitables à travers les données (non fiables) fournies par l'utilisateur et conduisent à l'exécution de code arbitraire (RCE) sur le serveur hébergeant l'application web.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ce workshop a pour but d'introduire cette classe de vulnérabilité à travers différents cas d'implémentation (php, java, python).&lt;br /&gt;
Nous verrons comment identifier et exploiter ces vulnérabilités et de quelle manière un attaquant peut &lt;br /&gt;
s'y prendre pour exécuter du code arbitraire sur le serveur afin d'en prendre le contrôle.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Niveau : Intermédiaire&amp;lt;br/&amp;gt;&lt;br /&gt;
Matériel requis :&lt;br /&gt;
* Votre portable&lt;br /&gt;
* Votre distribution Linux/Unix de votre choix&lt;br /&gt;
* Votre proxy Web de votre choix&lt;br /&gt;
&lt;br /&gt;
Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
Places limitées. Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Shopify pour l'événement.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Présentateur : Gérôme Dieu&amp;lt;br/&amp;gt;&lt;br /&gt;
Gérôme Dieu cumule plus de 7 années d’expérience en technologies de l’information et en sécurité. &lt;br /&gt;
Il œuvre à titre de conseiller senior en sécurité de l’information au sein de la firme OKIOK. Ces dernières années, il a acquis une expertise dans le domaine de la sécurité des applications web aussi bien d'un point de vue offensif que défensif. En plus de réaliser des tests d’intrusion pour des clients internationaux, Gérôme s’implique dans la recherche et développement afin de maintenir à la fine pointe de la technologie les tests d'intrusion et d'analyse de vulnérabilités. &amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Merci à Shopify d'héberger l'événement !&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Shopify Logo-r.png| Shopify | link=https://www.shopify.com/]]&lt;br /&gt;
== Le courriel en 2017 – risques et menaces pour tous ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Zero spam 2.jpg|Le courriel en 2017 – risques et menaces pour tous]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://www.youtube.com/watch?v=HX2vcijcCWw ]] [https://www.youtube.com/watch?v=HX2vcijcCWw Watch the conference / Regarder la conférence ]&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 Le 23 janvier 2017 à midi&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
Monsieur Poellhuber nous brossera un tableau du phénomène grandissant du rançongiciels et de l'hameçonnage, personnification.&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
- Par les années passées, la menace courriel se résumait principalement en un fort volume de contenu simplement indésirable. Aujourd’hui la menace a passablement évolué. Quels sont les véritables risques actuels associés au courriel ? Rançongiciels, hameçonnage, personnification. Cette conférence présentera les nouveaux défis de sécurité pour les organisations qui doivent composer avec des attaques de plus en plus sophistiquées et de plus en plus ciblées tout en protégeant leur réputation. Des exemples biens réels, drôles et moins drôles seront disséqués pour bien dessiner l’ampleur de l’enjeu.&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
M. David Poellhuber, Chef de l’exploitation, ZEROSPAM Sécurité Inc&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note biographique :&amp;lt;br/&amp;gt;&lt;br /&gt;
Monsieur David Poellhuber oeuvre dans l’industrie de la sécurité informatique depuis quinze ans. Il a été conférencier dans plusieurs forums de sécurité au Canada et est maintenant reconnu comme une autorité en matière de sécurité du courriel. Il a fondé ZEROSPAM Sécurité en 2003, le premier service Québécois externalisé de sécurité du courriel infonuagique qui se distingue par sa convivialité, son efficacité et ses technologies de détection proactives.&amp;lt;br/&amp;gt;&lt;br /&gt;
Audience :  Généralistes et spécialistes de la sécurité des TI &lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Merci à Ubitrack pour le repas et à Desjardins d'héberger l'événement!&lt;br /&gt;
&lt;br /&gt;
[[Image:Ubitrak-r2.jpg|Ubitrak|link=http://www.ubitrak.com/fr/]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&lt;br /&gt;
== Effective XSS Mitigation ==&lt;br /&gt;
&lt;br /&gt;
[[Image:XSS mitigation.jpg | Effective XSS Mitigation ]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=http://slides.com/olivierarteau/xss-mitigation ]] [http://slides.com/olivierarteau/xss-mitigation See the slides / Voir la présentation]&lt;br /&gt;
&lt;br /&gt;
WHEN &lt;br /&gt;
 18 Janvier 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Google Montréal&lt;br /&gt;
&lt;br /&gt;
FRANÇAIS/ENGLISH&amp;lt;br/&amp;gt;&lt;br /&gt;
La mitigation de XSS a été un sujet important au cours des dernières années. Les navigateurs ont implémenté, en autre, deux fonctionnalités pour mitiger leur impact : l'entête &amp;quot;XSS-Protection&amp;quot; et l'entête &amp;quot;Content-Security-Policy&amp;quot;. Par contre, obtenir une mitigation contre les XSS efficace est souvent plus complexe que l'on pense. Cet atelier couvrira les deux entêtes. Il expliquera comme il est possible de contourner ces protections et ce qu'il est possible de faire pour se protéger. Des exercices de type &amp;quot;offensif&amp;quot; et &amp;quot;défensif&amp;quot; seront proposés.&lt;br /&gt;
Mitigation for XSS as been an important topic in the last few years. Browsers have implemented two main functionalities to help mitigate the impact of XSS : the &amp;quot;XSS-Protection&amp;quot; header and the &amp;quot;Content-Security-Policy&amp;quot; header. But, getting an effective XSS mitigation of those headers is trickier than it may seem. This workshop will cover both of those headers. It will explain how bypass of those protection work and what you can do about it. It will have both &amp;quot;defensive&amp;quot; exercises and &amp;quot;offensive&amp;quot; exercises.&lt;br /&gt;
Niveau : débutant/intermédiaire&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Matériel requis :&lt;br /&gt;
&lt;br /&gt;
Votre portable&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
&lt;br /&gt;
Places limitées. Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Google pour l'événement.&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Présentateur : Olivier Arteau&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Olivier Arteau est un professionnel en sécurité informatique depuis quelques années et fait partie de l’équipe de test d’intrusion de Desjardins. Il est aussi un amateur de CTF qui a gagné à plusieurs reprises le CTF du NorthSec avec l’équipe HackToute et participe fréquemment à d’autres CTF avec l’équipe DCIETS.&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Merci à Google d'héberger l'événement! &lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-zap-4-r.jpg | Google | link=https://www.google.ca/ ]]&lt;br /&gt;
&lt;br /&gt;
= Lunch &amp;amp; Learn / Workshops 2015-2016 =&lt;br /&gt;
&lt;br /&gt;
== WORKSHOP ! Top 10 OWASP - Unleash the threats ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-top10.jpg | WORKSHOP! Top 10 OWASP - Unleash the threats ]]&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 30 novembre 2016 de 17h30 à 20h30&lt;br /&gt;
WHERE&lt;br /&gt;
 Immunio @ WeWork&lt;br /&gt;
&lt;br /&gt;
De nos jours, la sécurité applicative est essentielle dans l’écosystème des entreprises de toutes tailles. Les vecteurs d’attaques sont multiples, les vulnérabilités de sécurité dans les applications peuvent être désastreuses et les impacts d’un « Hack » peuvent être irréversibles pour l’entreprise; vols de données sensibles, perte de réputation, perte de $$$$$, etc.&lt;br /&gt;
L’objectif du workshop est de comprendre la base sur les vulnérabilités de sécurité dans les applications et les techniques d’exploitation utilisées par les pirates informatiques, en plus de connaître les bonnes pratiques de développement en matière de sécurité applicative. &lt;br /&gt;
Avec l'aide de WebGoat, Damn Vulnerable Web Application et de Kali Linux, vous pourrez participer&lt;br /&gt;
à l'exploitation des applications et découvrir les techniques utilisées par les attaquants.&lt;br /&gt;
&lt;br /&gt;
Niveau : débutant&lt;br /&gt;
&lt;br /&gt;
Matériel requis :&lt;br /&gt;
 Votre portable&lt;br /&gt;
 Kali Linux&lt;br /&gt;
 La VM du workshop, envoyée aux participants&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
&lt;br /&gt;
Places très limitées (nb = 10). Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Immunio &amp;amp; WeWork pour l'événement.&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Présentateur : Christian Leclerc&lt;br /&gt;
&lt;br /&gt;
Christian est spécialisé en conception et développement de solutions web sécuritaires. Tout au long de sa carrière, il a acquis une vaste expertise sur plusieurs types de technologies et méthodologies, intégré la sécurité dans le cycle de développement d’applications, effectué des revues de code sécurité, déployé des outils d’analyse des vulnérabilités et mis en place des systèmes d’authentification. De plus, il a participé à la conception et au développement de solutions sécuritaires de pointe comme la signature électronique à l’aide d’une infrastructure à clé publique (PKI), les authentifications fortes, le Registre des consentements au don d'organes et de tissus (RDOQ.org) et la migration de plusieurs applications web vers un environnement SOA (Service Oriented Architecture). &lt;br /&gt;
&amp;lt;br&amp;gt;Merci à Immunio &amp;amp; WeWork d'héberger l'événement!&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:Immunio-horizontal-r.png|Immunio|link=https://www.immun.io/]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[Image:Wework-r.jpg|WeWork|link=https://www.wework.com/]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Histoire d'un Hack ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Histoire-dun-hack-r.jpg | Histoire d'un Hack ]]&lt;br /&gt;
&lt;br /&gt;
WHEN &lt;br /&gt;
 21 novembre 2016 à midi&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
Pour son activité du mois de novembre, OWASP Montréal propose à la communauté de la sécurité des TI et aux gestionnaires de faire l'autopsie d'une attaque de haute voltige sur un site web et des outils mis à la disposition par OWASP.&lt;br /&gt;
 &lt;br /&gt;
Bernard Bolduc cumule plus de 17 années d’expérience en technologies de l’information et en sécurité. Il œuvre à titre de conseiller senior en sécurité de l’information au niveau d’entreprise de classe nationale et internationale.&lt;br /&gt;
 &lt;br /&gt;
Bernard se spécialise en sécurité Unix, applicative et en gestion de la sécurité des télécommunications. Il combine ces expertises techniques afin d’obtenir des résultats probants et efficaces pour ces clients des secteurs bancaire, télécommunication et multimédias, de l’énergie ou des services publiques. Tout au long de sa carrière, Bernard s’est toujours maintenu à jour sur les dernières menaces de sécurité technologique et commerciale en assistant à des formations spécialisées et d'échanger avec un grand nombre de partenaires dans l'industrie de la sécurité.&lt;br /&gt;
 &lt;br /&gt;
La conférence débute à midi.&lt;br /&gt;
 &lt;br /&gt;
La conférence vous donne droit à 1 CPE et pour les 50 premières personnes, un lunch gratuit.&lt;br /&gt;
 &lt;br /&gt;
Merci à Desjardins d'héberger l'événement!&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Workshop ! Création de votre première extension OWASP ZAP (ou BurpSuite) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-zap-mix.jpg | Workshop ! Création de votre première extension OWASP ZAP (ou BurpSuite)]]&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 11 novembre 2016 de 18h à 21h&lt;br /&gt;
&lt;br /&gt;
WHERE &lt;br /&gt;
 Google Montréal&lt;br /&gt;
&lt;br /&gt;
OWASP Zed Attack Proxy (ZAP) est un scanneur de vulnérabilités et un outil de débogage HTTP. Ce type d'outil est crucial dans un test d'intrusion web et contient un lot intéressant de fonctionnalités. Cela dit, il est possible d'étendre les fonctionnalités. Plusieurs types d'extension sont possibles : vue alternative pour les requêtes ou les réponses, scanneur passif des réponses, scanneur actif produisant des requêtes, etc.&lt;br /&gt;
&lt;br /&gt;
Plusieurs options seront données, par exemple :&lt;br /&gt;
&lt;br /&gt;
 Détection automatique de flag dans les sources&lt;br /&gt;
 Scanneur actif asynchrone DNS&lt;br /&gt;
 Ou votre propre idée&lt;br /&gt;
&lt;br /&gt;
Pour chacune des suggestions, des squelettes de code seront fournis pour les APIs de ZAP. Pour les utilisateurs de BurpSuite, des directives analogues seront également données.&lt;br /&gt;
&lt;br /&gt;
Niveau : débutant / intermédiaire&lt;br /&gt;
&lt;br /&gt;
Matériel requis&lt;br /&gt;
&lt;br /&gt;
 Votre portable&lt;br /&gt;
 [https://www.owasp.org/index.php/OWASP_Zed_Attack_Proxy_Project OWASP ZAP (gratuit)]&lt;br /&gt;
 [https://portswigger.net/burp/download.html BurpSuite]&lt;br /&gt;
 Éditeur de code pour Java, Python ou Ruby&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Présentateur : Philippe Arteau&lt;br /&gt;
&lt;br /&gt;
Philippe est un chercheur en cybersécurité chez GoSecure. Il est l'auteur de l'outil d'analyse statique Java &amp;quot;Find Security Bugs&amp;quot;. Il a découvert des vulnérabilités importantes dans les logiciels populaires tels que Google Chrome, Dropbox, Paypal, RunKeeper et Jira. Il a présenté dans différentes conférences incluant Black Hat USA, Black Hat Europe, ATL Sec Con, NorthSec, Hackfest (QC) et JavaOne. Il a développé de nombreux plug-ins pour les outils de proxy BurpSuite et OWASP ZAP (Retire.js, Reissue Request Script, PDF preview et Image Metadata). Il a fait également des contributions à d'autres plug-ins comme J2eeScan.&lt;br /&gt;
&lt;br /&gt;
Merci à Google d'héberger l'événement! &lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-zap-4-r.jpg | Google | link=https://www.google.ca/ ]]&lt;br /&gt;
&lt;br /&gt;
==Logiciel de rançon (Ransomware) s'attaque au domaine de la santé==&lt;br /&gt;
&lt;br /&gt;
[[Image:HackingHealth-2.jpg | Logiciel de rançon (Ransomware) s'attaque au domaine de la santé ]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/ransomware-and-healthcare-hacking-health ]] [https://speakerdeck.com/owaspmontreal/ransomware-and-healthcare-hacking-health See the slides / Voir la présentation]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;(Conférence en anglais)&lt;br /&gt;
Pour le lancement de la saison 2016 - 2017, OWASP Montréal propose à la communauté de la sécurité des TI et aux gestionnaires de la santé une incursion dans le monde du logiciel malveillant ciblant le domaine de la santé.&amp;lt;br/&amp;gt;&lt;br /&gt;
Cette conférence s'intége dans le Coopérathon co-organisé par le Mouvement Desjardins et Hacking Health.&amp;lt;/b&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Le domaine de la santé serait devenu une cible privilégiée des campagnes de ransomware parce que l'industrie a souvent payé la rançon demandée pour récupérer les données confidentielles et vitales de ses clients. Monsieur Ed Gershfang nous brossera un portrait du phénomène et des meilleures pratiques à mettre en place en matière de sécurité applicative.&lt;br /&gt;
Ed Gershfang possède une expérience solide dans l'infrastructure informatique et plus de 6 ans d'expérience dans les domaines de la sécurité de l'information, de la vulnérabilité, de la gouvernance et de la gestion des risques. Il était directeur de la sécurité pour la société PeriGen, un chef de file de développement de logiciels médicaux en Israël.&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== La sécurité applicative vue par un pentesteur ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Juin2016-OWASPMtl.jpg | OWASP Montréal reçoit Mario Contestabile, Pentester de renom ]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
From Left to Right : Isabelle Lusseyran, Head of Development at Hacking Health. Eduard Gershfang Information Security Analyst at WSP | Parsons Brinckerhoff.&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/owasp-montreal-recoit-mario-contestabile ]] [https://speakerdeck.com/owaspmontreal/owasp-montreal-recoit-mario-contestabile See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Pour clore la saison 2015 – 2016, OWASP Montréal est fier d’accueillir au Midi Conférence un des architectes de renom du développement applicatif au Canada, monsieur Mario Contestabile.&lt;br /&gt;
En tant qu’auteur de plusieurs centaines de tests d’intrusion, il connait tous les rouages de ce qu’est véritablement une application Web «sécurisée». Mais avez-vous déjà remarqué que les rapports de tests d’intrusion mentionnent rarement, voir jamais : «Votre site est très difficile à pirater. Félicitations !» ?&lt;br /&gt;
Et qu’en est-il de ces rapports qui contiennent des dizaines de soi-disant vulnérabilités ? Est-ce que cela signifie d’emblée que l’application devrait être mise hors ligne ?  &lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Lors de cette conférence, nous examinerons des rapports concrets (ambigus) de vulnérabilités et nous les analyserons afin de mieux comprendre si elles représentent une véritable menace, ou si elles ne servent qu’à «remplir» les rapports.&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Avec son expertise en protection et en attaque d’applications Web, il abordera les points suivants :&lt;br /&gt;
Comment pouvez-vous sélectionner des systèmes de façon à mieux exécuter des protections de sécurité ?&lt;br /&gt;
Éviter certains pièges dans votre application Web qui rendent les attaques plus faciles et la protection plus difficile.&lt;br /&gt;
De nos jours, que peuvent faire les développeurs à l’intérieur de systèmes communs, qui puisse me rendre la tâche plus ardue en tant que « hacker »?&lt;br /&gt;
Pouvons-nous exiger de meilleurs rapports de la part des firmes de sécurité?&lt;br /&gt;
À quoi devrions-nous nous attendre de la part d’un « pentesters »?&lt;br /&gt;
Comment pouvons-nous savoir si le « pentester » a vérifié les failles de l’application et qu’il n’a pas simplement utilisé un scanneur?&lt;br /&gt;
Et enfin, comment pouvons-nous aider les « ethical hackers » à obtenir un meilleur rendement lors d’un test d’intrusion?&lt;br /&gt;
Il expliquera le sujet en détails, et ensemble, nous verrons de quelles façons les développeurs d’applications peuvent exploiter le savoir-faire des « pentesters », et comment nous pouvons faire en sorte qu’une application Web soit protégée.&lt;br /&gt;
Biographie :&lt;br /&gt;
Mario Contestabile est reconnu comme l’un des experts en sécurité les plus réputés au Canada. Son expertise, construire et protéger votre plateforme applicative. Ancien développeur C++ et Java, Mario partage ses nombreuses connaissances en « ethical hacking » et en développement de codes sécurisé.  &lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Tuesday, 14 June 2016 from 12:00 PM to 1:00 PM (EDT) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Comment protéger les applications mobiles? ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Avril2016-OWASPMtl.png | Comment protéger les applications mobiles? ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/comment-proteger-les-applications-mobiles ]] [https://speakerdeck.com/owaspmontreal/comment-proteger-les-applications-mobiles See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Dans le cadre des Midis Conférence à l'Espace Desjardins, l'équipe OWASP Montréal vous invite à assister à une présentation sur les vulnérabilités les plus communes associées aux appareils mobiles. &lt;br /&gt;
Marie-Claire Willig détaillera entre autres comment stocker de façon sécuritaire les données de l’application mobile ainsi que protéger l’application contre des attaques externes. Des outils simples vous seront dévoilés pour détecter ces vulnérabilités.&lt;br /&gt;
Marie-Claire est une professionnelle d'expérience en sécurité appliquée.&lt;br /&gt;
Une grande partie de son intérêt professionnel réside actuellement dans un domaine assez niche, soit la revue de code sécuritaire, un fondement important de tout cycle de développement sécuritaire en entreprise.&lt;br /&gt;
Au sein de l'équipe de sécurité technologique Desjardins, elle est, en autre, responsable de former les développeurs (Java et .NET principalement) afin de les sensibiliser aux meilleures pratiques de développement sécuritaire.&lt;br /&gt;
Également, elle est une professionnelle des tests d'intrusion sur les applications web, les applications mobiles ainsi que l'infrastructure réseau.&lt;br /&gt;
Bienvenue à tous&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 20 April 2016 from 12:15 PM to 1:00 PM (EDT) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== NorthSec, Le plus gros événement de cybersécurité appliquée au Canada ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Mars2016-OWASPMtl.jpg | NorthSec, Le plus gros événement de cybersécurité appliquée au Canada ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/YQtvltQYs7Y]] [https://youtu.be/YQtvltQYs7Y Watch the conference / Regarder la conférence] &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
OWASP Montréal est fier d’inviter au Midi Conférence de mars, NorthSec est le plus gros événement de sécurité appliquée au Canada qui comprend deux jours de formation, deux jours de conférences ainsi qu’une compétition du genre « capture the flag » (CTF) de trois jours.&lt;br /&gt;
Gabriel Tremblay, Benoit Guerette, Pierre-David Oriol et Laurent Desaulniers viendront vous parler de cet organisme sans but lucratif dynamique qui est géré par une équipe de bénévoles passionnés qui donnent à chaque année leur énergie et leur temps pour soutenir la communauté de la sécurité de l’information.&lt;br /&gt;
Le volet compétition, l’épreuve maîtresse, est présentée sous forme d’un scénario qui rend cohérent une centaine de défis techniques. Les équipes de participants attaquent l’infrastructure de compétition pour soutirer des drapeaux (flags) à travers un ensemble de vulnérabilités présentes comme de l’injection SQL, des XSS ou encore l’exploitation d’exécutables sur systèmes embarqués. Quelques exemples de défis des années passées seront également présentés.&lt;br /&gt;
Le volet conférence, qui est à sa 2ème année, met de l’avant plusieurs présentations techniques touchant la sécurité applicative mais aussi l’éthique et leurs impacts sociaux. Certaines présentations confirmées seront dévoilés.&lt;br /&gt;
Le tout nouveau volet formation propose deux formations en sécurité applicative de calibre international (anglais) : “Advanced Web Security Testing with Burp Pro” et “Modern Object-Oriented Malware Reverse Engineering”.&lt;br /&gt;
Venez aussi, découvrir comment l'équipe est partie d'une idée en 2012 pour se rendre à un évènement d'envergure, qui rassemblera plus de 600 professionnels, étudiants et autres passionnés de sécurité appliquée lors de la 4ème édition qui aura lieu du 17 au 22 mai 2016 au Marché Bonsecours.&lt;br /&gt;
Finalement, la mission, la vision ainsi que les activités sociales de la semaine de NorthSec sont aussi au menu de cette présentation qui sera suivie d’une période de questions.&lt;br /&gt;
&lt;br /&gt;
Gabriel Tremblay, Delve Labs, Président&lt;br /&gt;
Benoit Guerette, Desjardins, VP Finances&lt;br /&gt;
&lt;br /&gt;
Pierre-David Oriol, Delve Labs, VP Conférence&lt;br /&gt;
Laurent Desaulniers, Bell Canada, Artisant de drapeaux&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 23 March 2016 from 12:00 PM to 1:00 PM (EDT) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== La sécurité applicative et l'hameçonnage - February 24th ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Fevrier2016-OWASPMtl.jpg | La sécurité applicative et l'hameçonnage ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/1RYlOiIENjQ]] [https://youtu.be/1RYlOiIENjQ Watch the conference / Regarder la conférence] &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
De nos jours, une des méthodes les plus efficaces pour contourner les périmètres de sécurité externes est l'hameçonnage conjointement avec l’abus de certaines technologies Web.&lt;br /&gt;
&lt;br /&gt;
Dans le cadre ses activités, OWASP Montréal est heureux d'inviter d'accueillir, l'équipe OKIOK qui présentera les impacts liés à ce type d'attaque, tel que vu et expérimenté en entreprise ainsi que les plans d'action pour traiter ces risques. La présentation abordera aussi bien la sécurité web et applicatives, des systèmes informatiques ainsi que de la sécurité physique de centres de données. &lt;br /&gt;
&lt;br /&gt;
    Capture d'informations sensibles par imitations de portails Web ;&lt;br /&gt;
    Authentification Web par 2-facteurs ;&lt;br /&gt;
    Injection SMTP dans des formulaires Web ;&lt;br /&gt;
    Attaque de type “Drive-by-download”;&lt;br /&gt;
    Prise de contrôle à distance à travers des flux HTTP;&lt;br /&gt;
    Attaque de CSRF à partir de courriels ;&lt;br /&gt;
    Attaque d'hameçonnage basée sur des achats par Internet (ex : PayPal).&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
When&lt;br /&gt;
 Wednesday, 24 February 2016 from 12:00 PM to 1:15 PM (EST) - Add to Calendar &lt;br /&gt;
Where&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest Montreal, Quebec CA&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Internet of {Things, Threats} - January 20th ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Janvier2016-OWASPMtl-R.png | Internet of {Things, Threats} ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=http://gosecure.github.io/presentations/2016-01-20_owasp-mtl/internet-of-threats.html ]] [http://gosecure.github.io/presentations/2016-01-20_owasp-mtl/internet-of-threats.html See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
De plus en plus de périphériques se retrouvent connectés sur Internet. Sous la bannière &amp;quot;Internet of Things&amp;quot; (IoT) ces équipements, que ce soit une pompe à insuline ou un système de caméra de sécurité, tournent généralement sous un système GNU/Linux embarqué d'architecture MIPS ou ARM. La difficulté de mettre à jour ces équipements ainsi que le peu d'effort mis dans la sécurité des systèmes ou la sécurité applicative en font des cibles de choix. Ces derniers mois, nous avons analysé plusieurs logiciels malveillants ciblant ces architectures. Que ce soit par l'exploitation d'une vulnérabilité (Shellshock) ou encore un défaut de configuration, ces systèmes exposés sur Internet peuvent être compromis.&lt;br /&gt;
&lt;br /&gt;
Notre présentation couvrira quelques une de ces analyses:&lt;br /&gt;
&lt;br /&gt;
* Linux/Moose, un malware se propageant automatiquement qui fraude les réseaux sociaux (par exemple Facebook, Twitter et YouTube)&lt;br /&gt;
* LizardSquad et acteurs étrangers qui utilisent des systèmes embarqués compromis pour réaliser des dénis de service distribué (DDoS) &lt;br /&gt;
* Win32/RBrute est un logiciel malveillant qui tente de changer les paramètres de routeurs dans le but de faire du &amp;quot;DNS poisoning&amp;quot;. Il a été distribué par le populaire botnet Sality.&lt;br /&gt;
* Un kit d'exploits qui utilise seulement le navigateur de leur victime avec le même objectif, c'est-à-dire faire du &amp;quot;DNS poisoning&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Enfin, des conseils seront proposés à l'audience pour l'aider à se protéger de ces menaces.&lt;br /&gt;
&lt;br /&gt;
'''Thomas Dupuy''' (twitter: @nyx__o)&lt;br /&gt;
&lt;br /&gt;
Thomas est chercheur en logiciel malveillant chez ESET Canada Recherche. Bon vivant, Thomas déjeune en &amp;quot;reversant&amp;quot; des binaires, contribue à quelques projets open source durant le diner (yara, yara rules, pefile, APTnotes) et la nuit participe à des &amp;quot;Hacking Games&amp;quot; (Capture The Flag). Curieux de nature Thomas analyse des malware aux architectures &amp;quot;exotiques&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Olivier Bilodeau''' (twitter: @obilodeau)&lt;br /&gt;
&lt;br /&gt;
Olivier Bilodeau is the head of Cybersecurity Research at GoSecure a consultancy firm specializing in cybersecurity services for the public and private sector. With more than 10 years of infosec experience, Olivier worked on Unix servers at Bell Canada, managed a portion of Air Canada's network, wrote open source network access control software at Inverse and worked as a Malware Researcher at ESET. He likes to reverse engineer everything that crosses his path, participate in information security capture-the-flag competitions, hack open source code and brew beer. He has spoken at various conferences (Defcon, Botconf, VirusBulletin, Derbycon, ...), used to lecture on information security at ETS University in Montreal, drives the NorthSec Hacker Jeopardy and co-organizes the MontreHack capture-the-flag training initiative. His primary research interests include reverse-engineering tools, Linux and/or embedded malware and honeypots.&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Survivre aux attaques DDOS applicatives ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Decembre2015-OWASPMtl.jpg | Survivre aux attaques DDOS applicatives ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Survivre aux attaques DDOS (Distributed Denial-Of-Service) applicatives.&lt;br /&gt;
Cette conférence s'adresse aux professionnels et gestionnaires des TI.&lt;br /&gt;
Conférencier : Christian Shink, ing., CSSLP, ingénieur système chez Radware, manufacturier spécialisé dans la prévention des attaques DDOS. Il fut également consultant en sécurité applicative chez In Fidem.&lt;br /&gt;
Objectifs de la conférence:&lt;br /&gt;
Présenter les tendances actuelles en matière d'attaques DDOS applicatives.&lt;br /&gt;
Renseigner les participants sur les techniques et stratégies pour contrer ces attaques illustrées à partir de cas vécus.&lt;br /&gt;
Démystifier certains mythes en ce qui concernent les façons efficaces de protéger les applications contre des attaques DDOS.&lt;br /&gt;
Date : 16 décembre 2015&lt;br /&gt;
Heure : 11h45&lt;br /&gt;
La conférence débute à 12h00 et se termine à 12:55.&lt;br /&gt;
Un lunch sera servi.&lt;br /&gt;
Réservez maintenant!&lt;br /&gt;
1 CPE&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 16 December 2015 from 11:45 AM to 1:00 PM (EST) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec &lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Sécurité des applications - Systèmes de contrôles industriels ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Novembre2015-OWASPMtl-R.png | Sécurité des applications - Systèmes de contrôles industriels ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/0eAZpyiQQ9A]] [https://youtu.be/0eAZpyiQQ9A Watch the conference / Regarder la conférence] &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&lt;br /&gt;
La sécurité des applications et les systèmes de contrôles industriels.&lt;br /&gt;
Cette conférence s'adresse aux professionnels et gestionnaires des TI desinfrastructures critiques qui exploitent ou gèrent des systèmes de contrôles industriels(SCI) et SCADA (surveillance et d'acquisition de données).&amp;lt;br/&amp;gt;&lt;br /&gt;
Conférenciers : Robert Nastas, CSSA. Gestionnaire de projet et Youssef Jad, Architecte Cyber sécurité, ICS-CERT&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Objectifs de la conférence:&lt;br /&gt;
* Démystifier le domaine d'affaires.&lt;br /&gt;
* Renseigner les participants sur les bonnes pratiques de sécurité desapplications liées au secteur industriel.&lt;br /&gt;
* Proposer aux professionnels et gestionnaires des TI responsables dessystèmes SCADA et SCI des pistes de solutions aux enjeux de sécurité.&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
L'équipe OWASP Montréal vous remercie d'avoir assisté en grand nombre à la conférence, 'La sécurité des applications et les systèmes de contrôles industriels'.&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 18 November 2015 from 11:45 AM to 1:00 PM (EST) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Les préoccupations actuelles de hauts dirigeants en matière de cybersécurité et de sécurité applicative ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Septembre2015-OWASPMtl.jpg | Les préoccupations actuelles de hauts dirigeants en matière de cybersécurité et de sécurité applicative ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/un-regard-sur-la-securite-de-linformation-en-2015-par-eric-hebert ]] [https://speakerdeck.com/owaspmontreal/un-regard-sur-la-securite-de-linformation-en-2015-par-eric-hebert See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Pour le lancement des activités corporatives de la saison 2015 - 2016, le 8 septembre prochain à 12:00, l'équipe OWASP Montréal convie les gestionnaires et artisants de la sécurité des TIC à venir entendre monsieur Éric Hébert qui nous présentera son interprétation des préoccupations actuelles de hauts dirigeants en matière de cybersécurité et de sécurité applicative. L'événement se tiendra au complexe Desjardins à la salle &amp;quot;Espace Desjardins&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
''' ÉRIC G. HÉBERT, CISM, CISSP ''' &amp;lt;br/&amp;gt;&lt;br /&gt;
Après plus de 20 ans passés dans le domaine de la sécurité des technologies de l’information, Éric se spécialise dans la mise en œuvre et la gestion d'équipes performantes, capables de relever les plus hauts défis de la cybersécurité moderne.&amp;lt;br/&amp;gt;&lt;br /&gt;
Capable de dialoguer avec les hauts dirigeants, il sait traduire et vulgariser les enjeux techniques complexes tout en respectant la nature et l'appétence au risque de ses clients. Dynamique et pourvu d'une expérience couvrant presque toutes les sphères de la SI, il fonce dans le respect de la culture établie tout en implantant des solutions pragmatiques et efficaces.&amp;lt;br/&amp;gt;&lt;br /&gt;
Depuis plus de 10 ans, il gravite principalement autour des entreprises du domaine financier (BNC, Desjardins, Fonds de solidarité FTQ...) et les accompagne dans la mise en place de solutions efficaces tenant compte à la fois des risques et des budgets.&lt;br /&gt;
En plus d’avoir fondé de nombreuses associations telles que le RéseauSécurIT et le RPSI, il maintient une présence régulière auprès des milieux associatifs professionnels et partage régulièrement ses expériences lors de conférences et d'entrevues avec divers médias.&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Events / Évènements =&lt;br /&gt;
&lt;br /&gt;
== Owasp Montreal at [https://nsec.io/ NorthSec 2017] ==&lt;br /&gt;
&lt;br /&gt;
[[Image:NorthSec2017-5.jpg]]&lt;br /&gt;
[[Image:NorthSec2017-6.jpg]]&lt;br /&gt;
&lt;br /&gt;
From Left to Right: Anne Gauthier, OWASP Montréal Chapter Leader (President) and Application Security Analyst at GoSecure, Hugo Genesse, OWASP Montréal Chapter Leader and Research Intern at PNF Software, Julien Touche, OWASP Montréal Chapter Leader and Principal Security Engineer at Nuance Communications&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal at [https://2017.appsec.eu/ AppSec] ==&lt;br /&gt;
&lt;br /&gt;
[[Image:OWASPAppSecBelfast2017-7.jpg]]&lt;br /&gt;
&lt;br /&gt;
OWASP Montreal and Ottawa Chapter Leaders at OWASP AppSec Belfast, UK #WomenInAppSec&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal at [https://hackfest.ca/ HackFest 2016] ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hackfest2016-r.jpg| HackFest |link=https://hackfest.ca/]]&lt;br /&gt;
&lt;br /&gt;
From left to right: Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Louis Nadeau, OWASP Québec Chapter Leader and Manager, Product Security at Bentley Systems and Patrick Leclerc, OWASP Québec Chapter Leader and Information Security Advisor at La Capitale.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal at OWASP [https://2016.appsecusa.org/ AppSec USA 2016, Washington] ==&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:OWASPMtl-AppSecUSA2016-Washington.jpg | OWASP Montreal at AppSec USA 2016, Washington]] &lt;br /&gt;
&lt;br /&gt;
​From left to right: Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Marie-Claire Willig, Application Security Analyst at Desjardins, Speaker and Cofounder of the Roslyn Security Guard tool which will be presented at Blackhat 2016, Alexandre Hamelin President at Synlabs Consulting Inc., Jonathan Marcil, Application Security Engineer at Blizzard Entertainment and former OWASP Montreal Chapter Leader. Philippe Arteau, Cybersecurity Researcher at GoSecure and designer of [https://find-sec-bugs.github.io/ Find Security Bugs] and Roslyn Security Guard tool which will be presented at Blackhat 2016.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://www.gosec.net GoSec] 2016 ==&lt;br /&gt;
&lt;br /&gt;
[[Image:OWASP-GoSec2016-1r.jpg|OWASP Montreal at GoSec 2016]] [[Image:OWASP-GoSec2016-2r.jpg|OWASP Montreal at GoSec 2016]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
From left to right : Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Simon Lacasse, student and volunteer, and Laurent Desaulniers, Security Analyst at Bell Canada.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://www.nsec.io/ NorthSec] 2016 – Annual Applied Security Event ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hackfest2016-OWASPMtl.jpg|OWASP Montreal at NorthSec 2016]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Simon Veilleux &lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
From left to right : Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Olivier Arteau OWASP Montréal Chapter Leader and Conseiller chez Groupe Technologie Desjardins, Hugo Genesse, OWASP Montréal Chapter Leader and Vulnerability Research Intern at Wurldtech Security Technologies.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://hackfest.ca/en/ Hackfest] 2015 ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hackfest2015-OWASPMtl-R.JPG | OWASP Montreal at Hackfest 2015]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Hackfest &lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
From left to right : Jonathan Marcil, Application Security Engineer at Blizzard Entertainment and former OWASP Montreal Chapter Leader. Philippe Arteau, Cybersecurity Researcher at GoSecure and designer of [http://find-sec-bugs.github.io/ Find Security Bugs] and Roslyn Security Guard tool which will be presented at Blackhat 2016. &lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/8U0qkEuUFy8]] [https://youtu.be/8U0qkEuUFy8 Watch the video / Regarder la vidéo]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://www.gosec.net/ GoSec] 2015 – The Annual Cybersecurity Conference presented by GoSecure, EY and ISACA. ==&lt;br /&gt;
&lt;br /&gt;
[[Image:GoSec2015-OWASPMtl.jpg|OWASP Montreal at GoSec 2015]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
From left to right : Marie-Claire Willig, Application Security Analyst at Desjardins, Speaker and Cofounder of the Roslyn Security Guard tool which will be presented at Blackhat 2016. Benoît Guérette, Application Security Team Leader at Desjardins, VP Finance at NorthSec and OWASP Montreal Chapter Founder and Former Chapter Leader.&lt;br /&gt;
&lt;br /&gt;
== See also / Voir aussi ==&lt;br /&gt;
&lt;br /&gt;
OWASP Montréal recommends Montréhack. Learn and share knowledge on IT security by solving technical challenges. Third Monday of every month. &lt;br /&gt;
&lt;br /&gt;
OWASP Montréal recommende Montréhack. Apprends et partages des connaissances sur la sécurité informatique en travaillant des problèmes appliqués. Chaque troisième lundi du mois. &lt;br /&gt;
&lt;br /&gt;
[[File:Montrehack.png|Montréhack|link=http://montrehack.ca/|alt=Montréhack]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Archives 2007-2015 =&lt;br /&gt;
{{:Montreal chapter past meetings}}&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - February 3rd - Getting to Know the Software Assurance Marketplace (SWAMP) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/p4_vjufcB6Q]] [https://youtu.be/p4_vjufcB6Q Watch the conference / Regarder la conférence]&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/getting-to-know-the-software-assurance-marketplace-swamp-by-pat-beyer]] [https://speakerdeck.com/owaspmontreal/getting-to-know-the-software-assurance-marketplace-swamp-by-pat-beyer See the slides / Voir la présentation] &amp;lt;br/&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Pat Beyer&lt;br /&gt;
*'''ADDITIONAL PRESENTER:'''  Abe Megahed&lt;br /&gt;
*'''ABSTRACT:''' The Software Assurance Marketplace (SWAMP) is an open facility that is designed, built, and operated by four research institutions. The SWAMP provides no-cost access to an array of open-source and commercial software analysis tools. This presentation will provide an overview and demo of the SWAMP, including our goals, intended audience, current capabilities, and future plans. We will cover our relationship with OWASP, incorporation of open-source software assurance tools, and status as an open-source project and resource available to the software community. Visit https://continuousassurance.org/ to learn more about us.&lt;br /&gt;
*'''BIO:''' Pat Beyer serves as the Product Manager for the Software Assurance Marketplace (SWAMP). With over 25 years of experience successfully managing multi-million dollar global projects, Beyer’s expertise extends to the IT, construction, and operations sectors, with a specialization in managing government contracts and grants. A gifted communicator, Beyer is a sought after speaker due to his ability to deliver complex information about technology products and services in a way that is easily understood. He is a decorated combat veteran of the Global War on Terror, the international military campaign that started following the 9/11 terrorist attacks on the United States. In 2004, he constructed and rehabilitated over 20 schools, clinics, and water treatment plants for the Iraqi people using local contractors. Beyer also holds a Bachelor of Science, a Masters in Business Administration, a Ph.D. in Organization and Management, and a Project Management Professional (PMP) certification.&lt;br /&gt;
*'''BIO:''' Abe Megahed is a web developer for the Software Assurance Marketplace. In previous lifetimes, he has been a computer graphics researcher, a game programmer, a programming language and compiler nerd, a dot com company founder, a creator of helicopter simulations, and a developer of 3D simulations for NASA astronaut crew training.&lt;br /&gt;
*'''WHEN:'''  Tuesday, February 3rd 2015&lt;br /&gt;
*'''WHERE:''' Room PK-1140 - UQAM Pavillon Président-Kennedy, 201 Avenue du Président-Kennedy  J2X 3Y7&lt;br /&gt;
*'''REGISTRATION:''' https://owaspmtlswamp2015.eventbrite.ca&lt;br /&gt;
*'''WEBCAST:''' https://www.youtube.com/watch?v=p4_vjufcB6Q&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/getting-to-know-the-software-assurance-marketplace-swamp-by-pat-beyer&lt;br /&gt;
&lt;br /&gt;
*'''ACADEMIC PARTNER:''' AGEEI-UQAM - http://www.ageei.org/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Welcome speech by Chapter Leader (Jonathan Marcil)&lt;br /&gt;
  18:30-20:00 Main session: Getting to Know the Software Assurance Marketplace&lt;br /&gt;
  20:00-...   End of the meeting&lt;br /&gt;
&lt;br /&gt;
[[Image:SWAMP-Logo-Final-Med.png|300px|link=https://continuousassurance.org/]]&lt;br /&gt;
[[Image:Ageeilogo.jpg|200px|link=http://www.ageei.org/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - 4 décembre - Malware côté serveur — évolution, méthodes d’opération et forensic Linux ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/lo8WDl-WQ3E]] [https://youtu.be/lo8WDl-WQ3E Watch the conference / Regarder la conférence] &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/malware-cote-serveur-par-marc-etienne-m-dot-leveille]] [https://speakerdeck.com/owaspmontreal/malware-cote-serveur-par-marc-etienne-m-dot-leveille See the slides / Voir la présentation] &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''PRÉSENTATEUR PRINCIPAL:''' Marc-Etienne M.Léveillé&lt;br /&gt;
*'''RÉSUMÉ:''' Les logiciels malveillants ciblant les serveurs ont évolué. Ils sont utilisés par des groupes de cybercriminels organisés dans le but de faire du profit via des redirections web et l’envoie de pourriels. La présentation portera sur Opération Windigo, une opération malveillante qui a affecté plus de 25 000 serveurs dans le monde. Après une brève description des composantes de Windigo, nous verrons comment les opérateurs déploient leurs logiciels malveillants et surveille leur réseau de serveurs infectés. Des trucs pratiques pour faire de la forensics sur des systèmes Linux seront donnés. Cette présentation est une suite à la présentation &amp;quot;Linux/Cdorked: Server side malware&amp;quot;, donnée par Olivier Bilodeau à OWASP Montréal en 2013. La présentation sera en français avec des diapositives en anglais (aka Montreal-style).&lt;br /&gt;
*'''BIO:''' Marc-Etienne est un chercheur en logiciel malveillant chez ESET depuis 2012. Il se spécialise dans les logiciels malveillants qui s’attaquent à des plateformes inhabituelles comme aux produits fruités et aux oiseaux nordiques. Dernièrement, il passe beaucoup de son temps à faire la rétro-ingénierie de logiciels malveillants sur des serveurs Linux et s’intéresse à leurs méthodes d’opération. Il adore participer de façon collégiale aux CTFs avec ses amis les CISSP Groupies et jouer de la clarinette. Il tweet très peu à @marc_etienne_.&lt;br /&gt;
*'''QUAND:''' 4 décembre 2014 à 18h00&lt;br /&gt;
*'''OÙ:''' Local M-1510, Polytechnique Montréal, 2900 Boulevard Edouard-Montpetit&lt;br /&gt;
*'''INSCRIPTION:''' https://www.eventbrite.ca/e/owasp-montreal-4-decembre-malware-cote-serveur-evolution-methodes-doperation-et-forensic-linux-tickets-14635313617&lt;br /&gt;
*'''ÉQUIPE ACADÉMIQUE:''' Polyhack - http://polyhack.org/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
&lt;br /&gt;
 18:00-18:30 Réseautage&lt;br /&gt;
 18:30-18:35 Mot de bienvenue par le leader du chapitre (Jonathan M.)&lt;br /&gt;
 18:35-19:30 Présentation principale : Malware côté serveur&lt;br /&gt;
 19:30-20:00 Période de questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Polyhacklogonoirpetit.png|200px|link=http://polyhack.org/]]&lt;br /&gt;
[[Image:LogoPolytechnique.gif|link=http://www.polymtl.ca/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - October 23rd - XXE : À l’assaut des analyseurs XML ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/MZviLB9-42E]] [https://youtu.be/MZviLB9-42E Watch the conference / Regarder la conférence] &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/xxe-a-lassaut-des-analyseurs-xml-par-philippe-arteau]] [https://speakerdeck.com/owaspmontreal/xxe-a-lassaut-des-analyseurs-xml-par-philippe-arteau See the slides / Voir la présentation] &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''PRÉSENTATEUR PRINCIPAL:''' Philippe Arteau&lt;br /&gt;
*'''RÉSUMÉ:''' L'utilisation d’XML est fortement répandue. Le format est utilisé pour des fichiers de configuration, pour des métadonnées, pour des documents textes, et bien plus. La prise en charge de fichiers XML n’est pas sans risque. La plupart des analyseurs XML ne sont pas sécuritaires par défaut pour le traitement de fichier externe. Cette présentation fera un survol des vulnérabilités de type « Xml eXternal Entity » et de l’étendue des risques pour différents langages de programmation. Plusieurs démonstrations sont prévues.&lt;br /&gt;
*'''BIO:''' Philippe est conseiller en sécurité applicative pour le Groupe Technologies Desjardins. Au quotidien, il s’occupe d’effectuer des tests d’intrusions et des revues de code. Il a découvert des vulnérabilités importantes dans plusieurs logiciels populaires incluant Google Chrome, DropBox, ESAPI et Jira.&lt;br /&gt;
*'''QUAND:'''  23 Octobre 2014 à 18h00&lt;br /&gt;
*'''OÙ:''' École de Technologie Supérieure Local A-3230, 1100 Rue Notre-Dame Ouest, Montréal, QC H3C 1K3&lt;br /&gt;
*'''INSCRIPTION:''' http://www.eventbrite.ca/e/owasp-montreal-23-octobre-xxe-a-lassaut-des-analyseurs-xml-tickets-13426881163&lt;br /&gt;
*'''PARTENAIRE ACADÉMIQUE:''' ETS - DCI http://dciets.com/&lt;br /&gt;
*'''PROGRAMME:''' &lt;br /&gt;
&lt;br /&gt;
 18:00-18:30 Réseautage&lt;br /&gt;
 18:30-18:45 Mot de bienvenue&lt;br /&gt;
 18:45-19:45 Présentation principale - &amp;quot;À l’assaut des analyseurs XML&amp;quot; Philippe Arteau&lt;br /&gt;
 19:45-20:00 Période de questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Blason_dci.png‎‎‎|150px|link=http://dciets.com/]]&lt;br /&gt;
[[Image:ETS-rouge-devise-impr-fond_transparent.png|150px|link=http://www.etsmtl.ca/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - July 24th - Web security for DevOps: the glory is in the headers ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/6bp1NCLT-YQ]] [https://youtu.be/6bp1NCLT-YQ Watch the conference / Regarder la conférence] &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/web-security-for-devops-the-glory-is-in-the-headers-by-jonathan-marcil]] [https://speakerdeck.com/owaspmontreal/web-security-for-devops-the-glory-is-in-the-headers-by-jonathan-marcil See the slides / Voir la présentation] &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Jonathan Marcil&lt;br /&gt;
*'''ABSTRACT:''' DevOps is a buzzword which can be easily demystified: in essence it is a process which aims to combine the development and system administration process into one; Operations. As developers become responsible for server setup, security counter measures are evolving as well. The line between server configuration and application behaviour has been blurred. In this talk we will cover some HTTP headers in regards to security such as CORS, CSP and HSTS. We will demonstrate several forms of attack, and how they can (should) be countered.&lt;br /&gt;
*'''BIO:''' Jonathan is devoted to security and specialized in Web application security.  His main occupation is consulting in Web security, but deep down he is a developer with a agnostic vision of programming languages. He has a diploma in Software Engineering from Ecole de Technologie Superieure and more than 10 years of experience in Information Technology and Security.&lt;br /&gt;
*'''WHEN:'''  At noon on July 24th 2014&lt;br /&gt;
*'''WHERE:''' 75 Queen Street, office 3100, Montreal, QC H3C 2N6&lt;br /&gt;
*'''REGISTRATION:''' You can join us on site for a pizza slice but this is mainly an online event. Contact jonathan.marcil@owasp.org.&lt;br /&gt;
*'''WEBCAST:''' https://www.youtube.com/watch?v=6bp1NCLT-YQ&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/web-security-for-devops-the-glory-is-in-the-headers-by-jonathan-marcil&lt;br /&gt;
*'''EVENT SPONSOR:''' Pheromone http://www.pheromone.ca/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  12:00-12:10 Welcome and quick OWASP introduction&lt;br /&gt;
  12:10-13:10 Main presentation - &amp;quot;Web security for DevOps: the glory is in the headers&amp;quot; Jonathan Marcil&lt;br /&gt;
  13:10-... Open discussion and questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Logo-phero.gif‎|link=http://www.pheromone.ca/]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - June 18th - Gaps in the Clouds ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/gaps-in-the-clouds-by-robert-fritz]] [https://speakerdeck.com/owaspmontreal/gaps-in-the-clouds-by-robert-fritz See the slides / Voir la présentation] &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Robert Fritz&lt;br /&gt;
*'''ABSTRACT:''' Cloud technology offers agility and scaling, and a chance to break away from legacy IT choices.  Unfortunately, skipping traditional IT activities often results in poorly patched systems, out of date firewalls, and overprovisioned entitlements wielded by admins whose “day job” is development.  Boundaries of accountability and responsibility amongst cloud providers and consumers are confusing, vague, and shift, making security difficult to manage.  In such an environment, a “BP-spill” event, where cost wins over safely safety, is likely.  This talk will dive down into the cracks between the layers of cloud, and share some of the exciting dirt we have seen and expect to see in coming years.”&lt;br /&gt;
*'''BIO:''' Robert Fritz has been practicing security his entire career. Rob started as an Air Force lieutenant at Langley AFB and later at the Pentagon in Washington DC, building and managing classified networks. Finding he was getting too far from technology after a brief stint flying, he left the military to get back to the tech, and built security tools for HP in their HP-Unix lab.  Over time he found himself in more and more security design discussions, so co-authored HP’s Commercial Application Threat Analysis Methodology, building an internal consulting practice at HP.  This quantitative approach, led to two pending patents, an external-facing consulting practice, and his contributions to NIST IR-7502, the Common Configuration Scoring System (CVSS follow-on).  He is the former lead editor for the Center for Internet Security’s HP-UX Benchmark, and current lead for the Android Benchmark.  Robert now works for Morgan Stanley as global head of the Strategic Consulting team in the Security Architecture group, and leads the team’s cloud and social-media security practices.&lt;br /&gt;
*'''WHEN:''' June 18th 2014&lt;br /&gt;
*'''WHERE:''' 700 Rue Wellington, Floor 2, Montreal, QC H3C 3S4&lt;br /&gt;
*'''REGISTRATION:''' http://owaspmtl18junems.eventbrite.ca&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/gaps-in-the-clouds-by-robert-fritz&lt;br /&gt;
*'''EVENT SPONSOR:''' Morgan Stanley http://www.morganstanley.com/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:30 Networking and Morgan Stanley Hosted Pizza and Soft Drinks&lt;br /&gt;
  18:30-18:45 OWASP Chapter &amp;amp; Morgan Stanley Welcome&lt;br /&gt;
  18:45-19:45 Main presentation - &amp;quot;Gaps in the Clouds&amp;quot; Robert Fritz&lt;br /&gt;
  19:45-20:00 Open discussion and questions&lt;br /&gt;
  20:00-...   Optional, informal networking at Aziatic - 626 rue Marguerite-d'Youville, Montréal, QC H3C 1W7&lt;br /&gt;
&lt;br /&gt;
[[Image:Morgan_Stanley_Historical_Logo.png|link=http://www.morganstanley.com/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - May 26th - Récapitulatif des challenges NorthSec ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/P8_V3RI1Ru4]] [https://youtu.be/P8_V3RI1Ru4 Watch the conference / Regarder la conférence] &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''PRÉSENTATEUR PRINCIPAL:''' Laurent Desaulniers&lt;br /&gt;
*'''RÉSUMÉ:''' Solutions de la compétition en sécurité NorthSec 2014 sur les sujets de  XXE + SSRF, WAF Bypass, Xpath Injection, DOM Injection, HTTP Only Flag bypass et contournement de captchas. Une bonne façon d'apprendre sur ces failles que vous étiez ou non un participant de la compétition.&lt;br /&gt;
*'''MESSAGE DU PRÉSENTATEUR:''' Vous voyez Rao dans votre soupe? Vous voulez une solution pour un XSS avec des cookies http only? Les captchas illisibles sont un problème? Assistez à la présentation de l'OWASP!&lt;br /&gt;
*'''BIO:''' Laurent Desaulniers est un passionné de sécurité informatique. Il a présenté au Hackfest, au colloque RSI, à OWASP et est challenge designer à NorthSec. M. Desaulniers détient les certifications CISSP, CISM, CISA et OSCP.&lt;br /&gt;
*'''QUAND:''' 26 mai à 18h00&lt;br /&gt;
*'''OÙ:''' Local PK-1140 - Pavillon Président-Kennedy 201, Avenue du Président-Kennedy, J2X 3Y7&lt;br /&gt;
*'''INSCRIPTION:''' https://www.eventbrite.ca/e/owasp-montreal-26-mai-recapitulatif-des-challenges-northsec-tickets-11724413035&lt;br /&gt;
*'''WEBCAST:''' https://www.youtube.com/watch?v=P8_V3RI1Ru4&lt;br /&gt;
*'''ÉQUIPE ACADÉMIQUE''' AGEEI-UQAM - http://www.ageei.org/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
&lt;br /&gt;
 18:00-18:30 Réseautage&lt;br /&gt;
 18:30-18:35 Mot de bienvenue par le leader du chapitre (Jonathan M.)&lt;br /&gt;
 18:35-19:30 Présentation principale : Récapitulatif des challenges NorthSec&lt;br /&gt;
 19:30-20:00 Période de questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Ageeilogo.jpg|200px|link=http://www.ageei.org/]]&lt;br /&gt;
[[Image:2397_nsec_Logo_500-250.png|200px|link=http://nsec.io/]]&lt;br /&gt;
&lt;br /&gt;
== Networking with infosec communities - April 21st ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''RÉSUMÉ:''' En collaboration avec Montréhack, mtlsec et NorthSec, nous organisons une soirée réseautage dans un pub du centre-ville. Du plaisir garanti avec les membres de plusieurs communautés infosec de Montréal!&lt;br /&gt;
&lt;br /&gt;
*'''ABSTRACT:''' In collaboration with Montréhack, mtlsec and NorthSec, we are organizing a networking evening in a pub downtown. Fun guaranteed with the other security communities in Montreal!&lt;br /&gt;
&lt;br /&gt;
*'''QUAND:''' 21 Avril 2014&lt;br /&gt;
*'''WHEN:''' April 21st 2014&lt;br /&gt;
&lt;br /&gt;
*'''OÙ/WHERE:''' BENELUX - Brasserie Artisanale 245 Sherbrooke St W Montreal, QC H2X 1X7&lt;br /&gt;
&lt;br /&gt;
*'''INSCRIPTION/REGISTRATION:''' https://www.eventbrite.ca/e/montrehack-avril-april-northsec-pre-party-tickets-11232307133&lt;br /&gt;
&lt;br /&gt;
*'''PARTENAIRES/PARTNERS:''' Montréhack http://montrehack.ca/ - mtlsec http://blog.mtlsec.com/ - NorthSec https://www.nsec.io/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
  18:00-21:00 Networking&lt;br /&gt;
  21:00-23:59 Remember to drink responsibly!&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - March 27th - Panel Compétition en sécurité NorthSec ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Présentation sous forme de panel - venez poser vos questions!'''&lt;br /&gt;
&lt;br /&gt;
*'''RÉSUMÉ:''' Les compétitions de type Capture the Flag (CTF) sont un moyen pour les professionnels et amateurs de sécurité informatique de mettre leurs talents à l'épreuve. NorthSec est une compétition Montréalaise annuelle en sécurité appliquée, qui aura lieu cette année au Marché Bonsecours de Montréal le 25, 26 et 27 avril prochain. Elle vise à augmenter le niveau technique des professionnels de la sécurité au Québec, ainsi que de permettre à ses acteurs les plus talentueux de se démarquer.&lt;br /&gt;
*'''DÉTAILS:''' Le panel de jeudi, sous la forme d'un échange convivial entre les organisateurs de l'évènement et de ses participants, abordera des thèmes variés comme l'écriture de bon défis, l'infrastructure, la logistique, les inattendus, un bilan de 2013 et tout ça en passant par de savoureuses annecdotes (on l'espère). Venez en grand nombre toucher à ces légendes de la scène infosec montréalaise!&lt;br /&gt;
*'''PANÉLISTES:''' Gabriel Tremblay, François Proulx, Laurent Desaulniers, Stéphane Graber&lt;br /&gt;
*'''ANIMATEUR:''' Olivier Bilodeau&lt;br /&gt;
*'''QUAND:''' 27 mars 2014&lt;br /&gt;
*'''OÙ:''' Salle M-1510, École Polytechnique de Montréal, 2500 chemin de Polytechnique, Montréal (Québec) H3T 1J4, pavillon Lassonde&lt;br /&gt;
*'''INSCRIPTION:''' https://www.eventbrite.ca/e/owasp-montreal-27-mars-panel-competition-en-securite-northsec-tickets-10918436337&lt;br /&gt;
*'''ÉQUIPE ACADÉMIQUE:''' Polytechnique - Polyhack http://polyhack.org/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Mot de bienvenue par le leader du chapitre (Jonathan Marcil)&lt;br /&gt;
  18:30-20:00 Présentation principale : Panel NorthSsec&lt;br /&gt;
&lt;br /&gt;
[[Image:Polyhack.png‎‎|200px|link=http://polyhack.org/]]&lt;br /&gt;
[[Image:LogoPolytechnique.gif|link=http://www.polymtl.ca/]]&lt;br /&gt;
[[Image:2397_nsec_Logo_500-250.png|200px|link=http://nsec.io/]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - February 25th - Proven Strategies for Web Application Security ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/proven-strategies-for-web-application-security-by-justin-c-klein-keane]] [https://speakerdeck.com/owaspmontreal/proven-strategies-for-web-application-security-by-justin-c-klein-keane See the slides / Voir la présentation] &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Justin C. Klein Keane&lt;br /&gt;
*'''ABSTRACT:''' The rising dominance of the web as an application delivery platform has focused attacker attention squarely on the security of dynamic web applications. Application security is a complex, and shifting, field. Learn about tested and successful techniques to build safer applications, find flaws before they become vulnerabilities, and deploy applications that can detect, and resist attack.&lt;br /&gt;
*'''BIO:''' Justin C. Klein Keane is a security engineer and chapter leaders of OWASP in Philadelphia. For over a decade Justin has worked as a trainer, coder, and exploit developer. Justin is currently writing a book for NoStarch Press on hacking, speaks regularly at conferences, holds a masters degree in information technology from the University of Pennsylvania and is credited with hundreds of application vulnerability discoveries.&lt;br /&gt;
*'''WHEN:''' February 25th 2014&lt;br /&gt;
*'''WHERE:''' Ecole de technologie superieure, 1100 Notre-Dame Street West, Montreal, Room: A-1150&lt;br /&gt;
*'''REGISTRATION:''' http://owaspmtljan2014.eventbrite.ca&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/proven-strategies-for-web-application-security-by-justin-c-klein-keane&lt;br /&gt;
*'''ACADEMIC PARTNER:''' ETS - DCI http://dciets.com/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Welcome speech by Chapter Leader (Jonathan Marcil)&lt;br /&gt;
  18:30-20:00 Main session and open discussion: Proven Strategies for Web Application Security&lt;br /&gt;
  20:00-...   End of the meeting in a pub&lt;br /&gt;
&lt;br /&gt;
[[Image:Dciets.png‎‎‎|100px|link=http://dciets.com/]]&lt;br /&gt;
[[Image:Logo_ets.png|link=http://www.etsmtl.ca/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - January 28th - Latest trends in Mobile Security ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/8qPyKj4FKgY]] [https://youtu.be/8qPyKj4FKgY Watch the conference / Regarder la conférence] &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/latest-trends-in-mobile-security-by-francois-proulx]] [https://speakerdeck.com/owaspmontreal/latest-trends-in-mobile-security-by-francois-proulx See the slides / Voir la présentation] &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Francois Proulx&lt;br /&gt;
*'''ABSTRACT:''' Last AppSecUSA 2013 had a great line up of talks, especially regarding mobile applications. This session will be covering all the hottest presentations about mobile security by doing an overview from what see saw at AppSecUSA, all with some slides and snippets of presentations that was recorded at the event. Discussion will be encouraged within the audience as this will be more a dynamic event than a regular talk.&lt;br /&gt;
*'''BIO:''' François Proulx is a senior mobile application developer who has worked on dozens of iOS applications since the very beginning of the Apple iOS platform. Over the past few years he has switched his focus to security. He spends a lot of his free time participating in Capture the Flag events (CTFs) and organizing the NorthSec security competition.&lt;br /&gt;
*'''WHEN:''' January 28th 2014&lt;br /&gt;
*'''WHERE:''' UQAM Room PK-1705, Pavillon Président-Kennedy (the big boat at Place des Arts) - 201 Avenue du Président-Kennedy  J2X 3Y7&lt;br /&gt;
*'''REGISTRATION:''' http://owaspmtl-mobilesecurity.eventbrite.ca&lt;br /&gt;
*'''SLIDES/CONTENT:''' [http://www.youtube.com/playlist?list=PLQtB2ug5xmvaQ9jeRWV53-F_T555GQfhW YouTube playlist]&lt;br /&gt;
*'''SPONSOR:''' Academic partner AGEEI-UQAM - http://www.ageei.org/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Welcome speech by Chapter Leader (Jonathan M.)&lt;br /&gt;
  18:30-20:00 Main session and open discussion: Mobile Security&lt;br /&gt;
  20:00-...   End of the meeting in a pub&lt;br /&gt;
&lt;br /&gt;
[[Image:Ageeilogo.jpg|200px|link=http://www.ageei.org/]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Presentations For Download  ====&lt;br /&gt;
&lt;br /&gt;
[http://www.owasp.org/images/0/0d/20100209mstechdaysowaspasvssgiv01-12657916463819-phpapp02.ppt OWASP ASVS] by Sebastien Gioria (09/03/2010) &lt;br /&gt;
&lt;br /&gt;
[http://www.ph-il.ca/slides/afup__authetification_forte.pdf Authentification Forte] by Philippe Gamache (02/02/2010) &lt;br /&gt;
&lt;br /&gt;
[http://www.opensamm.org/downloads/OpenSAMM-1.0.ppt Software Assurance Maturity Model (OpenSAMM)] by Pravir Chandra (03/11/2009) &lt;br /&gt;
&lt;br /&gt;
[http://www.owasp.org/images/d/de/Owasp-montreal-sept-17h-2009-justin-foster.pdf Crossing the Border – Javascript Exploits] by Justin Foster (17/09/2009) &lt;br /&gt;
&lt;br /&gt;
[http://www.owasp.org/images/c/c2/ALaughRIAt.pdf A Laugh RIAt] by Rafal Los (07/04/2009) &lt;br /&gt;
&lt;br /&gt;
[https://www.owasp.org/images/e/eb/OWASP-Montreal-24022009-RobLabbe.pptx Microsoft Security Development Lifecycle for IT] by Rob Labbe (24/02/2009) &lt;br /&gt;
&lt;br /&gt;
[https://www.owasp.org/images/3/39/OWASP-Montreal-24022009-EN.pdf OWASP Goal and Top Ten 2007 for Managers - French version] by Benoit Guerette (24/02/2009)&lt;br /&gt;
&lt;br /&gt;
Newer presentations are available on [https://speakerdeck.com/owaspmontreal Speaker Deck]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Circle_owasp_logo_nowhitebackground.png|200px]]&lt;br /&gt;
&lt;br /&gt;
= OWASP Foundation / Mission OWASP    = &lt;br /&gt;
OWASP Foundation ([https://docs.google.com/a/owasp.org/presentation/d/10wi1EWFCPZwCpkB6qZaBNN8mR2XfQs8sLxcj9SCsP6c/edit?usp=sharing Overview Slides]) is a professional association of [[Membership | global members]] and is open to anyone interested in learning more about software security. Local chapters are run independently and guided by the [[Chapter_Leader_Handbook]].  As a [[About_OWASP | 501(c)(3)]] non-profit professional association your support and sponsorship of any meeting venue and/or refreshments is tax-deductible. Financial contributions should only be made online using the authorized online chapter donation button.  To be a &amp;lt;b&amp;gt;SPEAKER&amp;lt;/b&amp;gt; at ANY OWASP Chapter in the world simply review the [[Speaker_Agreement | speaker agreement]] and then contact the local chapter leader with details of what OWASP PROJECT, independent research or related software security topic you would like to present on.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;La fondation OWASP est une [https://www.owasp.org/index.php/Membership association de professionnels] et elle est ouverte à tout intervenant intéressé à en apprendre davantage sur la sécurité applicative. Les chapitres locaux (dont celui de Montréal) sont gérés de façon indépendante et selon un [https://www.owasp.org/index.php/Chapter_Leader_Handbook manuel de directives à respecter].   &lt;br /&gt;
Toute contribution financière au chapitre peut être faite en ligne en utilisant l’icône prévu à cet effet. Pour être conférencier au sein de n’importe quel chapitre à l’échelle mondiale, vous n’avez qu’à prendre connaissance du document [https://www.owasp.org/index.php/Speaker_Agreement &amp;quot;entente avec les conférenciers – speaker agreement&amp;quot;] et à joindre le responsable du chapitre Montréal avec un descriptif du sujet que vous aimeriez aborder et s’il est relié à un projet OWASP, à de la recherche indépendante ou encore le sujet en particulier, concernant la sécurité applicative, que vous souhaitez aborder.&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== [[Image:Circle_owasp_logo_nowhitebackground.png|128px]] Montreal OWASP Team == &lt;br /&gt;
&lt;br /&gt;
Scope of the team is to discuss and plan local activities and meetings &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Chapter Leaders ===&lt;br /&gt;
&lt;br /&gt;
* [mailto:anne.gauthier@owasp.org Anne Gauthier], President/Présidente&lt;br /&gt;
* [mailto:michel.bourque{at}owasp.org Michel Bourque], Chapter coordinator and marketing manager/Coordination et Marketing&lt;br /&gt;
* [mailto:hugo.genesse(at)owasp.org Hugo Genesse], Web content and production manager/Site internet et Production &lt;br /&gt;
* [mailto:olivier.arteau(at)owasp.org Olivier Arteau], Logistic manager/Logistique&lt;br /&gt;
&lt;br /&gt;
==== Chapter leader history ====&lt;br /&gt;
*2008-2010 - Benoit Guerette, founder and chapter leader&lt;br /&gt;
*2011-2012 - Philippe Gamache, chapter leader (vice chapter-leader since 2010)&lt;br /&gt;
*2013-2015 - Jonathan Marcil, chapter leader&lt;br /&gt;
*2016-... - Anne Gauthier, Michel Bourque, Marius Popescu, Hugo Genesse, Olivier Arteau&lt;br /&gt;
&lt;br /&gt;
==== Old board members ====&lt;br /&gt;
*Philippe Pépos Petitclerc&lt;br /&gt;
*Michael Robillard&lt;br /&gt;
*Benoit Guerette (logistics 2015)&lt;br /&gt;
*Alexandre Rimthong&lt;br /&gt;
*Mathieu Binette&lt;br /&gt;
*Sean Coates&lt;br /&gt;
*Jean-Marc Robert&lt;br /&gt;
*Philippe Blondin&lt;br /&gt;
*Benoit Guerette (founder)&lt;br /&gt;
*Laurent Desaulniers&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;headertabs/&amp;gt; &lt;br /&gt;
__NOTOC__ &lt;br /&gt;
[[Category:Canada]]&lt;/div&gt;</summary>
		<author><name>Svieg</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=File:Nsec_2017_midi_conf.jpg&amp;diff=232275</id>
		<title>File:Nsec 2017 midi conf.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=File:Nsec_2017_midi_conf.jpg&amp;diff=232275"/>
				<updated>2017-08-14T19:55:34Z</updated>
		
		<summary type="html">&lt;p&gt;Svieg: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Svieg</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=File:Howto_ctf.jpg&amp;diff=232274</id>
		<title>File:Howto ctf.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=File:Howto_ctf.jpg&amp;diff=232274"/>
				<updated>2017-08-14T19:53:45Z</updated>
		
		<summary type="html">&lt;p&gt;Svieg: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Svieg</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=File:Cas_dattaques_vecus-r.jpg&amp;diff=232273</id>
		<title>File:Cas dattaques vecus-r.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=File:Cas_dattaques_vecus-r.jpg&amp;diff=232273"/>
				<updated>2017-08-14T19:51:21Z</updated>
		
		<summary type="html">&lt;p&gt;Svieg: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Svieg</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=File:Security_tessting_hybrid_approach-r_2.JPG&amp;diff=232272</id>
		<title>File:Security tessting hybrid approach-r 2.JPG</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=File:Security_tessting_hybrid_approach-r_2.JPG&amp;diff=232272"/>
				<updated>2017-08-14T19:44:56Z</updated>
		
		<summary type="html">&lt;p&gt;Svieg: Svieg uploaded a new version of File:Security tessting hybrid approach-r 2.JPG&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Svieg</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=File:Security_testing_hybrid_approach-r_3.jpg&amp;diff=232271</id>
		<title>File:Security testing hybrid approach-r 3.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=File:Security_testing_hybrid_approach-r_3.jpg&amp;diff=232271"/>
				<updated>2017-08-14T19:42:35Z</updated>
		
		<summary type="html">&lt;p&gt;Svieg: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Svieg</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=File:Security_tessting_hybrid_approach-r_2.JPG&amp;diff=232270</id>
		<title>File:Security tessting hybrid approach-r 2.JPG</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=File:Security_tessting_hybrid_approach-r_2.JPG&amp;diff=232270"/>
				<updated>2017-08-14T19:39:38Z</updated>
		
		<summary type="html">&lt;p&gt;Svieg: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Svieg</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=Montr%C3%A9al&amp;diff=232259</id>
		<title>Montréal</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=Montr%C3%A9al&amp;diff=232259"/>
				<updated>2017-08-14T17:40:54Z</updated>
		
		<summary type="html">&lt;p&gt;Svieg: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Welcome &amp;amp; Bienvenue to the OWASP Montréal chapter ==&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:OWASP-Montreal-Logo.png|Logo OWASP Montréal]]&lt;br /&gt;
&lt;br /&gt;
The OWASP Foundation was established in 2001 as an open community and software security resource. Since then, OWASP has grown to be globally recognized as a credible source for application security standards. &amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
OWASP is an open community dedicated to enabling organizations to conceive, develop, acquire, operate, and maintain applications that can be trusted. All of the OWASP tools, documents, forums, and chapters are free and open to anyone interested in improving application security. We advocate approaching application security as a people, process, and technology problem because the most effective approaches to application security include improvements in all of these areas. &amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
OWASP is open to anyone. Anyone can attend OWASP's vendor agnostic local chapter meetings, participate in regional and global conferences, and contribute to the many OWASP projects. And anyone can start a new project, form a new chapter, or lend their expertise to help an OWASP Global Committee.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt;On parle français aussi ! Le chapitre de Montréal organise plusieurs activités gratuites afin de partager les connaissances en sécurité applicative avec la communauté de développeurs et gestionnaires. Suivez-nous sur les réseaux sociaux pour connaître les dates des conférences du midi et des workshops !&amp;lt;/b&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Top documentation from OWASP includes: &lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/index.php/Top_10_2013-Top_10 OWASP TOP 10 : The Ten Most Critical Web Application Security Risks]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/images/3/33/OWASP_Application_Security_Verification_Standard_3.0.1.pdf OWASP ASVS : Application Security Verification Standard]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/images/5/52/OWASP_Testing_Guide_v4.pdf OWASP Testing Guide : Penetration Testing Framework ]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/images/7/78/OWASP_AlphaRelease_CodeReviewGuide2.0.pdf OWASP Code Review Guide : Source Code Analysis Framework ]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/index.php/OWASP_Cheat_Sheet_Series OWASP Cheat Sheet : Best practices guidelines for developers ]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org OWASP Global ]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Chapter Leaders / Responsables du chapitre ===&lt;br /&gt;
&lt;br /&gt;
* [mailto:anne.gauthier@owasp.org Anne Gauthier], President/Présidente&lt;br /&gt;
* [mailto:michel.bourque{at}owasp.org Michel Bourque], Chapter coordinator and marketing manager/Coordination et Marketing&lt;br /&gt;
* [mailto:hugo.genesse(at)owasp.org Hugo Genesse], Web content and production manager/Site internet et Production &lt;br /&gt;
* [mailto:olivier.arteau(at)owasp.org Olivier Arteau], Logistic manager/Logistique&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Special thanks to / Remerciements : &lt;br /&gt;
* Simon Lacasse, Web content / Site internet&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;b&amp;gt; Reach our chapter / Joindre le chapitre &amp;lt;/b&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Follow OWASP's Montreal chapter's activities through social medias, register to events, watch the previous presentations and more! &lt;br /&gt;
&lt;br /&gt;
Suivez les activités du chapitre OWASP Montréal via les réseaux sociaux, inscrivez-vous aux activités, visualisez les anciennes présentations et plus encore! &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;b&amp;gt;[http://lists.owasp.org/mailman/listinfo/owasp-montreal Click here] to join the local chapter mailing list.&lt;br /&gt;
&amp;lt;br/&amp;gt;[http://lists.owasp.org/mailman/listinfo/owasp-montreal Inscrivez-vous ici] à la liste de courriels du chapitre afin de recevoir les dernières nouvelles!&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Want to be part of the community ? &lt;br /&gt;
Devenez membre de notre communauté ! &lt;br /&gt;
[https://www.owasp.org/index.php/Membership_Map Click here / Cliquer ici]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Eb_press_little.gif‎|OWASP Montreal Eventbrite|link=http://owaspmontreal.eventbrite.ca/]] &lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[Image:Yt-brand-standard-logo-630px.png‎|128px|YouTube OWASP Montreal Channel|link=http://www.youtube.com/owaspmontreal]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]   &lt;br /&gt;
[[Image:Speakerdecklogo.png‎|Slides of OWASP Montreal on SpeakerDeck |link=https://speakerdeck.com/owaspmontreal]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Twitter-bird-cropped-onwhite.png|@owaspmontreal on Twitter|link=https://twitter.com/owaspmontreal]]&lt;br /&gt;
[[Image:FacebookSquareLogo.png|OWASP Montreal Facebook page|link=https://www.facebook.com/owasp.montreal]]&lt;br /&gt;
[[Image:LinkedinSquareLogo.png|OWASP Montreal on LinkedIn|link=https://www.linkedin.com/groups/1379007/profile]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
&lt;br /&gt;
== Sponsorship &amp;amp; Membership / Commandite &amp;amp; Adhésion ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Btn_donate_SM.gif|link=http://www.regonline.com/donation_1044369]] to this chapter or become a local chapter supporter.&lt;br /&gt;
&lt;br /&gt;
Or consider the value of [[Membership | Individual, Corporate, or Academic Supporter membership]]. Ready to become a member? [[Image:Join_Now_BlueIcon.JPG|75px|link=https://myowasp.force.com/]]&lt;br /&gt;
&lt;br /&gt;
[http://www.regonline.com/donation_1044369 Donnez] au chapitre ou devenez commanditaire du chapitre local! &lt;br /&gt;
&lt;br /&gt;
[https://myowasp.force.com/ Devenez membre !] Pour en savoir davantage sur les avantages d’une adhésion individuelle, corporative ou en tant qu’institution d’enseignement, [https://www.owasp.org/index.php/Membership cliquez ici]. &lt;br /&gt;
&lt;br /&gt;
[[Category:OWASP Chapter]]&lt;br /&gt;
&lt;br /&gt;
== Chapter Supporters / Commanditaires du chapitre ==&lt;br /&gt;
&lt;br /&gt;
[https://www.owasp.org/images/9/91/OWASP_Membership_Flyer_Montreal.png All details available here / Pour tous les détails ] [[File:Chapter-supporter-owasp-montreal.png|200px|link=https://www.owasp.org/images/9/91/OWASP_Membership_Flyer_Montreal.png]] &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Platinum / Platine ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Gosecure-2.png|GoSecure|link=http://www.gosecure.ca/]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[File:Desjardins2-400x400.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Gold / Or ===&lt;br /&gt;
&lt;br /&gt;
[[Image:ImmunioLogo.jpg|Immunio|link=https://www.immun.io/]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Lunch &amp;amp; Learn / Workshops 2017 =&lt;br /&gt;
&lt;br /&gt;
== HOW TO! Threat Modeling Toolkit ==&lt;br /&gt;
&lt;br /&gt;
[[Image:OWASPMtl-JonathanMarcil-1.jpg]]&lt;br /&gt;
[[Image:OWASPMtl-JonathanMarcil-3.jpg]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/threat-modeling-toolkit]] [https://speakerdeck.com/owaspmontreal/threat-modeling-toolkit See the slides / Voir la présentation]&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 May 23rd, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Shopify Montreal&lt;br /&gt;
&lt;br /&gt;
Threat Modeling is a great way to analyze security early in software development by structuring possible attacks, bad actors and countermeasures over a broad view of the targeted system. This talk will describe basic components of a threat model and how to use them effectively.&lt;br /&gt;
Threat Intelligence is where you gather knowledge about the environment and business assets to determine what are the actual threats. But how do you reconcile that with the current architecture in a useful manner?&lt;br /&gt;
The toolkit presented in this talk will enable you to systematically structure related information using graphical notations such as flow diagram and attack tree. In case you are wondering where to start in your organization, a quick lightweight risk rating methodology will also be proposed.&lt;br /&gt;
And in the end, you’ll see how we can all tie those together and get threat modeling to a point where it’s an efficient application security activity for communication. Doing this will prevent security reviews from missing important things even when chaos prevails during the realization of a project.&lt;br /&gt;
Modeling concepts will be demonstrated with an actual IoT device used as example.&lt;br /&gt;
Presentation will be done in english.&lt;br /&gt;
&lt;br /&gt;
Speaker Bio:&lt;br /&gt;
Jonathan Marcil is the former chapter leader of OWASP Montreal and is now Senior Application Security Engineer at Blizzard Entertainment in beautiful Orange County, California.&lt;br /&gt;
Jonathan has been involved with OWASP for many years and has been behind the Media Project which gathered and promoted AppSec conferences video content in the official OWASP YouTube channel. He was also part of NorthSec CTF event as a challenge designer specialized in Web and imaginative contraptions.&lt;br /&gt;
He is passionate about Application Security and enjoys architecture analysis, code review, threat modeling and debunking security tools. He holds a diploma in Software Engineering from ÉTS Montreal and has more than 15 years of experience in Information Technology and Security.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Merci à nos précieux commanditaires !&lt;br /&gt;
&lt;br /&gt;
== Security Testing: Unlocking the Benefits of a Hybrid Approach ==&lt;br /&gt;
[[Image:Security testing hybrid approach-r.jpg    ]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/hybrid-approach-to-security-testing]] [https://speakerdeck.com/owaspmontreal/hybrid-approach-to-security-testing See the slides / Voir la présentation]&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 April 24th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
As part of their defensive efforts, businesses commonly commission cybersecurity assessments of their web applications; with the aim of identifying any weaknesses in the security controls and ensuring a continually strong cybersecurity posture of their systems.&lt;br /&gt;
&lt;br /&gt;
The classical approach of either secure code review (white box) or penetration testing (black box) assessment have proven to be effective in securing of web applications. The new trend, however, is moving towards the combination of these two approaches; expert consensus is rapidly recognizing the advantages of using a hybrid approach. When applied properly, a hybrid approach can build on the strengths of both white and black box testing, while compensating for their individual shortcomings.&lt;br /&gt;
&lt;br /&gt;
In this presentation, we will examine the details of secure code review and penetration testing, and run demos to contrast their respective strengths and weaknesses. We will also examine why a hybrid approach can produce more complete and relevant assessment results. To conclude, we will cover proven approaches, and practical techniques, on how you can start leveraging a hybrid approach to web application assessments today.&lt;br /&gt;
&lt;br /&gt;
Anne Gauthier is an application security analyst at GoSecure. Anne is also the president of the Montreal Chapter of OWASP – the industry standard for web application security. With a penetration testing background, she specializes in secure code reviews and in helping companies to improve their software development lifecycle (SDLC) according to industry best practices. Anne is CSSLP, GWAPT and GSSP-JAVA certified. She obtained a Software Engineering bachelor’s degree from Ecole de Technologie Supérieure in Montréal and is now pursuing a Master of Engineering (MEng) degree in Information Systems Security at Concordia University. She is the author of the Project 201 Security blog.&lt;br /&gt;
&lt;br /&gt;
Merci à nos précieux commanditaires !&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;HOW-TO&amp;quot; NIGHT ! Tout sur les CTFs (Capture The Flag) ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 April 4th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Shopify&lt;br /&gt;
&lt;br /&gt;
Cette nouvelle soirée &amp;quot;How-To&amp;quot; Night d'OWASP Montréal vise à présenter les CTFs (une compétition Capture The Flag) et aider les équipes à démarrer et à continuer à évoluer dans leurs pratique de la cyber sécurité pratique. L'objectif est d'outiller les participants en leur fournissant des ressources techniques et des contacts afin de les aider à progresser.&lt;br /&gt;
&lt;br /&gt;
Les éléments discutés seront:&lt;br /&gt;
&lt;br /&gt;
- Composition optimale d’une équipe : Fonctionnement d’une équipe de CTF et les principaux rôles (chef d’équipe, cryptographie, application web, rétro ingénierie et les causes perdues).&lt;br /&gt;
&lt;br /&gt;
- Pourquoi faire des CTFs? Discussion sur les différents styles (jeopardy, attack/defense, etc.), quels sont les problèmes fréquemments rencontrés + plusieurs anecdotes intéressantes (et drôles).&lt;br /&gt;
&lt;br /&gt;
- Trucs de Mr. Unikoder : Le créateur du fameux site ringzer0team, soit un des plus gros sites pour apprendre la résolution de problèmes de CTF (https://ringzer0team.com/) Apprenez des trucs du meilleur, sur comment débuter et interpréter un challenge web, binaire et crypto avec des trucs réels du métier.&lt;br /&gt;
&lt;br /&gt;
Matériel requis :&lt;br /&gt;
&lt;br /&gt;
    Votre légendaire enthousiasme&lt;br /&gt;
&lt;br /&gt;
Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
&lt;br /&gt;
Places limitées. Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Shopify pour l'événement.&lt;br /&gt;
&lt;br /&gt;
Présentateurs :&lt;br /&gt;
&lt;br /&gt;
Charles Hamilton, Senior Consultant chez Mandiant, FireEye, Inc.&lt;br /&gt;
&lt;br /&gt;
Olivier Bilodeau, Cybersecurity Research Lead at GoSecure&lt;br /&gt;
&lt;br /&gt;
Laurent Desaulniers, Senior Security Solution Specialist at Bell Canada&lt;br /&gt;
&lt;br /&gt;
== NorthSec - Applied Security Event ==&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 April 4th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
NorthSec: La plus grande compétition et conférence en cyber sécurité au Canada&lt;br /&gt;
&lt;br /&gt;
NorthSec est un organisme sans but lucratif qui organise une conférence et une compétition de sécurité de type &amp;quot;Capture-The-Flag&amp;quot; (CTF) et des formations. Avec plus de 400 participants présents sur le site pour la compétition, c’est la plus grande compétition du genre au monde.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
La conférence, dans sa 3e année, attire des présentateurs internationaux avec du contenu technique exclusif. L’ajout des séances de travail (workshops) devrait plaire aux plus chevronnés des binaires.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Des formations de 3 jours sont offertes avant la conférence: &amp;quot;Advanced Web Application Security&amp;quot; par Philippe Arteau et &amp;quot;Malware and Memory Forensics&amp;quot; par Michael Ligh, co-auteur des livres &amp;quot;Malware Analyst Cookbook&amp;quot; et &amp;quot;The Art of Memory Forensics&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
NorthSec est situé au Marché Bonsecours dans le Vieux-Port de Montréal au printemps du 15 au 21 mai 2017.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
La présentation couvrira:&lt;br /&gt;
&lt;br /&gt;
- Le plan pour 2017&amp;lt;br/&amp;gt;&lt;br /&gt;
- Ce qui différencie NorthSec&amp;lt;br/&amp;gt;&lt;br /&gt;
- Comment équilibrer une compétition pour les débutants et les experts&amp;lt;br/&amp;gt;&lt;br /&gt;
- Comment bâtir une infrastructure basée sur les conteneurs qui gère 50 équipes dans quelques serveurs sans qu’ils ne se partagent de machines virtuelles&amp;lt;br/&amp;gt;&lt;br /&gt;
- Comment faire du pain au levain à grande échelle&amp;lt;br/&amp;gt;&lt;br /&gt;
- Présentation de quelques défis et solutions&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Les présentateurs:&lt;br /&gt;
&lt;br /&gt;
- Gabriel Tremblay, Président, Delve Labs&amp;lt;br/&amp;gt;&lt;br /&gt;
- Olivier Bilodeau, VP Formations, Co-fondateur MontréHack, GoSecure&amp;lt;br/&amp;gt;&lt;br /&gt;
- Pierre-David Oriol, VP Conférences, Delve Labs&amp;lt;br/&amp;gt;&lt;br /&gt;
- Benoit Guérette, VP Partenaires, Desjardins&amp;lt;br/&amp;gt;&lt;br /&gt;
- Laurent Desaulniers, Tisserand de drapeaux, Bell Canada&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Merci à nos précieux commanditaires !&lt;br /&gt;
&lt;br /&gt;
== Sécurité des applications : Les fondements ==&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 March 20th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
OWASP Montréal est fier d’accueillir au Midi Conférence du mois de mars, Mme Tanya Janca, Co-Leader du chapitre OWASP Ottawa et spécialiste de la sécurité applicative au sein du Gouvernement fédéral.&lt;br /&gt;
&lt;br /&gt;
La conférence « Les fondements de la sécurité des applications » sera présentée en anglais.&lt;br /&gt;
&lt;br /&gt;
Session Description : Everyone has heard about the problem; everyone is “getting hacked”. But what is the answer? From scanning your code with a vulnerability scanner to red teaming exercises, developer education programs and bug bounties, this talk will take the audience through all the possibilities of an extensive application security program, with a detailed explanation of each part.&lt;br /&gt;
&lt;br /&gt;
Bio : Tanya Janca is an application security evangelist, a web application penetration tester and vulnerability assessor, a secure code reviewer, an ethical hacker, the Co-Leader of the OWASP Ottawa chapter, and has been developing software since the late 90’s. She has worn many hats and done many things, including; Custom Apps, Ethical Hacking, COTS, Incident Response, Enterprise Architect, Project and People Management, and even Tech Support. She is currently helping the Government of Canada secure their web applications.&lt;br /&gt;
&lt;br /&gt;
Merci à notre commanditaire principal de cet événement: Ubitrak!&lt;br /&gt;
&lt;br /&gt;
== WORKSHOP ! Server Side Template Injection (SSTI) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-okiok-SSTI-r.jpg | WORKSHOP ! Server Side Template Injection (SSTI) ]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/workshop-server-side-template-injection-ssti]] [https://speakerdeck.com/owaspmontreal/workshop-server-side-template-injection-ssti See the slides / Voir la présentation]&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 22 Février 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Shopify Montréal&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
OWASP Montreal vous invite à un atelier portant sur la sécurité des applications web supportant les moteurs de template (Template Engine). Le principe de séparation entre la présentation du site (code HTML statique) et de son contenu dynamique facilite la création de documents HTML et la capacité à modifier l'apparence du site sans mélanger le traitement et le rendu de la page. L'utilisation de moteurs de template amène de nouveaux enjeux de sécurité. Les vulnérabilités de type Server Side Template Injection (SSTI) sont exploitables à travers les données (non fiables) fournies par l'utilisateur et conduisent à l'exécution de code arbitraire (RCE) sur le serveur hébergeant l'application web.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ce workshop a pour but d'introduire cette classe de vulnérabilité à travers différents cas d'implémentation (php, java, python).&lt;br /&gt;
Nous verrons comment identifier et exploiter ces vulnérabilités et de quelle manière un attaquant peut &lt;br /&gt;
s'y prendre pour exécuter du code arbitraire sur le serveur afin d'en prendre le contrôle.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Niveau : Intermédiaire&amp;lt;br/&amp;gt;&lt;br /&gt;
Matériel requis :&lt;br /&gt;
* Votre portable&lt;br /&gt;
* Votre distribution Linux/Unix de votre choix&lt;br /&gt;
* Votre proxy Web de votre choix&lt;br /&gt;
&lt;br /&gt;
Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
Places limitées. Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Shopify pour l'événement.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Présentateur : Gérôme Dieu&amp;lt;br/&amp;gt;&lt;br /&gt;
Gérôme Dieu cumule plus de 7 années d’expérience en technologies de l’information et en sécurité. &lt;br /&gt;
Il œuvre à titre de conseiller senior en sécurité de l’information au sein de la firme OKIOK. Ces dernières années, il a acquis une expertise dans le domaine de la sécurité des applications web aussi bien d'un point de vue offensif que défensif. En plus de réaliser des tests d’intrusion pour des clients internationaux, Gérôme s’implique dans la recherche et développement afin de maintenir à la fine pointe de la technologie les tests d'intrusion et d'analyse de vulnérabilités. &amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Merci à Shopify d'héberger l'événement !&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Shopify Logo-r.png| Shopify | link=https://www.shopify.com/]]&lt;br /&gt;
== Le courriel en 2017 – risques et menaces pour tous ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Zero spam 2.jpg|Le courriel en 2017 – risques et menaces pour tous]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://www.youtube.com/watch?v=HX2vcijcCWw ]] [https://www.youtube.com/watch?v=HX2vcijcCWw Watch the conference / Regarder la conférence ]&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 Le 23 janvier 2017 à midi&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
Monsieur Poellhuber nous brossera un tableau du phénomène grandissant du rançongiciels et de l'hameçonnage, personnification.&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
- Par les années passées, la menace courriel se résumait principalement en un fort volume de contenu simplement indésirable. Aujourd’hui la menace a passablement évolué. Quels sont les véritables risques actuels associés au courriel ? Rançongiciels, hameçonnage, personnification. Cette conférence présentera les nouveaux défis de sécurité pour les organisations qui doivent composer avec des attaques de plus en plus sophistiquées et de plus en plus ciblées tout en protégeant leur réputation. Des exemples biens réels, drôles et moins drôles seront disséqués pour bien dessiner l’ampleur de l’enjeu.&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
M. David Poellhuber, Chef de l’exploitation, ZEROSPAM Sécurité Inc&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note biographique :&amp;lt;br/&amp;gt;&lt;br /&gt;
Monsieur David Poellhuber oeuvre dans l’industrie de la sécurité informatique depuis quinze ans. Il a été conférencier dans plusieurs forums de sécurité au Canada et est maintenant reconnu comme une autorité en matière de sécurité du courriel. Il a fondé ZEROSPAM Sécurité en 2003, le premier service Québécois externalisé de sécurité du courriel infonuagique qui se distingue par sa convivialité, son efficacité et ses technologies de détection proactives.&amp;lt;br/&amp;gt;&lt;br /&gt;
Audience :  Généralistes et spécialistes de la sécurité des TI &lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Merci à Ubitrack pour le repas et à Desjardins d'héberger l'événement!&lt;br /&gt;
&lt;br /&gt;
[[Image:Ubitrak-r2.jpg|Ubitrak|link=http://www.ubitrak.com/fr/]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&lt;br /&gt;
== Effective XSS Mitigation ==&lt;br /&gt;
&lt;br /&gt;
[[Image:XSS mitigation.jpg | Effective XSS Mitigation ]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=http://slides.com/olivierarteau/xss-mitigation ]] [http://slides.com/olivierarteau/xss-mitigation See the slides / Voir la présentation]&lt;br /&gt;
&lt;br /&gt;
WHEN &lt;br /&gt;
 18 Janvier 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Google Montréal&lt;br /&gt;
&lt;br /&gt;
FRANÇAIS/ENGLISH&amp;lt;br/&amp;gt;&lt;br /&gt;
La mitigation de XSS a été un sujet important au cours des dernières années. Les navigateurs ont implémenté, en autre, deux fonctionnalités pour mitiger leur impact : l'entête &amp;quot;XSS-Protection&amp;quot; et l'entête &amp;quot;Content-Security-Policy&amp;quot;. Par contre, obtenir une mitigation contre les XSS efficace est souvent plus complexe que l'on pense. Cet atelier couvrira les deux entêtes. Il expliquera comme il est possible de contourner ces protections et ce qu'il est possible de faire pour se protéger. Des exercices de type &amp;quot;offensif&amp;quot; et &amp;quot;défensif&amp;quot; seront proposés.&lt;br /&gt;
Mitigation for XSS as been an important topic in the last few years. Browsers have implemented two main functionalities to help mitigate the impact of XSS : the &amp;quot;XSS-Protection&amp;quot; header and the &amp;quot;Content-Security-Policy&amp;quot; header. But, getting an effective XSS mitigation of those headers is trickier than it may seem. This workshop will cover both of those headers. It will explain how bypass of those protection work and what you can do about it. It will have both &amp;quot;defensive&amp;quot; exercises and &amp;quot;offensive&amp;quot; exercises.&lt;br /&gt;
Niveau : débutant/intermédiaire&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Matériel requis :&lt;br /&gt;
&lt;br /&gt;
Votre portable&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
&lt;br /&gt;
Places limitées. Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Google pour l'événement.&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Présentateur : Olivier Arteau&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Olivier Arteau est un professionnel en sécurité informatique depuis quelques années et fait partie de l’équipe de test d’intrusion de Desjardins. Il est aussi un amateur de CTF qui a gagné à plusieurs reprises le CTF du NorthSec avec l’équipe HackToute et participe fréquemment à d’autres CTF avec l’équipe DCIETS.&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Merci à Google d'héberger l'événement! &lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-zap-4-r.jpg | Google | link=https://www.google.ca/ ]]&lt;br /&gt;
&lt;br /&gt;
= Lunch &amp;amp; Learn / Workshops 2015-2016 =&lt;br /&gt;
&lt;br /&gt;
== WORKSHOP ! Top 10 OWASP - Unleash the threats ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-top10.jpg | WORKSHOP! Top 10 OWASP - Unleash the threats ]]&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 30 novembre 2016 de 17h30 à 20h30&lt;br /&gt;
WHERE&lt;br /&gt;
 Immunio @ WeWork&lt;br /&gt;
&lt;br /&gt;
De nos jours, la sécurité applicative est essentielle dans l’écosystème des entreprises de toutes tailles. Les vecteurs d’attaques sont multiples, les vulnérabilités de sécurité dans les applications peuvent être désastreuses et les impacts d’un « Hack » peuvent être irréversibles pour l’entreprise; vols de données sensibles, perte de réputation, perte de $$$$$, etc.&lt;br /&gt;
L’objectif du workshop est de comprendre la base sur les vulnérabilités de sécurité dans les applications et les techniques d’exploitation utilisées par les pirates informatiques, en plus de connaître les bonnes pratiques de développement en matière de sécurité applicative. &lt;br /&gt;
Avec l'aide de WebGoat, Damn Vulnerable Web Application et de Kali Linux, vous pourrez participer&lt;br /&gt;
à l'exploitation des applications et découvrir les techniques utilisées par les attaquants.&lt;br /&gt;
&lt;br /&gt;
Niveau : débutant&lt;br /&gt;
&lt;br /&gt;
Matériel requis :&lt;br /&gt;
 Votre portable&lt;br /&gt;
 Kali Linux&lt;br /&gt;
 La VM du workshop, envoyée aux participants&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
&lt;br /&gt;
Places très limitées (nb = 10). Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Immunio &amp;amp; WeWork pour l'événement.&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Présentateur : Christian Leclerc&lt;br /&gt;
&lt;br /&gt;
Christian est spécialisé en conception et développement de solutions web sécuritaires. Tout au long de sa carrière, il a acquis une vaste expertise sur plusieurs types de technologies et méthodologies, intégré la sécurité dans le cycle de développement d’applications, effectué des revues de code sécurité, déployé des outils d’analyse des vulnérabilités et mis en place des systèmes d’authentification. De plus, il a participé à la conception et au développement de solutions sécuritaires de pointe comme la signature électronique à l’aide d’une infrastructure à clé publique (PKI), les authentifications fortes, le Registre des consentements au don d'organes et de tissus (RDOQ.org) et la migration de plusieurs applications web vers un environnement SOA (Service Oriented Architecture). &lt;br /&gt;
&amp;lt;br&amp;gt;Merci à Immunio &amp;amp; WeWork d'héberger l'événement!&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:Immunio-horizontal-r.png|Immunio|link=https://www.immun.io/]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[Image:Wework-r.jpg|WeWork|link=https://www.wework.com/]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Histoire d'un Hack ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Histoire-dun-hack-r.jpg | Histoire d'un Hack ]]&lt;br /&gt;
&lt;br /&gt;
WHEN &lt;br /&gt;
 21 novembre 2016 à midi&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
Pour son activité du mois de novembre, OWASP Montréal propose à la communauté de la sécurité des TI et aux gestionnaires de faire l'autopsie d'une attaque de haute voltige sur un site web et des outils mis à la disposition par OWASP.&lt;br /&gt;
 &lt;br /&gt;
Bernard Bolduc cumule plus de 17 années d’expérience en technologies de l’information et en sécurité. Il œuvre à titre de conseiller senior en sécurité de l’information au niveau d’entreprise de classe nationale et internationale.&lt;br /&gt;
 &lt;br /&gt;
Bernard se spécialise en sécurité Unix, applicative et en gestion de la sécurité des télécommunications. Il combine ces expertises techniques afin d’obtenir des résultats probants et efficaces pour ces clients des secteurs bancaire, télécommunication et multimédias, de l’énergie ou des services publiques. Tout au long de sa carrière, Bernard s’est toujours maintenu à jour sur les dernières menaces de sécurité technologique et commerciale en assistant à des formations spécialisées et d'échanger avec un grand nombre de partenaires dans l'industrie de la sécurité.&lt;br /&gt;
 &lt;br /&gt;
La conférence débute à midi.&lt;br /&gt;
 &lt;br /&gt;
La conférence vous donne droit à 1 CPE et pour les 50 premières personnes, un lunch gratuit.&lt;br /&gt;
 &lt;br /&gt;
Merci à Desjardins d'héberger l'événement!&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Workshop ! Création de votre première extension OWASP ZAP (ou BurpSuite) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-zap-mix.jpg | Workshop ! Création de votre première extension OWASP ZAP (ou BurpSuite)]]&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 11 novembre 2016 de 18h à 21h&lt;br /&gt;
&lt;br /&gt;
WHERE &lt;br /&gt;
 Google Montréal&lt;br /&gt;
&lt;br /&gt;
OWASP Zed Attack Proxy (ZAP) est un scanneur de vulnérabilités et un outil de débogage HTTP. Ce type d'outil est crucial dans un test d'intrusion web et contient un lot intéressant de fonctionnalités. Cela dit, il est possible d'étendre les fonctionnalités. Plusieurs types d'extension sont possibles : vue alternative pour les requêtes ou les réponses, scanneur passif des réponses, scanneur actif produisant des requêtes, etc.&lt;br /&gt;
&lt;br /&gt;
Plusieurs options seront données, par exemple :&lt;br /&gt;
&lt;br /&gt;
 Détection automatique de flag dans les sources&lt;br /&gt;
 Scanneur actif asynchrone DNS&lt;br /&gt;
 Ou votre propre idée&lt;br /&gt;
&lt;br /&gt;
Pour chacune des suggestions, des squelettes de code seront fournis pour les APIs de ZAP. Pour les utilisateurs de BurpSuite, des directives analogues seront également données.&lt;br /&gt;
&lt;br /&gt;
Niveau : débutant / intermédiaire&lt;br /&gt;
&lt;br /&gt;
Matériel requis&lt;br /&gt;
&lt;br /&gt;
 Votre portable&lt;br /&gt;
 [https://www.owasp.org/index.php/OWASP_Zed_Attack_Proxy_Project OWASP ZAP (gratuit)]&lt;br /&gt;
 [https://portswigger.net/burp/download.html BurpSuite]&lt;br /&gt;
 Éditeur de code pour Java, Python ou Ruby&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Présentateur : Philippe Arteau&lt;br /&gt;
&lt;br /&gt;
Philippe est un chercheur en cybersécurité chez GoSecure. Il est l'auteur de l'outil d'analyse statique Java &amp;quot;Find Security Bugs&amp;quot;. Il a découvert des vulnérabilités importantes dans les logiciels populaires tels que Google Chrome, Dropbox, Paypal, RunKeeper et Jira. Il a présenté dans différentes conférences incluant Black Hat USA, Black Hat Europe, ATL Sec Con, NorthSec, Hackfest (QC) et JavaOne. Il a développé de nombreux plug-ins pour les outils de proxy BurpSuite et OWASP ZAP (Retire.js, Reissue Request Script, PDF preview et Image Metadata). Il a fait également des contributions à d'autres plug-ins comme J2eeScan.&lt;br /&gt;
&lt;br /&gt;
Merci à Google d'héberger l'événement! &lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-zap-4-r.jpg | Google | link=https://www.google.ca/ ]]&lt;br /&gt;
&lt;br /&gt;
==Logiciel de rançon (Ransomware) s'attaque au domaine de la santé==&lt;br /&gt;
&lt;br /&gt;
[[Image:HackingHealth-2.jpg | Logiciel de rançon (Ransomware) s'attaque au domaine de la santé ]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/ransomware-and-healthcare-hacking-health ]] [https://speakerdeck.com/owaspmontreal/ransomware-and-healthcare-hacking-health See the slides / Voir la présentation]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;(Conférence en anglais)&lt;br /&gt;
Pour le lancement de la saison 2016 - 2017, OWASP Montréal propose à la communauté de la sécurité des TI et aux gestionnaires de la santé une incursion dans le monde du logiciel malveillant ciblant le domaine de la santé.&amp;lt;br/&amp;gt;&lt;br /&gt;
Cette conférence s'intége dans le Coopérathon co-organisé par le Mouvement Desjardins et Hacking Health.&amp;lt;/b&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Le domaine de la santé serait devenu une cible privilégiée des campagnes de ransomware parce que l'industrie a souvent payé la rançon demandée pour récupérer les données confidentielles et vitales de ses clients. Monsieur Ed Gershfang nous brossera un portrait du phénomène et des meilleures pratiques à mettre en place en matière de sécurité applicative.&lt;br /&gt;
Ed Gershfang possède une expérience solide dans l'infrastructure informatique et plus de 6 ans d'expérience dans les domaines de la sécurité de l'information, de la vulnérabilité, de la gouvernance et de la gestion des risques. Il était directeur de la sécurité pour la société PeriGen, un chef de file de développement de logiciels médicaux en Israël.&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== La sécurité applicative vue par un pentesteur ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Juin2016-OWASPMtl.jpg | OWASP Montréal reçoit Mario Contestabile, Pentester de renom ]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
From Left to Right : Isabelle Lusseyran, Head of Development at Hacking Health. Eduard Gershfang Information Security Analyst at WSP | Parsons Brinckerhoff.&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/owasp-montreal-recoit-mario-contestabile ]] [https://speakerdeck.com/owaspmontreal/owasp-montreal-recoit-mario-contestabile See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Pour clore la saison 2015 – 2016, OWASP Montréal est fier d’accueillir au Midi Conférence un des architectes de renom du développement applicatif au Canada, monsieur Mario Contestabile.&lt;br /&gt;
En tant qu’auteur de plusieurs centaines de tests d’intrusion, il connait tous les rouages de ce qu’est véritablement une application Web «sécurisée». Mais avez-vous déjà remarqué que les rapports de tests d’intrusion mentionnent rarement, voir jamais : «Votre site est très difficile à pirater. Félicitations !» ?&lt;br /&gt;
Et qu’en est-il de ces rapports qui contiennent des dizaines de soi-disant vulnérabilités ? Est-ce que cela signifie d’emblée que l’application devrait être mise hors ligne ?  &lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Lors de cette conférence, nous examinerons des rapports concrets (ambigus) de vulnérabilités et nous les analyserons afin de mieux comprendre si elles représentent une véritable menace, ou si elles ne servent qu’à «remplir» les rapports.&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Avec son expertise en protection et en attaque d’applications Web, il abordera les points suivants :&lt;br /&gt;
Comment pouvez-vous sélectionner des systèmes de façon à mieux exécuter des protections de sécurité ?&lt;br /&gt;
Éviter certains pièges dans votre application Web qui rendent les attaques plus faciles et la protection plus difficile.&lt;br /&gt;
De nos jours, que peuvent faire les développeurs à l’intérieur de systèmes communs, qui puisse me rendre la tâche plus ardue en tant que « hacker »?&lt;br /&gt;
Pouvons-nous exiger de meilleurs rapports de la part des firmes de sécurité?&lt;br /&gt;
À quoi devrions-nous nous attendre de la part d’un « pentesters »?&lt;br /&gt;
Comment pouvons-nous savoir si le « pentester » a vérifié les failles de l’application et qu’il n’a pas simplement utilisé un scanneur?&lt;br /&gt;
Et enfin, comment pouvons-nous aider les « ethical hackers » à obtenir un meilleur rendement lors d’un test d’intrusion?&lt;br /&gt;
Il expliquera le sujet en détails, et ensemble, nous verrons de quelles façons les développeurs d’applications peuvent exploiter le savoir-faire des « pentesters », et comment nous pouvons faire en sorte qu’une application Web soit protégée.&lt;br /&gt;
Biographie :&lt;br /&gt;
Mario Contestabile est reconnu comme l’un des experts en sécurité les plus réputés au Canada. Son expertise, construire et protéger votre plateforme applicative. Ancien développeur C++ et Java, Mario partage ses nombreuses connaissances en « ethical hacking » et en développement de codes sécurisé.  &lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Tuesday, 14 June 2016 from 12:00 PM to 1:00 PM (EDT) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Comment protéger les applications mobiles? ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Avril2016-OWASPMtl.png | Comment protéger les applications mobiles? ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/comment-proteger-les-applications-mobiles ]] [https://speakerdeck.com/owaspmontreal/comment-proteger-les-applications-mobiles See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Dans le cadre des Midis Conférence à l'Espace Desjardins, l'équipe OWASP Montréal vous invite à assister à une présentation sur les vulnérabilités les plus communes associées aux appareils mobiles. &lt;br /&gt;
Marie-Claire Willig détaillera entre autres comment stocker de façon sécuritaire les données de l’application mobile ainsi que protéger l’application contre des attaques externes. Des outils simples vous seront dévoilés pour détecter ces vulnérabilités.&lt;br /&gt;
Marie-Claire est une professionnelle d'expérience en sécurité appliquée.&lt;br /&gt;
Une grande partie de son intérêt professionnel réside actuellement dans un domaine assez niche, soit la revue de code sécuritaire, un fondement important de tout cycle de développement sécuritaire en entreprise.&lt;br /&gt;
Au sein de l'équipe de sécurité technologique Desjardins, elle est, en autre, responsable de former les développeurs (Java et .NET principalement) afin de les sensibiliser aux meilleures pratiques de développement sécuritaire.&lt;br /&gt;
Également, elle est une professionnelle des tests d'intrusion sur les applications web, les applications mobiles ainsi que l'infrastructure réseau.&lt;br /&gt;
Bienvenue à tous&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 20 April 2016 from 12:15 PM to 1:00 PM (EDT) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== NorthSec, Le plus gros événement de cybersécurité appliquée au Canada ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Mars2016-OWASPMtl.jpg | NorthSec, Le plus gros événement de cybersécurité appliquée au Canada ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/YQtvltQYs7Y]] [https://youtu.be/YQtvltQYs7Y Watch the conference / Regarder la conférence] &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
OWASP Montréal est fier d’inviter au Midi Conférence de mars, NorthSec est le plus gros événement de sécurité appliquée au Canada qui comprend deux jours de formation, deux jours de conférences ainsi qu’une compétition du genre « capture the flag » (CTF) de trois jours.&lt;br /&gt;
Gabriel Tremblay, Benoit Guerette, Pierre-David Oriol et Laurent Desaulniers viendront vous parler de cet organisme sans but lucratif dynamique qui est géré par une équipe de bénévoles passionnés qui donnent à chaque année leur énergie et leur temps pour soutenir la communauté de la sécurité de l’information.&lt;br /&gt;
Le volet compétition, l’épreuve maîtresse, est présentée sous forme d’un scénario qui rend cohérent une centaine de défis techniques. Les équipes de participants attaquent l’infrastructure de compétition pour soutirer des drapeaux (flags) à travers un ensemble de vulnérabilités présentes comme de l’injection SQL, des XSS ou encore l’exploitation d’exécutables sur systèmes embarqués. Quelques exemples de défis des années passées seront également présentés.&lt;br /&gt;
Le volet conférence, qui est à sa 2ème année, met de l’avant plusieurs présentations techniques touchant la sécurité applicative mais aussi l’éthique et leurs impacts sociaux. Certaines présentations confirmées seront dévoilés.&lt;br /&gt;
Le tout nouveau volet formation propose deux formations en sécurité applicative de calibre international (anglais) : “Advanced Web Security Testing with Burp Pro” et “Modern Object-Oriented Malware Reverse Engineering”.&lt;br /&gt;
Venez aussi, découvrir comment l'équipe est partie d'une idée en 2012 pour se rendre à un évènement d'envergure, qui rassemblera plus de 600 professionnels, étudiants et autres passionnés de sécurité appliquée lors de la 4ème édition qui aura lieu du 17 au 22 mai 2016 au Marché Bonsecours.&lt;br /&gt;
Finalement, la mission, la vision ainsi que les activités sociales de la semaine de NorthSec sont aussi au menu de cette présentation qui sera suivie d’une période de questions.&lt;br /&gt;
&lt;br /&gt;
Gabriel Tremblay, Delve Labs, Président&lt;br /&gt;
Benoit Guerette, Desjardins, VP Finances&lt;br /&gt;
&lt;br /&gt;
Pierre-David Oriol, Delve Labs, VP Conférence&lt;br /&gt;
Laurent Desaulniers, Bell Canada, Artisant de drapeaux&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 23 March 2016 from 12:00 PM to 1:00 PM (EDT) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== La sécurité applicative et l'hameçonnage - February 24th ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Fevrier2016-OWASPMtl.jpg | La sécurité applicative et l'hameçonnage ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/1RYlOiIENjQ]] [https://youtu.be/1RYlOiIENjQ Watch the conference / Regarder la conférence] &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
De nos jours, une des méthodes les plus efficaces pour contourner les périmètres de sécurité externes est l'hameçonnage conjointement avec l’abus de certaines technologies Web.&lt;br /&gt;
&lt;br /&gt;
Dans le cadre ses activités, OWASP Montréal est heureux d'inviter d'accueillir, l'équipe OKIOK qui présentera les impacts liés à ce type d'attaque, tel que vu et expérimenté en entreprise ainsi que les plans d'action pour traiter ces risques. La présentation abordera aussi bien la sécurité web et applicatives, des systèmes informatiques ainsi que de la sécurité physique de centres de données. &lt;br /&gt;
&lt;br /&gt;
    Capture d'informations sensibles par imitations de portails Web ;&lt;br /&gt;
    Authentification Web par 2-facteurs ;&lt;br /&gt;
    Injection SMTP dans des formulaires Web ;&lt;br /&gt;
    Attaque de type “Drive-by-download”;&lt;br /&gt;
    Prise de contrôle à distance à travers des flux HTTP;&lt;br /&gt;
    Attaque de CSRF à partir de courriels ;&lt;br /&gt;
    Attaque d'hameçonnage basée sur des achats par Internet (ex : PayPal).&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
When&lt;br /&gt;
 Wednesday, 24 February 2016 from 12:00 PM to 1:15 PM (EST) - Add to Calendar &lt;br /&gt;
Where&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest Montreal, Quebec CA&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Internet of {Things, Threats} - January 20th ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Janvier2016-OWASPMtl-R.png | Internet of {Things, Threats} ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=http://gosecure.github.io/presentations/2016-01-20_owasp-mtl/internet-of-threats.html ]] [http://gosecure.github.io/presentations/2016-01-20_owasp-mtl/internet-of-threats.html See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
De plus en plus de périphériques se retrouvent connectés sur Internet. Sous la bannière &amp;quot;Internet of Things&amp;quot; (IoT) ces équipements, que ce soit une pompe à insuline ou un système de caméra de sécurité, tournent généralement sous un système GNU/Linux embarqué d'architecture MIPS ou ARM. La difficulté de mettre à jour ces équipements ainsi que le peu d'effort mis dans la sécurité des systèmes ou la sécurité applicative en font des cibles de choix. Ces derniers mois, nous avons analysé plusieurs logiciels malveillants ciblant ces architectures. Que ce soit par l'exploitation d'une vulnérabilité (Shellshock) ou encore un défaut de configuration, ces systèmes exposés sur Internet peuvent être compromis.&lt;br /&gt;
&lt;br /&gt;
Notre présentation couvrira quelques une de ces analyses:&lt;br /&gt;
&lt;br /&gt;
* Linux/Moose, un malware se propageant automatiquement qui fraude les réseaux sociaux (par exemple Facebook, Twitter et YouTube)&lt;br /&gt;
* LizardSquad et acteurs étrangers qui utilisent des systèmes embarqués compromis pour réaliser des dénis de service distribué (DDoS) &lt;br /&gt;
* Win32/RBrute est un logiciel malveillant qui tente de changer les paramètres de routeurs dans le but de faire du &amp;quot;DNS poisoning&amp;quot;. Il a été distribué par le populaire botnet Sality.&lt;br /&gt;
* Un kit d'exploits qui utilise seulement le navigateur de leur victime avec le même objectif, c'est-à-dire faire du &amp;quot;DNS poisoning&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Enfin, des conseils seront proposés à l'audience pour l'aider à se protéger de ces menaces.&lt;br /&gt;
&lt;br /&gt;
'''Thomas Dupuy''' (twitter: @nyx__o)&lt;br /&gt;
&lt;br /&gt;
Thomas est chercheur en logiciel malveillant chez ESET Canada Recherche. Bon vivant, Thomas déjeune en &amp;quot;reversant&amp;quot; des binaires, contribue à quelques projets open source durant le diner (yara, yara rules, pefile, APTnotes) et la nuit participe à des &amp;quot;Hacking Games&amp;quot; (Capture The Flag). Curieux de nature Thomas analyse des malware aux architectures &amp;quot;exotiques&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Olivier Bilodeau''' (twitter: @obilodeau)&lt;br /&gt;
&lt;br /&gt;
Olivier Bilodeau is the head of Cybersecurity Research at GoSecure a consultancy firm specializing in cybersecurity services for the public and private sector. With more than 10 years of infosec experience, Olivier worked on Unix servers at Bell Canada, managed a portion of Air Canada's network, wrote open source network access control software at Inverse and worked as a Malware Researcher at ESET. He likes to reverse engineer everything that crosses his path, participate in information security capture-the-flag competitions, hack open source code and brew beer. He has spoken at various conferences (Defcon, Botconf, VirusBulletin, Derbycon, ...), used to lecture on information security at ETS University in Montreal, drives the NorthSec Hacker Jeopardy and co-organizes the MontreHack capture-the-flag training initiative. His primary research interests include reverse-engineering tools, Linux and/or embedded malware and honeypots.&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Survivre aux attaques DDOS applicatives ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Decembre2015-OWASPMtl.jpg | Survivre aux attaques DDOS applicatives ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Survivre aux attaques DDOS (Distributed Denial-Of-Service) applicatives.&lt;br /&gt;
Cette conférence s'adresse aux professionnels et gestionnaires des TI.&lt;br /&gt;
Conférencier : Christian Shink, ing., CSSLP, ingénieur système chez Radware, manufacturier spécialisé dans la prévention des attaques DDOS. Il fut également consultant en sécurité applicative chez In Fidem.&lt;br /&gt;
Objectifs de la conférence:&lt;br /&gt;
Présenter les tendances actuelles en matière d'attaques DDOS applicatives.&lt;br /&gt;
Renseigner les participants sur les techniques et stratégies pour contrer ces attaques illustrées à partir de cas vécus.&lt;br /&gt;
Démystifier certains mythes en ce qui concernent les façons efficaces de protéger les applications contre des attaques DDOS.&lt;br /&gt;
Date : 16 décembre 2015&lt;br /&gt;
Heure : 11h45&lt;br /&gt;
La conférence débute à 12h00 et se termine à 12:55.&lt;br /&gt;
Un lunch sera servi.&lt;br /&gt;
Réservez maintenant!&lt;br /&gt;
1 CPE&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 16 December 2015 from 11:45 AM to 1:00 PM (EST) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec &lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Sécurité des applications - Systèmes de contrôles industriels ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Novembre2015-OWASPMtl-R.png | Sécurité des applications - Systèmes de contrôles industriels ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/0eAZpyiQQ9A]] [https://youtu.be/0eAZpyiQQ9A Watch the conference / Regarder la conférence] &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&lt;br /&gt;
La sécurité des applications et les systèmes de contrôles industriels.&lt;br /&gt;
Cette conférence s'adresse aux professionnels et gestionnaires des TI desinfrastructures critiques qui exploitent ou gèrent des systèmes de contrôles industriels(SCI) et SCADA (surveillance et d'acquisition de données).&amp;lt;br/&amp;gt;&lt;br /&gt;
Conférenciers : Robert Nastas, CSSA. Gestionnaire de projet et Youssef Jad, Architecte Cyber sécurité, ICS-CERT&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Objectifs de la conférence:&lt;br /&gt;
* Démystifier le domaine d'affaires.&lt;br /&gt;
* Renseigner les participants sur les bonnes pratiques de sécurité desapplications liées au secteur industriel.&lt;br /&gt;
* Proposer aux professionnels et gestionnaires des TI responsables dessystèmes SCADA et SCI des pistes de solutions aux enjeux de sécurité.&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
L'équipe OWASP Montréal vous remercie d'avoir assisté en grand nombre à la conférence, 'La sécurité des applications et les systèmes de contrôles industriels'.&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 18 November 2015 from 11:45 AM to 1:00 PM (EST) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Les préoccupations actuelles de hauts dirigeants en matière de cybersécurité et de sécurité applicative ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Septembre2015-OWASPMtl.jpg | Les préoccupations actuelles de hauts dirigeants en matière de cybersécurité et de sécurité applicative ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/un-regard-sur-la-securite-de-linformation-en-2015-par-eric-hebert ]] [https://speakerdeck.com/owaspmontreal/un-regard-sur-la-securite-de-linformation-en-2015-par-eric-hebert See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Pour le lancement des activités corporatives de la saison 2015 - 2016, le 8 septembre prochain à 12:00, l'équipe OWASP Montréal convie les gestionnaires et artisants de la sécurité des TIC à venir entendre monsieur Éric Hébert qui nous présentera son interprétation des préoccupations actuelles de hauts dirigeants en matière de cybersécurité et de sécurité applicative. L'événement se tiendra au complexe Desjardins à la salle &amp;quot;Espace Desjardins&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
''' ÉRIC G. HÉBERT, CISM, CISSP ''' &amp;lt;br/&amp;gt;&lt;br /&gt;
Après plus de 20 ans passés dans le domaine de la sécurité des technologies de l’information, Éric se spécialise dans la mise en œuvre et la gestion d'équipes performantes, capables de relever les plus hauts défis de la cybersécurité moderne.&amp;lt;br/&amp;gt;&lt;br /&gt;
Capable de dialoguer avec les hauts dirigeants, il sait traduire et vulgariser les enjeux techniques complexes tout en respectant la nature et l'appétence au risque de ses clients. Dynamique et pourvu d'une expérience couvrant presque toutes les sphères de la SI, il fonce dans le respect de la culture établie tout en implantant des solutions pragmatiques et efficaces.&amp;lt;br/&amp;gt;&lt;br /&gt;
Depuis plus de 10 ans, il gravite principalement autour des entreprises du domaine financier (BNC, Desjardins, Fonds de solidarité FTQ...) et les accompagne dans la mise en place de solutions efficaces tenant compte à la fois des risques et des budgets.&lt;br /&gt;
En plus d’avoir fondé de nombreuses associations telles que le RéseauSécurIT et le RPSI, il maintient une présence régulière auprès des milieux associatifs professionnels et partage régulièrement ses expériences lors de conférences et d'entrevues avec divers médias.&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Events / Évènements =&lt;br /&gt;
&lt;br /&gt;
== Owasp Montreal at [https://nsec.io/ NorthSec 2017] ==&lt;br /&gt;
&lt;br /&gt;
[[Image:NorthSec2017-5.jpg]]&lt;br /&gt;
[[Image:NorthSec2017-6.jpg]]&lt;br /&gt;
&lt;br /&gt;
From Left to Right: Anne Gauthier, OWASP Montréal Chapter Leader (President) and Application Security Analyst at GoSecure, Hugo Genesse, OWASP Montréal Chapter Leader and Research Intern at PNF Software, Julien Touche, OWASP Montréal Chapter Leader and Principal Security Engineer at Nuance Communications&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal at [https://2017.appsec.eu/ AppSec] ==&lt;br /&gt;
&lt;br /&gt;
[[Image:OWASPAppSecBelfast2017-7.jpg]]&lt;br /&gt;
&lt;br /&gt;
OWASP Montreal and Ottawa Chapter Leaders at OWASP AppSec Belfast, UK #WomenInAppSec&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal at [https://hackfest.ca/ HackFest 2016] ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hackfest2016-r.jpg| HackFest |link=https://hackfest.ca/]]&lt;br /&gt;
&lt;br /&gt;
From left to right: Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Louis Nadeau, OWASP Québec Chapter Leader and Manager, Product Security at Bentley Systems and Patrick Leclerc, OWASP Québec Chapter Leader and Information Security Advisor at La Capitale.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal at OWASP [https://2016.appsecusa.org/ AppSec USA 2016, Washington] ==&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:OWASPMtl-AppSecUSA2016-Washington.jpg | OWASP Montreal at AppSec USA 2016, Washington]] &lt;br /&gt;
&lt;br /&gt;
​From left to right: Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Marie-Claire Willig, Application Security Analyst at Desjardins, Speaker and Cofounder of the Roslyn Security Guard tool which will be presented at Blackhat 2016, Alexandre Hamelin President at Synlabs Consulting Inc., Jonathan Marcil, Application Security Engineer at Blizzard Entertainment and former OWASP Montreal Chapter Leader. Philippe Arteau, Cybersecurity Researcher at GoSecure and designer of [https://find-sec-bugs.github.io/ Find Security Bugs] and Roslyn Security Guard tool which will be presented at Blackhat 2016.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://www.gosec.net GoSec] 2016 ==&lt;br /&gt;
&lt;br /&gt;
[[Image:OWASP-GoSec2016-1r.jpg|OWASP Montreal at GoSec 2016]] [[Image:OWASP-GoSec2016-2r.jpg|OWASP Montreal at GoSec 2016]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
From left to right : Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Simon Lacasse, student and volunteer, and Laurent Desaulniers, Security Analyst at Bell Canada.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://www.nsec.io/ NorthSec] 2016 – Annual Applied Security Event ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hackfest2016-OWASPMtl.jpg|OWASP Montreal at NorthSec 2016]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Simon Veilleux &lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
From left to right : Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Olivier Arteau OWASP Montréal Chapter Leader and Conseiller chez Groupe Technologie Desjardins, Hugo Genesse, OWASP Montréal Chapter Leader and Vulnerability Research Intern at Wurldtech Security Technologies.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://hackfest.ca/en/ Hackfest] 2015 ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hackfest2015-OWASPMtl-R.JPG | OWASP Montreal at Hackfest 2015]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Hackfest &lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
From left to right : Jonathan Marcil, Application Security Engineer at Blizzard Entertainment and former OWASP Montreal Chapter Leader. Philippe Arteau, Cybersecurity Researcher at GoSecure and designer of [http://find-sec-bugs.github.io/ Find Security Bugs] and Roslyn Security Guard tool which will be presented at Blackhat 2016. &lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/8U0qkEuUFy8]] [https://youtu.be/8U0qkEuUFy8 Watch the video / Regarder la vidéo]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://www.gosec.net/ GoSec] 2015 – The Annual Cybersecurity Conference presented by GoSecure, EY and ISACA. ==&lt;br /&gt;
&lt;br /&gt;
[[Image:GoSec2015-OWASPMtl.jpg|OWASP Montreal at GoSec 2015]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
From left to right : Marie-Claire Willig, Application Security Analyst at Desjardins, Speaker and Cofounder of the Roslyn Security Guard tool which will be presented at Blackhat 2016. Benoît Guérette, Application Security Team Leader at Desjardins, VP Finance at NorthSec and OWASP Montreal Chapter Founder and Former Chapter Leader.&lt;br /&gt;
&lt;br /&gt;
== See also / Voir aussi ==&lt;br /&gt;
&lt;br /&gt;
OWASP Montréal recommends Montréhack. Learn and share knowledge on IT security by solving technical challenges. Third Monday of every month. &lt;br /&gt;
&lt;br /&gt;
OWASP Montréal recommende Montréhack. Apprends et partages des connaissances sur la sécurité informatique en travaillant des problèmes appliqués. Chaque troisième lundi du mois. &lt;br /&gt;
&lt;br /&gt;
[[File:Montrehack.png|Montréhack|link=http://montrehack.ca/|alt=Montréhack]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Archives 2007-2015 =&lt;br /&gt;
{{:Montreal chapter past meetings}}&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - February 3rd - Getting to Know the Software Assurance Marketplace (SWAMP) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/p4_vjufcB6Q]] [https://youtu.be/p4_vjufcB6Q Watch the conference / Regarder la conférence]&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/getting-to-know-the-software-assurance-marketplace-swamp-by-pat-beyer]] [https://speakerdeck.com/owaspmontreal/getting-to-know-the-software-assurance-marketplace-swamp-by-pat-beyer See the slides / Voir la présentation] &amp;lt;br/&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Pat Beyer&lt;br /&gt;
*'''ADDITIONAL PRESENTER:'''  Abe Megahed&lt;br /&gt;
*'''ABSTRACT:''' The Software Assurance Marketplace (SWAMP) is an open facility that is designed, built, and operated by four research institutions. The SWAMP provides no-cost access to an array of open-source and commercial software analysis tools. This presentation will provide an overview and demo of the SWAMP, including our goals, intended audience, current capabilities, and future plans. We will cover our relationship with OWASP, incorporation of open-source software assurance tools, and status as an open-source project and resource available to the software community. Visit https://continuousassurance.org/ to learn more about us.&lt;br /&gt;
*'''BIO:''' Pat Beyer serves as the Product Manager for the Software Assurance Marketplace (SWAMP). With over 25 years of experience successfully managing multi-million dollar global projects, Beyer’s expertise extends to the IT, construction, and operations sectors, with a specialization in managing government contracts and grants. A gifted communicator, Beyer is a sought after speaker due to his ability to deliver complex information about technology products and services in a way that is easily understood. He is a decorated combat veteran of the Global War on Terror, the international military campaign that started following the 9/11 terrorist attacks on the United States. In 2004, he constructed and rehabilitated over 20 schools, clinics, and water treatment plants for the Iraqi people using local contractors. Beyer also holds a Bachelor of Science, a Masters in Business Administration, a Ph.D. in Organization and Management, and a Project Management Professional (PMP) certification.&lt;br /&gt;
*'''BIO:''' Abe Megahed is a web developer for the Software Assurance Marketplace. In previous lifetimes, he has been a computer graphics researcher, a game programmer, a programming language and compiler nerd, a dot com company founder, a creator of helicopter simulations, and a developer of 3D simulations for NASA astronaut crew training.&lt;br /&gt;
*'''WHEN:'''  Tuesday, February 3rd 2015&lt;br /&gt;
*'''WHERE:''' Room PK-1140 - UQAM Pavillon Président-Kennedy, 201 Avenue du Président-Kennedy  J2X 3Y7&lt;br /&gt;
*'''REGISTRATION:''' https://owaspmtlswamp2015.eventbrite.ca&lt;br /&gt;
*'''WEBCAST:''' https://www.youtube.com/watch?v=p4_vjufcB6Q&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/getting-to-know-the-software-assurance-marketplace-swamp-by-pat-beyer&lt;br /&gt;
&lt;br /&gt;
*'''ACADEMIC PARTNER:''' AGEEI-UQAM - http://www.ageei.org/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Welcome speech by Chapter Leader (Jonathan Marcil)&lt;br /&gt;
  18:30-20:00 Main session: Getting to Know the Software Assurance Marketplace&lt;br /&gt;
  20:00-...   End of the meeting&lt;br /&gt;
&lt;br /&gt;
[[Image:SWAMP-Logo-Final-Med.png|300px|link=https://continuousassurance.org/]]&lt;br /&gt;
[[Image:Ageeilogo.jpg|200px|link=http://www.ageei.org/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - 4 décembre - Malware côté serveur — évolution, méthodes d’opération et forensic Linux ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/lo8WDl-WQ3E]] [https://youtu.be/lo8WDl-WQ3E Watch the conference / Regarder la conférence] &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/malware-cote-serveur-par-marc-etienne-m-dot-leveille]] [https://speakerdeck.com/owaspmontreal/malware-cote-serveur-par-marc-etienne-m-dot-leveille See the slides / Voir la présentation] &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''PRÉSENTATEUR PRINCIPAL:''' Marc-Etienne M.Léveillé&lt;br /&gt;
*'''RÉSUMÉ:''' Les logiciels malveillants ciblant les serveurs ont évolué. Ils sont utilisés par des groupes de cybercriminels organisés dans le but de faire du profit via des redirections web et l’envoie de pourriels. La présentation portera sur Opération Windigo, une opération malveillante qui a affecté plus de 25 000 serveurs dans le monde. Après une brève description des composantes de Windigo, nous verrons comment les opérateurs déploient leurs logiciels malveillants et surveille leur réseau de serveurs infectés. Des trucs pratiques pour faire de la forensics sur des systèmes Linux seront donnés. Cette présentation est une suite à la présentation &amp;quot;Linux/Cdorked: Server side malware&amp;quot;, donnée par Olivier Bilodeau à OWASP Montréal en 2013. La présentation sera en français avec des diapositives en anglais (aka Montreal-style).&lt;br /&gt;
*'''BIO:''' Marc-Etienne est un chercheur en logiciel malveillant chez ESET depuis 2012. Il se spécialise dans les logiciels malveillants qui s’attaquent à des plateformes inhabituelles comme aux produits fruités et aux oiseaux nordiques. Dernièrement, il passe beaucoup de son temps à faire la rétro-ingénierie de logiciels malveillants sur des serveurs Linux et s’intéresse à leurs méthodes d’opération. Il adore participer de façon collégiale aux CTFs avec ses amis les CISSP Groupies et jouer de la clarinette. Il tweet très peu à @marc_etienne_.&lt;br /&gt;
*'''QUAND:''' 4 décembre 2014 à 18h00&lt;br /&gt;
*'''OÙ:''' Local M-1510, Polytechnique Montréal, 2900 Boulevard Edouard-Montpetit&lt;br /&gt;
*'''INSCRIPTION:''' https://www.eventbrite.ca/e/owasp-montreal-4-decembre-malware-cote-serveur-evolution-methodes-doperation-et-forensic-linux-tickets-14635313617&lt;br /&gt;
*'''ÉQUIPE ACADÉMIQUE:''' Polyhack - http://polyhack.org/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
&lt;br /&gt;
 18:00-18:30 Réseautage&lt;br /&gt;
 18:30-18:35 Mot de bienvenue par le leader du chapitre (Jonathan M.)&lt;br /&gt;
 18:35-19:30 Présentation principale : Malware côté serveur&lt;br /&gt;
 19:30-20:00 Période de questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Polyhacklogonoirpetit.png|200px|link=http://polyhack.org/]]&lt;br /&gt;
[[Image:LogoPolytechnique.gif|link=http://www.polymtl.ca/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - October 23rd - XXE : À l’assaut des analyseurs XML ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/MZviLB9-42E]] [https://youtu.be/MZviLB9-42E Watch the conference / Regarder la conférence] &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/xxe-a-lassaut-des-analyseurs-xml-par-philippe-arteau]] [https://speakerdeck.com/owaspmontreal/xxe-a-lassaut-des-analyseurs-xml-par-philippe-arteau See the slides / Voir la présentation] &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''PRÉSENTATEUR PRINCIPAL:''' Philippe Arteau&lt;br /&gt;
*'''RÉSUMÉ:''' L'utilisation d’XML est fortement répandue. Le format est utilisé pour des fichiers de configuration, pour des métadonnées, pour des documents textes, et bien plus. La prise en charge de fichiers XML n’est pas sans risque. La plupart des analyseurs XML ne sont pas sécuritaires par défaut pour le traitement de fichier externe. Cette présentation fera un survol des vulnérabilités de type « Xml eXternal Entity » et de l’étendue des risques pour différents langages de programmation. Plusieurs démonstrations sont prévues.&lt;br /&gt;
*'''BIO:''' Philippe est conseiller en sécurité applicative pour le Groupe Technologies Desjardins. Au quotidien, il s’occupe d’effectuer des tests d’intrusions et des revues de code. Il a découvert des vulnérabilités importantes dans plusieurs logiciels populaires incluant Google Chrome, DropBox, ESAPI et Jira.&lt;br /&gt;
*'''QUAND:'''  23 Octobre 2014 à 18h00&lt;br /&gt;
*'''OÙ:''' École de Technologie Supérieure Local A-3230, 1100 Rue Notre-Dame Ouest, Montréal, QC H3C 1K3&lt;br /&gt;
*'''INSCRIPTION:''' http://www.eventbrite.ca/e/owasp-montreal-23-octobre-xxe-a-lassaut-des-analyseurs-xml-tickets-13426881163&lt;br /&gt;
*'''PARTENAIRE ACADÉMIQUE:''' ETS - DCI http://dciets.com/&lt;br /&gt;
*'''PROGRAMME:''' &lt;br /&gt;
&lt;br /&gt;
 18:00-18:30 Réseautage&lt;br /&gt;
 18:30-18:45 Mot de bienvenue&lt;br /&gt;
 18:45-19:45 Présentation principale - &amp;quot;À l’assaut des analyseurs XML&amp;quot; Philippe Arteau&lt;br /&gt;
 19:45-20:00 Période de questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Blason_dci.png‎‎‎|150px|link=http://dciets.com/]]&lt;br /&gt;
[[Image:ETS-rouge-devise-impr-fond_transparent.png|150px|link=http://www.etsmtl.ca/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - July 24th - Web security for DevOps: the glory is in the headers ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/6bp1NCLT-YQ]] [https://youtu.be/6bp1NCLT-YQ Watch the conference / Regarder la conférence] &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/web-security-for-devops-the-glory-is-in-the-headers-by-jonathan-marcil]] [https://speakerdeck.com/owaspmontreal/web-security-for-devops-the-glory-is-in-the-headers-by-jonathan-marcil See the slides / Voir la présentation] &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Jonathan Marcil&lt;br /&gt;
*'''ABSTRACT:''' DevOps is a buzzword which can be easily demystified: in essence it is a process which aims to combine the development and system administration process into one; Operations. As developers become responsible for server setup, security counter measures are evolving as well. The line between server configuration and application behaviour has been blurred. In this talk we will cover some HTTP headers in regards to security such as CORS, CSP and HSTS. We will demonstrate several forms of attack, and how they can (should) be countered.&lt;br /&gt;
*'''BIO:''' Jonathan is devoted to security and specialized in Web application security.  His main occupation is consulting in Web security, but deep down he is a developer with a agnostic vision of programming languages. He has a diploma in Software Engineering from Ecole de Technologie Superieure and more than 10 years of experience in Information Technology and Security.&lt;br /&gt;
*'''WHEN:'''  At noon on July 24th 2014&lt;br /&gt;
*'''WHERE:''' 75 Queen Street, office 3100, Montreal, QC H3C 2N6&lt;br /&gt;
*'''REGISTRATION:''' You can join us on site for a pizza slice but this is mainly an online event. Contact jonathan.marcil@owasp.org.&lt;br /&gt;
*'''WEBCAST:''' https://www.youtube.com/watch?v=6bp1NCLT-YQ&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/web-security-for-devops-the-glory-is-in-the-headers-by-jonathan-marcil&lt;br /&gt;
*'''EVENT SPONSOR:''' Pheromone http://www.pheromone.ca/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  12:00-12:10 Welcome and quick OWASP introduction&lt;br /&gt;
  12:10-13:10 Main presentation - &amp;quot;Web security for DevOps: the glory is in the headers&amp;quot; Jonathan Marcil&lt;br /&gt;
  13:10-... Open discussion and questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Logo-phero.gif‎|link=http://www.pheromone.ca/]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - June 18th - Gaps in the Clouds ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/gaps-in-the-clouds-by-robert-fritz]] [https://speakerdeck.com/owaspmontreal/gaps-in-the-clouds-by-robert-fritz See the slides / Voir la présentation] &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Robert Fritz&lt;br /&gt;
*'''ABSTRACT:''' Cloud technology offers agility and scaling, and a chance to break away from legacy IT choices.  Unfortunately, skipping traditional IT activities often results in poorly patched systems, out of date firewalls, and overprovisioned entitlements wielded by admins whose “day job” is development.  Boundaries of accountability and responsibility amongst cloud providers and consumers are confusing, vague, and shift, making security difficult to manage.  In such an environment, a “BP-spill” event, where cost wins over safely safety, is likely.  This talk will dive down into the cracks between the layers of cloud, and share some of the exciting dirt we have seen and expect to see in coming years.”&lt;br /&gt;
*'''BIO:''' Robert Fritz has been practicing security his entire career. Rob started as an Air Force lieutenant at Langley AFB and later at the Pentagon in Washington DC, building and managing classified networks. Finding he was getting too far from technology after a brief stint flying, he left the military to get back to the tech, and built security tools for HP in their HP-Unix lab.  Over time he found himself in more and more security design discussions, so co-authored HP’s Commercial Application Threat Analysis Methodology, building an internal consulting practice at HP.  This quantitative approach, led to two pending patents, an external-facing consulting practice, and his contributions to NIST IR-7502, the Common Configuration Scoring System (CVSS follow-on).  He is the former lead editor for the Center for Internet Security’s HP-UX Benchmark, and current lead for the Android Benchmark.  Robert now works for Morgan Stanley as global head of the Strategic Consulting team in the Security Architecture group, and leads the team’s cloud and social-media security practices.&lt;br /&gt;
*'''WHEN:''' June 18th 2014&lt;br /&gt;
*'''WHERE:''' 700 Rue Wellington, Floor 2, Montreal, QC H3C 3S4&lt;br /&gt;
*'''REGISTRATION:''' http://owaspmtl18junems.eventbrite.ca&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/gaps-in-the-clouds-by-robert-fritz&lt;br /&gt;
*'''EVENT SPONSOR:''' Morgan Stanley http://www.morganstanley.com/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:30 Networking and Morgan Stanley Hosted Pizza and Soft Drinks&lt;br /&gt;
  18:30-18:45 OWASP Chapter &amp;amp; Morgan Stanley Welcome&lt;br /&gt;
  18:45-19:45 Main presentation - &amp;quot;Gaps in the Clouds&amp;quot; Robert Fritz&lt;br /&gt;
  19:45-20:00 Open discussion and questions&lt;br /&gt;
  20:00-...   Optional, informal networking at Aziatic - 626 rue Marguerite-d'Youville, Montréal, QC H3C 1W7&lt;br /&gt;
&lt;br /&gt;
[[Image:Morgan_Stanley_Historical_Logo.png|link=http://www.morganstanley.com/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - May 26th - Récapitulatif des challenges NorthSec ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/P8_V3RI1Ru4]] [https://youtu.be/P8_V3RI1Ru4 Watch the conference / Regarder la conférence] &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''PRÉSENTATEUR PRINCIPAL:''' Laurent Desaulniers&lt;br /&gt;
*'''RÉSUMÉ:''' Solutions de la compétition en sécurité NorthSec 2014 sur les sujets de  XXE + SSRF, WAF Bypass, Xpath Injection, DOM Injection, HTTP Only Flag bypass et contournement de captchas. Une bonne façon d'apprendre sur ces failles que vous étiez ou non un participant de la compétition.&lt;br /&gt;
*'''MESSAGE DU PRÉSENTATEUR:''' Vous voyez Rao dans votre soupe? Vous voulez une solution pour un XSS avec des cookies http only? Les captchas illisibles sont un problème? Assistez à la présentation de l'OWASP!&lt;br /&gt;
*'''BIO:''' Laurent Desaulniers est un passionné de sécurité informatique. Il a présenté au Hackfest, au colloque RSI, à OWASP et est challenge designer à NorthSec. M. Desaulniers détient les certifications CISSP, CISM, CISA et OSCP.&lt;br /&gt;
*'''QUAND:''' 26 mai à 18h00&lt;br /&gt;
*'''OÙ:''' Local PK-1140 - Pavillon Président-Kennedy 201, Avenue du Président-Kennedy, J2X 3Y7&lt;br /&gt;
*'''INSCRIPTION:''' https://www.eventbrite.ca/e/owasp-montreal-26-mai-recapitulatif-des-challenges-northsec-tickets-11724413035&lt;br /&gt;
*'''WEBCAST:''' https://www.youtube.com/watch?v=P8_V3RI1Ru4&lt;br /&gt;
*'''ÉQUIPE ACADÉMIQUE''' AGEEI-UQAM - http://www.ageei.org/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
&lt;br /&gt;
 18:00-18:30 Réseautage&lt;br /&gt;
 18:30-18:35 Mot de bienvenue par le leader du chapitre (Jonathan M.)&lt;br /&gt;
 18:35-19:30 Présentation principale : Récapitulatif des challenges NorthSec&lt;br /&gt;
 19:30-20:00 Période de questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Ageeilogo.jpg|200px|link=http://www.ageei.org/]]&lt;br /&gt;
[[Image:2397_nsec_Logo_500-250.png|200px|link=http://nsec.io/]]&lt;br /&gt;
&lt;br /&gt;
== Networking with infosec communities - April 21st ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''RÉSUMÉ:''' En collaboration avec Montréhack, mtlsec et NorthSec, nous organisons une soirée réseautage dans un pub du centre-ville. Du plaisir garanti avec les membres de plusieurs communautés infosec de Montréal!&lt;br /&gt;
&lt;br /&gt;
*'''ABSTRACT:''' In collaboration with Montréhack, mtlsec and NorthSec, we are organizing a networking evening in a pub downtown. Fun guaranteed with the other security communities in Montreal!&lt;br /&gt;
&lt;br /&gt;
*'''QUAND:''' 21 Avril 2014&lt;br /&gt;
*'''WHEN:''' April 21st 2014&lt;br /&gt;
&lt;br /&gt;
*'''OÙ/WHERE:''' BENELUX - Brasserie Artisanale 245 Sherbrooke St W Montreal, QC H2X 1X7&lt;br /&gt;
&lt;br /&gt;
*'''INSCRIPTION/REGISTRATION:''' https://www.eventbrite.ca/e/montrehack-avril-april-northsec-pre-party-tickets-11232307133&lt;br /&gt;
&lt;br /&gt;
*'''PARTENAIRES/PARTNERS:''' Montréhack http://montrehack.ca/ - mtlsec http://blog.mtlsec.com/ - NorthSec https://www.nsec.io/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
  18:00-21:00 Networking&lt;br /&gt;
  21:00-23:59 Remember to drink responsibly!&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - March 27th - Panel Compétition en sécurité NorthSec ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Présentation sous forme de panel - venez poser vos questions!'''&lt;br /&gt;
&lt;br /&gt;
*'''RÉSUMÉ:''' Les compétitions de type Capture the Flag (CTF) sont un moyen pour les professionnels et amateurs de sécurité informatique de mettre leurs talents à l'épreuve. NorthSec est une compétition Montréalaise annuelle en sécurité appliquée, qui aura lieu cette année au Marché Bonsecours de Montréal le 25, 26 et 27 avril prochain. Elle vise à augmenter le niveau technique des professionnels de la sécurité au Québec, ainsi que de permettre à ses acteurs les plus talentueux de se démarquer.&lt;br /&gt;
*'''DÉTAILS:''' Le panel de jeudi, sous la forme d'un échange convivial entre les organisateurs de l'évènement et de ses participants, abordera des thèmes variés comme l'écriture de bon défis, l'infrastructure, la logistique, les inattendus, un bilan de 2013 et tout ça en passant par de savoureuses annecdotes (on l'espère). Venez en grand nombre toucher à ces légendes de la scène infosec montréalaise!&lt;br /&gt;
*'''PANÉLISTES:''' Gabriel Tremblay, François Proulx, Laurent Desaulniers, Stéphane Graber&lt;br /&gt;
*'''ANIMATEUR:''' Olivier Bilodeau&lt;br /&gt;
*'''QUAND:''' 27 mars 2014&lt;br /&gt;
*'''OÙ:''' Salle M-1510, École Polytechnique de Montréal, 2500 chemin de Polytechnique, Montréal (Québec) H3T 1J4, pavillon Lassonde&lt;br /&gt;
*'''INSCRIPTION:''' https://www.eventbrite.ca/e/owasp-montreal-27-mars-panel-competition-en-securite-northsec-tickets-10918436337&lt;br /&gt;
*'''ÉQUIPE ACADÉMIQUE:''' Polytechnique - Polyhack http://polyhack.org/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Mot de bienvenue par le leader du chapitre (Jonathan Marcil)&lt;br /&gt;
  18:30-20:00 Présentation principale : Panel NorthSsec&lt;br /&gt;
&lt;br /&gt;
[[Image:Polyhack.png‎‎|200px|link=http://polyhack.org/]]&lt;br /&gt;
[[Image:LogoPolytechnique.gif|link=http://www.polymtl.ca/]]&lt;br /&gt;
[[Image:2397_nsec_Logo_500-250.png|200px|link=http://nsec.io/]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - February 25th - Proven Strategies for Web Application Security ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/proven-strategies-for-web-application-security-by-justin-c-klein-keane]] [https://speakerdeck.com/owaspmontreal/proven-strategies-for-web-application-security-by-justin-c-klein-keane See the slides / Voir la présentation] &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Justin C. Klein Keane&lt;br /&gt;
*'''ABSTRACT:''' The rising dominance of the web as an application delivery platform has focused attacker attention squarely on the security of dynamic web applications. Application security is a complex, and shifting, field. Learn about tested and successful techniques to build safer applications, find flaws before they become vulnerabilities, and deploy applications that can detect, and resist attack.&lt;br /&gt;
*'''BIO:''' Justin C. Klein Keane is a security engineer and chapter leaders of OWASP in Philadelphia. For over a decade Justin has worked as a trainer, coder, and exploit developer. Justin is currently writing a book for NoStarch Press on hacking, speaks regularly at conferences, holds a masters degree in information technology from the University of Pennsylvania and is credited with hundreds of application vulnerability discoveries.&lt;br /&gt;
*'''WHEN:''' February 25th 2014&lt;br /&gt;
*'''WHERE:''' Ecole de technologie superieure, 1100 Notre-Dame Street West, Montreal, Room: A-1150&lt;br /&gt;
*'''REGISTRATION:''' http://owaspmtljan2014.eventbrite.ca&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/proven-strategies-for-web-application-security-by-justin-c-klein-keane&lt;br /&gt;
*'''ACADEMIC PARTNER:''' ETS - DCI http://dciets.com/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Welcome speech by Chapter Leader (Jonathan Marcil)&lt;br /&gt;
  18:30-20:00 Main session and open discussion: Proven Strategies for Web Application Security&lt;br /&gt;
  20:00-...   End of the meeting in a pub&lt;br /&gt;
&lt;br /&gt;
[[Image:Dciets.png‎‎‎|100px|link=http://dciets.com/]]&lt;br /&gt;
[[Image:Logo_ets.png|link=http://www.etsmtl.ca/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - January 28th - Latest trends in Mobile Security ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/8qPyKj4FKgY]] [https://youtu.be/8qPyKj4FKgY Watch the conference / Regarder la conférence] &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/latest-trends-in-mobile-security-by-francois-proulx]] [https://speakerdeck.com/owaspmontreal/latest-trends-in-mobile-security-by-francois-proulx See the slides / Voir la présentation] &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Francois Proulx&lt;br /&gt;
*'''ABSTRACT:''' Last AppSecUSA 2013 had a great line up of talks, especially regarding mobile applications. This session will be covering all the hottest presentations about mobile security by doing an overview from what see saw at AppSecUSA, all with some slides and snippets of presentations that was recorded at the event. Discussion will be encouraged within the audience as this will be more a dynamic event than a regular talk.&lt;br /&gt;
*'''BIO:''' François Proulx is a senior mobile application developer who has worked on dozens of iOS applications since the very beginning of the Apple iOS platform. Over the past few years he has switched his focus to security. He spends a lot of his free time participating in Capture the Flag events (CTFs) and organizing the NorthSec security competition.&lt;br /&gt;
*'''WHEN:''' January 28th 2014&lt;br /&gt;
*'''WHERE:''' UQAM Room PK-1705, Pavillon Président-Kennedy (the big boat at Place des Arts) - 201 Avenue du Président-Kennedy  J2X 3Y7&lt;br /&gt;
*'''REGISTRATION:''' http://owaspmtl-mobilesecurity.eventbrite.ca&lt;br /&gt;
*'''SLIDES/CONTENT:''' [http://www.youtube.com/playlist?list=PLQtB2ug5xmvaQ9jeRWV53-F_T555GQfhW YouTube playlist]&lt;br /&gt;
*'''SPONSOR:''' Academic partner AGEEI-UQAM - http://www.ageei.org/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Welcome speech by Chapter Leader (Jonathan M.)&lt;br /&gt;
  18:30-20:00 Main session and open discussion: Mobile Security&lt;br /&gt;
  20:00-...   End of the meeting in a pub&lt;br /&gt;
&lt;br /&gt;
[[Image:Ageeilogo.jpg|200px|link=http://www.ageei.org/]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Presentations For Download  ====&lt;br /&gt;
&lt;br /&gt;
[http://www.owasp.org/images/0/0d/20100209mstechdaysowaspasvssgiv01-12657916463819-phpapp02.ppt OWASP ASVS] by Sebastien Gioria (09/03/2010) &lt;br /&gt;
&lt;br /&gt;
[http://www.ph-il.ca/slides/afup__authetification_forte.pdf Authentification Forte] by Philippe Gamache (02/02/2010) &lt;br /&gt;
&lt;br /&gt;
[http://www.opensamm.org/downloads/OpenSAMM-1.0.ppt Software Assurance Maturity Model (OpenSAMM)] by Pravir Chandra (03/11/2009) &lt;br /&gt;
&lt;br /&gt;
[http://www.owasp.org/images/d/de/Owasp-montreal-sept-17h-2009-justin-foster.pdf Crossing the Border – Javascript Exploits] by Justin Foster (17/09/2009) &lt;br /&gt;
&lt;br /&gt;
[http://www.owasp.org/images/c/c2/ALaughRIAt.pdf A Laugh RIAt] by Rafal Los (07/04/2009) &lt;br /&gt;
&lt;br /&gt;
[https://www.owasp.org/images/e/eb/OWASP-Montreal-24022009-RobLabbe.pptx Microsoft Security Development Lifecycle for IT] by Rob Labbe (24/02/2009) &lt;br /&gt;
&lt;br /&gt;
[https://www.owasp.org/images/3/39/OWASP-Montreal-24022009-EN.pdf OWASP Goal and Top Ten 2007 for Managers - French version] by Benoit Guerette (24/02/2009)&lt;br /&gt;
&lt;br /&gt;
Newer presentations are available on [https://speakerdeck.com/owaspmontreal Speaker Deck]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Circle_owasp_logo_nowhitebackground.png|200px]]&lt;br /&gt;
&lt;br /&gt;
= OWASP Foundation / Mission OWASP    = &lt;br /&gt;
OWASP Foundation ([https://docs.google.com/a/owasp.org/presentation/d/10wi1EWFCPZwCpkB6qZaBNN8mR2XfQs8sLxcj9SCsP6c/edit?usp=sharing Overview Slides]) is a professional association of [[Membership | global members]] and is open to anyone interested in learning more about software security. Local chapters are run independently and guided by the [[Chapter_Leader_Handbook]].  As a [[About_OWASP | 501(c)(3)]] non-profit professional association your support and sponsorship of any meeting venue and/or refreshments is tax-deductible. Financial contributions should only be made online using the authorized online chapter donation button.  To be a &amp;lt;b&amp;gt;SPEAKER&amp;lt;/b&amp;gt; at ANY OWASP Chapter in the world simply review the [[Speaker_Agreement | speaker agreement]] and then contact the local chapter leader with details of what OWASP PROJECT, independent research or related software security topic you would like to present on.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;La fondation OWASP est une [https://www.owasp.org/index.php/Membership association de professionnels] et elle est ouverte à tout intervenant intéressé à en apprendre davantage sur la sécurité applicative. Les chapitres locaux (dont celui de Montréal) sont gérés de façon indépendante et selon un [https://www.owasp.org/index.php/Chapter_Leader_Handbook manuel de directives à respecter].   &lt;br /&gt;
Toute contribution financière au chapitre peut être faite en ligne en utilisant l’icône prévu à cet effet. Pour être conférencier au sein de n’importe quel chapitre à l’échelle mondiale, vous n’avez qu’à prendre connaissance du document [https://www.owasp.org/index.php/Speaker_Agreement &amp;quot;entente avec les conférenciers – speaker agreement&amp;quot;] et à joindre le responsable du chapitre Montréal avec un descriptif du sujet que vous aimeriez aborder et s’il est relié à un projet OWASP, à de la recherche indépendante ou encore le sujet en particulier, concernant la sécurité applicative, que vous souhaitez aborder.&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== [[Image:Circle_owasp_logo_nowhitebackground.png|128px]] Montreal OWASP Team == &lt;br /&gt;
&lt;br /&gt;
Scope of the team is to discuss and plan local activities and meetings &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Chapter Leaders ===&lt;br /&gt;
&lt;br /&gt;
* [mailto:anne.gauthier@owasp.org Anne Gauthier], President/Présidente&lt;br /&gt;
* [mailto:michel.bourque{at}owasp.org Michel Bourque], Chapter coordinator and marketing manager/Coordination et Marketing&lt;br /&gt;
* [mailto:hugo.genesse(at)owasp.org Hugo Genesse], Web content and production manager/Site internet et Production &lt;br /&gt;
* [mailto:olivier.arteau(at)owasp.org Olivier Arteau], Logistic manager/Logistique&lt;br /&gt;
&lt;br /&gt;
==== Chapter leader history ====&lt;br /&gt;
*2008-2010 - Benoit Guerette, founder and chapter leader&lt;br /&gt;
*2011-2012 - Philippe Gamache, chapter leader (vice chapter-leader since 2010)&lt;br /&gt;
*2013-2015 - Jonathan Marcil, chapter leader&lt;br /&gt;
*2016-... - Anne Gauthier, Michel Bourque, Marius Popescu, Hugo Genesse, Olivier Arteau&lt;br /&gt;
&lt;br /&gt;
==== Old board members ====&lt;br /&gt;
*Philippe Pépos Petitclerc&lt;br /&gt;
*Michael Robillard&lt;br /&gt;
*Benoit Guerette (logistics 2015)&lt;br /&gt;
*Alexandre Rimthong&lt;br /&gt;
*Mathieu Binette&lt;br /&gt;
*Sean Coates&lt;br /&gt;
*Jean-Marc Robert&lt;br /&gt;
*Philippe Blondin&lt;br /&gt;
*Benoit Guerette (founder)&lt;br /&gt;
*Laurent Desaulniers&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;headertabs/&amp;gt; &lt;br /&gt;
__NOTOC__ &lt;br /&gt;
[[Category:Canada]]&lt;/div&gt;</summary>
		<author><name>Svieg</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=File:Security_testing_hybrid_approach-r.jpg&amp;diff=232258</id>
		<title>File:Security testing hybrid approach-r.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=File:Security_testing_hybrid_approach-r.jpg&amp;diff=232258"/>
				<updated>2017-08-14T17:39:18Z</updated>
		
		<summary type="html">&lt;p&gt;Svieg: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Svieg</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=Montr%C3%A9al&amp;diff=231541</id>
		<title>Montréal</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=Montr%C3%A9al&amp;diff=231541"/>
				<updated>2017-07-11T00:30:52Z</updated>
		
		<summary type="html">&lt;p&gt;Svieg: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Welcome &amp;amp; Bienvenue to the OWASP Montréal chapter ==&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:OWASP-Montreal-Logo.png|Logo OWASP Montréal]]&lt;br /&gt;
&lt;br /&gt;
The OWASP Foundation was established in 2001 as an open community and software security resource. Since then, OWASP has grown to be globally recognized as a credible source for application security standards. &amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
OWASP is an open community dedicated to enabling organizations to conceive, develop, acquire, operate, and maintain applications that can be trusted. All of the OWASP tools, documents, forums, and chapters are free and open to anyone interested in improving application security. We advocate approaching application security as a people, process, and technology problem because the most effective approaches to application security include improvements in all of these areas. &amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
OWASP is open to anyone. Anyone can attend OWASP's vendor agnostic local chapter meetings, participate in regional and global conferences, and contribute to the many OWASP projects. And anyone can start a new project, form a new chapter, or lend their expertise to help an OWASP Global Committee.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt;On parle français aussi ! Le chapitre de Montréal organise plusieurs activités gratuites afin de partager les connaissances en sécurité applicative avec la communauté de développeurs et gestionnaires. Suivez-nous sur les réseaux sociaux pour connaître les dates des conférences du midi et des workshops !&amp;lt;/b&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Top documentation from OWASP includes: &lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/index.php/Top_10_2013-Top_10 OWASP TOP 10 : The Ten Most Critical Web Application Security Risks]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/images/3/33/OWASP_Application_Security_Verification_Standard_3.0.1.pdf OWASP ASVS : Application Security Verification Standard]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/images/5/52/OWASP_Testing_Guide_v4.pdf OWASP Testing Guide : Penetration Testing Framework ]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/images/7/78/OWASP_AlphaRelease_CodeReviewGuide2.0.pdf OWASP Code Review Guide : Source Code Analysis Framework ]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/index.php/OWASP_Cheat_Sheet_Series OWASP Cheat Sheet : Best practices guidelines for developers ]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org OWASP Global ]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Chapter Leaders / Responsables du chapitre ===&lt;br /&gt;
&lt;br /&gt;
* [mailto:anne.gauthier@owasp.org Anne Gauthier], President/Présidente&lt;br /&gt;
* [mailto:michel.bourque{at}owasp.org Michel Bourque], Chapter coordinator and marketing manager/Coordination et Marketing&lt;br /&gt;
* [mailto:hugo.genesse(at)owasp.org Hugo Genesse], Web content and production manager/Site internet et Production &lt;br /&gt;
* [mailto:olivier.arteau(at)owasp.org Olivier Arteau], Logistic manager/Logistique&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Special thanks to / Remerciements : &lt;br /&gt;
* Simon Lacasse, Web content / Site internet&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;b&amp;gt; Reach our chapter / Joindre le chapitre &amp;lt;/b&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Follow OWASP's Montreal chapter's activities through social medias, register to events, watch the previous presentations and more! &lt;br /&gt;
&lt;br /&gt;
Suivez les activités du chapitre OWASP Montréal via les réseaux sociaux, inscrivez-vous aux activités, visualisez les anciennes présentations et plus encore! &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;b&amp;gt;[http://lists.owasp.org/mailman/listinfo/owasp-montreal Click here] to join the local chapter mailing list.&lt;br /&gt;
&amp;lt;br/&amp;gt;[http://lists.owasp.org/mailman/listinfo/owasp-montreal Inscrivez-vous ici] à la liste de courriels du chapitre afin de recevoir les dernières nouvelles!&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Want to be part of the community ? &lt;br /&gt;
Devenez membre de notre communauté ! &lt;br /&gt;
[https://www.owasp.org/index.php/Membership_Map Click here / Cliquer ici]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Eb_press_little.gif‎|OWASP Montreal Eventbrite|link=http://owaspmontreal.eventbrite.ca/]] &lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[Image:Yt-brand-standard-logo-630px.png‎|128px|YouTube OWASP Montreal Channel|link=http://www.youtube.com/owaspmontreal]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]   &lt;br /&gt;
[[Image:Speakerdecklogo.png‎|Slides of OWASP Montreal on SpeakerDeck |link=https://speakerdeck.com/owaspmontreal]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Twitter-bird-cropped-onwhite.png|@owaspmontreal on Twitter|link=https://twitter.com/owaspmontreal]]&lt;br /&gt;
[[Image:FacebookSquareLogo.png|OWASP Montreal Facebook page|link=https://www.facebook.com/owasp.montreal]]&lt;br /&gt;
[[Image:LinkedinSquareLogo.png|OWASP Montreal on LinkedIn|link=https://www.linkedin.com/groups/1379007/profile]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
&lt;br /&gt;
== Sponsorship &amp;amp; Membership / Commandite &amp;amp; Adhésion ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Btn_donate_SM.gif|link=http://www.regonline.com/donation_1044369]] to this chapter or become a local chapter supporter.&lt;br /&gt;
&lt;br /&gt;
Or consider the value of [[Membership | Individual, Corporate, or Academic Supporter membership]]. Ready to become a member? [[Image:Join_Now_BlueIcon.JPG|75px|link=https://myowasp.force.com/]]&lt;br /&gt;
&lt;br /&gt;
[http://www.regonline.com/donation_1044369 Donnez] au chapitre ou devenez commanditaire du chapitre local! &lt;br /&gt;
&lt;br /&gt;
[https://myowasp.force.com/ Devenez membre !] Pour en savoir davantage sur les avantages d’une adhésion individuelle, corporative ou en tant qu’institution d’enseignement, [https://www.owasp.org/index.php/Membership cliquez ici]. &lt;br /&gt;
&lt;br /&gt;
[[Category:OWASP Chapter]]&lt;br /&gt;
&lt;br /&gt;
== Chapter Supporters / Commanditaires du chapitre ==&lt;br /&gt;
&lt;br /&gt;
[https://www.owasp.org/images/9/91/OWASP_Membership_Flyer_Montreal.png All details available here / Pour tous les détails ] [[File:Chapter-supporter-owasp-montreal.png|200px|link=https://www.owasp.org/images/9/91/OWASP_Membership_Flyer_Montreal.png]] &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Platinum / Platine ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Gosecure-2.png|GoSecure|link=http://www.gosecure.ca/]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[File:Desjardins2-400x400.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Gold / Or ===&lt;br /&gt;
&lt;br /&gt;
[[Image:ImmunioLogo.jpg|Immunio|link=https://www.immun.io/]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Lunch &amp;amp; Learn / Workshops 2017 =&lt;br /&gt;
&lt;br /&gt;
== HOW TO! Threat Modeling Toolkit ==&lt;br /&gt;
&lt;br /&gt;
[[Image:OWASPMtl-JonathanMarcil-1.jpg]]&lt;br /&gt;
[[Image:OWASPMtl-JonathanMarcil-3.jpg]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/threat-modeling-toolkit]] [https://speakerdeck.com/owaspmontreal/threat-modeling-toolkit See the slides / Voir la présentation]&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 May 23rd, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Shopify Montreal&lt;br /&gt;
&lt;br /&gt;
Threat Modeling is a great way to analyze security early in software development by structuring possible attacks, bad actors and countermeasures over a broad view of the targeted system. This talk will describe basic components of a threat model and how to use them effectively.&lt;br /&gt;
Threat Intelligence is where you gather knowledge about the environment and business assets to determine what are the actual threats. But how do you reconcile that with the current architecture in a useful manner?&lt;br /&gt;
The toolkit presented in this talk will enable you to systematically structure related information using graphical notations such as flow diagram and attack tree. In case you are wondering where to start in your organization, a quick lightweight risk rating methodology will also be proposed.&lt;br /&gt;
And in the end, you’ll see how we can all tie those together and get threat modeling to a point where it’s an efficient application security activity for communication. Doing this will prevent security reviews from missing important things even when chaos prevails during the realization of a project.&lt;br /&gt;
Modeling concepts will be demonstrated with an actual IoT device used as example.&lt;br /&gt;
Presentation will be done in english.&lt;br /&gt;
&lt;br /&gt;
Speaker Bio:&lt;br /&gt;
Jonathan Marcil is the former chapter leader of OWASP Montreal and is now Senior Application Security Engineer at Blizzard Entertainment in beautiful Orange County, California.&lt;br /&gt;
Jonathan has been involved with OWASP for many years and has been behind the Media Project which gathered and promoted AppSec conferences video content in the official OWASP YouTube channel. He was also part of NorthSec CTF event as a challenge designer specialized in Web and imaginative contraptions.&lt;br /&gt;
He is passionate about Application Security and enjoys architecture analysis, code review, threat modeling and debunking security tools. He holds a diploma in Software Engineering from ÉTS Montreal and has more than 15 years of experience in Information Technology and Security.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Merci à nos précieux commanditaires !&lt;br /&gt;
&lt;br /&gt;
== Security Testing: Unlocking the Benefits of a Hybrid Approach ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/hybrid-approach-to-security-testing]] [https://speakerdeck.com/owaspmontreal/hybrid-approach-to-security-testing See the slides / Voir la présentation]&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 April 24th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
As part of their defensive efforts, businesses commonly commission cybersecurity assessments of their web applications; with the aim of identifying any weaknesses in the security controls and ensuring a continually strong cybersecurity posture of their systems.&lt;br /&gt;
&lt;br /&gt;
The classical approach of either secure code review (white box) or penetration testing (black box) assessment have proven to be effective in securing of web applications. The new trend, however, is moving towards the combination of these two approaches; expert consensus is rapidly recognizing the advantages of using a hybrid approach. When applied properly, a hybrid approach can build on the strengths of both white and black box testing, while compensating for their individual shortcomings.&lt;br /&gt;
&lt;br /&gt;
In this presentation, we will examine the details of secure code review and penetration testing, and run demos to contrast their respective strengths and weaknesses. We will also examine why a hybrid approach can produce more complete and relevant assessment results. To conclude, we will cover proven approaches, and practical techniques, on how you can start leveraging a hybrid approach to web application assessments today.&lt;br /&gt;
&lt;br /&gt;
Anne Gauthier is an application security analyst at GoSecure. Anne is also the president of the Montreal Chapter of OWASP – the industry standard for web application security. With a penetration testing background, she specializes in secure code reviews and in helping companies to improve their software development lifecycle (SDLC) according to industry best practices. Anne is CSSLP, GWAPT and GSSP-JAVA certified. She obtained a Software Engineering bachelor’s degree from Ecole de Technologie Supérieure in Montréal and is now pursuing a Master of Engineering (MEng) degree in Information Systems Security at Concordia University. She is the author of the Project 201 Security blog.&lt;br /&gt;
&lt;br /&gt;
Merci à nos précieux commanditaires !&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;HOW-TO&amp;quot; NIGHT ! Tout sur les CTFs (Capture The Flag) ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 April 4th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Shopify&lt;br /&gt;
&lt;br /&gt;
Cette nouvelle soirée &amp;quot;How-To&amp;quot; Night d'OWASP Montréal vise à présenter les CTFs (une compétition Capture The Flag) et aider les équipes à démarrer et à continuer à évoluer dans leurs pratique de la cyber sécurité pratique. L'objectif est d'outiller les participants en leur fournissant des ressources techniques et des contacts afin de les aider à progresser.&lt;br /&gt;
&lt;br /&gt;
Les éléments discutés seront:&lt;br /&gt;
&lt;br /&gt;
- Composition optimale d’une équipe : Fonctionnement d’une équipe de CTF et les principaux rôles (chef d’équipe, cryptographie, application web, rétro ingénierie et les causes perdues).&lt;br /&gt;
&lt;br /&gt;
- Pourquoi faire des CTFs? Discussion sur les différents styles (jeopardy, attack/defense, etc.), quels sont les problèmes fréquemments rencontrés + plusieurs anecdotes intéressantes (et drôles).&lt;br /&gt;
&lt;br /&gt;
- Trucs de Mr. Unikoder : Le créateur du fameux site ringzer0team, soit un des plus gros sites pour apprendre la résolution de problèmes de CTF (https://ringzer0team.com/) Apprenez des trucs du meilleur, sur comment débuter et interpréter un challenge web, binaire et crypto avec des trucs réels du métier.&lt;br /&gt;
&lt;br /&gt;
Matériel requis :&lt;br /&gt;
&lt;br /&gt;
    Votre légendaire enthousiasme&lt;br /&gt;
&lt;br /&gt;
Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
&lt;br /&gt;
Places limitées. Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Shopify pour l'événement.&lt;br /&gt;
&lt;br /&gt;
Présentateurs :&lt;br /&gt;
&lt;br /&gt;
Charles Hamilton, Senior Consultant chez Mandiant, FireEye, Inc.&lt;br /&gt;
&lt;br /&gt;
Olivier Bilodeau, Cybersecurity Research Lead at GoSecure&lt;br /&gt;
&lt;br /&gt;
Laurent Desaulniers, Senior Security Solution Specialist at Bell Canada&lt;br /&gt;
&lt;br /&gt;
== NorthSec - Applied Security Event ==&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 April 4th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
NorthSec: La plus grande compétition et conférence en cyber sécurité au Canada&lt;br /&gt;
&lt;br /&gt;
NorthSec est un organisme sans but lucratif qui organise une conférence et une compétition de sécurité de type &amp;quot;Capture-The-Flag&amp;quot; (CTF) et des formations. Avec plus de 400 participants présents sur le site pour la compétition, c’est la plus grande compétition du genre au monde.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
La conférence, dans sa 3e année, attire des présentateurs internationaux avec du contenu technique exclusif. L’ajout des séances de travail (workshops) devrait plaire aux plus chevronnés des binaires.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Des formations de 3 jours sont offertes avant la conférence: &amp;quot;Advanced Web Application Security&amp;quot; par Philippe Arteau et &amp;quot;Malware and Memory Forensics&amp;quot; par Michael Ligh, co-auteur des livres &amp;quot;Malware Analyst Cookbook&amp;quot; et &amp;quot;The Art of Memory Forensics&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
NorthSec est situé au Marché Bonsecours dans le Vieux-Port de Montréal au printemps du 15 au 21 mai 2017.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
La présentation couvrira:&lt;br /&gt;
&lt;br /&gt;
- Le plan pour 2017&amp;lt;br/&amp;gt;&lt;br /&gt;
- Ce qui différencie NorthSec&amp;lt;br/&amp;gt;&lt;br /&gt;
- Comment équilibrer une compétition pour les débutants et les experts&amp;lt;br/&amp;gt;&lt;br /&gt;
- Comment bâtir une infrastructure basée sur les conteneurs qui gère 50 équipes dans quelques serveurs sans qu’ils ne se partagent de machines virtuelles&amp;lt;br/&amp;gt;&lt;br /&gt;
- Comment faire du pain au levain à grande échelle&amp;lt;br/&amp;gt;&lt;br /&gt;
- Présentation de quelques défis et solutions&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Les présentateurs:&lt;br /&gt;
&lt;br /&gt;
- Gabriel Tremblay, Président, Delve Labs&amp;lt;br/&amp;gt;&lt;br /&gt;
- Olivier Bilodeau, VP Formations, Co-fondateur MontréHack, GoSecure&amp;lt;br/&amp;gt;&lt;br /&gt;
- Pierre-David Oriol, VP Conférences, Delve Labs&amp;lt;br/&amp;gt;&lt;br /&gt;
- Benoit Guérette, VP Partenaires, Desjardins&amp;lt;br/&amp;gt;&lt;br /&gt;
- Laurent Desaulniers, Tisserand de drapeaux, Bell Canada&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Merci à nos précieux commanditaires !&lt;br /&gt;
&lt;br /&gt;
== Sécurité des applications : Les fondements ==&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 March 20th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
OWASP Montréal est fier d’accueillir au Midi Conférence du mois de mars, Mme Tanya Janca, Co-Leader du chapitre OWASP Ottawa et spécialiste de la sécurité applicative au sein du Gouvernement fédéral.&lt;br /&gt;
&lt;br /&gt;
La conférence « Les fondements de la sécurité des applications » sera présentée en anglais.&lt;br /&gt;
&lt;br /&gt;
Session Description : Everyone has heard about the problem; everyone is “getting hacked”. But what is the answer? From scanning your code with a vulnerability scanner to red teaming exercises, developer education programs and bug bounties, this talk will take the audience through all the possibilities of an extensive application security program, with a detailed explanation of each part.&lt;br /&gt;
&lt;br /&gt;
Bio : Tanya Janca is an application security evangelist, a web application penetration tester and vulnerability assessor, a secure code reviewer, an ethical hacker, the Co-Leader of the OWASP Ottawa chapter, and has been developing software since the late 90’s. She has worn many hats and done many things, including; Custom Apps, Ethical Hacking, COTS, Incident Response, Enterprise Architect, Project and People Management, and even Tech Support. She is currently helping the Government of Canada secure their web applications.&lt;br /&gt;
&lt;br /&gt;
Merci à notre commanditaire principal de cet événement: Ubitrak!&lt;br /&gt;
&lt;br /&gt;
== WORKSHOP ! Server Side Template Injection (SSTI) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-okiok-SSTI-r.jpg | WORKSHOP ! Server Side Template Injection (SSTI) ]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/workshop-server-side-template-injection-ssti]] [https://speakerdeck.com/owaspmontreal/workshop-server-side-template-injection-ssti See the slides / Voir la présentation]&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 22 Février 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Shopify Montréal&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
OWASP Montreal vous invite à un atelier portant sur la sécurité des applications web supportant les moteurs de template (Template Engine). Le principe de séparation entre la présentation du site (code HTML statique) et de son contenu dynamique facilite la création de documents HTML et la capacité à modifier l'apparence du site sans mélanger le traitement et le rendu de la page. L'utilisation de moteurs de template amène de nouveaux enjeux de sécurité. Les vulnérabilités de type Server Side Template Injection (SSTI) sont exploitables à travers les données (non fiables) fournies par l'utilisateur et conduisent à l'exécution de code arbitraire (RCE) sur le serveur hébergeant l'application web.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ce workshop a pour but d'introduire cette classe de vulnérabilité à travers différents cas d'implémentation (php, java, python).&lt;br /&gt;
Nous verrons comment identifier et exploiter ces vulnérabilités et de quelle manière un attaquant peut &lt;br /&gt;
s'y prendre pour exécuter du code arbitraire sur le serveur afin d'en prendre le contrôle.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Niveau : Intermédiaire&amp;lt;br/&amp;gt;&lt;br /&gt;
Matériel requis :&lt;br /&gt;
* Votre portable&lt;br /&gt;
* Votre distribution Linux/Unix de votre choix&lt;br /&gt;
* Votre proxy Web de votre choix&lt;br /&gt;
&lt;br /&gt;
Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
Places limitées. Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Shopify pour l'événement.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Présentateur : Gérôme Dieu&amp;lt;br/&amp;gt;&lt;br /&gt;
Gérôme Dieu cumule plus de 7 années d’expérience en technologies de l’information et en sécurité. &lt;br /&gt;
Il œuvre à titre de conseiller senior en sécurité de l’information au sein de la firme OKIOK. Ces dernières années, il a acquis une expertise dans le domaine de la sécurité des applications web aussi bien d'un point de vue offensif que défensif. En plus de réaliser des tests d’intrusion pour des clients internationaux, Gérôme s’implique dans la recherche et développement afin de maintenir à la fine pointe de la technologie les tests d'intrusion et d'analyse de vulnérabilités. &amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Merci à Shopify d'héberger l'événement !&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Shopify Logo-r.png| Shopify | link=https://www.shopify.com/]]&lt;br /&gt;
== Le courriel en 2017 – risques et menaces pour tous ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Zero spam 2.jpg|Le courriel en 2017 – risques et menaces pour tous]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://www.youtube.com/watch?v=HX2vcijcCWw ]] [https://www.youtube.com/watch?v=HX2vcijcCWw Watch the conference / Regarder la conférence ]&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 Le 23 janvier 2017 à midi&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
Monsieur Poellhuber nous brossera un tableau du phénomène grandissant du rançongiciels et de l'hameçonnage, personnification.&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
- Par les années passées, la menace courriel se résumait principalement en un fort volume de contenu simplement indésirable. Aujourd’hui la menace a passablement évolué. Quels sont les véritables risques actuels associés au courriel ? Rançongiciels, hameçonnage, personnification. Cette conférence présentera les nouveaux défis de sécurité pour les organisations qui doivent composer avec des attaques de plus en plus sophistiquées et de plus en plus ciblées tout en protégeant leur réputation. Des exemples biens réels, drôles et moins drôles seront disséqués pour bien dessiner l’ampleur de l’enjeu.&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
M. David Poellhuber, Chef de l’exploitation, ZEROSPAM Sécurité Inc&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note biographique :&amp;lt;br/&amp;gt;&lt;br /&gt;
Monsieur David Poellhuber oeuvre dans l’industrie de la sécurité informatique depuis quinze ans. Il a été conférencier dans plusieurs forums de sécurité au Canada et est maintenant reconnu comme une autorité en matière de sécurité du courriel. Il a fondé ZEROSPAM Sécurité en 2003, le premier service Québécois externalisé de sécurité du courriel infonuagique qui se distingue par sa convivialité, son efficacité et ses technologies de détection proactives.&amp;lt;br/&amp;gt;&lt;br /&gt;
Audience :  Généralistes et spécialistes de la sécurité des TI &lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Merci à Ubitrack pour le repas et à Desjardins d'héberger l'événement!&lt;br /&gt;
&lt;br /&gt;
[[Image:Ubitrak-r2.jpg|Ubitrak|link=http://www.ubitrak.com/fr/]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&lt;br /&gt;
== Effective XSS Mitigation ==&lt;br /&gt;
&lt;br /&gt;
[[Image:XSS mitigation.jpg | Effective XSS Mitigation ]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=http://slides.com/olivierarteau/xss-mitigation ]] [http://slides.com/olivierarteau/xss-mitigation See the slides / Voir la présentation]&lt;br /&gt;
&lt;br /&gt;
WHEN &lt;br /&gt;
 18 Janvier 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Google Montréal&lt;br /&gt;
&lt;br /&gt;
FRANÇAIS/ENGLISH&amp;lt;br/&amp;gt;&lt;br /&gt;
La mitigation de XSS a été un sujet important au cours des dernières années. Les navigateurs ont implémenté, en autre, deux fonctionnalités pour mitiger leur impact : l'entête &amp;quot;XSS-Protection&amp;quot; et l'entête &amp;quot;Content-Security-Policy&amp;quot;. Par contre, obtenir une mitigation contre les XSS efficace est souvent plus complexe que l'on pense. Cet atelier couvrira les deux entêtes. Il expliquera comme il est possible de contourner ces protections et ce qu'il est possible de faire pour se protéger. Des exercices de type &amp;quot;offensif&amp;quot; et &amp;quot;défensif&amp;quot; seront proposés.&lt;br /&gt;
Mitigation for XSS as been an important topic in the last few years. Browsers have implemented two main functionalities to help mitigate the impact of XSS : the &amp;quot;XSS-Protection&amp;quot; header and the &amp;quot;Content-Security-Policy&amp;quot; header. But, getting an effective XSS mitigation of those headers is trickier than it may seem. This workshop will cover both of those headers. It will explain how bypass of those protection work and what you can do about it. It will have both &amp;quot;defensive&amp;quot; exercises and &amp;quot;offensive&amp;quot; exercises.&lt;br /&gt;
Niveau : débutant/intermédiaire&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Matériel requis :&lt;br /&gt;
&lt;br /&gt;
Votre portable&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
&lt;br /&gt;
Places limitées. Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Google pour l'événement.&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Présentateur : Olivier Arteau&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Olivier Arteau est un professionnel en sécurité informatique depuis quelques années et fait partie de l’équipe de test d’intrusion de Desjardins. Il est aussi un amateur de CTF qui a gagné à plusieurs reprises le CTF du NorthSec avec l’équipe HackToute et participe fréquemment à d’autres CTF avec l’équipe DCIETS.&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Merci à Google d'héberger l'événement! &lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-zap-4-r.jpg | Google | link=https://www.google.ca/ ]]&lt;br /&gt;
&lt;br /&gt;
= Lunch &amp;amp; Learn / Workshops 2015-2016 =&lt;br /&gt;
&lt;br /&gt;
== WORKSHOP ! Top 10 OWASP - Unleash the threats ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-top10.jpg | WORKSHOP! Top 10 OWASP - Unleash the threats ]]&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 30 novembre 2016 de 17h30 à 20h30&lt;br /&gt;
WHERE&lt;br /&gt;
 Immunio @ WeWork&lt;br /&gt;
&lt;br /&gt;
De nos jours, la sécurité applicative est essentielle dans l’écosystème des entreprises de toutes tailles. Les vecteurs d’attaques sont multiples, les vulnérabilités de sécurité dans les applications peuvent être désastreuses et les impacts d’un « Hack » peuvent être irréversibles pour l’entreprise; vols de données sensibles, perte de réputation, perte de $$$$$, etc.&lt;br /&gt;
L’objectif du workshop est de comprendre la base sur les vulnérabilités de sécurité dans les applications et les techniques d’exploitation utilisées par les pirates informatiques, en plus de connaître les bonnes pratiques de développement en matière de sécurité applicative. &lt;br /&gt;
Avec l'aide de WebGoat, Damn Vulnerable Web Application et de Kali Linux, vous pourrez participer&lt;br /&gt;
à l'exploitation des applications et découvrir les techniques utilisées par les attaquants.&lt;br /&gt;
&lt;br /&gt;
Niveau : débutant&lt;br /&gt;
&lt;br /&gt;
Matériel requis :&lt;br /&gt;
 Votre portable&lt;br /&gt;
 Kali Linux&lt;br /&gt;
 La VM du workshop, envoyée aux participants&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
&lt;br /&gt;
Places très limitées (nb = 10). Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Immunio &amp;amp; WeWork pour l'événement.&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Présentateur : Christian Leclerc&lt;br /&gt;
&lt;br /&gt;
Christian est spécialisé en conception et développement de solutions web sécuritaires. Tout au long de sa carrière, il a acquis une vaste expertise sur plusieurs types de technologies et méthodologies, intégré la sécurité dans le cycle de développement d’applications, effectué des revues de code sécurité, déployé des outils d’analyse des vulnérabilités et mis en place des systèmes d’authentification. De plus, il a participé à la conception et au développement de solutions sécuritaires de pointe comme la signature électronique à l’aide d’une infrastructure à clé publique (PKI), les authentifications fortes, le Registre des consentements au don d'organes et de tissus (RDOQ.org) et la migration de plusieurs applications web vers un environnement SOA (Service Oriented Architecture). &lt;br /&gt;
&amp;lt;br&amp;gt;Merci à Immunio &amp;amp; WeWork d'héberger l'événement!&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:Immunio-horizontal-r.png|Immunio|link=https://www.immun.io/]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[Image:Wework-r.jpg|WeWork|link=https://www.wework.com/]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Histoire d'un Hack ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Histoire-dun-hack-r.jpg | Histoire d'un Hack ]]&lt;br /&gt;
&lt;br /&gt;
WHEN &lt;br /&gt;
 21 novembre 2016 à midi&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
Pour son activité du mois de novembre, OWASP Montréal propose à la communauté de la sécurité des TI et aux gestionnaires de faire l'autopsie d'une attaque de haute voltige sur un site web et des outils mis à la disposition par OWASP.&lt;br /&gt;
 &lt;br /&gt;
Bernard Bolduc cumule plus de 17 années d’expérience en technologies de l’information et en sécurité. Il œuvre à titre de conseiller senior en sécurité de l’information au niveau d’entreprise de classe nationale et internationale.&lt;br /&gt;
 &lt;br /&gt;
Bernard se spécialise en sécurité Unix, applicative et en gestion de la sécurité des télécommunications. Il combine ces expertises techniques afin d’obtenir des résultats probants et efficaces pour ces clients des secteurs bancaire, télécommunication et multimédias, de l’énergie ou des services publiques. Tout au long de sa carrière, Bernard s’est toujours maintenu à jour sur les dernières menaces de sécurité technologique et commerciale en assistant à des formations spécialisées et d'échanger avec un grand nombre de partenaires dans l'industrie de la sécurité.&lt;br /&gt;
 &lt;br /&gt;
La conférence débute à midi.&lt;br /&gt;
 &lt;br /&gt;
La conférence vous donne droit à 1 CPE et pour les 50 premières personnes, un lunch gratuit.&lt;br /&gt;
 &lt;br /&gt;
Merci à Desjardins d'héberger l'événement!&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Workshop ! Création de votre première extension OWASP ZAP (ou BurpSuite) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-zap-mix.jpg | Workshop ! Création de votre première extension OWASP ZAP (ou BurpSuite)]]&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 11 novembre 2016 de 18h à 21h&lt;br /&gt;
&lt;br /&gt;
WHERE &lt;br /&gt;
 Google Montréal&lt;br /&gt;
&lt;br /&gt;
OWASP Zed Attack Proxy (ZAP) est un scanneur de vulnérabilités et un outil de débogage HTTP. Ce type d'outil est crucial dans un test d'intrusion web et contient un lot intéressant de fonctionnalités. Cela dit, il est possible d'étendre les fonctionnalités. Plusieurs types d'extension sont possibles : vue alternative pour les requêtes ou les réponses, scanneur passif des réponses, scanneur actif produisant des requêtes, etc.&lt;br /&gt;
&lt;br /&gt;
Plusieurs options seront données, par exemple :&lt;br /&gt;
&lt;br /&gt;
 Détection automatique de flag dans les sources&lt;br /&gt;
 Scanneur actif asynchrone DNS&lt;br /&gt;
 Ou votre propre idée&lt;br /&gt;
&lt;br /&gt;
Pour chacune des suggestions, des squelettes de code seront fournis pour les APIs de ZAP. Pour les utilisateurs de BurpSuite, des directives analogues seront également données.&lt;br /&gt;
&lt;br /&gt;
Niveau : débutant / intermédiaire&lt;br /&gt;
&lt;br /&gt;
Matériel requis&lt;br /&gt;
&lt;br /&gt;
 Votre portable&lt;br /&gt;
 [https://www.owasp.org/index.php/OWASP_Zed_Attack_Proxy_Project OWASP ZAP (gratuit)]&lt;br /&gt;
 [https://portswigger.net/burp/download.html BurpSuite]&lt;br /&gt;
 Éditeur de code pour Java, Python ou Ruby&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Présentateur : Philippe Arteau&lt;br /&gt;
&lt;br /&gt;
Philippe est un chercheur en cybersécurité chez GoSecure. Il est l'auteur de l'outil d'analyse statique Java &amp;quot;Find Security Bugs&amp;quot;. Il a découvert des vulnérabilités importantes dans les logiciels populaires tels que Google Chrome, Dropbox, Paypal, RunKeeper et Jira. Il a présenté dans différentes conférences incluant Black Hat USA, Black Hat Europe, ATL Sec Con, NorthSec, Hackfest (QC) et JavaOne. Il a développé de nombreux plug-ins pour les outils de proxy BurpSuite et OWASP ZAP (Retire.js, Reissue Request Script, PDF preview et Image Metadata). Il a fait également des contributions à d'autres plug-ins comme J2eeScan.&lt;br /&gt;
&lt;br /&gt;
Merci à Google d'héberger l'événement! &lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-zap-4-r.jpg | Google | link=https://www.google.ca/ ]]&lt;br /&gt;
&lt;br /&gt;
==Logiciel de rançon (Ransomware) s'attaque au domaine de la santé==&lt;br /&gt;
&lt;br /&gt;
[[Image:HackingHealth-2.jpg | Logiciel de rançon (Ransomware) s'attaque au domaine de la santé ]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/ransomware-and-healthcare-hacking-health ]] [https://speakerdeck.com/owaspmontreal/ransomware-and-healthcare-hacking-health See the slides / Voir la présentation]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;(Conférence en anglais)&lt;br /&gt;
Pour le lancement de la saison 2016 - 2017, OWASP Montréal propose à la communauté de la sécurité des TI et aux gestionnaires de la santé une incursion dans le monde du logiciel malveillant ciblant le domaine de la santé.&amp;lt;br/&amp;gt;&lt;br /&gt;
Cette conférence s'intége dans le Coopérathon co-organisé par le Mouvement Desjardins et Hacking Health.&amp;lt;/b&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Le domaine de la santé serait devenu une cible privilégiée des campagnes de ransomware parce que l'industrie a souvent payé la rançon demandée pour récupérer les données confidentielles et vitales de ses clients. Monsieur Ed Gershfang nous brossera un portrait du phénomène et des meilleures pratiques à mettre en place en matière de sécurité applicative.&lt;br /&gt;
Ed Gershfang possède une expérience solide dans l'infrastructure informatique et plus de 6 ans d'expérience dans les domaines de la sécurité de l'information, de la vulnérabilité, de la gouvernance et de la gestion des risques. Il était directeur de la sécurité pour la société PeriGen, un chef de file de développement de logiciels médicaux en Israël.&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== La sécurité applicative vue par un pentesteur ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Juin2016-OWASPMtl.jpg | OWASP Montréal reçoit Mario Contestabile, Pentester de renom ]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
From Left to Right : Isabelle Lusseyran, Head of Development at Hacking Health. Eduard Gershfang Information Security Analyst at WSP | Parsons Brinckerhoff.&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/owasp-montreal-recoit-mario-contestabile ]] [https://speakerdeck.com/owaspmontreal/owasp-montreal-recoit-mario-contestabile See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Pour clore la saison 2015 – 2016, OWASP Montréal est fier d’accueillir au Midi Conférence un des architectes de renom du développement applicatif au Canada, monsieur Mario Contestabile.&lt;br /&gt;
En tant qu’auteur de plusieurs centaines de tests d’intrusion, il connait tous les rouages de ce qu’est véritablement une application Web «sécurisée». Mais avez-vous déjà remarqué que les rapports de tests d’intrusion mentionnent rarement, voir jamais : «Votre site est très difficile à pirater. Félicitations !» ?&lt;br /&gt;
Et qu’en est-il de ces rapports qui contiennent des dizaines de soi-disant vulnérabilités ? Est-ce que cela signifie d’emblée que l’application devrait être mise hors ligne ?  &lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Lors de cette conférence, nous examinerons des rapports concrets (ambigus) de vulnérabilités et nous les analyserons afin de mieux comprendre si elles représentent une véritable menace, ou si elles ne servent qu’à «remplir» les rapports.&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Avec son expertise en protection et en attaque d’applications Web, il abordera les points suivants :&lt;br /&gt;
Comment pouvez-vous sélectionner des systèmes de façon à mieux exécuter des protections de sécurité ?&lt;br /&gt;
Éviter certains pièges dans votre application Web qui rendent les attaques plus faciles et la protection plus difficile.&lt;br /&gt;
De nos jours, que peuvent faire les développeurs à l’intérieur de systèmes communs, qui puisse me rendre la tâche plus ardue en tant que « hacker »?&lt;br /&gt;
Pouvons-nous exiger de meilleurs rapports de la part des firmes de sécurité?&lt;br /&gt;
À quoi devrions-nous nous attendre de la part d’un « pentesters »?&lt;br /&gt;
Comment pouvons-nous savoir si le « pentester » a vérifié les failles de l’application et qu’il n’a pas simplement utilisé un scanneur?&lt;br /&gt;
Et enfin, comment pouvons-nous aider les « ethical hackers » à obtenir un meilleur rendement lors d’un test d’intrusion?&lt;br /&gt;
Il expliquera le sujet en détails, et ensemble, nous verrons de quelles façons les développeurs d’applications peuvent exploiter le savoir-faire des « pentesters », et comment nous pouvons faire en sorte qu’une application Web soit protégée.&lt;br /&gt;
Biographie :&lt;br /&gt;
Mario Contestabile est reconnu comme l’un des experts en sécurité les plus réputés au Canada. Son expertise, construire et protéger votre plateforme applicative. Ancien développeur C++ et Java, Mario partage ses nombreuses connaissances en « ethical hacking » et en développement de codes sécurisé.  &lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Tuesday, 14 June 2016 from 12:00 PM to 1:00 PM (EDT) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Comment protéger les applications mobiles? ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Avril2016-OWASPMtl.png | Comment protéger les applications mobiles? ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/comment-proteger-les-applications-mobiles ]] [https://speakerdeck.com/owaspmontreal/comment-proteger-les-applications-mobiles See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Dans le cadre des Midis Conférence à l'Espace Desjardins, l'équipe OWASP Montréal vous invite à assister à une présentation sur les vulnérabilités les plus communes associées aux appareils mobiles. &lt;br /&gt;
Marie-Claire Willig détaillera entre autres comment stocker de façon sécuritaire les données de l’application mobile ainsi que protéger l’application contre des attaques externes. Des outils simples vous seront dévoilés pour détecter ces vulnérabilités.&lt;br /&gt;
Marie-Claire est une professionnelle d'expérience en sécurité appliquée.&lt;br /&gt;
Une grande partie de son intérêt professionnel réside actuellement dans un domaine assez niche, soit la revue de code sécuritaire, un fondement important de tout cycle de développement sécuritaire en entreprise.&lt;br /&gt;
Au sein de l'équipe de sécurité technologique Desjardins, elle est, en autre, responsable de former les développeurs (Java et .NET principalement) afin de les sensibiliser aux meilleures pratiques de développement sécuritaire.&lt;br /&gt;
Également, elle est une professionnelle des tests d'intrusion sur les applications web, les applications mobiles ainsi que l'infrastructure réseau.&lt;br /&gt;
Bienvenue à tous&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 20 April 2016 from 12:15 PM to 1:00 PM (EDT) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== NorthSec, Le plus gros événement de cybersécurité appliquée au Canada ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Mars2016-OWASPMtl.jpg | NorthSec, Le plus gros événement de cybersécurité appliquée au Canada ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/YQtvltQYs7Y]] [https://youtu.be/YQtvltQYs7Y Watch the conference / Regarder la conférence] &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
OWASP Montréal est fier d’inviter au Midi Conférence de mars, NorthSec est le plus gros événement de sécurité appliquée au Canada qui comprend deux jours de formation, deux jours de conférences ainsi qu’une compétition du genre « capture the flag » (CTF) de trois jours.&lt;br /&gt;
Gabriel Tremblay, Benoit Guerette, Pierre-David Oriol et Laurent Desaulniers viendront vous parler de cet organisme sans but lucratif dynamique qui est géré par une équipe de bénévoles passionnés qui donnent à chaque année leur énergie et leur temps pour soutenir la communauté de la sécurité de l’information.&lt;br /&gt;
Le volet compétition, l’épreuve maîtresse, est présentée sous forme d’un scénario qui rend cohérent une centaine de défis techniques. Les équipes de participants attaquent l’infrastructure de compétition pour soutirer des drapeaux (flags) à travers un ensemble de vulnérabilités présentes comme de l’injection SQL, des XSS ou encore l’exploitation d’exécutables sur systèmes embarqués. Quelques exemples de défis des années passées seront également présentés.&lt;br /&gt;
Le volet conférence, qui est à sa 2ème année, met de l’avant plusieurs présentations techniques touchant la sécurité applicative mais aussi l’éthique et leurs impacts sociaux. Certaines présentations confirmées seront dévoilés.&lt;br /&gt;
Le tout nouveau volet formation propose deux formations en sécurité applicative de calibre international (anglais) : “Advanced Web Security Testing with Burp Pro” et “Modern Object-Oriented Malware Reverse Engineering”.&lt;br /&gt;
Venez aussi, découvrir comment l'équipe est partie d'une idée en 2012 pour se rendre à un évènement d'envergure, qui rassemblera plus de 600 professionnels, étudiants et autres passionnés de sécurité appliquée lors de la 4ème édition qui aura lieu du 17 au 22 mai 2016 au Marché Bonsecours.&lt;br /&gt;
Finalement, la mission, la vision ainsi que les activités sociales de la semaine de NorthSec sont aussi au menu de cette présentation qui sera suivie d’une période de questions.&lt;br /&gt;
&lt;br /&gt;
Gabriel Tremblay, Delve Labs, Président&lt;br /&gt;
Benoit Guerette, Desjardins, VP Finances&lt;br /&gt;
&lt;br /&gt;
Pierre-David Oriol, Delve Labs, VP Conférence&lt;br /&gt;
Laurent Desaulniers, Bell Canada, Artisant de drapeaux&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 23 March 2016 from 12:00 PM to 1:00 PM (EDT) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== La sécurité applicative et l'hameçonnage - February 24th ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Fevrier2016-OWASPMtl.jpg | La sécurité applicative et l'hameçonnage ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/1RYlOiIENjQ]] [https://youtu.be/1RYlOiIENjQ Watch the conference / Regarder la conférence] &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
De nos jours, une des méthodes les plus efficaces pour contourner les périmètres de sécurité externes est l'hameçonnage conjointement avec l’abus de certaines technologies Web.&lt;br /&gt;
&lt;br /&gt;
Dans le cadre ses activités, OWASP Montréal est heureux d'inviter d'accueillir, l'équipe OKIOK qui présentera les impacts liés à ce type d'attaque, tel que vu et expérimenté en entreprise ainsi que les plans d'action pour traiter ces risques. La présentation abordera aussi bien la sécurité web et applicatives, des systèmes informatiques ainsi que de la sécurité physique de centres de données. &lt;br /&gt;
&lt;br /&gt;
    Capture d'informations sensibles par imitations de portails Web ;&lt;br /&gt;
    Authentification Web par 2-facteurs ;&lt;br /&gt;
    Injection SMTP dans des formulaires Web ;&lt;br /&gt;
    Attaque de type “Drive-by-download”;&lt;br /&gt;
    Prise de contrôle à distance à travers des flux HTTP;&lt;br /&gt;
    Attaque de CSRF à partir de courriels ;&lt;br /&gt;
    Attaque d'hameçonnage basée sur des achats par Internet (ex : PayPal).&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
When&lt;br /&gt;
 Wednesday, 24 February 2016 from 12:00 PM to 1:15 PM (EST) - Add to Calendar &lt;br /&gt;
Where&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest Montreal, Quebec CA&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Internet of {Things, Threats} - January 20th ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Janvier2016-OWASPMtl-R.png | Internet of {Things, Threats} ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=http://gosecure.github.io/presentations/2016-01-20_owasp-mtl/internet-of-threats.html ]] [http://gosecure.github.io/presentations/2016-01-20_owasp-mtl/internet-of-threats.html See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
De plus en plus de périphériques se retrouvent connectés sur Internet. Sous la bannière &amp;quot;Internet of Things&amp;quot; (IoT) ces équipements, que ce soit une pompe à insuline ou un système de caméra de sécurité, tournent généralement sous un système GNU/Linux embarqué d'architecture MIPS ou ARM. La difficulté de mettre à jour ces équipements ainsi que le peu d'effort mis dans la sécurité des systèmes ou la sécurité applicative en font des cibles de choix. Ces derniers mois, nous avons analysé plusieurs logiciels malveillants ciblant ces architectures. Que ce soit par l'exploitation d'une vulnérabilité (Shellshock) ou encore un défaut de configuration, ces systèmes exposés sur Internet peuvent être compromis.&lt;br /&gt;
&lt;br /&gt;
Notre présentation couvrira quelques une de ces analyses:&lt;br /&gt;
&lt;br /&gt;
* Linux/Moose, un malware se propageant automatiquement qui fraude les réseaux sociaux (par exemple Facebook, Twitter et YouTube)&lt;br /&gt;
* LizardSquad et acteurs étrangers qui utilisent des systèmes embarqués compromis pour réaliser des dénis de service distribué (DDoS) &lt;br /&gt;
* Win32/RBrute est un logiciel malveillant qui tente de changer les paramètres de routeurs dans le but de faire du &amp;quot;DNS poisoning&amp;quot;. Il a été distribué par le populaire botnet Sality.&lt;br /&gt;
* Un kit d'exploits qui utilise seulement le navigateur de leur victime avec le même objectif, c'est-à-dire faire du &amp;quot;DNS poisoning&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Enfin, des conseils seront proposés à l'audience pour l'aider à se protéger de ces menaces.&lt;br /&gt;
&lt;br /&gt;
'''Thomas Dupuy''' (twitter: @nyx__o)&lt;br /&gt;
&lt;br /&gt;
Thomas est chercheur en logiciel malveillant chez ESET Canada Recherche. Bon vivant, Thomas déjeune en &amp;quot;reversant&amp;quot; des binaires, contribue à quelques projets open source durant le diner (yara, yara rules, pefile, APTnotes) et la nuit participe à des &amp;quot;Hacking Games&amp;quot; (Capture The Flag). Curieux de nature Thomas analyse des malware aux architectures &amp;quot;exotiques&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Olivier Bilodeau''' (twitter: @obilodeau)&lt;br /&gt;
&lt;br /&gt;
Olivier Bilodeau is the head of Cybersecurity Research at GoSecure a consultancy firm specializing in cybersecurity services for the public and private sector. With more than 10 years of infosec experience, Olivier worked on Unix servers at Bell Canada, managed a portion of Air Canada's network, wrote open source network access control software at Inverse and worked as a Malware Researcher at ESET. He likes to reverse engineer everything that crosses his path, participate in information security capture-the-flag competitions, hack open source code and brew beer. He has spoken at various conferences (Defcon, Botconf, VirusBulletin, Derbycon, ...), used to lecture on information security at ETS University in Montreal, drives the NorthSec Hacker Jeopardy and co-organizes the MontreHack capture-the-flag training initiative. His primary research interests include reverse-engineering tools, Linux and/or embedded malware and honeypots.&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Survivre aux attaques DDOS applicatives ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Decembre2015-OWASPMtl.jpg | Survivre aux attaques DDOS applicatives ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Survivre aux attaques DDOS (Distributed Denial-Of-Service) applicatives.&lt;br /&gt;
Cette conférence s'adresse aux professionnels et gestionnaires des TI.&lt;br /&gt;
Conférencier : Christian Shink, ing., CSSLP, ingénieur système chez Radware, manufacturier spécialisé dans la prévention des attaques DDOS. Il fut également consultant en sécurité applicative chez In Fidem.&lt;br /&gt;
Objectifs de la conférence:&lt;br /&gt;
Présenter les tendances actuelles en matière d'attaques DDOS applicatives.&lt;br /&gt;
Renseigner les participants sur les techniques et stratégies pour contrer ces attaques illustrées à partir de cas vécus.&lt;br /&gt;
Démystifier certains mythes en ce qui concernent les façons efficaces de protéger les applications contre des attaques DDOS.&lt;br /&gt;
Date : 16 décembre 2015&lt;br /&gt;
Heure : 11h45&lt;br /&gt;
La conférence débute à 12h00 et se termine à 12:55.&lt;br /&gt;
Un lunch sera servi.&lt;br /&gt;
Réservez maintenant!&lt;br /&gt;
1 CPE&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 16 December 2015 from 11:45 AM to 1:00 PM (EST) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec &lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Sécurité des applications - Systèmes de contrôles industriels ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Novembre2015-OWASPMtl-R.png | Sécurité des applications - Systèmes de contrôles industriels ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/0eAZpyiQQ9A]] [https://youtu.be/0eAZpyiQQ9A Watch the conference / Regarder la conférence] &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&lt;br /&gt;
La sécurité des applications et les systèmes de contrôles industriels.&lt;br /&gt;
Cette conférence s'adresse aux professionnels et gestionnaires des TI desinfrastructures critiques qui exploitent ou gèrent des systèmes de contrôles industriels(SCI) et SCADA (surveillance et d'acquisition de données).&amp;lt;br/&amp;gt;&lt;br /&gt;
Conférenciers : Robert Nastas, CSSA. Gestionnaire de projet et Youssef Jad, Architecte Cyber sécurité, ICS-CERT&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Objectifs de la conférence:&lt;br /&gt;
* Démystifier le domaine d'affaires.&lt;br /&gt;
* Renseigner les participants sur les bonnes pratiques de sécurité desapplications liées au secteur industriel.&lt;br /&gt;
* Proposer aux professionnels et gestionnaires des TI responsables dessystèmes SCADA et SCI des pistes de solutions aux enjeux de sécurité.&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
L'équipe OWASP Montréal vous remercie d'avoir assisté en grand nombre à la conférence, 'La sécurité des applications et les systèmes de contrôles industriels'.&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 18 November 2015 from 11:45 AM to 1:00 PM (EST) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Les préoccupations actuelles de hauts dirigeants en matière de cybersécurité et de sécurité applicative ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Septembre2015-OWASPMtl.jpg | Les préoccupations actuelles de hauts dirigeants en matière de cybersécurité et de sécurité applicative ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/un-regard-sur-la-securite-de-linformation-en-2015-par-eric-hebert ]] [https://speakerdeck.com/owaspmontreal/un-regard-sur-la-securite-de-linformation-en-2015-par-eric-hebert See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Pour le lancement des activités corporatives de la saison 2015 - 2016, le 8 septembre prochain à 12:00, l'équipe OWASP Montréal convie les gestionnaires et artisants de la sécurité des TIC à venir entendre monsieur Éric Hébert qui nous présentera son interprétation des préoccupations actuelles de hauts dirigeants en matière de cybersécurité et de sécurité applicative. L'événement se tiendra au complexe Desjardins à la salle &amp;quot;Espace Desjardins&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
''' ÉRIC G. HÉBERT, CISM, CISSP ''' &amp;lt;br/&amp;gt;&lt;br /&gt;
Après plus de 20 ans passés dans le domaine de la sécurité des technologies de l’information, Éric se spécialise dans la mise en œuvre et la gestion d'équipes performantes, capables de relever les plus hauts défis de la cybersécurité moderne.&amp;lt;br/&amp;gt;&lt;br /&gt;
Capable de dialoguer avec les hauts dirigeants, il sait traduire et vulgariser les enjeux techniques complexes tout en respectant la nature et l'appétence au risque de ses clients. Dynamique et pourvu d'une expérience couvrant presque toutes les sphères de la SI, il fonce dans le respect de la culture établie tout en implantant des solutions pragmatiques et efficaces.&amp;lt;br/&amp;gt;&lt;br /&gt;
Depuis plus de 10 ans, il gravite principalement autour des entreprises du domaine financier (BNC, Desjardins, Fonds de solidarité FTQ...) et les accompagne dans la mise en place de solutions efficaces tenant compte à la fois des risques et des budgets.&lt;br /&gt;
En plus d’avoir fondé de nombreuses associations telles que le RéseauSécurIT et le RPSI, il maintient une présence régulière auprès des milieux associatifs professionnels et partage régulièrement ses expériences lors de conférences et d'entrevues avec divers médias.&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Events / Évènements =&lt;br /&gt;
&lt;br /&gt;
== Owasp Montreal at [https://nsec.io/ NorthSec 2017] ==&lt;br /&gt;
&lt;br /&gt;
[[Image:NorthSec2017-5.jpg]]&lt;br /&gt;
[[Image:NorthSec2017-6.jpg]]&lt;br /&gt;
&lt;br /&gt;
From Left to Right: Anne Gauthier, OWASP Montréal Chapter Leader (President) and Application Security Analyst at GoSecure, Hugo Genesse, OWASP Montréal Chapter Leader and Research Intern at PNF Software, Julien Touche, OWASP Montréal Chapter Leader and Principal Security Engineer at Nuance Communications&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal at [https://2017.appsec.eu/ AppSec] ==&lt;br /&gt;
&lt;br /&gt;
[[Image:OWASPAppSecBelfast2017-7.jpg]]&lt;br /&gt;
&lt;br /&gt;
OWASP Montreal and Ottawa Chapter Leaders at OWASP AppSec Belfast, UK #WomenInAppSec&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal at [https://hackfest.ca/ HackFest 2016] ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hackfest2016-r.jpg| HackFest |link=https://hackfest.ca/]]&lt;br /&gt;
&lt;br /&gt;
From left to right: Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Louis Nadeau, OWASP Québec Chapter Leader and Manager, Product Security at Bentley Systems and Patrick Leclerc, OWASP Québec Chapter Leader and Information Security Advisor at La Capitale.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal at OWASP [https://2016.appsecusa.org/ AppSec USA 2016, Washington] ==&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:OWASPMtl-AppSecUSA2016-Washington.jpg | OWASP Montreal at AppSec USA 2016, Washington]] &lt;br /&gt;
&lt;br /&gt;
​From left to right: Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Marie-Claire Willig, Application Security Analyst at Desjardins, Speaker and Cofounder of the Roslyn Security Guard tool which will be presented at Blackhat 2016, Alexandre Hamelin President at Synlabs Consulting Inc., Jonathan Marcil, Application Security Engineer at Blizzard Entertainment and former OWASP Montreal Chapter Leader. Philippe Arteau, Cybersecurity Researcher at GoSecure and designer of [https://find-sec-bugs.github.io/ Find Security Bugs] and Roslyn Security Guard tool which will be presented at Blackhat 2016.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://www.gosec.net GoSec] 2016 ==&lt;br /&gt;
&lt;br /&gt;
[[Image:OWASP-GoSec2016-1r.jpg|OWASP Montreal at GoSec 2016]] [[Image:OWASP-GoSec2016-2r.jpg|OWASP Montreal at GoSec 2016]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
From left to right : Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Simon Lacasse, student and volunteer, and Laurent Desaulniers, Security Analyst at Bell Canada.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://www.nsec.io/ NorthSec] 2016 – Annual Applied Security Event ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hackfest2016-OWASPMtl.jpg|OWASP Montreal at NorthSec 2016]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Simon Veilleux &lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
From left to right : Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Olivier Arteau OWASP Montréal Chapter Leader and Conseiller chez Groupe Technologie Desjardins, Hugo Genesse, OWASP Montréal Chapter Leader and Vulnerability Research Intern at Wurldtech Security Technologies.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://hackfest.ca/en/ Hackfest] 2015 ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hackfest2015-OWASPMtl-R.JPG | OWASP Montreal at Hackfest 2015]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Hackfest &lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
From left to right : Jonathan Marcil, Application Security Engineer at Blizzard Entertainment and former OWASP Montreal Chapter Leader. Philippe Arteau, Cybersecurity Researcher at GoSecure and designer of [http://find-sec-bugs.github.io/ Find Security Bugs] and Roslyn Security Guard tool which will be presented at Blackhat 2016. &lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/8U0qkEuUFy8]] [https://youtu.be/8U0qkEuUFy8 Watch the video / Regarder la vidéo]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://www.gosec.net/ GoSec] 2015 – The Annual Cybersecurity Conference presented by GoSecure, EY and ISACA. ==&lt;br /&gt;
&lt;br /&gt;
[[Image:GoSec2015-OWASPMtl.jpg|OWASP Montreal at GoSec 2015]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
From left to right : Marie-Claire Willig, Application Security Analyst at Desjardins, Speaker and Cofounder of the Roslyn Security Guard tool which will be presented at Blackhat 2016. Benoît Guérette, Application Security Team Leader at Desjardins, VP Finance at NorthSec and OWASP Montreal Chapter Founder and Former Chapter Leader.&lt;br /&gt;
&lt;br /&gt;
== See also / Voir aussi ==&lt;br /&gt;
&lt;br /&gt;
OWASP Montréal recommends Montréhack. Learn and share knowledge on IT security by solving technical challenges. Third Monday of every month. &lt;br /&gt;
&lt;br /&gt;
OWASP Montréal recommende Montréhack. Apprends et partages des connaissances sur la sécurité informatique en travaillant des problèmes appliqués. Chaque troisième lundi du mois. &lt;br /&gt;
&lt;br /&gt;
[[File:Montrehack.png|Montréhack|link=http://montrehack.ca/|alt=Montréhack]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Archives 2007-2015 =&lt;br /&gt;
{{:Montreal chapter past meetings}}&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - February 3rd - Getting to Know the Software Assurance Marketplace (SWAMP) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/p4_vjufcB6Q]] [https://youtu.be/p4_vjufcB6Q Watch the conference / Regarder la conférence]&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/getting-to-know-the-software-assurance-marketplace-swamp-by-pat-beyer]] [https://speakerdeck.com/owaspmontreal/getting-to-know-the-software-assurance-marketplace-swamp-by-pat-beyer See the slides / Voir la présentation] &amp;lt;br/&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Pat Beyer&lt;br /&gt;
*'''ADDITIONAL PRESENTER:'''  Abe Megahed&lt;br /&gt;
*'''ABSTRACT:''' The Software Assurance Marketplace (SWAMP) is an open facility that is designed, built, and operated by four research institutions. The SWAMP provides no-cost access to an array of open-source and commercial software analysis tools. This presentation will provide an overview and demo of the SWAMP, including our goals, intended audience, current capabilities, and future plans. We will cover our relationship with OWASP, incorporation of open-source software assurance tools, and status as an open-source project and resource available to the software community. Visit https://continuousassurance.org/ to learn more about us.&lt;br /&gt;
*'''BIO:''' Pat Beyer serves as the Product Manager for the Software Assurance Marketplace (SWAMP). With over 25 years of experience successfully managing multi-million dollar global projects, Beyer’s expertise extends to the IT, construction, and operations sectors, with a specialization in managing government contracts and grants. A gifted communicator, Beyer is a sought after speaker due to his ability to deliver complex information about technology products and services in a way that is easily understood. He is a decorated combat veteran of the Global War on Terror, the international military campaign that started following the 9/11 terrorist attacks on the United States. In 2004, he constructed and rehabilitated over 20 schools, clinics, and water treatment plants for the Iraqi people using local contractors. Beyer also holds a Bachelor of Science, a Masters in Business Administration, a Ph.D. in Organization and Management, and a Project Management Professional (PMP) certification.&lt;br /&gt;
*'''BIO:''' Abe Megahed is a web developer for the Software Assurance Marketplace. In previous lifetimes, he has been a computer graphics researcher, a game programmer, a programming language and compiler nerd, a dot com company founder, a creator of helicopter simulations, and a developer of 3D simulations for NASA astronaut crew training.&lt;br /&gt;
*'''WHEN:'''  Tuesday, February 3rd 2015&lt;br /&gt;
*'''WHERE:''' Room PK-1140 - UQAM Pavillon Président-Kennedy, 201 Avenue du Président-Kennedy  J2X 3Y7&lt;br /&gt;
*'''REGISTRATION:''' https://owaspmtlswamp2015.eventbrite.ca&lt;br /&gt;
*'''WEBCAST:''' https://www.youtube.com/watch?v=p4_vjufcB6Q&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/getting-to-know-the-software-assurance-marketplace-swamp-by-pat-beyer&lt;br /&gt;
&lt;br /&gt;
*'''ACADEMIC PARTNER:''' AGEEI-UQAM - http://www.ageei.org/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Welcome speech by Chapter Leader (Jonathan Marcil)&lt;br /&gt;
  18:30-20:00 Main session: Getting to Know the Software Assurance Marketplace&lt;br /&gt;
  20:00-...   End of the meeting&lt;br /&gt;
&lt;br /&gt;
[[Image:SWAMP-Logo-Final-Med.png|300px|link=https://continuousassurance.org/]]&lt;br /&gt;
[[Image:Ageeilogo.jpg|200px|link=http://www.ageei.org/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - 4 décembre - Malware côté serveur — évolution, méthodes d’opération et forensic Linux ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/lo8WDl-WQ3E]] [https://youtu.be/lo8WDl-WQ3E Watch the conference / Regarder la conférence] &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/malware-cote-serveur-par-marc-etienne-m-dot-leveille]] [https://speakerdeck.com/owaspmontreal/malware-cote-serveur-par-marc-etienne-m-dot-leveille See the slides / Voir la présentation] &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''PRÉSENTATEUR PRINCIPAL:''' Marc-Etienne M.Léveillé&lt;br /&gt;
*'''RÉSUMÉ:''' Les logiciels malveillants ciblant les serveurs ont évolué. Ils sont utilisés par des groupes de cybercriminels organisés dans le but de faire du profit via des redirections web et l’envoie de pourriels. La présentation portera sur Opération Windigo, une opération malveillante qui a affecté plus de 25 000 serveurs dans le monde. Après une brève description des composantes de Windigo, nous verrons comment les opérateurs déploient leurs logiciels malveillants et surveille leur réseau de serveurs infectés. Des trucs pratiques pour faire de la forensics sur des systèmes Linux seront donnés. Cette présentation est une suite à la présentation &amp;quot;Linux/Cdorked: Server side malware&amp;quot;, donnée par Olivier Bilodeau à OWASP Montréal en 2013. La présentation sera en français avec des diapositives en anglais (aka Montreal-style).&lt;br /&gt;
*'''BIO:''' Marc-Etienne est un chercheur en logiciel malveillant chez ESET depuis 2012. Il se spécialise dans les logiciels malveillants qui s’attaquent à des plateformes inhabituelles comme aux produits fruités et aux oiseaux nordiques. Dernièrement, il passe beaucoup de son temps à faire la rétro-ingénierie de logiciels malveillants sur des serveurs Linux et s’intéresse à leurs méthodes d’opération. Il adore participer de façon collégiale aux CTFs avec ses amis les CISSP Groupies et jouer de la clarinette. Il tweet très peu à @marc_etienne_.&lt;br /&gt;
*'''QUAND:''' 4 décembre 2014 à 18h00&lt;br /&gt;
*'''OÙ:''' Local M-1510, Polytechnique Montréal, 2900 Boulevard Edouard-Montpetit&lt;br /&gt;
*'''INSCRIPTION:''' https://www.eventbrite.ca/e/owasp-montreal-4-decembre-malware-cote-serveur-evolution-methodes-doperation-et-forensic-linux-tickets-14635313617&lt;br /&gt;
*'''ÉQUIPE ACADÉMIQUE:''' Polyhack - http://polyhack.org/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
&lt;br /&gt;
 18:00-18:30 Réseautage&lt;br /&gt;
 18:30-18:35 Mot de bienvenue par le leader du chapitre (Jonathan M.)&lt;br /&gt;
 18:35-19:30 Présentation principale : Malware côté serveur&lt;br /&gt;
 19:30-20:00 Période de questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Polyhacklogonoirpetit.png|200px|link=http://polyhack.org/]]&lt;br /&gt;
[[Image:LogoPolytechnique.gif|link=http://www.polymtl.ca/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - October 23rd - XXE : À l’assaut des analyseurs XML ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/MZviLB9-42E]] [https://youtu.be/MZviLB9-42E Watch the conference / Regarder la conférence] &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/xxe-a-lassaut-des-analyseurs-xml-par-philippe-arteau]] [https://speakerdeck.com/owaspmontreal/xxe-a-lassaut-des-analyseurs-xml-par-philippe-arteau See the slides / Voir la présentation] &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''PRÉSENTATEUR PRINCIPAL:''' Philippe Arteau&lt;br /&gt;
*'''RÉSUMÉ:''' L'utilisation d’XML est fortement répandue. Le format est utilisé pour des fichiers de configuration, pour des métadonnées, pour des documents textes, et bien plus. La prise en charge de fichiers XML n’est pas sans risque. La plupart des analyseurs XML ne sont pas sécuritaires par défaut pour le traitement de fichier externe. Cette présentation fera un survol des vulnérabilités de type « Xml eXternal Entity » et de l’étendue des risques pour différents langages de programmation. Plusieurs démonstrations sont prévues.&lt;br /&gt;
*'''BIO:''' Philippe est conseiller en sécurité applicative pour le Groupe Technologies Desjardins. Au quotidien, il s’occupe d’effectuer des tests d’intrusions et des revues de code. Il a découvert des vulnérabilités importantes dans plusieurs logiciels populaires incluant Google Chrome, DropBox, ESAPI et Jira.&lt;br /&gt;
*'''QUAND:'''  23 Octobre 2014 à 18h00&lt;br /&gt;
*'''OÙ:''' École de Technologie Supérieure Local A-3230, 1100 Rue Notre-Dame Ouest, Montréal, QC H3C 1K3&lt;br /&gt;
*'''INSCRIPTION:''' http://www.eventbrite.ca/e/owasp-montreal-23-octobre-xxe-a-lassaut-des-analyseurs-xml-tickets-13426881163&lt;br /&gt;
*'''PARTENAIRE ACADÉMIQUE:''' ETS - DCI http://dciets.com/&lt;br /&gt;
*'''PROGRAMME:''' &lt;br /&gt;
&lt;br /&gt;
 18:00-18:30 Réseautage&lt;br /&gt;
 18:30-18:45 Mot de bienvenue&lt;br /&gt;
 18:45-19:45 Présentation principale - &amp;quot;À l’assaut des analyseurs XML&amp;quot; Philippe Arteau&lt;br /&gt;
 19:45-20:00 Période de questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Blason_dci.png‎‎‎|150px|link=http://dciets.com/]]&lt;br /&gt;
[[Image:ETS-rouge-devise-impr-fond_transparent.png|150px|link=http://www.etsmtl.ca/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - July 24th - Web security for DevOps: the glory is in the headers ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/6bp1NCLT-YQ]] [https://youtu.be/6bp1NCLT-YQ Watch the conference / Regarder la conférence] &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/web-security-for-devops-the-glory-is-in-the-headers-by-jonathan-marcil]] [https://speakerdeck.com/owaspmontreal/web-security-for-devops-the-glory-is-in-the-headers-by-jonathan-marcil See the slides / Voir la présentation] &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Jonathan Marcil&lt;br /&gt;
*'''ABSTRACT:''' DevOps is a buzzword which can be easily demystified: in essence it is a process which aims to combine the development and system administration process into one; Operations. As developers become responsible for server setup, security counter measures are evolving as well. The line between server configuration and application behaviour has been blurred. In this talk we will cover some HTTP headers in regards to security such as CORS, CSP and HSTS. We will demonstrate several forms of attack, and how they can (should) be countered.&lt;br /&gt;
*'''BIO:''' Jonathan is devoted to security and specialized in Web application security.  His main occupation is consulting in Web security, but deep down he is a developer with a agnostic vision of programming languages. He has a diploma in Software Engineering from Ecole de Technologie Superieure and more than 10 years of experience in Information Technology and Security.&lt;br /&gt;
*'''WHEN:'''  At noon on July 24th 2014&lt;br /&gt;
*'''WHERE:''' 75 Queen Street, office 3100, Montreal, QC H3C 2N6&lt;br /&gt;
*'''REGISTRATION:''' You can join us on site for a pizza slice but this is mainly an online event. Contact jonathan.marcil@owasp.org.&lt;br /&gt;
*'''WEBCAST:''' https://www.youtube.com/watch?v=6bp1NCLT-YQ&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/web-security-for-devops-the-glory-is-in-the-headers-by-jonathan-marcil&lt;br /&gt;
*'''EVENT SPONSOR:''' Pheromone http://www.pheromone.ca/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  12:00-12:10 Welcome and quick OWASP introduction&lt;br /&gt;
  12:10-13:10 Main presentation - &amp;quot;Web security for DevOps: the glory is in the headers&amp;quot; Jonathan Marcil&lt;br /&gt;
  13:10-... Open discussion and questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Logo-phero.gif‎|link=http://www.pheromone.ca/]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - June 18th - Gaps in the Clouds ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/gaps-in-the-clouds-by-robert-fritz]] [https://speakerdeck.com/owaspmontreal/gaps-in-the-clouds-by-robert-fritz See the slides / Voir la présentation] &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Robert Fritz&lt;br /&gt;
*'''ABSTRACT:''' Cloud technology offers agility and scaling, and a chance to break away from legacy IT choices.  Unfortunately, skipping traditional IT activities often results in poorly patched systems, out of date firewalls, and overprovisioned entitlements wielded by admins whose “day job” is development.  Boundaries of accountability and responsibility amongst cloud providers and consumers are confusing, vague, and shift, making security difficult to manage.  In such an environment, a “BP-spill” event, where cost wins over safely safety, is likely.  This talk will dive down into the cracks between the layers of cloud, and share some of the exciting dirt we have seen and expect to see in coming years.”&lt;br /&gt;
*'''BIO:''' Robert Fritz has been practicing security his entire career. Rob started as an Air Force lieutenant at Langley AFB and later at the Pentagon in Washington DC, building and managing classified networks. Finding he was getting too far from technology after a brief stint flying, he left the military to get back to the tech, and built security tools for HP in their HP-Unix lab.  Over time he found himself in more and more security design discussions, so co-authored HP’s Commercial Application Threat Analysis Methodology, building an internal consulting practice at HP.  This quantitative approach, led to two pending patents, an external-facing consulting practice, and his contributions to NIST IR-7502, the Common Configuration Scoring System (CVSS follow-on).  He is the former lead editor for the Center for Internet Security’s HP-UX Benchmark, and current lead for the Android Benchmark.  Robert now works for Morgan Stanley as global head of the Strategic Consulting team in the Security Architecture group, and leads the team’s cloud and social-media security practices.&lt;br /&gt;
*'''WHEN:''' June 18th 2014&lt;br /&gt;
*'''WHERE:''' 700 Rue Wellington, Floor 2, Montreal, QC H3C 3S4&lt;br /&gt;
*'''REGISTRATION:''' http://owaspmtl18junems.eventbrite.ca&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/gaps-in-the-clouds-by-robert-fritz&lt;br /&gt;
*'''EVENT SPONSOR:''' Morgan Stanley http://www.morganstanley.com/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:30 Networking and Morgan Stanley Hosted Pizza and Soft Drinks&lt;br /&gt;
  18:30-18:45 OWASP Chapter &amp;amp; Morgan Stanley Welcome&lt;br /&gt;
  18:45-19:45 Main presentation - &amp;quot;Gaps in the Clouds&amp;quot; Robert Fritz&lt;br /&gt;
  19:45-20:00 Open discussion and questions&lt;br /&gt;
  20:00-...   Optional, informal networking at Aziatic - 626 rue Marguerite-d'Youville, Montréal, QC H3C 1W7&lt;br /&gt;
&lt;br /&gt;
[[Image:Morgan_Stanley_Historical_Logo.png|link=http://www.morganstanley.com/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - May 26th - Récapitulatif des challenges NorthSec ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/P8_V3RI1Ru4]] [https://youtu.be/P8_V3RI1Ru4 Watch the conference / Regarder la conférence] &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''PRÉSENTATEUR PRINCIPAL:''' Laurent Desaulniers&lt;br /&gt;
*'''RÉSUMÉ:''' Solutions de la compétition en sécurité NorthSec 2014 sur les sujets de  XXE + SSRF, WAF Bypass, Xpath Injection, DOM Injection, HTTP Only Flag bypass et contournement de captchas. Une bonne façon d'apprendre sur ces failles que vous étiez ou non un participant de la compétition.&lt;br /&gt;
*'''MESSAGE DU PRÉSENTATEUR:''' Vous voyez Rao dans votre soupe? Vous voulez une solution pour un XSS avec des cookies http only? Les captchas illisibles sont un problème? Assistez à la présentation de l'OWASP!&lt;br /&gt;
*'''BIO:''' Laurent Desaulniers est un passionné de sécurité informatique. Il a présenté au Hackfest, au colloque RSI, à OWASP et est challenge designer à NorthSec. M. Desaulniers détient les certifications CISSP, CISM, CISA et OSCP.&lt;br /&gt;
*'''QUAND:''' 26 mai à 18h00&lt;br /&gt;
*'''OÙ:''' Local PK-1140 - Pavillon Président-Kennedy 201, Avenue du Président-Kennedy, J2X 3Y7&lt;br /&gt;
*'''INSCRIPTION:''' https://www.eventbrite.ca/e/owasp-montreal-26-mai-recapitulatif-des-challenges-northsec-tickets-11724413035&lt;br /&gt;
*'''WEBCAST:''' https://www.youtube.com/watch?v=P8_V3RI1Ru4&lt;br /&gt;
*'''ÉQUIPE ACADÉMIQUE''' AGEEI-UQAM - http://www.ageei.org/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
&lt;br /&gt;
 18:00-18:30 Réseautage&lt;br /&gt;
 18:30-18:35 Mot de bienvenue par le leader du chapitre (Jonathan M.)&lt;br /&gt;
 18:35-19:30 Présentation principale : Récapitulatif des challenges NorthSec&lt;br /&gt;
 19:30-20:00 Période de questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Ageeilogo.jpg|200px|link=http://www.ageei.org/]]&lt;br /&gt;
[[Image:2397_nsec_Logo_500-250.png|200px|link=http://nsec.io/]]&lt;br /&gt;
&lt;br /&gt;
== Networking with infosec communities - April 21st ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''RÉSUMÉ:''' En collaboration avec Montréhack, mtlsec et NorthSec, nous organisons une soirée réseautage dans un pub du centre-ville. Du plaisir garanti avec les membres de plusieurs communautés infosec de Montréal!&lt;br /&gt;
&lt;br /&gt;
*'''ABSTRACT:''' In collaboration with Montréhack, mtlsec and NorthSec, we are organizing a networking evening in a pub downtown. Fun guaranteed with the other security communities in Montreal!&lt;br /&gt;
&lt;br /&gt;
*'''QUAND:''' 21 Avril 2014&lt;br /&gt;
*'''WHEN:''' April 21st 2014&lt;br /&gt;
&lt;br /&gt;
*'''OÙ/WHERE:''' BENELUX - Brasserie Artisanale 245 Sherbrooke St W Montreal, QC H2X 1X7&lt;br /&gt;
&lt;br /&gt;
*'''INSCRIPTION/REGISTRATION:''' https://www.eventbrite.ca/e/montrehack-avril-april-northsec-pre-party-tickets-11232307133&lt;br /&gt;
&lt;br /&gt;
*'''PARTENAIRES/PARTNERS:''' Montréhack http://montrehack.ca/ - mtlsec http://blog.mtlsec.com/ - NorthSec https://www.nsec.io/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
  18:00-21:00 Networking&lt;br /&gt;
  21:00-23:59 Remember to drink responsibly!&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - March 27th - Panel Compétition en sécurité NorthSec ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Présentation sous forme de panel - venez poser vos questions!'''&lt;br /&gt;
&lt;br /&gt;
*'''RÉSUMÉ:''' Les compétitions de type Capture the Flag (CTF) sont un moyen pour les professionnels et amateurs de sécurité informatique de mettre leurs talents à l'épreuve. NorthSec est une compétition Montréalaise annuelle en sécurité appliquée, qui aura lieu cette année au Marché Bonsecours de Montréal le 25, 26 et 27 avril prochain. Elle vise à augmenter le niveau technique des professionnels de la sécurité au Québec, ainsi que de permettre à ses acteurs les plus talentueux de se démarquer.&lt;br /&gt;
*'''DÉTAILS:''' Le panel de jeudi, sous la forme d'un échange convivial entre les organisateurs de l'évènement et de ses participants, abordera des thèmes variés comme l'écriture de bon défis, l'infrastructure, la logistique, les inattendus, un bilan de 2013 et tout ça en passant par de savoureuses annecdotes (on l'espère). Venez en grand nombre toucher à ces légendes de la scène infosec montréalaise!&lt;br /&gt;
*'''PANÉLISTES:''' Gabriel Tremblay, François Proulx, Laurent Desaulniers, Stéphane Graber&lt;br /&gt;
*'''ANIMATEUR:''' Olivier Bilodeau&lt;br /&gt;
*'''QUAND:''' 27 mars 2014&lt;br /&gt;
*'''OÙ:''' Salle M-1510, École Polytechnique de Montréal, 2500 chemin de Polytechnique, Montréal (Québec) H3T 1J4, pavillon Lassonde&lt;br /&gt;
*'''INSCRIPTION:''' https://www.eventbrite.ca/e/owasp-montreal-27-mars-panel-competition-en-securite-northsec-tickets-10918436337&lt;br /&gt;
*'''ÉQUIPE ACADÉMIQUE:''' Polytechnique - Polyhack http://polyhack.org/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Mot de bienvenue par le leader du chapitre (Jonathan Marcil)&lt;br /&gt;
  18:30-20:00 Présentation principale : Panel NorthSsec&lt;br /&gt;
&lt;br /&gt;
[[Image:Polyhack.png‎‎|200px|link=http://polyhack.org/]]&lt;br /&gt;
[[Image:LogoPolytechnique.gif|link=http://www.polymtl.ca/]]&lt;br /&gt;
[[Image:2397_nsec_Logo_500-250.png|200px|link=http://nsec.io/]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - February 25th - Proven Strategies for Web Application Security ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/proven-strategies-for-web-application-security-by-justin-c-klein-keane]] [https://speakerdeck.com/owaspmontreal/proven-strategies-for-web-application-security-by-justin-c-klein-keane See the slides / Voir la présentation] &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Justin C. Klein Keane&lt;br /&gt;
*'''ABSTRACT:''' The rising dominance of the web as an application delivery platform has focused attacker attention squarely on the security of dynamic web applications. Application security is a complex, and shifting, field. Learn about tested and successful techniques to build safer applications, find flaws before they become vulnerabilities, and deploy applications that can detect, and resist attack.&lt;br /&gt;
*'''BIO:''' Justin C. Klein Keane is a security engineer and chapter leaders of OWASP in Philadelphia. For over a decade Justin has worked as a trainer, coder, and exploit developer. Justin is currently writing a book for NoStarch Press on hacking, speaks regularly at conferences, holds a masters degree in information technology from the University of Pennsylvania and is credited with hundreds of application vulnerability discoveries.&lt;br /&gt;
*'''WHEN:''' February 25th 2014&lt;br /&gt;
*'''WHERE:''' Ecole de technologie superieure, 1100 Notre-Dame Street West, Montreal, Room: A-1150&lt;br /&gt;
*'''REGISTRATION:''' http://owaspmtljan2014.eventbrite.ca&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/proven-strategies-for-web-application-security-by-justin-c-klein-keane&lt;br /&gt;
*'''ACADEMIC PARTNER:''' ETS - DCI http://dciets.com/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Welcome speech by Chapter Leader (Jonathan Marcil)&lt;br /&gt;
  18:30-20:00 Main session and open discussion: Proven Strategies for Web Application Security&lt;br /&gt;
  20:00-...   End of the meeting in a pub&lt;br /&gt;
&lt;br /&gt;
[[Image:Dciets.png‎‎‎|100px|link=http://dciets.com/]]&lt;br /&gt;
[[Image:Logo_ets.png|link=http://www.etsmtl.ca/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - January 28th - Latest trends in Mobile Security ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/8qPyKj4FKgY]] [https://youtu.be/8qPyKj4FKgY Watch the conference / Regarder la conférence] &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/latest-trends-in-mobile-security-by-francois-proulx]] [https://speakerdeck.com/owaspmontreal/latest-trends-in-mobile-security-by-francois-proulx See the slides / Voir la présentation] &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Francois Proulx&lt;br /&gt;
*'''ABSTRACT:''' Last AppSecUSA 2013 had a great line up of talks, especially regarding mobile applications. This session will be covering all the hottest presentations about mobile security by doing an overview from what see saw at AppSecUSA, all with some slides and snippets of presentations that was recorded at the event. Discussion will be encouraged within the audience as this will be more a dynamic event than a regular talk.&lt;br /&gt;
*'''BIO:''' François Proulx is a senior mobile application developer who has worked on dozens of iOS applications since the very beginning of the Apple iOS platform. Over the past few years he has switched his focus to security. He spends a lot of his free time participating in Capture the Flag events (CTFs) and organizing the NorthSec security competition.&lt;br /&gt;
*'''WHEN:''' January 28th 2014&lt;br /&gt;
*'''WHERE:''' UQAM Room PK-1705, Pavillon Président-Kennedy (the big boat at Place des Arts) - 201 Avenue du Président-Kennedy  J2X 3Y7&lt;br /&gt;
*'''REGISTRATION:''' http://owaspmtl-mobilesecurity.eventbrite.ca&lt;br /&gt;
*'''SLIDES/CONTENT:''' [http://www.youtube.com/playlist?list=PLQtB2ug5xmvaQ9jeRWV53-F_T555GQfhW YouTube playlist]&lt;br /&gt;
*'''SPONSOR:''' Academic partner AGEEI-UQAM - http://www.ageei.org/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Welcome speech by Chapter Leader (Jonathan M.)&lt;br /&gt;
  18:30-20:00 Main session and open discussion: Mobile Security&lt;br /&gt;
  20:00-...   End of the meeting in a pub&lt;br /&gt;
&lt;br /&gt;
[[Image:Ageeilogo.jpg|200px|link=http://www.ageei.org/]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Presentations For Download  ====&lt;br /&gt;
&lt;br /&gt;
[http://www.owasp.org/images/0/0d/20100209mstechdaysowaspasvssgiv01-12657916463819-phpapp02.ppt OWASP ASVS] by Sebastien Gioria (09/03/2010) &lt;br /&gt;
&lt;br /&gt;
[http://www.ph-il.ca/slides/afup__authetification_forte.pdf Authentification Forte] by Philippe Gamache (02/02/2010) &lt;br /&gt;
&lt;br /&gt;
[http://www.opensamm.org/downloads/OpenSAMM-1.0.ppt Software Assurance Maturity Model (OpenSAMM)] by Pravir Chandra (03/11/2009) &lt;br /&gt;
&lt;br /&gt;
[http://www.owasp.org/images/d/de/Owasp-montreal-sept-17h-2009-justin-foster.pdf Crossing the Border – Javascript Exploits] by Justin Foster (17/09/2009) &lt;br /&gt;
&lt;br /&gt;
[http://www.owasp.org/images/c/c2/ALaughRIAt.pdf A Laugh RIAt] by Rafal Los (07/04/2009) &lt;br /&gt;
&lt;br /&gt;
[https://www.owasp.org/images/e/eb/OWASP-Montreal-24022009-RobLabbe.pptx Microsoft Security Development Lifecycle for IT] by Rob Labbe (24/02/2009) &lt;br /&gt;
&lt;br /&gt;
[https://www.owasp.org/images/3/39/OWASP-Montreal-24022009-EN.pdf OWASP Goal and Top Ten 2007 for Managers - French version] by Benoit Guerette (24/02/2009)&lt;br /&gt;
&lt;br /&gt;
Newer presentations are available on [https://speakerdeck.com/owaspmontreal Speaker Deck]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Circle_owasp_logo_nowhitebackground.png|200px]]&lt;br /&gt;
&lt;br /&gt;
= OWASP Foundation / Mission OWASP    = &lt;br /&gt;
OWASP Foundation ([https://docs.google.com/a/owasp.org/presentation/d/10wi1EWFCPZwCpkB6qZaBNN8mR2XfQs8sLxcj9SCsP6c/edit?usp=sharing Overview Slides]) is a professional association of [[Membership | global members]] and is open to anyone interested in learning more about software security. Local chapters are run independently and guided by the [[Chapter_Leader_Handbook]].  As a [[About_OWASP | 501(c)(3)]] non-profit professional association your support and sponsorship of any meeting venue and/or refreshments is tax-deductible. Financial contributions should only be made online using the authorized online chapter donation button.  To be a &amp;lt;b&amp;gt;SPEAKER&amp;lt;/b&amp;gt; at ANY OWASP Chapter in the world simply review the [[Speaker_Agreement | speaker agreement]] and then contact the local chapter leader with details of what OWASP PROJECT, independent research or related software security topic you would like to present on.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;La fondation OWASP est une [https://www.owasp.org/index.php/Membership association de professionnels] et elle est ouverte à tout intervenant intéressé à en apprendre davantage sur la sécurité applicative. Les chapitres locaux (dont celui de Montréal) sont gérés de façon indépendante et selon un [https://www.owasp.org/index.php/Chapter_Leader_Handbook manuel de directives à respecter].   &lt;br /&gt;
Toute contribution financière au chapitre peut être faite en ligne en utilisant l’icône prévu à cet effet. Pour être conférencier au sein de n’importe quel chapitre à l’échelle mondiale, vous n’avez qu’à prendre connaissance du document [https://www.owasp.org/index.php/Speaker_Agreement &amp;quot;entente avec les conférenciers – speaker agreement&amp;quot;] et à joindre le responsable du chapitre Montréal avec un descriptif du sujet que vous aimeriez aborder et s’il est relié à un projet OWASP, à de la recherche indépendante ou encore le sujet en particulier, concernant la sécurité applicative, que vous souhaitez aborder.&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== [[Image:Circle_owasp_logo_nowhitebackground.png|128px]] Montreal OWASP Team == &lt;br /&gt;
&lt;br /&gt;
Scope of the team is to discuss and plan local activities and meetings &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Chapter Leaders ===&lt;br /&gt;
&lt;br /&gt;
* [mailto:anne.gauthier@owasp.org Anne Gauthier], President/Présidente&lt;br /&gt;
* [mailto:michel.bourque{at}owasp.org Michel Bourque], Chapter coordinator and marketing manager/Coordination et Marketing&lt;br /&gt;
* [mailto:hugo.genesse(at)owasp.org Hugo Genesse], Web content and production manager/Site internet et Production &lt;br /&gt;
* [mailto:olivier.arteau(at)owasp.org Olivier Arteau], Logistic manager/Logistique&lt;br /&gt;
&lt;br /&gt;
==== Chapter leader history ====&lt;br /&gt;
*2008-2010 - Benoit Guerette, founder and chapter leader&lt;br /&gt;
*2011-2012 - Philippe Gamache, chapter leader (vice chapter-leader since 2010)&lt;br /&gt;
*2013-2015 - Jonathan Marcil, chapter leader&lt;br /&gt;
*2016-... - Anne Gauthier, Michel Bourque, Marius Popescu, Hugo Genesse, Olivier Arteau&lt;br /&gt;
&lt;br /&gt;
==== Old board members ====&lt;br /&gt;
*Philippe Pépos Petitclerc&lt;br /&gt;
*Michael Robillard&lt;br /&gt;
*Benoit Guerette (logistics 2015)&lt;br /&gt;
*Alexandre Rimthong&lt;br /&gt;
*Mathieu Binette&lt;br /&gt;
*Sean Coates&lt;br /&gt;
*Jean-Marc Robert&lt;br /&gt;
*Philippe Blondin&lt;br /&gt;
*Benoit Guerette (founder)&lt;br /&gt;
*Laurent Desaulniers&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;headertabs/&amp;gt; &lt;br /&gt;
__NOTOC__ &lt;br /&gt;
[[Category:Canada]]&lt;/div&gt;</summary>
		<author><name>Svieg</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=File:GillCFP.jpg&amp;diff=230754</id>
		<title>File:GillCFP.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=File:GillCFP.jpg&amp;diff=230754"/>
				<updated>2017-06-17T17:52:16Z</updated>
		
		<summary type="html">&lt;p&gt;Svieg: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;GillCFP&lt;/div&gt;</summary>
		<author><name>Svieg</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=Montr%C3%A9al&amp;diff=230753</id>
		<title>Montréal</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=Montr%C3%A9al&amp;diff=230753"/>
				<updated>2017-06-17T17:35:24Z</updated>
		
		<summary type="html">&lt;p&gt;Svieg: slides&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Welcome &amp;amp; Bienvenue to the OWASP Montréal chapter ==&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:OWASP-Montreal-Logo.png|Logo OWASP Montréal]]&lt;br /&gt;
&lt;br /&gt;
The OWASP Foundation was established in 2001 as an open community and software security resource. Since then, OWASP has grown to be globally recognized as a credible source for application security standards. &amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
OWASP is an open community dedicated to enabling organizations to conceive, develop, acquire, operate, and maintain applications that can be trusted. All of the OWASP tools, documents, forums, and chapters are free and open to anyone interested in improving application security. We advocate approaching application security as a people, process, and technology problem because the most effective approaches to application security include improvements in all of these areas. &amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
OWASP is open to anyone. Anyone can attend OWASP's vendor agnostic local chapter meetings, participate in regional and global conferences, and contribute to the many OWASP projects. And anyone can start a new project, form a new chapter, or lend their expertise to help an OWASP Global Committee.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt;On parle français aussi ! Le chapitre de Montréal organise plusieurs activités gratuites afin de partager les connaissances en sécurité applicative avec la communauté de développeurs et gestionnaires. Suivez-nous sur les réseaux sociaux pour connaître les dates des conférences du midi et des workshops !&amp;lt;/b&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Top documentation from OWASP includes: &lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/index.php/Top_10_2013-Top_10 OWASP TOP 10 : The Ten Most Critical Web Application Security Risks]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/images/3/33/OWASP_Application_Security_Verification_Standard_3.0.1.pdf OWASP ASVS : Application Security Verification Standard]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/images/5/52/OWASP_Testing_Guide_v4.pdf OWASP Testing Guide : Penetration Testing Framework ]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/images/7/78/OWASP_AlphaRelease_CodeReviewGuide2.0.pdf OWASP Code Review Guide : Source Code Analysis Framework ]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/index.php/OWASP_Cheat_Sheet_Series OWASP Cheat Sheet : Best practices guidelines for developers ]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org OWASP Global ]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Chapter Leaders / Responsables du chapitre ===&lt;br /&gt;
&lt;br /&gt;
* [mailto:anne.gauthier@owasp.org Anne Gauthier], President/Présidente&lt;br /&gt;
* [mailto:michel.bourque{at}owasp.org Michel Bourque], Chapter coordinator and marketing manager/Coordination et Marketing&lt;br /&gt;
* [mailto:hugo.genesse(at)owasp.org Hugo Genesse], Web content and production manager/Site internet et Production &lt;br /&gt;
* [mailto:olivier.arteau(at)owasp.org Olivier Arteau], Logistic manager/Logistique&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Special thanks to / Remerciements : &lt;br /&gt;
* Simon Lacasse, Web content / Site internet&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;b&amp;gt; Reach our chapter / Joindre le chapitre &amp;lt;/b&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Follow OWASP's Montreal chapter's activities through social medias, register to events, watch the previous presentations and more! &lt;br /&gt;
&lt;br /&gt;
Suivez les activités du chapitre OWASP Montréal via les réseaux sociaux, inscrivez-vous aux activités, visualisez les anciennes présentations et plus encore! &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;b&amp;gt;[http://lists.owasp.org/mailman/listinfo/owasp-montreal Click here] to join the local chapter mailing list.&lt;br /&gt;
&amp;lt;br/&amp;gt;[http://lists.owasp.org/mailman/listinfo/owasp-montreal Inscrivez-vous ici] à la liste de courriels du chapitre afin de recevoir les dernières nouvelles!&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Want to be part of the community ? &lt;br /&gt;
Devenez membre de notre communauté ! &lt;br /&gt;
[https://www.owasp.org/index.php/Membership_Map Click here / Cliquer ici]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Eb_press_little.gif‎|OWASP Montreal Eventbrite|link=http://owaspmontreal.eventbrite.ca/]] &lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[Image:Yt-brand-standard-logo-630px.png‎|128px|YouTube OWASP Montreal Channel|link=http://www.youtube.com/owaspmontreal]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]   &lt;br /&gt;
[[Image:Speakerdecklogo.png‎|Slides of OWASP Montreal on SpeakerDeck |link=https://speakerdeck.com/owaspmontreal]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Twitter-bird-cropped-onwhite.png|@owaspmontreal on Twitter|link=https://twitter.com/owaspmontreal]]&lt;br /&gt;
[[Image:FacebookSquareLogo.png|OWASP Montreal Facebook page|link=https://www.facebook.com/owasp.montreal]]&lt;br /&gt;
[[Image:LinkedinSquareLogo.png|OWASP Montreal on LinkedIn|link=https://www.linkedin.com/groups/1379007/profile]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
&lt;br /&gt;
== Sponsorship &amp;amp; Membership / Commandite &amp;amp; Adhésion ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Btn_donate_SM.gif|link=http://www.regonline.com/donation_1044369]] to this chapter or become a local chapter supporter.&lt;br /&gt;
&lt;br /&gt;
Or consider the value of [[Membership | Individual, Corporate, or Academic Supporter membership]]. Ready to become a member? [[Image:Join_Now_BlueIcon.JPG|75px|link=https://myowasp.force.com/]]&lt;br /&gt;
&lt;br /&gt;
[http://www.regonline.com/donation_1044369 Donnez] au chapitre ou devenez commanditaire du chapitre local! &lt;br /&gt;
&lt;br /&gt;
[https://myowasp.force.com/ Devenez membre !] Pour en savoir davantage sur les avantages d’une adhésion individuelle, corporative ou en tant qu’institution d’enseignement, [https://www.owasp.org/index.php/Membership cliquez ici]. &lt;br /&gt;
&lt;br /&gt;
[[Category:OWASP Chapter]]&lt;br /&gt;
&lt;br /&gt;
== Chapter Supporters / Commanditaires du chapitre ==&lt;br /&gt;
&lt;br /&gt;
[https://www.owasp.org/images/9/91/OWASP_Membership_Flyer_Montreal.png All details available here / Pour tous les détails ] [[File:Chapter-supporter-owasp-montreal.png|200px|link=https://www.owasp.org/images/9/91/OWASP_Membership_Flyer_Montreal.png]] &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Platinum / Platine ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Gosecure-2.png|GoSecure|link=http://www.gosecure.ca/]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[File:Desjardins2-400x400.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Gold / Or ===&lt;br /&gt;
&lt;br /&gt;
[[Image:ImmunioLogo.jpg|Immunio|link=https://www.immun.io/]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Lunch &amp;amp; Learn / Workshops 2017 =&lt;br /&gt;
&lt;br /&gt;
== HOW TO! Threat Modeling Toolkit ==&lt;br /&gt;
&lt;br /&gt;
[[Image:OWASPMtl-JonathanMarcil-1.jpg]]&lt;br /&gt;
[[Image:OWASPMtl-JonathanMarcil-3.jpg]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/threat-modeling-toolkit]] [https://speakerdeck.com/owaspmontreal/threat-modeling-toolkit See the slides / Voir la présentation]&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 May 23rd, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Shopify Montreal&lt;br /&gt;
&lt;br /&gt;
Threat Modeling is a great way to analyze security early in software development by structuring possible attacks, bad actors and countermeasures over a broad view of the targeted system. This talk will describe basic components of a threat model and how to use them effectively.&lt;br /&gt;
Threat Intelligence is where you gather knowledge about the environment and business assets to determine what are the actual threats. But how do you reconcile that with the current architecture in a useful manner?&lt;br /&gt;
The toolkit presented in this talk will enable you to systematically structure related information using graphical notations such as flow diagram and attack tree. In case you are wondering where to start in your organization, a quick lightweight risk rating methodology will also be proposed.&lt;br /&gt;
And in the end, you’ll see how we can all tie those together and get threat modeling to a point where it’s an efficient application security activity for communication. Doing this will prevent security reviews from missing important things even when chaos prevails during the realization of a project.&lt;br /&gt;
Modeling concepts will be demonstrated with an actual IoT device used as example.&lt;br /&gt;
Presentation will be done in english.&lt;br /&gt;
&lt;br /&gt;
Speaker Bio:&lt;br /&gt;
Jonathan Marcil is the former chapter leader of OWASP Montreal and is now Senior Application Security Engineer at Blizzard Entertainment in beautiful Orange County, California.&lt;br /&gt;
Jonathan has been involved with OWASP for many years and has been behind the Media Project which gathered and promoted AppSec conferences video content in the official OWASP YouTube channel. He was also part of NorthSec CTF event as a challenge designer specialized in Web and imaginative contraptions.&lt;br /&gt;
He is passionate about Application Security and enjoys architecture analysis, code review, threat modeling and debunking security tools. He holds a diploma in Software Engineering from ÉTS Montreal and has more than 15 years of experience in Information Technology and Security.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Merci à nos précieux commanditaires !&lt;br /&gt;
&lt;br /&gt;
== Security Testing: Unlocking the Benefits of a Hybrid Approach ==&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 April 24th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
As part of their defensive efforts, businesses commonly commission cybersecurity assessments of their web applications; with the aim of identifying any weaknesses in the security controls and ensuring a continually strong cybersecurity posture of their systems.&lt;br /&gt;
&lt;br /&gt;
The classical approach of either secure code review (white box) or penetration testing (black box) assessment have proven to be effective in securing of web applications. The new trend, however, is moving towards the combination of these two approaches; expert consensus is rapidly recognizing the advantages of using a hybrid approach. When applied properly, a hybrid approach can build on the strengths of both white and black box testing, while compensating for their individual shortcomings.&lt;br /&gt;
&lt;br /&gt;
In this presentation, we will examine the details of secure code review and penetration testing, and run demos to contrast their respective strengths and weaknesses. We will also examine why a hybrid approach can produce more complete and relevant assessment results. To conclude, we will cover proven approaches, and practical techniques, on how you can start leveraging a hybrid approach to web application assessments today.&lt;br /&gt;
&lt;br /&gt;
Anne Gauthier is an application security analyst at GoSecure. Anne is also the president of the Montreal Chapter of OWASP – the industry standard for web application security. With a penetration testing background, she specializes in secure code reviews and in helping companies to improve their software development lifecycle (SDLC) according to industry best practices. Anne is CSSLP, GWAPT and GSSP-JAVA certified. She obtained a Software Engineering bachelor’s degree from Ecole de Technologie Supérieure in Montréal and is now pursuing a Master of Engineering (MEng) degree in Information Systems Security at Concordia University. She is the author of the Project 201 Security blog.&lt;br /&gt;
&lt;br /&gt;
Merci à nos précieux commanditaires !&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;HOW-TO&amp;quot; NIGHT ! Tout sur les CTFs (Capture The Flag) ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 April 4th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Shopify&lt;br /&gt;
&lt;br /&gt;
Cette nouvelle soirée &amp;quot;How-To&amp;quot; Night d'OWASP Montréal vise à présenter les CTFs (une compétition Capture The Flag) et aider les équipes à démarrer et à continuer à évoluer dans leurs pratique de la cyber sécurité pratique. L'objectif est d'outiller les participants en leur fournissant des ressources techniques et des contacts afin de les aider à progresser.&lt;br /&gt;
&lt;br /&gt;
Les éléments discutés seront:&lt;br /&gt;
&lt;br /&gt;
- Composition optimale d’une équipe : Fonctionnement d’une équipe de CTF et les principaux rôles (chef d’équipe, cryptographie, application web, rétro ingénierie et les causes perdues).&lt;br /&gt;
&lt;br /&gt;
- Pourquoi faire des CTFs? Discussion sur les différents styles (jeopardy, attack/defense, etc.), quels sont les problèmes fréquemments rencontrés + plusieurs anecdotes intéressantes (et drôles).&lt;br /&gt;
&lt;br /&gt;
- Trucs de Mr. Unikoder : Le créateur du fameux site ringzer0team, soit un des plus gros sites pour apprendre la résolution de problèmes de CTF (https://ringzer0team.com/) Apprenez des trucs du meilleur, sur comment débuter et interpréter un challenge web, binaire et crypto avec des trucs réels du métier.&lt;br /&gt;
&lt;br /&gt;
Matériel requis :&lt;br /&gt;
&lt;br /&gt;
    Votre légendaire enthousiasme&lt;br /&gt;
&lt;br /&gt;
Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
&lt;br /&gt;
Places limitées. Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Shopify pour l'événement.&lt;br /&gt;
&lt;br /&gt;
Présentateurs :&lt;br /&gt;
&lt;br /&gt;
Charles Hamilton, Senior Consultant chez Mandiant, FireEye, Inc.&lt;br /&gt;
&lt;br /&gt;
Olivier Bilodeau, Cybersecurity Research Lead at GoSecure&lt;br /&gt;
&lt;br /&gt;
Laurent Desaulniers, Senior Security Solution Specialist at Bell Canada&lt;br /&gt;
&lt;br /&gt;
== NorthSec - Applied Security Event ==&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 April 4th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
NorthSec: La plus grande compétition et conférence en cyber sécurité au Canada&lt;br /&gt;
&lt;br /&gt;
NorthSec est un organisme sans but lucratif qui organise une conférence et une compétition de sécurité de type &amp;quot;Capture-The-Flag&amp;quot; (CTF) et des formations. Avec plus de 400 participants présents sur le site pour la compétition, c’est la plus grande compétition du genre au monde.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
La conférence, dans sa 3e année, attire des présentateurs internationaux avec du contenu technique exclusif. L’ajout des séances de travail (workshops) devrait plaire aux plus chevronnés des binaires.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Des formations de 3 jours sont offertes avant la conférence: &amp;quot;Advanced Web Application Security&amp;quot; par Philippe Arteau et &amp;quot;Malware and Memory Forensics&amp;quot; par Michael Ligh, co-auteur des livres &amp;quot;Malware Analyst Cookbook&amp;quot; et &amp;quot;The Art of Memory Forensics&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
NorthSec est situé au Marché Bonsecours dans le Vieux-Port de Montréal au printemps du 15 au 21 mai 2017.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
La présentation couvrira:&lt;br /&gt;
&lt;br /&gt;
- Le plan pour 2017&amp;lt;br/&amp;gt;&lt;br /&gt;
- Ce qui différencie NorthSec&amp;lt;br/&amp;gt;&lt;br /&gt;
- Comment équilibrer une compétition pour les débutants et les experts&amp;lt;br/&amp;gt;&lt;br /&gt;
- Comment bâtir une infrastructure basée sur les conteneurs qui gère 50 équipes dans quelques serveurs sans qu’ils ne se partagent de machines virtuelles&amp;lt;br/&amp;gt;&lt;br /&gt;
- Comment faire du pain au levain à grande échelle&amp;lt;br/&amp;gt;&lt;br /&gt;
- Présentation de quelques défis et solutions&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Les présentateurs:&lt;br /&gt;
&lt;br /&gt;
- Gabriel Tremblay, Président, Delve Labs&amp;lt;br/&amp;gt;&lt;br /&gt;
- Olivier Bilodeau, VP Formations, Co-fondateur MontréHack, GoSecure&amp;lt;br/&amp;gt;&lt;br /&gt;
- Pierre-David Oriol, VP Conférences, Delve Labs&amp;lt;br/&amp;gt;&lt;br /&gt;
- Benoit Guérette, VP Partenaires, Desjardins&amp;lt;br/&amp;gt;&lt;br /&gt;
- Laurent Desaulniers, Tisserand de drapeaux, Bell Canada&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Merci à nos précieux commanditaires !&lt;br /&gt;
&lt;br /&gt;
== Sécurité des applications : Les fondements ==&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 March 20th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
OWASP Montréal est fier d’accueillir au Midi Conférence du mois de mars, Mme Tanya Janca, Co-Leader du chapitre OWASP Ottawa et spécialiste de la sécurité applicative au sein du Gouvernement fédéral.&lt;br /&gt;
&lt;br /&gt;
La conférence « Les fondements de la sécurité des applications » sera présentée en anglais.&lt;br /&gt;
&lt;br /&gt;
Session Description : Everyone has heard about the problem; everyone is “getting hacked”. But what is the answer? From scanning your code with a vulnerability scanner to red teaming exercises, developer education programs and bug bounties, this talk will take the audience through all the possibilities of an extensive application security program, with a detailed explanation of each part.&lt;br /&gt;
&lt;br /&gt;
Bio : Tanya Janca is an application security evangelist, a web application penetration tester and vulnerability assessor, a secure code reviewer, an ethical hacker, the Co-Leader of the OWASP Ottawa chapter, and has been developing software since the late 90’s. She has worn many hats and done many things, including; Custom Apps, Ethical Hacking, COTS, Incident Response, Enterprise Architect, Project and People Management, and even Tech Support. She is currently helping the Government of Canada secure their web applications.&lt;br /&gt;
&lt;br /&gt;
Merci à notre commanditaire principal de cet événement: Ubitrak!&lt;br /&gt;
&lt;br /&gt;
== WORKSHOP ! Server Side Template Injection (SSTI) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-okiok-SSTI-r.jpg | WORKSHOP ! Server Side Template Injection (SSTI) ]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/workshop-server-side-template-injection-ssti]] [https://speakerdeck.com/owaspmontreal/workshop-server-side-template-injection-ssti See the slides / Voir la présentation]&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 22 Février 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Shopify Montréal&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
OWASP Montreal vous invite à un atelier portant sur la sécurité des applications web supportant les moteurs de template (Template Engine). Le principe de séparation entre la présentation du site (code HTML statique) et de son contenu dynamique facilite la création de documents HTML et la capacité à modifier l'apparence du site sans mélanger le traitement et le rendu de la page. L'utilisation de moteurs de template amène de nouveaux enjeux de sécurité. Les vulnérabilités de type Server Side Template Injection (SSTI) sont exploitables à travers les données (non fiables) fournies par l'utilisateur et conduisent à l'exécution de code arbitraire (RCE) sur le serveur hébergeant l'application web.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ce workshop a pour but d'introduire cette classe de vulnérabilité à travers différents cas d'implémentation (php, java, python).&lt;br /&gt;
Nous verrons comment identifier et exploiter ces vulnérabilités et de quelle manière un attaquant peut &lt;br /&gt;
s'y prendre pour exécuter du code arbitraire sur le serveur afin d'en prendre le contrôle.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Niveau : Intermédiaire&amp;lt;br/&amp;gt;&lt;br /&gt;
Matériel requis :&lt;br /&gt;
* Votre portable&lt;br /&gt;
* Votre distribution Linux/Unix de votre choix&lt;br /&gt;
* Votre proxy Web de votre choix&lt;br /&gt;
&lt;br /&gt;
Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
Places limitées. Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Shopify pour l'événement.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Présentateur : Gérôme Dieu&amp;lt;br/&amp;gt;&lt;br /&gt;
Gérôme Dieu cumule plus de 7 années d’expérience en technologies de l’information et en sécurité. &lt;br /&gt;
Il œuvre à titre de conseiller senior en sécurité de l’information au sein de la firme OKIOK. Ces dernières années, il a acquis une expertise dans le domaine de la sécurité des applications web aussi bien d'un point de vue offensif que défensif. En plus de réaliser des tests d’intrusion pour des clients internationaux, Gérôme s’implique dans la recherche et développement afin de maintenir à la fine pointe de la technologie les tests d'intrusion et d'analyse de vulnérabilités. &amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Merci à Shopify d'héberger l'événement !&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Shopify Logo-r.png| Shopify | link=https://www.shopify.com/]]&lt;br /&gt;
== Le courriel en 2017 – risques et menaces pour tous ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Zero spam 2.jpg|Le courriel en 2017 – risques et menaces pour tous]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://www.youtube.com/watch?v=HX2vcijcCWw ]] [https://www.youtube.com/watch?v=HX2vcijcCWw Watch the conference / Regarder la conférence ]&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 Le 23 janvier 2017 à midi&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
Monsieur Poellhuber nous brossera un tableau du phénomène grandissant du rançongiciels et de l'hameçonnage, personnification.&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
- Par les années passées, la menace courriel se résumait principalement en un fort volume de contenu simplement indésirable. Aujourd’hui la menace a passablement évolué. Quels sont les véritables risques actuels associés au courriel ? Rançongiciels, hameçonnage, personnification. Cette conférence présentera les nouveaux défis de sécurité pour les organisations qui doivent composer avec des attaques de plus en plus sophistiquées et de plus en plus ciblées tout en protégeant leur réputation. Des exemples biens réels, drôles et moins drôles seront disséqués pour bien dessiner l’ampleur de l’enjeu.&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
M. David Poellhuber, Chef de l’exploitation, ZEROSPAM Sécurité Inc&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note biographique :&amp;lt;br/&amp;gt;&lt;br /&gt;
Monsieur David Poellhuber oeuvre dans l’industrie de la sécurité informatique depuis quinze ans. Il a été conférencier dans plusieurs forums de sécurité au Canada et est maintenant reconnu comme une autorité en matière de sécurité du courriel. Il a fondé ZEROSPAM Sécurité en 2003, le premier service Québécois externalisé de sécurité du courriel infonuagique qui se distingue par sa convivialité, son efficacité et ses technologies de détection proactives.&amp;lt;br/&amp;gt;&lt;br /&gt;
Audience :  Généralistes et spécialistes de la sécurité des TI &lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Merci à Ubitrack pour le repas et à Desjardins d'héberger l'événement!&lt;br /&gt;
&lt;br /&gt;
[[Image:Ubitrak-r2.jpg|Ubitrak|link=http://www.ubitrak.com/fr/]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&lt;br /&gt;
== Effective XSS Mitigation ==&lt;br /&gt;
&lt;br /&gt;
[[Image:XSS mitigation.jpg | Effective XSS Mitigation ]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=http://slides.com/olivierarteau/xss-mitigation ]] [http://slides.com/olivierarteau/xss-mitigation See the slides / Voir la présentation]&lt;br /&gt;
&lt;br /&gt;
WHEN &lt;br /&gt;
 18 Janvier 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Google Montréal&lt;br /&gt;
&lt;br /&gt;
FRANÇAIS/ENGLISH&amp;lt;br/&amp;gt;&lt;br /&gt;
La mitigation de XSS a été un sujet important au cours des dernières années. Les navigateurs ont implémenté, en autre, deux fonctionnalités pour mitiger leur impact : l'entête &amp;quot;XSS-Protection&amp;quot; et l'entête &amp;quot;Content-Security-Policy&amp;quot;. Par contre, obtenir une mitigation contre les XSS efficace est souvent plus complexe que l'on pense. Cet atelier couvrira les deux entêtes. Il expliquera comme il est possible de contourner ces protections et ce qu'il est possible de faire pour se protéger. Des exercices de type &amp;quot;offensif&amp;quot; et &amp;quot;défensif&amp;quot; seront proposés.&lt;br /&gt;
Mitigation for XSS as been an important topic in the last few years. Browsers have implemented two main functionalities to help mitigate the impact of XSS : the &amp;quot;XSS-Protection&amp;quot; header and the &amp;quot;Content-Security-Policy&amp;quot; header. But, getting an effective XSS mitigation of those headers is trickier than it may seem. This workshop will cover both of those headers. It will explain how bypass of those protection work and what you can do about it. It will have both &amp;quot;defensive&amp;quot; exercises and &amp;quot;offensive&amp;quot; exercises.&lt;br /&gt;
Niveau : débutant/intermédiaire&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Matériel requis :&lt;br /&gt;
&lt;br /&gt;
Votre portable&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
&lt;br /&gt;
Places limitées. Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Google pour l'événement.&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Présentateur : Olivier Arteau&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Olivier Arteau est un professionnel en sécurité informatique depuis quelques années et fait partie de l’équipe de test d’intrusion de Desjardins. Il est aussi un amateur de CTF qui a gagné à plusieurs reprises le CTF du NorthSec avec l’équipe HackToute et participe fréquemment à d’autres CTF avec l’équipe DCIETS.&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Merci à Google d'héberger l'événement! &lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-zap-4-r.jpg | Google | link=https://www.google.ca/ ]]&lt;br /&gt;
&lt;br /&gt;
= Lunch &amp;amp; Learn / Workshops 2015-2016 =&lt;br /&gt;
&lt;br /&gt;
== WORKSHOP ! Top 10 OWASP - Unleash the threats ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-top10.jpg | WORKSHOP! Top 10 OWASP - Unleash the threats ]]&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 30 novembre 2016 de 17h30 à 20h30&lt;br /&gt;
WHERE&lt;br /&gt;
 Immunio @ WeWork&lt;br /&gt;
&lt;br /&gt;
De nos jours, la sécurité applicative est essentielle dans l’écosystème des entreprises de toutes tailles. Les vecteurs d’attaques sont multiples, les vulnérabilités de sécurité dans les applications peuvent être désastreuses et les impacts d’un « Hack » peuvent être irréversibles pour l’entreprise; vols de données sensibles, perte de réputation, perte de $$$$$, etc.&lt;br /&gt;
L’objectif du workshop est de comprendre la base sur les vulnérabilités de sécurité dans les applications et les techniques d’exploitation utilisées par les pirates informatiques, en plus de connaître les bonnes pratiques de développement en matière de sécurité applicative. &lt;br /&gt;
Avec l'aide de WebGoat, Damn Vulnerable Web Application et de Kali Linux, vous pourrez participer&lt;br /&gt;
à l'exploitation des applications et découvrir les techniques utilisées par les attaquants.&lt;br /&gt;
&lt;br /&gt;
Niveau : débutant&lt;br /&gt;
&lt;br /&gt;
Matériel requis :&lt;br /&gt;
 Votre portable&lt;br /&gt;
 Kali Linux&lt;br /&gt;
 La VM du workshop, envoyée aux participants&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
&lt;br /&gt;
Places très limitées (nb = 10). Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Immunio &amp;amp; WeWork pour l'événement.&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Présentateur : Christian Leclerc&lt;br /&gt;
&lt;br /&gt;
Christian est spécialisé en conception et développement de solutions web sécuritaires. Tout au long de sa carrière, il a acquis une vaste expertise sur plusieurs types de technologies et méthodologies, intégré la sécurité dans le cycle de développement d’applications, effectué des revues de code sécurité, déployé des outils d’analyse des vulnérabilités et mis en place des systèmes d’authentification. De plus, il a participé à la conception et au développement de solutions sécuritaires de pointe comme la signature électronique à l’aide d’une infrastructure à clé publique (PKI), les authentifications fortes, le Registre des consentements au don d'organes et de tissus (RDOQ.org) et la migration de plusieurs applications web vers un environnement SOA (Service Oriented Architecture). &lt;br /&gt;
&amp;lt;br&amp;gt;Merci à Immunio &amp;amp; WeWork d'héberger l'événement!&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:Immunio-horizontal-r.png|Immunio|link=https://www.immun.io/]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[Image:Wework-r.jpg|WeWork|link=https://www.wework.com/]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Histoire d'un Hack ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Histoire-dun-hack-r.jpg | Histoire d'un Hack ]]&lt;br /&gt;
&lt;br /&gt;
WHEN &lt;br /&gt;
 21 novembre 2016 à midi&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
Pour son activité du mois de novembre, OWASP Montréal propose à la communauté de la sécurité des TI et aux gestionnaires de faire l'autopsie d'une attaque de haute voltige sur un site web et des outils mis à la disposition par OWASP.&lt;br /&gt;
 &lt;br /&gt;
Bernard Bolduc cumule plus de 17 années d’expérience en technologies de l’information et en sécurité. Il œuvre à titre de conseiller senior en sécurité de l’information au niveau d’entreprise de classe nationale et internationale.&lt;br /&gt;
 &lt;br /&gt;
Bernard se spécialise en sécurité Unix, applicative et en gestion de la sécurité des télécommunications. Il combine ces expertises techniques afin d’obtenir des résultats probants et efficaces pour ces clients des secteurs bancaire, télécommunication et multimédias, de l’énergie ou des services publiques. Tout au long de sa carrière, Bernard s’est toujours maintenu à jour sur les dernières menaces de sécurité technologique et commerciale en assistant à des formations spécialisées et d'échanger avec un grand nombre de partenaires dans l'industrie de la sécurité.&lt;br /&gt;
 &lt;br /&gt;
La conférence débute à midi.&lt;br /&gt;
 &lt;br /&gt;
La conférence vous donne droit à 1 CPE et pour les 50 premières personnes, un lunch gratuit.&lt;br /&gt;
 &lt;br /&gt;
Merci à Desjardins d'héberger l'événement!&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Workshop ! Création de votre première extension OWASP ZAP (ou BurpSuite) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-zap-mix.jpg | Workshop ! Création de votre première extension OWASP ZAP (ou BurpSuite)]]&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 11 novembre 2016 de 18h à 21h&lt;br /&gt;
&lt;br /&gt;
WHERE &lt;br /&gt;
 Google Montréal&lt;br /&gt;
&lt;br /&gt;
OWASP Zed Attack Proxy (ZAP) est un scanneur de vulnérabilités et un outil de débogage HTTP. Ce type d'outil est crucial dans un test d'intrusion web et contient un lot intéressant de fonctionnalités. Cela dit, il est possible d'étendre les fonctionnalités. Plusieurs types d'extension sont possibles : vue alternative pour les requêtes ou les réponses, scanneur passif des réponses, scanneur actif produisant des requêtes, etc.&lt;br /&gt;
&lt;br /&gt;
Plusieurs options seront données, par exemple :&lt;br /&gt;
&lt;br /&gt;
 Détection automatique de flag dans les sources&lt;br /&gt;
 Scanneur actif asynchrone DNS&lt;br /&gt;
 Ou votre propre idée&lt;br /&gt;
&lt;br /&gt;
Pour chacune des suggestions, des squelettes de code seront fournis pour les APIs de ZAP. Pour les utilisateurs de BurpSuite, des directives analogues seront également données.&lt;br /&gt;
&lt;br /&gt;
Niveau : débutant / intermédiaire&lt;br /&gt;
&lt;br /&gt;
Matériel requis&lt;br /&gt;
&lt;br /&gt;
 Votre portable&lt;br /&gt;
 [https://www.owasp.org/index.php/OWASP_Zed_Attack_Proxy_Project OWASP ZAP (gratuit)]&lt;br /&gt;
 [https://portswigger.net/burp/download.html BurpSuite]&lt;br /&gt;
 Éditeur de code pour Java, Python ou Ruby&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Présentateur : Philippe Arteau&lt;br /&gt;
&lt;br /&gt;
Philippe est un chercheur en cybersécurité chez GoSecure. Il est l'auteur de l'outil d'analyse statique Java &amp;quot;Find Security Bugs&amp;quot;. Il a découvert des vulnérabilités importantes dans les logiciels populaires tels que Google Chrome, Dropbox, Paypal, RunKeeper et Jira. Il a présenté dans différentes conférences incluant Black Hat USA, Black Hat Europe, ATL Sec Con, NorthSec, Hackfest (QC) et JavaOne. Il a développé de nombreux plug-ins pour les outils de proxy BurpSuite et OWASP ZAP (Retire.js, Reissue Request Script, PDF preview et Image Metadata). Il a fait également des contributions à d'autres plug-ins comme J2eeScan.&lt;br /&gt;
&lt;br /&gt;
Merci à Google d'héberger l'événement! &lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-zap-4-r.jpg | Google | link=https://www.google.ca/ ]]&lt;br /&gt;
&lt;br /&gt;
==Logiciel de rançon (Ransomware) s'attaque au domaine de la santé==&lt;br /&gt;
&lt;br /&gt;
[[Image:HackingHealth-2.jpg | Logiciel de rançon (Ransomware) s'attaque au domaine de la santé ]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/ransomware-and-healthcare-hacking-health ]] [https://speakerdeck.com/owaspmontreal/ransomware-and-healthcare-hacking-health See the slides / Voir la présentation]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;(Conférence en anglais)&lt;br /&gt;
Pour le lancement de la saison 2016 - 2017, OWASP Montréal propose à la communauté de la sécurité des TI et aux gestionnaires de la santé une incursion dans le monde du logiciel malveillant ciblant le domaine de la santé.&amp;lt;br/&amp;gt;&lt;br /&gt;
Cette conférence s'intége dans le Coopérathon co-organisé par le Mouvement Desjardins et Hacking Health.&amp;lt;/b&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Le domaine de la santé serait devenu une cible privilégiée des campagnes de ransomware parce que l'industrie a souvent payé la rançon demandée pour récupérer les données confidentielles et vitales de ses clients. Monsieur Ed Gershfang nous brossera un portrait du phénomène et des meilleures pratiques à mettre en place en matière de sécurité applicative.&lt;br /&gt;
Ed Gershfang possède une expérience solide dans l'infrastructure informatique et plus de 6 ans d'expérience dans les domaines de la sécurité de l'information, de la vulnérabilité, de la gouvernance et de la gestion des risques. Il était directeur de la sécurité pour la société PeriGen, un chef de file de développement de logiciels médicaux en Israël.&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== La sécurité applicative vue par un pentesteur ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Juin2016-OWASPMtl.jpg | OWASP Montréal reçoit Mario Contestabile, Pentester de renom ]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
From Left to Right : Isabelle Lusseyran, Head of Development at Hacking Health. Eduard Gershfang Information Security Analyst at WSP | Parsons Brinckerhoff.&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/owasp-montreal-recoit-mario-contestabile ]] [https://speakerdeck.com/owaspmontreal/owasp-montreal-recoit-mario-contestabile See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Pour clore la saison 2015 – 2016, OWASP Montréal est fier d’accueillir au Midi Conférence un des architectes de renom du développement applicatif au Canada, monsieur Mario Contestabile.&lt;br /&gt;
En tant qu’auteur de plusieurs centaines de tests d’intrusion, il connait tous les rouages de ce qu’est véritablement une application Web «sécurisée». Mais avez-vous déjà remarqué que les rapports de tests d’intrusion mentionnent rarement, voir jamais : «Votre site est très difficile à pirater. Félicitations !» ?&lt;br /&gt;
Et qu’en est-il de ces rapports qui contiennent des dizaines de soi-disant vulnérabilités ? Est-ce que cela signifie d’emblée que l’application devrait être mise hors ligne ?  &lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Lors de cette conférence, nous examinerons des rapports concrets (ambigus) de vulnérabilités et nous les analyserons afin de mieux comprendre si elles représentent une véritable menace, ou si elles ne servent qu’à «remplir» les rapports.&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Avec son expertise en protection et en attaque d’applications Web, il abordera les points suivants :&lt;br /&gt;
Comment pouvez-vous sélectionner des systèmes de façon à mieux exécuter des protections de sécurité ?&lt;br /&gt;
Éviter certains pièges dans votre application Web qui rendent les attaques plus faciles et la protection plus difficile.&lt;br /&gt;
De nos jours, que peuvent faire les développeurs à l’intérieur de systèmes communs, qui puisse me rendre la tâche plus ardue en tant que « hacker »?&lt;br /&gt;
Pouvons-nous exiger de meilleurs rapports de la part des firmes de sécurité?&lt;br /&gt;
À quoi devrions-nous nous attendre de la part d’un « pentesters »?&lt;br /&gt;
Comment pouvons-nous savoir si le « pentester » a vérifié les failles de l’application et qu’il n’a pas simplement utilisé un scanneur?&lt;br /&gt;
Et enfin, comment pouvons-nous aider les « ethical hackers » à obtenir un meilleur rendement lors d’un test d’intrusion?&lt;br /&gt;
Il expliquera le sujet en détails, et ensemble, nous verrons de quelles façons les développeurs d’applications peuvent exploiter le savoir-faire des « pentesters », et comment nous pouvons faire en sorte qu’une application Web soit protégée.&lt;br /&gt;
Biographie :&lt;br /&gt;
Mario Contestabile est reconnu comme l’un des experts en sécurité les plus réputés au Canada. Son expertise, construire et protéger votre plateforme applicative. Ancien développeur C++ et Java, Mario partage ses nombreuses connaissances en « ethical hacking » et en développement de codes sécurisé.  &lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Tuesday, 14 June 2016 from 12:00 PM to 1:00 PM (EDT) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Comment protéger les applications mobiles? ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Avril2016-OWASPMtl.png | Comment protéger les applications mobiles? ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/comment-proteger-les-applications-mobiles ]] [https://speakerdeck.com/owaspmontreal/comment-proteger-les-applications-mobiles See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Dans le cadre des Midis Conférence à l'Espace Desjardins, l'équipe OWASP Montréal vous invite à assister à une présentation sur les vulnérabilités les plus communes associées aux appareils mobiles. &lt;br /&gt;
Marie-Claire Willig détaillera entre autres comment stocker de façon sécuritaire les données de l’application mobile ainsi que protéger l’application contre des attaques externes. Des outils simples vous seront dévoilés pour détecter ces vulnérabilités.&lt;br /&gt;
Marie-Claire est une professionnelle d'expérience en sécurité appliquée.&lt;br /&gt;
Une grande partie de son intérêt professionnel réside actuellement dans un domaine assez niche, soit la revue de code sécuritaire, un fondement important de tout cycle de développement sécuritaire en entreprise.&lt;br /&gt;
Au sein de l'équipe de sécurité technologique Desjardins, elle est, en autre, responsable de former les développeurs (Java et .NET principalement) afin de les sensibiliser aux meilleures pratiques de développement sécuritaire.&lt;br /&gt;
Également, elle est une professionnelle des tests d'intrusion sur les applications web, les applications mobiles ainsi que l'infrastructure réseau.&lt;br /&gt;
Bienvenue à tous&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 20 April 2016 from 12:15 PM to 1:00 PM (EDT) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== NorthSec, Le plus gros événement de cybersécurité appliquée au Canada ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Mars2016-OWASPMtl.jpg | NorthSec, Le plus gros événement de cybersécurité appliquée au Canada ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/YQtvltQYs7Y]] [https://youtu.be/YQtvltQYs7Y Watch the conference / Regarder la conférence] &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
OWASP Montréal est fier d’inviter au Midi Conférence de mars, NorthSec est le plus gros événement de sécurité appliquée au Canada qui comprend deux jours de formation, deux jours de conférences ainsi qu’une compétition du genre « capture the flag » (CTF) de trois jours.&lt;br /&gt;
Gabriel Tremblay, Benoit Guerette, Pierre-David Oriol et Laurent Desaulniers viendront vous parler de cet organisme sans but lucratif dynamique qui est géré par une équipe de bénévoles passionnés qui donnent à chaque année leur énergie et leur temps pour soutenir la communauté de la sécurité de l’information.&lt;br /&gt;
Le volet compétition, l’épreuve maîtresse, est présentée sous forme d’un scénario qui rend cohérent une centaine de défis techniques. Les équipes de participants attaquent l’infrastructure de compétition pour soutirer des drapeaux (flags) à travers un ensemble de vulnérabilités présentes comme de l’injection SQL, des XSS ou encore l’exploitation d’exécutables sur systèmes embarqués. Quelques exemples de défis des années passées seront également présentés.&lt;br /&gt;
Le volet conférence, qui est à sa 2ème année, met de l’avant plusieurs présentations techniques touchant la sécurité applicative mais aussi l’éthique et leurs impacts sociaux. Certaines présentations confirmées seront dévoilés.&lt;br /&gt;
Le tout nouveau volet formation propose deux formations en sécurité applicative de calibre international (anglais) : “Advanced Web Security Testing with Burp Pro” et “Modern Object-Oriented Malware Reverse Engineering”.&lt;br /&gt;
Venez aussi, découvrir comment l'équipe est partie d'une idée en 2012 pour se rendre à un évènement d'envergure, qui rassemblera plus de 600 professionnels, étudiants et autres passionnés de sécurité appliquée lors de la 4ème édition qui aura lieu du 17 au 22 mai 2016 au Marché Bonsecours.&lt;br /&gt;
Finalement, la mission, la vision ainsi que les activités sociales de la semaine de NorthSec sont aussi au menu de cette présentation qui sera suivie d’une période de questions.&lt;br /&gt;
&lt;br /&gt;
Gabriel Tremblay, Delve Labs, Président&lt;br /&gt;
Benoit Guerette, Desjardins, VP Finances&lt;br /&gt;
&lt;br /&gt;
Pierre-David Oriol, Delve Labs, VP Conférence&lt;br /&gt;
Laurent Desaulniers, Bell Canada, Artisant de drapeaux&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 23 March 2016 from 12:00 PM to 1:00 PM (EDT) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== La sécurité applicative et l'hameçonnage - February 24th ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Fevrier2016-OWASPMtl.jpg | La sécurité applicative et l'hameçonnage ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/1RYlOiIENjQ]] [https://youtu.be/1RYlOiIENjQ Watch the conference / Regarder la conférence] &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
De nos jours, une des méthodes les plus efficaces pour contourner les périmètres de sécurité externes est l'hameçonnage conjointement avec l’abus de certaines technologies Web.&lt;br /&gt;
&lt;br /&gt;
Dans le cadre ses activités, OWASP Montréal est heureux d'inviter d'accueillir, l'équipe OKIOK qui présentera les impacts liés à ce type d'attaque, tel que vu et expérimenté en entreprise ainsi que les plans d'action pour traiter ces risques. La présentation abordera aussi bien la sécurité web et applicatives, des systèmes informatiques ainsi que de la sécurité physique de centres de données. &lt;br /&gt;
&lt;br /&gt;
    Capture d'informations sensibles par imitations de portails Web ;&lt;br /&gt;
    Authentification Web par 2-facteurs ;&lt;br /&gt;
    Injection SMTP dans des formulaires Web ;&lt;br /&gt;
    Attaque de type “Drive-by-download”;&lt;br /&gt;
    Prise de contrôle à distance à travers des flux HTTP;&lt;br /&gt;
    Attaque de CSRF à partir de courriels ;&lt;br /&gt;
    Attaque d'hameçonnage basée sur des achats par Internet (ex : PayPal).&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
When&lt;br /&gt;
 Wednesday, 24 February 2016 from 12:00 PM to 1:15 PM (EST) - Add to Calendar &lt;br /&gt;
Where&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest Montreal, Quebec CA&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Internet of {Things, Threats} - January 20th ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Janvier2016-OWASPMtl-R.png | Internet of {Things, Threats} ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=http://gosecure.github.io/presentations/2016-01-20_owasp-mtl/internet-of-threats.html ]] [http://gosecure.github.io/presentations/2016-01-20_owasp-mtl/internet-of-threats.html See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
De plus en plus de périphériques se retrouvent connectés sur Internet. Sous la bannière &amp;quot;Internet of Things&amp;quot; (IoT) ces équipements, que ce soit une pompe à insuline ou un système de caméra de sécurité, tournent généralement sous un système GNU/Linux embarqué d'architecture MIPS ou ARM. La difficulté de mettre à jour ces équipements ainsi que le peu d'effort mis dans la sécurité des systèmes ou la sécurité applicative en font des cibles de choix. Ces derniers mois, nous avons analysé plusieurs logiciels malveillants ciblant ces architectures. Que ce soit par l'exploitation d'une vulnérabilité (Shellshock) ou encore un défaut de configuration, ces systèmes exposés sur Internet peuvent être compromis.&lt;br /&gt;
&lt;br /&gt;
Notre présentation couvrira quelques une de ces analyses:&lt;br /&gt;
&lt;br /&gt;
* Linux/Moose, un malware se propageant automatiquement qui fraude les réseaux sociaux (par exemple Facebook, Twitter et YouTube)&lt;br /&gt;
* LizardSquad et acteurs étrangers qui utilisent des systèmes embarqués compromis pour réaliser des dénis de service distribué (DDoS) &lt;br /&gt;
* Win32/RBrute est un logiciel malveillant qui tente de changer les paramètres de routeurs dans le but de faire du &amp;quot;DNS poisoning&amp;quot;. Il a été distribué par le populaire botnet Sality.&lt;br /&gt;
* Un kit d'exploits qui utilise seulement le navigateur de leur victime avec le même objectif, c'est-à-dire faire du &amp;quot;DNS poisoning&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Enfin, des conseils seront proposés à l'audience pour l'aider à se protéger de ces menaces.&lt;br /&gt;
&lt;br /&gt;
'''Thomas Dupuy''' (twitter: @nyx__o)&lt;br /&gt;
&lt;br /&gt;
Thomas est chercheur en logiciel malveillant chez ESET Canada Recherche. Bon vivant, Thomas déjeune en &amp;quot;reversant&amp;quot; des binaires, contribue à quelques projets open source durant le diner (yara, yara rules, pefile, APTnotes) et la nuit participe à des &amp;quot;Hacking Games&amp;quot; (Capture The Flag). Curieux de nature Thomas analyse des malware aux architectures &amp;quot;exotiques&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Olivier Bilodeau''' (twitter: @obilodeau)&lt;br /&gt;
&lt;br /&gt;
Olivier Bilodeau is the head of Cybersecurity Research at GoSecure a consultancy firm specializing in cybersecurity services for the public and private sector. With more than 10 years of infosec experience, Olivier worked on Unix servers at Bell Canada, managed a portion of Air Canada's network, wrote open source network access control software at Inverse and worked as a Malware Researcher at ESET. He likes to reverse engineer everything that crosses his path, participate in information security capture-the-flag competitions, hack open source code and brew beer. He has spoken at various conferences (Defcon, Botconf, VirusBulletin, Derbycon, ...), used to lecture on information security at ETS University in Montreal, drives the NorthSec Hacker Jeopardy and co-organizes the MontreHack capture-the-flag training initiative. His primary research interests include reverse-engineering tools, Linux and/or embedded malware and honeypots.&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Survivre aux attaques DDOS applicatives ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Decembre2015-OWASPMtl.jpg | Survivre aux attaques DDOS applicatives ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Survivre aux attaques DDOS (Distributed Denial-Of-Service) applicatives.&lt;br /&gt;
Cette conférence s'adresse aux professionnels et gestionnaires des TI.&lt;br /&gt;
Conférencier : Christian Shink, ing., CSSLP, ingénieur système chez Radware, manufacturier spécialisé dans la prévention des attaques DDOS. Il fut également consultant en sécurité applicative chez In Fidem.&lt;br /&gt;
Objectifs de la conférence:&lt;br /&gt;
Présenter les tendances actuelles en matière d'attaques DDOS applicatives.&lt;br /&gt;
Renseigner les participants sur les techniques et stratégies pour contrer ces attaques illustrées à partir de cas vécus.&lt;br /&gt;
Démystifier certains mythes en ce qui concernent les façons efficaces de protéger les applications contre des attaques DDOS.&lt;br /&gt;
Date : 16 décembre 2015&lt;br /&gt;
Heure : 11h45&lt;br /&gt;
La conférence débute à 12h00 et se termine à 12:55.&lt;br /&gt;
Un lunch sera servi.&lt;br /&gt;
Réservez maintenant!&lt;br /&gt;
1 CPE&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 16 December 2015 from 11:45 AM to 1:00 PM (EST) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec &lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Sécurité des applications - Systèmes de contrôles industriels ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Novembre2015-OWASPMtl-R.png | Sécurité des applications - Systèmes de contrôles industriels ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/0eAZpyiQQ9A]] [https://youtu.be/0eAZpyiQQ9A Watch the conference / Regarder la conférence] &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&lt;br /&gt;
La sécurité des applications et les systèmes de contrôles industriels.&lt;br /&gt;
Cette conférence s'adresse aux professionnels et gestionnaires des TI desinfrastructures critiques qui exploitent ou gèrent des systèmes de contrôles industriels(SCI) et SCADA (surveillance et d'acquisition de données).&amp;lt;br/&amp;gt;&lt;br /&gt;
Conférenciers : Robert Nastas, CSSA. Gestionnaire de projet et Youssef Jad, Architecte Cyber sécurité, ICS-CERT&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Objectifs de la conférence:&lt;br /&gt;
* Démystifier le domaine d'affaires.&lt;br /&gt;
* Renseigner les participants sur les bonnes pratiques de sécurité desapplications liées au secteur industriel.&lt;br /&gt;
* Proposer aux professionnels et gestionnaires des TI responsables dessystèmes SCADA et SCI des pistes de solutions aux enjeux de sécurité.&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
L'équipe OWASP Montréal vous remercie d'avoir assisté en grand nombre à la conférence, 'La sécurité des applications et les systèmes de contrôles industriels'.&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 18 November 2015 from 11:45 AM to 1:00 PM (EST) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Les préoccupations actuelles de hauts dirigeants en matière de cybersécurité et de sécurité applicative ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Septembre2015-OWASPMtl.jpg | Les préoccupations actuelles de hauts dirigeants en matière de cybersécurité et de sécurité applicative ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/un-regard-sur-la-securite-de-linformation-en-2015-par-eric-hebert ]] [https://speakerdeck.com/owaspmontreal/un-regard-sur-la-securite-de-linformation-en-2015-par-eric-hebert See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Pour le lancement des activités corporatives de la saison 2015 - 2016, le 8 septembre prochain à 12:00, l'équipe OWASP Montréal convie les gestionnaires et artisants de la sécurité des TIC à venir entendre monsieur Éric Hébert qui nous présentera son interprétation des préoccupations actuelles de hauts dirigeants en matière de cybersécurité et de sécurité applicative. L'événement se tiendra au complexe Desjardins à la salle &amp;quot;Espace Desjardins&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
''' ÉRIC G. HÉBERT, CISM, CISSP ''' &amp;lt;br/&amp;gt;&lt;br /&gt;
Après plus de 20 ans passés dans le domaine de la sécurité des technologies de l’information, Éric se spécialise dans la mise en œuvre et la gestion d'équipes performantes, capables de relever les plus hauts défis de la cybersécurité moderne.&amp;lt;br/&amp;gt;&lt;br /&gt;
Capable de dialoguer avec les hauts dirigeants, il sait traduire et vulgariser les enjeux techniques complexes tout en respectant la nature et l'appétence au risque de ses clients. Dynamique et pourvu d'une expérience couvrant presque toutes les sphères de la SI, il fonce dans le respect de la culture établie tout en implantant des solutions pragmatiques et efficaces.&amp;lt;br/&amp;gt;&lt;br /&gt;
Depuis plus de 10 ans, il gravite principalement autour des entreprises du domaine financier (BNC, Desjardins, Fonds de solidarité FTQ...) et les accompagne dans la mise en place de solutions efficaces tenant compte à la fois des risques et des budgets.&lt;br /&gt;
En plus d’avoir fondé de nombreuses associations telles que le RéseauSécurIT et le RPSI, il maintient une présence régulière auprès des milieux associatifs professionnels et partage régulièrement ses expériences lors de conférences et d'entrevues avec divers médias.&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Events / Évènements =&lt;br /&gt;
&lt;br /&gt;
== Owasp Montreal at [https://nsec.io/ NorthSec 2017] ==&lt;br /&gt;
&lt;br /&gt;
[[Image:NorthSec2017-5.jpg]]&lt;br /&gt;
[[Image:NorthSec2017-6.jpg]]&lt;br /&gt;
&lt;br /&gt;
From Left to Right: Anne Gauthier, OWASP Montréal Chapter Leader (President) and Application Security Analyst at GoSecure, Hugo Genesse, OWASP Montréal Chapter Leader and Research Intern at PNF Software, Julien Touche, OWASP Montréal Chapter Leader and Principal Security Engineer at Nuance Communications&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal at [https://2017.appsec.eu/ AppSec] ==&lt;br /&gt;
&lt;br /&gt;
[[Image:OWASPAppSecBelfast2017-7.jpg]]&lt;br /&gt;
&lt;br /&gt;
OWASP Montreal and Ottawa Chapter Leaders at OWASP AppSec Belfast, UK #WomenInAppSec&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal at [https://hackfest.ca/ HackFest 2016] ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hackfest2016-r.jpg| HackFest |link=https://hackfest.ca/]]&lt;br /&gt;
&lt;br /&gt;
From left to right: Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Louis Nadeau, OWASP Québec Chapter Leader and Manager, Product Security at Bentley Systems and Patrick Leclerc, OWASP Québec Chapter Leader and Information Security Advisor at La Capitale.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal at OWASP [https://2016.appsecusa.org/ AppSec USA 2016, Washington] ==&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:OWASPMtl-AppSecUSA2016-Washington.jpg | OWASP Montreal at AppSec USA 2016, Washington]] &lt;br /&gt;
&lt;br /&gt;
​From left to right: Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Marie-Claire Willig, Application Security Analyst at Desjardins, Speaker and Cofounder of the Roslyn Security Guard tool which will be presented at Blackhat 2016, Alexandre Hamelin President at Synlabs Consulting Inc., Jonathan Marcil, Application Security Engineer at Blizzard Entertainment and former OWASP Montreal Chapter Leader. Philippe Arteau, Cybersecurity Researcher at GoSecure and designer of [https://find-sec-bugs.github.io/ Find Security Bugs] and Roslyn Security Guard tool which will be presented at Blackhat 2016.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://www.gosec.net GoSec] 2016 ==&lt;br /&gt;
&lt;br /&gt;
[[Image:OWASP-GoSec2016-1r.jpg|OWASP Montreal at GoSec 2016]] [[Image:OWASP-GoSec2016-2r.jpg|OWASP Montreal at GoSec 2016]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
From left to right : Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Simon Lacasse, student and volunteer, and Laurent Desaulniers, Security Analyst at Bell Canada.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://www.nsec.io/ NorthSec] 2016 – Annual Applied Security Event ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hackfest2016-OWASPMtl.jpg|OWASP Montreal at NorthSec 2016]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Simon Veilleux &lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
From left to right : Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Olivier Arteau OWASP Montréal Chapter Leader and Conseiller chez Groupe Technologie Desjardins, Hugo Genesse, OWASP Montréal Chapter Leader and Vulnerability Research Intern at Wurldtech Security Technologies.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://hackfest.ca/en/ Hackfest] 2015 ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hackfest2015-OWASPMtl-R.JPG | OWASP Montreal at Hackfest 2015]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Hackfest &lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
From left to right : Jonathan Marcil, Application Security Engineer at Blizzard Entertainment and former OWASP Montreal Chapter Leader. Philippe Arteau, Cybersecurity Researcher at GoSecure and designer of [http://find-sec-bugs.github.io/ Find Security Bugs] and Roslyn Security Guard tool which will be presented at Blackhat 2016. &lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/8U0qkEuUFy8]] [https://youtu.be/8U0qkEuUFy8 Watch the video / Regarder la vidéo]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://www.gosec.net/ GoSec] 2015 – The Annual Cybersecurity Conference presented by GoSecure, EY and ISACA. ==&lt;br /&gt;
&lt;br /&gt;
[[Image:GoSec2015-OWASPMtl.jpg|OWASP Montreal at GoSec 2015]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
From left to right : Marie-Claire Willig, Application Security Analyst at Desjardins, Speaker and Cofounder of the Roslyn Security Guard tool which will be presented at Blackhat 2016. Benoît Guérette, Application Security Team Leader at Desjardins, VP Finance at NorthSec and OWASP Montreal Chapter Founder and Former Chapter Leader.&lt;br /&gt;
&lt;br /&gt;
== See also / Voir aussi ==&lt;br /&gt;
&lt;br /&gt;
OWASP Montréal recommends Montréhack. Learn and share knowledge on IT security by solving technical challenges. Third Monday of every month. &lt;br /&gt;
&lt;br /&gt;
OWASP Montréal recommende Montréhack. Apprends et partages des connaissances sur la sécurité informatique en travaillant des problèmes appliqués. Chaque troisième lundi du mois. &lt;br /&gt;
&lt;br /&gt;
[[File:Montrehack.png|Montréhack|link=http://montrehack.ca/|alt=Montréhack]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Archives 2007-2015 =&lt;br /&gt;
{{:Montreal chapter past meetings}}&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - February 3rd - Getting to Know the Software Assurance Marketplace (SWAMP) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/p4_vjufcB6Q]] [https://youtu.be/p4_vjufcB6Q Watch the conference / Regarder la conférence]&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/getting-to-know-the-software-assurance-marketplace-swamp-by-pat-beyer]] [https://speakerdeck.com/owaspmontreal/getting-to-know-the-software-assurance-marketplace-swamp-by-pat-beyer See the slides / Voir la présentation] &amp;lt;br/&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Pat Beyer&lt;br /&gt;
*'''ADDITIONAL PRESENTER:'''  Abe Megahed&lt;br /&gt;
*'''ABSTRACT:''' The Software Assurance Marketplace (SWAMP) is an open facility that is designed, built, and operated by four research institutions. The SWAMP provides no-cost access to an array of open-source and commercial software analysis tools. This presentation will provide an overview and demo of the SWAMP, including our goals, intended audience, current capabilities, and future plans. We will cover our relationship with OWASP, incorporation of open-source software assurance tools, and status as an open-source project and resource available to the software community. Visit https://continuousassurance.org/ to learn more about us.&lt;br /&gt;
*'''BIO:''' Pat Beyer serves as the Product Manager for the Software Assurance Marketplace (SWAMP). With over 25 years of experience successfully managing multi-million dollar global projects, Beyer’s expertise extends to the IT, construction, and operations sectors, with a specialization in managing government contracts and grants. A gifted communicator, Beyer is a sought after speaker due to his ability to deliver complex information about technology products and services in a way that is easily understood. He is a decorated combat veteran of the Global War on Terror, the international military campaign that started following the 9/11 terrorist attacks on the United States. In 2004, he constructed and rehabilitated over 20 schools, clinics, and water treatment plants for the Iraqi people using local contractors. Beyer also holds a Bachelor of Science, a Masters in Business Administration, a Ph.D. in Organization and Management, and a Project Management Professional (PMP) certification.&lt;br /&gt;
*'''BIO:''' Abe Megahed is a web developer for the Software Assurance Marketplace. In previous lifetimes, he has been a computer graphics researcher, a game programmer, a programming language and compiler nerd, a dot com company founder, a creator of helicopter simulations, and a developer of 3D simulations for NASA astronaut crew training.&lt;br /&gt;
*'''WHEN:'''  Tuesday, February 3rd 2015&lt;br /&gt;
*'''WHERE:''' Room PK-1140 - UQAM Pavillon Président-Kennedy, 201 Avenue du Président-Kennedy  J2X 3Y7&lt;br /&gt;
*'''REGISTRATION:''' https://owaspmtlswamp2015.eventbrite.ca&lt;br /&gt;
*'''WEBCAST:''' https://www.youtube.com/watch?v=p4_vjufcB6Q&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/getting-to-know-the-software-assurance-marketplace-swamp-by-pat-beyer&lt;br /&gt;
&lt;br /&gt;
*'''ACADEMIC PARTNER:''' AGEEI-UQAM - http://www.ageei.org/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Welcome speech by Chapter Leader (Jonathan Marcil)&lt;br /&gt;
  18:30-20:00 Main session: Getting to Know the Software Assurance Marketplace&lt;br /&gt;
  20:00-...   End of the meeting&lt;br /&gt;
&lt;br /&gt;
[[Image:SWAMP-Logo-Final-Med.png|300px|link=https://continuousassurance.org/]]&lt;br /&gt;
[[Image:Ageeilogo.jpg|200px|link=http://www.ageei.org/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - 4 décembre - Malware côté serveur — évolution, méthodes d’opération et forensic Linux ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/lo8WDl-WQ3E]] [https://youtu.be/lo8WDl-WQ3E Watch the conference / Regarder la conférence] &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/malware-cote-serveur-par-marc-etienne-m-dot-leveille]] [https://speakerdeck.com/owaspmontreal/malware-cote-serveur-par-marc-etienne-m-dot-leveille See the slides / Voir la présentation] &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''PRÉSENTATEUR PRINCIPAL:''' Marc-Etienne M.Léveillé&lt;br /&gt;
*'''RÉSUMÉ:''' Les logiciels malveillants ciblant les serveurs ont évolué. Ils sont utilisés par des groupes de cybercriminels organisés dans le but de faire du profit via des redirections web et l’envoie de pourriels. La présentation portera sur Opération Windigo, une opération malveillante qui a affecté plus de 25 000 serveurs dans le monde. Après une brève description des composantes de Windigo, nous verrons comment les opérateurs déploient leurs logiciels malveillants et surveille leur réseau de serveurs infectés. Des trucs pratiques pour faire de la forensics sur des systèmes Linux seront donnés. Cette présentation est une suite à la présentation &amp;quot;Linux/Cdorked: Server side malware&amp;quot;, donnée par Olivier Bilodeau à OWASP Montréal en 2013. La présentation sera en français avec des diapositives en anglais (aka Montreal-style).&lt;br /&gt;
*'''BIO:''' Marc-Etienne est un chercheur en logiciel malveillant chez ESET depuis 2012. Il se spécialise dans les logiciels malveillants qui s’attaquent à des plateformes inhabituelles comme aux produits fruités et aux oiseaux nordiques. Dernièrement, il passe beaucoup de son temps à faire la rétro-ingénierie de logiciels malveillants sur des serveurs Linux et s’intéresse à leurs méthodes d’opération. Il adore participer de façon collégiale aux CTFs avec ses amis les CISSP Groupies et jouer de la clarinette. Il tweet très peu à @marc_etienne_.&lt;br /&gt;
*'''QUAND:''' 4 décembre 2014 à 18h00&lt;br /&gt;
*'''OÙ:''' Local M-1510, Polytechnique Montréal, 2900 Boulevard Edouard-Montpetit&lt;br /&gt;
*'''INSCRIPTION:''' https://www.eventbrite.ca/e/owasp-montreal-4-decembre-malware-cote-serveur-evolution-methodes-doperation-et-forensic-linux-tickets-14635313617&lt;br /&gt;
*'''ÉQUIPE ACADÉMIQUE:''' Polyhack - http://polyhack.org/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
&lt;br /&gt;
 18:00-18:30 Réseautage&lt;br /&gt;
 18:30-18:35 Mot de bienvenue par le leader du chapitre (Jonathan M.)&lt;br /&gt;
 18:35-19:30 Présentation principale : Malware côté serveur&lt;br /&gt;
 19:30-20:00 Période de questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Polyhacklogonoirpetit.png|200px|link=http://polyhack.org/]]&lt;br /&gt;
[[Image:LogoPolytechnique.gif|link=http://www.polymtl.ca/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - October 23rd - XXE : À l’assaut des analyseurs XML ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/MZviLB9-42E]] [https://youtu.be/MZviLB9-42E Watch the conference / Regarder la conférence] &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/xxe-a-lassaut-des-analyseurs-xml-par-philippe-arteau]] [https://speakerdeck.com/owaspmontreal/xxe-a-lassaut-des-analyseurs-xml-par-philippe-arteau See the slides / Voir la présentation] &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''PRÉSENTATEUR PRINCIPAL:''' Philippe Arteau&lt;br /&gt;
*'''RÉSUMÉ:''' L'utilisation d’XML est fortement répandue. Le format est utilisé pour des fichiers de configuration, pour des métadonnées, pour des documents textes, et bien plus. La prise en charge de fichiers XML n’est pas sans risque. La plupart des analyseurs XML ne sont pas sécuritaires par défaut pour le traitement de fichier externe. Cette présentation fera un survol des vulnérabilités de type « Xml eXternal Entity » et de l’étendue des risques pour différents langages de programmation. Plusieurs démonstrations sont prévues.&lt;br /&gt;
*'''BIO:''' Philippe est conseiller en sécurité applicative pour le Groupe Technologies Desjardins. Au quotidien, il s’occupe d’effectuer des tests d’intrusions et des revues de code. Il a découvert des vulnérabilités importantes dans plusieurs logiciels populaires incluant Google Chrome, DropBox, ESAPI et Jira.&lt;br /&gt;
*'''QUAND:'''  23 Octobre 2014 à 18h00&lt;br /&gt;
*'''OÙ:''' École de Technologie Supérieure Local A-3230, 1100 Rue Notre-Dame Ouest, Montréal, QC H3C 1K3&lt;br /&gt;
*'''INSCRIPTION:''' http://www.eventbrite.ca/e/owasp-montreal-23-octobre-xxe-a-lassaut-des-analyseurs-xml-tickets-13426881163&lt;br /&gt;
*'''PARTENAIRE ACADÉMIQUE:''' ETS - DCI http://dciets.com/&lt;br /&gt;
*'''PROGRAMME:''' &lt;br /&gt;
&lt;br /&gt;
 18:00-18:30 Réseautage&lt;br /&gt;
 18:30-18:45 Mot de bienvenue&lt;br /&gt;
 18:45-19:45 Présentation principale - &amp;quot;À l’assaut des analyseurs XML&amp;quot; Philippe Arteau&lt;br /&gt;
 19:45-20:00 Période de questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Blason_dci.png‎‎‎|150px|link=http://dciets.com/]]&lt;br /&gt;
[[Image:ETS-rouge-devise-impr-fond_transparent.png|150px|link=http://www.etsmtl.ca/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - July 24th - Web security for DevOps: the glory is in the headers ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/6bp1NCLT-YQ]] [https://youtu.be/6bp1NCLT-YQ Watch the conference / Regarder la conférence] &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/web-security-for-devops-the-glory-is-in-the-headers-by-jonathan-marcil]] [https://speakerdeck.com/owaspmontreal/web-security-for-devops-the-glory-is-in-the-headers-by-jonathan-marcil See the slides / Voir la présentation] &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Jonathan Marcil&lt;br /&gt;
*'''ABSTRACT:''' DevOps is a buzzword which can be easily demystified: in essence it is a process which aims to combine the development and system administration process into one; Operations. As developers become responsible for server setup, security counter measures are evolving as well. The line between server configuration and application behaviour has been blurred. In this talk we will cover some HTTP headers in regards to security such as CORS, CSP and HSTS. We will demonstrate several forms of attack, and how they can (should) be countered.&lt;br /&gt;
*'''BIO:''' Jonathan is devoted to security and specialized in Web application security.  His main occupation is consulting in Web security, but deep down he is a developer with a agnostic vision of programming languages. He has a diploma in Software Engineering from Ecole de Technologie Superieure and more than 10 years of experience in Information Technology and Security.&lt;br /&gt;
*'''WHEN:'''  At noon on July 24th 2014&lt;br /&gt;
*'''WHERE:''' 75 Queen Street, office 3100, Montreal, QC H3C 2N6&lt;br /&gt;
*'''REGISTRATION:''' You can join us on site for a pizza slice but this is mainly an online event. Contact jonathan.marcil@owasp.org.&lt;br /&gt;
*'''WEBCAST:''' https://www.youtube.com/watch?v=6bp1NCLT-YQ&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/web-security-for-devops-the-glory-is-in-the-headers-by-jonathan-marcil&lt;br /&gt;
*'''EVENT SPONSOR:''' Pheromone http://www.pheromone.ca/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  12:00-12:10 Welcome and quick OWASP introduction&lt;br /&gt;
  12:10-13:10 Main presentation - &amp;quot;Web security for DevOps: the glory is in the headers&amp;quot; Jonathan Marcil&lt;br /&gt;
  13:10-... Open discussion and questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Logo-phero.gif‎|link=http://www.pheromone.ca/]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - June 18th - Gaps in the Clouds ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/gaps-in-the-clouds-by-robert-fritz]] [https://speakerdeck.com/owaspmontreal/gaps-in-the-clouds-by-robert-fritz See the slides / Voir la présentation] &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Robert Fritz&lt;br /&gt;
*'''ABSTRACT:''' Cloud technology offers agility and scaling, and a chance to break away from legacy IT choices.  Unfortunately, skipping traditional IT activities often results in poorly patched systems, out of date firewalls, and overprovisioned entitlements wielded by admins whose “day job” is development.  Boundaries of accountability and responsibility amongst cloud providers and consumers are confusing, vague, and shift, making security difficult to manage.  In such an environment, a “BP-spill” event, where cost wins over safely safety, is likely.  This talk will dive down into the cracks between the layers of cloud, and share some of the exciting dirt we have seen and expect to see in coming years.”&lt;br /&gt;
*'''BIO:''' Robert Fritz has been practicing security his entire career. Rob started as an Air Force lieutenant at Langley AFB and later at the Pentagon in Washington DC, building and managing classified networks. Finding he was getting too far from technology after a brief stint flying, he left the military to get back to the tech, and built security tools for HP in their HP-Unix lab.  Over time he found himself in more and more security design discussions, so co-authored HP’s Commercial Application Threat Analysis Methodology, building an internal consulting practice at HP.  This quantitative approach, led to two pending patents, an external-facing consulting practice, and his contributions to NIST IR-7502, the Common Configuration Scoring System (CVSS follow-on).  He is the former lead editor for the Center for Internet Security’s HP-UX Benchmark, and current lead for the Android Benchmark.  Robert now works for Morgan Stanley as global head of the Strategic Consulting team in the Security Architecture group, and leads the team’s cloud and social-media security practices.&lt;br /&gt;
*'''WHEN:''' June 18th 2014&lt;br /&gt;
*'''WHERE:''' 700 Rue Wellington, Floor 2, Montreal, QC H3C 3S4&lt;br /&gt;
*'''REGISTRATION:''' http://owaspmtl18junems.eventbrite.ca&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/gaps-in-the-clouds-by-robert-fritz&lt;br /&gt;
*'''EVENT SPONSOR:''' Morgan Stanley http://www.morganstanley.com/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:30 Networking and Morgan Stanley Hosted Pizza and Soft Drinks&lt;br /&gt;
  18:30-18:45 OWASP Chapter &amp;amp; Morgan Stanley Welcome&lt;br /&gt;
  18:45-19:45 Main presentation - &amp;quot;Gaps in the Clouds&amp;quot; Robert Fritz&lt;br /&gt;
  19:45-20:00 Open discussion and questions&lt;br /&gt;
  20:00-...   Optional, informal networking at Aziatic - 626 rue Marguerite-d'Youville, Montréal, QC H3C 1W7&lt;br /&gt;
&lt;br /&gt;
[[Image:Morgan_Stanley_Historical_Logo.png|link=http://www.morganstanley.com/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - May 26th - Récapitulatif des challenges NorthSec ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/P8_V3RI1Ru4]] [https://youtu.be/P8_V3RI1Ru4 Watch the conference / Regarder la conférence] &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''PRÉSENTATEUR PRINCIPAL:''' Laurent Desaulniers&lt;br /&gt;
*'''RÉSUMÉ:''' Solutions de la compétition en sécurité NorthSec 2014 sur les sujets de  XXE + SSRF, WAF Bypass, Xpath Injection, DOM Injection, HTTP Only Flag bypass et contournement de captchas. Une bonne façon d'apprendre sur ces failles que vous étiez ou non un participant de la compétition.&lt;br /&gt;
*'''MESSAGE DU PRÉSENTATEUR:''' Vous voyez Rao dans votre soupe? Vous voulez une solution pour un XSS avec des cookies http only? Les captchas illisibles sont un problème? Assistez à la présentation de l'OWASP!&lt;br /&gt;
*'''BIO:''' Laurent Desaulniers est un passionné de sécurité informatique. Il a présenté au Hackfest, au colloque RSI, à OWASP et est challenge designer à NorthSec. M. Desaulniers détient les certifications CISSP, CISM, CISA et OSCP.&lt;br /&gt;
*'''QUAND:''' 26 mai à 18h00&lt;br /&gt;
*'''OÙ:''' Local PK-1140 - Pavillon Président-Kennedy 201, Avenue du Président-Kennedy, J2X 3Y7&lt;br /&gt;
*'''INSCRIPTION:''' https://www.eventbrite.ca/e/owasp-montreal-26-mai-recapitulatif-des-challenges-northsec-tickets-11724413035&lt;br /&gt;
*'''WEBCAST:''' https://www.youtube.com/watch?v=P8_V3RI1Ru4&lt;br /&gt;
*'''ÉQUIPE ACADÉMIQUE''' AGEEI-UQAM - http://www.ageei.org/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
&lt;br /&gt;
 18:00-18:30 Réseautage&lt;br /&gt;
 18:30-18:35 Mot de bienvenue par le leader du chapitre (Jonathan M.)&lt;br /&gt;
 18:35-19:30 Présentation principale : Récapitulatif des challenges NorthSec&lt;br /&gt;
 19:30-20:00 Période de questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Ageeilogo.jpg|200px|link=http://www.ageei.org/]]&lt;br /&gt;
[[Image:2397_nsec_Logo_500-250.png|200px|link=http://nsec.io/]]&lt;br /&gt;
&lt;br /&gt;
== Networking with infosec communities - April 21st ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''RÉSUMÉ:''' En collaboration avec Montréhack, mtlsec et NorthSec, nous organisons une soirée réseautage dans un pub du centre-ville. Du plaisir garanti avec les membres de plusieurs communautés infosec de Montréal!&lt;br /&gt;
&lt;br /&gt;
*'''ABSTRACT:''' In collaboration with Montréhack, mtlsec and NorthSec, we are organizing a networking evening in a pub downtown. Fun guaranteed with the other security communities in Montreal!&lt;br /&gt;
&lt;br /&gt;
*'''QUAND:''' 21 Avril 2014&lt;br /&gt;
*'''WHEN:''' April 21st 2014&lt;br /&gt;
&lt;br /&gt;
*'''OÙ/WHERE:''' BENELUX - Brasserie Artisanale 245 Sherbrooke St W Montreal, QC H2X 1X7&lt;br /&gt;
&lt;br /&gt;
*'''INSCRIPTION/REGISTRATION:''' https://www.eventbrite.ca/e/montrehack-avril-april-northsec-pre-party-tickets-11232307133&lt;br /&gt;
&lt;br /&gt;
*'''PARTENAIRES/PARTNERS:''' Montréhack http://montrehack.ca/ - mtlsec http://blog.mtlsec.com/ - NorthSec https://www.nsec.io/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
  18:00-21:00 Networking&lt;br /&gt;
  21:00-23:59 Remember to drink responsibly!&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - March 27th - Panel Compétition en sécurité NorthSec ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Présentation sous forme de panel - venez poser vos questions!'''&lt;br /&gt;
&lt;br /&gt;
*'''RÉSUMÉ:''' Les compétitions de type Capture the Flag (CTF) sont un moyen pour les professionnels et amateurs de sécurité informatique de mettre leurs talents à l'épreuve. NorthSec est une compétition Montréalaise annuelle en sécurité appliquée, qui aura lieu cette année au Marché Bonsecours de Montréal le 25, 26 et 27 avril prochain. Elle vise à augmenter le niveau technique des professionnels de la sécurité au Québec, ainsi que de permettre à ses acteurs les plus talentueux de se démarquer.&lt;br /&gt;
*'''DÉTAILS:''' Le panel de jeudi, sous la forme d'un échange convivial entre les organisateurs de l'évènement et de ses participants, abordera des thèmes variés comme l'écriture de bon défis, l'infrastructure, la logistique, les inattendus, un bilan de 2013 et tout ça en passant par de savoureuses annecdotes (on l'espère). Venez en grand nombre toucher à ces légendes de la scène infosec montréalaise!&lt;br /&gt;
*'''PANÉLISTES:''' Gabriel Tremblay, François Proulx, Laurent Desaulniers, Stéphane Graber&lt;br /&gt;
*'''ANIMATEUR:''' Olivier Bilodeau&lt;br /&gt;
*'''QUAND:''' 27 mars 2014&lt;br /&gt;
*'''OÙ:''' Salle M-1510, École Polytechnique de Montréal, 2500 chemin de Polytechnique, Montréal (Québec) H3T 1J4, pavillon Lassonde&lt;br /&gt;
*'''INSCRIPTION:''' https://www.eventbrite.ca/e/owasp-montreal-27-mars-panel-competition-en-securite-northsec-tickets-10918436337&lt;br /&gt;
*'''ÉQUIPE ACADÉMIQUE:''' Polytechnique - Polyhack http://polyhack.org/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Mot de bienvenue par le leader du chapitre (Jonathan Marcil)&lt;br /&gt;
  18:30-20:00 Présentation principale : Panel NorthSsec&lt;br /&gt;
&lt;br /&gt;
[[Image:Polyhack.png‎‎|200px|link=http://polyhack.org/]]&lt;br /&gt;
[[Image:LogoPolytechnique.gif|link=http://www.polymtl.ca/]]&lt;br /&gt;
[[Image:2397_nsec_Logo_500-250.png|200px|link=http://nsec.io/]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - February 25th - Proven Strategies for Web Application Security ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/proven-strategies-for-web-application-security-by-justin-c-klein-keane]] [https://speakerdeck.com/owaspmontreal/proven-strategies-for-web-application-security-by-justin-c-klein-keane See the slides / Voir la présentation] &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Justin C. Klein Keane&lt;br /&gt;
*'''ABSTRACT:''' The rising dominance of the web as an application delivery platform has focused attacker attention squarely on the security of dynamic web applications. Application security is a complex, and shifting, field. Learn about tested and successful techniques to build safer applications, find flaws before they become vulnerabilities, and deploy applications that can detect, and resist attack.&lt;br /&gt;
*'''BIO:''' Justin C. Klein Keane is a security engineer and chapter leaders of OWASP in Philadelphia. For over a decade Justin has worked as a trainer, coder, and exploit developer. Justin is currently writing a book for NoStarch Press on hacking, speaks regularly at conferences, holds a masters degree in information technology from the University of Pennsylvania and is credited with hundreds of application vulnerability discoveries.&lt;br /&gt;
*'''WHEN:''' February 25th 2014&lt;br /&gt;
*'''WHERE:''' Ecole de technologie superieure, 1100 Notre-Dame Street West, Montreal, Room: A-1150&lt;br /&gt;
*'''REGISTRATION:''' http://owaspmtljan2014.eventbrite.ca&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/proven-strategies-for-web-application-security-by-justin-c-klein-keane&lt;br /&gt;
*'''ACADEMIC PARTNER:''' ETS - DCI http://dciets.com/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Welcome speech by Chapter Leader (Jonathan Marcil)&lt;br /&gt;
  18:30-20:00 Main session and open discussion: Proven Strategies for Web Application Security&lt;br /&gt;
  20:00-...   End of the meeting in a pub&lt;br /&gt;
&lt;br /&gt;
[[Image:Dciets.png‎‎‎|100px|link=http://dciets.com/]]&lt;br /&gt;
[[Image:Logo_ets.png|link=http://www.etsmtl.ca/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - January 28th - Latest trends in Mobile Security ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/8qPyKj4FKgY]] [https://youtu.be/8qPyKj4FKgY Watch the conference / Regarder la conférence] &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/latest-trends-in-mobile-security-by-francois-proulx]] [https://speakerdeck.com/owaspmontreal/latest-trends-in-mobile-security-by-francois-proulx See the slides / Voir la présentation] &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Francois Proulx&lt;br /&gt;
*'''ABSTRACT:''' Last AppSecUSA 2013 had a great line up of talks, especially regarding mobile applications. This session will be covering all the hottest presentations about mobile security by doing an overview from what see saw at AppSecUSA, all with some slides and snippets of presentations that was recorded at the event. Discussion will be encouraged within the audience as this will be more a dynamic event than a regular talk.&lt;br /&gt;
*'''BIO:''' François Proulx is a senior mobile application developer who has worked on dozens of iOS applications since the very beginning of the Apple iOS platform. Over the past few years he has switched his focus to security. He spends a lot of his free time participating in Capture the Flag events (CTFs) and organizing the NorthSec security competition.&lt;br /&gt;
*'''WHEN:''' January 28th 2014&lt;br /&gt;
*'''WHERE:''' UQAM Room PK-1705, Pavillon Président-Kennedy (the big boat at Place des Arts) - 201 Avenue du Président-Kennedy  J2X 3Y7&lt;br /&gt;
*'''REGISTRATION:''' http://owaspmtl-mobilesecurity.eventbrite.ca&lt;br /&gt;
*'''SLIDES/CONTENT:''' [http://www.youtube.com/playlist?list=PLQtB2ug5xmvaQ9jeRWV53-F_T555GQfhW YouTube playlist]&lt;br /&gt;
*'''SPONSOR:''' Academic partner AGEEI-UQAM - http://www.ageei.org/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Welcome speech by Chapter Leader (Jonathan M.)&lt;br /&gt;
  18:30-20:00 Main session and open discussion: Mobile Security&lt;br /&gt;
  20:00-...   End of the meeting in a pub&lt;br /&gt;
&lt;br /&gt;
[[Image:Ageeilogo.jpg|200px|link=http://www.ageei.org/]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Presentations For Download  ====&lt;br /&gt;
&lt;br /&gt;
[http://www.owasp.org/images/0/0d/20100209mstechdaysowaspasvssgiv01-12657916463819-phpapp02.ppt OWASP ASVS] by Sebastien Gioria (09/03/2010) &lt;br /&gt;
&lt;br /&gt;
[http://www.ph-il.ca/slides/afup__authetification_forte.pdf Authentification Forte] by Philippe Gamache (02/02/2010) &lt;br /&gt;
&lt;br /&gt;
[http://www.opensamm.org/downloads/OpenSAMM-1.0.ppt Software Assurance Maturity Model (OpenSAMM)] by Pravir Chandra (03/11/2009) &lt;br /&gt;
&lt;br /&gt;
[http://www.owasp.org/images/d/de/Owasp-montreal-sept-17h-2009-justin-foster.pdf Crossing the Border – Javascript Exploits] by Justin Foster (17/09/2009) &lt;br /&gt;
&lt;br /&gt;
[http://www.owasp.org/images/c/c2/ALaughRIAt.pdf A Laugh RIAt] by Rafal Los (07/04/2009) &lt;br /&gt;
&lt;br /&gt;
[https://www.owasp.org/images/e/eb/OWASP-Montreal-24022009-RobLabbe.pptx Microsoft Security Development Lifecycle for IT] by Rob Labbe (24/02/2009) &lt;br /&gt;
&lt;br /&gt;
[https://www.owasp.org/images/3/39/OWASP-Montreal-24022009-EN.pdf OWASP Goal and Top Ten 2007 for Managers - French version] by Benoit Guerette (24/02/2009)&lt;br /&gt;
&lt;br /&gt;
Newer presentations are available on [https://speakerdeck.com/owaspmontreal Speaker Deck]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Circle_owasp_logo_nowhitebackground.png|200px]]&lt;br /&gt;
&lt;br /&gt;
= OWASP Foundation / Mission OWASP    = &lt;br /&gt;
OWASP Foundation ([https://docs.google.com/a/owasp.org/presentation/d/10wi1EWFCPZwCpkB6qZaBNN8mR2XfQs8sLxcj9SCsP6c/edit?usp=sharing Overview Slides]) is a professional association of [[Membership | global members]] and is open to anyone interested in learning more about software security. Local chapters are run independently and guided by the [[Chapter_Leader_Handbook]].  As a [[About_OWASP | 501(c)(3)]] non-profit professional association your support and sponsorship of any meeting venue and/or refreshments is tax-deductible. Financial contributions should only be made online using the authorized online chapter donation button.  To be a &amp;lt;b&amp;gt;SPEAKER&amp;lt;/b&amp;gt; at ANY OWASP Chapter in the world simply review the [[Speaker_Agreement | speaker agreement]] and then contact the local chapter leader with details of what OWASP PROJECT, independent research or related software security topic you would like to present on.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;La fondation OWASP est une [https://www.owasp.org/index.php/Membership association de professionnels] et elle est ouverte à tout intervenant intéressé à en apprendre davantage sur la sécurité applicative. Les chapitres locaux (dont celui de Montréal) sont gérés de façon indépendante et selon un [https://www.owasp.org/index.php/Chapter_Leader_Handbook manuel de directives à respecter].   &lt;br /&gt;
Toute contribution financière au chapitre peut être faite en ligne en utilisant l’icône prévu à cet effet. Pour être conférencier au sein de n’importe quel chapitre à l’échelle mondiale, vous n’avez qu’à prendre connaissance du document [https://www.owasp.org/index.php/Speaker_Agreement &amp;quot;entente avec les conférenciers – speaker agreement&amp;quot;] et à joindre le responsable du chapitre Montréal avec un descriptif du sujet que vous aimeriez aborder et s’il est relié à un projet OWASP, à de la recherche indépendante ou encore le sujet en particulier, concernant la sécurité applicative, que vous souhaitez aborder.&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== [[Image:Circle_owasp_logo_nowhitebackground.png|128px]] Montreal OWASP Team == &lt;br /&gt;
&lt;br /&gt;
Scope of the team is to discuss and plan local activities and meetings &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Chapter Leaders ===&lt;br /&gt;
&lt;br /&gt;
* [mailto:anne.gauthier@owasp.org Anne Gauthier], President/Présidente&lt;br /&gt;
* [mailto:michel.bourque{at}owasp.org Michel Bourque], Chapter coordinator and marketing manager/Coordination et Marketing&lt;br /&gt;
* [mailto:hugo.genesse(at)owasp.org Hugo Genesse], Web content and production manager/Site internet et Production &lt;br /&gt;
* [mailto:olivier.arteau(at)owasp.org Olivier Arteau], Logistic manager/Logistique&lt;br /&gt;
&lt;br /&gt;
==== Chapter leader history ====&lt;br /&gt;
*2008-2010 - Benoit Guerette, founder and chapter leader&lt;br /&gt;
*2011-2012 - Philippe Gamache, chapter leader (vice chapter-leader since 2010)&lt;br /&gt;
*2013-2015 - Jonathan Marcil, chapter leader&lt;br /&gt;
*2016-... - Anne Gauthier, Michel Bourque, Marius Popescu, Hugo Genesse, Olivier Arteau&lt;br /&gt;
&lt;br /&gt;
==== Old board members ====&lt;br /&gt;
*Philippe Pépos Petitclerc&lt;br /&gt;
*Michael Robillard&lt;br /&gt;
*Benoit Guerette (logistics 2015)&lt;br /&gt;
*Alexandre Rimthong&lt;br /&gt;
*Mathieu Binette&lt;br /&gt;
*Sean Coates&lt;br /&gt;
*Jean-Marc Robert&lt;br /&gt;
*Philippe Blondin&lt;br /&gt;
*Benoit Guerette (founder)&lt;br /&gt;
*Laurent Desaulniers&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;headertabs/&amp;gt; &lt;br /&gt;
__NOTOC__ &lt;br /&gt;
[[Category:Canada]]&lt;/div&gt;</summary>
		<author><name>Svieg</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=Password_Storage_Cheat_Sheet&amp;diff=230438</id>
		<title>Password Storage Cheat Sheet</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=Password_Storage_Cheat_Sheet&amp;diff=230438"/>
				<updated>2017-06-06T19:12:46Z</updated>
		
		<summary type="html">&lt;p&gt;Svieg: /* Design password storage assuming eventual compromise */ typo&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt; __NOTOC__&lt;br /&gt;
&amp;lt;div style=&amp;quot;width:100%;height:160px;border:0,margin:0;overflow: hidden;&amp;quot;&amp;gt;[[File:Cheatsheets-header.jpg|link=]]&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| style=&amp;quot;padding: 0;margin:0;margin-top:10px;text-align:left;&amp;quot; |-&lt;br /&gt;
| valign=&amp;quot;top&amp;quot;  style=&amp;quot;border-right: 1px dotted gray;padding-right:25px;&amp;quot; |&lt;br /&gt;
Last revision (mm/dd/yy): '''{{REVISIONMONTH}}/{{REVISIONDAY}}/{{REVISIONYEAR}}''' &lt;br /&gt;
= Introduction  =&lt;br /&gt;
 __TOC__{{TOC hidden}}&lt;br /&gt;
&lt;br /&gt;
Media covers the theft of large collections of passwords on an almost daily basis. Media coverage of password theft discloses the password storage scheme, the weakness of that scheme, and often discloses a large population of compromised credentials that can affect multiple web sites or other applications. This article provides guidance on properly storing passwords, secret question responses, and similar credential information. Proper storage helps prevent theft, compromise, and malicious use of credentials.&lt;br /&gt;
Information systems store passwords and other credentials in a variety of protected forms. Common vulnerabilities allow the theft of protected passwords through attack vectors such as SQL Injection. Protected passwords can also be stolen from artifacts such as logs, dumps, and backups.&lt;br /&gt;
&lt;br /&gt;
Specific guidance herein protects against stored credential theft but the bulk of guidance aims to prevent credential compromise. That is, this guidance helps designs resist revealing users’ credentials or allowing system access in the event threats steal protected credential information. For more information and a thorough treatment of this topic, refer to the Secure Password Storage Threat Model here [http://goo.gl/Spvzs http://goo.gl/Spvzs].&lt;br /&gt;
&lt;br /&gt;
= Guidance =&lt;br /&gt;
&lt;br /&gt;
==  Do not limit the character set and set long max lengths for credentials ==&lt;br /&gt;
&lt;br /&gt;
Some organizations restrict the 1) types of special characters and 2) length of credentials accepted by systems because of their inability to prevent SQL Injection, Cross-site scripting, command-injection and other forms of injection attacks. These restrictions, while well-intentioned, facilitate certain simple attacks such as brute force.&lt;br /&gt;
&lt;br /&gt;
Do not allow short or no-length passwords and do not apply character set, or encoding restrictions on the entry or storage of credentials. Continue applying encoding, escaping, masking, outright omission, and other best practices to eliminate injection risks.&lt;br /&gt;
&lt;br /&gt;
A reasonable long password length is 160. Very long password policies can lead to DOS in certain circumstances[http://arstechnica.com/security/2013/09/long-passwords-are-good-but-too-much-length-can-be-bad-for-security/].&lt;br /&gt;
&lt;br /&gt;
== Use a cryptographically strong credential-specific salt ==&lt;br /&gt;
&lt;br /&gt;
A salt is fixed-length cryptographically-strong random value. Append credential data to the salt and use this as input to a protective function. Store the protected form appended to the salt as follows:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;[protected form] = [salt] + protect([protection func], [salt] + [credential]);&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Follow these practices to properly implement credential-specific salts:&lt;br /&gt;
&lt;br /&gt;
* Generate a unique salt upon creation of each stored credential (not just per user or system wide);&lt;br /&gt;
* Use cryptographically-strong random [*3] data;&lt;br /&gt;
* As storage permits, use a 32 byte or 64 byte salt (actual size dependent on protection function);&lt;br /&gt;
* Scheme security does not depend on hiding, splitting, or otherwise obscuring the salt.&lt;br /&gt;
&lt;br /&gt;
Salts serve two purposes: 1) prevent the protected form from revealing two identical credentials and 2) augment entropy fed to protecting function without relying on credential complexity. The second aims to make pre-computed lookup attacks [*2] on an individual credential and time-based attacks on a population intractable.&lt;br /&gt;
&lt;br /&gt;
== Impose infeasible verification on attacker ==&lt;br /&gt;
&lt;br /&gt;
The function used to protect stored credentials should balance attacker and defender verification. The defender needs an acceptable response time for verification of users’ credentials during peak use. However, the time required to map &amp;lt;code&amp;gt;&amp;lt;credential&amp;gt; → &amp;lt;protected form&amp;gt;&amp;lt;/code&amp;gt;  must remain beyond threats’ hardware (GPU, FPGA) and technique (dictionary-based, brute force, etc) capabilities.&lt;br /&gt;
&lt;br /&gt;
Two approaches facilitate this, each imperfectly.&lt;br /&gt;
&lt;br /&gt;
=== Leverage an adaptive one-way function ===&lt;br /&gt;
&lt;br /&gt;
Adaptive one-way functions compute a one-way (irreversible) transform. Each function allows configuration of ‘work factor’. Underlying mechanisms used to achieve irreversibility and govern work factors (such as time, space, and parallelism) vary between functions and remain unimportant to this discussion. &lt;br /&gt;
&lt;br /&gt;
Select:&lt;br /&gt;
&lt;br /&gt;
* '''Argon2'''[*7] is the winner of the [https://password-hashing.net/ password hashing competition] and should be considered as your first choice for new applications; &lt;br /&gt;
* '''PBKDF2''' [*4] when FIPS certification or enterprise support on many platforms is required;&lt;br /&gt;
* '''scrypt''' [*5] where resisting any/all hardware accelerated attacks is necessary but support isn’t.&lt;br /&gt;
* '''bcrypt''' where PBKDF2 or scrypt support is not available.&lt;br /&gt;
&lt;br /&gt;
Example protect() pseudo-code follows:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;return [salt] + pbkdf2([salt], [credential], c=10000); &amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Designers select one-way adaptive functions to implement protect() because these functions can be configured to cost (linearly or exponentially) more than a hash function to execute. Defenders adjust work factor to keep pace with threats’ increasing hardware capabilities. Those implementing adaptive one-way functions must tune work factors so as to impede attackers while providing acceptable user experience and scale. &lt;br /&gt;
&lt;br /&gt;
Additionally, adaptive one-way functions do not effectively prevent reversal of common dictionary-based credentials (users with password ‘password’) regardless of user population size or salt usage.&lt;br /&gt;
&lt;br /&gt;
==== Work Factor ====&lt;br /&gt;
&lt;br /&gt;
Since resources are normally considered limited, a common rule of thumb for tuning the work factor (or cost) is to make protect() run as slow as possible without affecting the users' experience and without increasing the need for extra hardware over budget. So, if the registration and authentication's cases accept protect() taking up to 1 second, you can tune the cost so that it takes 1 second to run on your hardware. This way, it shouldn't be so slow that your users become affected, but it should also affect the attackers' attempt as much as possible. &lt;br /&gt;
&lt;br /&gt;
While there is a minimum number of iterations recommended to ensure data safety, this value changes every year as technology improves. An example of the iteration count chosen by a well known company is the 10,000 iterations Apple uses for its iTunes passwords (using PBKDF2)[http://images.apple.com/ipad/business/docs/iOS_Security_May12.pdf](PDF file). However, it is critical to understand that a single work factor does not fit all designs. Experimentation is important.[*6]&lt;br /&gt;
&lt;br /&gt;
=== Leverage Keyed functions ===&lt;br /&gt;
&lt;br /&gt;
Keyed functions, such as HMACs, compute a one-way (irreversible) transform using a private key and given input. For example, HMACs inherit properties of hash functions including their speed, allowing for near instant verification. Key size imposes infeasible size- and/or space- requirements on compromise--even for common credentials (aka password = ‘password’).&lt;br /&gt;
Designers protecting stored credentials with keyed functions:&lt;br /&gt;
&lt;br /&gt;
* Use a single “site-wide” key;&lt;br /&gt;
* Protect this key as any private key using best practices;&lt;br /&gt;
* Store the key outside the credential store (aka: not in the database);&lt;br /&gt;
* Generate the key using cryptographically-strong pseudo-random data;&lt;br /&gt;
* Do not worry about output block size (i.e. SHA-256 vs. SHA-512).&lt;br /&gt;
&lt;br /&gt;
Example protect() pseudo-code follows:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;code&amp;gt;return [salt] + HMAC-SHA-256([key], [salt] + [credential]);  &amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Upholding security improvement over (solely) salted schemes relies on proper key management.&lt;br /&gt;
&lt;br /&gt;
== Design password storage assuming eventual compromise ==&lt;br /&gt;
&lt;br /&gt;
The frequency and ease with which threats steal protected credentials demands “design for failure”. Having detected theft, a credential storage scheme must support continued operation by marking credential data as compromised. It's also critical to engage alternative credential validation workflows as follows:&lt;br /&gt;
&lt;br /&gt;
# Protect the user’s account&lt;br /&gt;
## Invalidate authentication ‘shortcuts’ by disallowing login without 2nd factors, secret questions or some other form of strong authentication.&lt;br /&gt;
## Disallow changes to user accounts such as editing secret questions and changing account multi-factor configuration settings.&lt;br /&gt;
# Load and use new protection scheme&lt;br /&gt;
## Load a new, stronger credential protection scheme&lt;br /&gt;
## Include version information stored with form&lt;br /&gt;
## Set ‘tainted’/‘compromised’ bit until user resets credentials&lt;br /&gt;
## Rotate any keys and/or adjust protection function parameters such as work factor or salt&lt;br /&gt;
## Increment scheme version number&lt;br /&gt;
# When user logs in:&lt;br /&gt;
## Validate credentials based on stored version (old or new); if older compromised version is still active for user, demand 2nd factor or secret answers until the new method is implemented or activated for that user&lt;br /&gt;
## Prompt user for credential change, apologize, &amp;amp; conduct out-of-band confirmation&lt;br /&gt;
## Convert stored credentials to new scheme as user successfully log in&lt;br /&gt;
&lt;br /&gt;
= References=&lt;br /&gt;
&lt;br /&gt;
* [1] Morris, R. Thompson, K., Password Security: A Case History, 04/03/1978, p4: http://cm.bell-labs.com/cm/cs/who/dmr/passwd.ps&lt;br /&gt;
* [2] Space-based (Lookup) attacks: Space-time Tradeoff: Hellman, M., Crypanalytic Time-Memory Trade-Off, Transactions of Information Theory, Vol. IT-26, No. 4, July, 1980 http://www-ee.stanford.edu/~hellman/publications/36.pdf Rainbow Tables -http://ophcrack.sourceforge.net/tables.php&lt;br /&gt;
* [3] For example: [http://docs.oracle.com/javase/6/docs/api/java/security/SecureRandom.html SecureRandom.html].&lt;br /&gt;
* [4] Kalski, B., PKCS #5: Password-Based Cryptography Specification Version 2.0, IETF RFC 2898, September, 2000, p9 http://www.ietf.org/rfc/rfc2898.txt&lt;br /&gt;
* [5] Percival, C., Stronger Key Derivation Via Sequential Memory-Hard Functions, BSDCan ‘09, May, 2009 http://www.tarsnap.com/scrypt/scrypt.pdf&lt;br /&gt;
* [6] For instance, one might set work factors targeting the following run times: (1) Password-generated session key - fraction of a second; (2) User credential - ~0.5 seconds; (3) Password-generated site (or other long-lived) key - potentially a second or more.&lt;br /&gt;
* [7] Argon2 detailed specifications can be found here. https://password-hashing.net/argon2-specs.pdf&lt;br /&gt;
&lt;br /&gt;
= Authors and Primary Editors =&lt;br /&gt;
&lt;br /&gt;
John Steven - john.steven[at]owasp.org (author)&amp;lt;br/&amp;gt;&lt;br /&gt;
Jim Manico - jim[at]owasp.org (editor)&lt;br /&gt;
&lt;br /&gt;
== Other Cheatsheets ==&lt;br /&gt;
&lt;br /&gt;
{{Cheatsheet_Navigation_Body}}&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:Cheatsheets]]&lt;/div&gt;</summary>
		<author><name>Svieg</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=Montr%C3%A9al&amp;diff=230111</id>
		<title>Montréal</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=Montr%C3%A9al&amp;diff=230111"/>
				<updated>2017-05-30T04:35:56Z</updated>
		
		<summary type="html">&lt;p&gt;Svieg: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Welcome &amp;amp; Bienvenue to the OWASP Montréal chapter ==&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:OWASP-Montreal-Logo.png|Logo OWASP Montréal]]&lt;br /&gt;
&lt;br /&gt;
The OWASP Foundation was established in 2001 as an open community and software security resource. Since then, OWASP has grown to be globally recognized as a credible source for application security standards. &amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
OWASP is an open community dedicated to enabling organizations to conceive, develop, acquire, operate, and maintain applications that can be trusted. All of the OWASP tools, documents, forums, and chapters are free and open to anyone interested in improving application security. We advocate approaching application security as a people, process, and technology problem because the most effective approaches to application security include improvements in all of these areas. &amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
OWASP is open to anyone. Anyone can attend OWASP's vendor agnostic local chapter meetings, participate in regional and global conferences, and contribute to the many OWASP projects. And anyone can start a new project, form a new chapter, or lend their expertise to help an OWASP Global Committee.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt;On parle français aussi ! Le chapitre de Montréal organise plusieurs activités gratuites afin de partager les connaissances en sécurité applicative avec la communauté de développeurs et gestionnaires. Suivez-nous sur les réseaux sociaux pour connaître les dates des conférences du midi et des workshops !&amp;lt;/b&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Top documentation from OWASP includes: &lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/index.php/Top_10_2013-Top_10 OWASP TOP 10 : The Ten Most Critical Web Application Security Risks]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/images/3/33/OWASP_Application_Security_Verification_Standard_3.0.1.pdf OWASP ASVS : Application Security Verification Standard]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/images/5/52/OWASP_Testing_Guide_v4.pdf OWASP Testing Guide : Penetration Testing Framework ]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/images/7/78/OWASP_AlphaRelease_CodeReviewGuide2.0.pdf OWASP Code Review Guide : Source Code Analysis Framework ]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/index.php/OWASP_Cheat_Sheet_Series OWASP Cheat Sheet : Best practices guidelines for developers ]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org OWASP Global ]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Chapter Leaders / Responsables du chapitre ===&lt;br /&gt;
&lt;br /&gt;
* [mailto:anne.gauthier@owasp.org Anne Gauthier], President/Présidente&lt;br /&gt;
* [mailto:michel.bourque{at}owasp.org Michel Bourque], Chapter coordinator and marketing manager/Coordination et Marketing&lt;br /&gt;
* [mailto:hugo.genesse(at)owasp.org Hugo Genesse], Web content and production manager/Site internet et Production &lt;br /&gt;
* [mailto:olivier.arteau(at)owasp.org Olivier Arteau], Logistic manager/Logistique&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Special thanks to / Remerciements : &lt;br /&gt;
* Simon Lacasse, Web content / Site internet&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;b&amp;gt; Reach our chapter / Joindre le chapitre &amp;lt;/b&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Follow OWASP's Montreal chapter's activities through social medias, register to events, watch the previous presentations and more! &lt;br /&gt;
&lt;br /&gt;
Suivez les activités du chapitre OWASP Montréal via les réseaux sociaux, inscrivez-vous aux activités, visualisez les anciennes présentations et plus encore! &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;b&amp;gt;[http://lists.owasp.org/mailman/listinfo/owasp-montreal Click here] to join the local chapter mailing list.&lt;br /&gt;
&amp;lt;br/&amp;gt;[http://lists.owasp.org/mailman/listinfo/owasp-montreal Inscrivez-vous ici] à la liste de courriels du chapitre afin de recevoir les dernières nouvelles!&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Want to be part of the community ? &lt;br /&gt;
Devenez membre de notre communauté ! &lt;br /&gt;
[https://www.owasp.org/index.php/Membership_Map Click here / Cliquer ici]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Eb_press_little.gif‎|OWASP Montreal Eventbrite|link=http://owaspmontreal.eventbrite.ca/]] &lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[Image:Yt-brand-standard-logo-630px.png‎|128px|YouTube OWASP Montreal Channel|link=http://www.youtube.com/owaspmontreal]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]   &lt;br /&gt;
[[Image:Speakerdecklogo.png‎|Slides of OWASP Montreal on SpeakerDeck |link=https://speakerdeck.com/owaspmontreal]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Twitter-bird-cropped-onwhite.png|@owaspmontreal on Twitter|link=https://twitter.com/owaspmontreal]]&lt;br /&gt;
[[Image:FacebookSquareLogo.png|OWASP Montreal Facebook page|link=https://www.facebook.com/owasp.montreal]]&lt;br /&gt;
[[Image:LinkedinSquareLogo.png|OWASP Montreal on LinkedIn|link=https://www.linkedin.com/groups/1379007/profile]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
&lt;br /&gt;
== Sponsorship &amp;amp; Membership / Commandite &amp;amp; Adhésion ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Btn_donate_SM.gif|link=http://www.regonline.com/donation_1044369]] to this chapter or become a local chapter supporter.&lt;br /&gt;
&lt;br /&gt;
Or consider the value of [[Membership | Individual, Corporate, or Academic Supporter membership]]. Ready to become a member? [[Image:Join_Now_BlueIcon.JPG|75px|link=https://myowasp.force.com/]]&lt;br /&gt;
&lt;br /&gt;
[http://www.regonline.com/donation_1044369 Donnez] au chapitre ou devenez commanditaire du chapitre local! &lt;br /&gt;
&lt;br /&gt;
[https://myowasp.force.com/ Devenez membre !] Pour en savoir davantage sur les avantages d’une adhésion individuelle, corporative ou en tant qu’institution d’enseignement, [https://www.owasp.org/index.php/Membership cliquez ici]. &lt;br /&gt;
&lt;br /&gt;
[[Category:OWASP Chapter]]&lt;br /&gt;
&lt;br /&gt;
== Chapter Supporters / Commanditaires du chapitre ==&lt;br /&gt;
&lt;br /&gt;
[https://www.owasp.org/images/9/91/OWASP_Membership_Flyer_Montreal.png All details available here / Pour tous les détails ] [[File:Chapter-supporter-owasp-montreal.png|200px|link=https://www.owasp.org/images/9/91/OWASP_Membership_Flyer_Montreal.png]] &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Platinum / Platine ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Gosecure-2.png|GoSecure|link=http://www.gosecure.ca/]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[File:Desjardins2-400x400.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Gold / Or ===&lt;br /&gt;
&lt;br /&gt;
[[Image:ImmunioLogo.jpg|Immunio|link=https://www.immun.io/]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Lunch &amp;amp; Learn / Workshops 2017 =&lt;br /&gt;
&lt;br /&gt;
== HOW TO! Threat Modeling Toolkit ==&lt;br /&gt;
&lt;br /&gt;
[[Image:OWASPMtl-JonathanMarcil-1.jpg]]&lt;br /&gt;
[[Image:OWASPMtl-JonathanMarcil-3.jpg]]&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 May 23rd, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Shopify Montreal&lt;br /&gt;
&lt;br /&gt;
Threat Modeling is a great way to analyze security early in software development by structuring possible attacks, bad actors and countermeasures over a broad view of the targeted system. This talk will describe basic components of a threat model and how to use them effectively.&lt;br /&gt;
Threat Intelligence is where you gather knowledge about the environment and business assets to determine what are the actual threats. But how do you reconcile that with the current architecture in a useful manner?&lt;br /&gt;
The toolkit presented in this talk will enable you to systematically structure related information using graphical notations such as flow diagram and attack tree. In case you are wondering where to start in your organization, a quick lightweight risk rating methodology will also be proposed.&lt;br /&gt;
And in the end, you’ll see how we can all tie those together and get threat modeling to a point where it’s an efficient application security activity for communication. Doing this will prevent security reviews from missing important things even when chaos prevails during the realization of a project.&lt;br /&gt;
Modeling concepts will be demonstrated with an actual IoT device used as example.&lt;br /&gt;
Presentation will be done in english.&lt;br /&gt;
&lt;br /&gt;
Speaker Bio:&lt;br /&gt;
Jonathan Marcil is the former chapter leader of OWASP Montreal and is now Senior Application Security Engineer at Blizzard Entertainment in beautiful Orange County, California.&lt;br /&gt;
Jonathan has been involved with OWASP for many years and has been behind the Media Project which gathered and promoted AppSec conferences video content in the official OWASP YouTube channel. He was also part of NorthSec CTF event as a challenge designer specialized in Web and imaginative contraptions.&lt;br /&gt;
He is passionate about Application Security and enjoys architecture analysis, code review, threat modeling and debunking security tools. He holds a diploma in Software Engineering from ÉTS Montreal and has more than 15 years of experience in Information Technology and Security.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Merci à nos précieux commanditaires !&lt;br /&gt;
&lt;br /&gt;
== Security Testing: Unlocking the Benefits of a Hybrid Approach ==&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 April 24th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
As part of their defensive efforts, businesses commonly commission cybersecurity assessments of their web applications; with the aim of identifying any weaknesses in the security controls and ensuring a continually strong cybersecurity posture of their systems.&lt;br /&gt;
&lt;br /&gt;
The classical approach of either secure code review (white box) or penetration testing (black box) assessment have proven to be effective in securing of web applications. The new trend, however, is moving towards the combination of these two approaches; expert consensus is rapidly recognizing the advantages of using a hybrid approach. When applied properly, a hybrid approach can build on the strengths of both white and black box testing, while compensating for their individual shortcomings.&lt;br /&gt;
&lt;br /&gt;
In this presentation, we will examine the details of secure code review and penetration testing, and run demos to contrast their respective strengths and weaknesses. We will also examine why a hybrid approach can produce more complete and relevant assessment results. To conclude, we will cover proven approaches, and practical techniques, on how you can start leveraging a hybrid approach to web application assessments today.&lt;br /&gt;
&lt;br /&gt;
Anne Gauthier is an application security analyst at GoSecure. Anne is also the president of the Montreal Chapter of OWASP – the industry standard for web application security. With a penetration testing background, she specializes in secure code reviews and in helping companies to improve their software development lifecycle (SDLC) according to industry best practices. Anne is CSSLP, GWAPT and GSSP-JAVA certified. She obtained a Software Engineering bachelor’s degree from Ecole de Technologie Supérieure in Montréal and is now pursuing a Master of Engineering (MEng) degree in Information Systems Security at Concordia University. She is the author of the Project 201 Security blog.&lt;br /&gt;
&lt;br /&gt;
Merci à nos précieux commanditaires !&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;HOW-TO&amp;quot; NIGHT ! Tout sur les CTFs (Capture The Flag) ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 April 4th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Shopify&lt;br /&gt;
&lt;br /&gt;
Cette nouvelle soirée &amp;quot;How-To&amp;quot; Night d'OWASP Montréal vise à présenter les CTFs (une compétition Capture The Flag) et aider les équipes à démarrer et à continuer à évoluer dans leurs pratique de la cyber sécurité pratique. L'objectif est d'outiller les participants en leur fournissant des ressources techniques et des contacts afin de les aider à progresser.&lt;br /&gt;
&lt;br /&gt;
Les éléments discutés seront:&lt;br /&gt;
&lt;br /&gt;
- Composition optimale d’une équipe : Fonctionnement d’une équipe de CTF et les principaux rôles (chef d’équipe, cryptographie, application web, rétro ingénierie et les causes perdues).&lt;br /&gt;
&lt;br /&gt;
- Pourquoi faire des CTFs? Discussion sur les différents styles (jeopardy, attack/defense, etc.), quels sont les problèmes fréquemments rencontrés + plusieurs anecdotes intéressantes (et drôles).&lt;br /&gt;
&lt;br /&gt;
- Trucs de Mr. Unikoder : Le créateur du fameux site ringzer0team, soit un des plus gros sites pour apprendre la résolution de problèmes de CTF (https://ringzer0team.com/) Apprenez des trucs du meilleur, sur comment débuter et interpréter un challenge web, binaire et crypto avec des trucs réels du métier.&lt;br /&gt;
&lt;br /&gt;
Matériel requis :&lt;br /&gt;
&lt;br /&gt;
    Votre légendaire enthousiasme&lt;br /&gt;
&lt;br /&gt;
Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
&lt;br /&gt;
Places limitées. Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Shopify pour l'événement.&lt;br /&gt;
&lt;br /&gt;
Présentateurs :&lt;br /&gt;
&lt;br /&gt;
Charles Hamilton, Senior Consultant chez Mandiant, FireEye, Inc.&lt;br /&gt;
&lt;br /&gt;
Olivier Bilodeau, Cybersecurity Research Lead at GoSecure&lt;br /&gt;
&lt;br /&gt;
Laurent Desaulniers, Senior Security Solution Specialist at Bell Canada&lt;br /&gt;
&lt;br /&gt;
== NorthSec - Applied Security Event ==&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 April 4th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
NorthSec: La plus grande compétition et conférence en cyber sécurité au Canada&lt;br /&gt;
&lt;br /&gt;
NorthSec est un organisme sans but lucratif qui organise une conférence et une compétition de sécurité de type &amp;quot;Capture-The-Flag&amp;quot; (CTF) et des formations. Avec plus de 400 participants présents sur le site pour la compétition, c’est la plus grande compétition du genre au monde.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
La conférence, dans sa 3e année, attire des présentateurs internationaux avec du contenu technique exclusif. L’ajout des séances de travail (workshops) devrait plaire aux plus chevronnés des binaires.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Des formations de 3 jours sont offertes avant la conférence: &amp;quot;Advanced Web Application Security&amp;quot; par Philippe Arteau et &amp;quot;Malware and Memory Forensics&amp;quot; par Michael Ligh, co-auteur des livres &amp;quot;Malware Analyst Cookbook&amp;quot; et &amp;quot;The Art of Memory Forensics&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
NorthSec est situé au Marché Bonsecours dans le Vieux-Port de Montréal au printemps du 15 au 21 mai 2017.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
La présentation couvrira:&lt;br /&gt;
&lt;br /&gt;
- Le plan pour 2017&amp;lt;br/&amp;gt;&lt;br /&gt;
- Ce qui différencie NorthSec&amp;lt;br/&amp;gt;&lt;br /&gt;
- Comment équilibrer une compétition pour les débutants et les experts&amp;lt;br/&amp;gt;&lt;br /&gt;
- Comment bâtir une infrastructure basée sur les conteneurs qui gère 50 équipes dans quelques serveurs sans qu’ils ne se partagent de machines virtuelles&amp;lt;br/&amp;gt;&lt;br /&gt;
- Comment faire du pain au levain à grande échelle&amp;lt;br/&amp;gt;&lt;br /&gt;
- Présentation de quelques défis et solutions&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Les présentateurs:&lt;br /&gt;
&lt;br /&gt;
- Gabriel Tremblay, Président, Delve Labs&amp;lt;br/&amp;gt;&lt;br /&gt;
- Olivier Bilodeau, VP Formations, Co-fondateur MontréHack, GoSecure&amp;lt;br/&amp;gt;&lt;br /&gt;
- Pierre-David Oriol, VP Conférences, Delve Labs&amp;lt;br/&amp;gt;&lt;br /&gt;
- Benoit Guérette, VP Partenaires, Desjardins&amp;lt;br/&amp;gt;&lt;br /&gt;
- Laurent Desaulniers, Tisserand de drapeaux, Bell Canada&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Merci à nos précieux commanditaires !&lt;br /&gt;
&lt;br /&gt;
== Sécurité des applications : Les fondements ==&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 March 20th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
OWASP Montréal est fier d’accueillir au Midi Conférence du mois de mars, Mme Tanya Janca, Co-Leader du chapitre OWASP Ottawa et spécialiste de la sécurité applicative au sein du Gouvernement fédéral.&lt;br /&gt;
&lt;br /&gt;
La conférence « Les fondements de la sécurité des applications » sera présentée en anglais.&lt;br /&gt;
&lt;br /&gt;
Session Description : Everyone has heard about the problem; everyone is “getting hacked”. But what is the answer? From scanning your code with a vulnerability scanner to red teaming exercises, developer education programs and bug bounties, this talk will take the audience through all the possibilities of an extensive application security program, with a detailed explanation of each part.&lt;br /&gt;
&lt;br /&gt;
Bio : Tanya Janca is an application security evangelist, a web application penetration tester and vulnerability assessor, a secure code reviewer, an ethical hacker, the Co-Leader of the OWASP Ottawa chapter, and has been developing software since the late 90’s. She has worn many hats and done many things, including; Custom Apps, Ethical Hacking, COTS, Incident Response, Enterprise Architect, Project and People Management, and even Tech Support. She is currently helping the Government of Canada secure their web applications.&lt;br /&gt;
&lt;br /&gt;
Merci à notre commanditaire principal de cet événement: Ubitrak!&lt;br /&gt;
&lt;br /&gt;
== WORKSHOP ! Server Side Template Injection (SSTI) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-okiok-SSTI-r.jpg | WORKSHOP ! Server Side Template Injection (SSTI) ]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/workshop-server-side-template-injection-ssti]] [https://speakerdeck.com/owaspmontreal/workshop-server-side-template-injection-ssti See the slides / Voir la présentation]&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 22 Février 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Shopify Montréal&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
OWASP Montreal vous invite à un atelier portant sur la sécurité des applications web supportant les moteurs de template (Template Engine). Le principe de séparation entre la présentation du site (code HTML statique) et de son contenu dynamique facilite la création de documents HTML et la capacité à modifier l'apparence du site sans mélanger le traitement et le rendu de la page. L'utilisation de moteurs de template amène de nouveaux enjeux de sécurité. Les vulnérabilités de type Server Side Template Injection (SSTI) sont exploitables à travers les données (non fiables) fournies par l'utilisateur et conduisent à l'exécution de code arbitraire (RCE) sur le serveur hébergeant l'application web.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ce workshop a pour but d'introduire cette classe de vulnérabilité à travers différents cas d'implémentation (php, java, python).&lt;br /&gt;
Nous verrons comment identifier et exploiter ces vulnérabilités et de quelle manière un attaquant peut &lt;br /&gt;
s'y prendre pour exécuter du code arbitraire sur le serveur afin d'en prendre le contrôle.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Niveau : Intermédiaire&amp;lt;br/&amp;gt;&lt;br /&gt;
Matériel requis :&lt;br /&gt;
* Votre portable&lt;br /&gt;
* Votre distribution Linux/Unix de votre choix&lt;br /&gt;
* Votre proxy Web de votre choix&lt;br /&gt;
&lt;br /&gt;
Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
Places limitées. Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Shopify pour l'événement.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Présentateur : Gérôme Dieu&amp;lt;br/&amp;gt;&lt;br /&gt;
Gérôme Dieu cumule plus de 7 années d’expérience en technologies de l’information et en sécurité. &lt;br /&gt;
Il œuvre à titre de conseiller senior en sécurité de l’information au sein de la firme OKIOK. Ces dernières années, il a acquis une expertise dans le domaine de la sécurité des applications web aussi bien d'un point de vue offensif que défensif. En plus de réaliser des tests d’intrusion pour des clients internationaux, Gérôme s’implique dans la recherche et développement afin de maintenir à la fine pointe de la technologie les tests d'intrusion et d'analyse de vulnérabilités. &amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Merci à Shopify d'héberger l'événement !&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Shopify Logo-r.png| Shopify | link=https://www.shopify.com/]]&lt;br /&gt;
== Le courriel en 2017 – risques et menaces pour tous ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Zero spam 2.jpg|Le courriel en 2017 – risques et menaces pour tous]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://www.youtube.com/watch?v=HX2vcijcCWw ]] [https://www.youtube.com/watch?v=HX2vcijcCWw Watch the conference / Regarder la conférence ]&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 Le 23 janvier 2017 à midi&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
Monsieur Poellhuber nous brossera un tableau du phénomène grandissant du rançongiciels et de l'hameçonnage, personnification.&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
- Par les années passées, la menace courriel se résumait principalement en un fort volume de contenu simplement indésirable. Aujourd’hui la menace a passablement évolué. Quels sont les véritables risques actuels associés au courriel ? Rançongiciels, hameçonnage, personnification. Cette conférence présentera les nouveaux défis de sécurité pour les organisations qui doivent composer avec des attaques de plus en plus sophistiquées et de plus en plus ciblées tout en protégeant leur réputation. Des exemples biens réels, drôles et moins drôles seront disséqués pour bien dessiner l’ampleur de l’enjeu.&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
M. David Poellhuber, Chef de l’exploitation, ZEROSPAM Sécurité Inc&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note biographique :&amp;lt;br/&amp;gt;&lt;br /&gt;
Monsieur David Poellhuber oeuvre dans l’industrie de la sécurité informatique depuis quinze ans. Il a été conférencier dans plusieurs forums de sécurité au Canada et est maintenant reconnu comme une autorité en matière de sécurité du courriel. Il a fondé ZEROSPAM Sécurité en 2003, le premier service Québécois externalisé de sécurité du courriel infonuagique qui se distingue par sa convivialité, son efficacité et ses technologies de détection proactives.&amp;lt;br/&amp;gt;&lt;br /&gt;
Audience :  Généralistes et spécialistes de la sécurité des TI &lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Merci à Ubitrack pour le repas et à Desjardins d'héberger l'événement!&lt;br /&gt;
&lt;br /&gt;
[[Image:Ubitrak-r2.jpg|Ubitrak|link=http://www.ubitrak.com/fr/]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&lt;br /&gt;
== Effective XSS Mitigation ==&lt;br /&gt;
&lt;br /&gt;
[[Image:XSS mitigation.jpg | Effective XSS Mitigation ]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=http://slides.com/olivierarteau/xss-mitigation ]] [http://slides.com/olivierarteau/xss-mitigation See the slides / Voir la présentation]&lt;br /&gt;
&lt;br /&gt;
WHEN &lt;br /&gt;
 18 Janvier 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Google Montréal&lt;br /&gt;
&lt;br /&gt;
FRANÇAIS/ENGLISH&amp;lt;br/&amp;gt;&lt;br /&gt;
La mitigation de XSS a été un sujet important au cours des dernières années. Les navigateurs ont implémenté, en autre, deux fonctionnalités pour mitiger leur impact : l'entête &amp;quot;XSS-Protection&amp;quot; et l'entête &amp;quot;Content-Security-Policy&amp;quot;. Par contre, obtenir une mitigation contre les XSS efficace est souvent plus complexe que l'on pense. Cet atelier couvrira les deux entêtes. Il expliquera comme il est possible de contourner ces protections et ce qu'il est possible de faire pour se protéger. Des exercices de type &amp;quot;offensif&amp;quot; et &amp;quot;défensif&amp;quot; seront proposés.&lt;br /&gt;
Mitigation for XSS as been an important topic in the last few years. Browsers have implemented two main functionalities to help mitigate the impact of XSS : the &amp;quot;XSS-Protection&amp;quot; header and the &amp;quot;Content-Security-Policy&amp;quot; header. But, getting an effective XSS mitigation of those headers is trickier than it may seem. This workshop will cover both of those headers. It will explain how bypass of those protection work and what you can do about it. It will have both &amp;quot;defensive&amp;quot; exercises and &amp;quot;offensive&amp;quot; exercises.&lt;br /&gt;
Niveau : débutant/intermédiaire&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Matériel requis :&lt;br /&gt;
&lt;br /&gt;
Votre portable&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
&lt;br /&gt;
Places limitées. Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Google pour l'événement.&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Présentateur : Olivier Arteau&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Olivier Arteau est un professionnel en sécurité informatique depuis quelques années et fait partie de l’équipe de test d’intrusion de Desjardins. Il est aussi un amateur de CTF qui a gagné à plusieurs reprises le CTF du NorthSec avec l’équipe HackToute et participe fréquemment à d’autres CTF avec l’équipe DCIETS.&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Merci à Google d'héberger l'événement! &lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-zap-4-r.jpg | Google | link=https://www.google.ca/ ]]&lt;br /&gt;
&lt;br /&gt;
= Lunch &amp;amp; Learn / Workshops 2015-2016 =&lt;br /&gt;
&lt;br /&gt;
== WORKSHOP ! Top 10 OWASP - Unleash the threats ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-top10.jpg | WORKSHOP! Top 10 OWASP - Unleash the threats ]]&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 30 novembre 2016 de 17h30 à 20h30&lt;br /&gt;
WHERE&lt;br /&gt;
 Immunio @ WeWork&lt;br /&gt;
&lt;br /&gt;
De nos jours, la sécurité applicative est essentielle dans l’écosystème des entreprises de toutes tailles. Les vecteurs d’attaques sont multiples, les vulnérabilités de sécurité dans les applications peuvent être désastreuses et les impacts d’un « Hack » peuvent être irréversibles pour l’entreprise; vols de données sensibles, perte de réputation, perte de $$$$$, etc.&lt;br /&gt;
L’objectif du workshop est de comprendre la base sur les vulnérabilités de sécurité dans les applications et les techniques d’exploitation utilisées par les pirates informatiques, en plus de connaître les bonnes pratiques de développement en matière de sécurité applicative. &lt;br /&gt;
Avec l'aide de WebGoat, Damn Vulnerable Web Application et de Kali Linux, vous pourrez participer&lt;br /&gt;
à l'exploitation des applications et découvrir les techniques utilisées par les attaquants.&lt;br /&gt;
&lt;br /&gt;
Niveau : débutant&lt;br /&gt;
&lt;br /&gt;
Matériel requis :&lt;br /&gt;
 Votre portable&lt;br /&gt;
 Kali Linux&lt;br /&gt;
 La VM du workshop, envoyée aux participants&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
&lt;br /&gt;
Places très limitées (nb = 10). Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Immunio &amp;amp; WeWork pour l'événement.&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Présentateur : Christian Leclerc&lt;br /&gt;
&lt;br /&gt;
Christian est spécialisé en conception et développement de solutions web sécuritaires. Tout au long de sa carrière, il a acquis une vaste expertise sur plusieurs types de technologies et méthodologies, intégré la sécurité dans le cycle de développement d’applications, effectué des revues de code sécurité, déployé des outils d’analyse des vulnérabilités et mis en place des systèmes d’authentification. De plus, il a participé à la conception et au développement de solutions sécuritaires de pointe comme la signature électronique à l’aide d’une infrastructure à clé publique (PKI), les authentifications fortes, le Registre des consentements au don d'organes et de tissus (RDOQ.org) et la migration de plusieurs applications web vers un environnement SOA (Service Oriented Architecture). &lt;br /&gt;
&amp;lt;br&amp;gt;Merci à Immunio &amp;amp; WeWork d'héberger l'événement!&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:Immunio-horizontal-r.png|Immunio|link=https://www.immun.io/]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[Image:Wework-r.jpg|WeWork|link=https://www.wework.com/]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Histoire d'un Hack ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Histoire-dun-hack-r.jpg | Histoire d'un Hack ]]&lt;br /&gt;
&lt;br /&gt;
WHEN &lt;br /&gt;
 21 novembre 2016 à midi&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
Pour son activité du mois de novembre, OWASP Montréal propose à la communauté de la sécurité des TI et aux gestionnaires de faire l'autopsie d'une attaque de haute voltige sur un site web et des outils mis à la disposition par OWASP.&lt;br /&gt;
 &lt;br /&gt;
Bernard Bolduc cumule plus de 17 années d’expérience en technologies de l’information et en sécurité. Il œuvre à titre de conseiller senior en sécurité de l’information au niveau d’entreprise de classe nationale et internationale.&lt;br /&gt;
 &lt;br /&gt;
Bernard se spécialise en sécurité Unix, applicative et en gestion de la sécurité des télécommunications. Il combine ces expertises techniques afin d’obtenir des résultats probants et efficaces pour ces clients des secteurs bancaire, télécommunication et multimédias, de l’énergie ou des services publiques. Tout au long de sa carrière, Bernard s’est toujours maintenu à jour sur les dernières menaces de sécurité technologique et commerciale en assistant à des formations spécialisées et d'échanger avec un grand nombre de partenaires dans l'industrie de la sécurité.&lt;br /&gt;
 &lt;br /&gt;
La conférence débute à midi.&lt;br /&gt;
 &lt;br /&gt;
La conférence vous donne droit à 1 CPE et pour les 50 premières personnes, un lunch gratuit.&lt;br /&gt;
 &lt;br /&gt;
Merci à Desjardins d'héberger l'événement!&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Workshop ! Création de votre première extension OWASP ZAP (ou BurpSuite) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-zap-mix.jpg | Workshop ! Création de votre première extension OWASP ZAP (ou BurpSuite)]]&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 11 novembre 2016 de 18h à 21h&lt;br /&gt;
&lt;br /&gt;
WHERE &lt;br /&gt;
 Google Montréal&lt;br /&gt;
&lt;br /&gt;
OWASP Zed Attack Proxy (ZAP) est un scanneur de vulnérabilités et un outil de débogage HTTP. Ce type d'outil est crucial dans un test d'intrusion web et contient un lot intéressant de fonctionnalités. Cela dit, il est possible d'étendre les fonctionnalités. Plusieurs types d'extension sont possibles : vue alternative pour les requêtes ou les réponses, scanneur passif des réponses, scanneur actif produisant des requêtes, etc.&lt;br /&gt;
&lt;br /&gt;
Plusieurs options seront données, par exemple :&lt;br /&gt;
&lt;br /&gt;
 Détection automatique de flag dans les sources&lt;br /&gt;
 Scanneur actif asynchrone DNS&lt;br /&gt;
 Ou votre propre idée&lt;br /&gt;
&lt;br /&gt;
Pour chacune des suggestions, des squelettes de code seront fournis pour les APIs de ZAP. Pour les utilisateurs de BurpSuite, des directives analogues seront également données.&lt;br /&gt;
&lt;br /&gt;
Niveau : débutant / intermédiaire&lt;br /&gt;
&lt;br /&gt;
Matériel requis&lt;br /&gt;
&lt;br /&gt;
 Votre portable&lt;br /&gt;
 [https://www.owasp.org/index.php/OWASP_Zed_Attack_Proxy_Project OWASP ZAP (gratuit)]&lt;br /&gt;
 [https://portswigger.net/burp/download.html BurpSuite]&lt;br /&gt;
 Éditeur de code pour Java, Python ou Ruby&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Présentateur : Philippe Arteau&lt;br /&gt;
&lt;br /&gt;
Philippe est un chercheur en cybersécurité chez GoSecure. Il est l'auteur de l'outil d'analyse statique Java &amp;quot;Find Security Bugs&amp;quot;. Il a découvert des vulnérabilités importantes dans les logiciels populaires tels que Google Chrome, Dropbox, Paypal, RunKeeper et Jira. Il a présenté dans différentes conférences incluant Black Hat USA, Black Hat Europe, ATL Sec Con, NorthSec, Hackfest (QC) et JavaOne. Il a développé de nombreux plug-ins pour les outils de proxy BurpSuite et OWASP ZAP (Retire.js, Reissue Request Script, PDF preview et Image Metadata). Il a fait également des contributions à d'autres plug-ins comme J2eeScan.&lt;br /&gt;
&lt;br /&gt;
Merci à Google d'héberger l'événement! &lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-zap-4-r.jpg | Google | link=https://www.google.ca/ ]]&lt;br /&gt;
&lt;br /&gt;
==Logiciel de rançon (Ransomware) s'attaque au domaine de la santé==&lt;br /&gt;
&lt;br /&gt;
[[Image:HackingHealth-2.jpg | Logiciel de rançon (Ransomware) s'attaque au domaine de la santé ]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/ransomware-and-healthcare-hacking-health ]] [https://speakerdeck.com/owaspmontreal/ransomware-and-healthcare-hacking-health See the slides / Voir la présentation]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;(Conférence en anglais)&lt;br /&gt;
Pour le lancement de la saison 2016 - 2017, OWASP Montréal propose à la communauté de la sécurité des TI et aux gestionnaires de la santé une incursion dans le monde du logiciel malveillant ciblant le domaine de la santé.&amp;lt;br/&amp;gt;&lt;br /&gt;
Cette conférence s'intége dans le Coopérathon co-organisé par le Mouvement Desjardins et Hacking Health.&amp;lt;/b&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Le domaine de la santé serait devenu une cible privilégiée des campagnes de ransomware parce que l'industrie a souvent payé la rançon demandée pour récupérer les données confidentielles et vitales de ses clients. Monsieur Ed Gershfang nous brossera un portrait du phénomène et des meilleures pratiques à mettre en place en matière de sécurité applicative.&lt;br /&gt;
Ed Gershfang possède une expérience solide dans l'infrastructure informatique et plus de 6 ans d'expérience dans les domaines de la sécurité de l'information, de la vulnérabilité, de la gouvernance et de la gestion des risques. Il était directeur de la sécurité pour la société PeriGen, un chef de file de développement de logiciels médicaux en Israël.&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== La sécurité applicative vue par un pentesteur ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Juin2016-OWASPMtl.jpg | OWASP Montréal reçoit Mario Contestabile, Pentester de renom ]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
From Left to Right : Isabelle Lusseyran, Head of Development at Hacking Health. Eduard Gershfang Information Security Analyst at WSP | Parsons Brinckerhoff.&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/owasp-montreal-recoit-mario-contestabile ]] [https://speakerdeck.com/owaspmontreal/owasp-montreal-recoit-mario-contestabile See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Pour clore la saison 2015 – 2016, OWASP Montréal est fier d’accueillir au Midi Conférence un des architectes de renom du développement applicatif au Canada, monsieur Mario Contestabile.&lt;br /&gt;
En tant qu’auteur de plusieurs centaines de tests d’intrusion, il connait tous les rouages de ce qu’est véritablement une application Web «sécurisée». Mais avez-vous déjà remarqué que les rapports de tests d’intrusion mentionnent rarement, voir jamais : «Votre site est très difficile à pirater. Félicitations !» ?&lt;br /&gt;
Et qu’en est-il de ces rapports qui contiennent des dizaines de soi-disant vulnérabilités ? Est-ce que cela signifie d’emblée que l’application devrait être mise hors ligne ?  &lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Lors de cette conférence, nous examinerons des rapports concrets (ambigus) de vulnérabilités et nous les analyserons afin de mieux comprendre si elles représentent une véritable menace, ou si elles ne servent qu’à «remplir» les rapports.&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Avec son expertise en protection et en attaque d’applications Web, il abordera les points suivants :&lt;br /&gt;
Comment pouvez-vous sélectionner des systèmes de façon à mieux exécuter des protections de sécurité ?&lt;br /&gt;
Éviter certains pièges dans votre application Web qui rendent les attaques plus faciles et la protection plus difficile.&lt;br /&gt;
De nos jours, que peuvent faire les développeurs à l’intérieur de systèmes communs, qui puisse me rendre la tâche plus ardue en tant que « hacker »?&lt;br /&gt;
Pouvons-nous exiger de meilleurs rapports de la part des firmes de sécurité?&lt;br /&gt;
À quoi devrions-nous nous attendre de la part d’un « pentesters »?&lt;br /&gt;
Comment pouvons-nous savoir si le « pentester » a vérifié les failles de l’application et qu’il n’a pas simplement utilisé un scanneur?&lt;br /&gt;
Et enfin, comment pouvons-nous aider les « ethical hackers » à obtenir un meilleur rendement lors d’un test d’intrusion?&lt;br /&gt;
Il expliquera le sujet en détails, et ensemble, nous verrons de quelles façons les développeurs d’applications peuvent exploiter le savoir-faire des « pentesters », et comment nous pouvons faire en sorte qu’une application Web soit protégée.&lt;br /&gt;
Biographie :&lt;br /&gt;
Mario Contestabile est reconnu comme l’un des experts en sécurité les plus réputés au Canada. Son expertise, construire et protéger votre plateforme applicative. Ancien développeur C++ et Java, Mario partage ses nombreuses connaissances en « ethical hacking » et en développement de codes sécurisé.  &lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Tuesday, 14 June 2016 from 12:00 PM to 1:00 PM (EDT) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Comment protéger les applications mobiles? ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Avril2016-OWASPMtl.png | Comment protéger les applications mobiles? ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/comment-proteger-les-applications-mobiles ]] [https://speakerdeck.com/owaspmontreal/comment-proteger-les-applications-mobiles See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Dans le cadre des Midis Conférence à l'Espace Desjardins, l'équipe OWASP Montréal vous invite à assister à une présentation sur les vulnérabilités les plus communes associées aux appareils mobiles. &lt;br /&gt;
Marie-Claire Willig détaillera entre autres comment stocker de façon sécuritaire les données de l’application mobile ainsi que protéger l’application contre des attaques externes. Des outils simples vous seront dévoilés pour détecter ces vulnérabilités.&lt;br /&gt;
Marie-Claire est une professionnelle d'expérience en sécurité appliquée.&lt;br /&gt;
Une grande partie de son intérêt professionnel réside actuellement dans un domaine assez niche, soit la revue de code sécuritaire, un fondement important de tout cycle de développement sécuritaire en entreprise.&lt;br /&gt;
Au sein de l'équipe de sécurité technologique Desjardins, elle est, en autre, responsable de former les développeurs (Java et .NET principalement) afin de les sensibiliser aux meilleures pratiques de développement sécuritaire.&lt;br /&gt;
Également, elle est une professionnelle des tests d'intrusion sur les applications web, les applications mobiles ainsi que l'infrastructure réseau.&lt;br /&gt;
Bienvenue à tous&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 20 April 2016 from 12:15 PM to 1:00 PM (EDT) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== NorthSec, Le plus gros événement de cybersécurité appliquée au Canada ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Mars2016-OWASPMtl.jpg | NorthSec, Le plus gros événement de cybersécurité appliquée au Canada ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/YQtvltQYs7Y]] [https://youtu.be/YQtvltQYs7Y Watch the conference / Regarder la conférence] &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
OWASP Montréal est fier d’inviter au Midi Conférence de mars, NorthSec est le plus gros événement de sécurité appliquée au Canada qui comprend deux jours de formation, deux jours de conférences ainsi qu’une compétition du genre « capture the flag » (CTF) de trois jours.&lt;br /&gt;
Gabriel Tremblay, Benoit Guerette, Pierre-David Oriol et Laurent Desaulniers viendront vous parler de cet organisme sans but lucratif dynamique qui est géré par une équipe de bénévoles passionnés qui donnent à chaque année leur énergie et leur temps pour soutenir la communauté de la sécurité de l’information.&lt;br /&gt;
Le volet compétition, l’épreuve maîtresse, est présentée sous forme d’un scénario qui rend cohérent une centaine de défis techniques. Les équipes de participants attaquent l’infrastructure de compétition pour soutirer des drapeaux (flags) à travers un ensemble de vulnérabilités présentes comme de l’injection SQL, des XSS ou encore l’exploitation d’exécutables sur systèmes embarqués. Quelques exemples de défis des années passées seront également présentés.&lt;br /&gt;
Le volet conférence, qui est à sa 2ème année, met de l’avant plusieurs présentations techniques touchant la sécurité applicative mais aussi l’éthique et leurs impacts sociaux. Certaines présentations confirmées seront dévoilés.&lt;br /&gt;
Le tout nouveau volet formation propose deux formations en sécurité applicative de calibre international (anglais) : “Advanced Web Security Testing with Burp Pro” et “Modern Object-Oriented Malware Reverse Engineering”.&lt;br /&gt;
Venez aussi, découvrir comment l'équipe est partie d'une idée en 2012 pour se rendre à un évènement d'envergure, qui rassemblera plus de 600 professionnels, étudiants et autres passionnés de sécurité appliquée lors de la 4ème édition qui aura lieu du 17 au 22 mai 2016 au Marché Bonsecours.&lt;br /&gt;
Finalement, la mission, la vision ainsi que les activités sociales de la semaine de NorthSec sont aussi au menu de cette présentation qui sera suivie d’une période de questions.&lt;br /&gt;
&lt;br /&gt;
Gabriel Tremblay, Delve Labs, Président&lt;br /&gt;
Benoit Guerette, Desjardins, VP Finances&lt;br /&gt;
&lt;br /&gt;
Pierre-David Oriol, Delve Labs, VP Conférence&lt;br /&gt;
Laurent Desaulniers, Bell Canada, Artisant de drapeaux&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 23 March 2016 from 12:00 PM to 1:00 PM (EDT) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== La sécurité applicative et l'hameçonnage - February 24th ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Fevrier2016-OWASPMtl.jpg | La sécurité applicative et l'hameçonnage ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/1RYlOiIENjQ]] [https://youtu.be/1RYlOiIENjQ Watch the conference / Regarder la conférence] &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
De nos jours, une des méthodes les plus efficaces pour contourner les périmètres de sécurité externes est l'hameçonnage conjointement avec l’abus de certaines technologies Web.&lt;br /&gt;
&lt;br /&gt;
Dans le cadre ses activités, OWASP Montréal est heureux d'inviter d'accueillir, l'équipe OKIOK qui présentera les impacts liés à ce type d'attaque, tel que vu et expérimenté en entreprise ainsi que les plans d'action pour traiter ces risques. La présentation abordera aussi bien la sécurité web et applicatives, des systèmes informatiques ainsi que de la sécurité physique de centres de données. &lt;br /&gt;
&lt;br /&gt;
    Capture d'informations sensibles par imitations de portails Web ;&lt;br /&gt;
    Authentification Web par 2-facteurs ;&lt;br /&gt;
    Injection SMTP dans des formulaires Web ;&lt;br /&gt;
    Attaque de type “Drive-by-download”;&lt;br /&gt;
    Prise de contrôle à distance à travers des flux HTTP;&lt;br /&gt;
    Attaque de CSRF à partir de courriels ;&lt;br /&gt;
    Attaque d'hameçonnage basée sur des achats par Internet (ex : PayPal).&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
When&lt;br /&gt;
 Wednesday, 24 February 2016 from 12:00 PM to 1:15 PM (EST) - Add to Calendar &lt;br /&gt;
Where&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest Montreal, Quebec CA&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Internet of {Things, Threats} - January 20th ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Janvier2016-OWASPMtl-R.png | Internet of {Things, Threats} ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=http://gosecure.github.io/presentations/2016-01-20_owasp-mtl/internet-of-threats.html ]] [http://gosecure.github.io/presentations/2016-01-20_owasp-mtl/internet-of-threats.html See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
De plus en plus de périphériques se retrouvent connectés sur Internet. Sous la bannière &amp;quot;Internet of Things&amp;quot; (IoT) ces équipements, que ce soit une pompe à insuline ou un système de caméra de sécurité, tournent généralement sous un système GNU/Linux embarqué d'architecture MIPS ou ARM. La difficulté de mettre à jour ces équipements ainsi que le peu d'effort mis dans la sécurité des systèmes ou la sécurité applicative en font des cibles de choix. Ces derniers mois, nous avons analysé plusieurs logiciels malveillants ciblant ces architectures. Que ce soit par l'exploitation d'une vulnérabilité (Shellshock) ou encore un défaut de configuration, ces systèmes exposés sur Internet peuvent être compromis.&lt;br /&gt;
&lt;br /&gt;
Notre présentation couvrira quelques une de ces analyses:&lt;br /&gt;
&lt;br /&gt;
* Linux/Moose, un malware se propageant automatiquement qui fraude les réseaux sociaux (par exemple Facebook, Twitter et YouTube)&lt;br /&gt;
* LizardSquad et acteurs étrangers qui utilisent des systèmes embarqués compromis pour réaliser des dénis de service distribué (DDoS) &lt;br /&gt;
* Win32/RBrute est un logiciel malveillant qui tente de changer les paramètres de routeurs dans le but de faire du &amp;quot;DNS poisoning&amp;quot;. Il a été distribué par le populaire botnet Sality.&lt;br /&gt;
* Un kit d'exploits qui utilise seulement le navigateur de leur victime avec le même objectif, c'est-à-dire faire du &amp;quot;DNS poisoning&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Enfin, des conseils seront proposés à l'audience pour l'aider à se protéger de ces menaces.&lt;br /&gt;
&lt;br /&gt;
'''Thomas Dupuy''' (twitter: @nyx__o)&lt;br /&gt;
&lt;br /&gt;
Thomas est chercheur en logiciel malveillant chez ESET Canada Recherche. Bon vivant, Thomas déjeune en &amp;quot;reversant&amp;quot; des binaires, contribue à quelques projets open source durant le diner (yara, yara rules, pefile, APTnotes) et la nuit participe à des &amp;quot;Hacking Games&amp;quot; (Capture The Flag). Curieux de nature Thomas analyse des malware aux architectures &amp;quot;exotiques&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Olivier Bilodeau''' (twitter: @obilodeau)&lt;br /&gt;
&lt;br /&gt;
Olivier Bilodeau is the head of Cybersecurity Research at GoSecure a consultancy firm specializing in cybersecurity services for the public and private sector. With more than 10 years of infosec experience, Olivier worked on Unix servers at Bell Canada, managed a portion of Air Canada's network, wrote open source network access control software at Inverse and worked as a Malware Researcher at ESET. He likes to reverse engineer everything that crosses his path, participate in information security capture-the-flag competitions, hack open source code and brew beer. He has spoken at various conferences (Defcon, Botconf, VirusBulletin, Derbycon, ...), used to lecture on information security at ETS University in Montreal, drives the NorthSec Hacker Jeopardy and co-organizes the MontreHack capture-the-flag training initiative. His primary research interests include reverse-engineering tools, Linux and/or embedded malware and honeypots.&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Survivre aux attaques DDOS applicatives ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Decembre2015-OWASPMtl.jpg | Survivre aux attaques DDOS applicatives ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Survivre aux attaques DDOS (Distributed Denial-Of-Service) applicatives.&lt;br /&gt;
Cette conférence s'adresse aux professionnels et gestionnaires des TI.&lt;br /&gt;
Conférencier : Christian Shink, ing., CSSLP, ingénieur système chez Radware, manufacturier spécialisé dans la prévention des attaques DDOS. Il fut également consultant en sécurité applicative chez In Fidem.&lt;br /&gt;
Objectifs de la conférence:&lt;br /&gt;
Présenter les tendances actuelles en matière d'attaques DDOS applicatives.&lt;br /&gt;
Renseigner les participants sur les techniques et stratégies pour contrer ces attaques illustrées à partir de cas vécus.&lt;br /&gt;
Démystifier certains mythes en ce qui concernent les façons efficaces de protéger les applications contre des attaques DDOS.&lt;br /&gt;
Date : 16 décembre 2015&lt;br /&gt;
Heure : 11h45&lt;br /&gt;
La conférence débute à 12h00 et se termine à 12:55.&lt;br /&gt;
Un lunch sera servi.&lt;br /&gt;
Réservez maintenant!&lt;br /&gt;
1 CPE&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 16 December 2015 from 11:45 AM to 1:00 PM (EST) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec &lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Sécurité des applications - Systèmes de contrôles industriels ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Novembre2015-OWASPMtl-R.png | Sécurité des applications - Systèmes de contrôles industriels ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/0eAZpyiQQ9A]] [https://youtu.be/0eAZpyiQQ9A Watch the conference / Regarder la conférence] &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&lt;br /&gt;
La sécurité des applications et les systèmes de contrôles industriels.&lt;br /&gt;
Cette conférence s'adresse aux professionnels et gestionnaires des TI desinfrastructures critiques qui exploitent ou gèrent des systèmes de contrôles industriels(SCI) et SCADA (surveillance et d'acquisition de données).&amp;lt;br/&amp;gt;&lt;br /&gt;
Conférenciers : Robert Nastas, CSSA. Gestionnaire de projet et Youssef Jad, Architecte Cyber sécurité, ICS-CERT&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Objectifs de la conférence:&lt;br /&gt;
* Démystifier le domaine d'affaires.&lt;br /&gt;
* Renseigner les participants sur les bonnes pratiques de sécurité desapplications liées au secteur industriel.&lt;br /&gt;
* Proposer aux professionnels et gestionnaires des TI responsables dessystèmes SCADA et SCI des pistes de solutions aux enjeux de sécurité.&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
L'équipe OWASP Montréal vous remercie d'avoir assisté en grand nombre à la conférence, 'La sécurité des applications et les systèmes de contrôles industriels'.&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 18 November 2015 from 11:45 AM to 1:00 PM (EST) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Les préoccupations actuelles de hauts dirigeants en matière de cybersécurité et de sécurité applicative ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Septembre2015-OWASPMtl.jpg | Les préoccupations actuelles de hauts dirigeants en matière de cybersécurité et de sécurité applicative ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/un-regard-sur-la-securite-de-linformation-en-2015-par-eric-hebert ]] [https://speakerdeck.com/owaspmontreal/un-regard-sur-la-securite-de-linformation-en-2015-par-eric-hebert See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Pour le lancement des activités corporatives de la saison 2015 - 2016, le 8 septembre prochain à 12:00, l'équipe OWASP Montréal convie les gestionnaires et artisants de la sécurité des TIC à venir entendre monsieur Éric Hébert qui nous présentera son interprétation des préoccupations actuelles de hauts dirigeants en matière de cybersécurité et de sécurité applicative. L'événement se tiendra au complexe Desjardins à la salle &amp;quot;Espace Desjardins&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
''' ÉRIC G. HÉBERT, CISM, CISSP ''' &amp;lt;br/&amp;gt;&lt;br /&gt;
Après plus de 20 ans passés dans le domaine de la sécurité des technologies de l’information, Éric se spécialise dans la mise en œuvre et la gestion d'équipes performantes, capables de relever les plus hauts défis de la cybersécurité moderne.&amp;lt;br/&amp;gt;&lt;br /&gt;
Capable de dialoguer avec les hauts dirigeants, il sait traduire et vulgariser les enjeux techniques complexes tout en respectant la nature et l'appétence au risque de ses clients. Dynamique et pourvu d'une expérience couvrant presque toutes les sphères de la SI, il fonce dans le respect de la culture établie tout en implantant des solutions pragmatiques et efficaces.&amp;lt;br/&amp;gt;&lt;br /&gt;
Depuis plus de 10 ans, il gravite principalement autour des entreprises du domaine financier (BNC, Desjardins, Fonds de solidarité FTQ...) et les accompagne dans la mise en place de solutions efficaces tenant compte à la fois des risques et des budgets.&lt;br /&gt;
En plus d’avoir fondé de nombreuses associations telles que le RéseauSécurIT et le RPSI, il maintient une présence régulière auprès des milieux associatifs professionnels et partage régulièrement ses expériences lors de conférences et d'entrevues avec divers médias.&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Events / Évènements =&lt;br /&gt;
&lt;br /&gt;
== Owasp Montreal at [https://nsec.io/ NorthSec 2017] ==&lt;br /&gt;
&lt;br /&gt;
[[Image:NorthSec2017-5.jpg]]&lt;br /&gt;
[[Image:NorthSec2017-6.jpg]]&lt;br /&gt;
&lt;br /&gt;
From Left to Right: Anne Gauthier, OWASP Montréal Chapter Leader (President) and Application Security Analyst at GoSecure, Hugo Genesse, OWASP Montréal Chapter Leader and Research Intern at PNF Software, Julien Touche, OWASP Montréal Chapter Leader and Principal Security Engineer at Nuance Communications&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal at [https://2017.appsec.eu/ AppSec] ==&lt;br /&gt;
&lt;br /&gt;
[[Image:OWASPAppSecBelfast2017-7.jpg]]&lt;br /&gt;
&lt;br /&gt;
OWASP Montreal and Ottawa Chapter Leaders at OWASP AppSec Belfast, UK #WomenInAppSec&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal at [https://hackfest.ca/ HackFest 2016] ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hackfest2016-r.jpg| HackFest |link=https://hackfest.ca/]]&lt;br /&gt;
&lt;br /&gt;
From left to right: Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Louis Nadeau, OWASP Québec Chapter Leader and Manager, Product Security at Bentley Systems and Patrick Leclerc, OWASP Québec Chapter Leader and Information Security Advisor at La Capitale.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal at OWASP [https://2016.appsecusa.org/ AppSec USA 2016, Washington] ==&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:OWASPMtl-AppSecUSA2016-Washington.jpg | OWASP Montreal at AppSec USA 2016, Washington]] &lt;br /&gt;
&lt;br /&gt;
​From left to right: Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Marie-Claire Willig, Application Security Analyst at Desjardins, Speaker and Cofounder of the Roslyn Security Guard tool which will be presented at Blackhat 2016, Alexandre Hamelin President at Synlabs Consulting Inc., Jonathan Marcil, Application Security Engineer at Blizzard Entertainment and former OWASP Montreal Chapter Leader. Philippe Arteau, Cybersecurity Researcher at GoSecure and designer of [https://find-sec-bugs.github.io/ Find Security Bugs] and Roslyn Security Guard tool which will be presented at Blackhat 2016.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://www.gosec.net GoSec] 2016 ==&lt;br /&gt;
&lt;br /&gt;
[[Image:OWASP-GoSec2016-1r.jpg|OWASP Montreal at GoSec 2016]] [[Image:OWASP-GoSec2016-2r.jpg|OWASP Montreal at GoSec 2016]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
From left to right : Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Simon Lacasse, student and volunteer, and Laurent Desaulniers, Security Analyst at Bell Canada.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://www.nsec.io/ NorthSec] 2016 – Annual Applied Security Event ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hackfest2016-OWASPMtl.jpg|OWASP Montreal at NorthSec 2016]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Simon Veilleux &lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
From left to right : Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Olivier Arteau OWASP Montréal Chapter Leader and Conseiller chez Groupe Technologie Desjardins, Hugo Genesse, OWASP Montréal Chapter Leader and Vulnerability Research Intern at Wurldtech Security Technologies.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://hackfest.ca/en/ Hackfest] 2015 ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hackfest2015-OWASPMtl-R.JPG | OWASP Montreal at Hackfest 2015]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Hackfest &lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
From left to right : Jonathan Marcil, Application Security Engineer at Blizzard Entertainment and former OWASP Montreal Chapter Leader. Philippe Arteau, Cybersecurity Researcher at GoSecure and designer of [http://find-sec-bugs.github.io/ Find Security Bugs] and Roslyn Security Guard tool which will be presented at Blackhat 2016. &lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/8U0qkEuUFy8]] [https://youtu.be/8U0qkEuUFy8 Watch the video / Regarder la vidéo]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://www.gosec.net/ GoSec] 2015 – The Annual Cybersecurity Conference presented by GoSecure, EY and ISACA. ==&lt;br /&gt;
&lt;br /&gt;
[[Image:GoSec2015-OWASPMtl.jpg|OWASP Montreal at GoSec 2015]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
From left to right : Marie-Claire Willig, Application Security Analyst at Desjardins, Speaker and Cofounder of the Roslyn Security Guard tool which will be presented at Blackhat 2016. Benoît Guérette, Application Security Team Leader at Desjardins, VP Finance at NorthSec and OWASP Montreal Chapter Founder and Former Chapter Leader.&lt;br /&gt;
&lt;br /&gt;
== See also / Voir aussi ==&lt;br /&gt;
&lt;br /&gt;
OWASP Montréal recommends Montréhack. Learn and share knowledge on IT security by solving technical challenges. Third Monday of every month. &lt;br /&gt;
&lt;br /&gt;
OWASP Montréal recommende Montréhack. Apprends et partages des connaissances sur la sécurité informatique en travaillant des problèmes appliqués. Chaque troisième lundi du mois. &lt;br /&gt;
&lt;br /&gt;
[[File:Montrehack.png|Montréhack|link=http://montrehack.ca/|alt=Montréhack]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Archives 2007-2015 =&lt;br /&gt;
{{:Montreal chapter past meetings}}&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - February 3rd - Getting to Know the Software Assurance Marketplace (SWAMP) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/p4_vjufcB6Q]] [https://youtu.be/p4_vjufcB6Q Watch the conference / Regarder la conférence]&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/getting-to-know-the-software-assurance-marketplace-swamp-by-pat-beyer]] [https://speakerdeck.com/owaspmontreal/getting-to-know-the-software-assurance-marketplace-swamp-by-pat-beyer See the slides / Voir la présentation] &amp;lt;br/&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Pat Beyer&lt;br /&gt;
*'''ADDITIONAL PRESENTER:'''  Abe Megahed&lt;br /&gt;
*'''ABSTRACT:''' The Software Assurance Marketplace (SWAMP) is an open facility that is designed, built, and operated by four research institutions. The SWAMP provides no-cost access to an array of open-source and commercial software analysis tools. This presentation will provide an overview and demo of the SWAMP, including our goals, intended audience, current capabilities, and future plans. We will cover our relationship with OWASP, incorporation of open-source software assurance tools, and status as an open-source project and resource available to the software community. Visit https://continuousassurance.org/ to learn more about us.&lt;br /&gt;
*'''BIO:''' Pat Beyer serves as the Product Manager for the Software Assurance Marketplace (SWAMP). With over 25 years of experience successfully managing multi-million dollar global projects, Beyer’s expertise extends to the IT, construction, and operations sectors, with a specialization in managing government contracts and grants. A gifted communicator, Beyer is a sought after speaker due to his ability to deliver complex information about technology products and services in a way that is easily understood. He is a decorated combat veteran of the Global War on Terror, the international military campaign that started following the 9/11 terrorist attacks on the United States. In 2004, he constructed and rehabilitated over 20 schools, clinics, and water treatment plants for the Iraqi people using local contractors. Beyer also holds a Bachelor of Science, a Masters in Business Administration, a Ph.D. in Organization and Management, and a Project Management Professional (PMP) certification.&lt;br /&gt;
*'''BIO:''' Abe Megahed is a web developer for the Software Assurance Marketplace. In previous lifetimes, he has been a computer graphics researcher, a game programmer, a programming language and compiler nerd, a dot com company founder, a creator of helicopter simulations, and a developer of 3D simulations for NASA astronaut crew training.&lt;br /&gt;
*'''WHEN:'''  Tuesday, February 3rd 2015&lt;br /&gt;
*'''WHERE:''' Room PK-1140 - UQAM Pavillon Président-Kennedy, 201 Avenue du Président-Kennedy  J2X 3Y7&lt;br /&gt;
*'''REGISTRATION:''' https://owaspmtlswamp2015.eventbrite.ca&lt;br /&gt;
*'''WEBCAST:''' https://www.youtube.com/watch?v=p4_vjufcB6Q&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/getting-to-know-the-software-assurance-marketplace-swamp-by-pat-beyer&lt;br /&gt;
&lt;br /&gt;
*'''ACADEMIC PARTNER:''' AGEEI-UQAM - http://www.ageei.org/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Welcome speech by Chapter Leader (Jonathan Marcil)&lt;br /&gt;
  18:30-20:00 Main session: Getting to Know the Software Assurance Marketplace&lt;br /&gt;
  20:00-...   End of the meeting&lt;br /&gt;
&lt;br /&gt;
[[Image:SWAMP-Logo-Final-Med.png|300px|link=https://continuousassurance.org/]]&lt;br /&gt;
[[Image:Ageeilogo.jpg|200px|link=http://www.ageei.org/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - 4 décembre - Malware côté serveur — évolution, méthodes d’opération et forensic Linux ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/lo8WDl-WQ3E]] [https://youtu.be/lo8WDl-WQ3E Watch the conference / Regarder la conférence] &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/malware-cote-serveur-par-marc-etienne-m-dot-leveille]] [https://speakerdeck.com/owaspmontreal/malware-cote-serveur-par-marc-etienne-m-dot-leveille See the slides / Voir la présentation] &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''PRÉSENTATEUR PRINCIPAL:''' Marc-Etienne M.Léveillé&lt;br /&gt;
*'''RÉSUMÉ:''' Les logiciels malveillants ciblant les serveurs ont évolué. Ils sont utilisés par des groupes de cybercriminels organisés dans le but de faire du profit via des redirections web et l’envoie de pourriels. La présentation portera sur Opération Windigo, une opération malveillante qui a affecté plus de 25 000 serveurs dans le monde. Après une brève description des composantes de Windigo, nous verrons comment les opérateurs déploient leurs logiciels malveillants et surveille leur réseau de serveurs infectés. Des trucs pratiques pour faire de la forensics sur des systèmes Linux seront donnés. Cette présentation est une suite à la présentation &amp;quot;Linux/Cdorked: Server side malware&amp;quot;, donnée par Olivier Bilodeau à OWASP Montréal en 2013. La présentation sera en français avec des diapositives en anglais (aka Montreal-style).&lt;br /&gt;
*'''BIO:''' Marc-Etienne est un chercheur en logiciel malveillant chez ESET depuis 2012. Il se spécialise dans les logiciels malveillants qui s’attaquent à des plateformes inhabituelles comme aux produits fruités et aux oiseaux nordiques. Dernièrement, il passe beaucoup de son temps à faire la rétro-ingénierie de logiciels malveillants sur des serveurs Linux et s’intéresse à leurs méthodes d’opération. Il adore participer de façon collégiale aux CTFs avec ses amis les CISSP Groupies et jouer de la clarinette. Il tweet très peu à @marc_etienne_.&lt;br /&gt;
*'''QUAND:''' 4 décembre 2014 à 18h00&lt;br /&gt;
*'''OÙ:''' Local M-1510, Polytechnique Montréal, 2900 Boulevard Edouard-Montpetit&lt;br /&gt;
*'''INSCRIPTION:''' https://www.eventbrite.ca/e/owasp-montreal-4-decembre-malware-cote-serveur-evolution-methodes-doperation-et-forensic-linux-tickets-14635313617&lt;br /&gt;
*'''ÉQUIPE ACADÉMIQUE:''' Polyhack - http://polyhack.org/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
&lt;br /&gt;
 18:00-18:30 Réseautage&lt;br /&gt;
 18:30-18:35 Mot de bienvenue par le leader du chapitre (Jonathan M.)&lt;br /&gt;
 18:35-19:30 Présentation principale : Malware côté serveur&lt;br /&gt;
 19:30-20:00 Période de questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Polyhacklogonoirpetit.png|200px|link=http://polyhack.org/]]&lt;br /&gt;
[[Image:LogoPolytechnique.gif|link=http://www.polymtl.ca/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - October 23rd - XXE : À l’assaut des analyseurs XML ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/MZviLB9-42E]] [https://youtu.be/MZviLB9-42E Watch the conference / Regarder la conférence] &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/xxe-a-lassaut-des-analyseurs-xml-par-philippe-arteau]] [https://speakerdeck.com/owaspmontreal/xxe-a-lassaut-des-analyseurs-xml-par-philippe-arteau See the slides / Voir la présentation] &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''PRÉSENTATEUR PRINCIPAL:''' Philippe Arteau&lt;br /&gt;
*'''RÉSUMÉ:''' L'utilisation d’XML est fortement répandue. Le format est utilisé pour des fichiers de configuration, pour des métadonnées, pour des documents textes, et bien plus. La prise en charge de fichiers XML n’est pas sans risque. La plupart des analyseurs XML ne sont pas sécuritaires par défaut pour le traitement de fichier externe. Cette présentation fera un survol des vulnérabilités de type « Xml eXternal Entity » et de l’étendue des risques pour différents langages de programmation. Plusieurs démonstrations sont prévues.&lt;br /&gt;
*'''BIO:''' Philippe est conseiller en sécurité applicative pour le Groupe Technologies Desjardins. Au quotidien, il s’occupe d’effectuer des tests d’intrusions et des revues de code. Il a découvert des vulnérabilités importantes dans plusieurs logiciels populaires incluant Google Chrome, DropBox, ESAPI et Jira.&lt;br /&gt;
*'''QUAND:'''  23 Octobre 2014 à 18h00&lt;br /&gt;
*'''OÙ:''' École de Technologie Supérieure Local A-3230, 1100 Rue Notre-Dame Ouest, Montréal, QC H3C 1K3&lt;br /&gt;
*'''INSCRIPTION:''' http://www.eventbrite.ca/e/owasp-montreal-23-octobre-xxe-a-lassaut-des-analyseurs-xml-tickets-13426881163&lt;br /&gt;
*'''PARTENAIRE ACADÉMIQUE:''' ETS - DCI http://dciets.com/&lt;br /&gt;
*'''PROGRAMME:''' &lt;br /&gt;
&lt;br /&gt;
 18:00-18:30 Réseautage&lt;br /&gt;
 18:30-18:45 Mot de bienvenue&lt;br /&gt;
 18:45-19:45 Présentation principale - &amp;quot;À l’assaut des analyseurs XML&amp;quot; Philippe Arteau&lt;br /&gt;
 19:45-20:00 Période de questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Blason_dci.png‎‎‎|150px|link=http://dciets.com/]]&lt;br /&gt;
[[Image:ETS-rouge-devise-impr-fond_transparent.png|150px|link=http://www.etsmtl.ca/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - July 24th - Web security for DevOps: the glory is in the headers ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/6bp1NCLT-YQ]] [https://youtu.be/6bp1NCLT-YQ Watch the conference / Regarder la conférence] &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/web-security-for-devops-the-glory-is-in-the-headers-by-jonathan-marcil]] [https://speakerdeck.com/owaspmontreal/web-security-for-devops-the-glory-is-in-the-headers-by-jonathan-marcil See the slides / Voir la présentation] &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Jonathan Marcil&lt;br /&gt;
*'''ABSTRACT:''' DevOps is a buzzword which can be easily demystified: in essence it is a process which aims to combine the development and system administration process into one; Operations. As developers become responsible for server setup, security counter measures are evolving as well. The line between server configuration and application behaviour has been blurred. In this talk we will cover some HTTP headers in regards to security such as CORS, CSP and HSTS. We will demonstrate several forms of attack, and how they can (should) be countered.&lt;br /&gt;
*'''BIO:''' Jonathan is devoted to security and specialized in Web application security.  His main occupation is consulting in Web security, but deep down he is a developer with a agnostic vision of programming languages. He has a diploma in Software Engineering from Ecole de Technologie Superieure and more than 10 years of experience in Information Technology and Security.&lt;br /&gt;
*'''WHEN:'''  At noon on July 24th 2014&lt;br /&gt;
*'''WHERE:''' 75 Queen Street, office 3100, Montreal, QC H3C 2N6&lt;br /&gt;
*'''REGISTRATION:''' You can join us on site for a pizza slice but this is mainly an online event. Contact jonathan.marcil@owasp.org.&lt;br /&gt;
*'''WEBCAST:''' https://www.youtube.com/watch?v=6bp1NCLT-YQ&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/web-security-for-devops-the-glory-is-in-the-headers-by-jonathan-marcil&lt;br /&gt;
*'''EVENT SPONSOR:''' Pheromone http://www.pheromone.ca/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  12:00-12:10 Welcome and quick OWASP introduction&lt;br /&gt;
  12:10-13:10 Main presentation - &amp;quot;Web security for DevOps: the glory is in the headers&amp;quot; Jonathan Marcil&lt;br /&gt;
  13:10-... Open discussion and questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Logo-phero.gif‎|link=http://www.pheromone.ca/]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - June 18th - Gaps in the Clouds ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/gaps-in-the-clouds-by-robert-fritz]] [https://speakerdeck.com/owaspmontreal/gaps-in-the-clouds-by-robert-fritz See the slides / Voir la présentation] &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Robert Fritz&lt;br /&gt;
*'''ABSTRACT:''' Cloud technology offers agility and scaling, and a chance to break away from legacy IT choices.  Unfortunately, skipping traditional IT activities often results in poorly patched systems, out of date firewalls, and overprovisioned entitlements wielded by admins whose “day job” is development.  Boundaries of accountability and responsibility amongst cloud providers and consumers are confusing, vague, and shift, making security difficult to manage.  In such an environment, a “BP-spill” event, where cost wins over safely safety, is likely.  This talk will dive down into the cracks between the layers of cloud, and share some of the exciting dirt we have seen and expect to see in coming years.”&lt;br /&gt;
*'''BIO:''' Robert Fritz has been practicing security his entire career. Rob started as an Air Force lieutenant at Langley AFB and later at the Pentagon in Washington DC, building and managing classified networks. Finding he was getting too far from technology after a brief stint flying, he left the military to get back to the tech, and built security tools for HP in their HP-Unix lab.  Over time he found himself in more and more security design discussions, so co-authored HP’s Commercial Application Threat Analysis Methodology, building an internal consulting practice at HP.  This quantitative approach, led to two pending patents, an external-facing consulting practice, and his contributions to NIST IR-7502, the Common Configuration Scoring System (CVSS follow-on).  He is the former lead editor for the Center for Internet Security’s HP-UX Benchmark, and current lead for the Android Benchmark.  Robert now works for Morgan Stanley as global head of the Strategic Consulting team in the Security Architecture group, and leads the team’s cloud and social-media security practices.&lt;br /&gt;
*'''WHEN:''' June 18th 2014&lt;br /&gt;
*'''WHERE:''' 700 Rue Wellington, Floor 2, Montreal, QC H3C 3S4&lt;br /&gt;
*'''REGISTRATION:''' http://owaspmtl18junems.eventbrite.ca&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/gaps-in-the-clouds-by-robert-fritz&lt;br /&gt;
*'''EVENT SPONSOR:''' Morgan Stanley http://www.morganstanley.com/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:30 Networking and Morgan Stanley Hosted Pizza and Soft Drinks&lt;br /&gt;
  18:30-18:45 OWASP Chapter &amp;amp; Morgan Stanley Welcome&lt;br /&gt;
  18:45-19:45 Main presentation - &amp;quot;Gaps in the Clouds&amp;quot; Robert Fritz&lt;br /&gt;
  19:45-20:00 Open discussion and questions&lt;br /&gt;
  20:00-...   Optional, informal networking at Aziatic - 626 rue Marguerite-d'Youville, Montréal, QC H3C 1W7&lt;br /&gt;
&lt;br /&gt;
[[Image:Morgan_Stanley_Historical_Logo.png|link=http://www.morganstanley.com/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - May 26th - Récapitulatif des challenges NorthSec ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/P8_V3RI1Ru4]] [https://youtu.be/P8_V3RI1Ru4 Watch the conference / Regarder la conférence] &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''PRÉSENTATEUR PRINCIPAL:''' Laurent Desaulniers&lt;br /&gt;
*'''RÉSUMÉ:''' Solutions de la compétition en sécurité NorthSec 2014 sur les sujets de  XXE + SSRF, WAF Bypass, Xpath Injection, DOM Injection, HTTP Only Flag bypass et contournement de captchas. Une bonne façon d'apprendre sur ces failles que vous étiez ou non un participant de la compétition.&lt;br /&gt;
*'''MESSAGE DU PRÉSENTATEUR:''' Vous voyez Rao dans votre soupe? Vous voulez une solution pour un XSS avec des cookies http only? Les captchas illisibles sont un problème? Assistez à la présentation de l'OWASP!&lt;br /&gt;
*'''BIO:''' Laurent Desaulniers est un passionné de sécurité informatique. Il a présenté au Hackfest, au colloque RSI, à OWASP et est challenge designer à NorthSec. M. Desaulniers détient les certifications CISSP, CISM, CISA et OSCP.&lt;br /&gt;
*'''QUAND:''' 26 mai à 18h00&lt;br /&gt;
*'''OÙ:''' Local PK-1140 - Pavillon Président-Kennedy 201, Avenue du Président-Kennedy, J2X 3Y7&lt;br /&gt;
*'''INSCRIPTION:''' https://www.eventbrite.ca/e/owasp-montreal-26-mai-recapitulatif-des-challenges-northsec-tickets-11724413035&lt;br /&gt;
*'''WEBCAST:''' https://www.youtube.com/watch?v=P8_V3RI1Ru4&lt;br /&gt;
*'''ÉQUIPE ACADÉMIQUE''' AGEEI-UQAM - http://www.ageei.org/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
&lt;br /&gt;
 18:00-18:30 Réseautage&lt;br /&gt;
 18:30-18:35 Mot de bienvenue par le leader du chapitre (Jonathan M.)&lt;br /&gt;
 18:35-19:30 Présentation principale : Récapitulatif des challenges NorthSec&lt;br /&gt;
 19:30-20:00 Période de questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Ageeilogo.jpg|200px|link=http://www.ageei.org/]]&lt;br /&gt;
[[Image:2397_nsec_Logo_500-250.png|200px|link=http://nsec.io/]]&lt;br /&gt;
&lt;br /&gt;
== Networking with infosec communities - April 21st ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''RÉSUMÉ:''' En collaboration avec Montréhack, mtlsec et NorthSec, nous organisons une soirée réseautage dans un pub du centre-ville. Du plaisir garanti avec les membres de plusieurs communautés infosec de Montréal!&lt;br /&gt;
&lt;br /&gt;
*'''ABSTRACT:''' In collaboration with Montréhack, mtlsec and NorthSec, we are organizing a networking evening in a pub downtown. Fun guaranteed with the other security communities in Montreal!&lt;br /&gt;
&lt;br /&gt;
*'''QUAND:''' 21 Avril 2014&lt;br /&gt;
*'''WHEN:''' April 21st 2014&lt;br /&gt;
&lt;br /&gt;
*'''OÙ/WHERE:''' BENELUX - Brasserie Artisanale 245 Sherbrooke St W Montreal, QC H2X 1X7&lt;br /&gt;
&lt;br /&gt;
*'''INSCRIPTION/REGISTRATION:''' https://www.eventbrite.ca/e/montrehack-avril-april-northsec-pre-party-tickets-11232307133&lt;br /&gt;
&lt;br /&gt;
*'''PARTENAIRES/PARTNERS:''' Montréhack http://montrehack.ca/ - mtlsec http://blog.mtlsec.com/ - NorthSec https://www.nsec.io/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
  18:00-21:00 Networking&lt;br /&gt;
  21:00-23:59 Remember to drink responsibly!&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - March 27th - Panel Compétition en sécurité NorthSec ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Présentation sous forme de panel - venez poser vos questions!'''&lt;br /&gt;
&lt;br /&gt;
*'''RÉSUMÉ:''' Les compétitions de type Capture the Flag (CTF) sont un moyen pour les professionnels et amateurs de sécurité informatique de mettre leurs talents à l'épreuve. NorthSec est une compétition Montréalaise annuelle en sécurité appliquée, qui aura lieu cette année au Marché Bonsecours de Montréal le 25, 26 et 27 avril prochain. Elle vise à augmenter le niveau technique des professionnels de la sécurité au Québec, ainsi que de permettre à ses acteurs les plus talentueux de se démarquer.&lt;br /&gt;
*'''DÉTAILS:''' Le panel de jeudi, sous la forme d'un échange convivial entre les organisateurs de l'évènement et de ses participants, abordera des thèmes variés comme l'écriture de bon défis, l'infrastructure, la logistique, les inattendus, un bilan de 2013 et tout ça en passant par de savoureuses annecdotes (on l'espère). Venez en grand nombre toucher à ces légendes de la scène infosec montréalaise!&lt;br /&gt;
*'''PANÉLISTES:''' Gabriel Tremblay, François Proulx, Laurent Desaulniers, Stéphane Graber&lt;br /&gt;
*'''ANIMATEUR:''' Olivier Bilodeau&lt;br /&gt;
*'''QUAND:''' 27 mars 2014&lt;br /&gt;
*'''OÙ:''' Salle M-1510, École Polytechnique de Montréal, 2500 chemin de Polytechnique, Montréal (Québec) H3T 1J4, pavillon Lassonde&lt;br /&gt;
*'''INSCRIPTION:''' https://www.eventbrite.ca/e/owasp-montreal-27-mars-panel-competition-en-securite-northsec-tickets-10918436337&lt;br /&gt;
*'''ÉQUIPE ACADÉMIQUE:''' Polytechnique - Polyhack http://polyhack.org/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Mot de bienvenue par le leader du chapitre (Jonathan Marcil)&lt;br /&gt;
  18:30-20:00 Présentation principale : Panel NorthSsec&lt;br /&gt;
&lt;br /&gt;
[[Image:Polyhack.png‎‎|200px|link=http://polyhack.org/]]&lt;br /&gt;
[[Image:LogoPolytechnique.gif|link=http://www.polymtl.ca/]]&lt;br /&gt;
[[Image:2397_nsec_Logo_500-250.png|200px|link=http://nsec.io/]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - February 25th - Proven Strategies for Web Application Security ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/proven-strategies-for-web-application-security-by-justin-c-klein-keane]] [https://speakerdeck.com/owaspmontreal/proven-strategies-for-web-application-security-by-justin-c-klein-keane See the slides / Voir la présentation] &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Justin C. Klein Keane&lt;br /&gt;
*'''ABSTRACT:''' The rising dominance of the web as an application delivery platform has focused attacker attention squarely on the security of dynamic web applications. Application security is a complex, and shifting, field. Learn about tested and successful techniques to build safer applications, find flaws before they become vulnerabilities, and deploy applications that can detect, and resist attack.&lt;br /&gt;
*'''BIO:''' Justin C. Klein Keane is a security engineer and chapter leaders of OWASP in Philadelphia. For over a decade Justin has worked as a trainer, coder, and exploit developer. Justin is currently writing a book for NoStarch Press on hacking, speaks regularly at conferences, holds a masters degree in information technology from the University of Pennsylvania and is credited with hundreds of application vulnerability discoveries.&lt;br /&gt;
*'''WHEN:''' February 25th 2014&lt;br /&gt;
*'''WHERE:''' Ecole de technologie superieure, 1100 Notre-Dame Street West, Montreal, Room: A-1150&lt;br /&gt;
*'''REGISTRATION:''' http://owaspmtljan2014.eventbrite.ca&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/proven-strategies-for-web-application-security-by-justin-c-klein-keane&lt;br /&gt;
*'''ACADEMIC PARTNER:''' ETS - DCI http://dciets.com/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Welcome speech by Chapter Leader (Jonathan Marcil)&lt;br /&gt;
  18:30-20:00 Main session and open discussion: Proven Strategies for Web Application Security&lt;br /&gt;
  20:00-...   End of the meeting in a pub&lt;br /&gt;
&lt;br /&gt;
[[Image:Dciets.png‎‎‎|100px|link=http://dciets.com/]]&lt;br /&gt;
[[Image:Logo_ets.png|link=http://www.etsmtl.ca/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - January 28th - Latest trends in Mobile Security ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/8qPyKj4FKgY]] [https://youtu.be/8qPyKj4FKgY Watch the conference / Regarder la conférence] &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/latest-trends-in-mobile-security-by-francois-proulx]] [https://speakerdeck.com/owaspmontreal/latest-trends-in-mobile-security-by-francois-proulx See the slides / Voir la présentation] &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Francois Proulx&lt;br /&gt;
*'''ABSTRACT:''' Last AppSecUSA 2013 had a great line up of talks, especially regarding mobile applications. This session will be covering all the hottest presentations about mobile security by doing an overview from what see saw at AppSecUSA, all with some slides and snippets of presentations that was recorded at the event. Discussion will be encouraged within the audience as this will be more a dynamic event than a regular talk.&lt;br /&gt;
*'''BIO:''' François Proulx is a senior mobile application developer who has worked on dozens of iOS applications since the very beginning of the Apple iOS platform. Over the past few years he has switched his focus to security. He spends a lot of his free time participating in Capture the Flag events (CTFs) and organizing the NorthSec security competition.&lt;br /&gt;
*'''WHEN:''' January 28th 2014&lt;br /&gt;
*'''WHERE:''' UQAM Room PK-1705, Pavillon Président-Kennedy (the big boat at Place des Arts) - 201 Avenue du Président-Kennedy  J2X 3Y7&lt;br /&gt;
*'''REGISTRATION:''' http://owaspmtl-mobilesecurity.eventbrite.ca&lt;br /&gt;
*'''SLIDES/CONTENT:''' [http://www.youtube.com/playlist?list=PLQtB2ug5xmvaQ9jeRWV53-F_T555GQfhW YouTube playlist]&lt;br /&gt;
*'''SPONSOR:''' Academic partner AGEEI-UQAM - http://www.ageei.org/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Welcome speech by Chapter Leader (Jonathan M.)&lt;br /&gt;
  18:30-20:00 Main session and open discussion: Mobile Security&lt;br /&gt;
  20:00-...   End of the meeting in a pub&lt;br /&gt;
&lt;br /&gt;
[[Image:Ageeilogo.jpg|200px|link=http://www.ageei.org/]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Presentations For Download  ====&lt;br /&gt;
&lt;br /&gt;
[http://www.owasp.org/images/0/0d/20100209mstechdaysowaspasvssgiv01-12657916463819-phpapp02.ppt OWASP ASVS] by Sebastien Gioria (09/03/2010) &lt;br /&gt;
&lt;br /&gt;
[http://www.ph-il.ca/slides/afup__authetification_forte.pdf Authentification Forte] by Philippe Gamache (02/02/2010) &lt;br /&gt;
&lt;br /&gt;
[http://www.opensamm.org/downloads/OpenSAMM-1.0.ppt Software Assurance Maturity Model (OpenSAMM)] by Pravir Chandra (03/11/2009) &lt;br /&gt;
&lt;br /&gt;
[http://www.owasp.org/images/d/de/Owasp-montreal-sept-17h-2009-justin-foster.pdf Crossing the Border – Javascript Exploits] by Justin Foster (17/09/2009) &lt;br /&gt;
&lt;br /&gt;
[http://www.owasp.org/images/c/c2/ALaughRIAt.pdf A Laugh RIAt] by Rafal Los (07/04/2009) &lt;br /&gt;
&lt;br /&gt;
[https://www.owasp.org/images/e/eb/OWASP-Montreal-24022009-RobLabbe.pptx Microsoft Security Development Lifecycle for IT] by Rob Labbe (24/02/2009) &lt;br /&gt;
&lt;br /&gt;
[https://www.owasp.org/images/3/39/OWASP-Montreal-24022009-EN.pdf OWASP Goal and Top Ten 2007 for Managers - French version] by Benoit Guerette (24/02/2009)&lt;br /&gt;
&lt;br /&gt;
Newer presentations are available on [https://speakerdeck.com/owaspmontreal Speaker Deck]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Circle_owasp_logo_nowhitebackground.png|200px]]&lt;br /&gt;
&lt;br /&gt;
= OWASP Foundation / Mission OWASP    = &lt;br /&gt;
OWASP Foundation ([https://docs.google.com/a/owasp.org/presentation/d/10wi1EWFCPZwCpkB6qZaBNN8mR2XfQs8sLxcj9SCsP6c/edit?usp=sharing Overview Slides]) is a professional association of [[Membership | global members]] and is open to anyone interested in learning more about software security. Local chapters are run independently and guided by the [[Chapter_Leader_Handbook]].  As a [[About_OWASP | 501(c)(3)]] non-profit professional association your support and sponsorship of any meeting venue and/or refreshments is tax-deductible. Financial contributions should only be made online using the authorized online chapter donation button.  To be a &amp;lt;b&amp;gt;SPEAKER&amp;lt;/b&amp;gt; at ANY OWASP Chapter in the world simply review the [[Speaker_Agreement | speaker agreement]] and then contact the local chapter leader with details of what OWASP PROJECT, independent research or related software security topic you would like to present on.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;La fondation OWASP est une [https://www.owasp.org/index.php/Membership association de professionnels] et elle est ouverte à tout intervenant intéressé à en apprendre davantage sur la sécurité applicative. Les chapitres locaux (dont celui de Montréal) sont gérés de façon indépendante et selon un [https://www.owasp.org/index.php/Chapter_Leader_Handbook manuel de directives à respecter].   &lt;br /&gt;
Toute contribution financière au chapitre peut être faite en ligne en utilisant l’icône prévu à cet effet. Pour être conférencier au sein de n’importe quel chapitre à l’échelle mondiale, vous n’avez qu’à prendre connaissance du document [https://www.owasp.org/index.php/Speaker_Agreement &amp;quot;entente avec les conférenciers – speaker agreement&amp;quot;] et à joindre le responsable du chapitre Montréal avec un descriptif du sujet que vous aimeriez aborder et s’il est relié à un projet OWASP, à de la recherche indépendante ou encore le sujet en particulier, concernant la sécurité applicative, que vous souhaitez aborder.&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== [[Image:Circle_owasp_logo_nowhitebackground.png|128px]] Montreal OWASP Team == &lt;br /&gt;
&lt;br /&gt;
Scope of the team is to discuss and plan local activities and meetings &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Chapter Leaders ===&lt;br /&gt;
&lt;br /&gt;
* [mailto:anne.gauthier@owasp.org Anne Gauthier], President/Présidente&lt;br /&gt;
* [mailto:michel.bourque{at}owasp.org Michel Bourque], Chapter coordinator and marketing manager/Coordination et Marketing&lt;br /&gt;
* [mailto:hugo.genesse(at)owasp.org Hugo Genesse], Web content and production manager/Site internet et Production &lt;br /&gt;
* [mailto:olivier.arteau(at)owasp.org Olivier Arteau], Logistic manager/Logistique&lt;br /&gt;
&lt;br /&gt;
==== Chapter leader history ====&lt;br /&gt;
*2008-2010 - Benoit Guerette, founder and chapter leader&lt;br /&gt;
*2011-2012 - Philippe Gamache, chapter leader (vice chapter-leader since 2010)&lt;br /&gt;
*2013-2015 - Jonathan Marcil, chapter leader&lt;br /&gt;
*2016-... - Anne Gauthier, Michel Bourque, Marius Popescu, Hugo Genesse, Olivier Arteau&lt;br /&gt;
&lt;br /&gt;
==== Old board members ====&lt;br /&gt;
*Philippe Pépos Petitclerc&lt;br /&gt;
*Michael Robillard&lt;br /&gt;
*Benoit Guerette (logistics 2015)&lt;br /&gt;
*Alexandre Rimthong&lt;br /&gt;
*Mathieu Binette&lt;br /&gt;
*Sean Coates&lt;br /&gt;
*Jean-Marc Robert&lt;br /&gt;
*Philippe Blondin&lt;br /&gt;
*Benoit Guerette (founder)&lt;br /&gt;
*Laurent Desaulniers&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;headertabs/&amp;gt; &lt;br /&gt;
__NOTOC__ &lt;br /&gt;
[[Category:Canada]]&lt;/div&gt;</summary>
		<author><name>Svieg</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=File:OWASPMtl-JonathanMarcil-3.jpg&amp;diff=230109</id>
		<title>File:OWASPMtl-JonathanMarcil-3.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=File:OWASPMtl-JonathanMarcil-3.jpg&amp;diff=230109"/>
				<updated>2017-05-30T04:26:53Z</updated>
		
		<summary type="html">&lt;p&gt;Svieg: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Jonathan Marcil at owasp mtl&lt;/div&gt;</summary>
		<author><name>Svieg</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=File:OWASPMtl-JonathanMarcil-1.jpg&amp;diff=230108</id>
		<title>File:OWASPMtl-JonathanMarcil-1.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=File:OWASPMtl-JonathanMarcil-1.jpg&amp;diff=230108"/>
				<updated>2017-05-30T04:26:03Z</updated>
		
		<summary type="html">&lt;p&gt;Svieg: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Jonathan Marcil at owasp mtl&lt;/div&gt;</summary>
		<author><name>Svieg</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=File:OWASPAppSecBelfast2017-7.jpg&amp;diff=230107</id>
		<title>File:OWASPAppSecBelfast2017-7.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=File:OWASPAppSecBelfast2017-7.jpg&amp;diff=230107"/>
				<updated>2017-05-30T04:16:24Z</updated>
		
		<summary type="html">&lt;p&gt;Svieg: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;OWASP mtl and ottawa at appsec belfast  2017&lt;/div&gt;</summary>
		<author><name>Svieg</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=File:NorthSec2017-6.jpg&amp;diff=230106</id>
		<title>File:NorthSec2017-6.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=File:NorthSec2017-6.jpg&amp;diff=230106"/>
				<updated>2017-05-30T04:14:35Z</updated>
		
		<summary type="html">&lt;p&gt;Svieg: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;owasp mtl at nsec17&lt;/div&gt;</summary>
		<author><name>Svieg</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=File:NorthSec2017-5.jpg&amp;diff=230105</id>
		<title>File:NorthSec2017-5.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=File:NorthSec2017-5.jpg&amp;diff=230105"/>
				<updated>2017-05-30T04:11:58Z</updated>
		
		<summary type="html">&lt;p&gt;Svieg: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;owasp mtl at nsec17&lt;/div&gt;</summary>
		<author><name>Svieg</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=File:Owasp_ottawa.jpg&amp;diff=229724</id>
		<title>File:Owasp ottawa.jpg</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=File:Owasp_ottawa.jpg&amp;diff=229724"/>
				<updated>2017-05-16T23:23:15Z</updated>
		
		<summary type="html">&lt;p&gt;Svieg: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Owasp talk&lt;/div&gt;</summary>
		<author><name>Svieg</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=Montr%C3%A9al&amp;diff=229723</id>
		<title>Montréal</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=Montr%C3%A9al&amp;diff=229723"/>
				<updated>2017-05-16T23:14:09Z</updated>
		
		<summary type="html">&lt;p&gt;Svieg: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Welcome &amp;amp; Bienvenue to the OWASP Montréal chapter ==&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:OWASP-Montreal-Logo.png|Logo OWASP Montréal]]&lt;br /&gt;
&lt;br /&gt;
The OWASP Foundation was established in 2001 as an open community and software security resource. Since then, OWASP has grown to be globally recognized as a credible source for application security standards. &amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
OWASP is an open community dedicated to enabling organizations to conceive, develop, acquire, operate, and maintain applications that can be trusted. All of the OWASP tools, documents, forums, and chapters are free and open to anyone interested in improving application security. We advocate approaching application security as a people, process, and technology problem because the most effective approaches to application security include improvements in all of these areas. &amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
OWASP is open to anyone. Anyone can attend OWASP's vendor agnostic local chapter meetings, participate in regional and global conferences, and contribute to the many OWASP projects. And anyone can start a new project, form a new chapter, or lend their expertise to help an OWASP Global Committee.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt;On parle français aussi ! Le chapitre de Montréal organise plusieurs activités gratuites afin de partager les connaissances en sécurité applicative avec la communauté de développeurs et gestionnaires. Suivez-nous sur les réseaux sociaux pour connaître les dates des conférences du midi et des workshops !&amp;lt;/b&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Top documentation from OWASP includes: &lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/index.php/Top_10_2013-Top_10 OWASP TOP 10 : The Ten Most Critical Web Application Security Risks]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/images/3/33/OWASP_Application_Security_Verification_Standard_3.0.1.pdf OWASP ASVS : Application Security Verification Standard]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/images/5/52/OWASP_Testing_Guide_v4.pdf OWASP Testing Guide : Penetration Testing Framework ]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/images/7/78/OWASP_AlphaRelease_CodeReviewGuide2.0.pdf OWASP Code Review Guide : Source Code Analysis Framework ]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/index.php/OWASP_Cheat_Sheet_Series OWASP Cheat Sheet : Best practices guidelines for developers ]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org OWASP Global ]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Chapter Leaders / Responsables du chapitre ===&lt;br /&gt;
&lt;br /&gt;
* [mailto:anne.gauthier@owasp.org Anne Gauthier], President/Présidente&lt;br /&gt;
* [mailto:michel.bourque{at}owasp.org Michel Bourque], Chapter coordinator and marketing manager/Coordination et Marketing&lt;br /&gt;
* [mailto:hugo.genesse(at)owasp.org Hugo Genesse], Web content and production manager/Site internet et Production &lt;br /&gt;
* [mailto:olivier.arteau(at)owasp.org Olivier Arteau], Logistic manager/Logistique&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Special thanks to / Remerciements : &lt;br /&gt;
* Simon Lacasse, Web content / Site internet&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;b&amp;gt; Reach our chapter / Joindre le chapitre &amp;lt;/b&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Follow OWASP's Montreal chapter's activities through social medias, register to events, watch the previous presentations and more! &lt;br /&gt;
&lt;br /&gt;
Suivez les activités du chapitre OWASP Montréal via les réseaux sociaux, inscrivez-vous aux activités, visualisez les anciennes présentations et plus encore! &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;b&amp;gt;[http://lists.owasp.org/mailman/listinfo/owasp-montreal Click here] to join the local chapter mailing list.&lt;br /&gt;
&amp;lt;br/&amp;gt;[http://lists.owasp.org/mailman/listinfo/owasp-montreal Inscrivez-vous ici] à la liste de courriels du chapitre afin de recevoir les dernières nouvelles!&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Want to be part of the community ? &lt;br /&gt;
Devenez membre de notre communauté ! &lt;br /&gt;
[https://www.owasp.org/index.php/Membership_Map Click here / Cliquer ici]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Eb_press_little.gif‎|OWASP Montreal Eventbrite|link=http://owaspmontreal.eventbrite.ca/]] &lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[Image:Yt-brand-standard-logo-630px.png‎|128px|YouTube OWASP Montreal Channel|link=http://www.youtube.com/owaspmontreal]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]   &lt;br /&gt;
[[Image:Speakerdecklogo.png‎|Slides of OWASP Montreal on SpeakerDeck |link=https://speakerdeck.com/owaspmontreal]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Twitter-bird-cropped-onwhite.png|@owaspmontreal on Twitter|link=https://twitter.com/owaspmontreal]]&lt;br /&gt;
[[Image:FacebookSquareLogo.png|OWASP Montreal Facebook page|link=https://www.facebook.com/owasp.montreal]]&lt;br /&gt;
[[Image:LinkedinSquareLogo.png|OWASP Montreal on LinkedIn|link=https://www.linkedin.com/groups/1379007/profile]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
&lt;br /&gt;
== Sponsorship &amp;amp; Membership / Commandite &amp;amp; Adhésion ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Btn_donate_SM.gif|link=http://www.regonline.com/donation_1044369]] to this chapter or become a local chapter supporter.&lt;br /&gt;
&lt;br /&gt;
Or consider the value of [[Membership | Individual, Corporate, or Academic Supporter membership]]. Ready to become a member? [[Image:Join_Now_BlueIcon.JPG|75px|link=https://myowasp.force.com/]]&lt;br /&gt;
&lt;br /&gt;
[http://www.regonline.com/donation_1044369 Donnez] au chapitre ou devenez commanditaire du chapitre local! &lt;br /&gt;
&lt;br /&gt;
[https://myowasp.force.com/ Devenez membre !] Pour en savoir davantage sur les avantages d’une adhésion individuelle, corporative ou en tant qu’institution d’enseignement, [https://www.owasp.org/index.php/Membership cliquez ici]. &lt;br /&gt;
&lt;br /&gt;
[[Category:OWASP Chapter]]&lt;br /&gt;
&lt;br /&gt;
== Chapter Supporters / Commanditaires du chapitre ==&lt;br /&gt;
&lt;br /&gt;
[https://www.owasp.org/images/9/91/OWASP_Membership_Flyer_Montreal.png All details available here / Pour tous les détails ] [[File:Chapter-supporter-owasp-montreal.png|200px|link=https://www.owasp.org/images/9/91/OWASP_Membership_Flyer_Montreal.png]] &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Platinum / Platine ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Gosecure-2.png|GoSecure|link=http://www.gosecure.ca/]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[File:Desjardins2-400x400.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Gold / Or ===&lt;br /&gt;
&lt;br /&gt;
[[Image:ImmunioLogo.jpg|Immunio|link=https://www.immun.io/]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Silver / Argent ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Ubitrak-r2.jpg|Ubitrak|link=http://www.ubitrak.com/fr/]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Lunch &amp;amp; Learn / Workshops 2017 =&lt;br /&gt;
&lt;br /&gt;
== Security Testing: Unlocking the Benefits of a Hybrid Approach ==&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 April 24th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
As part of their defensive efforts, businesses commonly commission cybersecurity assessments of their web applications; with the aim of identifying any weaknesses in the security controls and ensuring a continually strong cybersecurity posture of their systems.&lt;br /&gt;
&lt;br /&gt;
The classical approach of either secure code review (white box) or penetration testing (black box) assessment have proven to be effective in securing of web applications. The new trend, however, is moving towards the combination of these two approaches; expert consensus is rapidly recognizing the advantages of using a hybrid approach. When applied properly, a hybrid approach can build on the strengths of both white and black box testing, while compensating for their individual shortcomings.&lt;br /&gt;
&lt;br /&gt;
In this presentation, we will examine the details of secure code review and penetration testing, and run demos to contrast their respective strengths and weaknesses. We will also examine why a hybrid approach can produce more complete and relevant assessment results. To conclude, we will cover proven approaches, and practical techniques, on how you can start leveraging a hybrid approach to web application assessments today.&lt;br /&gt;
&lt;br /&gt;
Anne Gauthier is an application security analyst at GoSecure. Anne is also the president of the Montreal Chapter of OWASP – the industry standard for web application security. With a penetration testing background, she specializes in secure code reviews and in helping companies to improve their software development lifecycle (SDLC) according to industry best practices. Anne is CSSLP, GWAPT and GSSP-JAVA certified. She obtained a Software Engineering bachelor’s degree from Ecole de Technologie Supérieure in Montréal and is now pursuing a Master of Engineering (MEng) degree in Information Systems Security at Concordia University. She is the author of the Project 201 Security blog.&lt;br /&gt;
&lt;br /&gt;
Merci à nos précieux commanditaires !&lt;br /&gt;
&lt;br /&gt;
== &amp;quot;HOW-TO&amp;quot; NIGHT ! Tout sur les CTFs (Capture The Flag) ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 April 4th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Shopify&lt;br /&gt;
&lt;br /&gt;
Cette nouvelle soirée &amp;quot;How-To&amp;quot; Night d'OWASP Montréal vise à présenter les CTFs (une compétition Capture The Flag) et aider les équipes à démarrer et à continuer à évoluer dans leurs pratique de la cyber sécurité pratique. L'objectif est d'outiller les participants en leur fournissant des ressources techniques et des contacts afin de les aider à progresser.&lt;br /&gt;
&lt;br /&gt;
Les éléments discutés seront:&lt;br /&gt;
&lt;br /&gt;
- Composition optimale d’une équipe : Fonctionnement d’une équipe de CTF et les principaux rôles (chef d’équipe, cryptographie, application web, rétro ingénierie et les causes perdues).&lt;br /&gt;
&lt;br /&gt;
- Pourquoi faire des CTFs? Discussion sur les différents styles (jeopardy, attack/defense, etc.), quels sont les problèmes fréquemments rencontrés + plusieurs anecdotes intéressantes (et drôles).&lt;br /&gt;
&lt;br /&gt;
- Trucs de Mr. Unikoder : Le créateur du fameux site ringzer0team, soit un des plus gros sites pour apprendre la résolution de problèmes de CTF (https://ringzer0team.com/) Apprenez des trucs du meilleur, sur comment débuter et interpréter un challenge web, binaire et crypto avec des trucs réels du métier.&lt;br /&gt;
&lt;br /&gt;
Matériel requis :&lt;br /&gt;
&lt;br /&gt;
    Votre légendaire enthousiasme&lt;br /&gt;
&lt;br /&gt;
Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
&lt;br /&gt;
Places limitées. Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Shopify pour l'événement.&lt;br /&gt;
&lt;br /&gt;
Présentateurs :&lt;br /&gt;
&lt;br /&gt;
Charles Hamilton, Senior Consultant chez Mandiant, FireEye, Inc.&lt;br /&gt;
&lt;br /&gt;
Olivier Bilodeau, Cybersecurity Research Lead at GoSecure&lt;br /&gt;
&lt;br /&gt;
Laurent Desaulniers, Senior Security Solution Specialist at Bell Canada&lt;br /&gt;
&lt;br /&gt;
== NorthSec - Applied Security Event ==&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 April 4th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
NorthSec: La plus grande compétition et conférence en cyber sécurité au Canada&lt;br /&gt;
&lt;br /&gt;
NorthSec est un organisme sans but lucratif qui organise une conférence et une compétition de sécurité de type &amp;quot;Capture-The-Flag&amp;quot; (CTF) et des formations. Avec plus de 400 participants présents sur le site pour la compétition, c’est la plus grande compétition du genre au monde.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
La conférence, dans sa 3e année, attire des présentateurs internationaux avec du contenu technique exclusif. L’ajout des séances de travail (workshops) devrait plaire aux plus chevronnés des binaires.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Des formations de 3 jours sont offertes avant la conférence: &amp;quot;Advanced Web Application Security&amp;quot; par Philippe Arteau et &amp;quot;Malware and Memory Forensics&amp;quot; par Michael Ligh, co-auteur des livres &amp;quot;Malware Analyst Cookbook&amp;quot; et &amp;quot;The Art of Memory Forensics&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
NorthSec est situé au Marché Bonsecours dans le Vieux-Port de Montréal au printemps du 15 au 21 mai 2017.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
La présentation couvrira:&lt;br /&gt;
&lt;br /&gt;
- Le plan pour 2017&amp;lt;br/&amp;gt;&lt;br /&gt;
- Ce qui différencie NorthSec&amp;lt;br/&amp;gt;&lt;br /&gt;
- Comment équilibrer une compétition pour les débutants et les experts&amp;lt;br/&amp;gt;&lt;br /&gt;
- Comment bâtir une infrastructure basée sur les conteneurs qui gère 50 équipes dans quelques serveurs sans qu’ils ne se partagent de machines virtuelles&amp;lt;br/&amp;gt;&lt;br /&gt;
- Comment faire du pain au levain à grande échelle&amp;lt;br/&amp;gt;&lt;br /&gt;
- Présentation de quelques défis et solutions&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Les présentateurs:&lt;br /&gt;
&lt;br /&gt;
- Gabriel Tremblay, Président, Delve Labs&amp;lt;br/&amp;gt;&lt;br /&gt;
- Olivier Bilodeau, VP Formations, Co-fondateur MontréHack, GoSecure&amp;lt;br/&amp;gt;&lt;br /&gt;
- Pierre-David Oriol, VP Conférences, Delve Labs&amp;lt;br/&amp;gt;&lt;br /&gt;
- Benoit Guérette, VP Partenaires, Desjardins&amp;lt;br/&amp;gt;&lt;br /&gt;
- Laurent Desaulniers, Tisserand de drapeaux, Bell Canada&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Merci à nos précieux commanditaires !&lt;br /&gt;
&lt;br /&gt;
== Sécurité des applications : Les fondements ==&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 March 20th, 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
OWASP Montréal est fier d’accueillir au Midi Conférence du mois de mars, Mme Tanya Janca, Co-Leader du chapitre OWASP Ottawa et spécialiste de la sécurité applicative au sein du Gouvernement fédéral.&lt;br /&gt;
&lt;br /&gt;
La conférence « Les fondements de la sécurité des applications » sera présentée en anglais.&lt;br /&gt;
&lt;br /&gt;
Session Description : Everyone has heard about the problem; everyone is “getting hacked”. But what is the answer? From scanning your code with a vulnerability scanner to red teaming exercises, developer education programs and bug bounties, this talk will take the audience through all the possibilities of an extensive application security program, with a detailed explanation of each part.&lt;br /&gt;
&lt;br /&gt;
Bio : Tanya Janca is an application security evangelist, a web application penetration tester and vulnerability assessor, a secure code reviewer, an ethical hacker, the Co-Leader of the OWASP Ottawa chapter, and has been developing software since the late 90’s. She has worn many hats and done many things, including; Custom Apps, Ethical Hacking, COTS, Incident Response, Enterprise Architect, Project and People Management, and even Tech Support. She is currently helping the Government of Canada secure their web applications.&lt;br /&gt;
&lt;br /&gt;
Merci à notre commanditaire principal de cet événement: Ubitrak!&lt;br /&gt;
&lt;br /&gt;
== WORKSHOP ! Server Side Template Injection (SSTI) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-okiok-SSTI-r.jpg | WORKSHOP ! Server Side Template Injection (SSTI) ]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/workshop-server-side-template-injection-ssti]] [https://speakerdeck.com/owaspmontreal/workshop-server-side-template-injection-ssti See the slides / Voir la présentation]&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 22 Février 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Shopify Montréal&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
OWASP Montreal vous invite à un atelier portant sur la sécurité des applications web supportant les moteurs de template (Template Engine). Le principe de séparation entre la présentation du site (code HTML statique) et de son contenu dynamique facilite la création de documents HTML et la capacité à modifier l'apparence du site sans mélanger le traitement et le rendu de la page. L'utilisation de moteurs de template amène de nouveaux enjeux de sécurité. Les vulnérabilités de type Server Side Template Injection (SSTI) sont exploitables à travers les données (non fiables) fournies par l'utilisateur et conduisent à l'exécution de code arbitraire (RCE) sur le serveur hébergeant l'application web.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ce workshop a pour but d'introduire cette classe de vulnérabilité à travers différents cas d'implémentation (php, java, python).&lt;br /&gt;
Nous verrons comment identifier et exploiter ces vulnérabilités et de quelle manière un attaquant peut &lt;br /&gt;
s'y prendre pour exécuter du code arbitraire sur le serveur afin d'en prendre le contrôle.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Niveau : Intermédiaire&amp;lt;br/&amp;gt;&lt;br /&gt;
Matériel requis :&lt;br /&gt;
* Votre portable&lt;br /&gt;
* Votre distribution Linux/Unix de votre choix&lt;br /&gt;
* Votre proxy Web de votre choix&lt;br /&gt;
&lt;br /&gt;
Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
Places limitées. Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Shopify pour l'événement.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Présentateur : Gérôme Dieu&amp;lt;br/&amp;gt;&lt;br /&gt;
Gérôme Dieu cumule plus de 7 années d’expérience en technologies de l’information et en sécurité. &lt;br /&gt;
Il œuvre à titre de conseiller senior en sécurité de l’information au sein de la firme OKIOK. Ces dernières années, il a acquis une expertise dans le domaine de la sécurité des applications web aussi bien d'un point de vue offensif que défensif. En plus de réaliser des tests d’intrusion pour des clients internationaux, Gérôme s’implique dans la recherche et développement afin de maintenir à la fine pointe de la technologie les tests d'intrusion et d'analyse de vulnérabilités. &amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Merci à Shopify d'héberger l'événement !&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Shopify Logo-r.png| Shopify | link=https://www.shopify.com/]]&lt;br /&gt;
== Le courriel en 2017 – risques et menaces pour tous ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Zero spam 2.jpg|Le courriel en 2017 – risques et menaces pour tous]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://www.youtube.com/watch?v=HX2vcijcCWw ]] [https://www.youtube.com/watch?v=HX2vcijcCWw Watch the conference / Regarder la conférence ]&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 Le 23 janvier 2017 à midi&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
Monsieur Poellhuber nous brossera un tableau du phénomène grandissant du rançongiciels et de l'hameçonnage, personnification.&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
- Par les années passées, la menace courriel se résumait principalement en un fort volume de contenu simplement indésirable. Aujourd’hui la menace a passablement évolué. Quels sont les véritables risques actuels associés au courriel ? Rançongiciels, hameçonnage, personnification. Cette conférence présentera les nouveaux défis de sécurité pour les organisations qui doivent composer avec des attaques de plus en plus sophistiquées et de plus en plus ciblées tout en protégeant leur réputation. Des exemples biens réels, drôles et moins drôles seront disséqués pour bien dessiner l’ampleur de l’enjeu.&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
M. David Poellhuber, Chef de l’exploitation, ZEROSPAM Sécurité Inc&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note biographique :&amp;lt;br/&amp;gt;&lt;br /&gt;
Monsieur David Poellhuber oeuvre dans l’industrie de la sécurité informatique depuis quinze ans. Il a été conférencier dans plusieurs forums de sécurité au Canada et est maintenant reconnu comme une autorité en matière de sécurité du courriel. Il a fondé ZEROSPAM Sécurité en 2003, le premier service Québécois externalisé de sécurité du courriel infonuagique qui se distingue par sa convivialité, son efficacité et ses technologies de détection proactives.&amp;lt;br/&amp;gt;&lt;br /&gt;
Audience :  Généralistes et spécialistes de la sécurité des TI &lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Merci à Ubitrack pour le repas et à Desjardins d'héberger l'événement!&lt;br /&gt;
&lt;br /&gt;
[[Image:Ubitrak-r2.jpg|Ubitrak|link=http://www.ubitrak.com/fr/]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&lt;br /&gt;
== Effective XSS Mitigation ==&lt;br /&gt;
&lt;br /&gt;
[[Image:XSS mitigation.jpg | Effective XSS Mitigation ]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=http://slides.com/olivierarteau/xss-mitigation ]] [http://slides.com/olivierarteau/xss-mitigation See the slides / Voir la présentation]&lt;br /&gt;
&lt;br /&gt;
WHEN &lt;br /&gt;
 18 Janvier 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Google Montréal&lt;br /&gt;
&lt;br /&gt;
FRANÇAIS/ENGLISH&amp;lt;br/&amp;gt;&lt;br /&gt;
La mitigation de XSS a été un sujet important au cours des dernières années. Les navigateurs ont implémenté, en autre, deux fonctionnalités pour mitiger leur impact : l'entête &amp;quot;XSS-Protection&amp;quot; et l'entête &amp;quot;Content-Security-Policy&amp;quot;. Par contre, obtenir une mitigation contre les XSS efficace est souvent plus complexe que l'on pense. Cet atelier couvrira les deux entêtes. Il expliquera comme il est possible de contourner ces protections et ce qu'il est possible de faire pour se protéger. Des exercices de type &amp;quot;offensif&amp;quot; et &amp;quot;défensif&amp;quot; seront proposés.&lt;br /&gt;
Mitigation for XSS as been an important topic in the last few years. Browsers have implemented two main functionalities to help mitigate the impact of XSS : the &amp;quot;XSS-Protection&amp;quot; header and the &amp;quot;Content-Security-Policy&amp;quot; header. But, getting an effective XSS mitigation of those headers is trickier than it may seem. This workshop will cover both of those headers. It will explain how bypass of those protection work and what you can do about it. It will have both &amp;quot;defensive&amp;quot; exercises and &amp;quot;offensive&amp;quot; exercises.&lt;br /&gt;
Niveau : débutant/intermédiaire&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Matériel requis :&lt;br /&gt;
&lt;br /&gt;
Votre portable&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
&lt;br /&gt;
Places limitées. Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Google pour l'événement.&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Présentateur : Olivier Arteau&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Olivier Arteau est un professionnel en sécurité informatique depuis quelques années et fait partie de l’équipe de test d’intrusion de Desjardins. Il est aussi un amateur de CTF qui a gagné à plusieurs reprises le CTF du NorthSec avec l’équipe HackToute et participe fréquemment à d’autres CTF avec l’équipe DCIETS.&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Merci à Google d'héberger l'événement! &lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-zap-4-r.jpg | Google | link=https://www.google.ca/ ]]&lt;br /&gt;
&lt;br /&gt;
= Lunch &amp;amp; Learn / Workshops 2015-2016 =&lt;br /&gt;
&lt;br /&gt;
== WORKSHOP ! Top 10 OWASP - Unleash the threats ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-top10.jpg | WORKSHOP! Top 10 OWASP - Unleash the threats ]]&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 30 novembre 2016 de 17h30 à 20h30&lt;br /&gt;
WHERE&lt;br /&gt;
 Immunio @ WeWork&lt;br /&gt;
&lt;br /&gt;
De nos jours, la sécurité applicative est essentielle dans l’écosystème des entreprises de toutes tailles. Les vecteurs d’attaques sont multiples, les vulnérabilités de sécurité dans les applications peuvent être désastreuses et les impacts d’un « Hack » peuvent être irréversibles pour l’entreprise; vols de données sensibles, perte de réputation, perte de $$$$$, etc.&lt;br /&gt;
L’objectif du workshop est de comprendre la base sur les vulnérabilités de sécurité dans les applications et les techniques d’exploitation utilisées par les pirates informatiques, en plus de connaître les bonnes pratiques de développement en matière de sécurité applicative. &lt;br /&gt;
Avec l'aide de WebGoat, Damn Vulnerable Web Application et de Kali Linux, vous pourrez participer&lt;br /&gt;
à l'exploitation des applications et découvrir les techniques utilisées par les attaquants.&lt;br /&gt;
&lt;br /&gt;
Niveau : débutant&lt;br /&gt;
&lt;br /&gt;
Matériel requis :&lt;br /&gt;
 Votre portable&lt;br /&gt;
 Kali Linux&lt;br /&gt;
 La VM du workshop, envoyée aux participants&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
&lt;br /&gt;
Places très limitées (nb = 10). Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Immunio &amp;amp; WeWork pour l'événement.&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Présentateur : Christian Leclerc&lt;br /&gt;
&lt;br /&gt;
Christian est spécialisé en conception et développement de solutions web sécuritaires. Tout au long de sa carrière, il a acquis une vaste expertise sur plusieurs types de technologies et méthodologies, intégré la sécurité dans le cycle de développement d’applications, effectué des revues de code sécurité, déployé des outils d’analyse des vulnérabilités et mis en place des systèmes d’authentification. De plus, il a participé à la conception et au développement de solutions sécuritaires de pointe comme la signature électronique à l’aide d’une infrastructure à clé publique (PKI), les authentifications fortes, le Registre des consentements au don d'organes et de tissus (RDOQ.org) et la migration de plusieurs applications web vers un environnement SOA (Service Oriented Architecture). &lt;br /&gt;
&amp;lt;br&amp;gt;Merci à Immunio &amp;amp; WeWork d'héberger l'événement!&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:Immunio-horizontal-r.png|Immunio|link=https://www.immun.io/]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[Image:Wework-r.jpg|WeWork|link=https://www.wework.com/]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Histoire d'un Hack ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Histoire-dun-hack-r.jpg | Histoire d'un Hack ]]&lt;br /&gt;
&lt;br /&gt;
WHEN &lt;br /&gt;
 21 novembre 2016 à midi&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
Pour son activité du mois de novembre, OWASP Montréal propose à la communauté de la sécurité des TI et aux gestionnaires de faire l'autopsie d'une attaque de haute voltige sur un site web et des outils mis à la disposition par OWASP.&lt;br /&gt;
 &lt;br /&gt;
Bernard Bolduc cumule plus de 17 années d’expérience en technologies de l’information et en sécurité. Il œuvre à titre de conseiller senior en sécurité de l’information au niveau d’entreprise de classe nationale et internationale.&lt;br /&gt;
 &lt;br /&gt;
Bernard se spécialise en sécurité Unix, applicative et en gestion de la sécurité des télécommunications. Il combine ces expertises techniques afin d’obtenir des résultats probants et efficaces pour ces clients des secteurs bancaire, télécommunication et multimédias, de l’énergie ou des services publiques. Tout au long de sa carrière, Bernard s’est toujours maintenu à jour sur les dernières menaces de sécurité technologique et commerciale en assistant à des formations spécialisées et d'échanger avec un grand nombre de partenaires dans l'industrie de la sécurité.&lt;br /&gt;
 &lt;br /&gt;
La conférence débute à midi.&lt;br /&gt;
 &lt;br /&gt;
La conférence vous donne droit à 1 CPE et pour les 50 premières personnes, un lunch gratuit.&lt;br /&gt;
 &lt;br /&gt;
Merci à Desjardins d'héberger l'événement!&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Workshop ! Création de votre première extension OWASP ZAP (ou BurpSuite) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-zap-mix.jpg | Workshop ! Création de votre première extension OWASP ZAP (ou BurpSuite)]]&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 11 novembre 2016 de 18h à 21h&lt;br /&gt;
&lt;br /&gt;
WHERE &lt;br /&gt;
 Google Montréal&lt;br /&gt;
&lt;br /&gt;
OWASP Zed Attack Proxy (ZAP) est un scanneur de vulnérabilités et un outil de débogage HTTP. Ce type d'outil est crucial dans un test d'intrusion web et contient un lot intéressant de fonctionnalités. Cela dit, il est possible d'étendre les fonctionnalités. Plusieurs types d'extension sont possibles : vue alternative pour les requêtes ou les réponses, scanneur passif des réponses, scanneur actif produisant des requêtes, etc.&lt;br /&gt;
&lt;br /&gt;
Plusieurs options seront données, par exemple :&lt;br /&gt;
&lt;br /&gt;
 Détection automatique de flag dans les sources&lt;br /&gt;
 Scanneur actif asynchrone DNS&lt;br /&gt;
 Ou votre propre idée&lt;br /&gt;
&lt;br /&gt;
Pour chacune des suggestions, des squelettes de code seront fournis pour les APIs de ZAP. Pour les utilisateurs de BurpSuite, des directives analogues seront également données.&lt;br /&gt;
&lt;br /&gt;
Niveau : débutant / intermédiaire&lt;br /&gt;
&lt;br /&gt;
Matériel requis&lt;br /&gt;
&lt;br /&gt;
 Votre portable&lt;br /&gt;
 [https://www.owasp.org/index.php/OWASP_Zed_Attack_Proxy_Project OWASP ZAP (gratuit)]&lt;br /&gt;
 [https://portswigger.net/burp/download.html BurpSuite]&lt;br /&gt;
 Éditeur de code pour Java, Python ou Ruby&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Présentateur : Philippe Arteau&lt;br /&gt;
&lt;br /&gt;
Philippe est un chercheur en cybersécurité chez GoSecure. Il est l'auteur de l'outil d'analyse statique Java &amp;quot;Find Security Bugs&amp;quot;. Il a découvert des vulnérabilités importantes dans les logiciels populaires tels que Google Chrome, Dropbox, Paypal, RunKeeper et Jira. Il a présenté dans différentes conférences incluant Black Hat USA, Black Hat Europe, ATL Sec Con, NorthSec, Hackfest (QC) et JavaOne. Il a développé de nombreux plug-ins pour les outils de proxy BurpSuite et OWASP ZAP (Retire.js, Reissue Request Script, PDF preview et Image Metadata). Il a fait également des contributions à d'autres plug-ins comme J2eeScan.&lt;br /&gt;
&lt;br /&gt;
Merci à Google d'héberger l'événement! &lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-zap-4-r.jpg | Google | link=https://www.google.ca/ ]]&lt;br /&gt;
&lt;br /&gt;
==Logiciel de rançon (Ransomware) s'attaque au domaine de la santé==&lt;br /&gt;
&lt;br /&gt;
[[Image:HackingHealth-2.jpg | Logiciel de rançon (Ransomware) s'attaque au domaine de la santé ]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/ransomware-and-healthcare-hacking-health ]] [https://speakerdeck.com/owaspmontreal/ransomware-and-healthcare-hacking-health See the slides / Voir la présentation]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;(Conférence en anglais)&lt;br /&gt;
Pour le lancement de la saison 2016 - 2017, OWASP Montréal propose à la communauté de la sécurité des TI et aux gestionnaires de la santé une incursion dans le monde du logiciel malveillant ciblant le domaine de la santé.&amp;lt;br/&amp;gt;&lt;br /&gt;
Cette conférence s'intége dans le Coopérathon co-organisé par le Mouvement Desjardins et Hacking Health.&amp;lt;/b&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Le domaine de la santé serait devenu une cible privilégiée des campagnes de ransomware parce que l'industrie a souvent payé la rançon demandée pour récupérer les données confidentielles et vitales de ses clients. Monsieur Ed Gershfang nous brossera un portrait du phénomène et des meilleures pratiques à mettre en place en matière de sécurité applicative.&lt;br /&gt;
Ed Gershfang possède une expérience solide dans l'infrastructure informatique et plus de 6 ans d'expérience dans les domaines de la sécurité de l'information, de la vulnérabilité, de la gouvernance et de la gestion des risques. Il était directeur de la sécurité pour la société PeriGen, un chef de file de développement de logiciels médicaux en Israël.&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== La sécurité applicative vue par un pentesteur ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Juin2016-OWASPMtl.jpg | OWASP Montréal reçoit Mario Contestabile, Pentester de renom ]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
From Left to Right : Isabelle Lusseyran, Head of Development at Hacking Health. Eduard Gershfang Information Security Analyst at WSP | Parsons Brinckerhoff.&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/owasp-montreal-recoit-mario-contestabile ]] [https://speakerdeck.com/owaspmontreal/owasp-montreal-recoit-mario-contestabile See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Pour clore la saison 2015 – 2016, OWASP Montréal est fier d’accueillir au Midi Conférence un des architectes de renom du développement applicatif au Canada, monsieur Mario Contestabile.&lt;br /&gt;
En tant qu’auteur de plusieurs centaines de tests d’intrusion, il connait tous les rouages de ce qu’est véritablement une application Web «sécurisée». Mais avez-vous déjà remarqué que les rapports de tests d’intrusion mentionnent rarement, voir jamais : «Votre site est très difficile à pirater. Félicitations !» ?&lt;br /&gt;
Et qu’en est-il de ces rapports qui contiennent des dizaines de soi-disant vulnérabilités ? Est-ce que cela signifie d’emblée que l’application devrait être mise hors ligne ?  &lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Lors de cette conférence, nous examinerons des rapports concrets (ambigus) de vulnérabilités et nous les analyserons afin de mieux comprendre si elles représentent une véritable menace, ou si elles ne servent qu’à «remplir» les rapports.&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Avec son expertise en protection et en attaque d’applications Web, il abordera les points suivants :&lt;br /&gt;
Comment pouvez-vous sélectionner des systèmes de façon à mieux exécuter des protections de sécurité ?&lt;br /&gt;
Éviter certains pièges dans votre application Web qui rendent les attaques plus faciles et la protection plus difficile.&lt;br /&gt;
De nos jours, que peuvent faire les développeurs à l’intérieur de systèmes communs, qui puisse me rendre la tâche plus ardue en tant que « hacker »?&lt;br /&gt;
Pouvons-nous exiger de meilleurs rapports de la part des firmes de sécurité?&lt;br /&gt;
À quoi devrions-nous nous attendre de la part d’un « pentesters »?&lt;br /&gt;
Comment pouvons-nous savoir si le « pentester » a vérifié les failles de l’application et qu’il n’a pas simplement utilisé un scanneur?&lt;br /&gt;
Et enfin, comment pouvons-nous aider les « ethical hackers » à obtenir un meilleur rendement lors d’un test d’intrusion?&lt;br /&gt;
Il expliquera le sujet en détails, et ensemble, nous verrons de quelles façons les développeurs d’applications peuvent exploiter le savoir-faire des « pentesters », et comment nous pouvons faire en sorte qu’une application Web soit protégée.&lt;br /&gt;
Biographie :&lt;br /&gt;
Mario Contestabile est reconnu comme l’un des experts en sécurité les plus réputés au Canada. Son expertise, construire et protéger votre plateforme applicative. Ancien développeur C++ et Java, Mario partage ses nombreuses connaissances en « ethical hacking » et en développement de codes sécurisé.  &lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Tuesday, 14 June 2016 from 12:00 PM to 1:00 PM (EDT) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Comment protéger les applications mobiles? ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Avril2016-OWASPMtl.png | Comment protéger les applications mobiles? ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/comment-proteger-les-applications-mobiles ]] [https://speakerdeck.com/owaspmontreal/comment-proteger-les-applications-mobiles See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Dans le cadre des Midis Conférence à l'Espace Desjardins, l'équipe OWASP Montréal vous invite à assister à une présentation sur les vulnérabilités les plus communes associées aux appareils mobiles. &lt;br /&gt;
Marie-Claire Willig détaillera entre autres comment stocker de façon sécuritaire les données de l’application mobile ainsi que protéger l’application contre des attaques externes. Des outils simples vous seront dévoilés pour détecter ces vulnérabilités.&lt;br /&gt;
Marie-Claire est une professionnelle d'expérience en sécurité appliquée.&lt;br /&gt;
Une grande partie de son intérêt professionnel réside actuellement dans un domaine assez niche, soit la revue de code sécuritaire, un fondement important de tout cycle de développement sécuritaire en entreprise.&lt;br /&gt;
Au sein de l'équipe de sécurité technologique Desjardins, elle est, en autre, responsable de former les développeurs (Java et .NET principalement) afin de les sensibiliser aux meilleures pratiques de développement sécuritaire.&lt;br /&gt;
Également, elle est une professionnelle des tests d'intrusion sur les applications web, les applications mobiles ainsi que l'infrastructure réseau.&lt;br /&gt;
Bienvenue à tous&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 20 April 2016 from 12:15 PM to 1:00 PM (EDT) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== NorthSec, Le plus gros événement de cybersécurité appliquée au Canada ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Mars2016-OWASPMtl.jpg | NorthSec, Le plus gros événement de cybersécurité appliquée au Canada ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/YQtvltQYs7Y]] [https://youtu.be/YQtvltQYs7Y Watch the conference / Regarder la conférence] &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
OWASP Montréal est fier d’inviter au Midi Conférence de mars, NorthSec est le plus gros événement de sécurité appliquée au Canada qui comprend deux jours de formation, deux jours de conférences ainsi qu’une compétition du genre « capture the flag » (CTF) de trois jours.&lt;br /&gt;
Gabriel Tremblay, Benoit Guerette, Pierre-David Oriol et Laurent Desaulniers viendront vous parler de cet organisme sans but lucratif dynamique qui est géré par une équipe de bénévoles passionnés qui donnent à chaque année leur énergie et leur temps pour soutenir la communauté de la sécurité de l’information.&lt;br /&gt;
Le volet compétition, l’épreuve maîtresse, est présentée sous forme d’un scénario qui rend cohérent une centaine de défis techniques. Les équipes de participants attaquent l’infrastructure de compétition pour soutirer des drapeaux (flags) à travers un ensemble de vulnérabilités présentes comme de l’injection SQL, des XSS ou encore l’exploitation d’exécutables sur systèmes embarqués. Quelques exemples de défis des années passées seront également présentés.&lt;br /&gt;
Le volet conférence, qui est à sa 2ème année, met de l’avant plusieurs présentations techniques touchant la sécurité applicative mais aussi l’éthique et leurs impacts sociaux. Certaines présentations confirmées seront dévoilés.&lt;br /&gt;
Le tout nouveau volet formation propose deux formations en sécurité applicative de calibre international (anglais) : “Advanced Web Security Testing with Burp Pro” et “Modern Object-Oriented Malware Reverse Engineering”.&lt;br /&gt;
Venez aussi, découvrir comment l'équipe est partie d'une idée en 2012 pour se rendre à un évènement d'envergure, qui rassemblera plus de 600 professionnels, étudiants et autres passionnés de sécurité appliquée lors de la 4ème édition qui aura lieu du 17 au 22 mai 2016 au Marché Bonsecours.&lt;br /&gt;
Finalement, la mission, la vision ainsi que les activités sociales de la semaine de NorthSec sont aussi au menu de cette présentation qui sera suivie d’une période de questions.&lt;br /&gt;
&lt;br /&gt;
Gabriel Tremblay, Delve Labs, Président&lt;br /&gt;
Benoit Guerette, Desjardins, VP Finances&lt;br /&gt;
&lt;br /&gt;
Pierre-David Oriol, Delve Labs, VP Conférence&lt;br /&gt;
Laurent Desaulniers, Bell Canada, Artisant de drapeaux&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 23 March 2016 from 12:00 PM to 1:00 PM (EDT) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== La sécurité applicative et l'hameçonnage - February 24th ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Fevrier2016-OWASPMtl.jpg | La sécurité applicative et l'hameçonnage ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/1RYlOiIENjQ]] [https://youtu.be/1RYlOiIENjQ Watch the conference / Regarder la conférence] &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
De nos jours, une des méthodes les plus efficaces pour contourner les périmètres de sécurité externes est l'hameçonnage conjointement avec l’abus de certaines technologies Web.&lt;br /&gt;
&lt;br /&gt;
Dans le cadre ses activités, OWASP Montréal est heureux d'inviter d'accueillir, l'équipe OKIOK qui présentera les impacts liés à ce type d'attaque, tel que vu et expérimenté en entreprise ainsi que les plans d'action pour traiter ces risques. La présentation abordera aussi bien la sécurité web et applicatives, des systèmes informatiques ainsi que de la sécurité physique de centres de données. &lt;br /&gt;
&lt;br /&gt;
    Capture d'informations sensibles par imitations de portails Web ;&lt;br /&gt;
    Authentification Web par 2-facteurs ;&lt;br /&gt;
    Injection SMTP dans des formulaires Web ;&lt;br /&gt;
    Attaque de type “Drive-by-download”;&lt;br /&gt;
    Prise de contrôle à distance à travers des flux HTTP;&lt;br /&gt;
    Attaque de CSRF à partir de courriels ;&lt;br /&gt;
    Attaque d'hameçonnage basée sur des achats par Internet (ex : PayPal).&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
When&lt;br /&gt;
 Wednesday, 24 February 2016 from 12:00 PM to 1:15 PM (EST) - Add to Calendar &lt;br /&gt;
Where&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest Montreal, Quebec CA&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Internet of {Things, Threats} - January 20th ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Janvier2016-OWASPMtl-R.png | Internet of {Things, Threats} ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=http://gosecure.github.io/presentations/2016-01-20_owasp-mtl/internet-of-threats.html ]] [http://gosecure.github.io/presentations/2016-01-20_owasp-mtl/internet-of-threats.html See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
De plus en plus de périphériques se retrouvent connectés sur Internet. Sous la bannière &amp;quot;Internet of Things&amp;quot; (IoT) ces équipements, que ce soit une pompe à insuline ou un système de caméra de sécurité, tournent généralement sous un système GNU/Linux embarqué d'architecture MIPS ou ARM. La difficulté de mettre à jour ces équipements ainsi que le peu d'effort mis dans la sécurité des systèmes ou la sécurité applicative en font des cibles de choix. Ces derniers mois, nous avons analysé plusieurs logiciels malveillants ciblant ces architectures. Que ce soit par l'exploitation d'une vulnérabilité (Shellshock) ou encore un défaut de configuration, ces systèmes exposés sur Internet peuvent être compromis.&lt;br /&gt;
&lt;br /&gt;
Notre présentation couvrira quelques une de ces analyses:&lt;br /&gt;
&lt;br /&gt;
* Linux/Moose, un malware se propageant automatiquement qui fraude les réseaux sociaux (par exemple Facebook, Twitter et YouTube)&lt;br /&gt;
* LizardSquad et acteurs étrangers qui utilisent des systèmes embarqués compromis pour réaliser des dénis de service distribué (DDoS) &lt;br /&gt;
* Win32/RBrute est un logiciel malveillant qui tente de changer les paramètres de routeurs dans le but de faire du &amp;quot;DNS poisoning&amp;quot;. Il a été distribué par le populaire botnet Sality.&lt;br /&gt;
* Un kit d'exploits qui utilise seulement le navigateur de leur victime avec le même objectif, c'est-à-dire faire du &amp;quot;DNS poisoning&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Enfin, des conseils seront proposés à l'audience pour l'aider à se protéger de ces menaces.&lt;br /&gt;
&lt;br /&gt;
'''Thomas Dupuy''' (twitter: @nyx__o)&lt;br /&gt;
&lt;br /&gt;
Thomas est chercheur en logiciel malveillant chez ESET Canada Recherche. Bon vivant, Thomas déjeune en &amp;quot;reversant&amp;quot; des binaires, contribue à quelques projets open source durant le diner (yara, yara rules, pefile, APTnotes) et la nuit participe à des &amp;quot;Hacking Games&amp;quot; (Capture The Flag). Curieux de nature Thomas analyse des malware aux architectures &amp;quot;exotiques&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Olivier Bilodeau''' (twitter: @obilodeau)&lt;br /&gt;
&lt;br /&gt;
Olivier Bilodeau is the head of Cybersecurity Research at GoSecure a consultancy firm specializing in cybersecurity services for the public and private sector. With more than 10 years of infosec experience, Olivier worked on Unix servers at Bell Canada, managed a portion of Air Canada's network, wrote open source network access control software at Inverse and worked as a Malware Researcher at ESET. He likes to reverse engineer everything that crosses his path, participate in information security capture-the-flag competitions, hack open source code and brew beer. He has spoken at various conferences (Defcon, Botconf, VirusBulletin, Derbycon, ...), used to lecture on information security at ETS University in Montreal, drives the NorthSec Hacker Jeopardy and co-organizes the MontreHack capture-the-flag training initiative. His primary research interests include reverse-engineering tools, Linux and/or embedded malware and honeypots.&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Survivre aux attaques DDOS applicatives ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Decembre2015-OWASPMtl.jpg | Survivre aux attaques DDOS applicatives ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Survivre aux attaques DDOS (Distributed Denial-Of-Service) applicatives.&lt;br /&gt;
Cette conférence s'adresse aux professionnels et gestionnaires des TI.&lt;br /&gt;
Conférencier : Christian Shink, ing., CSSLP, ingénieur système chez Radware, manufacturier spécialisé dans la prévention des attaques DDOS. Il fut également consultant en sécurité applicative chez In Fidem.&lt;br /&gt;
Objectifs de la conférence:&lt;br /&gt;
Présenter les tendances actuelles en matière d'attaques DDOS applicatives.&lt;br /&gt;
Renseigner les participants sur les techniques et stratégies pour contrer ces attaques illustrées à partir de cas vécus.&lt;br /&gt;
Démystifier certains mythes en ce qui concernent les façons efficaces de protéger les applications contre des attaques DDOS.&lt;br /&gt;
Date : 16 décembre 2015&lt;br /&gt;
Heure : 11h45&lt;br /&gt;
La conférence débute à 12h00 et se termine à 12:55.&lt;br /&gt;
Un lunch sera servi.&lt;br /&gt;
Réservez maintenant!&lt;br /&gt;
1 CPE&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 16 December 2015 from 11:45 AM to 1:00 PM (EST) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec &lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Sécurité des applications - Systèmes de contrôles industriels ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Novembre2015-OWASPMtl-R.png | Sécurité des applications - Systèmes de contrôles industriels ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/0eAZpyiQQ9A]] [https://youtu.be/0eAZpyiQQ9A Watch the conference / Regarder la conférence] &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&lt;br /&gt;
La sécurité des applications et les systèmes de contrôles industriels.&lt;br /&gt;
Cette conférence s'adresse aux professionnels et gestionnaires des TI desinfrastructures critiques qui exploitent ou gèrent des systèmes de contrôles industriels(SCI) et SCADA (surveillance et d'acquisition de données).&amp;lt;br/&amp;gt;&lt;br /&gt;
Conférenciers : Robert Nastas, CSSA. Gestionnaire de projet et Youssef Jad, Architecte Cyber sécurité, ICS-CERT&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Objectifs de la conférence:&lt;br /&gt;
* Démystifier le domaine d'affaires.&lt;br /&gt;
* Renseigner les participants sur les bonnes pratiques de sécurité desapplications liées au secteur industriel.&lt;br /&gt;
* Proposer aux professionnels et gestionnaires des TI responsables dessystèmes SCADA et SCI des pistes de solutions aux enjeux de sécurité.&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
L'équipe OWASP Montréal vous remercie d'avoir assisté en grand nombre à la conférence, 'La sécurité des applications et les systèmes de contrôles industriels'.&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 18 November 2015 from 11:45 AM to 1:00 PM (EST) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Les préoccupations actuelles de hauts dirigeants en matière de cybersécurité et de sécurité applicative ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Septembre2015-OWASPMtl.jpg | Les préoccupations actuelles de hauts dirigeants en matière de cybersécurité et de sécurité applicative ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/un-regard-sur-la-securite-de-linformation-en-2015-par-eric-hebert ]] [https://speakerdeck.com/owaspmontreal/un-regard-sur-la-securite-de-linformation-en-2015-par-eric-hebert See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Pour le lancement des activités corporatives de la saison 2015 - 2016, le 8 septembre prochain à 12:00, l'équipe OWASP Montréal convie les gestionnaires et artisants de la sécurité des TIC à venir entendre monsieur Éric Hébert qui nous présentera son interprétation des préoccupations actuelles de hauts dirigeants en matière de cybersécurité et de sécurité applicative. L'événement se tiendra au complexe Desjardins à la salle &amp;quot;Espace Desjardins&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
''' ÉRIC G. HÉBERT, CISM, CISSP ''' &amp;lt;br/&amp;gt;&lt;br /&gt;
Après plus de 20 ans passés dans le domaine de la sécurité des technologies de l’information, Éric se spécialise dans la mise en œuvre et la gestion d'équipes performantes, capables de relever les plus hauts défis de la cybersécurité moderne.&amp;lt;br/&amp;gt;&lt;br /&gt;
Capable de dialoguer avec les hauts dirigeants, il sait traduire et vulgariser les enjeux techniques complexes tout en respectant la nature et l'appétence au risque de ses clients. Dynamique et pourvu d'une expérience couvrant presque toutes les sphères de la SI, il fonce dans le respect de la culture établie tout en implantant des solutions pragmatiques et efficaces.&amp;lt;br/&amp;gt;&lt;br /&gt;
Depuis plus de 10 ans, il gravite principalement autour des entreprises du domaine financier (BNC, Desjardins, Fonds de solidarité FTQ...) et les accompagne dans la mise en place de solutions efficaces tenant compte à la fois des risques et des budgets.&lt;br /&gt;
En plus d’avoir fondé de nombreuses associations telles que le RéseauSécurIT et le RPSI, il maintient une présence régulière auprès des milieux associatifs professionnels et partage régulièrement ses expériences lors de conférences et d'entrevues avec divers médias.&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Events / Évènements =&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal at [https://hackfest.ca/ HackFest 2016] ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hackfest2016-r.jpg| HackFest |link=https://hackfest.ca/]]&lt;br /&gt;
&lt;br /&gt;
From left to right: Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Louis Nadeau, OWASP Québec Chapter Leader and Manager, Product Security at Bentley Systems and Patrick Leclerc, OWASP Québec Chapter Leader and Information Security Advisor at La Capitale.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal at OWASP [https://2016.appsecusa.org/ AppSec USA 2016, Washington] ==&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:OWASPMtl-AppSecUSA2016-Washington.jpg | OWASP Montreal at AppSec USA 2016, Washington]] &lt;br /&gt;
&lt;br /&gt;
​From left to right: Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Marie-Claire Willig, Application Security Analyst at Desjardins, Speaker and Cofounder of the Roslyn Security Guard tool which will be presented at Blackhat 2016, Alexandre Hamelin President at Synlabs Consulting Inc., Jonathan Marcil, Application Security Engineer at Blizzard Entertainment and former OWASP Montreal Chapter Leader. Philippe Arteau, Cybersecurity Researcher at GoSecure and designer of [https://find-sec-bugs.github.io/ Find Security Bugs] and Roslyn Security Guard tool which will be presented at Blackhat 2016.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://www.gosec.net GoSec] 2016 ==&lt;br /&gt;
&lt;br /&gt;
[[Image:OWASP-GoSec2016-1r.jpg|OWASP Montreal at GoSec 2016]] [[Image:OWASP-GoSec2016-2r.jpg|OWASP Montreal at GoSec 2016]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
From left to right : Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Simon Lacasse, student and volunteer, and Laurent Desaulniers, Security Analyst at Bell Canada.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://www.nsec.io/ NorthSec] 2016 – Annual Applied Security Event ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hackfest2016-OWASPMtl.jpg|OWASP Montreal at NorthSec 2016]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Simon Veilleux &lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
From left to right : Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Olivier Arteau OWASP Montréal Chapter Leader and Conseiller chez Groupe Technologie Desjardins, Hugo Genesse, OWASP Montréal Chapter Leader and Vulnerability Research Intern at Wurldtech Security Technologies.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://hackfest.ca/en/ Hackfest] 2015 ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hackfest2015-OWASPMtl-R.JPG | OWASP Montreal at Hackfest 2015]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Hackfest &lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
From left to right : Jonathan Marcil, Application Security Engineer at Blizzard Entertainment and former OWASP Montreal Chapter Leader. Philippe Arteau, Cybersecurity Researcher at GoSecure and designer of [http://find-sec-bugs.github.io/ Find Security Bugs] and Roslyn Security Guard tool which will be presented at Blackhat 2016. &lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/8U0qkEuUFy8]] [https://youtu.be/8U0qkEuUFy8 Watch the video / Regarder la vidéo]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://www.gosec.net/ GoSec] 2015 – The Annual Cybersecurity Conference presented by GoSecure, EY and ISACA. ==&lt;br /&gt;
&lt;br /&gt;
[[Image:GoSec2015-OWASPMtl.jpg|OWASP Montreal at GoSec 2015]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
From left to right : Marie-Claire Willig, Application Security Analyst at Desjardins, Speaker and Cofounder of the Roslyn Security Guard tool which will be presented at Blackhat 2016. Benoît Guérette, Application Security Team Leader at Desjardins, VP Finance at NorthSec and OWASP Montreal Chapter Founder and Former Chapter Leader.&lt;br /&gt;
&lt;br /&gt;
== See also / Voir aussi ==&lt;br /&gt;
&lt;br /&gt;
OWASP Montréal recommends Montréhack. Learn and share knowledge on IT security by solving technical challenges. Third Monday of every month. &lt;br /&gt;
&lt;br /&gt;
OWASP Montréal recommende Montréhack. Apprends et partages des connaissances sur la sécurité informatique en travaillant des problèmes appliqués. Chaque troisième lundi du mois. &lt;br /&gt;
&lt;br /&gt;
[[File:Montrehack.png|Montréhack|link=http://montrehack.ca/|alt=Montréhack]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Archives 2007-2015 =&lt;br /&gt;
{{:Montreal chapter past meetings}}&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - February 3rd - Getting to Know the Software Assurance Marketplace (SWAMP) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/p4_vjufcB6Q]] [https://youtu.be/p4_vjufcB6Q Watch the conference / Regarder la conférence]&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/getting-to-know-the-software-assurance-marketplace-swamp-by-pat-beyer]] [https://speakerdeck.com/owaspmontreal/getting-to-know-the-software-assurance-marketplace-swamp-by-pat-beyer See the slides / Voir la présentation] &amp;lt;br/&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Pat Beyer&lt;br /&gt;
*'''ADDITIONAL PRESENTER:'''  Abe Megahed&lt;br /&gt;
*'''ABSTRACT:''' The Software Assurance Marketplace (SWAMP) is an open facility that is designed, built, and operated by four research institutions. The SWAMP provides no-cost access to an array of open-source and commercial software analysis tools. This presentation will provide an overview and demo of the SWAMP, including our goals, intended audience, current capabilities, and future plans. We will cover our relationship with OWASP, incorporation of open-source software assurance tools, and status as an open-source project and resource available to the software community. Visit https://continuousassurance.org/ to learn more about us.&lt;br /&gt;
*'''BIO:''' Pat Beyer serves as the Product Manager for the Software Assurance Marketplace (SWAMP). With over 25 years of experience successfully managing multi-million dollar global projects, Beyer’s expertise extends to the IT, construction, and operations sectors, with a specialization in managing government contracts and grants. A gifted communicator, Beyer is a sought after speaker due to his ability to deliver complex information about technology products and services in a way that is easily understood. He is a decorated combat veteran of the Global War on Terror, the international military campaign that started following the 9/11 terrorist attacks on the United States. In 2004, he constructed and rehabilitated over 20 schools, clinics, and water treatment plants for the Iraqi people using local contractors. Beyer also holds a Bachelor of Science, a Masters in Business Administration, a Ph.D. in Organization and Management, and a Project Management Professional (PMP) certification.&lt;br /&gt;
*'''BIO:''' Abe Megahed is a web developer for the Software Assurance Marketplace. In previous lifetimes, he has been a computer graphics researcher, a game programmer, a programming language and compiler nerd, a dot com company founder, a creator of helicopter simulations, and a developer of 3D simulations for NASA astronaut crew training.&lt;br /&gt;
*'''WHEN:'''  Tuesday, February 3rd 2015&lt;br /&gt;
*'''WHERE:''' Room PK-1140 - UQAM Pavillon Président-Kennedy, 201 Avenue du Président-Kennedy  J2X 3Y7&lt;br /&gt;
*'''REGISTRATION:''' https://owaspmtlswamp2015.eventbrite.ca&lt;br /&gt;
*'''WEBCAST:''' https://www.youtube.com/watch?v=p4_vjufcB6Q&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/getting-to-know-the-software-assurance-marketplace-swamp-by-pat-beyer&lt;br /&gt;
&lt;br /&gt;
*'''ACADEMIC PARTNER:''' AGEEI-UQAM - http://www.ageei.org/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Welcome speech by Chapter Leader (Jonathan Marcil)&lt;br /&gt;
  18:30-20:00 Main session: Getting to Know the Software Assurance Marketplace&lt;br /&gt;
  20:00-...   End of the meeting&lt;br /&gt;
&lt;br /&gt;
[[Image:SWAMP-Logo-Final-Med.png|300px|link=https://continuousassurance.org/]]&lt;br /&gt;
[[Image:Ageeilogo.jpg|200px|link=http://www.ageei.org/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - 4 décembre - Malware côté serveur — évolution, méthodes d’opération et forensic Linux ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/lo8WDl-WQ3E]] [https://youtu.be/lo8WDl-WQ3E Watch the conference / Regarder la conférence] &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/malware-cote-serveur-par-marc-etienne-m-dot-leveille]] [https://speakerdeck.com/owaspmontreal/malware-cote-serveur-par-marc-etienne-m-dot-leveille See the slides / Voir la présentation] &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''PRÉSENTATEUR PRINCIPAL:''' Marc-Etienne M.Léveillé&lt;br /&gt;
*'''RÉSUMÉ:''' Les logiciels malveillants ciblant les serveurs ont évolué. Ils sont utilisés par des groupes de cybercriminels organisés dans le but de faire du profit via des redirections web et l’envoie de pourriels. La présentation portera sur Opération Windigo, une opération malveillante qui a affecté plus de 25 000 serveurs dans le monde. Après une brève description des composantes de Windigo, nous verrons comment les opérateurs déploient leurs logiciels malveillants et surveille leur réseau de serveurs infectés. Des trucs pratiques pour faire de la forensics sur des systèmes Linux seront donnés. Cette présentation est une suite à la présentation &amp;quot;Linux/Cdorked: Server side malware&amp;quot;, donnée par Olivier Bilodeau à OWASP Montréal en 2013. La présentation sera en français avec des diapositives en anglais (aka Montreal-style).&lt;br /&gt;
*'''BIO:''' Marc-Etienne est un chercheur en logiciel malveillant chez ESET depuis 2012. Il se spécialise dans les logiciels malveillants qui s’attaquent à des plateformes inhabituelles comme aux produits fruités et aux oiseaux nordiques. Dernièrement, il passe beaucoup de son temps à faire la rétro-ingénierie de logiciels malveillants sur des serveurs Linux et s’intéresse à leurs méthodes d’opération. Il adore participer de façon collégiale aux CTFs avec ses amis les CISSP Groupies et jouer de la clarinette. Il tweet très peu à @marc_etienne_.&lt;br /&gt;
*'''QUAND:''' 4 décembre 2014 à 18h00&lt;br /&gt;
*'''OÙ:''' Local M-1510, Polytechnique Montréal, 2900 Boulevard Edouard-Montpetit&lt;br /&gt;
*'''INSCRIPTION:''' https://www.eventbrite.ca/e/owasp-montreal-4-decembre-malware-cote-serveur-evolution-methodes-doperation-et-forensic-linux-tickets-14635313617&lt;br /&gt;
*'''ÉQUIPE ACADÉMIQUE:''' Polyhack - http://polyhack.org/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
&lt;br /&gt;
 18:00-18:30 Réseautage&lt;br /&gt;
 18:30-18:35 Mot de bienvenue par le leader du chapitre (Jonathan M.)&lt;br /&gt;
 18:35-19:30 Présentation principale : Malware côté serveur&lt;br /&gt;
 19:30-20:00 Période de questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Polyhacklogonoirpetit.png|200px|link=http://polyhack.org/]]&lt;br /&gt;
[[Image:LogoPolytechnique.gif|link=http://www.polymtl.ca/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - October 23rd - XXE : À l’assaut des analyseurs XML ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/MZviLB9-42E]] [https://youtu.be/MZviLB9-42E Watch the conference / Regarder la conférence] &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/xxe-a-lassaut-des-analyseurs-xml-par-philippe-arteau]] [https://speakerdeck.com/owaspmontreal/xxe-a-lassaut-des-analyseurs-xml-par-philippe-arteau See the slides / Voir la présentation] &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''PRÉSENTATEUR PRINCIPAL:''' Philippe Arteau&lt;br /&gt;
*'''RÉSUMÉ:''' L'utilisation d’XML est fortement répandue. Le format est utilisé pour des fichiers de configuration, pour des métadonnées, pour des documents textes, et bien plus. La prise en charge de fichiers XML n’est pas sans risque. La plupart des analyseurs XML ne sont pas sécuritaires par défaut pour le traitement de fichier externe. Cette présentation fera un survol des vulnérabilités de type « Xml eXternal Entity » et de l’étendue des risques pour différents langages de programmation. Plusieurs démonstrations sont prévues.&lt;br /&gt;
*'''BIO:''' Philippe est conseiller en sécurité applicative pour le Groupe Technologies Desjardins. Au quotidien, il s’occupe d’effectuer des tests d’intrusions et des revues de code. Il a découvert des vulnérabilités importantes dans plusieurs logiciels populaires incluant Google Chrome, DropBox, ESAPI et Jira.&lt;br /&gt;
*'''QUAND:'''  23 Octobre 2014 à 18h00&lt;br /&gt;
*'''OÙ:''' École de Technologie Supérieure Local A-3230, 1100 Rue Notre-Dame Ouest, Montréal, QC H3C 1K3&lt;br /&gt;
*'''INSCRIPTION:''' http://www.eventbrite.ca/e/owasp-montreal-23-octobre-xxe-a-lassaut-des-analyseurs-xml-tickets-13426881163&lt;br /&gt;
*'''PARTENAIRE ACADÉMIQUE:''' ETS - DCI http://dciets.com/&lt;br /&gt;
*'''PROGRAMME:''' &lt;br /&gt;
&lt;br /&gt;
 18:00-18:30 Réseautage&lt;br /&gt;
 18:30-18:45 Mot de bienvenue&lt;br /&gt;
 18:45-19:45 Présentation principale - &amp;quot;À l’assaut des analyseurs XML&amp;quot; Philippe Arteau&lt;br /&gt;
 19:45-20:00 Période de questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Blason_dci.png‎‎‎|150px|link=http://dciets.com/]]&lt;br /&gt;
[[Image:ETS-rouge-devise-impr-fond_transparent.png|150px|link=http://www.etsmtl.ca/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - July 24th - Web security for DevOps: the glory is in the headers ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/6bp1NCLT-YQ]] [https://youtu.be/6bp1NCLT-YQ Watch the conference / Regarder la conférence] &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/web-security-for-devops-the-glory-is-in-the-headers-by-jonathan-marcil]] [https://speakerdeck.com/owaspmontreal/web-security-for-devops-the-glory-is-in-the-headers-by-jonathan-marcil See the slides / Voir la présentation] &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Jonathan Marcil&lt;br /&gt;
*'''ABSTRACT:''' DevOps is a buzzword which can be easily demystified: in essence it is a process which aims to combine the development and system administration process into one; Operations. As developers become responsible for server setup, security counter measures are evolving as well. The line between server configuration and application behaviour has been blurred. In this talk we will cover some HTTP headers in regards to security such as CORS, CSP and HSTS. We will demonstrate several forms of attack, and how they can (should) be countered.&lt;br /&gt;
*'''BIO:''' Jonathan is devoted to security and specialized in Web application security.  His main occupation is consulting in Web security, but deep down he is a developer with a agnostic vision of programming languages. He has a diploma in Software Engineering from Ecole de Technologie Superieure and more than 10 years of experience in Information Technology and Security.&lt;br /&gt;
*'''WHEN:'''  At noon on July 24th 2014&lt;br /&gt;
*'''WHERE:''' 75 Queen Street, office 3100, Montreal, QC H3C 2N6&lt;br /&gt;
*'''REGISTRATION:''' You can join us on site for a pizza slice but this is mainly an online event. Contact jonathan.marcil@owasp.org.&lt;br /&gt;
*'''WEBCAST:''' https://www.youtube.com/watch?v=6bp1NCLT-YQ&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/web-security-for-devops-the-glory-is-in-the-headers-by-jonathan-marcil&lt;br /&gt;
*'''EVENT SPONSOR:''' Pheromone http://www.pheromone.ca/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  12:00-12:10 Welcome and quick OWASP introduction&lt;br /&gt;
  12:10-13:10 Main presentation - &amp;quot;Web security for DevOps: the glory is in the headers&amp;quot; Jonathan Marcil&lt;br /&gt;
  13:10-... Open discussion and questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Logo-phero.gif‎|link=http://www.pheromone.ca/]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - June 18th - Gaps in the Clouds ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/gaps-in-the-clouds-by-robert-fritz]] [https://speakerdeck.com/owaspmontreal/gaps-in-the-clouds-by-robert-fritz See the slides / Voir la présentation] &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Robert Fritz&lt;br /&gt;
*'''ABSTRACT:''' Cloud technology offers agility and scaling, and a chance to break away from legacy IT choices.  Unfortunately, skipping traditional IT activities often results in poorly patched systems, out of date firewalls, and overprovisioned entitlements wielded by admins whose “day job” is development.  Boundaries of accountability and responsibility amongst cloud providers and consumers are confusing, vague, and shift, making security difficult to manage.  In such an environment, a “BP-spill” event, where cost wins over safely safety, is likely.  This talk will dive down into the cracks between the layers of cloud, and share some of the exciting dirt we have seen and expect to see in coming years.”&lt;br /&gt;
*'''BIO:''' Robert Fritz has been practicing security his entire career. Rob started as an Air Force lieutenant at Langley AFB and later at the Pentagon in Washington DC, building and managing classified networks. Finding he was getting too far from technology after a brief stint flying, he left the military to get back to the tech, and built security tools for HP in their HP-Unix lab.  Over time he found himself in more and more security design discussions, so co-authored HP’s Commercial Application Threat Analysis Methodology, building an internal consulting practice at HP.  This quantitative approach, led to two pending patents, an external-facing consulting practice, and his contributions to NIST IR-7502, the Common Configuration Scoring System (CVSS follow-on).  He is the former lead editor for the Center for Internet Security’s HP-UX Benchmark, and current lead for the Android Benchmark.  Robert now works for Morgan Stanley as global head of the Strategic Consulting team in the Security Architecture group, and leads the team’s cloud and social-media security practices.&lt;br /&gt;
*'''WHEN:''' June 18th 2014&lt;br /&gt;
*'''WHERE:''' 700 Rue Wellington, Floor 2, Montreal, QC H3C 3S4&lt;br /&gt;
*'''REGISTRATION:''' http://owaspmtl18junems.eventbrite.ca&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/gaps-in-the-clouds-by-robert-fritz&lt;br /&gt;
*'''EVENT SPONSOR:''' Morgan Stanley http://www.morganstanley.com/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:30 Networking and Morgan Stanley Hosted Pizza and Soft Drinks&lt;br /&gt;
  18:30-18:45 OWASP Chapter &amp;amp; Morgan Stanley Welcome&lt;br /&gt;
  18:45-19:45 Main presentation - &amp;quot;Gaps in the Clouds&amp;quot; Robert Fritz&lt;br /&gt;
  19:45-20:00 Open discussion and questions&lt;br /&gt;
  20:00-...   Optional, informal networking at Aziatic - 626 rue Marguerite-d'Youville, Montréal, QC H3C 1W7&lt;br /&gt;
&lt;br /&gt;
[[Image:Morgan_Stanley_Historical_Logo.png|link=http://www.morganstanley.com/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - May 26th - Récapitulatif des challenges NorthSec ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/P8_V3RI1Ru4]] [https://youtu.be/P8_V3RI1Ru4 Watch the conference / Regarder la conférence] &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''PRÉSENTATEUR PRINCIPAL:''' Laurent Desaulniers&lt;br /&gt;
*'''RÉSUMÉ:''' Solutions de la compétition en sécurité NorthSec 2014 sur les sujets de  XXE + SSRF, WAF Bypass, Xpath Injection, DOM Injection, HTTP Only Flag bypass et contournement de captchas. Une bonne façon d'apprendre sur ces failles que vous étiez ou non un participant de la compétition.&lt;br /&gt;
*'''MESSAGE DU PRÉSENTATEUR:''' Vous voyez Rao dans votre soupe? Vous voulez une solution pour un XSS avec des cookies http only? Les captchas illisibles sont un problème? Assistez à la présentation de l'OWASP!&lt;br /&gt;
*'''BIO:''' Laurent Desaulniers est un passionné de sécurité informatique. Il a présenté au Hackfest, au colloque RSI, à OWASP et est challenge designer à NorthSec. M. Desaulniers détient les certifications CISSP, CISM, CISA et OSCP.&lt;br /&gt;
*'''QUAND:''' 26 mai à 18h00&lt;br /&gt;
*'''OÙ:''' Local PK-1140 - Pavillon Président-Kennedy 201, Avenue du Président-Kennedy, J2X 3Y7&lt;br /&gt;
*'''INSCRIPTION:''' https://www.eventbrite.ca/e/owasp-montreal-26-mai-recapitulatif-des-challenges-northsec-tickets-11724413035&lt;br /&gt;
*'''WEBCAST:''' https://www.youtube.com/watch?v=P8_V3RI1Ru4&lt;br /&gt;
*'''ÉQUIPE ACADÉMIQUE''' AGEEI-UQAM - http://www.ageei.org/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
&lt;br /&gt;
 18:00-18:30 Réseautage&lt;br /&gt;
 18:30-18:35 Mot de bienvenue par le leader du chapitre (Jonathan M.)&lt;br /&gt;
 18:35-19:30 Présentation principale : Récapitulatif des challenges NorthSec&lt;br /&gt;
 19:30-20:00 Période de questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Ageeilogo.jpg|200px|link=http://www.ageei.org/]]&lt;br /&gt;
[[Image:2397_nsec_Logo_500-250.png|200px|link=http://nsec.io/]]&lt;br /&gt;
&lt;br /&gt;
== Networking with infosec communities - April 21st ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''RÉSUMÉ:''' En collaboration avec Montréhack, mtlsec et NorthSec, nous organisons une soirée réseautage dans un pub du centre-ville. Du plaisir garanti avec les membres de plusieurs communautés infosec de Montréal!&lt;br /&gt;
&lt;br /&gt;
*'''ABSTRACT:''' In collaboration with Montréhack, mtlsec and NorthSec, we are organizing a networking evening in a pub downtown. Fun guaranteed with the other security communities in Montreal!&lt;br /&gt;
&lt;br /&gt;
*'''QUAND:''' 21 Avril 2014&lt;br /&gt;
*'''WHEN:''' April 21st 2014&lt;br /&gt;
&lt;br /&gt;
*'''OÙ/WHERE:''' BENELUX - Brasserie Artisanale 245 Sherbrooke St W Montreal, QC H2X 1X7&lt;br /&gt;
&lt;br /&gt;
*'''INSCRIPTION/REGISTRATION:''' https://www.eventbrite.ca/e/montrehack-avril-april-northsec-pre-party-tickets-11232307133&lt;br /&gt;
&lt;br /&gt;
*'''PARTENAIRES/PARTNERS:''' Montréhack http://montrehack.ca/ - mtlsec http://blog.mtlsec.com/ - NorthSec https://www.nsec.io/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
  18:00-21:00 Networking&lt;br /&gt;
  21:00-23:59 Remember to drink responsibly!&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - March 27th - Panel Compétition en sécurité NorthSec ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Présentation sous forme de panel - venez poser vos questions!'''&lt;br /&gt;
&lt;br /&gt;
*'''RÉSUMÉ:''' Les compétitions de type Capture the Flag (CTF) sont un moyen pour les professionnels et amateurs de sécurité informatique de mettre leurs talents à l'épreuve. NorthSec est une compétition Montréalaise annuelle en sécurité appliquée, qui aura lieu cette année au Marché Bonsecours de Montréal le 25, 26 et 27 avril prochain. Elle vise à augmenter le niveau technique des professionnels de la sécurité au Québec, ainsi que de permettre à ses acteurs les plus talentueux de se démarquer.&lt;br /&gt;
*'''DÉTAILS:''' Le panel de jeudi, sous la forme d'un échange convivial entre les organisateurs de l'évènement et de ses participants, abordera des thèmes variés comme l'écriture de bon défis, l'infrastructure, la logistique, les inattendus, un bilan de 2013 et tout ça en passant par de savoureuses annecdotes (on l'espère). Venez en grand nombre toucher à ces légendes de la scène infosec montréalaise!&lt;br /&gt;
*'''PANÉLISTES:''' Gabriel Tremblay, François Proulx, Laurent Desaulniers, Stéphane Graber&lt;br /&gt;
*'''ANIMATEUR:''' Olivier Bilodeau&lt;br /&gt;
*'''QUAND:''' 27 mars 2014&lt;br /&gt;
*'''OÙ:''' Salle M-1510, École Polytechnique de Montréal, 2500 chemin de Polytechnique, Montréal (Québec) H3T 1J4, pavillon Lassonde&lt;br /&gt;
*'''INSCRIPTION:''' https://www.eventbrite.ca/e/owasp-montreal-27-mars-panel-competition-en-securite-northsec-tickets-10918436337&lt;br /&gt;
*'''ÉQUIPE ACADÉMIQUE:''' Polytechnique - Polyhack http://polyhack.org/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Mot de bienvenue par le leader du chapitre (Jonathan Marcil)&lt;br /&gt;
  18:30-20:00 Présentation principale : Panel NorthSsec&lt;br /&gt;
&lt;br /&gt;
[[Image:Polyhack.png‎‎|200px|link=http://polyhack.org/]]&lt;br /&gt;
[[Image:LogoPolytechnique.gif|link=http://www.polymtl.ca/]]&lt;br /&gt;
[[Image:2397_nsec_Logo_500-250.png|200px|link=http://nsec.io/]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - February 25th - Proven Strategies for Web Application Security ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/proven-strategies-for-web-application-security-by-justin-c-klein-keane]] [https://speakerdeck.com/owaspmontreal/proven-strategies-for-web-application-security-by-justin-c-klein-keane See the slides / Voir la présentation] &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Justin C. Klein Keane&lt;br /&gt;
*'''ABSTRACT:''' The rising dominance of the web as an application delivery platform has focused attacker attention squarely on the security of dynamic web applications. Application security is a complex, and shifting, field. Learn about tested and successful techniques to build safer applications, find flaws before they become vulnerabilities, and deploy applications that can detect, and resist attack.&lt;br /&gt;
*'''BIO:''' Justin C. Klein Keane is a security engineer and chapter leaders of OWASP in Philadelphia. For over a decade Justin has worked as a trainer, coder, and exploit developer. Justin is currently writing a book for NoStarch Press on hacking, speaks regularly at conferences, holds a masters degree in information technology from the University of Pennsylvania and is credited with hundreds of application vulnerability discoveries.&lt;br /&gt;
*'''WHEN:''' February 25th 2014&lt;br /&gt;
*'''WHERE:''' Ecole de technologie superieure, 1100 Notre-Dame Street West, Montreal, Room: A-1150&lt;br /&gt;
*'''REGISTRATION:''' http://owaspmtljan2014.eventbrite.ca&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/proven-strategies-for-web-application-security-by-justin-c-klein-keane&lt;br /&gt;
*'''ACADEMIC PARTNER:''' ETS - DCI http://dciets.com/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Welcome speech by Chapter Leader (Jonathan Marcil)&lt;br /&gt;
  18:30-20:00 Main session and open discussion: Proven Strategies for Web Application Security&lt;br /&gt;
  20:00-...   End of the meeting in a pub&lt;br /&gt;
&lt;br /&gt;
[[Image:Dciets.png‎‎‎|100px|link=http://dciets.com/]]&lt;br /&gt;
[[Image:Logo_ets.png|link=http://www.etsmtl.ca/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - January 28th - Latest trends in Mobile Security ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/8qPyKj4FKgY]] [https://youtu.be/8qPyKj4FKgY Watch the conference / Regarder la conférence] &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/latest-trends-in-mobile-security-by-francois-proulx]] [https://speakerdeck.com/owaspmontreal/latest-trends-in-mobile-security-by-francois-proulx See the slides / Voir la présentation] &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Francois Proulx&lt;br /&gt;
*'''ABSTRACT:''' Last AppSecUSA 2013 had a great line up of talks, especially regarding mobile applications. This session will be covering all the hottest presentations about mobile security by doing an overview from what see saw at AppSecUSA, all with some slides and snippets of presentations that was recorded at the event. Discussion will be encouraged within the audience as this will be more a dynamic event than a regular talk.&lt;br /&gt;
*'''BIO:''' François Proulx is a senior mobile application developer who has worked on dozens of iOS applications since the very beginning of the Apple iOS platform. Over the past few years he has switched his focus to security. He spends a lot of his free time participating in Capture the Flag events (CTFs) and organizing the NorthSec security competition.&lt;br /&gt;
*'''WHEN:''' January 28th 2014&lt;br /&gt;
*'''WHERE:''' UQAM Room PK-1705, Pavillon Président-Kennedy (the big boat at Place des Arts) - 201 Avenue du Président-Kennedy  J2X 3Y7&lt;br /&gt;
*'''REGISTRATION:''' http://owaspmtl-mobilesecurity.eventbrite.ca&lt;br /&gt;
*'''SLIDES/CONTENT:''' [http://www.youtube.com/playlist?list=PLQtB2ug5xmvaQ9jeRWV53-F_T555GQfhW YouTube playlist]&lt;br /&gt;
*'''SPONSOR:''' Academic partner AGEEI-UQAM - http://www.ageei.org/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Welcome speech by Chapter Leader (Jonathan M.)&lt;br /&gt;
  18:30-20:00 Main session and open discussion: Mobile Security&lt;br /&gt;
  20:00-...   End of the meeting in a pub&lt;br /&gt;
&lt;br /&gt;
[[Image:Ageeilogo.jpg|200px|link=http://www.ageei.org/]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Presentations For Download  ====&lt;br /&gt;
&lt;br /&gt;
[http://www.owasp.org/images/0/0d/20100209mstechdaysowaspasvssgiv01-12657916463819-phpapp02.ppt OWASP ASVS] by Sebastien Gioria (09/03/2010) &lt;br /&gt;
&lt;br /&gt;
[http://www.ph-il.ca/slides/afup__authetification_forte.pdf Authentification Forte] by Philippe Gamache (02/02/2010) &lt;br /&gt;
&lt;br /&gt;
[http://www.opensamm.org/downloads/OpenSAMM-1.0.ppt Software Assurance Maturity Model (OpenSAMM)] by Pravir Chandra (03/11/2009) &lt;br /&gt;
&lt;br /&gt;
[http://www.owasp.org/images/d/de/Owasp-montreal-sept-17h-2009-justin-foster.pdf Crossing the Border – Javascript Exploits] by Justin Foster (17/09/2009) &lt;br /&gt;
&lt;br /&gt;
[http://www.owasp.org/images/c/c2/ALaughRIAt.pdf A Laugh RIAt] by Rafal Los (07/04/2009) &lt;br /&gt;
&lt;br /&gt;
[https://www.owasp.org/images/e/eb/OWASP-Montreal-24022009-RobLabbe.pptx Microsoft Security Development Lifecycle for IT] by Rob Labbe (24/02/2009) &lt;br /&gt;
&lt;br /&gt;
[https://www.owasp.org/images/3/39/OWASP-Montreal-24022009-EN.pdf OWASP Goal and Top Ten 2007 for Managers - French version] by Benoit Guerette (24/02/2009)&lt;br /&gt;
&lt;br /&gt;
Newer presentations are available on [https://speakerdeck.com/owaspmontreal Speaker Deck]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Circle_owasp_logo_nowhitebackground.png|200px]]&lt;br /&gt;
&lt;br /&gt;
= OWASP Foundation / Mission OWASP    = &lt;br /&gt;
OWASP Foundation ([https://docs.google.com/a/owasp.org/presentation/d/10wi1EWFCPZwCpkB6qZaBNN8mR2XfQs8sLxcj9SCsP6c/edit?usp=sharing Overview Slides]) is a professional association of [[Membership | global members]] and is open to anyone interested in learning more about software security. Local chapters are run independently and guided by the [[Chapter_Leader_Handbook]].  As a [[About_OWASP | 501(c)(3)]] non-profit professional association your support and sponsorship of any meeting venue and/or refreshments is tax-deductible. Financial contributions should only be made online using the authorized online chapter donation button.  To be a &amp;lt;b&amp;gt;SPEAKER&amp;lt;/b&amp;gt; at ANY OWASP Chapter in the world simply review the [[Speaker_Agreement | speaker agreement]] and then contact the local chapter leader with details of what OWASP PROJECT, independent research or related software security topic you would like to present on.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;La fondation OWASP est une [https://www.owasp.org/index.php/Membership association de professionnels] et elle est ouverte à tout intervenant intéressé à en apprendre davantage sur la sécurité applicative. Les chapitres locaux (dont celui de Montréal) sont gérés de façon indépendante et selon un [https://www.owasp.org/index.php/Chapter_Leader_Handbook manuel de directives à respecter].   &lt;br /&gt;
Toute contribution financière au chapitre peut être faite en ligne en utilisant l’icône prévu à cet effet. Pour être conférencier au sein de n’importe quel chapitre à l’échelle mondiale, vous n’avez qu’à prendre connaissance du document [https://www.owasp.org/index.php/Speaker_Agreement &amp;quot;entente avec les conférenciers – speaker agreement&amp;quot;] et à joindre le responsable du chapitre Montréal avec un descriptif du sujet que vous aimeriez aborder et s’il est relié à un projet OWASP, à de la recherche indépendante ou encore le sujet en particulier, concernant la sécurité applicative, que vous souhaitez aborder.&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== [[Image:Circle_owasp_logo_nowhitebackground.png|128px]] Montreal OWASP Team == &lt;br /&gt;
&lt;br /&gt;
Scope of the team is to discuss and plan local activities and meetings &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Chapter Leaders ===&lt;br /&gt;
&lt;br /&gt;
* [mailto:anne.gauthier@owasp.org Anne Gauthier], President/Présidente&lt;br /&gt;
* [mailto:michel.bourque{at}owasp.org Michel Bourque], Chapter coordinator and marketing manager/Coordination et Marketing&lt;br /&gt;
* [mailto:hugo.genesse(at)owasp.org Hugo Genesse], Web content and production manager/Site internet et Production &lt;br /&gt;
* [mailto:olivier.arteau(at)owasp.org Olivier Arteau], Logistic manager/Logistique&lt;br /&gt;
&lt;br /&gt;
==== Chapter leader history ====&lt;br /&gt;
*2008-2010 - Benoit Guerette, founder and chapter leader&lt;br /&gt;
*2011-2012 - Philippe Gamache, chapter leader (vice chapter-leader since 2010)&lt;br /&gt;
*2013-2015 - Jonathan Marcil, chapter leader&lt;br /&gt;
*2016-... - Anne Gauthier, Michel Bourque, Marius Popescu, Hugo Genesse, Olivier Arteau&lt;br /&gt;
&lt;br /&gt;
==== Old board members ====&lt;br /&gt;
*Philippe Pépos Petitclerc&lt;br /&gt;
*Michael Robillard&lt;br /&gt;
*Benoit Guerette (logistics 2015)&lt;br /&gt;
*Alexandre Rimthong&lt;br /&gt;
*Mathieu Binette&lt;br /&gt;
*Sean Coates&lt;br /&gt;
*Jean-Marc Robert&lt;br /&gt;
*Philippe Blondin&lt;br /&gt;
*Benoit Guerette (founder)&lt;br /&gt;
*Laurent Desaulniers&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;headertabs/&amp;gt; &lt;br /&gt;
__NOTOC__ &lt;br /&gt;
[[Category:Canada]]&lt;/div&gt;</summary>
		<author><name>Svieg</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=Montr%C3%A9al&amp;diff=227184</id>
		<title>Montréal</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=Montr%C3%A9al&amp;diff=227184"/>
				<updated>2017-03-09T02:50:08Z</updated>
		
		<summary type="html">&lt;p&gt;Svieg: /* Le courriel en 2017 – risques et menaces pour tous */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Welcome &amp;amp; Bienvenue to the OWASP Montréal chapter ==&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:OWASP-Montreal-Logo.png|Logo OWASP Montréal]]&lt;br /&gt;
&lt;br /&gt;
The OWASP Foundation was established in 2001 as an open community and software security resource. Since then, OWASP has grown to be globally recognized as a credible source for application security standards. &amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
OWASP is an open community dedicated to enabling organizations to conceive, develop, acquire, operate, and maintain applications that can be trusted. All of the OWASP tools, documents, forums, and chapters are free and open to anyone interested in improving application security. We advocate approaching application security as a people, process, and technology problem because the most effective approaches to application security include improvements in all of these areas. &amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
OWASP is open to anyone. Anyone can attend OWASP's vendor agnostic local chapter meetings, participate in regional and global conferences, and contribute to the many OWASP projects. And anyone can start a new project, form a new chapter, or lend their expertise to help an OWASP Global Committee.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;b&amp;gt;On parle français aussi ! Le chapitre de Montréal organise plusieurs activités gratuites afin de partager les connaissances en sécurité applicative avec la communauté de développeurs et gestionnaires. Suivez-nous sur les réseaux sociaux pour connaître les dates des conférences du midi et des workshops !&amp;lt;/b&amp;gt;&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Top documentation from OWASP includes: &lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/index.php/Top_10_2013-Top_10 OWASP TOP 10 : The Ten Most Critical Web Application Security Risks]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/images/3/33/OWASP_Application_Security_Verification_Standard_3.0.1.pdf OWASP ASVS : Application Security Verification Standard]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/images/5/52/OWASP_Testing_Guide_v4.pdf OWASP Testing Guide : Penetration Testing Framework ]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/images/7/78/OWASP_AlphaRelease_CodeReviewGuide2.0.pdf OWASP Code Review Guide : Source Code Analysis Framework ]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org/index.php/OWASP_Cheat_Sheet_Series OWASP Cheat Sheet : Best practices guidelines for developers ]&lt;br /&gt;
&lt;br /&gt;
* [https://www.owasp.org OWASP Global ]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Chapter Leaders / Responsables du chapitre ===&lt;br /&gt;
&lt;br /&gt;
* [mailto:anne.gauthier@owasp.org Anne Gauthier], President/Présidente&lt;br /&gt;
* [mailto:michel.bourque{at}owasp.org Michel Bourque], Chapter coordinator and marketing manager/Coordination et Marketing&lt;br /&gt;
* [mailto:hugo.genesse(at)owasp.org Hugo Genesse], Web content and production manager/Site internet et Production &lt;br /&gt;
* [mailto:olivier.arteau(at)owasp.org Olivier Arteau], Logistic manager/Logistique&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Special thanks to / Remerciements : &lt;br /&gt;
* Simon Lacasse, Web content / Site internet&lt;br /&gt;
&lt;br /&gt;
== &amp;lt;b&amp;gt; Reach our chapter / Joindre le chapitre &amp;lt;/b&amp;gt; ==&lt;br /&gt;
&lt;br /&gt;
Follow OWASP's Montreal chapter's activities through social medias, register to events, watch the previous presentations and more! &lt;br /&gt;
&lt;br /&gt;
Suivez les activités du chapitre OWASP Montréal via les réseaux sociaux, inscrivez-vous aux activités, visualisez les anciennes présentations et plus encore! &lt;br /&gt;
&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;b&amp;gt;[http://lists.owasp.org/mailman/listinfo/owasp-montreal Click here] to join the local chapter mailing list.&lt;br /&gt;
&amp;lt;br/&amp;gt;[http://lists.owasp.org/mailman/listinfo/owasp-montreal Inscrivez-vous ici] à la liste de courriels du chapitre afin de recevoir les dernières nouvelles!&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Want to be part of the community ? &lt;br /&gt;
Devenez membre de notre communauté ! &lt;br /&gt;
[https://www.owasp.org/index.php/Membership_Map Click here / Cliquer ici]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Eb_press_little.gif‎|OWASP Montreal Eventbrite|link=http://owaspmontreal.eventbrite.ca/]] &lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[Image:Yt-brand-standard-logo-630px.png‎|128px|YouTube OWASP Montreal Channel|link=http://www.youtube.com/owaspmontreal]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]   &lt;br /&gt;
[[Image:Speakerdecklogo.png‎|Slides of OWASP Montreal on SpeakerDeck |link=https://speakerdeck.com/owaspmontreal]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Twitter-bird-cropped-onwhite.png|@owaspmontreal on Twitter|link=https://twitter.com/owaspmontreal]]&lt;br /&gt;
[[Image:FacebookSquareLogo.png|OWASP Montreal Facebook page|link=https://www.facebook.com/owasp.montreal]]&lt;br /&gt;
[[Image:LinkedinSquareLogo.png|OWASP Montreal on LinkedIn|link=https://www.linkedin.com/groups/1379007/profile]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
&lt;br /&gt;
== Sponsorship &amp;amp; Membership / Commandite &amp;amp; Adhésion ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Btn_donate_SM.gif|link=http://www.regonline.com/donation_1044369]] to this chapter or become a local chapter supporter.&lt;br /&gt;
&lt;br /&gt;
Or consider the value of [[Membership | Individual, Corporate, or Academic Supporter membership]]. Ready to become a member? [[Image:Join_Now_BlueIcon.JPG|75px|link=https://myowasp.force.com/]]&lt;br /&gt;
&lt;br /&gt;
[http://www.regonline.com/donation_1044369 Donnez] au chapitre ou devenez commanditaire du chapitre local! &lt;br /&gt;
&lt;br /&gt;
[https://myowasp.force.com/ Devenez membre !] Pour en savoir davantage sur les avantages d’une adhésion individuelle, corporative ou en tant qu’institution d’enseignement, [https://www.owasp.org/index.php/Membership cliquez ici]. &lt;br /&gt;
&lt;br /&gt;
[[Category:OWASP Chapter]]&lt;br /&gt;
&lt;br /&gt;
== Chapter Supporters / Commanditaires du chapitre ==&lt;br /&gt;
&lt;br /&gt;
[https://www.owasp.org/images/9/91/OWASP_Membership_Flyer_Montreal.png All details available here / Pour tous les détails ] [[File:Chapter-supporter-owasp-montreal.png|200px|link=https://www.owasp.org/images/9/91/OWASP_Membership_Flyer_Montreal.png]] &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Platinum / Platine ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Gosecure-2.png|GoSecure|link=http://www.gosecure.ca/]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[File:Desjardins2-400x400.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Gold / Or ===&lt;br /&gt;
&lt;br /&gt;
[[Image:ImmunioLogo.jpg|Immunio|link=https://www.immun.io/]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== Silver / Argent ===&lt;br /&gt;
&lt;br /&gt;
[[Image:Ubitrak-r2.jpg|Ubitrak|link=http://www.ubitrak.com/fr/]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Lunch &amp;amp; Learn / Workshops 2017 =&lt;br /&gt;
&lt;br /&gt;
== WORKSHOP ! Server Side Template Injection (SSTI) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-okiok-SSTI-r.jpg | WORKSHOP ! Server Side Template Injection (SSTI) ]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/workshop-server-side-template-injection-ssti]] [https://speakerdeck.com/owaspmontreal/workshop-server-side-template-injection-ssti See the slides / Voir la présentation]&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 22 Février 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Shopify Montréal&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
OWASP Montreal vous invite à un atelier portant sur la sécurité des applications web supportant les moteurs de template (Template Engine). Le principe de séparation entre la présentation du site (code HTML statique) et de son contenu dynamique facilite la création de documents HTML et la capacité à modifier l'apparence du site sans mélanger le traitement et le rendu de la page. L'utilisation de moteurs de template amène de nouveaux enjeux de sécurité. Les vulnérabilités de type Server Side Template Injection (SSTI) sont exploitables à travers les données (non fiables) fournies par l'utilisateur et conduisent à l'exécution de code arbitraire (RCE) sur le serveur hébergeant l'application web.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ce workshop a pour but d'introduire cette classe de vulnérabilité à travers différents cas d'implémentation (php, java, python).&lt;br /&gt;
Nous verrons comment identifier et exploiter ces vulnérabilités et de quelle manière un attaquant peut &lt;br /&gt;
s'y prendre pour exécuter du code arbitraire sur le serveur afin d'en prendre le contrôle.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Niveau : Intermédiaire&amp;lt;br/&amp;gt;&lt;br /&gt;
Matériel requis :&lt;br /&gt;
* Votre portable&lt;br /&gt;
* Votre distribution Linux/Unix de votre choix&lt;br /&gt;
* Votre proxy Web de votre choix&lt;br /&gt;
&lt;br /&gt;
Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
Places limitées. Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Shopify pour l'événement.&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Présentateur : Gérôme Dieu&amp;lt;br/&amp;gt;&lt;br /&gt;
Gérôme Dieu cumule plus de 7 années d’expérience en technologies de l’information et en sécurité. &lt;br /&gt;
Il œuvre à titre de conseiller senior en sécurité de l’information au sein de la firme OKIOK. Ces dernières années, il a acquis une expertise dans le domaine de la sécurité des applications web aussi bien d'un point de vue offensif que défensif. En plus de réaliser des tests d’intrusion pour des clients internationaux, Gérôme s’implique dans la recherche et développement afin de maintenir à la fine pointe de la technologie les tests d'intrusion et d'analyse de vulnérabilités. &amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Merci à Shopify d'héberger l'événement !&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Shopify Logo-r.png| Shopify | link=https://www.shopify.com/]]&lt;br /&gt;
== Le courriel en 2017 – risques et menaces pour tous ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Zero spam 2.jpg|Le courriel en 2017 – risques et menaces pour tous]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://www.youtube.com/watch?v=HX2vcijcCWw ]] [https://www.youtube.com/watch?v=HX2vcijcCWw Watch the conference / Regarder la conférence ]&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 Le 23 janvier 2017 à midi&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
Monsieur Poellhuber nous brossera un tableau du phénomène grandissant du rançongiciels et de l'hameçonnage, personnification.&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
- Par les années passées, la menace courriel se résumait principalement en un fort volume de contenu simplement indésirable. Aujourd’hui la menace a passablement évolué. Quels sont les véritables risques actuels associés au courriel ? Rançongiciels, hameçonnage, personnification. Cette conférence présentera les nouveaux défis de sécurité pour les organisations qui doivent composer avec des attaques de plus en plus sophistiquées et de plus en plus ciblées tout en protégeant leur réputation. Des exemples biens réels, drôles et moins drôles seront disséqués pour bien dessiner l’ampleur de l’enjeu.&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
M. David Poellhuber, Chef de l’exploitation, ZEROSPAM Sécurité Inc&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Note biographique :&amp;lt;br/&amp;gt;&lt;br /&gt;
Monsieur David Poellhuber oeuvre dans l’industrie de la sécurité informatique depuis quinze ans. Il a été conférencier dans plusieurs forums de sécurité au Canada et est maintenant reconnu comme une autorité en matière de sécurité du courriel. Il a fondé ZEROSPAM Sécurité en 2003, le premier service Québécois externalisé de sécurité du courriel infonuagique qui se distingue par sa convivialité, son efficacité et ses technologies de détection proactives.&amp;lt;br/&amp;gt;&lt;br /&gt;
Audience :  Généralistes et spécialistes de la sécurité des TI &lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Merci à Ubitrack pour le repas et à Desjardins d'héberger l'événement!&lt;br /&gt;
&lt;br /&gt;
[[Image:Ubitrak-r2.jpg|Ubitrak|link=http://www.ubitrak.com/fr/]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&lt;br /&gt;
== Effective XSS Mitigation ==&lt;br /&gt;
&lt;br /&gt;
[[Image:XSS mitigation.jpg | Effective XSS Mitigation ]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=http://slides.com/olivierarteau/xss-mitigation ]] [http://slides.com/olivierarteau/xss-mitigation See the slides / Voir la présentation]&lt;br /&gt;
&lt;br /&gt;
WHEN &lt;br /&gt;
 18 Janvier 2017&lt;br /&gt;
WHERE&lt;br /&gt;
 Google Montréal&lt;br /&gt;
&lt;br /&gt;
FRANÇAIS/ENGLISH&amp;lt;br/&amp;gt;&lt;br /&gt;
La mitigation de XSS a été un sujet important au cours des dernières années. Les navigateurs ont implémenté, en autre, deux fonctionnalités pour mitiger leur impact : l'entête &amp;quot;XSS-Protection&amp;quot; et l'entête &amp;quot;Content-Security-Policy&amp;quot;. Par contre, obtenir une mitigation contre les XSS efficace est souvent plus complexe que l'on pense. Cet atelier couvrira les deux entêtes. Il expliquera comme il est possible de contourner ces protections et ce qu'il est possible de faire pour se protéger. Des exercices de type &amp;quot;offensif&amp;quot; et &amp;quot;défensif&amp;quot; seront proposés.&lt;br /&gt;
Mitigation for XSS as been an important topic in the last few years. Browsers have implemented two main functionalities to help mitigate the impact of XSS : the &amp;quot;XSS-Protection&amp;quot; header and the &amp;quot;Content-Security-Policy&amp;quot; header. But, getting an effective XSS mitigation of those headers is trickier than it may seem. This workshop will cover both of those headers. It will explain how bypass of those protection work and what you can do about it. It will have both &amp;quot;defensive&amp;quot; exercises and &amp;quot;offensive&amp;quot; exercises.&lt;br /&gt;
Niveau : débutant/intermédiaire&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Matériel requis :&lt;br /&gt;
&lt;br /&gt;
Votre portable&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
&lt;br /&gt;
Places limitées. Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Google pour l'événement.&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Présentateur : Olivier Arteau&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Olivier Arteau est un professionnel en sécurité informatique depuis quelques années et fait partie de l’équipe de test d’intrusion de Desjardins. Il est aussi un amateur de CTF qui a gagné à plusieurs reprises le CTF du NorthSec avec l’équipe HackToute et participe fréquemment à d’autres CTF avec l’équipe DCIETS.&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Merci à Google d'héberger l'événement! &lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-zap-4-r.jpg | Google | link=https://www.google.ca/ ]]&lt;br /&gt;
&lt;br /&gt;
= Lunch &amp;amp; Learn / Workshops 2015-2016 =&lt;br /&gt;
&lt;br /&gt;
== WORKSHOP ! Top 10 OWASP - Unleash the threats ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-top10.jpg | WORKSHOP! Top 10 OWASP - Unleash the threats ]]&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 30 novembre 2016 de 17h30 à 20h30&lt;br /&gt;
WHERE&lt;br /&gt;
 Immunio @ WeWork&lt;br /&gt;
&lt;br /&gt;
De nos jours, la sécurité applicative est essentielle dans l’écosystème des entreprises de toutes tailles. Les vecteurs d’attaques sont multiples, les vulnérabilités de sécurité dans les applications peuvent être désastreuses et les impacts d’un « Hack » peuvent être irréversibles pour l’entreprise; vols de données sensibles, perte de réputation, perte de $$$$$, etc.&lt;br /&gt;
L’objectif du workshop est de comprendre la base sur les vulnérabilités de sécurité dans les applications et les techniques d’exploitation utilisées par les pirates informatiques, en plus de connaître les bonnes pratiques de développement en matière de sécurité applicative. &lt;br /&gt;
Avec l'aide de WebGoat, Damn Vulnerable Web Application et de Kali Linux, vous pourrez participer&lt;br /&gt;
à l'exploitation des applications et découvrir les techniques utilisées par les attaquants.&lt;br /&gt;
&lt;br /&gt;
Niveau : débutant&lt;br /&gt;
&lt;br /&gt;
Matériel requis :&lt;br /&gt;
 Votre portable&lt;br /&gt;
 Kali Linux&lt;br /&gt;
 La VM du workshop, envoyée aux participants&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&lt;br /&gt;
&lt;br /&gt;
Places très limitées (nb = 10). Si le participant inscrit ne s'est pas présenté à 18h30, sa place sera remise à une autre personne présente.&lt;br /&gt;
&lt;br /&gt;
Veuillez prendre note que votre nom et prénom seront fournis à Immunio &amp;amp; WeWork pour l'événement.&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Présentateur : Christian Leclerc&lt;br /&gt;
&lt;br /&gt;
Christian est spécialisé en conception et développement de solutions web sécuritaires. Tout au long de sa carrière, il a acquis une vaste expertise sur plusieurs types de technologies et méthodologies, intégré la sécurité dans le cycle de développement d’applications, effectué des revues de code sécurité, déployé des outils d’analyse des vulnérabilités et mis en place des systèmes d’authentification. De plus, il a participé à la conception et au développement de solutions sécuritaires de pointe comme la signature électronique à l’aide d’une infrastructure à clé publique (PKI), les authentifications fortes, le Registre des consentements au don d'organes et de tissus (RDOQ.org) et la migration de plusieurs applications web vers un environnement SOA (Service Oriented Architecture). &lt;br /&gt;
&amp;lt;br&amp;gt;Merci à Immunio &amp;amp; WeWork d'héberger l'événement!&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Image:Immunio-horizontal-r.png|Immunio|link=https://www.immun.io/]]&lt;br /&gt;
[[Image:Spacer-horiz.gif‎]]&lt;br /&gt;
[[Image:Wework-r.jpg|WeWork|link=https://www.wework.com/]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Histoire d'un Hack ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Histoire-dun-hack-r.jpg | Histoire d'un Hack ]]&lt;br /&gt;
&lt;br /&gt;
WHEN &lt;br /&gt;
 21 novembre 2016 à midi&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins&lt;br /&gt;
&lt;br /&gt;
Pour son activité du mois de novembre, OWASP Montréal propose à la communauté de la sécurité des TI et aux gestionnaires de faire l'autopsie d'une attaque de haute voltige sur un site web et des outils mis à la disposition par OWASP.&lt;br /&gt;
 &lt;br /&gt;
Bernard Bolduc cumule plus de 17 années d’expérience en technologies de l’information et en sécurité. Il œuvre à titre de conseiller senior en sécurité de l’information au niveau d’entreprise de classe nationale et internationale.&lt;br /&gt;
 &lt;br /&gt;
Bernard se spécialise en sécurité Unix, applicative et en gestion de la sécurité des télécommunications. Il combine ces expertises techniques afin d’obtenir des résultats probants et efficaces pour ces clients des secteurs bancaire, télécommunication et multimédias, de l’énergie ou des services publiques. Tout au long de sa carrière, Bernard s’est toujours maintenu à jour sur les dernières menaces de sécurité technologique et commerciale en assistant à des formations spécialisées et d'échanger avec un grand nombre de partenaires dans l'industrie de la sécurité.&lt;br /&gt;
 &lt;br /&gt;
La conférence débute à midi.&lt;br /&gt;
 &lt;br /&gt;
La conférence vous donne droit à 1 CPE et pour les 50 premières personnes, un lunch gratuit.&lt;br /&gt;
 &lt;br /&gt;
Merci à Desjardins d'héberger l'événement!&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Workshop ! Création de votre première extension OWASP ZAP (ou BurpSuite) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-zap-mix.jpg | Workshop ! Création de votre première extension OWASP ZAP (ou BurpSuite)]]&lt;br /&gt;
&lt;br /&gt;
WHEN&lt;br /&gt;
 11 novembre 2016 de 18h à 21h&lt;br /&gt;
&lt;br /&gt;
WHERE &lt;br /&gt;
 Google Montréal&lt;br /&gt;
&lt;br /&gt;
OWASP Zed Attack Proxy (ZAP) est un scanneur de vulnérabilités et un outil de débogage HTTP. Ce type d'outil est crucial dans un test d'intrusion web et contient un lot intéressant de fonctionnalités. Cela dit, il est possible d'étendre les fonctionnalités. Plusieurs types d'extension sont possibles : vue alternative pour les requêtes ou les réponses, scanneur passif des réponses, scanneur actif produisant des requêtes, etc.&lt;br /&gt;
&lt;br /&gt;
Plusieurs options seront données, par exemple :&lt;br /&gt;
&lt;br /&gt;
 Détection automatique de flag dans les sources&lt;br /&gt;
 Scanneur actif asynchrone DNS&lt;br /&gt;
 Ou votre propre idée&lt;br /&gt;
&lt;br /&gt;
Pour chacune des suggestions, des squelettes de code seront fournis pour les APIs de ZAP. Pour les utilisateurs de BurpSuite, des directives analogues seront également données.&lt;br /&gt;
&lt;br /&gt;
Niveau : débutant / intermédiaire&lt;br /&gt;
&lt;br /&gt;
Matériel requis&lt;br /&gt;
&lt;br /&gt;
 Votre portable&lt;br /&gt;
 [https://www.owasp.org/index.php/OWASP_Zed_Attack_Proxy_Project OWASP ZAP (gratuit)]&lt;br /&gt;
 [https://portswigger.net/burp/download.html BurpSuite]&lt;br /&gt;
 Éditeur de code pour Java, Python ou Ruby&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;Ce workshop est gratuit ! Un lunch et breuvage sont inclus.&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Présentateur : Philippe Arteau&lt;br /&gt;
&lt;br /&gt;
Philippe est un chercheur en cybersécurité chez GoSecure. Il est l'auteur de l'outil d'analyse statique Java &amp;quot;Find Security Bugs&amp;quot;. Il a découvert des vulnérabilités importantes dans les logiciels populaires tels que Google Chrome, Dropbox, Paypal, RunKeeper et Jira. Il a présenté dans différentes conférences incluant Black Hat USA, Black Hat Europe, ATL Sec Con, NorthSec, Hackfest (QC) et JavaOne. Il a développé de nombreux plug-ins pour les outils de proxy BurpSuite et OWASP ZAP (Retire.js, Reissue Request Script, PDF preview et Image Metadata). Il a fait également des contributions à d'autres plug-ins comme J2eeScan.&lt;br /&gt;
&lt;br /&gt;
Merci à Google d'héberger l'événement! &lt;br /&gt;
&lt;br /&gt;
[[Image:Workshop-zap-4-r.jpg | Google | link=https://www.google.ca/ ]]&lt;br /&gt;
&lt;br /&gt;
==Logiciel de rançon (Ransomware) s'attaque au domaine de la santé==&lt;br /&gt;
&lt;br /&gt;
[[Image:HackingHealth-2.jpg | Logiciel de rançon (Ransomware) s'attaque au domaine de la santé ]]&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/ransomware-and-healthcare-hacking-health ]] [https://speakerdeck.com/owaspmontreal/ransomware-and-healthcare-hacking-health See the slides / Voir la présentation]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;(Conférence en anglais)&lt;br /&gt;
Pour le lancement de la saison 2016 - 2017, OWASP Montréal propose à la communauté de la sécurité des TI et aux gestionnaires de la santé une incursion dans le monde du logiciel malveillant ciblant le domaine de la santé.&amp;lt;br/&amp;gt;&lt;br /&gt;
Cette conférence s'intége dans le Coopérathon co-organisé par le Mouvement Desjardins et Hacking Health.&amp;lt;/b&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Le domaine de la santé serait devenu une cible privilégiée des campagnes de ransomware parce que l'industrie a souvent payé la rançon demandée pour récupérer les données confidentielles et vitales de ses clients. Monsieur Ed Gershfang nous brossera un portrait du phénomène et des meilleures pratiques à mettre en place en matière de sécurité applicative.&lt;br /&gt;
Ed Gershfang possède une expérience solide dans l'infrastructure informatique et plus de 6 ans d'expérience dans les domaines de la sécurité de l'information, de la vulnérabilité, de la gouvernance et de la gestion des risques. Il était directeur de la sécurité pour la société PeriGen, un chef de file de développement de logiciels médicaux en Israël.&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== La sécurité applicative vue par un pentesteur ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Juin2016-OWASPMtl.jpg | OWASP Montréal reçoit Mario Contestabile, Pentester de renom ]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
From Left to Right : Isabelle Lusseyran, Head of Development at Hacking Health. Eduard Gershfang Information Security Analyst at WSP | Parsons Brinckerhoff.&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/owasp-montreal-recoit-mario-contestabile ]] [https://speakerdeck.com/owaspmontreal/owasp-montreal-recoit-mario-contestabile See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Pour clore la saison 2015 – 2016, OWASP Montréal est fier d’accueillir au Midi Conférence un des architectes de renom du développement applicatif au Canada, monsieur Mario Contestabile.&lt;br /&gt;
En tant qu’auteur de plusieurs centaines de tests d’intrusion, il connait tous les rouages de ce qu’est véritablement une application Web «sécurisée». Mais avez-vous déjà remarqué que les rapports de tests d’intrusion mentionnent rarement, voir jamais : «Votre site est très difficile à pirater. Félicitations !» ?&lt;br /&gt;
Et qu’en est-il de ces rapports qui contiennent des dizaines de soi-disant vulnérabilités ? Est-ce que cela signifie d’emblée que l’application devrait être mise hors ligne ?  &lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Lors de cette conférence, nous examinerons des rapports concrets (ambigus) de vulnérabilités et nous les analyserons afin de mieux comprendre si elles représentent une véritable menace, ou si elles ne servent qu’à «remplir» les rapports.&lt;br /&gt;
&amp;lt;br/&amp;gt;&amp;lt;br/&amp;gt;&lt;br /&gt;
Avec son expertise en protection et en attaque d’applications Web, il abordera les points suivants :&lt;br /&gt;
Comment pouvez-vous sélectionner des systèmes de façon à mieux exécuter des protections de sécurité ?&lt;br /&gt;
Éviter certains pièges dans votre application Web qui rendent les attaques plus faciles et la protection plus difficile.&lt;br /&gt;
De nos jours, que peuvent faire les développeurs à l’intérieur de systèmes communs, qui puisse me rendre la tâche plus ardue en tant que « hacker »?&lt;br /&gt;
Pouvons-nous exiger de meilleurs rapports de la part des firmes de sécurité?&lt;br /&gt;
À quoi devrions-nous nous attendre de la part d’un « pentesters »?&lt;br /&gt;
Comment pouvons-nous savoir si le « pentester » a vérifié les failles de l’application et qu’il n’a pas simplement utilisé un scanneur?&lt;br /&gt;
Et enfin, comment pouvons-nous aider les « ethical hackers » à obtenir un meilleur rendement lors d’un test d’intrusion?&lt;br /&gt;
Il expliquera le sujet en détails, et ensemble, nous verrons de quelles façons les développeurs d’applications peuvent exploiter le savoir-faire des « pentesters », et comment nous pouvons faire en sorte qu’une application Web soit protégée.&lt;br /&gt;
Biographie :&lt;br /&gt;
Mario Contestabile est reconnu comme l’un des experts en sécurité les plus réputés au Canada. Son expertise, construire et protéger votre plateforme applicative. Ancien développeur C++ et Java, Mario partage ses nombreuses connaissances en « ethical hacking » et en développement de codes sécurisé.  &lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Tuesday, 14 June 2016 from 12:00 PM to 1:00 PM (EDT) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Comment protéger les applications mobiles? ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Avril2016-OWASPMtl.png | Comment protéger les applications mobiles? ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/comment-proteger-les-applications-mobiles ]] [https://speakerdeck.com/owaspmontreal/comment-proteger-les-applications-mobiles See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Dans le cadre des Midis Conférence à l'Espace Desjardins, l'équipe OWASP Montréal vous invite à assister à une présentation sur les vulnérabilités les plus communes associées aux appareils mobiles. &lt;br /&gt;
Marie-Claire Willig détaillera entre autres comment stocker de façon sécuritaire les données de l’application mobile ainsi que protéger l’application contre des attaques externes. Des outils simples vous seront dévoilés pour détecter ces vulnérabilités.&lt;br /&gt;
Marie-Claire est une professionnelle d'expérience en sécurité appliquée.&lt;br /&gt;
Une grande partie de son intérêt professionnel réside actuellement dans un domaine assez niche, soit la revue de code sécuritaire, un fondement important de tout cycle de développement sécuritaire en entreprise.&lt;br /&gt;
Au sein de l'équipe de sécurité technologique Desjardins, elle est, en autre, responsable de former les développeurs (Java et .NET principalement) afin de les sensibiliser aux meilleures pratiques de développement sécuritaire.&lt;br /&gt;
Également, elle est une professionnelle des tests d'intrusion sur les applications web, les applications mobiles ainsi que l'infrastructure réseau.&lt;br /&gt;
Bienvenue à tous&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 20 April 2016 from 12:15 PM to 1:00 PM (EDT) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== NorthSec, Le plus gros événement de cybersécurité appliquée au Canada ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Mars2016-OWASPMtl.jpg | NorthSec, Le plus gros événement de cybersécurité appliquée au Canada ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/YQtvltQYs7Y]] [https://youtu.be/YQtvltQYs7Y Watch the conference / Regarder la conférence] &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
OWASP Montréal est fier d’inviter au Midi Conférence de mars, NorthSec est le plus gros événement de sécurité appliquée au Canada qui comprend deux jours de formation, deux jours de conférences ainsi qu’une compétition du genre « capture the flag » (CTF) de trois jours.&lt;br /&gt;
Gabriel Tremblay, Benoit Guerette, Pierre-David Oriol et Laurent Desaulniers viendront vous parler de cet organisme sans but lucratif dynamique qui est géré par une équipe de bénévoles passionnés qui donnent à chaque année leur énergie et leur temps pour soutenir la communauté de la sécurité de l’information.&lt;br /&gt;
Le volet compétition, l’épreuve maîtresse, est présentée sous forme d’un scénario qui rend cohérent une centaine de défis techniques. Les équipes de participants attaquent l’infrastructure de compétition pour soutirer des drapeaux (flags) à travers un ensemble de vulnérabilités présentes comme de l’injection SQL, des XSS ou encore l’exploitation d’exécutables sur systèmes embarqués. Quelques exemples de défis des années passées seront également présentés.&lt;br /&gt;
Le volet conférence, qui est à sa 2ème année, met de l’avant plusieurs présentations techniques touchant la sécurité applicative mais aussi l’éthique et leurs impacts sociaux. Certaines présentations confirmées seront dévoilés.&lt;br /&gt;
Le tout nouveau volet formation propose deux formations en sécurité applicative de calibre international (anglais) : “Advanced Web Security Testing with Burp Pro” et “Modern Object-Oriented Malware Reverse Engineering”.&lt;br /&gt;
Venez aussi, découvrir comment l'équipe est partie d'une idée en 2012 pour se rendre à un évènement d'envergure, qui rassemblera plus de 600 professionnels, étudiants et autres passionnés de sécurité appliquée lors de la 4ème édition qui aura lieu du 17 au 22 mai 2016 au Marché Bonsecours.&lt;br /&gt;
Finalement, la mission, la vision ainsi que les activités sociales de la semaine de NorthSec sont aussi au menu de cette présentation qui sera suivie d’une période de questions.&lt;br /&gt;
&lt;br /&gt;
Gabriel Tremblay, Delve Labs, Président&lt;br /&gt;
Benoit Guerette, Desjardins, VP Finances&lt;br /&gt;
&lt;br /&gt;
Pierre-David Oriol, Delve Labs, VP Conférence&lt;br /&gt;
Laurent Desaulniers, Bell Canada, Artisant de drapeaux&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 23 March 2016 from 12:00 PM to 1:00 PM (EDT) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== La sécurité applicative et l'hameçonnage - February 24th ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Fevrier2016-OWASPMtl.jpg | La sécurité applicative et l'hameçonnage ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/1RYlOiIENjQ]] [https://youtu.be/1RYlOiIENjQ Watch the conference / Regarder la conférence] &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
De nos jours, une des méthodes les plus efficaces pour contourner les périmètres de sécurité externes est l'hameçonnage conjointement avec l’abus de certaines technologies Web.&lt;br /&gt;
&lt;br /&gt;
Dans le cadre ses activités, OWASP Montréal est heureux d'inviter d'accueillir, l'équipe OKIOK qui présentera les impacts liés à ce type d'attaque, tel que vu et expérimenté en entreprise ainsi que les plans d'action pour traiter ces risques. La présentation abordera aussi bien la sécurité web et applicatives, des systèmes informatiques ainsi que de la sécurité physique de centres de données. &lt;br /&gt;
&lt;br /&gt;
    Capture d'informations sensibles par imitations de portails Web ;&lt;br /&gt;
    Authentification Web par 2-facteurs ;&lt;br /&gt;
    Injection SMTP dans des formulaires Web ;&lt;br /&gt;
    Attaque de type “Drive-by-download”;&lt;br /&gt;
    Prise de contrôle à distance à travers des flux HTTP;&lt;br /&gt;
    Attaque de CSRF à partir de courriels ;&lt;br /&gt;
    Attaque d'hameçonnage basée sur des achats par Internet (ex : PayPal).&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
When&lt;br /&gt;
 Wednesday, 24 February 2016 from 12:00 PM to 1:15 PM (EST) - Add to Calendar &lt;br /&gt;
Where&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest Montreal, Quebec CA&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Internet of {Things, Threats} - January 20th ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Janvier2016-OWASPMtl-R.png | Internet of {Things, Threats} ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=http://gosecure.github.io/presentations/2016-01-20_owasp-mtl/internet-of-threats.html ]] [http://gosecure.github.io/presentations/2016-01-20_owasp-mtl/internet-of-threats.html See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
De plus en plus de périphériques se retrouvent connectés sur Internet. Sous la bannière &amp;quot;Internet of Things&amp;quot; (IoT) ces équipements, que ce soit une pompe à insuline ou un système de caméra de sécurité, tournent généralement sous un système GNU/Linux embarqué d'architecture MIPS ou ARM. La difficulté de mettre à jour ces équipements ainsi que le peu d'effort mis dans la sécurité des systèmes ou la sécurité applicative en font des cibles de choix. Ces derniers mois, nous avons analysé plusieurs logiciels malveillants ciblant ces architectures. Que ce soit par l'exploitation d'une vulnérabilité (Shellshock) ou encore un défaut de configuration, ces systèmes exposés sur Internet peuvent être compromis.&lt;br /&gt;
&lt;br /&gt;
Notre présentation couvrira quelques une de ces analyses:&lt;br /&gt;
&lt;br /&gt;
* Linux/Moose, un malware se propageant automatiquement qui fraude les réseaux sociaux (par exemple Facebook, Twitter et YouTube)&lt;br /&gt;
* LizardSquad et acteurs étrangers qui utilisent des systèmes embarqués compromis pour réaliser des dénis de service distribué (DDoS) &lt;br /&gt;
* Win32/RBrute est un logiciel malveillant qui tente de changer les paramètres de routeurs dans le but de faire du &amp;quot;DNS poisoning&amp;quot;. Il a été distribué par le populaire botnet Sality.&lt;br /&gt;
* Un kit d'exploits qui utilise seulement le navigateur de leur victime avec le même objectif, c'est-à-dire faire du &amp;quot;DNS poisoning&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
Enfin, des conseils seront proposés à l'audience pour l'aider à se protéger de ces menaces.&lt;br /&gt;
&lt;br /&gt;
'''Thomas Dupuy''' (twitter: @nyx__o)&lt;br /&gt;
&lt;br /&gt;
Thomas est chercheur en logiciel malveillant chez ESET Canada Recherche. Bon vivant, Thomas déjeune en &amp;quot;reversant&amp;quot; des binaires, contribue à quelques projets open source durant le diner (yara, yara rules, pefile, APTnotes) et la nuit participe à des &amp;quot;Hacking Games&amp;quot; (Capture The Flag). Curieux de nature Thomas analyse des malware aux architectures &amp;quot;exotiques&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Olivier Bilodeau''' (twitter: @obilodeau)&lt;br /&gt;
&lt;br /&gt;
Olivier Bilodeau is the head of Cybersecurity Research at GoSecure a consultancy firm specializing in cybersecurity services for the public and private sector. With more than 10 years of infosec experience, Olivier worked on Unix servers at Bell Canada, managed a portion of Air Canada's network, wrote open source network access control software at Inverse and worked as a Malware Researcher at ESET. He likes to reverse engineer everything that crosses his path, participate in information security capture-the-flag competitions, hack open source code and brew beer. He has spoken at various conferences (Defcon, Botconf, VirusBulletin, Derbycon, ...), used to lecture on information security at ETS University in Montreal, drives the NorthSec Hacker Jeopardy and co-organizes the MontreHack capture-the-flag training initiative. His primary research interests include reverse-engineering tools, Linux and/or embedded malware and honeypots.&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Survivre aux attaques DDOS applicatives ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Decembre2015-OWASPMtl.jpg | Survivre aux attaques DDOS applicatives ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Survivre aux attaques DDOS (Distributed Denial-Of-Service) applicatives.&lt;br /&gt;
Cette conférence s'adresse aux professionnels et gestionnaires des TI.&lt;br /&gt;
Conférencier : Christian Shink, ing., CSSLP, ingénieur système chez Radware, manufacturier spécialisé dans la prévention des attaques DDOS. Il fut également consultant en sécurité applicative chez In Fidem.&lt;br /&gt;
Objectifs de la conférence:&lt;br /&gt;
Présenter les tendances actuelles en matière d'attaques DDOS applicatives.&lt;br /&gt;
Renseigner les participants sur les techniques et stratégies pour contrer ces attaques illustrées à partir de cas vécus.&lt;br /&gt;
Démystifier certains mythes en ce qui concernent les façons efficaces de protéger les applications contre des attaques DDOS.&lt;br /&gt;
Date : 16 décembre 2015&lt;br /&gt;
Heure : 11h45&lt;br /&gt;
La conférence débute à 12h00 et se termine à 12:55.&lt;br /&gt;
Un lunch sera servi.&lt;br /&gt;
Réservez maintenant!&lt;br /&gt;
1 CPE&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 16 December 2015 from 11:45 AM to 1:00 PM (EST) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec &lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Sécurité des applications - Systèmes de contrôles industriels ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Novembre2015-OWASPMtl-R.png | Sécurité des applications - Systèmes de contrôles industriels ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/0eAZpyiQQ9A]] [https://youtu.be/0eAZpyiQQ9A Watch the conference / Regarder la conférence] &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible&lt;br /&gt;
&lt;br /&gt;
La sécurité des applications et les systèmes de contrôles industriels.&lt;br /&gt;
Cette conférence s'adresse aux professionnels et gestionnaires des TI desinfrastructures critiques qui exploitent ou gèrent des systèmes de contrôles industriels(SCI) et SCADA (surveillance et d'acquisition de données).&amp;lt;br/&amp;gt;&lt;br /&gt;
Conférenciers : Robert Nastas, CSSA. Gestionnaire de projet et Youssef Jad, Architecte Cyber sécurité, ICS-CERT&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Objectifs de la conférence:&lt;br /&gt;
* Démystifier le domaine d'affaires.&lt;br /&gt;
* Renseigner les participants sur les bonnes pratiques de sécurité desapplications liées au secteur industriel.&lt;br /&gt;
* Proposer aux professionnels et gestionnaires des TI responsables dessystèmes SCADA et SCI des pistes de solutions aux enjeux de sécurité.&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
L'équipe OWASP Montréal vous remercie d'avoir assisté en grand nombre à la conférence, 'La sécurité des applications et les systèmes de contrôles industriels'.&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
WHEN&lt;br /&gt;
 Wednesday, 18 November 2015 from 11:45 AM to 1:00 PM (EST) - Add to Calendar&lt;br /&gt;
WHERE&lt;br /&gt;
 Espace Desjardins (Complexe Desjardins) - 175, boul René Lévesque Ouest , Montreal, Quebec&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Les préoccupations actuelles de hauts dirigeants en matière de cybersécurité et de sécurité applicative ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Septembre2015-OWASPMtl.jpg | Les préoccupations actuelles de hauts dirigeants en matière de cybersécurité et de sécurité applicative ]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides| link=https://speakerdeck.com/owaspmontreal/un-regard-sur-la-securite-de-linformation-en-2015-par-eric-hebert ]] [https://speakerdeck.com/owaspmontreal/un-regard-sur-la-securite-de-linformation-en-2015-par-eric-hebert See the slides / Voir la présentation]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
Pour le lancement des activités corporatives de la saison 2015 - 2016, le 8 septembre prochain à 12:00, l'équipe OWASP Montréal convie les gestionnaires et artisants de la sécurité des TIC à venir entendre monsieur Éric Hébert qui nous présentera son interprétation des préoccupations actuelles de hauts dirigeants en matière de cybersécurité et de sécurité applicative. L'événement se tiendra au complexe Desjardins à la salle &amp;quot;Espace Desjardins&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
''' ÉRIC G. HÉBERT, CISM, CISSP ''' &amp;lt;br/&amp;gt;&lt;br /&gt;
Après plus de 20 ans passés dans le domaine de la sécurité des technologies de l’information, Éric se spécialise dans la mise en œuvre et la gestion d'équipes performantes, capables de relever les plus hauts défis de la cybersécurité moderne.&amp;lt;br/&amp;gt;&lt;br /&gt;
Capable de dialoguer avec les hauts dirigeants, il sait traduire et vulgariser les enjeux techniques complexes tout en respectant la nature et l'appétence au risque de ses clients. Dynamique et pourvu d'une expérience couvrant presque toutes les sphères de la SI, il fonce dans le respect de la culture établie tout en implantant des solutions pragmatiques et efficaces.&amp;lt;br/&amp;gt;&lt;br /&gt;
Depuis plus de 10 ans, il gravite principalement autour des entreprises du domaine financier (BNC, Desjardins, Fonds de solidarité FTQ...) et les accompagne dans la mise en place de solutions efficaces tenant compte à la fois des risques et des budgets.&lt;br /&gt;
En plus d’avoir fondé de nombreuses associations telles que le RéseauSécurIT et le RPSI, il maintient une présence régulière auprès des milieux associatifs professionnels et partage régulièrement ses expériences lors de conférences et d'entrevues avec divers médias.&lt;br /&gt;
&lt;br /&gt;
Merci à Desjardins d'héberger l'événement !&lt;br /&gt;
&lt;br /&gt;
[[Image:Desjardins-h-r.png|Desjardins|link=https://www.desjardins.com/ca/|alt=Desjardin's logo]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
= Events / Évènements =&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal at [https://hackfest.ca/ HackFest 2016] ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hackfest2016-r.jpg| HackFest |link=https://hackfest.ca/]]&lt;br /&gt;
&lt;br /&gt;
From left to right: Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Louis Nadeau, OWASP Québec Chapter Leader and Manager, Product Security at Bentley Systems and Patrick Leclerc, OWASP Québec Chapter Leader and Information Security Advisor at La Capitale.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal at OWASP [https://2016.appsecusa.org/ AppSec USA 2016, Washington] ==&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:OWASPMtl-AppSecUSA2016-Washington.jpg | OWASP Montreal at AppSec USA 2016, Washington]] &lt;br /&gt;
&lt;br /&gt;
​From left to right: Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Marie-Claire Willig, Application Security Analyst at Desjardins, Speaker and Cofounder of the Roslyn Security Guard tool which will be presented at Blackhat 2016, Alexandre Hamelin President at Synlabs Consulting Inc., Jonathan Marcil, Application Security Engineer at Blizzard Entertainment and former OWASP Montreal Chapter Leader. Philippe Arteau, Cybersecurity Researcher at GoSecure and designer of [https://find-sec-bugs.github.io/ Find Security Bugs] and Roslyn Security Guard tool which will be presented at Blackhat 2016.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://www.gosec.net GoSec] 2016 ==&lt;br /&gt;
&lt;br /&gt;
[[Image:OWASP-GoSec2016-1r.jpg|OWASP Montreal at GoSec 2016]] [[Image:OWASP-GoSec2016-2r.jpg|OWASP Montreal at GoSec 2016]]&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
From left to right : Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Simon Lacasse, student and volunteer, and Laurent Desaulniers, Security Analyst at Bell Canada.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://www.nsec.io/ NorthSec] 2016 – Annual Applied Security Event ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hackfest2016-OWASPMtl.jpg|OWASP Montreal at NorthSec 2016]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Simon Veilleux &lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
From left to right : Anne Gauthier, OWASP Montréal Chapter (President) and Information Security Analyst at GoSecure, Olivier Arteau OWASP Montréal Chapter Leader and Conseiller chez Groupe Technologie Desjardins, Hugo Genesse, OWASP Montréal Chapter Leader and Vulnerability Research Intern at Wurldtech Security Technologies.&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://hackfest.ca/en/ Hackfest] 2015 ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Hackfest2015-OWASPMtl-R.JPG | OWASP Montreal at Hackfest 2015]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Hackfest &lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
From left to right : Jonathan Marcil, Application Security Engineer at Blizzard Entertainment and former OWASP Montreal Chapter Leader. Philippe Arteau, Cybersecurity Researcher at GoSecure and designer of [http://find-sec-bugs.github.io/ Find Security Bugs] and Roslyn Security Guard tool which will be presented at Blackhat 2016. &lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/8U0qkEuUFy8]] [https://youtu.be/8U0qkEuUFy8 Watch the video / Regarder la vidéo]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal at [https://www.gosec.net/ GoSec] 2015 – The Annual Cybersecurity Conference presented by GoSecure, EY and ISACA. ==&lt;br /&gt;
&lt;br /&gt;
[[Image:GoSec2015-OWASPMtl.jpg|OWASP Montreal at GoSec 2015]]&lt;br /&gt;
&lt;br /&gt;
@Photo : Marius Popescu&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
&amp;lt;br/&amp;gt;&lt;br /&gt;
From left to right : Marie-Claire Willig, Application Security Analyst at Desjardins, Speaker and Cofounder of the Roslyn Security Guard tool which will be presented at Blackhat 2016. Benoît Guérette, Application Security Team Leader at Desjardins, VP Finance at NorthSec and OWASP Montreal Chapter Founder and Former Chapter Leader.&lt;br /&gt;
&lt;br /&gt;
== See also / Voir aussi ==&lt;br /&gt;
&lt;br /&gt;
OWASP Montréal recommends Montréhack. Learn and share knowledge on IT security by solving technical challenges. Third Monday of every month. &lt;br /&gt;
&lt;br /&gt;
OWASP Montréal recommende Montréhack. Apprends et partages des connaissances sur la sécurité informatique en travaillant des problèmes appliqués. Chaque troisième lundi du mois. &lt;br /&gt;
&lt;br /&gt;
[[File:Montrehack.png|Montréhack|link=http://montrehack.ca/|alt=Montréhack]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
= Archives 2007-2015 =&lt;br /&gt;
{{:Montreal chapter past meetings}}&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - February 3rd - Getting to Know the Software Assurance Marketplace (SWAMP) ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/p4_vjufcB6Q]] [https://youtu.be/p4_vjufcB6Q Watch the conference / Regarder la conférence]&amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/getting-to-know-the-software-assurance-marketplace-swamp-by-pat-beyer]] [https://speakerdeck.com/owaspmontreal/getting-to-know-the-software-assurance-marketplace-swamp-by-pat-beyer See the slides / Voir la présentation] &amp;lt;br/&amp;gt;&lt;br /&gt;
 &lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Pat Beyer&lt;br /&gt;
*'''ADDITIONAL PRESENTER:'''  Abe Megahed&lt;br /&gt;
*'''ABSTRACT:''' The Software Assurance Marketplace (SWAMP) is an open facility that is designed, built, and operated by four research institutions. The SWAMP provides no-cost access to an array of open-source and commercial software analysis tools. This presentation will provide an overview and demo of the SWAMP, including our goals, intended audience, current capabilities, and future plans. We will cover our relationship with OWASP, incorporation of open-source software assurance tools, and status as an open-source project and resource available to the software community. Visit https://continuousassurance.org/ to learn more about us.&lt;br /&gt;
*'''BIO:''' Pat Beyer serves as the Product Manager for the Software Assurance Marketplace (SWAMP). With over 25 years of experience successfully managing multi-million dollar global projects, Beyer’s expertise extends to the IT, construction, and operations sectors, with a specialization in managing government contracts and grants. A gifted communicator, Beyer is a sought after speaker due to his ability to deliver complex information about technology products and services in a way that is easily understood. He is a decorated combat veteran of the Global War on Terror, the international military campaign that started following the 9/11 terrorist attacks on the United States. In 2004, he constructed and rehabilitated over 20 schools, clinics, and water treatment plants for the Iraqi people using local contractors. Beyer also holds a Bachelor of Science, a Masters in Business Administration, a Ph.D. in Organization and Management, and a Project Management Professional (PMP) certification.&lt;br /&gt;
*'''BIO:''' Abe Megahed is a web developer for the Software Assurance Marketplace. In previous lifetimes, he has been a computer graphics researcher, a game programmer, a programming language and compiler nerd, a dot com company founder, a creator of helicopter simulations, and a developer of 3D simulations for NASA astronaut crew training.&lt;br /&gt;
*'''WHEN:'''  Tuesday, February 3rd 2015&lt;br /&gt;
*'''WHERE:''' Room PK-1140 - UQAM Pavillon Président-Kennedy, 201 Avenue du Président-Kennedy  J2X 3Y7&lt;br /&gt;
*'''REGISTRATION:''' https://owaspmtlswamp2015.eventbrite.ca&lt;br /&gt;
*'''WEBCAST:''' https://www.youtube.com/watch?v=p4_vjufcB6Q&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/getting-to-know-the-software-assurance-marketplace-swamp-by-pat-beyer&lt;br /&gt;
&lt;br /&gt;
*'''ACADEMIC PARTNER:''' AGEEI-UQAM - http://www.ageei.org/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Welcome speech by Chapter Leader (Jonathan Marcil)&lt;br /&gt;
  18:30-20:00 Main session: Getting to Know the Software Assurance Marketplace&lt;br /&gt;
  20:00-...   End of the meeting&lt;br /&gt;
&lt;br /&gt;
[[Image:SWAMP-Logo-Final-Med.png|300px|link=https://continuousassurance.org/]]&lt;br /&gt;
[[Image:Ageeilogo.jpg|200px|link=http://www.ageei.org/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - 4 décembre - Malware côté serveur — évolution, méthodes d’opération et forensic Linux ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/lo8WDl-WQ3E]] [https://youtu.be/lo8WDl-WQ3E Watch the conference / Regarder la conférence] &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/malware-cote-serveur-par-marc-etienne-m-dot-leveille]] [https://speakerdeck.com/owaspmontreal/malware-cote-serveur-par-marc-etienne-m-dot-leveille See the slides / Voir la présentation] &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''PRÉSENTATEUR PRINCIPAL:''' Marc-Etienne M.Léveillé&lt;br /&gt;
*'''RÉSUMÉ:''' Les logiciels malveillants ciblant les serveurs ont évolué. Ils sont utilisés par des groupes de cybercriminels organisés dans le but de faire du profit via des redirections web et l’envoie de pourriels. La présentation portera sur Opération Windigo, une opération malveillante qui a affecté plus de 25 000 serveurs dans le monde. Après une brève description des composantes de Windigo, nous verrons comment les opérateurs déploient leurs logiciels malveillants et surveille leur réseau de serveurs infectés. Des trucs pratiques pour faire de la forensics sur des systèmes Linux seront donnés. Cette présentation est une suite à la présentation &amp;quot;Linux/Cdorked: Server side malware&amp;quot;, donnée par Olivier Bilodeau à OWASP Montréal en 2013. La présentation sera en français avec des diapositives en anglais (aka Montreal-style).&lt;br /&gt;
*'''BIO:''' Marc-Etienne est un chercheur en logiciel malveillant chez ESET depuis 2012. Il se spécialise dans les logiciels malveillants qui s’attaquent à des plateformes inhabituelles comme aux produits fruités et aux oiseaux nordiques. Dernièrement, il passe beaucoup de son temps à faire la rétro-ingénierie de logiciels malveillants sur des serveurs Linux et s’intéresse à leurs méthodes d’opération. Il adore participer de façon collégiale aux CTFs avec ses amis les CISSP Groupies et jouer de la clarinette. Il tweet très peu à @marc_etienne_.&lt;br /&gt;
*'''QUAND:''' 4 décembre 2014 à 18h00&lt;br /&gt;
*'''OÙ:''' Local M-1510, Polytechnique Montréal, 2900 Boulevard Edouard-Montpetit&lt;br /&gt;
*'''INSCRIPTION:''' https://www.eventbrite.ca/e/owasp-montreal-4-decembre-malware-cote-serveur-evolution-methodes-doperation-et-forensic-linux-tickets-14635313617&lt;br /&gt;
*'''ÉQUIPE ACADÉMIQUE:''' Polyhack - http://polyhack.org/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
&lt;br /&gt;
 18:00-18:30 Réseautage&lt;br /&gt;
 18:30-18:35 Mot de bienvenue par le leader du chapitre (Jonathan M.)&lt;br /&gt;
 18:35-19:30 Présentation principale : Malware côté serveur&lt;br /&gt;
 19:30-20:00 Période de questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Polyhacklogonoirpetit.png|200px|link=http://polyhack.org/]]&lt;br /&gt;
[[Image:LogoPolytechnique.gif|link=http://www.polymtl.ca/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - October 23rd - XXE : À l’assaut des analyseurs XML ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/MZviLB9-42E]] [https://youtu.be/MZviLB9-42E Watch the conference / Regarder la conférence] &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/xxe-a-lassaut-des-analyseurs-xml-par-philippe-arteau]] [https://speakerdeck.com/owaspmontreal/xxe-a-lassaut-des-analyseurs-xml-par-philippe-arteau See the slides / Voir la présentation] &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''PRÉSENTATEUR PRINCIPAL:''' Philippe Arteau&lt;br /&gt;
*'''RÉSUMÉ:''' L'utilisation d’XML est fortement répandue. Le format est utilisé pour des fichiers de configuration, pour des métadonnées, pour des documents textes, et bien plus. La prise en charge de fichiers XML n’est pas sans risque. La plupart des analyseurs XML ne sont pas sécuritaires par défaut pour le traitement de fichier externe. Cette présentation fera un survol des vulnérabilités de type « Xml eXternal Entity » et de l’étendue des risques pour différents langages de programmation. Plusieurs démonstrations sont prévues.&lt;br /&gt;
*'''BIO:''' Philippe est conseiller en sécurité applicative pour le Groupe Technologies Desjardins. Au quotidien, il s’occupe d’effectuer des tests d’intrusions et des revues de code. Il a découvert des vulnérabilités importantes dans plusieurs logiciels populaires incluant Google Chrome, DropBox, ESAPI et Jira.&lt;br /&gt;
*'''QUAND:'''  23 Octobre 2014 à 18h00&lt;br /&gt;
*'''OÙ:''' École de Technologie Supérieure Local A-3230, 1100 Rue Notre-Dame Ouest, Montréal, QC H3C 1K3&lt;br /&gt;
*'''INSCRIPTION:''' http://www.eventbrite.ca/e/owasp-montreal-23-octobre-xxe-a-lassaut-des-analyseurs-xml-tickets-13426881163&lt;br /&gt;
*'''PARTENAIRE ACADÉMIQUE:''' ETS - DCI http://dciets.com/&lt;br /&gt;
*'''PROGRAMME:''' &lt;br /&gt;
&lt;br /&gt;
 18:00-18:30 Réseautage&lt;br /&gt;
 18:30-18:45 Mot de bienvenue&lt;br /&gt;
 18:45-19:45 Présentation principale - &amp;quot;À l’assaut des analyseurs XML&amp;quot; Philippe Arteau&lt;br /&gt;
 19:45-20:00 Période de questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Blason_dci.png‎‎‎|150px|link=http://dciets.com/]]&lt;br /&gt;
[[Image:ETS-rouge-devise-impr-fond_transparent.png|150px|link=http://www.etsmtl.ca/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - July 24th - Web security for DevOps: the glory is in the headers ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/6bp1NCLT-YQ]] [https://youtu.be/6bp1NCLT-YQ Watch the conference / Regarder la conférence] &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/web-security-for-devops-the-glory-is-in-the-headers-by-jonathan-marcil]] [https://speakerdeck.com/owaspmontreal/web-security-for-devops-the-glory-is-in-the-headers-by-jonathan-marcil See the slides / Voir la présentation] &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Jonathan Marcil&lt;br /&gt;
*'''ABSTRACT:''' DevOps is a buzzword which can be easily demystified: in essence it is a process which aims to combine the development and system administration process into one; Operations. As developers become responsible for server setup, security counter measures are evolving as well. The line between server configuration and application behaviour has been blurred. In this talk we will cover some HTTP headers in regards to security such as CORS, CSP and HSTS. We will demonstrate several forms of attack, and how they can (should) be countered.&lt;br /&gt;
*'''BIO:''' Jonathan is devoted to security and specialized in Web application security.  His main occupation is consulting in Web security, but deep down he is a developer with a agnostic vision of programming languages. He has a diploma in Software Engineering from Ecole de Technologie Superieure and more than 10 years of experience in Information Technology and Security.&lt;br /&gt;
*'''WHEN:'''  At noon on July 24th 2014&lt;br /&gt;
*'''WHERE:''' 75 Queen Street, office 3100, Montreal, QC H3C 2N6&lt;br /&gt;
*'''REGISTRATION:''' You can join us on site for a pizza slice but this is mainly an online event. Contact jonathan.marcil@owasp.org.&lt;br /&gt;
*'''WEBCAST:''' https://www.youtube.com/watch?v=6bp1NCLT-YQ&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/web-security-for-devops-the-glory-is-in-the-headers-by-jonathan-marcil&lt;br /&gt;
*'''EVENT SPONSOR:''' Pheromone http://www.pheromone.ca/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  12:00-12:10 Welcome and quick OWASP introduction&lt;br /&gt;
  12:10-13:10 Main presentation - &amp;quot;Web security for DevOps: the glory is in the headers&amp;quot; Jonathan Marcil&lt;br /&gt;
  13:10-... Open discussion and questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Logo-phero.gif‎|link=http://www.pheromone.ca/]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - June 18th - Gaps in the Clouds ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/gaps-in-the-clouds-by-robert-fritz]] [https://speakerdeck.com/owaspmontreal/gaps-in-the-clouds-by-robert-fritz See the slides / Voir la présentation] &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Robert Fritz&lt;br /&gt;
*'''ABSTRACT:''' Cloud technology offers agility and scaling, and a chance to break away from legacy IT choices.  Unfortunately, skipping traditional IT activities often results in poorly patched systems, out of date firewalls, and overprovisioned entitlements wielded by admins whose “day job” is development.  Boundaries of accountability and responsibility amongst cloud providers and consumers are confusing, vague, and shift, making security difficult to manage.  In such an environment, a “BP-spill” event, where cost wins over safely safety, is likely.  This talk will dive down into the cracks between the layers of cloud, and share some of the exciting dirt we have seen and expect to see in coming years.”&lt;br /&gt;
*'''BIO:''' Robert Fritz has been practicing security his entire career. Rob started as an Air Force lieutenant at Langley AFB and later at the Pentagon in Washington DC, building and managing classified networks. Finding he was getting too far from technology after a brief stint flying, he left the military to get back to the tech, and built security tools for HP in their HP-Unix lab.  Over time he found himself in more and more security design discussions, so co-authored HP’s Commercial Application Threat Analysis Methodology, building an internal consulting practice at HP.  This quantitative approach, led to two pending patents, an external-facing consulting practice, and his contributions to NIST IR-7502, the Common Configuration Scoring System (CVSS follow-on).  He is the former lead editor for the Center for Internet Security’s HP-UX Benchmark, and current lead for the Android Benchmark.  Robert now works for Morgan Stanley as global head of the Strategic Consulting team in the Security Architecture group, and leads the team’s cloud and social-media security practices.&lt;br /&gt;
*'''WHEN:''' June 18th 2014&lt;br /&gt;
*'''WHERE:''' 700 Rue Wellington, Floor 2, Montreal, QC H3C 3S4&lt;br /&gt;
*'''REGISTRATION:''' http://owaspmtl18junems.eventbrite.ca&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/gaps-in-the-clouds-by-robert-fritz&lt;br /&gt;
*'''EVENT SPONSOR:''' Morgan Stanley http://www.morganstanley.com/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:30 Networking and Morgan Stanley Hosted Pizza and Soft Drinks&lt;br /&gt;
  18:30-18:45 OWASP Chapter &amp;amp; Morgan Stanley Welcome&lt;br /&gt;
  18:45-19:45 Main presentation - &amp;quot;Gaps in the Clouds&amp;quot; Robert Fritz&lt;br /&gt;
  19:45-20:00 Open discussion and questions&lt;br /&gt;
  20:00-...   Optional, informal networking at Aziatic - 626 rue Marguerite-d'Youville, Montréal, QC H3C 1W7&lt;br /&gt;
&lt;br /&gt;
[[Image:Morgan_Stanley_Historical_Logo.png|link=http://www.morganstanley.com/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - May 26th - Récapitulatif des challenges NorthSec ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/P8_V3RI1Ru4]] [https://youtu.be/P8_V3RI1Ru4 Watch the conference / Regarder la conférence] &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''PRÉSENTATEUR PRINCIPAL:''' Laurent Desaulniers&lt;br /&gt;
*'''RÉSUMÉ:''' Solutions de la compétition en sécurité NorthSec 2014 sur les sujets de  XXE + SSRF, WAF Bypass, Xpath Injection, DOM Injection, HTTP Only Flag bypass et contournement de captchas. Une bonne façon d'apprendre sur ces failles que vous étiez ou non un participant de la compétition.&lt;br /&gt;
*'''MESSAGE DU PRÉSENTATEUR:''' Vous voyez Rao dans votre soupe? Vous voulez une solution pour un XSS avec des cookies http only? Les captchas illisibles sont un problème? Assistez à la présentation de l'OWASP!&lt;br /&gt;
*'''BIO:''' Laurent Desaulniers est un passionné de sécurité informatique. Il a présenté au Hackfest, au colloque RSI, à OWASP et est challenge designer à NorthSec. M. Desaulniers détient les certifications CISSP, CISM, CISA et OSCP.&lt;br /&gt;
*'''QUAND:''' 26 mai à 18h00&lt;br /&gt;
*'''OÙ:''' Local PK-1140 - Pavillon Président-Kennedy 201, Avenue du Président-Kennedy, J2X 3Y7&lt;br /&gt;
*'''INSCRIPTION:''' https://www.eventbrite.ca/e/owasp-montreal-26-mai-recapitulatif-des-challenges-northsec-tickets-11724413035&lt;br /&gt;
*'''WEBCAST:''' https://www.youtube.com/watch?v=P8_V3RI1Ru4&lt;br /&gt;
*'''ÉQUIPE ACADÉMIQUE''' AGEEI-UQAM - http://www.ageei.org/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
&lt;br /&gt;
 18:00-18:30 Réseautage&lt;br /&gt;
 18:30-18:35 Mot de bienvenue par le leader du chapitre (Jonathan M.)&lt;br /&gt;
 18:35-19:30 Présentation principale : Récapitulatif des challenges NorthSec&lt;br /&gt;
 19:30-20:00 Période de questions&lt;br /&gt;
&lt;br /&gt;
[[Image:Ageeilogo.jpg|200px|link=http://www.ageei.org/]]&lt;br /&gt;
[[Image:2397_nsec_Logo_500-250.png|200px|link=http://nsec.io/]]&lt;br /&gt;
&lt;br /&gt;
== Networking with infosec communities - April 21st ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''RÉSUMÉ:''' En collaboration avec Montréhack, mtlsec et NorthSec, nous organisons une soirée réseautage dans un pub du centre-ville. Du plaisir garanti avec les membres de plusieurs communautés infosec de Montréal!&lt;br /&gt;
&lt;br /&gt;
*'''ABSTRACT:''' In collaboration with Montréhack, mtlsec and NorthSec, we are organizing a networking evening in a pub downtown. Fun guaranteed with the other security communities in Montreal!&lt;br /&gt;
&lt;br /&gt;
*'''QUAND:''' 21 Avril 2014&lt;br /&gt;
*'''WHEN:''' April 21st 2014&lt;br /&gt;
&lt;br /&gt;
*'''OÙ/WHERE:''' BENELUX - Brasserie Artisanale 245 Sherbrooke St W Montreal, QC H2X 1X7&lt;br /&gt;
&lt;br /&gt;
*'''INSCRIPTION/REGISTRATION:''' https://www.eventbrite.ca/e/montrehack-avril-april-northsec-pre-party-tickets-11232307133&lt;br /&gt;
&lt;br /&gt;
*'''PARTENAIRES/PARTNERS:''' Montréhack http://montrehack.ca/ - mtlsec http://blog.mtlsec.com/ - NorthSec https://www.nsec.io/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
  18:00-21:00 Networking&lt;br /&gt;
  21:00-23:59 Remember to drink responsibly!&lt;br /&gt;
&lt;br /&gt;
== OWASP Montréal - March 27th - Panel Compétition en sécurité NorthSec ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides]] Slides are not available / Présentation non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
'''Présentation sous forme de panel - venez poser vos questions!'''&lt;br /&gt;
&lt;br /&gt;
*'''RÉSUMÉ:''' Les compétitions de type Capture the Flag (CTF) sont un moyen pour les professionnels et amateurs de sécurité informatique de mettre leurs talents à l'épreuve. NorthSec est une compétition Montréalaise annuelle en sécurité appliquée, qui aura lieu cette année au Marché Bonsecours de Montréal le 25, 26 et 27 avril prochain. Elle vise à augmenter le niveau technique des professionnels de la sécurité au Québec, ainsi que de permettre à ses acteurs les plus talentueux de se démarquer.&lt;br /&gt;
*'''DÉTAILS:''' Le panel de jeudi, sous la forme d'un échange convivial entre les organisateurs de l'évènement et de ses participants, abordera des thèmes variés comme l'écriture de bon défis, l'infrastructure, la logistique, les inattendus, un bilan de 2013 et tout ça en passant par de savoureuses annecdotes (on l'espère). Venez en grand nombre toucher à ces légendes de la scène infosec montréalaise!&lt;br /&gt;
*'''PANÉLISTES:''' Gabriel Tremblay, François Proulx, Laurent Desaulniers, Stéphane Graber&lt;br /&gt;
*'''ANIMATEUR:''' Olivier Bilodeau&lt;br /&gt;
*'''QUAND:''' 27 mars 2014&lt;br /&gt;
*'''OÙ:''' Salle M-1510, École Polytechnique de Montréal, 2500 chemin de Polytechnique, Montréal (Québec) H3T 1J4, pavillon Lassonde&lt;br /&gt;
*'''INSCRIPTION:''' https://www.eventbrite.ca/e/owasp-montreal-27-mars-panel-competition-en-securite-northsec-tickets-10918436337&lt;br /&gt;
*'''ÉQUIPE ACADÉMIQUE:''' Polytechnique - Polyhack http://polyhack.org/&lt;br /&gt;
*'''PROGRAMME:'''&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Mot de bienvenue par le leader du chapitre (Jonathan Marcil)&lt;br /&gt;
  18:30-20:00 Présentation principale : Panel NorthSsec&lt;br /&gt;
&lt;br /&gt;
[[Image:Polyhack.png‎‎|200px|link=http://polyhack.org/]]&lt;br /&gt;
[[Image:LogoPolytechnique.gif|link=http://www.polymtl.ca/]]&lt;br /&gt;
[[Image:2397_nsec_Logo_500-250.png|200px|link=http://nsec.io/]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - February 25th - Proven Strategies for Web Application Security ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video]] Unfortunately, the presentation is not available / Vidéo non disponible &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/proven-strategies-for-web-application-security-by-justin-c-klein-keane]] [https://speakerdeck.com/owaspmontreal/proven-strategies-for-web-application-security-by-justin-c-klein-keane See the slides / Voir la présentation] &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Justin C. Klein Keane&lt;br /&gt;
*'''ABSTRACT:''' The rising dominance of the web as an application delivery platform has focused attacker attention squarely on the security of dynamic web applications. Application security is a complex, and shifting, field. Learn about tested and successful techniques to build safer applications, find flaws before they become vulnerabilities, and deploy applications that can detect, and resist attack.&lt;br /&gt;
*'''BIO:''' Justin C. Klein Keane is a security engineer and chapter leaders of OWASP in Philadelphia. For over a decade Justin has worked as a trainer, coder, and exploit developer. Justin is currently writing a book for NoStarch Press on hacking, speaks regularly at conferences, holds a masters degree in information technology from the University of Pennsylvania and is credited with hundreds of application vulnerability discoveries.&lt;br /&gt;
*'''WHEN:''' February 25th 2014&lt;br /&gt;
*'''WHERE:''' Ecole de technologie superieure, 1100 Notre-Dame Street West, Montreal, Room: A-1150&lt;br /&gt;
*'''REGISTRATION:''' http://owaspmtljan2014.eventbrite.ca&lt;br /&gt;
*'''SLIDES:''' https://speakerdeck.com/owaspmontreal/proven-strategies-for-web-application-security-by-justin-c-klein-keane&lt;br /&gt;
*'''ACADEMIC PARTNER:''' ETS - DCI http://dciets.com/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Welcome speech by Chapter Leader (Jonathan Marcil)&lt;br /&gt;
  18:30-20:00 Main session and open discussion: Proven Strategies for Web Application Security&lt;br /&gt;
  20:00-...   End of the meeting in a pub&lt;br /&gt;
&lt;br /&gt;
[[Image:Dciets.png‎‎‎|100px|link=http://dciets.com/]]&lt;br /&gt;
[[Image:Logo_ets.png|link=http://www.etsmtl.ca/]]&lt;br /&gt;
&lt;br /&gt;
== OWASP Montreal - January 28th - Latest trends in Mobile Security ==&lt;br /&gt;
&lt;br /&gt;
[[Image:Video-link.png | Link to video | link=https://youtu.be/8qPyKj4FKgY]] [https://youtu.be/8qPyKj4FKgY Watch the conference / Regarder la conférence] &amp;lt;br/&amp;gt;&lt;br /&gt;
[[Image:Presentation-link.png | Slides | link=https://speakerdeck.com/owaspmontreal/latest-trends-in-mobile-security-by-francois-proulx]] [https://speakerdeck.com/owaspmontreal/latest-trends-in-mobile-security-by-francois-proulx See the slides / Voir la présentation] &amp;lt;br/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*'''MAIN PRESENTER:''' Francois Proulx&lt;br /&gt;
*'''ABSTRACT:''' Last AppSecUSA 2013 had a great line up of talks, especially regarding mobile applications. This session will be covering all the hottest presentations about mobile security by doing an overview from what see saw at AppSecUSA, all with some slides and snippets of presentations that was recorded at the event. Discussion will be encouraged within the audience as this will be more a dynamic event than a regular talk.&lt;br /&gt;
*'''BIO:''' François Proulx is a senior mobile application developer who has worked on dozens of iOS applications since the very beginning of the Apple iOS platform. Over the past few years he has switched his focus to security. He spends a lot of his free time participating in Capture the Flag events (CTFs) and organizing the NorthSec security competition.&lt;br /&gt;
*'''WHEN:''' January 28th 2014&lt;br /&gt;
*'''WHERE:''' UQAM Room PK-1705, Pavillon Président-Kennedy (the big boat at Place des Arts) - 201 Avenue du Président-Kennedy  J2X 3Y7&lt;br /&gt;
*'''REGISTRATION:''' http://owaspmtl-mobilesecurity.eventbrite.ca&lt;br /&gt;
*'''SLIDES/CONTENT:''' [http://www.youtube.com/playlist?list=PLQtB2ug5xmvaQ9jeRWV53-F_T555GQfhW YouTube playlist]&lt;br /&gt;
*'''SPONSOR:''' Academic partner AGEEI-UQAM - http://www.ageei.org/&lt;br /&gt;
*'''PROGRAM:''' &lt;br /&gt;
&lt;br /&gt;
  18:00-18:25 Networking&lt;br /&gt;
  18:25-18:30 Welcome speech by Chapter Leader (Jonathan M.)&lt;br /&gt;
  18:30-20:00 Main session and open discussion: Mobile Security&lt;br /&gt;
  20:00-...   End of the meeting in a pub&lt;br /&gt;
&lt;br /&gt;
[[Image:Ageeilogo.jpg|200px|link=http://www.ageei.org/]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Presentations For Download  ====&lt;br /&gt;
&lt;br /&gt;
[http://www.owasp.org/images/0/0d/20100209mstechdaysowaspasvssgiv01-12657916463819-phpapp02.ppt OWASP ASVS] by Sebastien Gioria (09/03/2010) &lt;br /&gt;
&lt;br /&gt;
[http://www.ph-il.ca/slides/afup__authetification_forte.pdf Authentification Forte] by Philippe Gamache (02/02/2010) &lt;br /&gt;
&lt;br /&gt;
[http://www.opensamm.org/downloads/OpenSAMM-1.0.ppt Software Assurance Maturity Model (OpenSAMM)] by Pravir Chandra (03/11/2009) &lt;br /&gt;
&lt;br /&gt;
[http://www.owasp.org/images/d/de/Owasp-montreal-sept-17h-2009-justin-foster.pdf Crossing the Border – Javascript Exploits] by Justin Foster (17/09/2009) &lt;br /&gt;
&lt;br /&gt;
[http://www.owasp.org/images/c/c2/ALaughRIAt.pdf A Laugh RIAt] by Rafal Los (07/04/2009) &lt;br /&gt;
&lt;br /&gt;
[https://www.owasp.org/images/e/eb/OWASP-Montreal-24022009-RobLabbe.pptx Microsoft Security Development Lifecycle for IT] by Rob Labbe (24/02/2009) &lt;br /&gt;
&lt;br /&gt;
[https://www.owasp.org/images/3/39/OWASP-Montreal-24022009-EN.pdf OWASP Goal and Top Ten 2007 for Managers - French version] by Benoit Guerette (24/02/2009)&lt;br /&gt;
&lt;br /&gt;
Newer presentations are available on [https://speakerdeck.com/owaspmontreal Speaker Deck]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Image:Circle_owasp_logo_nowhitebackground.png|200px]]&lt;br /&gt;
&lt;br /&gt;
= OWASP Foundation / Mission OWASP    = &lt;br /&gt;
OWASP Foundation ([https://docs.google.com/a/owasp.org/presentation/d/10wi1EWFCPZwCpkB6qZaBNN8mR2XfQs8sLxcj9SCsP6c/edit?usp=sharing Overview Slides]) is a professional association of [[Membership | global members]] and is open to anyone interested in learning more about software security. Local chapters are run independently and guided by the [[Chapter_Leader_Handbook]].  As a [[About_OWASP | 501(c)(3)]] non-profit professional association your support and sponsorship of any meeting venue and/or refreshments is tax-deductible. Financial contributions should only be made online using the authorized online chapter donation button.  To be a &amp;lt;b&amp;gt;SPEAKER&amp;lt;/b&amp;gt; at ANY OWASP Chapter in the world simply review the [[Speaker_Agreement | speaker agreement]] and then contact the local chapter leader with details of what OWASP PROJECT, independent research or related software security topic you would like to present on.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;b&amp;gt;La fondation OWASP est une [https://www.owasp.org/index.php/Membership association de professionnels] et elle est ouverte à tout intervenant intéressé à en apprendre davantage sur la sécurité applicative. Les chapitres locaux (dont celui de Montréal) sont gérés de façon indépendante et selon un [https://www.owasp.org/index.php/Chapter_Leader_Handbook manuel de directives à respecter].   &lt;br /&gt;
Toute contribution financière au chapitre peut être faite en ligne en utilisant l’icône prévu à cet effet. Pour être conférencier au sein de n’importe quel chapitre à l’échelle mondiale, vous n’avez qu’à prendre connaissance du document [https://www.owasp.org/index.php/Speaker_Agreement &amp;quot;entente avec les conférenciers – speaker agreement&amp;quot;] et à joindre le responsable du chapitre Montréal avec un descriptif du sujet que vous aimeriez aborder et s’il est relié à un projet OWASP, à de la recherche indépendante ou encore le sujet en particulier, concernant la sécurité applicative, que vous souhaitez aborder.&amp;lt;/b&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== [[Image:Circle_owasp_logo_nowhitebackground.png|128px]] Montreal OWASP Team == &lt;br /&gt;
&lt;br /&gt;
Scope of the team is to discuss and plan local activities and meetings &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== Chapter Leaders ===&lt;br /&gt;
&lt;br /&gt;
* [mailto:anne.gauthier@owasp.org Anne Gauthier], President/Présidente&lt;br /&gt;
* [mailto:michel.bourque{at}owasp.org Michel Bourque], Chapter coordinator and marketing manager/Coordination et Marketing&lt;br /&gt;
* [mailto:hugo.genesse(at)owasp.org Hugo Genesse], Web content and production manager/Site internet et Production &lt;br /&gt;
* [mailto:olivier.arteau(at)owasp.org Olivier Arteau], Logistic manager/Logistique&lt;br /&gt;
&lt;br /&gt;
==== Chapter leader history ====&lt;br /&gt;
*2008-2010 - Benoit Guerette, founder and chapter leader&lt;br /&gt;
*2011-2012 - Philippe Gamache, chapter leader (vice chapter-leader since 2010)&lt;br /&gt;
*2013-2015 - Jonathan Marcil, chapter leader&lt;br /&gt;
*2016-... - Anne Gauthier, Michel Bourque, Marius Popescu, Hugo Genesse, Olivier Arteau&lt;br /&gt;
&lt;br /&gt;
==== Old board members ====&lt;br /&gt;
*Philippe Pépos Petitclerc&lt;br /&gt;
*Michael Robillard&lt;br /&gt;
*Benoit Guerette (logistics 2015)&lt;br /&gt;
*Alexandre Rimthong&lt;br /&gt;
*Mathieu Binette&lt;br /&gt;
*Sean Coates&lt;br /&gt;
*Jean-Marc Robert&lt;br /&gt;
*Philippe Blondin&lt;br /&gt;
*Benoit Guerette (founder)&lt;br /&gt;
*Laurent Desaulniers&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;headertabs/&amp;gt; &lt;br /&gt;
__NOTOC__ &lt;br /&gt;
[[Category:Canada]]&lt;/div&gt;</summary>
		<author><name>Svieg</name></author>	</entry>

	<entry>
		<id>https://wiki.owasp.org/index.php?title=File:Shopify_Logo-r.png&amp;diff=227183</id>
		<title>File:Shopify Logo-r.png</title>
		<link rel="alternate" type="text/html" href="https://wiki.owasp.org/index.php?title=File:Shopify_Logo-r.png&amp;diff=227183"/>
				<updated>2017-03-09T02:47:45Z</updated>
		
		<summary type="html">&lt;p&gt;Svieg: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Svieg</name></author>	</entry>

	</feed>