Advertisement
Guest User

Untitled

a guest
Nov 27th, 2018
693
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 33.57 KB | None | 0 0
  1. (exception.all
  2. (contact "For assistance, contact your network support team.")
  3. (details "")
  4. (format "$(exception.id): $(exception.details)")
  5. (help "")
  6. (summary "")
  7. (http
  8. (code "200")
  9. (contact "")
  10. (details "")
  11. (format <<--3ed3acdf.0--
  12. <HTML><HEAD>
  13. <TITLE>$(exception.summary)</TITLE>
  14. </HEAD>
  15. <BODY>
  16. <FONT face="Helvetica">
  17. <big><strong>$(exception.company_name)</strong></big><BR>
  18. </FONT>
  19. <blockquote>
  20. <TABLE border=0 cellPadding=1 width="80%">
  21. <TR><TD>
  22. <FONT face="Helvetica">
  23. <big>$(exception.summary) ($(exception.id))</big>
  24. <BR>
  25. <BR>
  26. </FONT>
  27. </TD></TR>
  28. <TR><TD>
  29. <FONT face="Helvetica">
  30. $(exception.details)
  31. </FONT>
  32. </TD></TR>
  33. <TR><TD>
  34. <FONT face="Helvetica">
  35. $(exception.help)
  36. </FONT>
  37. </TD></TR>
  38. <TR><TD>
  39. <FONT face="Helvetica" SIZE=2>
  40. <BR>
  41. $(exception.contact)
  42. </FONT>
  43. </TD></TR>
  44. </TABLE>
  45. </blockquote>
  46. </FONT>
  47. </BODY></HTML>
  48. --3ed3acdf.0--
  49. )
  50. (help "")
  51. (summary "")
  52. )
  53. (exception.user-defined.all
  54. (contact "")
  55. (details "")
  56. (format "")
  57. (help "")
  58. (summary "")
  59. (http
  60. (code "403")
  61. (contact "")
  62. (details "")
  63. (format "")
  64. (help "")
  65. (summary "")
  66. )
  67. ; This code is used in the "Exception Pages" lab exercise.
  68. ; Refer to the Student Workbook for details.
  69. (exception.my_exception
  70. (format <<EOF
  71. <html>
  72. <head>
  73. Access denied
  74. </head>
  75. <body>
  76. <center>
  77. <p><font face="Arial, Helvetica, sans-serif" size="3" color="Red">Your IP address: $(client.address)</font></p>
  78. <p><font face="Arial, Helvetica, sans-serif" size="4" color="Red">YOU HAVE BEEN DENIED ACCESS TO THIS SITE. PLEASE READ OUR SECURITY POLICY AT http://intranet.acme.com/up.html</font></p>
  79. </center>
  80. </body>
  81. </html>
  82. EOF
  83. )
  84. )
  85.  
  86. (exception.table_exception
  87. (format <<EOF
  88. <html>
  89. <head>
  90. <center><font size=5 color=red><big><strong>Access Denied</strong></big></font></center>
  91. <p>
  92. <center><font size=4 color=blue><strong>Access was forbidden by - $(proxy.name)</strong></font></center>
  93. <p>
  94. <p>
  95. <center><font face="Arial", color=black>For assistance, contact your network support team.</font></center>
  96. <center><font face="Arial", color=black>Email: <a href="mailto:securityadmin@mycompany.com">securityadmin@mycompany.com</a></font></center>
  97. <center><font face="Arial", color=black>IT Support: (555) 555-5555</font></center>
  98. <p>
  99. <center> <table style="width:100%">
  100. <tr bgcolor=00ccff>
  101. <td align=center width=50%><b>Client-IP:</b> $(client.address)</td>
  102. <td align=center width=50%><b>Username:</b> $(user)</td>
  103. </tr>
  104. <tr bgcolor=00ccff>
  105. <td align=center width=50%><b>Categories:</b> $(cs-categories)</td>
  106. <td align=center width=50%><b>Threat Risk Level:</b> $(url.threat_risk.level)</td>
  107. </tr>
  108. <!-- <tr bgcolor=00ccff>
  109. <td align=center width=50%><b>RuleMatch:</b> $(reference_id)</td>
  110. <td align=center width=50%><b>Transaction ID:</b> $(transaction.id)</td>
  111. </tr> -->
  112. <tr bgcolor=00ccff>
  113. <td colspan="2" align=center><b>URL:</b> $(c-uri)</td>
  114. </tr>
  115. <tr bgcolor=00ccff>
  116. <td colspan="2" align=center><b>Browser:</b> $(request.header.User-Agent)</td>
  117. </tr>
  118. </table>
  119. </center>
  120.  
  121. EOF
  122. )
  123. )
  124. )
  125.  
  126. (exception.coach
  127. (contact)
  128. (details <<--XXX--
  129. <p>Access to your requested resource has been logged by your organization's Content Filtering policy. If you have a legitimate reason to access this site please click to <a id='coach-continue-url' href="$(variable.Coach_continue_url)">Accept</a></p>
  130. --XXX--
  131. )
  132. (format)
  133. (help <<--XXX--
  134. <p>For assistance, contact your network support team.</p>
  135. --XXX--
  136. )
  137. (summary <<--XXX--
  138. Confirm Access
  139. --XXX--
  140. )
  141. (http
  142. (code "200")
  143. )
  144. )
  145.  
  146. (exception.password_override
  147. (details <<--XXX--
  148. <p>Access to your requested resource has been denied by your organization's Content Filtering policy.</p>
  149. <p>If you have been provided with an override password to access this site please enter it below and click 'continue'.</p>
  150. <div id="errorWrapper"><div id="errorNotify" class="curved">&#160;</div></div>
  151. <div id="passwordForm"><form id="override" action="/">
  152. <label for="pwinput">Override Password:</label>
  153. <input id="pwinput" type="password" />
  154. <input type="submit" id="sesame" value="continue" />
  155. </form></div>
  156. --XXX--
  157. )
  158. (help)
  159. (summary <<--XXX--
  160. Password Required
  161. --XXX--
  162. )
  163. (http
  164. (code "200")
  165. )
  166. )
  167.  
  168. (exception.authentication_failed
  169. (contact "")
  170. (details "Your credentials could not be authenticated: $(quot)$(sc-auth-status)$(quot). You will not be permitted access until your credentials can be verified.")
  171. (format "")
  172. (help "This is typically caused by an incorrect username and/or password, but could also be caused by network problems.")
  173. (summary "Access Denied")
  174. (http
  175. (code "401")
  176. (contact "")
  177. (details "")
  178. (format "")
  179. (help "")
  180. (summary "")
  181. )
  182. )
  183. (exception.authentication_failed_password_expired
  184. (contact "")
  185. (details "Your password was reported expired. You will not be permitted access unless your password is updated.")
  186. (format "")
  187. (help "This is caused by settings on the authentication server.")
  188. (summary "Access Denied")
  189. (http
  190. (code "403")
  191. (contact "")
  192. (details "")
  193. (format "")
  194. (help "")
  195. (summary "")
  196. )
  197. )
  198. (exception.authentication_redirect_from_virtual_host
  199. (contact "")
  200. (details "You are being redirected from the authentication virtual host to your original request.")
  201. (format "")
  202. (help "")
  203. (summary "Redirect")
  204. (http
  205. (code "302")
  206. (contact "")
  207. (details "")
  208. (format "")
  209. (help "")
  210. (summary "")
  211. )
  212. )
  213. (exception.authentication_redirect_to_virtual_host
  214. (contact "")
  215. (details "You are being redirected to the authentication virtual host.")
  216. (format "")
  217. (help "")
  218. (summary "Redirect")
  219. (http
  220. (code "302")
  221. (contact "")
  222. (details "")
  223. (format "")
  224. (help "")
  225. (summary "")
  226. )
  227. )
  228. (exception.authentication_redirect_off_box
  229. (contact "")
  230. (details "You are being redirected to an authentication service on another device.")
  231. (format "")
  232. (help "")
  233. (summary "Redirect")
  234. (http
  235. (code "302")
  236. (contact "")
  237. (details "")
  238. (format "")
  239. (help "")
  240. (summary "")
  241. )
  242. )
  243. (exception.authentication_success
  244. (contact "")
  245. (details <<--3ed3acdf.0--
  246. Click <a href="$(redirect.location)">here</a> if you are not automatically redirected.--3ed3acdf.0--
  247. )
  248. (format "")
  249. (help "")
  250. (summary "Redirect")
  251. (http
  252. (code "302")
  253. (contact "")
  254. (details "")
  255. (format "")
  256. (help "")
  257. (summary "")
  258. )
  259. )
  260. (exception.authorization_failed
  261. (contact "")
  262. (details "Your request was not authorized.")
  263. (format "")
  264. (help "")
  265. (summary "Access Denied")
  266. (http
  267. (code "401")
  268. (contact "")
  269. (details "")
  270. (format "")
  271. (help "")
  272. (summary "")
  273. )
  274. )
  275. (exception.configuration_error
  276. (contact "")
  277. (details "Your request could not be processed because of a configuration error: $(quot)$(exception.last_error)$(quot)")
  278. (format "")
  279. (help "")
  280. (summary "Appliance Error")
  281. (http
  282. (code "403")
  283. (contact "")
  284. (details "")
  285. (format "")
  286. (help "")
  287. (summary "")
  288. )
  289. )
  290. (exception.connect_method_denied
  291. (contact "")
  292. (details "Your request attempted a CONNECT to a port $(quot)$(url.port)$(quot) that is not permitted by default.")
  293. (format "")
  294. (help "This is typically caused by an HTTPS URL that uses a port other then the default of 443.")
  295. (summary "Access Denied")
  296. (http
  297. (code "403")
  298. (contact "")
  299. (details "")
  300. (format "")
  301. (help "")
  302. (summary "")
  303. )
  304. )
  305. (exception.content_filter_denied
  306. (contact "")
  307. (details "Your request was denied because of its content categorization: $(quot)$(cs-categories)$(quot)")
  308. (format "")
  309. (help "")
  310. (summary "Access Denied")
  311. (http
  312. (code "403")
  313. (contact "")
  314. (details "")
  315. (format "")
  316. (help "")
  317. (summary "")
  318. )
  319. )
  320. (exception.content_filter_unavailable
  321. (contact "")
  322. (details "Your request was denied because an external content filtering service was not available.")
  323. (format "")
  324. (help "This could be caused by transient network problems, or a configuration error.")
  325. (summary "Access Denied")
  326. (http
  327. (code "403")
  328. (contact "")
  329. (details "")
  330. (format "")
  331. (help "")
  332. (summary "")
  333. )
  334. )
  335. (exception.dns_server_failure
  336. (contact "")
  337. (details "Your request could not be processed because an error occurred contacting the DNS server.")
  338. (format "")
  339. (help "The DNS server may be temporarily unavailable, or there could be a network problem.")
  340. (summary "Network Error")
  341. (http
  342. (code "503")
  343. (contact "")
  344. (details "")
  345. (format "")
  346. (help "")
  347. (summary "")
  348. )
  349. )
  350. (exception.dns_unresolved_hostname
  351. (contact "")
  352. (details "Your requested host $(quot)$(url.host)$(quot) could not be resolved by DNS.")
  353. (format "")
  354. (help "")
  355. (summary "Network Error")
  356. (http
  357. (code "404")
  358. (contact "")
  359. (details "")
  360. (format "")
  361. (help "")
  362. (summary "")
  363. )
  364. )
  365. (exception.dynamic_bypass_reload
  366. (contact "")
  367. (details <<--3ed3acdf.0--
  368. Click <a href="$(redirect.location)">here</a> if you are not automatically redirected.--3ed3acdf.0--
  369. )
  370. (format "")
  371. (help "")
  372. (summary "Refresh")
  373. (http
  374. (code "200")
  375. (contact "")
  376. (details "")
  377. (format "")
  378. (help "")
  379. (summary "")
  380. )
  381. )
  382. (exception.content_encoding_error
  383. (contact "")
  384. (details "Server response could not be decoded using encoding type returned by server.")
  385. (format "")
  386. (help "This is typically caused by a Web Site presenting a content encoding header of one type, and then encoding the data differently.")
  387. (summary "Content Encoding Error")
  388. (http
  389. (code "502")
  390. (contact "")
  391. (details "")
  392. (format "")
  393. (help "")
  394. (summary "")
  395. )
  396. )
  397. (exception.gateway_error
  398. (contact "")
  399. (details "An error occurred attempting to communicate with an HTTP or SOCKS gateway.")
  400. (format "")
  401. (help "The gateway may be temporarily unavailable, or there could be a network problem.")
  402. (summary "Network Error")
  403. (http
  404. (code "504")
  405. (contact "")
  406. (details "")
  407. (format "")
  408. (help "")
  409. (summary "")
  410. )
  411. )
  412. (exception.icap_communication_error
  413. (contact "")
  414. (details "An error occurred attempting to communicate with an ICAP server.")
  415. (format "")
  416. (help "The ICAP server may be temporarily unavailable, there could be network problem, or the ICAP service may be misconfigured.")
  417. (summary "ICAP Error")
  418. (http
  419. (code "503")
  420. (contact "")
  421. (details "")
  422. (format "")
  423. (help "")
  424. (summary "")
  425. )
  426. )
  427. (exception.icap_error
  428. (contact "")
  429. (details "An error occurred while performing an ICAP operation: $(icap_error_details)")
  430. (format "")
  431. (help "There could be a network problem, the ICAP service may be misconfigured, or the ICAP server may have reported an error.")
  432. (summary "ICAP Error")
  433. (http
  434. (code "503")
  435. (contact "")
  436. (details "")
  437. (format "")
  438. (help "")
  439. (summary "")
  440. )
  441. )
  442. (exception.internal_error
  443. (contact "")
  444. (details "An unrecoverable error was encountered: $(quot)$(exception.last_error)$(quot)")
  445. (format "")
  446. (help "This problem is unexpected. Please use the contact information below to obtain assistance.")
  447. (summary "Appliance Error")
  448. (http
  449. (code "500")
  450. (contact "")
  451. (details "")
  452. (format "")
  453. (help "")
  454. (summary "")
  455. )
  456. )
  457. (exception.invalid_request
  458. (contact "")
  459. (details "Your request could not be processed. $(exception.reason)")
  460. (format "")
  461. (help "This could be caused by a misconfiguration, or possibly a malformed request.")
  462. (summary "Request Error")
  463. (http
  464. (code "400")
  465. (contact "")
  466. (details "")
  467. (format "")
  468. (help "")
  469. (summary "")
  470. )
  471. )
  472. (exception.invalid_response
  473. (contact "")
  474. (details "Server's response could not be processed. $(exception.reason)")
  475. (format "")
  476. (help "This could be caused by a malformed response, or possibly a misconfiguration.")
  477. (summary "Response Error")
  478. (http
  479. (code "502")
  480. (contact "")
  481. (details "")
  482. (format "")
  483. (help "")
  484. (summary "")
  485. )
  486. )
  487. (exception.license_expired
  488. (contact "")
  489. (details "A license has expired on the Proxy, and your request is not permitted: $(quot)$(exception.reason)$(quot)")
  490. (format "")
  491. (help "A new license must be obtained.")
  492. (summary "Access Denied")
  493. (http
  494. (code "403")
  495. (contact "")
  496. (details "")
  497. (format "")
  498. (help "")
  499. (summary "")
  500. )
  501. )
  502. (exception.license_exceeded
  503. (contact "")
  504. (details "A license has been exceeded on the Proxy, and your request is not permitted: $(quot)$(exception.reason)$(quot)")
  505. (format "")
  506. (help "")
  507. (summary "Access Denied")
  508. (http
  509. (code "403")
  510. (contact "")
  511. (details "")
  512. (format "")
  513. (help "")
  514. (summary "")
  515. )
  516. )
  517. (exception.method_denied
  518. (contact "")
  519. (details "The method used $(quot)$(method)$(quot) is not permitted: $(quot)$(exception.reason)$(quot)")
  520. (format "")
  521. (help "")
  522. (summary "Access Denied")
  523. (http
  524. (code "403")
  525. (contact "")
  526. (details "")
  527. (format "")
  528. (help "")
  529. (summary "")
  530. )
  531. )
  532. (exception.not_implemented
  533. (contact "")
  534. (details "Your requested operation: $(quot)$(method) $(url.host)$(quot) is not supported.")
  535. (format "")
  536. (help "")
  537. (summary "Access Denied")
  538. (http
  539. (code "501")
  540. (contact "")
  541. (details "")
  542. (format "")
  543. (help "")
  544. (summary "")
  545. )
  546. )
  547. (exception.policy_denied
  548. (contact "")
  549. (details "Your system policy has denied the requested action.")
  550. (format "")
  551. (help "")
  552. (summary "Access Denied")
  553. (http
  554. (code "403")
  555. (contact "")
  556. (details "Your system policy has denied access to the requested URL.")
  557. (format "")
  558. (help "")
  559. (summary "")
  560. )
  561. )
  562. (exception.policy_redirect
  563. (contact "")
  564. (details <<--3ed3acdf.0--
  565. Click <a href="$(redirect.location)">here</a> if you are not automatically redirected.--3ed3acdf.0--
  566. )
  567. (format "")
  568. (help "")
  569. (summary "Redirect")
  570. (http
  571. (code "302")
  572. (contact "")
  573. (details "")
  574. (format "")
  575. (help "")
  576. (summary "")
  577. )
  578. )
  579. (exception.policy_request_redirect
  580. (contact "")
  581. (details <<--3ed3acdf.0--
  582. Click <a href="$(redirect.location)">here</a> if you are not automatically redirected.--3ed3acdf.0--
  583. )
  584. (format "")
  585. (help "")
  586. (summary "Redirect")
  587. (http
  588. (code "302")
  589. (contact "")
  590. (details "")
  591. (format "")
  592. (help "")
  593. (summary "")
  594. )
  595. )
  596. (exception.radius_splash_page
  597. (contact "")
  598. (details "Click the the refresh button on your browser to proceed to your requested site. Your user/session ID is $(x-radius-splash-username)/$(x-radius-splash-session-id)")
  599. (format "")
  600. (help "")
  601. (summary "Authorized")
  602. (http
  603. (code "200")
  604. (contact "")
  605. (details "")
  606. (format "")
  607. (help "")
  608. (summary "")
  609. )
  610. )
  611. (exception.refresh
  612. (contact "")
  613. (details <<--3ed3acdf.0--
  614. Click <a href="$(redirect.location)">here</a> if you are not automatically redirected.--3ed3acdf.0--
  615. )
  616. (format "")
  617. (help "")
  618. (summary "Authorized")
  619. (http
  620. (code "200")
  621. (contact "")
  622. (details "")
  623. (format "")
  624. (help "")
  625. (summary "")
  626. )
  627. )
  628. (exception.silent_denied
  629. (contact "")
  630. (details "$(empty)")
  631. (format "$(empty)")
  632. (help "")
  633. (summary "")
  634. (http
  635. (code "403")
  636. (contact "")
  637. (details "$(empty)")
  638. (format "$(empty)")
  639. (help "")
  640. (summary "")
  641. )
  642. )
  643. (exception.ssl_domain_invalid
  644. (contact "")
  645. (details "Your request contacted a host which presented a certificate with a Common Name that did not match the domain requested.")
  646. (format "")
  647. (help "This is typically caused by a Web Site presenting an incorrect or invalid certificate, but could be because of a configuration error.")
  648. (summary "SSL Certificate Hostname Mismatch")
  649. (http
  650. (code "409")
  651. (contact "")
  652. (details "")
  653. (format "")
  654. (help "")
  655. (summary "")
  656. )
  657. )
  658. (exception.ssl_failed
  659. (contact "")
  660. (details "A secure SSL session could not be established with the Web Site: $(quot)$(ssl_failure_reason)$(quot).")
  661. (format "")
  662. (help "This is typically caused by a Web Site that is not configured to accept SSL connections, or the Proxy does not trust the Web Site's certificate authority, or else the Proxy does not support client certificate authentication requests from the origin server.")
  663. (summary "SSL Error")
  664. (http
  665. (code "503")
  666. (contact "")
  667. (details "")
  668. (format "")
  669. (help "")
  670. (summary "")
  671. )
  672. )
  673. (exception.tcp_error
  674. (contact "")
  675. (details "A communication error occurred: $(quot)$(server_connection.socket_errno)$(quot)")
  676. (format "")
  677. (help "The Web Server may be down, too busy, or experiencing other problems preventing it from responding to requests. You may wish to try again at a later time.")
  678. (summary "Network Error")
  679. (http
  680. (code "503")
  681. (contact "")
  682. (details "")
  683. (format "")
  684. (help "")
  685. (summary "")
  686. )
  687. )
  688. (exception.unsupported_protocol
  689. (contact "")
  690. (details "Your request used a protocol that is not currently supported.")
  691. (format "")
  692. (help "")
  693. (summary "Request Error")
  694. (http
  695. (code "406")
  696. (contact "")
  697. (details "")
  698. (format "")
  699. (help "")
  700. (summary "")
  701. )
  702. )
  703. (exception.unsupported_encoding
  704. (contact "")
  705. (details "Your requested content encoding is not supported.")
  706. (format "")
  707. (help "This could be caused by a misconfiguration, or an expired compression license on the Proxy.")
  708. (summary "Unsupported Encoding")
  709. (http
  710. (code "406")
  711. (contact "")
  712. (details "")
  713. (format "")
  714. (help "")
  715. (summary "")
  716. )
  717. )
  718. (exception.transformation_error
  719. (contact "")
  720. (details "Proxy cannot apply content transformation.")
  721. (format "")
  722. (help "This could be caused by a misconfiguration, or possibly a response with an unknown content encoding.")
  723. (summary "Content Transformation Error")
  724. (http
  725. (code "403")
  726. (contact "")
  727. (details "")
  728. (format "")
  729. (help "")
  730. (summary "")
  731. )
  732. )
  733. (exception.invalid_auth_form
  734. (contact "")
  735. (details "The submitted authentication form is invalid. The form data must contain the username, password and valid original request information.")
  736. (format "")
  737. (help "")
  738. (summary "Invalid Authentication Form")
  739. (http
  740. (code "403")
  741. (contact "")
  742. (details "")
  743. (format "")
  744. (help "")
  745. (summary "")
  746. )
  747. )
  748. (exception.authentication_mode_not_supported
  749. (contact "")
  750. (details "The configured authentication mode is not supported for the current request.")
  751. (format "")
  752. (help "")
  753. (summary "Authentication Mode Not Supported")
  754. (http
  755. (code "403")
  756. (contact "")
  757. (details "")
  758. (format "")
  759. (help "")
  760. (summary "")
  761. )
  762. )
  763. (exception.redirected_stored_requests_not_supported
  764. (contact "")
  765. (details "The origin server returned a redirect for your request. The ProxySG is configured to not allow stored requests to be redirected.")
  766. (format "")
  767. (help "")
  768. (summary "Stored Request Redirects Not Supported")
  769. (http
  770. (code "403")
  771. (contact "")
  772. (details "")
  773. (format "")
  774. (help "")
  775. (summary "")
  776. )
  777. )
  778. (exception.client_failure_limit_exceeded
  779. (contact "")
  780. (details "Too many requests from your ip address ($(client.address)) have failed.")
  781. (format "")
  782. (help "Please verify that the server you are attempting to contact is correct. Continued failures will result in a complete revocation of access.")
  783. (summary "Client Failure Limit Exceeded")
  784. (http
  785. (code "503")
  786. (contact "")
  787. (details "")
  788. (format "")
  789. (help "")
  790. (summary "")
  791. )
  792. )
  793. (exception.server_request_limit_exceeded
  794. (contact "")
  795. (details "Too many requests are in progress to $(url.host).")
  796. (format "")
  797. (help "Too many simultaneous requests are outstanding to this origin server. The server may be under attack. Please try your request again later.")
  798. (summary "Server Request Limit Exceeded")
  799. (http
  800. (code "503")
  801. (contact "")
  802. (details "")
  803. (format "")
  804. (help "")
  805. (summary "")
  806. )
  807. )
  808. (exception.notify
  809. (format "CPL users: use the third argument of 'exception()' to place your message here.")
  810. (http
  811. (code "200")
  812. )
  813. )
  814. (exception.notify_missing_cookie
  815. (summary "Notify Failed--Cookie Not Sent")
  816. (details "You could not be redirected to your originally requested web page because your web browser has failed to send a required cookie.")
  817. (help "Your web browser appears to be improperly configured. It must not be configured to block all cookies.")
  818. (http
  819. (code "403")
  820. )
  821. )
  822.  
  823. (exception.ssl_server_cert_expired
  824. (contact "")
  825. (details "Your request contacted a host which presented an expired or Invalid certificate")
  826. (format "")
  827. (help "This is typically caused by a Web Site presenting an incorrect or invalid certificate, but could be because of a configuration error.")
  828. (summary "Expired SSL Server Certificate")
  829. (http
  830. (code "503")
  831. (contact "")
  832. (details "")
  833. (format "")
  834. (help "")
  835. (summary "")
  836. )
  837. )
  838.  
  839. (exception.ssl_server_cert_ocsp_check_failed
  840. (contact "")
  841. (details "OCSP check for server certificate failed due to error: $(quot)$(x-rs-ocsp-error)$(quot)")
  842. (format "")
  843. (help "An error occurred while checking revocation status of the certificate. Contact the administrator for further assistance")
  844. (summary "OCSP Error On Server Certificate")
  845. (http
  846. (code "503")
  847. (contact "")
  848. (details "")
  849. (format "")
  850. (help "")
  851. (summary "")
  852. )
  853. )
  854.  
  855. (exception.ssl_server_cert_ocsp_status_unknown
  856. (contact "")
  857. (details "OCSP check returned unknown status for server certificate.")
  858. (format "")
  859. (help "An error occurred while checking revocation status of the certificate. Contact the administrator for further assistance.")
  860. (summary "Unknown OCSP Status of Server Certificate")
  861. (http
  862. (code "503")
  863. (contact "")
  864. (details "")
  865. (format "")
  866. (help "")
  867. (summary "")
  868. )
  869. )
  870.  
  871. (exception.ssl_server_cert_untrusted_issuer
  872. (contact "")
  873. (details "Your request contacted a host which presented a certificate signed by an untrusted issuer.")
  874. (format "")
  875. (help "This is typically caused by a Web Site presenting an incorrect or invalid certificate, but could be because of a configuration error.")
  876. (summary "Untrusted SSL Server Certificate")
  877. (http
  878. (code "503")
  879. (contact "")
  880. (details "")
  881. (format "")
  882. (help "")
  883. (summary "")
  884. )
  885. )
  886.  
  887. (exception.ssl_server_cert_revoked
  888. (contact "")
  889. (details "Your request contacted a host which presented a revoked certificate.")
  890. (format "")
  891. (help "This is typically caused by a Web Site presenting a revoked certificate, but could be because of a configuration error.")
  892. (summary "Revoked SSL Server Certificate")
  893. (http
  894. (code "503")
  895. (contact "")
  896. (details "")
  897. (format "")
  898. (help "")
  899. (summary "")
  900. )
  901. )
  902.  
  903. (exception.ssl_client_cert_expired
  904. (contact "")
  905. (details "The client presented a certificate with invalid dates.")
  906. (format "")
  907. (help "This is typically caused by a Web Site presenting an incorrect or invalid certificate, but could be because of a configuration error.")
  908. (summary "Expired SSL Client Certificate")
  909. (http
  910. (code "503")
  911. (contact "")
  912. (details "")
  913. (format "")
  914. (help "")
  915. (summary "")
  916. )
  917. )
  918.  
  919. (exception.ssl_client_cert_ocsp_check_failed
  920. (contact "")
  921. (details "OCSP check for client certificate failed due to error: $(quot)$(x-cs-ocsp-error)$(quot)")
  922. (format "")
  923. (help "An error occurred while checking revocation status of the certificate. Contact the administrator for further assistance.")
  924. (summary "OCSP Error On Client Certificate")
  925. (http
  926. (code "503")
  927. (contact "")
  928. (details "")
  929. (format "")
  930. (help "")
  931. (summary "")
  932. )
  933. )
  934.  
  935. (exception.ssl_client_cert_ocsp_status_unknown
  936. (contact "")
  937. (details "OCSP check returned unknown status for client certificate.")
  938. (format "")
  939. (help "An error occurred while checking revocation status of the certificate. Contact the administrator for further assistance.")
  940. (summary "Unknown OCSP Status of Client Certificate")
  941. (http
  942. (code "503")
  943. (contact "")
  944. (details "")
  945. (format "")
  946. (help "")
  947. (summary "")
  948. )
  949. )
  950.  
  951. (exception.ssl_client_cert_untrusted_issuer
  952. (contact "")
  953. (details "The client presented an untrusted certificate.")
  954. (format "")
  955. (help "This is typically caused by a Web Site presenting an incorrect or invalid certificate, but could be because of a configuration error.")
  956. (summary "Untrusted SSL Client Certificate")
  957. (http
  958. (code "503")
  959. (contact "")
  960. (details "")
  961. (format "")
  962. (help "")
  963. (summary "")
  964. )
  965. )
  966.  
  967. (exception.ssl_client_cert_revoked
  968. (contact "")
  969. (details "The client presented a revoked certificate.")
  970. (format "")
  971. (help "This is typically caused by the client presenting a revoked certificate, but could be because of a configuration error.")
  972. (summary "Revoked SSL Client Certificate")
  973. (http
  974. (code "503")
  975. (contact "")
  976. (details "")
  977. (format "")
  978. (help "")
  979. (summary "")
  980. )
  981. )
  982.  
  983. (exception.bad_credentials
  984. (summary "Invalid username/password")
  985. (details <<END
  986. <p>Your username or password were sent using an invalid/unrecognized format.</p>
  987. <p><i>Please close your browser window.</i></p>
  988. <p>Then, either contact technical support,
  989. or try again using a different username/password combination.</p>
  990. <p><small>
  991. There are two possible causes:
  992. <ul>
  993. <li>Your username or password contains non-ASCII characters,
  994. and the ProxySG is not configured to use the same authentication character
  995. encoding as is being used by your web browser.
  996. <li>Your username or password is too long.
  997. (The limits for the username and password are 64 bytes each,
  998. after being translated to UTF-8.)
  999. </ul>
  1000. </small></p>
  1001. END
  1002. )
  1003. (http
  1004. (code "400")
  1005. )
  1006. )
  1007.  
  1008. (exception.server_authentication_error
  1009. (summary "Internal error")
  1010. (details <<END
  1011. The ProxySG encountered an internal error
  1012. while preparing to send your username/password upstream: $(quot)$(exception.last_error)$(quot)
  1013. END
  1014. )
  1015. (help <<END
  1016. This error can only occur when the ProxySG "server authentication" feature is used.
  1017. END
  1018. )
  1019. (http
  1020. (code "500")
  1021. )
  1022. )
  1023. (exception.virus_detected
  1024. (contact "")
  1025. (details "Content contained $(quot)$(x-virus-id)$(quot) virus. Details:$(crlf)$(x-virus-details)")
  1026. (format "")
  1027. (help "")
  1028. (summary "Virus was detected in the content")
  1029. (http
  1030. (code "200")
  1031. (contact "")
  1032. (details "")
  1033. (format "")
  1034. (help "")
  1035. (summary "")
  1036. )
  1037. )
  1038. (exception.authentication_log_out
  1039. (contact "")
  1040. (details <<--3ed3acdf.0--
  1041. Click <a href="$(redirect.location)">here</a> to login.--3ed3acdf.0--
  1042. )
  1043. (format "")
  1044. (help "")
  1045. (summary "Logged out")
  1046. (http
  1047. (code "200")
  1048. (contact "")
  1049. (details "")
  1050. (format <<--3ed3acdf.0--
  1051. <HTML><HEAD>
  1052. <TITLE>$(exception.summary)</TITLE>
  1053. <SCRIPT LANGUAGE="JavaScript">
  1054. <!--
  1055. if (document.execCommand)
  1056. {
  1057. if (document.execCommand("ClearAuthenticationCache", false)) {
  1058. document.cookie = 'BCSI-AC-$(appliance.identifier)=; path=/';
  1059. }
  1060. }
  1061. //-->
  1062. </SCRIPT>
  1063. </HEAD>
  1064. <BODY>
  1065. <FONT face="Helvetica">
  1066. <big><strong>$(exception.company_name)</strong></big><BR>
  1067. </FONT>
  1068. <blockquote>
  1069. <TABLE border=0 cellPadding=1 width="80%">
  1070. <TR><TD>
  1071. <FONT face="Helvetica">
  1072. <big>$(exception.summary) ($(exception.id))</big>
  1073. <BR>
  1074. <BR>
  1075. </FONT>
  1076. </TD></TR>
  1077. <TR><TD>
  1078. <FONT face="Helvetica">
  1079. $(exception.details)
  1080. </FONT>
  1081. </TD></TR> You will be redirected to a federated SAML server to proceed with authentication.
  1082. Click the Continue button to proceed.
  1083.  
  1084. <TR><TD>
  1085. <FONT face="Helvetica">
  1086. $(exception.help)
  1087. </FONT>
  1088. </TD></TR>
  1089. <TR><TD>
  1090. <FONT face="Helvetica" SIZE=2>
  1091. <BR>
  1092. $(exception.contact)
  1093. </FONT>
  1094. </TD></TR>
  1095. </TABLE>
  1096. </blockquote>
  1097. </FONT>
  1098. </BODY></HTML>
  1099. --3ed3acdf.0--
  1100. )
  1101. (help "")
  1102. (summary "")
  1103. )
  1104. )
  1105. (exception.saml_post
  1106. (contact "")
  1107. (summary "SAML POST")
  1108. (details <<END
  1109. You will be redirected to a federated SAML server to proceed with authentication.
  1110. Click the Continue button to proceed.
  1111. END
  1112. )
  1113. (format "")
  1114. (help "")
  1115. (http
  1116. (code "200")
  1117. (contact "")
  1118. (details "")
  1119. (format <<END
  1120. <html>
  1121. <body onload="document.forms[0].submit()">
  1122. <noscript>
  1123. <p>$(exception.details)</p>
  1124. </noscript>
  1125. <form action="$(saml.endpoint)" method="post">
  1126. <input type="hidden" name="RelayState" value="$(saml.relaystate)"/>
  1127. <input type="hidden" name="SAMLRequest" value="$(saml.postdata)"/>
  1128. <noscript>
  1129. <input type="submit" value="Continue"/>
  1130. </noscript>
  1131. </form>
  1132. </body>
  1133. </html>
  1134. END
  1135. )
  1136. (help "")
  1137. (summary "")
  1138. )
  1139. )
  1140. (exception.invalid_saml_post
  1141. (contact "")
  1142. (details "A request was received at the SAML POST endpoint that did not contain valid SAML POST data. If you reached here by pressing the browser's back button, please enter the target URL in the address bar.")
  1143. (format "")
  1144. (help "")
  1145. (summary "Invalid SAML POST")
  1146. (http
  1147. (code "403")
  1148. (contact "")
  1149. (details "")
  1150. (format "")
  1151. (help "")
  1152. (summary "")
  1153. )
  1154. )
  1155. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement