3 # NOTE: you need to run this on a PVE host, or modify the source to
4 # provide username/password/hostname from somewhere else.
9 use PVE::APIClient::LWP;
11 use PVE::AccessControl;
15 # normally you use username/password,
16 # but we can simply create a ticket and CRSF token if we are root
17 # running on a pve host
19 my $hostname = PVE::INotify::read_file("hostname");
21 my $ticket = PVE::AccessControl::assemble_ticket('root@pam');
22 my $csrftoken = PVE::AccessControl::assemble_csrf_prevention_token('root@pam');
24 sub get_local_cert_fingerprint {
27 my $cert_path = "/etc/pve/nodes/$node/pve-ssl.pem";
28 my $custom_cert_path = "/etc/pve/nodes/$node/pveproxy-ssl.pem";
30 $cert_path = $custom_cert_path if -f $custom_cert_path;
32 my $bio = Net::SSLeay::BIO_new_file($cert_path, 'r');
33 my $cert = Net::SSLeay::PEM_read_bio_X509($bio);
34 Net::SSLeay::BIO_free($bio);
36 my $fp = Net::SSLeay::X509_get_fingerprint($cert, 'sha256');
37 die "got empty fingerprint" if !defined($fp) || ($fp eq '');
42 my $local_fingerprint = get_local_cert_fingerprint($hostname);
44 my $conn = PVE::APIClient::LWP->new(
45 #username => 'root@pam',
46 #password => 'yourpassword',
48 csrftoken => $csrftoken,
50 # add local hosts cert fingerprint
51 cached_fingerprints => {
52 $local_fingerprint => 1,
55 my $res = $conn->get("api2/json/access/domains", {});
56 print to_json($res, { pretty => 1, canonical => 1});