Regular Expressions 101

Save & Share

Flavor

  • PCRE2 (PHP >=7.3)
  • PCRE (PHP <7.3)
  • ECMAScript (JavaScript)
  • Python
  • Golang
  • Java 8
  • .NET 7.0 (C#)
  • Rust
  • Regex Flavor Guide

Function

  • Match
  • Substitution
  • List
  • Unit Tests

Tools

Sponsors
There are currently no sponsors. Become a sponsor today!
An explanation of your regex will be automatically generated as you type.
Detailed match information will be displayed here automatically.
  • All Tokens
  • Common Tokens
  • General Tokens
  • Anchors
  • Meta Sequences
  • Quantifiers
  • Group Constructs
  • Character Classes
  • Flags/Modifiers
  • Substitution
  • A single character of: a, b or c
    [abc]
  • A character except: a, b or c
    [^abc]
  • A character in the range: a-z
    [a-z]
  • A character not in the range: a-z
    [^a-z]
  • A character in the range: a-z or A-Z
    [a-zA-Z]
  • Any single character
    .
  • Alternate - match either a or b
    a|b
  • Any whitespace character
    \s
  • Any non-whitespace character
    \S
  • Any digit
    \d
  • Any non-digit
    \D
  • Any word character
    \w
  • Any non-word character
    \W
  • Non-capturing group
    (?:...)
  • Capturing group
    (...)
  • Zero or one of a
    a?
  • Zero or more of a
    a*
  • One or more of a
    a+
  • Exactly 3 of a
    a{3}
  • 3 or more of a
    a{3,}
  • Between 3 and 6 of a
    a{3,6}
  • Start of string
    ^
  • End of string
    $
  • A word boundary
    \b
  • Non-word boundary
    \B

Regular Expression

/
/
g

Test String

Code Generator

Generated Code

#include <StringConstants.au3> ; to declare the Constants of StringRegExp #include <Array.au3> ; UDF needed for _ArrayDisplay and _ArrayConcatenate Local $sRegex = ">sp6438(?:<[^>]*?>\s*){4}\s*([^>]*?)\s*(?:<[^>]*?>\s*){4}\s*[^>]*?\s*(?:<[^>]*?>\s*){4}\s*[^>]*?<[^>]*?>[^>]*?\s*(?:<[^>]*?>\s*){7}\s*Hostname\s*(?:<[^>]*?>\s*){2}\s*Keyword\s*(?:<[^>]*?>\s*){2}\s*Current Status\s*(?:<[^>]*?>\s*){2}\s*Last Review\s*(?:<[^>]*?>\s*){2}\s*Last\s*Response\s*<\/th>\s*<\/tr>\s*(?:<[^>]*?>\s*){3}\s*([^>]*?)\s*(?:<[^>]*?>\s*){4}\s*([^>]*?)\s*<" Local $sString = "<HTML>" & @CRLF & _ "<BODY text=black>" & @CRLF & _ "<!-- Make table cells that are empty visible -->" & @CRLF & _ "<style type="text/css"> table { empty-cells:show; } </style>" & @CRLF & _ "<!-- If Javascript is not available redirect the user to a noscript page -->" & @CRLF & _ "<noscript>" & @CRLF & _ " <meta http-equiv="refresh" content="0;url=noscript.php">" & @CRLF & _ "</noscript>" & @CRLF & _ "" & @CRLF & _ "" & @CRLF & _ "<script>" & @CRLF & _ "// function to toggle div visibility" & @CRLF & _ "function toggleDiv(divid)" & @CRLF & _ "{" & @CRLF & _ " if(document.getElementById(divid).style.display == 'none')" & @CRLF & _ " {" & @CRLF & _ " document.getElementById(divid).style.display = 'block';" & @CRLF & _ " } else" & @CRLF & _ " {" & @CRLF & _ " document.getElementById(divid).style.display = 'none';" & @CRLF & _ " }" & @CRLF & _ "}" & @CRLF & _ "" & @CRLF & _ "// This javascript function will update the New response textarea and comment" & @CRLF & _ "function automate_resp_detail(formid,detailid,detail_note_id)" & @CRLF & _ "{" & @CRLF & _ " // get the element id's of the parts of the form" & @CRLF & _ " var myselid=document.getElementById(formid);" & @CRLF & _ " var mydetid=document.getElementById(detailid);" & @CRLF & _ " var mynoteid=document.getElementById(detail_note_id);" & @CRLF & _ "" & @CRLF & _ " // if we can't get any of the element id's bail" & @CRLF & _ " if (!mydetid) {return;}" & @CRLF & _ " if (!myselid) {return;}" & @CRLF & _ " if (!mynoteid) {return;}" & @CRLF & _ "" & @CRLF & _ " // get the details text from the title tag of the option" & @CRLF & _ " var details=myselid.options[myselid.selectedIndex].title;" & @CRLF & _ "" & @CRLF & _ " // get the lock status info from the lanf tag." & @CRLF & _ " // x- designates experimental languages, but is not used" & @CRLF & _ " // as a language here. www.w3.org/TR/REC-html40/struct/dirlang.html#h-8.1.1" & @CRLF & _ " var lockit=myselid.options[myselid.selectedIndex].lang;" & @CRLF & _ "" & @CRLF & _ " // if we have text to work with in details" & @CRLF & _ " if (details)" & @CRLF & _ " {" & @CRLF & _ " // prepopulate the textarea on locked items" & @CRLF & _ " if (lockit.toLowerCase() == 'x-lock-y')" & @CRLF & _ " {" & @CRLF & _ " // put details into form" & @CRLF & _ " mydetid.innerHTML=details;" & @CRLF & _ " // make form uneditable" & @CRLF & _ " mydetid.readOnly=true;" & @CRLF & _ " // make the background light grey" & @CRLF & _ " mydetid.style.backgroundColor='lightgrey';" & @CRLF & _ " // clear and hide the div above the input area with the note" & @CRLF & _ " mynoteid.innerHTML="";" & @CRLF & _ " mynoteid.style.display= 'none';" & @CRLF & _ " }" & @CRLF & _ " else if (lockit.toLowerCase() == 'x-lock-a')" & @CRLF & _ " { // prepopulated admin options" & @CRLF & _ " // put details into form" & @CRLF & _ " mydetid.innerHTML=details;" & @CRLF & _ " // clear the div above the input area with the note" & @CRLF & _ " mynoteid.innerHTML="";" & @CRLF & _ " mynoteid.style.display= 'none';" & @CRLF & _ " }" & @CRLF & _ " else" & @CRLF & _ " { // unlocked items with detail" & @CRLF & _ " // clear the textarea, and remove read only" & @CRLF & _ " mydetid.innerHTML="";" & @CRLF & _ " mydetid.readOnly=false;" & @CRLF & _ " //" & @CRLF & _ " //at1273" & @CRLF & _ " // set the color to orange" & @CRLF & _ " mydetid.style.backgroundColor='#FE8705';" & @CRLF & _ " // set the color back to white" & @CRLF & _ " //mydetid.style.backgroundColor='white';" & @CRLF & _ " //" & @CRLF & _ " //at1273" & @CRLF & _ " // set width and height " & @CRLF & _ " mydetid.style.width='90';" & @CRLF & _ " mydetid.style.height='20';" & @CRLF & _ " // populate the div above the input area with the note" & @CRLF & _ " mynoteid.innerHTML=details;" & @CRLF & _ " // make the div visible" & @CRLF & _ " mynoteid.style.display= 'block';" & @CRLF & _ " }" & @CRLF & _ " }" & @CRLF & _ " else" & @CRLF & _ " { // items with no detail clear the textarea" & @CRLF & _ " mydetid.innerHTML="";" & @CRLF & _ " // remove read only" & @CRLF & _ " mydetid.readOnly=false;" & @CRLF & _ " // set the color back to white" & @CRLF & _ " mydetid.style.backgroundColor='white';" & @CRLF & _ " // clear and hide the div above the input area with the note" & @CRLF & _ " mynoteid.innerHTML="";" & @CRLF & _ " mynoteid.style.display= 'none';" & @CRLF & _ " }" & @CRLF & _ "}" & @CRLF & _ "" & @CRLF & _ "//" & @CRLF & _ "//Used to generate xls view" & @CRLF & _ "function exporttoxls(x) {" & @CRLF & _ " var old_action = x.action;" & @CRLF & _ "" & @CRLF & _ " //" & @CRLF & _ " //UPDATE ACCORDINGLY FOR TESTING" & @CRLF & _ " //at1273" & @CRLF & _ " //x.action = "https://ushsecurityrem.test.att.com/NR-TEST/exportxls.php"" & @CRLF & _ " x.action = "https://ushsecurityrem.it.att.com/NR-SACT/exportxls.php"" & @CRLF & _ " //x.action = "https://ushsecurityrem.test.att.com/NR-SACT/exportxls.php"" & @CRLF & _ " x.submit();" & @CRLF & _ " x.action = old_action;" & @CRLF & _ "" & @CRLF & _ "}" & @CRLF & _ "" & @CRLF & _ "//try to see the previous page report" & @CRLF & _ "function prePage(cp, tform) {" & @CRLF & _ " if (cp == 1) {" & @CRLF & _ " alert("You are on the first page");" & @CRLF & _ " return;" & @CRLF & _ " }" & @CRLF & _ "" & @CRLF & _ " document.getElementById("current_page2").value = cp-1;" & @CRLF & _ " tform.submit();" & @CRLF & _ "}" & @CRLF & _ "" & @CRLF & _ "//try to see the next page report" & @CRLF & _ "function nextPage(cp, maxp, tform) {" & @CRLF & _ " if (cp == maxp) {" & @CRLF & _ " alert("You are on the last page");" & @CRLF & _ " return;" & @CRLF & _ " }" & @CRLF & _ "" & @CRLF & _ " document.getElementById("current_page2").value = cp+1;" & @CRLF & _ " tform.submit();" & @CRLF & _ "}" & @CRLF & _ "" & @CRLF & _ "//try to change to a specific page" & @CRLF & _ "function manualPage(cp, newp, maxp, tform) {" & @CRLF & _ " if (isNaN(newp)) {" & @CRLF & _ " alert("Page must be a number");" & @CRLF & _ " return;" & @CRLF & _ " }" & @CRLF & _ " if (cp==newp) {" & @CRLF & _ " //ignore they are staying on the same page" & @CRLF & _ " return;" & @CRLF & _ " }" & @CRLF & _ " if (newp < 1) {" & @CRLF & _ " alert("There is no page less than 1");" & @CRLF & _ " return;" & @CRLF & _ " }" & @CRLF & _ " if (newp > maxp) {" & @CRLF & _ " alert("That page is higher than the max");" & @CRLF & _ " return;" & @CRLF & _ " }" & @CRLF & _ " document.getElementById("current_page2").value = newp;" & @CRLF & _ " tform.submit();" & @CRLF & _ " " & @CRLF & _ "}" & @CRLF & _ "" & @CRLF & _ "function manualPage2(event, cp, newp, maxp, tform) {" & @CRLF & _ " if (event.keyCode == 13) {" & @CRLF & _ " manualPage(cp, newp, maxp, tform);" & @CRLF & _ " }" & @CRLF & _ "}" & @CRLF & _ "" & @CRLF & _ "</script>" & @CRLF & _ "" & @CRLF & _ "<br/>" & @CRLF & _ "" & @CRLF & _ "<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3c.org/TR/1999/REC-html401-19991224/loose.dtd">" & @CRLF & _ "<HTML>" & @CRLF & _ "<HEAD>" & @CRLF & _ "<TITLE>Notification Response: SACT</TITLE>" & @CRLF & _ "<META http-equiv=Content-Type content="text/html; charset=utf-8">" & @CRLF & _ "<link rel="stylesheet" href="/includes/style/style2.css" type="text/css">" & @CRLF & _ "<link rel="stylesheet" href="/includes/style/attstyle.css" type="text/css">" & @CRLF & _ "" & @CRLF & _ "</HEAD>" & @CRLF & _ "" & @CRLF & _ "<BODY text=#000000 bottomMargin=0 bgColor=#ffffff leftMargin=0 topMargin=0 rightMargin=0 marginheight="0" marginwidth="0">" & @CRLF & _ "" & @CRLF & _ "<!--- MENU --->" & @CRLF & _ "<script>" & @CRLF & _ "var ko,currentlyVis;" & @CRLF & _ "" & @CRLF & _ "function hide_select() {" & @CRLF & _ " // Hide all the select elements on the page" & @CRLF & _ " var divs = document.getElementsByTagName('select');" & @CRLF & _ " for (i=0; i<divs.length; i++) {" & @CRLF & _ " divs[i].style.visibility = "hidden";" & @CRLF & _ " } " & @CRLF & _ "}" & @CRLF & _ "" & @CRLF & _ "function show_select() {" & @CRLF & _ " // Show all the select elements on the page" & @CRLF & _ " var divs = document.getElementsByTagName('select');" & @CRLF & _ " for(i=0; i<divs.length; i++) { " & @CRLF & _ " divs[i].style.visibility = "visible";" & @CRLF & _ " }" & @CRLF & _ "}" & @CRLF & _ "" & @CRLF & _ "function showMenu(smnu){" & @CRLF & _ " clearTimeout(ko);" & @CRLF & _ " if (document.getElementById) {" & @CRLF & _ " s = document.getElementById(smnu).style;" & @CRLF & _ " }" & @CRLF & _ " else {" & @CRLF & _ " if (document.all)" & @CRLF & _ " s = document.all[smnu].style;" & @CRLF & _ " else" & @CRLF & _ " s = document.layers.smnu;" & @CRLF & _ " }" & @CRLF & _ " if (currentlyVis) {" & @CRLF & _ " currentlyVis.visibility = 'hidden';" & @CRLF & _ " currentlyVis.display = 'none';" & @CRLF & _ " }" & @CRLF & _ " s.visibility = 'visible';" & @CRLF & _ " s.display = 'block';" & @CRLF & _ " currentlyVis = s;" & @CRLF & _ " hide_select();" & @CRLF & _ "}" & @CRLF & _ "" & @CRLF & _ "function hideMenu(smnu, k){" & @CRLF & _ " if (document.getElementById) {" & @CRLF & _ " h = document.getElementById(smnu).style;" & @CRLF & _ " }" & @CRLF & _ " else {" & @CRLF & _ " if (document.all)" & @CRLF & _ " h = document.all[smnu].style;" & @CRLF & _ " else" & @CRLF & _ " h = document.layers.smnu;" & @CRLF & _ " }" & @CRLF & _ " if (k==1) {" & @CRLF & _ " h.visibility = 'hidden';" & @CRLF & _ " h.display = 'none';" & @CRLF & _ " }" & @CRLF & _ " else" & @CRLF & _ " ko = setTimeout("hideMenu('"+smnu+"', 1);", 200);" & @CRLF & _ " show_select();" & @CRLF & _ "}" & @CRLF & _ "</script>" & @CRLF & _ "" & @CRLF & _ "<div style="position:absolute; top:72px;">" & @CRLF & _ " <table border="0" cellpadding="0" cellspacing="0">" & @CRLF & _ " <tr>" & @CRLF & _ " <td class="menu_header" onmouseover="this.className='menu_header_on'; showMenu('HomeMenu');" onmouseout="this.className='menu_header'; hideMenu('HomeMenu',0);">Tech Ops Security Remediation</td>" & @CRLF & _ " " & @CRLF & _ " <td style="" class="menu_header" onmouseover="this.className='menu_header_on'; showMenu('MethodsMenu');" onmouseout="this.className='menu_header'; hideMenu('MethodsMenu',0);">Methods and Procedures</td>" & @CRLF & _ "" & @CRLF & _ " <td style="" class="menu_header" onmouseover="this.className='menu_header_on'; showMenu('ContactsMenu');" onmouseout="this.className='menu_header'; hideMenu('ContactsMenu',0);">Contact Us</td>" & @CRLF & _ " <td>&nbsp;</td>" & @CRLF & _ " " & @CRLF & _ " </tr>" & @CRLF & _ " </table>" & @CRLF & _ "</div>" & @CRLF & _ "" & @CRLF & _ "<!--- Tech Ops SECURITY HOME MENU --->" & @CRLF & _ "<div style="position:absolute; top:100px; width:125px; border:0px;">" & @CRLF & _ "<span id="HomeMenu" style="top:60px; visibility:hidden; display:none;" >" & @CRLF & _ "<div class="menu_item" style="width:200;" onclick="location.href='/nr/'; " onmouseover="window.status='/nr/'; this.className='menu_item_on'; showMenu('HomeMenu');" onmouseout="window.status=''; this.className='menu_item'; hideMenu('HomeMenu', 0);">Notification Response Instances</div>" & @CRLF & _ "</span>" & @CRLF & _ "</div>" & @CRLF & _ "" & @CRLF & _ "<!--- METHODS AND PROCEDURES --->" & @CRLF & _ "<div style="position:absolute; top:100px; width:125px; border:0px; left:155px;">" & @CRLF & _ "<span id="MethodsMenu" class="nav" style="top:60px; visibility:hidden;" >" & @CRLF & _ " <div class="menu_item" style="width:225px;" onclick="window.open('http://wiki.web.att.com/display/nrsact/NR+SACT+Methods+and+Procedures'); " onmouseover="window.status='http://wiki.web.att.com/display/nrsact/NR+SACT+Methods+and+Procedures'; this.className='menu_item_on'; showMenu('MethodsMenu');" onmouseout="window.status=''; this.className='menu_item'; hideMenu('MethodsMenu', 0);">NR-SACT WIKI (Open New Tab)</div>" & @CRLF & _ "</span>" & @CRLF & _ "</div>" & @CRLF & _ "" & @CRLF & _ "<!--- CONTACTS --->" & @CRLF & _ "<div style="position:absolute; top:100px; width:125px; border:0px; left:311px;">" & @CRLF & _ "<span id="ContactsMenu" class="nav" style="top:60px; visibility:hidden;" >" & @CRLF & _ " <div class="menu_item" style="width:235px;" onclick="window.location.href='mailto:DL-ATO-Security-Rem@att.com?subject=Tech Ops Security Remediation NR-SACT Questions&body=PLEASE ATTACH EMAIL AND ENTER INFORMATION RELATED TO THE TICKET'; " onmouseover="window.status='DL-ATO-Security-Rem@att.com'; this.className='menu_item_on'; showMenu('ContactsMenu');" onmouseout="window.status=''; this.className='menu_item'; hideMenu('ContactsMenu', 0);">NR-SACT Question (Open Outlook)</div>" & @CRLF & _ "</span>" & @CRLF & _ "</div>" & @CRLF & _ "" & @CRLF & _ "<!--- END: MENU --->" & @CRLF & _ "" & @CRLF & _ "<div class="header_bar">" & @CRLF & _ " <div class="header_left">" & @CRLF & _ " <div class="page_name">Tech Ops Security Remediation<span >&nbsp;</span></div>" & @CRLF & _ " </div>" & @CRLF & _ "</div>" & @CRLF & _ " " & @CRLF & _ "<!--- TITLE / APP MENU / LOGIN --->" & @CRLF & _ "<div style="text-align:right;background-color:#EFEFF7; letter-spacing:2px; border-bottom:1px solid #666666; padding-top:5px; padding-left:35px; padding-bottom:5px; font-size:10px; font-weight:normal; font-family:tahoma; height:16px; border-top:1px solid #666666;">" & @CRLF & _ "<span style="float:left; text-align:left;font-size:12px; font-weight:bold; font-family:tahoma;height:16px;">Notification Response: SACT</span>" & @CRLF & _ "Logged in as: Subramanian Pandian" & @CRLF & _ "</div>" & @CRLF & _ "<!--- END: TITLE / APP MENU / LOGIN--->" & @CRLF & _ " " & @CRLF & _ " " & @CRLF & _ "" & @CRLF & _ "" & @CRLF & _ "<!--- BODY CONTAINER--->" & @CRLF & _ "<table border="0" height="375" width="100%" cellpadding="0" cellspacing="0" style="border-collapse:collapse; border-left: 1px solid #EFEFF7;">" & @CRLF & _ " <tr>" & @CRLF & _ "" & @CRLF & _ " <!--- BODY --->" & @CRLF & _ " <td width="100%" valign="top" style="padding-left:20px;" >" & @CRLF & _ " " & @CRLF & _ " <br><hr style="width:90%;" align=left>" & @CRLF & _ "<form id="userid_search" name="userid_search" action="/NR-SACT/index.php" method="POST">" & @CRLF & _ "<p style="width:90%;" align=left>" & @CRLF & _ "<strong> Client:</strong><select name="disp_usersup">" & @CRLF & _ "<option value="User" selected>User</option><option value="Supervisor" >Supervisor</option></select><strong>By Status Type:</strong><select name="disp_status">" & @CRLF & _ "<option value="" selected>--Choose Status--" & @CRLF & _ "<option value="notify">Initial Notification" & @CRLF & _ "<option value="rejected">Rejected" & @CRLF & _ "<option value="accepted">Accepted" & @CRLF & _ "<option value="escalated">Escalated" & @CRLF & _ "<option value="closed">Closed" & @CRLF & _ "</select><strong>&nbsp;By Event Type:</strong><select name="disp_type" >" & @CRLF & _ "<option value="" selected>--Choose Type--" & @CRLF & _ "<option value="sysfown">Check 101 - system file ownership" & @CRLF & _ "<option value="sysfprm">Check 102 - system file permission" & @CRLF & _ "<option value="locksys">Check 103 - Sysacct not locked" & @CRLF & _ "<option value="validation">Check 105 - Validation needed" & @CRLF & _ "<option value="employee">Check 106 - acct validated" & @CRLF & _ "<option value="blankpwd">Check 109 - passwd is blank" & @CRLF & _ "<option value="cnfperm">Check 111 - config file permission" & @CRLF & _ "<option value="uniq_logname">Check 112 - unique logname" & @CRLF & _ "<option value="uniq_uid">Check 113 - unique UID" & @CRLF & _ "<option value="sulogrpt">Check 114 - is sulog reporting" & @CRLF & _ "<option value="su0log">Check 116 - check sulog for non-SA services" & @CRLF & _ "<option value="staticauth">Check 117 - Static Authentication" & @CRLF & _ "<option value="pwdparam">Check 118 - Password Parameters" & @CRLF & _ "<option value="upwdparm">Check 119 - user passwd parameters" & @CRLF & _ "<option value="nfsexport">Check 120 - NFS exported" & @CRLF & _ "<option value="anon_ftp">Check 121 - anonymous ftp" & @CRLF & _ "<option value="ftpusers">Check 122 - ftpusers sys acct unrestricted" & @CRLF & _ "<option value="no_tftp">Check 123 - tftp is running" & @CRLF & _ "<option value="netsrvcs">Check 124 - network services" & @CRLF & _ "<option value="dirnetaccess">Check 129 - Direct Network Access" & @CRLF & _ "<option value="ident0">Check 130 - root only UID=0" & @CRLF & _ "<option value="rootfirst">Check 131 - root first in pwd" & @CRLF & _ "<option value="dotrhost0">Check 132 - rhost on root" & @CRLF & _ "<option value="trusthost">Check 133 - host.equiv" & @CRLF & _ "<option value="backups">Check 142 - regular backups" & @CRLF & _ "<option value="direct0cnf">Check 144 - sshd.conf misconfigured" & @CRLF & _ "<option value="pwd_perm">Check 145 - permission of /etc/passwd" & @CRLF & _ "<option value="pwd_own">Check 146 - ownership of /etc/passwd" & @CRLF & _ "<option value="shadperm">Check 147 - shadow file perm" & @CRLF & _ "<option value="shadown">Check 148 - shadow file owner" & @CRLF & _ "<option value="hostslpd">Check 149 - hosts.lpd" & @CRLF & _ "<option value="rshell">Check 157 - RSHELL enabled" & @CRLF & _ "<option value="rlogin">Check 158 - RLOGIN enabled" & @CRLF & _ "<option value="rexec">Check 159 - REXEC enabled" & @CRLF & _ "<option value="snmp_commun">Check 162 - community used in SNMP" & @CRLF & _ "<option value="ftpusers_app_acct">Check 174 - ftpusers app acct unrestricted" & @CRLF & _ "<option value="seclog">Check 175 - logging to security" & @CRLF & _ "<option value="root1shad">Check 182 - root first in shadow" & @CRLF & _ "<option value="sendmail">Check 184 - Sendmail Not Installed or Not Latest Version" & @CRLF & _ "<option value="SRM">Check 192 - SRM available" & @CRLF & _ "<option value="NISdomain">Check 193 - NIS must be diff DNS" & @CRLF & _ "<option value="OS_patch">Check 202 - OS version patches" & @CRLF & _ "<option value="attuid">Check 203 - lognames attuid format" & @CRLF & _ "<option value="tcp_wrapper">Check 205 - tcpwrappers not installed" & @CRLF & _ "<option value="tcp_wrap_config">Check 206 - hosts.allow def for tcpwrapper" & @CRLF & _ "<option value="tcpwrap">Check 207 - tcpwrapped processes" & @CRLF & _ "<option value="logowng">Check 208 - log file owner" & @CRLF & _ "<option value="logperm">Check 209 - log file permission" & @CRLF & _ "<option value="java">Check 210 - Java Browser/System Java" & @CRLF & _ "<option value="uniqgid">Check 211 - unique GID" & @CRLF & _ "<option value="syslogd_run">Check 212 - syslogd running?" & @CRLF & _ "<option value="sudo_sensage">Check 213 - sudo_sensage" & @CRLF & _ "<option value="cfg_sensage">Check 214 - syslog.conf for Sensage?" & @CRLF & _ "<option value="NIS_maps">Check 217 - NIS securenet needed" & @CRLF & _ "<option value="sulogown">Check 226 - sulog owner" & @CRLF & _ "<option value="sulogprm">Check 227 - sulog permission" & @CRLF & _ "<option value="dotrhost">Check 229 - rhost on acct" & @CRLF & _ "<option value="chshrmv">Check 230 - remove chsh" & @CRLF & _ "<option value="exports_access">Check 231 - access flag in exports" & @CRLF & _ "<option value="umask">Check 232 - set file creation mask" & @CRLF & _ "<option value="cronlogs">Check 233 - cronlog permissions" & @CRLF & _ "<option value="MESG">Check 234 - MESG must be NO" & @CRLF & _ "<option value="chfn">Check 235 - remove chfn" & @CRLF & _ "<option value="uuencode">Check 237 - remove uuencode" & @CRLF & _ "<option value="rootinNIS">Check 238 - no root in NIS" & @CRLF & _ "<option value="valid_shells">Check 239 - /etc/shells good" & @CRLF & _ "<option value="ww_programs">Check 241 - world write on pgms" & @CRLF & _ "<option value="dcpasswd">Check 242 - DC Password" & @CRLF & _ "<option value="worldwrit">Check 246 - world write permission" & @CRLF & _ "<option value="PATH_order">Check 249 - system bins 1st in PATH" & @CRLF & _ "<option value="cronperm">Check 251 - permission of cron.allow" & @CRLF & _ "<option value="cronown">Check 252 - ownership of cron.allow" & @CRLF & _ "<option value="sec_log_active">Check 253 - security log starts init" & @CRLF & _ "<option value="ww_os_cfg">Check 254 - world write on config file" & @CRLF & _ "<option value="Logins_Allowed">Check 257 - Logins Allowed - Disconnect After Six FailedLogins" & @CRLF & _ "<option value="nfsnotexport">Check 261 - no nfs export" & @CRLF & _ "<option value="adminNIS">Check 262 - prohibit root NIS" & @CRLF & _ "<option value="rootNFS">Check 266 - root in exports" & @CRLF & _ "<option value="dotfiles">Check 267 - use of dotfiles" & @CRLF & _ "<option value="restrict_rootdir">Check 269 - only root uses / home" & @CRLF & _ "<option value="cronallow">Check 271 - cron.allow permission" & @CRLF & _ "<option value="export_sysdir">Check 277 - sys director exported" & @CRLF & _ "<option value="OSpatch">Check 280 - OS patches needed" & @CRLF & _ "<option value="no_permisc">Check 281 - promiscuous mode used" & @CRLF & _ "<option value="ctrl_root">Check 283 - limit of sudo use" & @CRLF & _ "<option value="backupdoc">Check 286 - documented backup" & @CRLF & _ "<option value="homerhost">Check 296 - home .rhost in use" & @CRLF & _ "<option value="no_.netrc">Check 297 - .netrc files in HOME directory" & @CRLF & _ "<option value="selfNFS">Check 301 - service in nfs export" & @CRLF & _ "<option value="Xstartup">Check 305 - Xstartup no root login" & @CRLF & _ "<option value="patch_track">Check 312 - patch bundles" & @CRLF & _ "<option value="supt_OS">Check 334 - supported OS" & @CRLF & _ "<option value="ntp">Check 353 - ntp config" & @CRLF & _ "<option value="who_su">Check 412 - non SA did su" & @CRLF & _ "<option value="who_sudo">Check 413 - sudo without eksh" & @CRLF & _ "<option value="blacklist">Check 414 - blacklisted services" & @CRLF & _ "<option value="tmout">Check 415 - auto log out setting" & @CRLF & _ "<option value="patrol">Check 416 - patrol running" & @CRLF & _ "<option value="sudo_su_0">Check 433 - sudo su to root" & @CRLF & _ "<option value="currsact">Check 512 - sact current" & @CRLF & _ "<option value="cfengine">Check 513 - cfengine running?" & @CRLF & _ "<option value="cfenginID">Check 514 - need cfengine mechid" & @CRLF & _ "<option value="appspassword">Check 532 - APP Account with Password" & @CRLF & _ "<option value="mechsauth">Check 552 - APP/Mech ID Static Auth (Check 117)" & @CRLF & _ "<option value="pwd_content">Check 572 - password length" & @CRLF & _ "<option value="eksh_audit">Check 592 - eksh enabled" & @CRLF & _ "<option value="uam">Check 704 - UAM not running" & @CRLF & _ "<option value="sudoauth">Check 715 - unauthorized sudoers file" & @CRLF & _ "</select> &nbsp; <input type="submit" value="Search" id="newsearch" />" & @CRLF & _ " &nbsp; <input type="button" value="Export Tickets to Excel" id="exportdata" onclick="exporttoxls(this.form);" />" & @CRLF & _ "</form><hr style="width:90%;" align=left><h5 style="background-color:#0396d7;color:#ffffff; width=90%" align="left" > Tickets for sp6438 </h5><p align="left" style="width:90%;"><input type="button" value="<PREV" onclick="prePage(1, document.getElementById('EditJust_attuid'));"/>" & @CRLF & _ "Page <input type="text" size=5 value=1 onkeypress="manualPage2(event, 1, this.value, 1,document.getElementById('EditJust_attuid'));" onchange="manualPage(1, this.value, 1,document.getElementById('EditJust_attuid'));"/>" & @CRLF & _ " of 1 <input type="button" value="NEXT>" onclick="nextPage(1,1, document.getElementById('EditJust_attuid'));"/>" & @CRLF & _ "<hr style="width:90%;" align=left>" & @CRLF & _ "<form id="EditJust_attuid" name="EditJust_attuid" action="/NR-SACT/index.php" method="POST">" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th>Ticket</th><th>User</th><th>Type</th><th>Initial Notice</th><th>Incident Date</th></tr><tr style="background-color:#E9F7F9;">" & @CRLF & _ "<input type="hidden" name="resp[0][notif_id]" value="2339866"/>" & @CRLF & _ "<input type="hidden" name="resp[0][rec_type]" value="attuid"/>" & @CRLF & _ "<input type="hidden" name="resp[0][last_state]" value="notify"/>" & @CRLF & _ "<input type="hidden" name="resp[0][warning]" value="1"/>" & @CRLF & _ "<td><p align="center"><A href="/NR-SACT/index.php?ticket=2339866" target="_blank">2339866</a></p></td>" & @CRLF & _ "<td><p align="center">sp6438</p></td>" & @CRLF & _ "<td><p align="center">Check 124 - network services</p></td>" & @CRLF & _ "<td><p align="center">On: 2017-01-10 23:11:26 UTC</p></td>" & @CRLF & _ "<td><p align="center">2017-01-10 23:11:26 UTC<br>2017-01-10 17:11:26 CST</p></td></tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th>Hostname</th><th>Keyword</th><th>Current Status</th><th>Last Review</th><th>Last Response</th></tr>" & @CRLF & _ "<tr style="background-color:#E9F7F9;">" & @CRLF & _ "<td><p align="center">p0xvinpm0010.directv.com</p></td>" & @CRLF & _ "<td><p align="center">ttd</p></td>" & @CRLF & _ "<td>User Notified<hr>On: 2017-01-10 23:11:26 UTC<br></td>" & @CRLF & _ "<td>Not Reviewed</td>" & @CRLF & _ "<td>Never</td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th>Detail</th></tr>" & @CRLF & _ "<tr style="background-color:#E9F7F9;">" & @CRLF & _ "<td>Network service running as root: ttd</td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th align="left">Previous Responses</th></tr>" & @CRLF & _ "<tr style="background-color:#E9F7F9;">" & @CRLF & _ "<td><a href="javascript:;" onmousedown="toggleDiv('notif_prev_resp_0');">Hide/Show Previous Responses</a><div id="notif_prev_resp_0" style="display:none"></div></td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%"><tr style="background-color:#FE8705;"><th>New Response Type</th><th>New Response</th></tr>" & @CRLF & _ "<tr style="background-color:#E2E2E2;" >" & @CRLF & _ "<td width="15%"><p align="center"><select name="resp[0][response_type]" id="resp_0" onchange="automate_resp_detail('resp_0','resp_detail_0','resp_detail_note_0');">" & @CRLF & _ "<option value="" selected>---Please Choose---" & @CRLF & _ "<option value="fix" lang="x-lock-Y" title="I, the responsible party, affirm that changing this configuration or service will not impact the application" >Fix Approved" & @CRLF & _ "<option value="ncta" lang="x-lock-N" title="I, the responsible party, will submit a NCTA documenting the need for this configuration or service - ENTER NCTA NUMBER ONLY (4-6 DIGITS)" >Required/NCTA" & @CRLF & _ "<option value="notme" lang="x-lock-Y" title="While I am listed as the MOTS or Role Contact, I have no responsibility for the sponsorship or application in question" >Not Interested Party" & @CRLF & _ "</select>" & @CRLF & _ "</p>" & @CRLF & _ "</td>" & @CRLF & _ "<td width="85%">" & @CRLF & _ "<p align="center"><div id="resp_detail_note_0" style="display:none"></div><textarea style="width: 100%; height: 100%;" name="resp[0][response_detail]" id="resp_detail_0" ></textarea></p>" & @CRLF & _ "</td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<br><hr style="width:90%;" align=left size=4 color=black><br>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th>Ticket</th><th>User</th><th>Type</th><th>Initial Notice</th><th>Incident Date</th></tr><tr style="background-color:#E9F7F9;">" & @CRLF & _ "<input type="hidden" name="resp[1][notif_id]" value="2339865"/>" & @CRLF & _ "<input type="hidden" name="resp[1][rec_type]" value="attuid"/>" & @CRLF & _ "<input type="hidden" name="resp[1][last_state]" value="notify"/>" & @CRLF & _ "<input type="hidden" name="resp[1][warning]" value="1"/>" & @CRLF & _ "<td><p align="center"><A href="/NR-SACT/index.php?ticket=2339865" target="_blank">2339865</a></p></td>" & @CRLF & _ "<td><p align="center">sp6438</p></td>" & @CRLF & _ "<td><p align="center">Check 124 - network services</p></td>" & @CRLF & _ "<td><p align="center">On: 2017-01-10 23:11:26 UTC</p></td>" & @CRLF & _ "<td><p align="center">2017-01-10 23:11:26 UTC<br>2017-01-10 17:11:26 CST</p></td></tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th>Hostname</th><th>Keyword</th><th>Current Status</th><th>Last Review</th><th>Last Response</th></tr>" & @CRLF & _ "<tr style="background-color:#E9F7F9;">" & @CRLF & _ "<td><p align="center">p0xvinpm0010.directv.com</p></td>" & @CRLF & _ "<td><p align="center">rtmd</p></td>" & @CRLF & _ "<td>User Notified<hr>On: 2017-01-10 23:11:26 UTC<br></td>" & @CRLF & _ "<td>Not Reviewed</td>" & @CRLF & _ "<td>Never</td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th>Detail</th></tr>" & @CRLF & _ "<tr style="background-color:#E9F7F9;">" & @CRLF & _ "<td>Network service running as root: rtmd</td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th align="left">Previous Responses</th></tr>" & @CRLF & _ "<tr style="background-color:#E9F7F9;">" & @CRLF & _ "<td><a href="javascript:;" onmousedown="toggleDiv('notif_prev_resp_1');">Hide/Show Previous Responses</a><div id="notif_prev_resp_1" style="display:none"></div></td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%"><tr style="background-color:#FE8705;"><th>New Response Type</th><th>New Response</th></tr>" & @CRLF & _ "<tr style="background-color:#E2E2E2;" >" & @CRLF & _ "<td width="15%"><p align="center"><select name="resp[1][response_type]" id="resp_1" onchange="automate_resp_detail('resp_1','resp_detail_1','resp_detail_note_1');">" & @CRLF & _ "<option value="" selected>---Please Choose---" & @CRLF & _ "<option value="fix" lang="x-lock-Y" title="I, the responsible party, affirm that changing this configuration or service will not impact the application" >Fix Approved" & @CRLF & _ "<option value="ncta" lang="x-lock-N" title="I, the responsible party, will submit a NCTA documenting the need for this configuration or service - ENTER NCTA NUMBER ONLY (4-6 DIGITS)" >Required/NCTA" & @CRLF & _ "<option value="notme" lang="x-lock-Y" title="While I am listed as the MOTS or Role Contact, I have no responsibility for the sponsorship or application in question" >Not Interested Party" & @CRLF & _ "</select>" & @CRLF & _ "</p>" & @CRLF & _ "</td>" & @CRLF & _ "<td width="85%">" & @CRLF & _ "<p align="center"><div id="resp_detail_note_1" style="display:none"></div><textarea style="width: 100%; height: 100%;" name="resp[1][response_detail]" id="resp_detail_1" ></textarea></p>" & @CRLF & _ "</td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<br><hr style="width:90%;" align=left size=4 color=black><br>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th>Ticket</th><th>User</th><th>Type</th><th>Initial Notice</th><th>Incident Date</th></tr><tr style="background-color:#E9F7F9;">" & @CRLF & _ "<input type="hidden" name="resp[2][notif_id]" value="2339864"/>" & @CRLF & _ "<input type="hidden" name="resp[2][rec_type]" value="attuid"/>" & @CRLF & _ "<input type="hidden" name="resp[2][last_state]" value="notify"/>" & @CRLF & _ "<input type="hidden" name="resp[2][warning]" value="1"/>" & @CRLF & _ "<td><p align="center"><A href="/NR-SACT/index.php?ticket=2339864" target="_blank">2339864</a></p></td>" & @CRLF & _ "<td><p align="center">sp6438</p></td>" & @CRLF & _ "<td><p align="center">Check 124 - network services</p></td>" & @CRLF & _ "<td><p align="center">On: 2017-01-10 23:11:26 UTC</p></td>" & @CRLF & _ "<td><p align="center">2017-01-10 23:11:26 UTC<br>2017-01-10 17:11:26 CST</p></td></tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th>Hostname</th><th>Keyword</th><th>Current Status</th><th>Last Review</th><th>Last Response</th></tr>" & @CRLF & _ "<tr style="background-color:#E9F7F9;">" & @CRLF & _ "<td><p align="center">p0xvinpm0010.directv.com</p></td>" & @CRLF & _ "<td><p align="center">rpc.rquot</p></td>" & @CRLF & _ "<td>User Notified<hr>On: 2017-01-10 23:11:26 UTC<br></td>" & @CRLF & _ "<td>Not Reviewed</td>" & @CRLF & _ "<td>Never</td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th>Detail</th></tr>" & @CRLF & _ "<tr style="background-color:#E9F7F9;">" & @CRLF & _ "<td>Network service running as root: rpc.rquot</td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th align="left">Previous Responses</th></tr>" & @CRLF & _ "<tr style="background-color:#E9F7F9;">" & @CRLF & _ "<td><a href="javascript:;" onmousedown="toggleDiv('notif_prev_resp_2');">Hide/Show Previous Responses</a><div id="notif_prev_resp_2" style="display:none"></div></td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%"><tr style="background-color:#FE8705;"><th>New Response Type</th><th>New Response</th></tr>" & @CRLF & _ "<tr style="background-color:#E2E2E2;" >" & @CRLF & _ "<td width="15%"><p align="center"><select name="resp[2][response_type]" id="resp_2" onchange="automate_resp_detail('resp_2','resp_detail_2','resp_detail_note_2');">" & @CRLF & _ "<option value="" selected>---Please Choose---" & @CRLF & _ "<option value="fix" lang="x-lock-Y" title="I, the responsible party, affirm that changing this configuration or service will not impact the application" >Fix Approved" & @CRLF & _ "<option value="ncta" lang="x-lock-N" title="I, the responsible party, will submit a NCTA documenting the need for this configuration or service - ENTER NCTA NUMBER ONLY (4-6 DIGITS)" >Required/NCTA" & @CRLF & _ "<option value="notme" lang="x-lock-Y" title="While I am listed as the MOTS or Role Contact, I have no responsibility for the sponsorship or application in question" >Not Interested Party" & @CRLF & _ "</select>" & @CRLF & _ "</p>" & @CRLF & _ "</td>" & @CRLF & _ "<td width="85%">" & @CRLF & _ "<p align="center"><div id="resp_detail_note_2" style="display:none"></div><textarea style="width: 100%; height: 100%;" name="resp[2][response_detail]" id="resp_detail_2" ></textarea></p>" & @CRLF & _ "</td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<br><hr style="width:90%;" align=left size=4 color=black><br>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th>Ticket</th><th>User</th><th>Type</th><th>Initial Notice</th><th>Incident Date</th></tr><tr style="background-color:#E9F7F9;">" & @CRLF & _ "<input type="hidden" name="resp[3][notif_id]" value="2339863"/>" & @CRLF & _ "<input type="hidden" name="resp[3][rec_type]" value="attuid"/>" & @CRLF & _ "<input type="hidden" name="resp[3][last_state]" value="notify"/>" & @CRLF & _ "<input type="hidden" name="resp[3][warning]" value="1"/>" & @CRLF & _ "<td><p align="center"><A href="/NR-SACT/index.php?ticket=2339863" target="_blank">2339863</a></p></td>" & @CRLF & _ "<td><p align="center">sp6438</p></td>" & @CRLF & _ "<td><p align="center">Check 124 - network services</p></td>" & @CRLF & _ "<td><p align="center">On: 2017-01-10 23:11:26 UTC</p></td>" & @CRLF & _ "<td><p align="center">2017-01-10 23:11:26 UTC<br>2017-01-10 17:11:26 CST</p></td></tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th>Hostname</th><th>Keyword</th><th>Current Status</th><th>Last Review</th><th>Last Response</th></tr>" & @CRLF & _ "<tr style="background-color:#E9F7F9;">" & @CRLF & _ "<td><p align="center">p0xvinpm0010.directv.com</p></td>" & @CRLF & _ "<td><p align="center">python</p></td>" & @CRLF & _ "<td>User Notified<hr>On: 2017-01-10 23:11:26 UTC<br></td>" & @CRLF & _ "<td>Not Reviewed</td>" & @CRLF & _ "<td>Never</td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th>Detail</th></tr>" & @CRLF & _ "<tr style="background-color:#E9F7F9;">" & @CRLF & _ "<td>Network service running as root: python</td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th align="left">Previous Responses</th></tr>" & @CRLF & _ "<tr style="background-color:#E9F7F9;">" & @CRLF & _ "<td><a href="javascript:;" onmousedown="toggleDiv('notif_prev_resp_3');">Hide/Show Previous Responses</a><div id="notif_prev_resp_3" style="display:none"></div></td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%"><tr style="background-color:#FE8705;"><th>New Response Type</th><th>New Response</th></tr>" & @CRLF & _ "<tr style="background-color:#E2E2E2;" >" & @CRLF & _ "<td width="15%"><p align="center"><select name="resp[3][response_type]" id="resp_3" onchange="automate_resp_detail('resp_3','resp_detail_3','resp_detail_note_3');">" & @CRLF & _ "<option value="" selected>---Please Choose---" & @CRLF & _ "<option value="fix" lang="x-lock-Y" title="I, the responsible party, affirm that changing this configuration or service will not impact the application" >Fix Approved" & @CRLF & _ "<option value="ncta" lang="x-lock-N" title="I, the responsible party, will submit a NCTA documenting the need for this configuration or service - ENTER NCTA NUMBER ONLY (4-6 DIGITS)" >Required/NCTA" & @CRLF & _ "<option value="notme" lang="x-lock-Y" title="While I am listed as the MOTS or Role Contact, I have no responsibility for the sponsorship or application in question" >Not Interested Party" & @CRLF & _ "</select>" & @CRLF & _ "</p>" & @CRLF & _ "</td>" & @CRLF & _ "<td width="85%">" & @CRLF & _ "<p align="center"><div id="resp_detail_note_3" style="display:none"></div><textarea style="width: 100%; height: 100%;" name="resp[3][response_detail]" id="resp_detail_3" ></textarea></p>" & @CRLF & _ "</td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<br><hr style="width:90%;" align=left size=4 color=black><br>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th>Ticket</th><th>User</th><th>Type</th><th>Initial Notice</th><th>Incident Date</th></tr><tr style="background-color:#E9F7F9;">" & @CRLF & _ "<input type="hidden" name="resp[4][notif_id]" value="2339862"/>" & @CRLF & _ "<input type="hidden" name="resp[4][rec_type]" value="attuid"/>" & @CRLF & _ "<input type="hidden" name="resp[4][last_state]" value="notify"/>" & @CRLF & _ "<input type="hidden" name="resp[4][warning]" value="1"/>" & @CRLF & _ "<td><p align="center"><A href="/NR-SACT/index.php?ticket=2339862" target="_blank">2339862</a></p></td>" & @CRLF & _ "<td><p align="center">sp6438</p></td>" & @CRLF & _ "<td><p align="center">Check 124 - network services</p></td>" & @CRLF & _ "<td><p align="center">On: 2017-01-10 23:11:26 UTC</p></td>" & @CRLF & _ "<td><p align="center">2017-01-10 23:11:26 UTC<br>2017-01-10 17:11:26 CST</p></td></tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th>Hostname</th><th>Keyword</th><th>Current Status</th><th>Last Review</th><th>Last Response</th></tr>" & @CRLF & _ "<tr style="background-color:#E9F7F9;">" & @CRLF & _ "<td><p align="center">p0xvinpm0010.directv.com</p></td>" & @CRLF & _ "<td><p align="center">perfd</p></td>" & @CRLF & _ "<td>User Notified<hr>On: 2017-01-10 23:11:26 UTC<br></td>" & @CRLF & _ "<td>Not Reviewed</td>" & @CRLF & _ "<td>Never</td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th>Detail</th></tr>" & @CRLF & _ "<tr style="background-color:#E9F7F9;">" & @CRLF & _ "<td>Network service running as root: perfd</td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th align="left">Previous Responses</th></tr>" & @CRLF & _ "<tr style="background-color:#E9F7F9;">" & @CRLF & _ "<td><a href="javascript:;" onmousedown="toggleDiv('notif_prev_resp_4');">Hide/Show Previous Responses</a><div id="notif_prev_resp_4" style="display:none"></div></td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%"><tr style="background-color:#FE8705;"><th>New Response Type</th><th>New Response</th></tr>" & @CRLF & _ "<tr style="background-color:#E2E2E2;" >" & @CRLF & _ "<td width="15%"><p align="center"><select name="resp[4][response_type]" id="resp_4" onchange="automate_resp_detail('resp_4','resp_detail_4','resp_detail_note_4');">" & @CRLF & _ "<option value="" selected>---Please Choose---" & @CRLF & _ "<option value="fix" lang="x-lock-Y" title="I, the responsible party, affirm that changing this configuration or service will not impact the application" >Fix Approved" & @CRLF & _ "<option value="ncta" lang="x-lock-N" title="I, the responsible party, will submit a NCTA documenting the need for this configuration or service - ENTER NCTA NUMBER ONLY (4-6 DIGITS)" >Required/NCTA" & @CRLF & _ "<option value="notme" lang="x-lock-Y" title="While I am listed as the MOTS or Role Contact, I have no responsibility for the sponsorship or application in question" >Not Interested Party" & @CRLF & _ "</select>" & @CRLF & _ "</p>" & @CRLF & _ "</td>" & @CRLF & _ "<td width="85%">" & @CRLF & _ "<p align="center"><div id="resp_detail_note_4" style="display:none"></div><textarea style="width: 100%; height: 100%;" name="resp[4][response_detail]" id="resp_detail_4" ></textarea></p>" & @CRLF & _ "</td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<br><hr style="width:90%;" align=left size=4 color=black><br>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th>Ticket</th><th>User</th><th>Type</th><th>Initial Notice</th><th>Incident Date</th></tr><tr style="background-color:#E9F7F9;">" & @CRLF & _ "<input type="hidden" name="resp[5][notif_id]" value="2339861"/>" & @CRLF & _ "<input type="hidden" name="resp[5][rec_type]" value="attuid"/>" & @CRLF & _ "<input type="hidden" name="resp[5][last_state]" value="notify"/>" & @CRLF & _ "<input type="hidden" name="resp[5][warning]" value="1"/>" & @CRLF & _ "<td><p align="center"><A href="/NR-SACT/index.php?ticket=2339861" target="_blank">2339861</a></p></td>" & @CRLF & _ "<td><p align="center">sp6438</p></td>" & @CRLF & _ "<td><p align="center">Check 124 - network services</p></td>" & @CRLF & _ "<td><p align="center">On: 2017-01-10 23:11:26 UTC</p></td>" & @CRLF & _ "<td><p align="center">2017-01-10 23:11:26 UTC<br>2017-01-10 17:11:26 CST</p></td></tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th>Hostname</th><th>Keyword</th><th>Current Status</th><th>Last Review</th><th>Last Response</th></tr>" & @CRLF & _ "<tr style="background-color:#E9F7F9;">" & @CRLF & _ "<td><p align="center">p0xvinpm0010.directv.com</p></td>" & @CRLF & _ "<td><p align="center">ovconfd</p></td>" & @CRLF & _ "<td>User Notified<hr>On: 2017-01-10 23:11:26 UTC<br></td>" & @CRLF & _ "<td>Not Reviewed</td>" & @CRLF & _ "<td>Never</td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th>Detail</th></tr>" & @CRLF & _ "<tr style="background-color:#E9F7F9;">" & @CRLF & _ "<td>Network service running as root: ovconfd</td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th align="left">Previous Responses</th></tr>" & @CRLF & _ "<tr style="background-color:#E9F7F9;">" & @CRLF & _ "<td><a href="javascript:;" onmousedown="toggleDiv('notif_prev_resp_5');">Hide/Show Previous Responses</a><div id="notif_prev_resp_5" style="display:none"></div></td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%"><tr style="background-color:#FE8705;"><th>New Response Type</th><th>New Response</th></tr>" & @CRLF & _ "<tr style="background-color:#E2E2E2;" >" & @CRLF & _ "<td width="15%"><p align="center"><select name="resp[5][response_type]" id="resp_5" onchange="automate_resp_detail('resp_5','resp_detail_5','resp_detail_note_5');">" & @CRLF & _ "<option value="" selected>---Please Choose---" & @CRLF & _ "<option value="fix" lang="x-lock-Y" title="I, the responsible party, affirm that changing this configuration or service will not impact the application" >Fix Approved" & @CRLF & _ "<option value="ncta" lang="x-lock-N" title="I, the responsible party, will submit a NCTA documenting the need for this configuration or service - ENTER NCTA NUMBER ONLY (4-6 DIGITS)" >Required/NCTA" & @CRLF & _ "<option value="notme" lang="x-lock-Y" title="While I am listed as the MOTS or Role Contact, I have no responsibility for the sponsorship or application in question" >Not Interested Party" & @CRLF & _ "</select>" & @CRLF & _ "</p>" & @CRLF & _ "</td>" & @CRLF & _ "<td width="85%">" & @CRLF & _ "<p align="center"><div id="resp_detail_note_5" style="display:none"></div><textarea style="width: 100%; height: 100%;" name="resp[5][response_detail]" id="resp_detail_5" ></textarea></p>" & @CRLF & _ "</td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<br><hr style="width:90%;" align=left size=4 color=black><br>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th>Ticket</th><th>User</th><th>Type</th><th>Initial Notice</th><th>Incident Date</th></tr><tr style="background-color:#E9F7F9;">" & @CRLF & _ "<input type="hidden" name="resp[6][notif_id]" value="2339860"/>" & @CRLF & _ "<input type="hidden" name="resp[6][rec_type]" value="attuid"/>" & @CRLF & _ "<input type="hidden" name="resp[6][last_state]" value="notify"/>" & @CRLF & _ "<input type="hidden" name="resp[6][warning]" value="1"/>" & @CRLF & _ "<td><p align="center"><A href="/NR-SACT/index.php?ticket=2339860" target="_blank">2339860</a></p></td>" & @CRLF & _ "<td><p align="center">sp6438</p></td>" & @CRLF & _ "<td><p align="center">Check 124 - network services</p></td>" & @CRLF & _ "<td><p align="center">On: 2017-01-10 23:11:26 UTC</p></td>" & @CRLF & _ "<td><p align="center">2017-01-10 23:11:26 UTC<br>2017-01-10 17:11:26 CST</p></td></tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th>Hostname</th><th>Keyword</th><th>Current Status</th><th>Last Review</th><th>Last Response</th></tr>" & @CRLF & _ "<tr style="background-color:#E9F7F9;">" & @CRLF & _ "<td><p align="center">p0xvinpm0010.directv.com</p></td>" & @CRLF & _ "<td><p align="center">ovcd</p></td>" & @CRLF & _ "<td>User Notified<hr>On: 2017-01-10 23:11:26 UTC<br></td>" & @CRLF & _ "<td>Not Reviewed</td>" & @CRLF & _ "<td>Never</td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th>Detail</th></tr>" & @CRLF & _ "<tr style="background-color:#E9F7F9;">" & @CRLF & _ "<td>Network service running as root: ovcd</td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th align="left">Previous Responses</th></tr>" & @CRLF & _ "<tr style="background-color:#E9F7F9;">" & @CRLF & _ "<td><a href="javascript:;" onmousedown="toggleDiv('notif_prev_resp_6');">Hide/Show Previous Responses</a><div id="notif_prev_resp_6" style="display:none"></div></td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%"><tr style="background-color:#FE8705;"><th>New Response Type</th><th>New Response</th></tr>" & @CRLF & _ "<tr style="background-color:#E2E2E2;" >" & @CRLF & _ "<td width="15%"><p align="center"><select name="resp[6][response_type]" id="resp_6" onchange="automate_resp_detail('resp_6','resp_detail_6','resp_detail_note_6');">" & @CRLF & _ "<option value="" selected>---Please Choose---" & @CRLF & _ "<option value="fix" lang="x-lock-Y" title="I, the responsible party, affirm that changing this configuration or service will not impact the application" >Fix Approved" & @CRLF & _ "<option value="ncta" lang="x-lock-N" title="I, the responsible party, will submit a NCTA documenting the need for this configuration or service - ENTER NCTA NUMBER ONLY (4-6 DIGITS)" >Required/NCTA" & @CRLF & _ "<option value="notme" lang="x-lock-Y" title="While I am listed as the MOTS or Role Contact, I have no responsibility for the sponsorship or application in question" >Not Interested Party" & @CRLF & _ "</select>" & @CRLF & _ "</p>" & @CRLF & _ "</td>" & @CRLF & _ "<td width="85%">" & @CRLF & _ "<p align="center"><div id="resp_detail_note_6" style="display:none"></div><textarea style="width: 100%; height: 100%;" name="resp[6][response_detail]" id="resp_detail_6" ></textarea></p>" & @CRLF & _ "</td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<br><hr style="width:90%;" align=left size=4 color=black><br>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th>Ticket</th><th>User</th><th>Type</th><th>Initial Notice</th><th>Incident Date</th></tr><tr style="background-color:#E9F7F9;">" & @CRLF & _ "<input type="hidden" name="resp[7][notif_id]" value="2339859"/>" & @CRLF & _ "<input type="hidden" name="resp[7][rec_type]" value="attuid"/>" & @CRLF & _ "<input type="hidden" name="resp[7][last_state]" value="notify"/>" & @CRLF & _ "<input type="hidden" name="resp[7][warning]" value="1"/>" & @CRLF & _ "<td><p align="center"><A href="/NR-SACT/index.php?ticket=2339859" target="_blank">2339859</a></p></td>" & @CRLF & _ "<td><p align="center">sp6438</p></td>" & @CRLF & _ "<td><p align="center">Check 124 - network services</p></td>" & @CRLF & _ "<td><p align="center">On: 2017-01-10 23:11:26 UTC</p></td>" & @CRLF & _ "<td><p align="center">2017-01-10 23:11:26 UTC<br>2017-01-10 17:11:26 CST</p></td></tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th>Hostname</th><th>Keyword</th><th>Current Status</th><th>Last Review</th><th>Last Response</th></tr>" & @CRLF & _ "<tr style="background-color:#E9F7F9;">" & @CRLF & _ "<td><p align="center">p0xvinpm0010.directv.com</p></td>" & @CRLF & _ "<td><p align="center">ovbbccb</p></td>" & @CRLF & _ "<td>User Notified<hr>On: 2017-01-10 23:11:26 UTC<br></td>" & @CRLF & _ "<td>Not Reviewed</td>" & @CRLF & _ "<td>Never</td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th>Detail</th></tr>" & @CRLF & _ "<tr style="background-color:#E9F7F9;">" & @CRLF & _ "<td>Network service running as root: ovbbccb</td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th align="left">Previous Responses</th></tr>" & @CRLF & _ "<tr style="background-color:#E9F7F9;">" & @CRLF & _ "<td><a href="javascript:;" onmousedown="toggleDiv('notif_prev_resp_7');">Hide/Show Previous Responses</a><div id="notif_prev_resp_7" style="display:none"></div></td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%"><tr style="background-color:#FE8705;"><th>New Response Type</th><th>New Response</th></tr>" & @CRLF & _ "<tr style="background-color:#E2E2E2;" >" & @CRLF & _ "<td width="15%"><p align="center"><select name="resp[7][response_type]" id="resp_7" onchange="automate_resp_detail('resp_7','resp_detail_7','resp_detail_note_7');">" & @CRLF & _ "<option value="" selected>---Please Choose---" & @CRLF & _ "<option value="fix" lang="x-lock-Y" title="I, the responsible party, affirm that changing this configuration or service will not impact the application" >Fix Approved" & @CRLF & _ "<option value="ncta" lang="x-lock-N" title="I, the responsible party, will submit a NCTA documenting the need for this configuration or service - ENTER NCTA NUMBER ONLY (4-6 DIGITS)" >Required/NCTA" & @CRLF & _ "<option value="notme" lang="x-lock-Y" title="While I am listed as the MOTS or Role Contact, I have no responsibility for the sponsorship or application in question" >Not Interested Party" & @CRLF & _ "</select>" & @CRLF & _ "</p>" & @CRLF & _ "</td>" & @CRLF & _ "<td width="85%">" & @CRLF & _ "<p align="center"><div id="resp_detail_note_7" style="display:none"></div><textarea style="width: 100%; height: 100%;" name="resp[7][response_detail]" id="resp_detail_7" ></textarea></p>" & @CRLF & _ "</td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<br><hr style="width:90%;" align=left size=4 color=black><br>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th>Ticket</th><th>User</th><th>Type</th><th>Initial Notice</th><th>Incident Date</th></tr><tr style="background-color:#E9F7F9;">" & @CRLF & _ "<input type="hidden" name="resp[8][notif_id]" value="2339858"/>" & @CRLF & _ "<input type="hidden" name="resp[8][rec_type]" value="attuid"/>" & @CRLF & _ "<input type="hidden" name="resp[8][last_state]" value="notify"/>" & @CRLF & _ "<input type="hidden" name="resp[8][warning]" value="1"/>" & @CRLF & _ "<td><p align="center"><A href="/NR-SACT/index.php?ticket=2339858" target="_blank">2339858</a></p></td>" & @CRLF & _ "<td><p align="center">sp6438</p></td>" & @CRLF & _ "<td><p align="center">Check 124 - network services</p></td>" & @CRLF & _ "<td><p align="center">On: 2017-01-10 23:11:26 UTC</p></td>" & @CRLF & _ "<td><p align="center">2017-01-10 23:11:26 UTC<br>2017-01-10 17:11:26 CST</p></td></tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th>Hostname</th><th>Keyword</th><th>Current Status</th><th>Last Review</th><th>Last Response</th></tr>" & @CRLF & _ "<tr style="background-color:#E9F7F9;">" & @CRLF & _ "<td><p align="center">p0xvinpm0010.directv.com</p></td>" & @CRLF & _ "<td><p align="center">opcmsga</p></td>" & @CRLF & _ "<td>User Notified<hr>On: 2017-01-10 23:11:26 UTC<br></td>" & @CRLF & _ "<td>Not Reviewed</td>" & @CRLF & _ "<td>Never</td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th>Detail</th></tr>" & @CRLF & _ "<tr style="background-color:#E9F7F9;">" & @CRLF & _ "<td>Network service running as root: opcmsga</td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th align="left">Previous Responses</th></tr>" & @CRLF & _ "<tr style="background-color:#E9F7F9;">" & @CRLF & _ "<td><a href="javascript:;" onmousedown="toggleDiv('notif_prev_resp_8');">Hide/Show Previous Responses</a><div id="notif_prev_resp_8" style="display:none"></div></td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%"><tr style="background-color:#FE8705;"><th>New Response Type</th><th>New Response</th></tr>" & @CRLF & _ "<tr style="background-color:#E2E2E2;" >" & @CRLF & _ "<td width="15%"><p align="center"><select name="resp[8][response_type]" id="resp_8" onchange="automate_resp_detail('resp_8','resp_detail_8','resp_detail_note_8');">" & @CRLF & _ "<option value="" selected>---Please Choose---" & @CRLF & _ "<option value="fix" lang="x-lock-Y" title="I, the responsible party, affirm that changing this configuration or service will not impact the application" >Fix Approved" & @CRLF & _ "<option value="ncta" lang="x-lock-N" title="I, the responsible party, will submit a NCTA documenting the need for this configuration or service - ENTER NCTA NUMBER ONLY (4-6 DIGITS)" >Required/NCTA" & @CRLF & _ "<option value="notme" lang="x-lock-Y" title="While I am listed as the MOTS or Role Contact, I have no responsibility for the sponsorship or application in question" >Not Interested Party" & @CRLF & _ "</select>" & @CRLF & _ "</p>" & @CRLF & _ "</td>" & @CRLF & _ "<td width="85%">" & @CRLF & _ "<p align="center"><div id="resp_detail_note_8" style="display:none"></div><textarea style="width: 100%; height: 100%;" name="resp[8][response_detail]" id="resp_detail_8" ></textarea></p>" & @CRLF & _ "</td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<br><hr style="width:90%;" align=left size=4 color=black><br>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th>Ticket</th><th>User</th><th>Type</th><th>Initial Notice</th><th>Incident Date</th></tr><tr style="background-color:#E9F7F9;">" & @CRLF & _ "<input type="hidden" name="resp[9][notif_id]" value="2339857"/>" & @CRLF & _ "<input type="hidden" name="resp[9][rec_type]" value="attuid"/>" & @CRLF & _ "<input type="hidden" name="resp[9][last_state]" value="notify"/>" & @CRLF & _ "<input type="hidden" name="resp[9][warning]" value="1"/>" & @CRLF & _ "<td><p align="center"><A href="/NR-SACT/index.php?ticket=2339857" target="_blank">2339857</a></p></td>" & @CRLF & _ "<td><p align="center">sp6438</p></td>" & @CRLF & _ "<td><p align="center">Check 124 - network services</p></td>" & @CRLF & _ "<td><p align="center">On: 2017-01-10 23:11:26 UTC</p></td>" & @CRLF & _ "<td><p align="center">2017-01-10 23:11:26 UTC<br>2017-01-10 17:11:26 CST</p></td></tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th>Hostname</th><th>Keyword</th><th>Current Status</th><th>Last Review</th><th>Last Response</th></tr>" & @CRLF & _ "<tr style="background-color:#E9F7F9;">" & @CRLF & _ "<td><p align="center">p0xvinpm0010.directv.com</p></td>" & @CRLF & _ "<td><p align="center">opcacta</p></td>" & @CRLF & _ "<td>User Notified<hr>On: 2017-01-10 23:11:26 UTC<br></td>" & @CRLF & _ "<td>Not Reviewed</td>" & @CRLF & _ "<td>Never</td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th>Detail</th></tr>" & @CRLF & _ "<tr style="background-color:#E9F7F9;">" & @CRLF & _ "<td>Network service running as root: opcacta</td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th align="left">Previous Responses</th></tr>" & @CRLF & _ "<tr style="background-color:#E9F7F9;">" & @CRLF & _ "<td><a href="javascript:;" onmousedown="toggleDiv('notif_prev_resp_9');">Hide/Show Previous Responses</a><div id="notif_prev_resp_9" style="display:none"></div></td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%"><tr style="background-color:#FE8705;"><th>New Response Type</th><th>New Response</th></tr>" & @CRLF & _ "<tr style="background-color:#E2E2E2;" >" & @CRLF & _ "<td width="15%"><p align="center"><select name="resp[9][response_type]" id="resp_9" onchange="automate_resp_detail('resp_9','resp_detail_9','resp_detail_note_9');">" & @CRLF & _ "<option value="" selected>---Please Choose---" & @CRLF & _ "<option value="fix" lang="x-lock-Y" title="I, the responsible party, affirm that changing this configuration or service will not impact the application" >Fix Approved" & @CRLF & _ "<option value="ncta" lang="x-lock-N" title="I, the responsible party, will submit a NCTA documenting the need for this configuration or service - ENTER NCTA NUMBER ONLY (4-6 DIGITS)" >Required/NCTA" & @CRLF & _ "<option value="notme" lang="x-lock-Y" title="While I am listed as the MOTS or Role Contact, I have no responsibility for the sponsorship or application in question" >Not Interested Party" & @CRLF & _ "</select>" & @CRLF & _ "</p>" & @CRLF & _ "</td>" & @CRLF & _ "<td width="85%">" & @CRLF & _ "<p align="center"><div id="resp_detail_note_9" style="display:none"></div><textarea style="width: 100%; height: 100%;" name="resp[9][response_detail]" id="resp_detail_9" ></textarea></p>" & @CRLF & _ "</td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<br><hr style="width:90%;" align=left size=4 color=black><br>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th>Ticket</th><th>User</th><th>Type</th><th>Initial Notice</th><th>Incident Date</th></tr><tr style="background-color:#E9F7F9;">" & @CRLF & _ "<input type="hidden" name="resp[10][notif_id]" value="2339856"/>" & @CRLF & _ "<input type="hidden" name="resp[10][rec_type]" value="attuid"/>" & @CRLF & _ "<input type="hidden" name="resp[10][last_state]" value="notify"/>" & @CRLF & _ "<input type="hidden" name="resp[10][warning]" value="1"/>" & @CRLF & _ "<td><p align="center"><A href="/NR-SACT/index.php?ticket=2339856" target="_blank">2339856</a></p></td>" & @CRLF & _ "<td><p align="center">sp6438</p></td>" & @CRLF & _ "<td><p align="center">Check 124 - network services</p></td>" & @CRLF & _ "<td><p align="center">On: 2017-01-10 23:11:26 UTC</p></td>" & @CRLF & _ "<td><p align="center">2017-01-10 23:11:26 UTC<br>2017-01-10 17:11:26 CST</p></td></tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th>Hostname</th><th>Keyword</th><th>Current Status</th><th>Last Review</th><th>Last Response</th></tr>" & @CRLF & _ "<tr style="background-color:#E9F7F9;">" & @CRLF & _ "<td><p align="center">p0xvinpm0010.directv.com</p></td>" & @CRLF & _ "<td><p align="center">coda</p></td>" & @CRLF & _ "<td>User Notified<hr>On: 2017-01-10 23:11:26 UTC<br></td>" & @CRLF & _ "<td>Not Reviewed</td>" & @CRLF & _ "<td>Never</td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th>Detail</th></tr>" & @CRLF & _ "<tr style="background-color:#E9F7F9;">" & @CRLF & _ "<td>Network service running as root: coda</td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th align="left">Previous Responses</th></tr>" & @CRLF & _ "<tr style="background-color:#E9F7F9;">" & @CRLF & _ "<td><a href="javascript:;" onmousedown="toggleDiv('notif_prev_resp_10');">Hide/Show Previous Responses</a><div id="notif_prev_resp_10" style="display:none"></div></td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%"><tr style="background-color:#FE8705;"><th>New Response Type</th><th>New Response</th></tr>" & @CRLF & _ "<tr style="background-color:#E2E2E2;" >" & @CRLF & _ "<td width="15%"><p align="center"><select name="resp[10][response_type]" id="resp_10" onchange="automate_resp_detail('resp_10','resp_detail_10','resp_detail_note_10');">" & @CRLF & _ "<option value="" selected>---Please Choose---" & @CRLF & _ "<option value="fix" lang="x-lock-Y" title="I, the responsible party, affirm that changing this configuration or service will not impact the application" >Fix Approved" & @CRLF & _ "<option value="ncta" lang="x-lock-N" title="I, the responsible party, will submit a NCTA documenting the need for this configuration or service - ENTER NCTA NUMBER ONLY (4-6 DIGITS)" >Required/NCTA" & @CRLF & _ "<option value="notme" lang="x-lock-Y" title="While I am listed as the MOTS or Role Contact, I have no responsibility for the sponsorship or application in question" >Not Interested Party" & @CRLF & _ "</select>" & @CRLF & _ "</p>" & @CRLF & _ "</td>" & @CRLF & _ "<td width="85%">" & @CRLF & _ "<p align="center"><div id="resp_detail_note_10" style="display:none"></div><textarea style="width: 100%; height: 100%;" name="resp[10][response_detail]" id="resp_detail_10" ></textarea></p>" & @CRLF & _ "</td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<br><hr style="width:90%;" align=left size=4 color=black><br>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th>Ticket</th><th>User</th><th>Type</th><th>Initial Notice</th><th>Incident Date</th></tr><tr style="background-color:#E9F7F9;">" & @CRLF & _ "<input type="hidden" name="resp[11][notif_id]" value="2130488"/>" & @CRLF & _ "<input type="hidden" name="resp[11][rec_type]" value="attuid"/>" & @CRLF & _ "<input type="hidden" name="resp[11][last_state]" value="notify"/>" & @CRLF & _ "<input type="hidden" name="resp[11][warning]" value="1"/>" & @CRLF & _ "<td><p align="center"><A href="/NR-SACT/index.php?ticket=2130488" target="_blank">2130488</a></p></td>" & @CRLF & _ "<td><p align="center">sp6438</p></td>" & @CRLF & _ "<td><p align="center">Check 124 - network services</p></td>" & @CRLF & _ "<td><p align="center">On: 2016-08-09 22:07:41 UTC</p></td>" & @CRLF & _ "<td><p align="center">2016-08-09 22:07:41 UTC<br>2016-08-09 17:07:41 CDT</p></td></tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th>Hostname</th><th>Keyword</th><th>Current Status</th><th>Last Review</th><th>Last Response</th></tr>" & @CRLF & _ "<tr style="background-color:#E9F7F9;">" & @CRLF & _ "<td><p align="center">zlp06644.vci.att.com</p></td>" & @CRLF & _ "<td><p align="center">httpd</p></td>" & @CRLF & _ "<td>User Notified<hr>On: 2016-08-09 22:07:41 UTC<br></td>" & @CRLF & _ "<td>Not Reviewed</td>" & @CRLF & _ "<td>Never</td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th>Detail</th></tr>" & @CRLF & _ "<tr style="background-color:#E9F7F9;">" & @CRLF & _ "<td>Network service running as root: httpd</td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th align="left">Previous Responses</th></tr>" & @CRLF & _ "<tr style="background-color:#E9F7F9;">" & @CRLF & _ "<td><a href="javascript:;" onmousedown="toggleDiv('notif_prev_resp_11');">Hide/Show Previous Responses</a><div id="notif_prev_resp_11" style="display:none"></div></td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%"><tr style="background-color:#FE8705;"><th>New Response Type</th><th>New Response</th></tr>" & @CRLF & _ "<tr style="background-color:#E2E2E2;" >" & @CRLF & _ "<td width="15%"><p align="center"><select name="resp[11][response_type]" id="resp_11" onchange="automate_resp_detail('resp_11','resp_detail_11','resp_detail_note_11');">" & @CRLF & _ "<option value="" selected>---Please Choose---" & @CRLF & _ "<option value="fix" lang="x-lock-Y" title="I, the responsible party, affirm that changing this configuration or service will not impact the application" >Fix Approved" & @CRLF & _ "<option value="ncta" lang="x-lock-N" title="I, the responsible party, will submit a NCTA documenting the need for this configuration or service - ENTER NCTA NUMBER ONLY (4-6 DIGITS)" >Required/NCTA" & @CRLF & _ "<option value="notme" lang="x-lock-Y" title="While I am listed as the MOTS or Role Contact, I have no responsibility for the sponsorship or application in question" >Not Interested Party" & @CRLF & _ "</select>" & @CRLF & _ "</p>" & @CRLF & _ "</td>" & @CRLF & _ "<td width="85%">" & @CRLF & _ "<p align="center"><div id="resp_detail_note_11" style="display:none"></div><textarea style="width: 100%; height: 100%;" name="resp[11][response_detail]" id="resp_detail_11" ></textarea></p>" & @CRLF & _ "</td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<br><hr style="width:90%;" align=left size=4 color=black><br>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th>Ticket</th><th>User</th><th>Type</th><th>Initial Notice</th><th>Incident Date</th></tr><tr style="background-color:#E9F7F9;">" & @CRLF & _ "<input type="hidden" name="resp[12][notif_id]" value="2130487"/>" & @CRLF & _ "<input type="hidden" name="resp[12][rec_type]" value="attuid"/>" & @CRLF & _ "<input type="hidden" name="resp[12][last_state]" value="notify"/>" & @CRLF & _ "<input type="hidden" name="resp[12][warning]" value="1"/>" & @CRLF & _ "<td><p align="center"><A href="/NR-SACT/index.php?ticket=2130487" target="_blank">2130487</a></p></td>" & @CRLF & _ "<td><p align="center">sp6438</p></td>" & @CRLF & _ "<td><p align="center">Check 124 - network services</p></td>" & @CRLF & _ "<td><p align="center">On: 2016-08-09 22:07:41 UTC</p></td>" & @CRLF & _ "<td><p align="center">2016-08-09 22:07:41 UTC<br>2016-08-09 17:07:41 CDT</p></td></tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th>Hostname</th><th>Keyword</th><th>Current Status</th><th>Last Review</th><th>Last Response</th></tr>" & @CRLF & _ "<tr style="background-color:#E9F7F9;">" & @CRLF & _ "<td><p align="center">wspuadm03.edc.cingular.net</p></td>" & @CRLF & _ "<td><p align="center">httpd</p></td>" & @CRLF & _ "<td>User Notified<hr>On: 2016-08-09 22:07:41 UTC<br></td>" & @CRLF & _ "<td>Not Reviewed</td>" & @CRLF & _ "<td>Never</td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th>Detail</th></tr>" & @CRLF & _ "<tr style="background-color:#E9F7F9;">" & @CRLF & _ "<td>Network service running as root: httpd</td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th align="left">Previous Responses</th></tr>" & @CRLF & _ "<tr style="background-color:#E9F7F9;">" & @CRLF & _ "<td><a href="javascript:;" onmousedown="toggleDiv('notif_prev_resp_12');">Hide/Show Previous Responses</a><div id="notif_prev_resp_12" style="display:none"></div></td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%"><tr style="background-color:#FE8705;"><th>New Response Type</th><th>New Response</th></tr>" & @CRLF & _ "<tr style="background-color:#E2E2E2;" >" & @CRLF & _ "<td width="15%"><p align="center"><select name="resp[12][response_type]" id="resp_12" onchange="automate_resp_detail('resp_12','resp_detail_12','resp_detail_note_12');">" & @CRLF & _ "<option value="" selected>---Please Choose---" & @CRLF & _ "<option value="fix" lang="x-lock-Y" title="I, the responsible party, affirm that changing this configuration or service will not impact the application" >Fix Approved" & @CRLF & _ "<option value="ncta" lang="x-lock-N" title="I, the responsible party, will submit a NCTA documenting the need for this configuration or service - ENTER NCTA NUMBER ONLY (4-6 DIGITS)" >Required/NCTA" & @CRLF & _ "<option value="notme" lang="x-lock-Y" title="While I am listed as the MOTS or Role Contact, I have no responsibility for the sponsorship or application in question" >Not Interested Party" & @CRLF & _ "</select>" & @CRLF & _ "</p>" & @CRLF & _ "</td>" & @CRLF & _ "<td width="85%">" & @CRLF & _ "<p align="center"><div id="resp_detail_note_12" style="display:none"></div><textarea style="width: 100%; height: 100%;" name="resp[12][response_detail]" id="resp_detail_12" ></textarea></p>" & @CRLF & _ "</td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<br><hr style="width:90%;" align=left size=4 color=black><br>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th>Ticket</th><th>User</th><th>Type</th><th>Initial Notice</th><th>Incident Date</th></tr><tr style="background-color:#E9F7F9;">" & @CRLF & _ "<input type="hidden" name="resp[13][notif_id]" value="2130486"/>" & @CRLF & _ "<input type="hidden" name="resp[13][rec_type]" value="attuid"/>" & @CRLF & _ "<input type="hidden" name="resp[13][last_state]" value="notify"/>" & @CRLF & _ "<input type="hidden" name="resp[13][warning]" value="1"/>" & @CRLF & _ "<td><p align="center"><A href="/NR-SACT/index.php?ticket=2130486" target="_blank">2130486</a></p></td>" & @CRLF & _ "<td><p align="center">sp6438</p></td>" & @CRLF & _ "<td><p align="center">Check 124 - network services</p></td>" & @CRLF & _ "<td><p align="center">On: 2016-08-09 22:07:41 UTC</p></td>" & @CRLF & _ "<td><p align="center">2016-08-09 22:07:41 UTC<br>2016-08-09 17:07:41 CDT</p></td></tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th>Hostname</th><th>Keyword</th><th>Current Status</th><th>Last Review</th><th>Last Response</th></tr>" & @CRLF & _ "<tr style="background-color:#E9F7F9;">" & @CRLF & _ "<td><p align="center">uspuadm03.edc.cingular.net</p></td>" & @CRLF & _ "<td><p align="center">httpd</p></td>" & @CRLF & _ "<td>User Notified<hr>On: 2016-08-09 22:07:41 UTC<br></td>" & @CRLF & _ "<td>Not Reviewed</td>" & @CRLF & _ "<td>Never</td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th>Detail</th></tr>" & @CRLF & _ "<tr style="background-color:#E9F7F9;">" & @CRLF & _ "<td>Network service running as root: httpd</td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th align="left">Previous Responses</th></tr>" & @CRLF & _ "<tr style="background-color:#E9F7F9;">" & @CRLF & _ "<td><a href="javascript:;" onmousedown="toggleDiv('notif_prev_resp_13');">Hide/Show Previous Responses</a><div id="notif_prev_resp_13" style="display:none"></div></td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%"><tr style="background-color:#FE8705;"><th>New Response Type</th><th>New Response</th></tr>" & @CRLF & _ "<tr style="background-color:#E2E2E2;" >" & @CRLF & _ "<td width="15%"><p align="center"><select name="resp[13][response_type]" id="resp_13" onchange="automate_resp_detail('resp_13','resp_detail_13','resp_detail_note_13');">" & @CRLF & _ "<option value="" selected>---Please Choose---" & @CRLF & _ "<option value="fix" lang="x-lock-Y" title="I, the responsible party, affirm that changing this configuration or service will not impact the application" >Fix Approved" & @CRLF & _ "<option value="ncta" lang="x-lock-N" title="I, the responsible party, will submit a NCTA documenting the need for this configuration or service - ENTER NCTA NUMBER ONLY (4-6 DIGITS)" >Required/NCTA" & @CRLF & _ "<option value="notme" lang="x-lock-Y" title="While I am listed as the MOTS or Role Contact, I have no responsibility for the sponsorship or application in question" >Not Interested Party" & @CRLF & _ "</select>" & @CRLF & _ "</p>" & @CRLF & _ "</td>" & @CRLF & _ "<td width="85%">" & @CRLF & _ "<p align="center"><div id="resp_detail_note_13" style="display:none"></div><textarea style="width: 100%; height: 100%;" name="resp[13][response_detail]" id="resp_detail_13" ></textarea></p>" & @CRLF & _ "</td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<br><hr style="width:90%;" align=left size=4 color=black><br>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th>Ticket</th><th>User</th><th>Type</th><th>Initial Notice</th><th>Incident Date</th></tr><tr style="background-color:#E9F7F9;">" & @CRLF & _ "<input type="hidden" name="resp[14][notif_id]" value="2130485"/>" & @CRLF & _ "<input type="hidden" name="resp[14][rec_type]" value="attuid"/>" & @CRLF & _ "<input type="hidden" name="resp[14][last_state]" value="notify"/>" & @CRLF & _ "<input type="hidden" name="resp[14][warning]" value="1"/>" & @CRLF & _ "<td><p align="center"><A href="/NR-SACT/index.php?ticket=2130485" target="_blank">2130485</a></p></td>" & @CRLF & _ "<td><p align="center">sp6438</p></td>" & @CRLF & _ "<td><p align="center">Check 124 - network services</p></td>" & @CRLF & _ "<td><p align="center">On: 2016-08-09 22:07:41 UTC</p></td>" & @CRLF & _ "<td><p align="center">2016-08-09 22:07:41 UTC<br>2016-08-09 17:07:41 CDT</p></td></tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th>Hostname</th><th>Keyword</th><th>Current Status</th><th>Last Review</th><th>Last Response</th></tr>" & @CRLF & _ "<tr style="background-color:#E9F7F9;">" & @CRLF & _ "<td><p align="center">ulpv0197.madc.att.com</p></td>" & @CRLF & _ "<td><p align="center">httpd</p></td>" & @CRLF & _ "<td>User Notified<hr>On: 2016-08-09 22:07:41 UTC<br></td>" & @CRLF & _ "<td>Not Reviewed</td>" & @CRLF & _ "<td>Never</td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th>Detail</th></tr>" & @CRLF & _ "<tr style="background-color:#E9F7F9;">" & @CRLF & _ "<td>Network service running as root: httpd</td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th align="left">Previous Responses</th></tr>" & @CRLF & _ "<tr style="background-color:#E9F7F9;">" & @CRLF & _ "<td><a href="javascript:;" onmousedown="toggleDiv('notif_prev_resp_14');">Hide/Show Previous Responses</a><div id="notif_prev_resp_14" style="display:none"></div></td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%"><tr style="background-color:#FE8705;"><th>New Response Type</th><th>New Response</th></tr>" & @CRLF & _ "<tr style="background-color:#E2E2E2;" >" & @CRLF & _ "<td width="15%"><p align="center"><select name="resp[14][response_type]" id="resp_14" onchange="automate_resp_detail('resp_14','resp_detail_14','resp_detail_note_14');">" & @CRLF & _ "<option value="" selected>---Please Choose---" & @CRLF & _ "<option value="fix" lang="x-lock-Y" title="I, the responsible party, affirm that changing this configuration or service will not impact the application" >Fix Approved" & @CRLF & _ "<option value="ncta" lang="x-lock-N" title="I, the responsible party, will submit a NCTA documenting the need for this configuration or service - ENTER NCTA NUMBER ONLY (4-6 DIGITS)" >Required/NCTA" & @CRLF & _ "<option value="notme" lang="x-lock-Y" title="While I am listed as the MOTS or Role Contact, I have no responsibility for the sponsorship or application in question" >Not Interested Party" & @CRLF & _ "</select>" & @CRLF & _ "</p>" & @CRLF & _ "</td>" & @CRLF & _ "<td width="85%">" & @CRLF & _ "<p align="center"><div id="resp_detail_note_14" style="display:none"></div><textarea style="width: 100%; height: 100%;" name="resp[14][response_detail]" id="resp_detail_14" ></textarea></p>" & @CRLF & _ "</td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<br><hr style="width:90%;" align=left size=4 color=black><br>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th>Ticket</th><th>User</th><th>Type</th><th>Initial Notice</th><th>Incident Date</th></tr><tr style="background-color:#E9F7F9;">" & @CRLF & _ "<input type="hidden" name="resp[15][notif_id]" value="2130484"/>" & @CRLF & _ "<input type="hidden" name="resp[15][rec_type]" value="attuid"/>" & @CRLF & _ "<input type="hidden" name="resp[15][last_state]" value="notify"/>" & @CRLF & _ "<input type="hidden" name="resp[15][warning]" value="1"/>" & @CRLF & _ "<td><p align="center"><A href="/NR-SACT/index.php?ticket=2130484" target="_blank">2130484</a></p></td>" & @CRLF & _ "<td><p align="center">sp6438</p></td>" & @CRLF & _ "<td><p align="center">Check 124 - network services</p></td>" & @CRLF & _ "<td><p align="center">On: 2016-08-09 22:07:41 UTC</p></td>" & @CRLF & _ "<td><p align="center">2016-08-09 22:07:41 UTC<br>2016-08-09 17:07:41 CDT</p></td></tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th>Hostname</th><th>Keyword</th><th>Current Status</th><th>Last Review</th><th>Last Response</th></tr>" & @CRLF & _ "<tr style="background-color:#E9F7F9;">" & @CRLF & _ "<td><p align="center">ulpv0143.madc.att.com</p></td>" & @CRLF & _ "<td><p align="center">httpd</p></td>" & @CRLF & _ "<td>User Notified<hr>On: 2016-08-09 22:07:41 UTC<br></td>" & @CRLF & _ "<td>Not Reviewed</td>" & @CRLF & _ "<td>Never</td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th>Detail</th></tr>" & @CRLF & _ "<tr style="background-color:#E9F7F9;">" & @CRLF & _ "<td>Network service running as root: httpd</td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th align="left">Previous Responses</th></tr>" & @CRLF & _ "<tr style="background-color:#E9F7F9;">" & @CRLF & _ "<td><a href="javascript:;" onmousedown="toggleDiv('notif_prev_resp_15');">Hide/Show Previous Responses</a><div id="notif_prev_resp_15" style="display:none"></div></td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%"><tr style="background-color:#FE8705;"><th>New Response Type</th><th>New Response</th></tr>" & @CRLF & _ "<tr style="background-color:#E2E2E2;" >" & @CRLF & _ "<td width="15%"><p align="center"><select name="resp[15][response_type]" id="resp_15" onchange="automate_resp_detail('resp_15','resp_detail_15','resp_detail_note_15');">" & @CRLF & _ "<option value="" selected>---Please Choose---" & @CRLF & _ "<option value="fix" lang="x-lock-Y" title="I, the responsible party, affirm that changing this configuration or service will not impact the application" >Fix Approved" & @CRLF & _ "<option value="ncta" lang="x-lock-N" title="I, the responsible party, will submit a NCTA documenting the need for this configuration or service - ENTER NCTA NUMBER ONLY (4-6 DIGITS)" >Required/NCTA" & @CRLF & _ "<option value="notme" lang="x-lock-Y" title="While I am listed as the MOTS or Role Contact, I have no responsibility for the sponsorship or application in question" >Not Interested Party" & @CRLF & _ "</select>" & @CRLF & _ "</p>" & @CRLF & _ "</td>" & @CRLF & _ "<td width="85%">" & @CRLF & _ "<p align="center"><div id="resp_detail_note_15" style="display:none"></div><textarea style="width: 100%; height: 100%;" name="resp[15][response_detail]" id="resp_detail_15" ></textarea></p>" & @CRLF & _ "</td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<br><hr style="width:90%;" align=left size=4 color=black><br>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th>Ticket</th><th>User</th><th>Type</th><th>Initial Notice</th><th>Incident Date</th></tr><tr style="background-color:#E9F7F9;">" & @CRLF & _ "<input type="hidden" name="resp[16][notif_id]" value="2130483"/>" & @CRLF & _ "<input type="hidden" name="resp[16][rec_type]" value="attuid"/>" & @CRLF & _ "<input type="hidden" name="resp[16][last_state]" value="notify"/>" & @CRLF & _ "<input type="hidden" name="resp[16][warning]" value="1"/>" & @CRLF & _ "<td><p align="center"><A href="/NR-SACT/index.php?ticket=2130483" target="_blank">2130483</a></p></td>" & @CRLF & _ "<td><p align="center">sp6438</p></td>" & @CRLF & _ "<td><p align="center">Check 124 - network services</p></td>" & @CRLF & _ "<td><p align="center">On: 2016-08-09 22:07:41 UTC</p></td>" & @CRLF & _ "<td><p align="center">2016-08-09 22:07:41 UTC<br>2016-08-09 17:07:41 CDT</p></td></tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th>Hostname</th><th>Keyword</th><th>Current Status</th><th>Last Review</th><th>Last Response</th></tr>" & @CRLF & _ "<tr style="background-color:#E9F7F9;">" & @CRLF & _ "<td><p align="center">sstz0025.sddc.sbc.com</p></td>" & @CRLF & _ "<td><p align="center">httpd</p></td>" & @CRLF & _ "<td>User Notified<hr>On: 2016-08-09 22:07:41 UTC<br></td>" & @CRLF & _ "<td>Not Reviewed</td>" & @CRLF & _ "<td>Never</td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th>Detail</th></tr>" & @CRLF & _ "<tr style="background-color:#E9F7F9;">" & @CRLF & _ "<td>Network service running as root: httpd</td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th align="left">Previous Responses</th></tr>" & @CRLF & _ "<tr style="background-color:#E9F7F9;">" & @CRLF & _ "<td><a href="javascript:;" onmousedown="toggleDiv('notif_prev_resp_16');">Hide/Show Previous Responses</a><div id="notif_prev_resp_16" style="display:none"></div></td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%"><tr style="background-color:#FE8705;"><th>New Response Type</th><th>New Response</th></tr>" & @CRLF & _ "<tr style="background-color:#E2E2E2;" >" & @CRLF & _ "<td width="15%"><p align="center"><select name="resp[16][response_type]" id="resp_16" onchange="automate_resp_detail('resp_16','resp_detail_16','resp_detail_note_16');">" & @CRLF & _ "<option value="" selected>---Please Choose---" & @CRLF & _ "<option value="fix" lang="x-lock-Y" title="I, the responsible party, affirm that changing this configuration or service will not impact the application" >Fix Approved" & @CRLF & _ "<option value="ncta" lang="x-lock-N" title="I, the responsible party, will submit a NCTA documenting the need for this configuration or service - ENTER NCTA NUMBER ONLY (4-6 DIGITS)" >Required/NCTA" & @CRLF & _ "<option value="notme" lang="x-lock-Y" title="While I am listed as the MOTS or Role Contact, I have no responsibility for the sponsorship or application in question" >Not Interested Party" & @CRLF & _ "</select>" & @CRLF & _ "</p>" & @CRLF & _ "</td>" & @CRLF & _ "<td width="85%">" & @CRLF & _ "<p align="center"><div id="resp_detail_note_16" style="display:none"></div><textarea style="width: 100%; height: 100%;" name="resp[16][response_detail]" id="resp_detail_16" ></textarea></p>" & @CRLF & _ "</td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<br><hr style="width:90%;" align=left size=4 color=black><br>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th>Ticket</th><th>User</th><th>Type</th><th>Initial Notice</th><th>Incident Date</th></tr><tr style="background-color:#E9F7F9;">" & @CRLF & _ "<input type="hidden" name="resp[17][notif_id]" value="2130481"/>" & @CRLF & _ "<input type="hidden" name="resp[17][rec_type]" value="attuid"/>" & @CRLF & _ "<input type="hidden" name="resp[17][last_state]" value="notify"/>" & @CRLF & _ "<input type="hidden" name="resp[17][warning]" value="1"/>" & @CRLF & _ "<td><p align="center"><A href="/NR-SACT/index.php?ticket=2130481" target="_blank">2130481</a></p></td>" & @CRLF & _ "<td><p align="center">sp6438</p></td>" & @CRLF & _ "<td><p align="center">Check 124 - network services</p></td>" & @CRLF & _ "<td><p align="center">On: 2016-08-09 22:07:41 UTC</p></td>" & @CRLF & _ "<td><p align="center">2016-08-09 22:07:41 UTC<br>2016-08-09 17:07:41 CDT</p></td></tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th>Hostname</th><th>Keyword</th><th>Current Status</th><th>Last Review</th><th>Last Response</th></tr>" & @CRLF & _ "<tr style="background-color:#E9F7F9;">" & @CRLF & _ "<td><p align="center">hht033c.hydc.sbc.com</p></td>" & @CRLF & _ "<td><p align="center">httpd</p></td>" & @CRLF & _ "<td>User Notified<hr>On: 2016-08-09 22:07:41 UTC<br></td>" & @CRLF & _ "<td>Not Reviewed</td>" & @CRLF & _ "<td>Never</td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th>Detail</th></tr>" & @CRLF & _ "<tr style="background-color:#E9F7F9;">" & @CRLF & _ "<td>Network service running as root: httpd</td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th align="left">Previous Responses</th></tr>" & @CRLF & _ "<tr style="background-color:#E9F7F9;">" & @CRLF & _ "<td><a href="javascript:;" onmousedown="toggleDiv('notif_prev_resp_17');">Hide/Show Previous Responses</a><div id="notif_prev_resp_17" style="display:none"></div></td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%"><tr style="background-color:#FE8705;"><th>New Response Type</th><th>New Response</th></tr>" & @CRLF & _ "<tr style="background-color:#E2E2E2;" >" & @CRLF & _ "<td width="15%"><p align="center"><select name="resp[17][response_type]" id="resp_17" onchange="automate_resp_detail('resp_17','resp_detail_17','resp_detail_note_17');">" & @CRLF & _ "<option value="" selected>---Please Choose---" & @CRLF & _ "<option value="fix" lang="x-lock-Y" title="I, the responsible party, affirm that changing this configuration or service will not impact the application" >Fix Approved" & @CRLF & _ "<option value="ncta" lang="x-lock-N" title="I, the responsible party, will submit a NCTA documenting the need for this configuration or service - ENTER NCTA NUMBER ONLY (4-6 DIGITS)" >Required/NCTA" & @CRLF & _ "<option value="notme" lang="x-lock-Y" title="While I am listed as the MOTS or Role Contact, I have no responsibility for the sponsorship or application in question" >Not Interested Party" & @CRLF & _ "</select>" & @CRLF & _ "</p>" & @CRLF & _ "</td>" & @CRLF & _ "<td width="85%">" & @CRLF & _ "<p align="center"><div id="resp_detail_note_17" style="display:none"></div><textarea style="width: 100%; height: 100%;" name="resp[17][response_detail]" id="resp_detail_17" ></textarea></p>" & @CRLF & _ "</td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<br><hr style="width:90%;" align=left size=4 color=black><br>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th>Ticket</th><th>User</th><th>Type</th><th>Initial Notice</th><th>Incident Date</th></tr><tr style="background-color:#E9F7F9;">" & @CRLF & _ "<input type="hidden" name="resp[18][notif_id]" value="2130480"/>" & @CRLF & _ "<input type="hidden" name="resp[18][rec_type]" value="attuid"/>" & @CRLF & _ "<input type="hidden" name="resp[18][last_state]" value="notify"/>" & @CRLF & _ "<input type="hidden" name="resp[18][warning]" value="1"/>" & @CRLF & _ "<td><p align="center"><A href="/NR-SACT/index.php?ticket=2130480" target="_blank">2130480</a></p></td>" & @CRLF & _ "<td><p align="center">sp6438</p></td>" & @CRLF & _ "<td><p align="center">Check 124 - network services</p></td>" & @CRLF & _ "<td><p align="center">On: 2016-08-09 22:07:41 UTC</p></td>" & @CRLF & _ "<td><p align="center">2016-08-09 22:07:41 UTC<br>2016-08-09 17:07:41 CDT</p></td></tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th>Hostname</th><th>Keyword</th><th>Current Status</th><th>Last Review</th><th>Last Response</th></tr>" & @CRLF & _ "<tr style="background-color:#E9F7F9;">" & @CRLF & _ "<td><p align="center">chp003e2.sldc.sbc.com</p></td>" & @CRLF & _ "<td><p align="center">httpd</p></td>" & @CRLF & _ "<td>User Notified<hr>On: 2016-08-09 22:07:41 UTC<br></td>" & @CRLF & _ "<td>Not Reviewed</td>" & @CRLF & _ "<td>Never</td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th>Detail</th></tr>" & @CRLF & _ "<tr style="background-color:#E9F7F9;">" & @CRLF & _ "<td>Network service running as root: httpd</td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%">" & @CRLF & _ "<tr style="background-color:#E2E2E2;"><th align="left">Previous Responses</th></tr>" & @CRLF & _ "<tr style="background-color:#E9F7F9;">" & @CRLF & _ "<td><a href="javascript:;" onmousedown="toggleDiv('notif_prev_resp_18');">Hide/Show Previous Responses</a><div id="notif_prev_resp_18" style="display:none"></div></td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<table border=0 width="90%"><tr style="background-color:#FE8705;"><th>New Response Type</th><th>New Response</th></tr>" & @CRLF & _ "<tr style="background-color:#E2E2E2;" >" & @CRLF & _ "<td width="15%"><p align="center"><select name="resp[18][response_type]" id="resp_18" onchange="automate_resp_detail('resp_18','resp_detail_18','resp_detail_note_18');">" & @CRLF & _ "<option value="" selected>---Please Choose---" & @CRLF & _ "<option value="fix" lang="x-lock-Y" title="I, the responsible party, affirm that changing this configuration or service will not impact the application" >Fix Approved" & @CRLF & _ "<option value="ncta" lang="x-lock-N" title="I, the responsible party, will submit a NCTA documenting the need for this configuration or service - ENTER NCTA NUMBER ONLY (4-6 DIGITS)" >Required/NCTA" & @CRLF & _ "<option value="notme" lang="x-lock-Y" title="While I am listed as the MOTS or Role Contact, I have no responsibility for the sponsorship or application in question" >Not Interested Party" & @CRLF & _ "</select>" & @CRLF & _ "</p>" & @CRLF & _ "</td>" & @CRLF & _ "<td width="85%">" & @CRLF & _ "<p align="center"><div id="resp_detail_note_18" style="display:none"></div><textarea style="width: 100%; height: 100%;" name="resp[18][response_detail]" id="resp_detail_18" ></textarea></p>" & @CRLF & _ "</td>" & @CRLF & _ "</tr>" & @CRLF & _ "</table>" & @CRLF & _ "<br><hr style="width:90%;" align=left size=4 color=black><br>" & @CRLF & _ "<input type="button" value="<PREV" onclick="prePage(1, document.getElementById('EditJust_attuid'));"/>" & @CRLF & _ "Page <input type="text" size=5 value=1 onkeypress="manualPage2(event, 1, this.value, 1,document.getElementById('EditJust_attuid'));" onchange="manualPage(1, this.value, 1,document.getElementById('EditJust_attuid'));"/>" & @CRLF & _ " of 1 <input type="button" value="NEXT>" onclick="nextPage(1,1, document.getElementById('EditJust_attuid'));"/>" & @CRLF & _ "</p>" & @CRLF & _ "<input type="hidden" name="num_rows" value="19"/>" & @CRLF & _ "<input type="hidden" name="resp_token" value="c0d21cd9104d045ed3b8eb85be323abb"/>" & @CRLF & _ "<input type="submit" value="Update My Tickets"/>" & @CRLF & _ "<input type="hidden" name="max_page2" id="max_page2" value=1 />" & @CRLF & _ "<input type="hidden" name="current_page2" id="current_page2" value=1 />" & @CRLF & _ "<input type="hidden" name="disp_usersup" id="disp_usersup" value=User />" & @CRLF & _ "</p>" & @CRLF & _ "" & @CRLF & _ "" & @CRLF & _ "<!--Page generated in 0.64753890037537 seconds, 157 queries-->" & @CRLF & _ "" & @CRLF & _ "" & @CRLF & _ "<!--- END: BODY --->" & @CRLF & _ "" & @CRLF & _ " </td>" & @CRLF & _ " </tr>" & @CRLF & _ "</table>" & @CRLF & _ "<!--- END: BODY CONTAINER--->" & @CRLF & _ " " & @CRLF & _ " " & @CRLF & _ " " & @CRLF & _ "<!--- FOOTER ---> " & @CRLF & _ "<TABLE cellSpacing=0 cellPadding=0 width="100%" bgcolor=#fe8705 border=0>" & @CRLF & _ "<SCRIPT language=javascript>" & @CRLF & _ "<!-- " & @CRLF & _ "// create year." & @CRLF & _ "var now = new Date();" & @CRLF & _ "" & @CRLF & _ "function fourdigits(number) {" & @CRLF & _ " return (number < 1000) ? number + 1900 : number;" & @CRLF & _ " }" & @CRLF & _ "year = (fourdigits(now.getYear())) ;" & @CRLF & _ "-->" & @CRLF & _ "</SCRIPT>" & @CRLF & _ "" & @CRLF & _ " <TR>" & @CRLF & _ " <TD align=left >&nbsp;</TD>" & @CRLF & _ " <TD style="font-weight:normal;" noWrap align=right>&copy;<SCRIPT>document.write(year);</SCRIPT>&nbsp;AT&amp;T Intellectual Property. All rights reserved.</TD>" & @CRLF & _ " </TR>" & @CRLF & _ "</TABLE>" & @CRLF & _ "<table width="100%" border="0" cellspacing="2" cellpadding="2">" & @CRLF & _ "<tr><td align="center">" & @CRLF & _ "<strong>--- AT&amp;T Proprietary (Restricted) ---</strong><br>" & @CRLF & _ "Only for use by authorized individuals within the AT&amp;T companies and not for general distribution" & @CRLF & _ "</td></tr>" & @CRLF & _ "</table>" & @CRLF & _ "<!-- END: FOOTER -->" & @CRLF & _ "</BODY></HTML> " & @CRLF & _ " </BODY></HTML>" & @CRLF & _ "" Local $aArray = StringRegExp($sString, $sRegex, $STR_REGEXPARRAYGLOBALFULLMATCH) Local $aFullArray[0] For $i = 0 To UBound($aArray) -1 _ArrayConcatenate($aFullArray, $aArray[$i]) Next $aArray = $aFullArray ; Present the entire match result _ArrayDisplay($aArray, "Result")

Please keep in mind that these code samples are automatically generated and are not guaranteed to work. If you find any syntax errors, feel free to submit a bug report. For a full regex reference for AutoIt, please visit: https://www.autoitscript.com/autoit3/docs/functions/StringRegExp.htm