403Webshell
Server IP : 3.147.158.171  /  Your IP : 216.73.216.88
Web Server : Apache/2.4.67 (Amazon Linux) OpenSSL/3.5.5
System : Linux ip-172-31-2-178.us-east-2.compute.internal 6.1.172-216.329.amzn2023.x86_64 #1 SMP PREEMPT_DYNAMIC Wed May 20 06:31:34 UTC 2026 x86_64
User : ec2-user ( 1000)
PHP Version : 8.4.21
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : OFF
Directory :  /usr/lib/rpm/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /usr/lib/rpm/generate-rpm-note.sh
#!/usr/bin/bash

readonly=1
insert_after=1

pad_string() {
    for _ in $(seq "$1"); do
        printf ' BYTE(0x00)'
    done
}

write_string() {
    text="$1"
    prefix="$2"
    label="$3"
    total="$4"

    printf "%s/* %s: '%s' */" "$prefix" "$label" "$text"
    for i in $(seq ${#text}); do
        if (( i % 4 == 1 )); then
            printf '\n%s' "$prefix"
        else
            printf ' '
        fi
        printf 'BYTE(0x%02x)' "'${text:i-1:1}"
    done

    pad_string $(( total - ${#text} ))
    printf '\n'
}

write_script() {
    value_len=$(( (${#1} + 3) / 4 * 4 ))
    [ -n "$readonly" ] && readonly_attr='(READONLY) '

    printf 'SECTIONS\n{\n'
    printf '    .note.package %s: ALIGN(4) {\n' "$readonly_attr"
    printf '        BYTE(0x04) BYTE(0x00) BYTE(0x00) BYTE(0x00) /* Length of Owner including NUL */\n'
    printf '        BYTE(0x%02x) BYTE(0x%02x) BYTE(0x00) BYTE(0x00) /* Length of Value including NUL */\n' \
           $((value_len % 256)) $((value_len / 256))

    printf '        BYTE(0x7e) BYTE(0x1a) BYTE(0xfe) BYTE(0xca) /* Note ID */\n'
    printf "        BYTE(0x46) BYTE(0x44) BYTE(0x4f) BYTE(0x00) /* Owner: 'FDO' */\n"

    write_string "$1" '        ' 'Value' "$value_len"

    printf '    }\n}\n'
    [ -n "$insert_after" ] && printf 'INSERT AFTER .note.gnu.build-id;\n'
    :
}

if [ "$1" == "--readonly=no" ]; then
    shift
    readonly=
fi

if [ "$1" == "--insert-after=no" ]; then
    shift
    insert_after=
fi

cpe="$(cat /usr/lib/system-release-cpe)"
json="$(printf '{"type":"rpm","name":"%s","version":"%s","architecture":"%s","osCpe":"%s"}' "$1" "$2" "$3" "$cpe")"
write_script "$json"

Youez - 2016 - github.com/yon3zu
LinuXploit