First clone the U-Boot source code:
git clone https://github.com/ARM-software/u-boot/
Install compilation dependencies:
# Fri May 17 13:52:40 CEST 2024 | |
# [email protected] | |
# | |
# timemachine helper functions: | |
# timemachine-notify | |
# timemachine-notify-loop | |
# timemachine-speedup | |
# timemachine-log | |
# timemachine-logstream | |
# timemachine-log-show |
#!/bin/sh | |
INFILE=/dev/null | |
OUTFILE=/dev/null | |
if [ ${#} -lt 1 ]; then | |
echo "Usage: ${0} -i infile -o outfile" | |
exit 1 | |
fi |
#!/usr/local/bin/php-cgi -f | |
# [email protected] | |
# Sun Nov 24 04:22:26 CET 2019 | |
<?php | |
require_once("globals.inc"); | |
require_once("filter.inc"); | |
require_once("util.inc"); | |
require_once("config.inc"); | |
require_once("service-utils.inc"); |
#!/bin/sh | |
# [email protected] | |
# Mon Sep 9 21:30:51 CEST 2019 | |
case $1 in | |
enable) | |
echo "[*] Enabling zerocopy" | |
sysctl net.bpf.zerocopy_enable=1 | |
exit $? | |
;; |
#!/bin/sh | |
# [email protected] | |
# Mon Sep 9 21:30:51 CEST 2019 | |
# | |
# Title : cputemp | |
# Description: Prints the average CPU core temperature | |
# Author : linuxitux | |
# Date : 12-01-2016 | |
# Usage : ./cputemp | |
# Notes : kldload coretemp |
#!/bin/sh | |
# [email protected] | |
# Mon Sep 9 21:30:51 CEST 2019 | |
denylist=/root/dnsbl.deny | |
allowlist=/root/dnsbl.allow | |
allowtmp=/tmp/dnsbl_tmp.sup | |
logfile=/var/log/pfblockerng/dnsbl.log |
#!/usr/local/bin/php-cgi -f | |
# [email protected] | |
# Thu Mar 2 19:48:14 CET 2023 | |
<?php | |
require_once("globals.inc"); | |
require_once("filter.inc"); | |
require_once("util.inc"); | |
require_once("config.inc"); |
#!/bin/sh | |
# [email protected] | |
# Thu Mar 2 19:48:14 CET 2023 | |
# | |
# From http://ftp.freebsd.org/pub/FreeBSD/README.TXT | |
# | |
# releases/${MACHINE}/${MACHINE_ARCH}/*-RELEASE/ | |
# The official FreeBSD releases as individual tarballs to download; useful | |
# for jail hosting, updating machines in situ, etc. Make sure to look in | |
# the ${MACHINE_ARCH} sub-directory for the most recent releases (e.g., |
#!/usr/bin/env python3 | |
# coding: utf-8 | |
# Thu May 9 05:51:35 CEST 2024 | |
# sucata & surmano | |
# | |
# https://nvd.nist.gov/vuln/detail/CVE-2018-7105 | |
# https://nvd.nist.gov/vuln-metrics/cvss/v3-calculator?name=CVE-2018-7105&vector=AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H&version=3.0&source=NIST | |
""" | |
Print the summary and CVSS3 vector for the CVEs passed as arguments (March 2014). |