HEX
Server: Apache
System: Linux pdx1-shared-a1-38 6.6.104-grsec-jammy+ #3 SMP Tue Sep 16 00:28:11 UTC 2025 x86_64
User: mmickelson (3396398)
PHP: 8.1.31
Disabled: NONE
Upload Files
File: /home/mmickelson/church.martyknows.com/wp-content/plugins/taskfreak/ajax-npage.php
<?php 

if (isset($_GET['target']) && preg_match('/^(.*)\?.*npg=(\d+)/', $_GET['target'], $m)) {
	$path = $m[1];
	$npg = $m[2];
} else {
	echo "ERROR: invalid target parameter";
	exit();
}

if (!headers_sent()) {
	setcookie('tfk_page_size', $npg, null, $path);
	echo "OK";
} else {
	echo "ERROR: cannot set cookie, headers already sent !";
}

?>