Linux ns8.secondary29.go.th 2.6.32-754.28.1.el6.x86_64 #1 SMP Wed Mar 11 18:38:45 UTC 2020 x86_64
Apache/2.2.15 (CentOS)
: 122.154.134.11 | : 122.154.134.9
Cant Read [ /etc/named.conf ]
5.6.40
apache
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
share /
openscap /
xsl /
[ HOME SHELL ]
Name
Size
Permission
Action
legacy-fix.xsl
9.23
KB
-rw-r--r--
legacy-fixtpl-bash.xml
1.57
KB
-rw-r--r--
legacy-xccdf-share.xsl
10.84
KB
-rw-r--r--
oval-results-report.xsl
30.85
KB
-rw-r--r--
xccdf-branding.xsl
4.22
KB
-rw-r--r--
xccdf-guide-impl.xsl
21.36
KB
-rw-r--r--
xccdf-guide.xsl
3.13
KB
-rw-r--r--
xccdf-report-impl.xsl
51.03
KB
-rw-r--r--
xccdf-report-oval-details.xsl
14.81
KB
-rw-r--r--
xccdf-report.xsl
5.6
KB
-rw-r--r--
xccdf-resources.xsl
220.31
KB
-rw-r--r--
xccdf-share.xsl
19.75
KB
-rw-r--r--
xccdf_1.1_remove_dangling_sub....
1.68
KB
-rw-r--r--
xccdf_1.1_to_1.2.xsl
11.7
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : xccdf-report.xsl
<?xml version="1.0" encoding="utf-8" ?> <!-- Copyright 2010-2014 Red Hat Inc., Durham, North Carolina. All Rights Reserved. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Authors: Martin Preisler <mpreisle@redhat.com> Lukas Kuklinek <lkuklinek@redhat.com> --> <!-- This stylesheet is the entry point for HTML report generator. The goal is to negotiate the right namespace and find the XPaths for TestResult and Benchmark. All the logic to do that should be in this stylesheet and this stylesheet only. --> <xsl:stylesheet version="1.1" xmlns="http://www.w3.org/1999/xhtml" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:cdf="http://checklists.nist.gov/xccdf/1.2" xmlns:exsl="http://exslt.org/common" xmlns:s="http://open-scap.org/" exclude-result-prefixes="xsl cdf s exsl"> <xsl:include href="xccdf-report-impl.xsl" /> <!-- parameters --> <xsl:param name="testresult_id"/> <xsl:param name="benchmark_id"/> <!-- OVAL and SCE result parameters --> <xsl:param name='pwd'/> <xsl:param name='oval-template'/> <xsl:param name='sce-template'/> <xsl:variable name='oval-tmpl'> <xsl:choose> <xsl:when test='not($oval-template)' /> <xsl:when test='substring($oval-template, 1, 1) = "/"'><xsl:value-of select='$oval-template'/></xsl:when> <xsl:otherwise><xsl:value-of select='concat($pwd, "/", $oval-template)'/></xsl:otherwise> </xsl:choose> </xsl:variable> <xsl:variable name='sce-tmpl'> <xsl:choose> <xsl:when test='not($sce-template)' /> <xsl:when test='substring($sce-template, 1, 1) = "/"'><xsl:value-of select='$sce-template'/></xsl:when> <xsl:otherwise><xsl:value-of select='concat($pwd, "/", $sce-template)'/></xsl:otherwise> </xsl:choose> </xsl:variable> <!-- keys --> <xsl:key name="items" match="cdf:Group|cdf:Rule|cdf:Value" use="@id"/> <xsl:key name="profiles" match="cdf:Profile" use="@id"/> <!-- main(..) --> <xsl:template match="/"> <xsl:variable name='end_times'> <s:times> <xsl:for-each select='//cdf:TestResult/@end-time'> <xsl:sort order='descending'/> <s:t t='{.}'/> </xsl:for-each> </s:times> </xsl:variable> <xsl:variable name="last_test_time" select="exsl:node-set($end_times)/s:times/s:t[1]/@t"/> <xsl:variable name="final_result_id"> <xsl:choose> <xsl:when test="$testresult_id"> <xsl:value-of select="$testresult_id"/> </xsl:when> <xsl:otherwise> <xsl:value-of select="//cdf:TestResult[@end-time=$last_test_time][last()]/@id"/> </xsl:otherwise> </xsl:choose> </xsl:variable> <xsl:variable name="final_benchmark_id"> <xsl:choose> <xsl:when test="$benchmark_id"> <xsl:value-of select="$benchmark_id"/> </xsl:when> <xsl:otherwise> <xsl:choose> <xsl:when test="//cdf:TestResult[@id=$final_result_id][last()]/cdf:benchmark/@id"> <xsl:value-of select="//cdf:TestResult[@id=$final_result_id][last()]/cdf:benchmark/@id"/> </xsl:when> <xsl:otherwise> <xsl:value-of select="//cdf:Benchmark[1]/@id"/> </xsl:otherwise> </xsl:choose> </xsl:otherwise> </xsl:choose> </xsl:variable> <xsl:variable name="testresult" select="//cdf:TestResult[@id=$final_result_id]"/> <xsl:variable name="benchmark" select="//cdf:Benchmark[@id=$final_benchmark_id]"/> <xsl:if test="not($testresult)"> <xsl:choose> <xsl:when test="$testresult_id"> <xsl:message terminate="yes">No such cdf:TestResult exists (with @id = "<xsl:value-of select="$testresult_id"/>")</xsl:message> </xsl:when> <xsl:otherwise> <xsl:message terminate="yes">No cdf:TestResult ID specified and no suitable candidate was autodetected.</xsl:message> </xsl:otherwise> </xsl:choose> </xsl:if> <xsl:if test="not($benchmark)"> <xsl:choose> <xsl:when test="$benchmark_id"> <xsl:message terminate="yes">No such cdf:Benchmark exists (with @id = "<xsl:value-of select="$benchmark_id"/>")</xsl:message> </xsl:when> <xsl:otherwise> <xsl:message terminate="yes">No cdf:Benchmark ID specified and no suitable candidate has been autodetected.</xsl:message> </xsl:otherwise> </xsl:choose> </xsl:if> <xsl:if test="$verbosity"> <xsl:message>TestResult ID: <xsl:value-of select="$final_result_id"/></xsl:message> <xsl:message>Benchmark ID: <xsl:value-of select="$final_benchmark_id"/></xsl:message> </xsl:if> <xsl:call-template name="generate-report"> <xsl:with-param name="testresult" select="$testresult"/> <xsl:with-param name="benchmark" select="$benchmark"/> </xsl:call-template> </xsl:template> </xsl:stylesheet>
Close