This file is indexed.

/usr/share/wordpress/wp-content/plugins/openid/f/openid.js is in wordpress-openid 3.3.4-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
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/* yuicompress openid.js -o openid.min.js
 * @see http://developer.yahoo.com/yui/compressor/
 */

jQuery(function() {
	jQuery('#openid_system_status').hide();

	jQuery('#openid_status_link').click( function() {
		jQuery('#openid_system_status').toggle();
		return false;
	});
});

function stylize_profilelink() {
	jQuery("#commentform a[href$='profile.php']").addClass('openid_link');
}

/**
 * Properly integrate the 'Authenticate with OpenID' checkbox into the comment form.
 * This will move the checkbox below the Website field, and add an AJAX hook to 
 * show/hide the checkbox depending on whether the given URL is a valid OpenID.
 */
function add_openid_to_comment_form(wp_url, nonce) {
	var openid_nonce = nonce;

	var openid_comment = jQuery('#openid_comment');
	var openid_checkbox = jQuery('#login_with_openid');
	var url = jQuery('#url');

	jQuery('label[for="url"],#url').filter(':last').after(openid_comment.hide());

	if ( url.val() ) check_openid( url );
	url.blur( function() { check_openid(jQuery(this)); } );


	/**
	 * Make AJAX call to WordPress to check if the given URL is a valid OpenID.
	 * AJAX response should be a JSON structure with two values:
	 *   'valid' - (boolean) whether or not the given URL is a valid OpenID
	 *   'nonce' - (string) new nonce to use for next AJAX call
	 */
	function check_openid( url ) {
		url.addClass('openid_loading');

		if ( url.val() == '' ) {
			openid_checkbox.attr('checked', '');
			openid_comment.slideUp();
			return;
		} 

		jQuery.getJSON(wp_url + '?openid=ajax', {url: url.val(), _wpnonce: openid_nonce}, function(data, textStatus) {
			url.removeClass('openid_loading');
			if ( data.valid ) {
				openid_checkbox.attr('checked', 'checked');
				openid_comment.slideDown();
			} else {
				openid_checkbox.attr('checked', '');
				openid_comment.slideUp();
			}
			openid_nonce = data.nonce;
		});
	}
}