This file is indexed.

/usr/share/doc/php-text-captcha/Text_CAPTCHA/examples/CAPTCHA_Word_test.php is in php-text-captcha 0.4.3-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

1
2
3
4
5
6
7
<?php
     require_once 'Text/CAPTCHA.php';

     $c = Text_CAPTCHA::factory("Word");
     $c->init(array('length' => 4, 'locale' => 'de'));
     echo $c->getCAPTCHA();
?>