This file is indexed.

/usr/lib/slimrat/Clipboard/Win32.pm is in slimrat 1.0-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
package Clipboard::Win32;
use Spiffy -Base;
use Win32::Clipboard;
our $board = Win32::Clipboard();
sub copy {
    $board->Set($_[0]);
}
sub paste {
    $board->Get();
}