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

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

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 C#, please visit: https://msdn.microsoft.com/en-us/library/system.text.regularexpressions.regex(v=vs.110).aspx