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 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636
|
package File::KDBX::Entry;
# ABSTRACT: A KDBX database entry
use warnings;
use strict;
use Crypt::Misc 0.049 qw(decode_b64 encode_b32r);
use Devel::GlobalDestruction;
use Encode qw(encode);
use File::KDBX::Constants qw(:history :icon);
use File::KDBX::Error;
use File::KDBX::Util qw(:assert :class :coercion :erase :function :uri generate_uuid load_optional);
use Hash::Util::FieldHash;
use List::Util qw(any first sum0);
use Ref::Util qw(is_coderef is_hashref is_plain_hashref);
use Scalar::Util qw(blessed looks_like_number);
use Storable qw(dclone);
use Time::Piece 1.33;
use boolean;
use namespace::clean;
extends 'File::KDBX::Object';
our $VERSION = '0.906'; # VERSION
my $PLACEHOLDER_MAX_DEPTH = 10;
my %PLACEHOLDERS;
my %STANDARD_STRINGS = map { $_ => 1 } qw(Title UserName Password URL Notes);
sub uuid {
my $self = shift;
if (@_ || !defined $self->{uuid}) {
my %args = @_ % 2 == 1 ? (uuid => shift, @_) : @_;
my $old_uuid = $self->{uuid};
my $uuid = $self->{uuid} = delete $args{uuid} // generate_uuid;
for my $entry (@{$self->history}) {
$entry->{uuid} = $uuid;
}
$self->_signal('uuid.changed', $uuid, $old_uuid) if defined $old_uuid && $self->is_current;
}
$self->{uuid};
}
# has uuid => sub { generate_uuid(printable => 1) };
has icon_id => ICON_PASSWORD, coerce => \&to_icon_constant;
has custom_icon_uuid => undef, coerce => \&to_uuid;
has foreground_color => '', coerce => \&to_string;
has background_color => '', coerce => \&to_string;
has override_url => '', coerce => \&to_string;
has tags => '', coerce => \&to_string;
has auto_type => {};
has previous_parent_group => undef, coerce => \&to_uuid;
has quality_check => true, coerce => \&to_bool;
has strings => {};
has binaries => {};
has times => {};
# has custom_data => {};
# has history => [];
has last_modification_time => sub { gmtime }, store => 'times', coerce => \&to_time;
has creation_time => sub { gmtime }, store => 'times', coerce => \&to_time;
has last_access_time => sub { gmtime }, store => 'times', coerce => \&to_time;
has expiry_time => sub { gmtime }, store => 'times', coerce => \&to_time;
has expires => false, store => 'times', coerce => \&to_bool;
has usage_count => 0, store => 'times', coerce => \&to_number;
has location_changed => sub { gmtime }, store => 'times', coerce => \&to_time;
# has 'auto_type.auto_type_enabled' => true, coerce => \&to_bool;
has 'auto_type_obfuscation' => 0, path => 'auto_type.data_transfer_obfuscation',
coerce => \&to_number;
has 'auto_type_default_sequence' => '{USERNAME}{TAB}{PASSWORD}{ENTER}',
path => 'auto_type.default_sequence', coerce => \&to_string;
has 'auto_type_associations' => [], path => 'auto_type.associations';
my %ATTRS_STRINGS = (
title => 'Title',
username => 'UserName',
password => 'Password',
url => 'URL',
notes => 'Notes',
);
while (my ($attr, $string_key) = each %ATTRS_STRINGS) {
no strict 'refs'; ## no critic (ProhibitNoStrict)
*{$attr} = sub { shift->string_value($string_key, @_) };
*{"expand_${attr}"} = sub { shift->expand_string_value($string_key, @_) };
}
my @ATTRS = qw(uuid custom_data history auto_type_enabled);
sub _set_nonlazy_attributes {
my $self = shift;
$self->$_ for @ATTRS, keys %ATTRS_STRINGS, list_attributes(ref $self);
}
sub init {
my $self = shift;
my %args = @_;
while (my ($key, $val) = each %args) {
if (my $method = $self->can($key)) {
$self->$method($val);
}
else {
$self->string($key => $val);
}
}
return $self;
}
##############################################################################
sub string {
my $self = shift;
my %args = @_ == 2 ? (key => shift, value => shift)
: @_ % 2 == 1 ? (key => shift, @_) : @_;
if (!defined $args{key} && !defined $args{value}) {
my %standard = (value => 1, protect => 1);
my @other_keys = grep { !$standard{$_} } keys %args;
if (@other_keys == 1) {
my $key = $args{key} = $other_keys[0];
$args{value} = delete $args{$key};
}
}
my $key = delete $args{key} or throw 'Must provide a string key to access';
return $self->{strings}{$key} = $args{value} if is_plain_hashref($args{value});
# Auto-vivify the standard strings.
if (!exists $self->{strings}{$key} && $STANDARD_STRINGS{$key}) {
$args{value} //= '';
$args{protect} //= true if $self->_protect($key);
}
while (my ($field, $value) = each %args) {
$self->{strings}{$key}{$field} = $value;
}
return $self->{strings}{$key};
}
### Get whether or not a standard string is configured to be protected
sub _protect {
my $self = shift;
my $key = shift;
return false if !$STANDARD_STRINGS{$key};
if (my $kdbx = eval { $self->kdbx }) {
my $protect = $kdbx->memory_protection($key);
return $protect if defined $protect;
}
return $key eq 'Password';
}
sub string_value {
my $self = shift;
my $string = $self->string(@_) // return undef;
return $string->{value};
}
sub _expand_placeholder {
my $self = shift;
my $placeholder = shift;
my $arg = shift;
require File::KDBX;
my $placeholder_key = $placeholder;
if (defined $arg) {
$placeholder_key = $File::KDBX::PLACEHOLDERS{"${placeholder}:${arg}"} ? "${placeholder}:${arg}"
: "${placeholder}:";
}
return if !defined $File::KDBX::PLACEHOLDERS{$placeholder_key};
my $local_key = join('/', Hash::Util::FieldHash::id($self), $placeholder_key);
local $PLACEHOLDERS{$local_key} = my $handler = $PLACEHOLDERS{$local_key} // do {
my $handler = $File::KDBX::PLACEHOLDERS{$placeholder_key} or next;
memoize recurse_limit($handler, $PLACEHOLDER_MAX_DEPTH, sub {
alert "Detected deep recursion while expanding $placeholder placeholder",
placeholder => $placeholder;
return; # undef
});
};
return $handler->($self, $arg, $placeholder);
}
sub _expand_string {
my $self = shift;
my $str = shift;
my $expand = memoize $self->can('_expand_placeholder'), $self;
# placeholders (including field references):
$str =~ s!\{([^:\}]+)(?::([^\}]*))?\}!$expand->(uc($1), $2, @_) // $&!egi;
# environment variables (alt syntax):
my $vars = join('|', map { quotemeta($_) } keys %ENV);
$str =~ s!\%($vars)\%!$expand->(ENV => $1, @_) // $&!eg;
return $str;
}
sub expand_string_value {
my $self = shift;
my $str = $self->string_peek(@_) // return undef;
my $cleanup = erase_scoped $str;
return $self->_expand_string($str);
}
sub other_strings {
my $self = shift;
my $delim = shift // "\n";
my @strings = map { $self->string_value($_) } grep { !$STANDARD_STRINGS{$_} } sort keys %{$self->strings};
return join($delim, @strings);
}
sub string_peek {
my $self = shift;
my $string = $self->string(@_);
return defined $string->{value} ? $string->{value} : $self->kdbx->peek($string);
}
##############################################################################
sub add_auto_type_association {
my $self = shift;
my $association = shift;
push @{$self->auto_type_associations}, $association;
}
sub expand_keystroke_sequence {
my $self = shift;
my $association = shift;
my $keys;
if ($association) {
$keys = is_hashref($association) && exists $association->{keystroke_sequence} ?
$association->{keystroke_sequence} : defined $association ? $association : '';
}
$keys = $self->auto_type_default_sequence if !$keys;
# TODO - Fall back to getting default sequence from parent group, which probably means we shouldn't be
# setting a default value in the entry..
return $self->_expand_string($keys);
}
##############################################################################
sub binary {
my $self = shift;
my %args = @_ == 2 ? (key => shift, value => shift)
: @_ % 2 == 1 ? (key => shift, @_) : @_;
if (!defined $args{key} && !defined $args{value}) {
my %standard = (value => 1, protect => 1);
my @other_keys = grep { !$standard{$_} } keys %args;
if (@other_keys == 1) {
my $key = $args{key} = $other_keys[0];
$args{value} = delete $args{$key};
}
}
my $key = delete $args{key} or throw 'Must provide a binary key to access';
return $self->{binaries}{$key} = $args{value} if is_plain_hashref($args{value});
assert { !defined $args{value} || !utf8::is_utf8($args{value}) };
while (my ($field, $value) = each %args) {
$self->{binaries}{$key}{$field} = $value;
}
return $self->{binaries}{$key};
}
sub binary_value {
my $self = shift;
my $binary = $self->binary(@_) // return undef;
return $binary->{value};
}
##############################################################################
sub hmac_otp {
my $self = shift;
load_optional('Pass::OTP');
my %params = ($self->_hotp_params, @_);
return if !defined $params{type} || !defined $params{secret};
$params{secret} = encode_b32r($params{secret}) if !$params{base32};
$params{base32} = 1;
my $otp = eval { Pass::OTP::otp(%params, @_) };
if (my $err = $@) {
throw 'Unable to generate HOTP', error => $err;
}
$self->_hotp_increment_counter($params{counter});
return $otp;
}
sub time_otp {
my $self = shift;
load_optional('Pass::OTP');
my %params = ($self->_totp_params, @_);
return if !defined $params{type} || !defined $params{secret};
$params{secret} = encode_b32r($params{secret}) if !$params{base32};
$params{base32} = 1;
my $otp = eval { Pass::OTP::otp(%params, @_) };
if (my $err = $@) {
throw 'Unable to generate TOTP', error => $err;
}
return $otp;
}
sub hmac_otp_uri { $_[0]->_otp_uri($_[0]->_hotp_params) }
sub time_otp_uri { $_[0]->_otp_uri($_[0]->_totp_params) }
sub _otp_uri {
my $self = shift;
my %params = @_;
return if 4 != grep { defined } @params{qw(type secret issuer account)};
return if $params{type} !~ /^[ht]otp$/i;
my $label = delete $params{label};
$params{$_} = uri_escape_utf8($params{$_}) for keys %params;
my $type = lc($params{type});
my $issuer = $params{issuer};
my $account = $params{account};
$label //= "$issuer:$account";
my $secret = $params{secret};
$secret = uc(encode_b32r($secret)) if !$params{base32};
delete $params{algorithm} if defined $params{algorithm} && $params{algorithm} eq 'sha1';
delete $params{period} if defined $params{period} && $params{period} == 30;
delete $params{digits} if defined $params{digits} && $params{digits} == 6;
delete $params{counter} if defined $params{counter} && $params{counter} == 0;
my $uri = "otpauth://$type/$label?secret=$secret&issuer=$issuer";
if (defined $params{encoder}) {
$uri .= "&encoder=$params{encoder}";
return $uri;
}
$uri .= '&algorithm=' . uc($params{algorithm}) if defined $params{algorithm};
$uri .= "&digits=$params{digits}" if defined $params{digits};
$uri .= "&counter=$params{counter}" if defined $params{counter};
$uri .= "&period=$params{period}" if defined $params{period};
return $uri;
}
sub _hotp_params {
my $self = shift;
my %params = (
type => 'hotp',
issuer => $self->expand_title || 'KDBX',
account => $self->expand_username || 'none',
digits => 6,
counter => $self->string_value('HmacOtp-Counter') // 0,
$self->_otp_secret_params('Hmac'),
);
return %params if $params{secret};
my %otp_params = $self->_otp_params;
return () if !$otp_params{secret} || $otp_params{type} ne 'hotp';
# $otp_params{counter} = 0
return (%params, %otp_params);
}
sub _totp_params {
my $self = shift;
my %algorithms = (
'HMAC-SHA-1' => 'sha1',
'HMAC-SHA-256' => 'sha256',
'HMAC-SHA-512' => 'sha512',
);
my %params = (
type => 'totp',
issuer => $self->expand_title || 'KDBX',
account => $self->expand_username || 'none',
digits => $self->string_value('TimeOtp-Length') // 6,
algorithm => $algorithms{$self->string_value('TimeOtp-Algorithm') || ''} || 'sha1',
period => $self->string_value('TimeOtp-Period') // 30,
$self->_otp_secret_params('Time'),
);
return %params if $params{secret};
my %otp_params = $self->_otp_params;
return () if !$otp_params{secret} || $otp_params{type} ne 'totp';
return (%params, %otp_params);
}
# KeePassXC style
sub _otp_params {
my $self = shift;
load_optional('Pass::OTP::URI');
my $uri = $self->string_value('otp') || '';
my %params;
%params = Pass::OTP::URI::parse($uri) if $uri =~ m!^otpauth://!;
return () if !$params{secret} || !$params{type};
if (($params{encoder} // '') eq 'steam') {
$params{digits} = 5;
$params{chars} = '23456789BCDFGHJKMNPQRTVWXY';
}
# Pass::OTP::URI doesn't provide the issuer and account separately, so get them from the label
my ($issuer, $user) = split(':', $params{label} // ':', 2);
$params{issuer} //= uri_unescape_utf8($issuer);
$params{account} //= uri_unescape_utf8($user);
$params{algorithm} = lc($params{algorithm}) if $params{algorithm};
$params{counter} = $self->string_value('HmacOtp-Counter') if $params{type} eq 'hotp';
return %params;
}
sub _otp_secret_params {
my $self = shift;
my $type = shift // return ();
my $secret_txt = $self->string_value("${type}Otp-Secret");
my $secret_hex = $self->string_value("${type}Otp-Secret-Hex");
my $secret_b32 = $self->string_value("${type}Otp-Secret-Base32");
my $secret_b64 = $self->string_value("${type}Otp-Secret-Base64");
my $count = grep { defined } ($secret_txt, $secret_hex, $secret_b32, $secret_b64);
return () if $count == 0;
alert "Found multiple ${type}Otp-Secret strings", count => $count if 1 < $count;
return (secret => $secret_b32, base32 => 1) if defined $secret_b32;
return (secret => decode_b64($secret_b64)) if defined $secret_b64;
return (secret => pack('H*', $secret_hex)) if defined $secret_hex;
return (secret => encode('UTF-8', $secret_txt));
}
sub _hotp_increment_counter {
my $self = shift;
my $counter = shift // $self->string_value('HmacOtp-Counter') || 0;
looks_like_number($counter) or throw 'HmacOtp-Counter value must be a number', value => $counter;
my $next = $counter + 1;
$self->string('HmacOtp-Counter', $next);
return $next;
}
##############################################################################
sub size {
my $self = shift;
my $size = 0;
# tags
$size += length(encode('UTF-8', $self->tags // ''));
# attributes (strings)
while (my ($key, $string) = each %{$self->strings}) {
next if !defined $string->{value};
$size += length(encode('UTF-8', $key)) + length(encode('UTF-8', $string->{value} // ''));
}
# custom data
while (my ($key, $item) = each %{$self->custom_data}) {
next if !defined $item->{value};
$size += length(encode('UTF-8', $key)) + length(encode('UTF-8', $item->{value} // ''));
}
# binaries
while (my ($key, $binary) = each %{$self->binaries}) {
next if !defined $binary->{value};
my $value_len = utf8::is_utf8($binary->{value}) ? length(encode('UTF-8', $binary->{value}))
: length($binary->{value});
$size += length(encode('UTF-8', $key)) + $value_len;
}
# autotype associations
for my $association (@{$self->auto_type->{associations} || []}) {
$size += length(encode('UTF-8', $association->{window}))
+ length(encode('UTF-8', $association->{keystroke_sequence} // ''));
}
return $size;
}
##############################################################################
sub history {
my $self = shift;
my $entries = $self->{history} //= [];
if (@$entries && !blessed($entries->[0])) {
@$entries = map { $self->_wrap_entry($_, $self->kdbx) } @$entries;
}
assert { !any { !blessed $_ } @$entries };
return $entries;
}
sub history_size {
my $self = shift;
return sum0 map { $_->size } @{$self->history};
}
sub prune_history {
my $self = shift;
my %args = @_;
my $max_items = $args{max_items} // eval { $self->kdbx->history_max_items } // HISTORY_DEFAULT_MAX_ITEMS;
my $max_size = $args{max_size} // eval { $self->kdbx->history_max_size } // HISTORY_DEFAULT_MAX_SIZE;
my $max_age = $args{max_age} // eval { $self->kdbx->maintenance_history_days } // HISTORY_DEFAULT_MAX_AGE;
# history is ordered oldest to newest
my $history = $self->history;
my @removed;
if (0 <= $max_items && $max_items < @$history) {
push @removed, splice @$history, -$max_items;
}
if (0 <= $max_size) {
my $current_size = $self->history_size;
while ($max_size < $current_size) {
push @removed, my $entry = shift @$history;
$current_size -= $entry->size;
}
}
if (0 <= $max_age) {
my $cutoff = gmtime - ($max_age * 86400);
for (my $i = @$history - 1; 0 <= $i; --$i) {
my $entry = $history->[$i];
next if $cutoff <= $entry->last_modification_time;
push @removed, splice @$history, $i, 1;
}
}
@removed = sort { $a->last_modification_time <=> $b->last_modification_time } @removed;
return @removed;
}
sub add_historical_entry {
my $self = shift;
delete $_->{history} for @_;
push @{$self->{history} //= []}, map { $self->_wrap_entry($_) } @_;
}
sub remove_historical_entry {
my $self = shift;
my $entry = shift;
my $history = $self->history;
my @removed;
for (my $i = @$history - 1; 0 <= $i; --$i) {
my $item = $history->[$i];
next if Hash::Util::FieldHash::id($entry) != Hash::Util::FieldHash::id($item);
push @removed, splice @{$self->{history}}, $i, 1;
}
return @removed;
}
sub current_entry {
my $self = shift;
my $parent = $self->group;
if ($parent) {
my $id = $self->uuid;
my $entry = first { $id eq $_->uuid } @{$parent->entries};
return $entry if $entry;
}
return $self;
}
sub is_current {
my $self = shift;
my $current = $self->current_entry;
return Hash::Util::FieldHash::id($self) == Hash::Util::FieldHash::id($current);
}
sub is_historical { !$_[0]->is_current }
sub remove {
my $self = shift;
my $current = $self->current_entry;
return $self if $current->remove_historical_entry($self);
$self->SUPER::remove(@_);
}
##############################################################################
sub searching_enabled {
my $self = shift;
my $parent = $self->group;
return $parent->effective_enable_searching if $parent;
return true;
}
sub auto_type_enabled {
my $self = shift;
$self->auto_type->{enabled} = to_bool(shift) if @_;
$self->auto_type->{enabled} //= true;
return false if !$self->auto_type->{enabled};
return true if !$self->is_connected;
my $parent = $self->group;
return $parent->effective_enable_auto_type if $parent;
return true;
}
##############################################################################
sub _signal {
my $self = shift;
my $type = shift;
return $self->SUPER::_signal("entry.$type", @_);
}
sub _commit {
my $self = shift;
my $orig = shift;
$self->add_historical_entry($orig);
my $time = gmtime;
$self->last_modification_time($time);
$self->last_access_time($time);
}
sub label { shift->expand_title(@_) }
### Name of the parent attribute expected to contain the object
sub _parent_container { 'entries' }
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
File::KDBX::Entry - A KDBX database entry
=head1 VERSION
version 0.906
=head1 DESCRIPTION
An entry in a KDBX database is a record that can contains strings (also called "fields") and binaries (also
called "files" or "attachments"). Every string and binary has a key or name. There is a default set of strings
that every entry has:
=over 4
=item *
B<Title>
=item *
B<UserName>
=item *
B<Password>
=item *
B<URL>
=item *
B<Notes>
=back
Beyond this, you can store any number of other strings and any number of binaries that you can use for
whatever purpose you want.
There is also some metadata associated with an entry. Each entry in a database is identified uniquely by
a UUID. An entry can also have an icon associated with it, and there are various timestamps. Take a look at
the attributes to see what's available.
A B<File::KDBX::Entry> is a subclass of L<File::KDBX::Object>. View its documentation to see other attributes
and methods available on entries.
=head2 Placeholders
Entry string and auto-type key sequences can have placeholders or template tags that can be replaced by other
values. Placeholders can appear like C<{PLACEHOLDER}>. For example, a B<URL> string might have a value of
C<http://example.com?user={USERNAME}>. C<{USERNAME}> is a placeholder for the value of the B<UserName> string
of the same entry. If the B<UserName> string had a value of "batman", the B<URL> string would expand to
C<http://example.com?user=batman>.
Some placeholders take an argument, where the argument follows the tag after a colon but before the closing
brace, like C<{PLACEHOLDER:ARGUMENT}>.
Placeholders are documented in the L<KeePass Help Center|https://keepass.info/help/base/placeholders.html>.
This software supports many (but not all) of the placeholders documented there.
=head3 Entry Placeholders
=over 4
=item *
☑ C<{TITLE}> - B<Title> string
=item *
☑ C<{USERNAME}> - B<UserName> string
=item *
☑ C<{PASSWORD}> - B<Password> string
=item *
☑ C<{NOTES}> - B<Notes> string
=item *
☑ C<{URL}> - B<URL> string
=item *
☑ C<{URL:SCM}> / C<{URL:SCHEME}>
=item *
☑ C<{URL:USERINFO}>
=item *
☑ C<{URL:USERNAME}>
=item *
☑ C<{URL:PASSWORD}>
=item *
☑ C<{URL:HOST}>
=item *
☑ C<{URL:PORT}>
=item *
☑ C<{URL:PATH}>
=item *
☑ C<{URL:QUERY}>
=item *
☑ C<{URL:FRAGMENT}> / C<{URL:HASH}>
=item *
☑ C<{URL:RMVSCM}> / C<{URL:WITHOUTSCHEME}>
=item *
☑ C<{S:Name}> - Custom string where C<Name> is the name or key of the string
=item *
☑ C<{UUID}> - Identifier (32 hexidecimal characters)
=item *
☑ C<{HMACOTP}> - Generate an HMAC-based one-time password (its counter B<will> be incremented)
=item *
☑ C<{TIMEOTP}> - Generate a time-based one-time password
=item *
☑ C<{GROUP_NOTES}> - Notes of the parent group
=item *
☑ C<{GROUP_PATH}> - Full path of the parent group
=item *
☑ C<{GROUP}> - Name of the parent group
=back
=head3 Field References
=over 4
=item *
☑ C<{REF:Wanted@SearchIn:Text}> - See L<File::KDBX/resolve_reference>
=back
=head3 File path Placeholders
=over 4
=item *
☑ C<{APPDIR}> - Program directory path
=item *
☑ C<{FIREFOX}> - Path to the Firefox browser executable
=item *
☑ C<{GOOGLECHROME}> - Path to the Chrome browser executable
=item *
☑ C<{INTERNETEXPLORER}> - Path to the Firefox browser executable
=item *
☑ C<{OPERA}> - Path to the Opera browser executable
=item *
☑ C<{SAFARI}> - Path to the Safari browser executable
=item *
☒ C<{DB_PATH}> - Full file path of the database
=item *
☒ C<{DB_DIR}> - Directory path of the database
=item *
☒ C<{DB_NAME}> - File name (including extension) of the database
=item *
☒ C<{DB_BASENAME}> - File name (excluding extension) of the database
=item *
☒ C<{DB_EXT}> - File name extension
=item *
☑ C<{ENV_DIRSEP}> - Directory separator
=item *
☑ C<{ENV_PROGRAMFILES_X86}> - One of C<%ProgramFiles(x86)%> or C<%ProgramFiles%>
=back
=head3 Date and Time Placeholders
=over 4
=item *
☑ C<{DT_SIMPLE}> - Current local date and time as a sortable string
=item *
☑ C<{DT_YEAR}> - Year component of the current local date
=item *
☑ C<{DT_MONTH}> - Month component of the current local date
=item *
☑ C<{DT_DAY}> - Day component of the current local date
=item *
☑ C<{DT_HOUR}> - Hour component of the current local time
=item *
☑ C<{DT_MINUTE}> - Minute component of the current local time
=item *
☑ C<{DT_SECOND}> - Second component of the current local time
=item *
☑ C<{DT_UTC_SIMPLE}> - Current UTC date and time as a sortable string
=item *
☑ C<{DT_UTC_YEAR}> - Year component of the current UTC date
=item *
☑ C<{DT_UTC_MONTH}> - Month component of the current UTC date
=item *
☑ C<{DT_UTC_DAY}> - Day component of the current UTC date
=item *
☑ C<{DT_UTC_HOUR}> - Hour component of the current UTC time
=item *
☑ C<{DT_UTC_MINUTE}> Minute Year component of the current UTC time
=item *
☑ C<{DT_UTC_SECOND}> - Second component of the current UTC time
=back
If the current date and time is C<2012-07-25 17:05:34>, the "simple" form would be C<20120725170534>.
=head3 Special Key Placeholders
Certain placeholders for use in auto-type key sequences are not supported for replacement, but they will
remain as-is so that an auto-type engine (not included) can parse and replace them with the appropriate
virtual key presses. For completeness, here is the list that the KeePass program claims to support:
C<{TAB}>, C<{ENTER}>, C<{UP}>, C<{DOWN}>, C<{LEFT}>, C<{RIGHT}>, C<{HOME}>, C<{END}>, C<{PGUP}>, C<{PGDN}>,
C<{INSERT}>, C<{DELETE}>, C<{SPACE}>
C<{BACKSPACE}>, C<{BREAK}>, C<{CAPSLOCK}>, C<{ESC}>, C<{WIN}>, C<{LWIN}>, C<{RWIN}>, C<{APPS}>, C<{HELP}>,
C<{NUMLOCK}>, C<{PRTSC}>, C<{SCROLLLOCK}>
C<{F1}>, C<{F2}>, C<{F3}>, C<{F4}>, C<{F5}>, C<{F6}>, C<{F7}>, C<{F8}>, C<{F9}>, C<{F10}>, C<{F11}>, C<{F12}>,
C<{F13}>, C<{F14}>, C<{F15}>, C<{F16}>
C<{ADD}>, C<{SUBTRACT}>, C<{MULTIPLY}>, C<{DIVIDE}>, C<{NUMPAD0}>, C<{NUMPAD1}>, C<{NUMPAD2}>, C<{NUMPAD3}>,
C<{NUMPAD4}>, C<{NUMPAD5}>, C<{NUMPAD6}>, C<{NUMPAD7}>, C<{NUMPAD8}>, C<{NUMPAD9}>
=head3 Miscellaneous Placeholders
=over 4
=item *
☒ C<{BASE}>
=item *
☒ C<{BASE:SCM}> / C<{BASE:SCHEME}>
=item *
☒ C<{BASE:USERINFO}>
=item *
☒ C<{BASE:USERNAME}>
=item *
☒ C<{BASE:PASSWORD}>
=item *
☒ C<{BASE:HOST}>
=item *
☒ C<{BASE:PORT}>
=item *
☒ C<{BASE:PATH}>
=item *
☒ C<{BASE:QUERY}>
=item *
☒ C<{BASE:FRAGMENT}> / C<{BASE:HASH}>
=item *
☒ C<{BASE:RMVSCM}> / C<{BASE:WITHOUTSCHEME}>
=item *
☒ C<{CLIPBOARD-SET:/Text/}>
=item *
☒ C<{CLIPBOARD}>
=item *
☒ C<{CMD:/CommandLine/Options/}>
=item *
☑ C<{C:Comment}> - Comments are simply replaced by nothing
=item *
☑ C<{ENV:}> and C<%ENV%> - Environment variables
=item *
☒ C<{GROUP_SEL_NOTES}>
=item *
☒ C<{GROUP_SEL_PATH}>
=item *
☒ C<{GROUP_SEL}>
=item *
☒ C<{NEWPASSWORD}>
=item *
☒ C<{NEWPASSWORD:/Profile/}>
=item *
☒ C<{PASSWORD_ENC}>
=item *
☒ C<{PICKCHARS}>
=item *
☒ C<{PICKCHARS:Field:Options}>
=item *
☒ C<{PICKFIELD}>
=item *
☒ C<{T-CONV:/Text/Type/}>
=item *
☒ C<{T-REPLACE-RX:/Text/Type/Replace/}>
=back
Some of these that remain unimplemented, such as C<{CLIPBOARD}>, cannot be implemented portably. Some of these
I haven't implemented (yet) just because they don't seem very useful. You can create your own placeholder to
augment the list of default supported placeholders or to replace a built-in placeholder handler. To create
a placeholder, just set it in the C<%File::KDBX::PLACEHOLDERS> hash. For example:
$File::KDBX::PLACEHOLDERS{'MY_PLACEHOLDER'} = sub {
my ($entry) = @_;
...;
};
If the placeholder is expanded in the context of an entry, C<$entry> is the B<File::KDBX::Entry> object in
context. Otherwise it is C<undef>. An entry is in context if, for example, the placeholder is in an entry's
strings or auto-type key sequences.
$File::KDBX::PLACEHOLDERS{'MY_PLACEHOLDER:'} = sub {
my ($entry, $arg) = @_; # ^ Notice the colon here
...;
};
If the name of the placeholder ends in a colon, then it is expected to receive an argument. During expansion,
everything after the colon and before the end of the placeholder is passed to your placeholder handler
subroutine. So if the placeholder is C<{MY_PLACEHOLDER:whatever}>, C<$arg> will have the value B<whatever>.
An argument is required for placeholders than take one. I.e. The placeholder handler won't be called if there
is no argument. If you want a placeholder to support an optional argument, you'll need to set the placeholder
both with and without a colon (or they could be different subroutines):
$File::KDBX::PLACEHOLDERS{'RAND'} = $File::KDBX::PLACEHOLDERS{'RAND:'} = sub {
(undef, my $arg) = @_;
return defined $arg ? rand($arg) : rand;
};
You can also remove placeholder handlers. If you want to disable placeholder expansion entirely, just delete
all the handlers:
%File::KDBX::PLACEHOLDERS = ();
=head2 One-time Passwords
An entry can be configured to generate one-time passwords, both HOTP (HMAC-based) and TOTP (time-based). The
configuration storage isn't completely standardized, but this module supports two predominant configuration
styles:
=over 4
=item *
L<KeePass 2|https://keepass.info/help/base/placeholders.html#otp>
=item *
KeePassXC
=back
B<NOTE:> To use this feature, you must install the suggested dependency:
=over 4
=item *
L<Pass::OTP>
=back
To configure TOTP in the KeePassXC style, there is only one string to set: C<otp>. The value should be any
valid otpauth URI. When generating an OTP, all of the relevant OTP properties are parsed from the URI.
To configure TOTP in the KeePass 2 style, set the following strings:
=over 4
=item *
C<TimeOtp-Algorithm> - Cryptographic algorithm, one of C<HMAC-SHA-1> (default), C<HMAC-SHA-256> and C<HMAC-SHA-512>
=item *
C<TimeOtp-Length> - Number of digits each one-time password is (default: 6, maximum: 8)
=item *
C<TimeOtp-Period> - Time-step size in seconds (default: 30)
=item *
C<TimeOtp-Secret> - Text string secret, OR
=item *
C<TimeOtp-Secret-Hex> - Hexidecimal-encoded secret, OR
=item *
C<TimeOtp-Secret-Base32> - Base32-encoded secret (most common), OR
=item *
C<TimeOtp-Secret-Base64> - Base64-encoded secret
=back
To configure HOTP in the KeePass 2 style, set the following strings:
=over 4
=item *
C<HmacOtp-Counter> - Counting value in decimal, starts on C<0> by default and increments when L</hmac_otp> is called
=item *
C<HmacOtp-Secret> - Text string secret, OR
=item *
C<HmacOtp-Secret-Hex> - Hexidecimal-encoded secret, OR
=item *
C<HmacOtp-Secret-Base32> - Base32-encoded secret (most common), OR
=item *
C<HmacOtp-Secret-Base64> - Base64-encoded secret
=back
B<NOTE:> The multiple "Secret" strings are simply a way to store a secret in different formats. Only one of
these should actually be set or an error will be thrown.
Here's a basic example:
$entry->string(otp => 'otpauth://totp/Issuer:user?secret=NBSWY3DP&issuer=Issuer');
# OR
$entry->string('TimeOtp-Secret-Base32' => 'NBSWY3DP');
my $otp = $entry->time_otp;
=head1 ATTRIBUTES
=head2 foreground_color
Text color represented as a string of the form C<#000000>.
=head2 background_color
Background color represented as a string of the form C<#FFFFFF>.
=head2 override_url
TODO
=head2 auto_type_enabled
Whether or not the entry is eligible to be matched for auto-typing.
=head2 auto_type_obfuscation
Whether or not to use some kind of obfuscation when sending keystroke sequences to applications.
=head2 auto_type_default_sequence
The default auto-type keystroke sequence.
=head2 auto_type_associations
An array of window title / keystroke sequence associations.
{
window => 'Example Window Title',
keystroke_sequence => '{USERNAME}{TAB}{PASSWORD}{ENTER}',
}
Keystroke sequences can have L</Placeholders>, most commonly C<{USERNAME}> and C<{PASSWORD}>.
=head2 quality_check
Boolean indicating whether the entry password should be tested for weakness and show up in reports.
=head2 strings
Hash with entry strings, including the standard strings as well as any custom ones.
{
# Every entry has these five strings:
Title => { value => 'Example Entry' },
UserName => { value => 'jdoe' },
Password => { value => 's3cr3t', protect => true },
URL => { value => 'https://example.com' }
Notes => { value => '' },
# May also have custom strings:
MySystem => { value => 'The mainframe' },
}
There are methods available to provide more convenient access to strings, including L</string>,
L</string_value>, L</expand_string_value> and L</string_peek>.
=head2 binaries
Files or attachments. Binaries are similar to strings except they have a value of bytes instead of test
characters.
{
'myfile.txt' => {
value => '...',
},
'mysecrets.txt' => {
value => '...',
protect => true,
},
}
There are methods available to provide more convenient access to binaries, including L</binary> and
L</binary_value>.
=head2 history
Array of historical entries. Historical entries are prior versions of the same entry so they all share the
same UUID with the current entry.
=head2 notes
Alias for the B<Notes> string value.
=head2 password
Alias for the B<Password> string value.
=head2 title
Alias for the B<Title> string value.
=head2 url
Alias for the B<URL> string value.
=head2 username
Aliases for the B<UserName> string value.
=head1 METHODS
=head2 string
\%string = $entry->string($string_key);
$entry->string($string_key, \%string);
$entry->string($string_key, %attributes);
$entry->string($string_key, $value); # same as: value => $value
Get or set a string. Every string has a unique (to the entry) key and flags and so are returned as a hash
structure. For example:
$string = {
value => 'Password',
protect => true, # optional
};
Every string should have a value (but might be C<undef> due to memory protection) and these optional flags
which might exist:
=over 4
=item *
C<protect> - Whether or not the string value should be memory-protected.
=back
=head2 string_value
$string = $entry->string_value($string_key);
Access a string value directly. The arguments are the same as for L</string>. Returns C<undef> if the string
is not set or is currently memory-protected. This is just a shortcut for:
my $string = do {
my $s = $entry->string(...);
defined $s ? $s->{value} : undef;
};
=head2 expand_string_value
$string = $entry->expand_string_value($string_key);
Same as L</string_value> but will substitute placeholders and resolve field references. Any placeholders that
do not expand to values are left as-is.
See L</Placeholders>.
Some placeholders (notably field references) require the entry be connected to a database and will throw an
error if it is not.
=head2 expand_notes
Shortcut equivalent to C<< ->expand_string_value('Notes') >>.
=head2 expand_password
Shortcut equivalent to C<< ->expand_string_value('Password') >>.
=head2 expand_title
Shortcut equivalent to C<< ->expand_string_value('Title') >>.
=head2 expand_url
Shortcut equivalent to C<< ->expand_string_value('URL') >>.
=head2 expand_username
Shortcut equivalent to C<< ->expand_string_value('UserName') >>.
=head2 other_strings
$other = $entry->other_strings;
$other = $entry->other_strings($delimiter);
Get a concatenation of all non-standard string values. The default delimiter is a newline. This is is useful
for executing queries to search for entities based on the contents of these other strings (if any).
=head2 string_peek
$string = $entry->string_peek($string_key);
Same as L</string_value> but can also retrieve the value from protected-memory if the value is currently
protected.
=head2 add_auto_type_association
$entry->add_auto_type_association(\%association);
Add a new auto-type association to an entry.
=head2 expand_keystroke_sequence
$string = $entry->expand_keystroke_sequence($keystroke_sequence);
$string = $entry->expand_keystroke_sequence(\%association);
$string = $entry->expand_keystroke_sequence; # use default auto-type sequence
Get a keystroke sequence after placeholder expansion.
=head2 binary
\%binary = $entry->binary($binary_key);
$entry->binary($binary_key, \%binary);
$entry->binary($binary_key, %attributes);
$entry->binary($binary_key, $value); # same as: value => $value
Get or set a binary. Every binary has a unique (to the entry) key and flags and so are returned as a hash
structure. For example:
$binary = {
value => '...',
protect => true, # optional
};
Every binary should have a value (but might be C<undef> due to memory protection) and these optional flags
which might exist:
=over 4
=item *
C<protect> - Whether or not the binary value should be memory-protected.
=back
=head2 binary_value
$binary = $entry->binary_value($binary_key);
Access a binary value directly. The arguments are the same as for L</binary>. Returns C<undef> if the binary
is not set or is currently memory-protected. This is just a shortcut for:
my $binary = do {
my $b = $entry->binary(...);
defined $b ? $b->{value} : undef;
};
=head2 hmac_otp
$otp = $entry->hmac_otp(%options);
Generate an HMAC-based one-time password, or C<undef> if HOTP is not configured for the entry. The entry's
strings generally must first be unprotected, just like when accessing the password. Valid options are:
=over 4
=item *
C<counter> - Specify the counter value
=back
To configure HOTP, see L</"One-time Passwords">.
=head2 time_otp
$otp = $entry->time_otp(%options);
Generate a time-based one-time password, or C<undef> if TOTP is not configured for the entry. The entry's
strings generally must first be unprotected, just like when accessing the password. Valid options are:
=over 4
=item *
C<now> - Specify the value for determining the time-step counter
=back
To configure TOTP, see L</"One-time Passwords">.
=head2 hmac_otp_uri
=head2 time_otp_uri
$uri_string = $entry->hmac_otp_uri;
$uri_string = $entry->time_otp_uri;
Get a HOTP or TOTP otpauth URI for the entry, if available.
To configure OTP, see L</"One-time Passwords">.
=head2 size
$size = $entry->size;
Get the size (in bytes) of an entry.
B<NOTE:> This is not an exact figure because there is no canonical serialization of an entry. This size should
only be used as a rough estimate for comparison with other entries or to impose data size limitations.
=head2 history_size
$size = $entry->history_size;
Get the size (in bytes) of all historical entries combined.
=head2 prune_history
@removed_historical_entries = $entry->prune_history(%options);
Remove just as many older historical entries as necessary to get under the database limits. The limits are
taken from the connected database (if any) or can be overridden with C<%options>:
=over 4
=item *
C<max_items> - Maximum number of historical entries to keep (default: 10, no limit: -1)
=item *
C<max_size> - Maximum total size (in bytes) of historical entries to keep (default: 6 MiB, no limit: -1)
=item *
C<max_age> - Maximum age (in days) of historical entries to keep (default: 365, no limit: -1)
=back
=head2 add_historical_entry
$entry->add_historical_entry($entry);
Add an entry to the history.
=head2 remove_historical_entry
$entry->remove_historical_entry($historical_entry);
Remove an entry from the history.
=head2 current_entry
$current_entry = $entry->current_entry;
Get an entry's current entry. If the entry itself is current (not historical), itself is returned.
=head2 is_current
$bool = $entry->is_current;
Get whether or not an entry is considered current (i.e. not historical). An entry is current if it is directly
in the parent group's entry list.
=head2 is_historical
$bool = $entry->is_historical;
Get whether or not an entry is considered historical (i.e. not current).
This is just the inverse of L</is_current>.
=head2 remove
$entry = $entry->remove;
Remove an entry from its parent group. If the entry is historical, remove it from the history of the current
entry. If the entry is current, this behaves the same as L<File::KDBX::Object/remove>.
=head2 searching_enabled
$bool = $entry->searching_enabled;
Get whether or not an entry may show up in search results. This is determine from the entry's parent group's
L<File::KDBX::Group/effective_enable_searching> value.
Throws if entry has no parent group or if the entry is not connected to a database.
=for Pod::Coverage auto_type times
=head1 BUGS
Please report any bugs or feature requests on the bugtracker website
L<https://github.com/chazmcgarvey/File-KDBX/issues>
When submitting a bug or request, please include a test-file or a
patch to an existing test-file that illustrates the bug or desired
feature.
=head1 AUTHOR
Charles McGarvey <ccm@cpan.org>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2022 by Charles McGarvey.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
|