This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository www.
View the commit online.
commit d1ec13138fee0ad98b8fb56adc715eca51731e25
Author: Carsten Haitzler (Rasterman) <ras...@rasterman.com>
AuthorDate: Wed Jun 18 11:31:42 2025 +0100
add log to see who follows this link
---
public_html/aifollowers.php | 17 +++++++++++++++++
1 file changed, 17 insertions(+)
diff --git a/public_html/aifollowers.php b/public_html/aifollowers.php
new file mode 100644
index 00000000..b75b2ea8
--- /dev/null
+++ b/public_html/aifollowers.php
@@ -0,0 +1,17 @@
+<?php
+function get_ip() {
+ if (getenv("REMOTE_ADDR")) $ip = getenv("REMOTE_ADDR");
+ else $ip = "UNKNOWN";
+ return $ip;
+}
+function day() { return date("y.m.d"); }
+ $path = $_SERVER["DOCUMENT_ROOT"] . "/www-ai-scrape-access-" . day() . ".txt";
+ $data = "" . "\n";
+ $f = fopen($path, 'a');
+ if (!$f) $f = fopen($path, 'w');
+ if ($f) {
+ fwrite($f, $data);
+ fclose($f);
+ }
+?>
+<html><body><p>Hello there. You should not have come here. Begone!</p></body></html>
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.