Пакет trinity: Информация

    Исходный пакет: trinity
    Версия: 1.9-alt6
    Собран:  6 июня 2023 г. 20:00 в задании #321602
    Сообщить об ошибке в пакете
    Домашняя страница: https://github.com/kernelslacker/trinity

    Лицензия: GPL-2.0
    О пакете: System call fuzz tester
    Описание: 
    Trinity makes syscalls at random, with random arguments.  Where Trinity
    differs from other fuzz testers is that the arguments it passes are not
    purely random.
    
    We found some bugs in the past by just passing random values, but once
    the really dumb bugs were found, these dumb fuzzers would just run and
    run.  The problem was if a syscall took for example a file descriptor as
    an argument, one of the first things it would try to do was validate
    that fd.  Being garbage, the kernel would just reject it as -EINVAL of
    course.  So on startup, Trinity creates a list of file descriptors, by
    opening pipes, scanning sysfs, procfs, /dev, and creates a bunch of
    sockets using random network protocols.  Then when a syscall needs an
    fd, it gets passed one of these at random.
    
    File descriptors aren't the only thing Trinity knows about.  Every
    syscall has its arguments annotated, and where possible it tries to
    provide something at least semi-sensible. "Length" arguments for example
    get passed one of a whole bunch of potentially interesting values.
    (Powers of 2 +/-1 are a good choice for triggering off-by-one bugs it
    seems).
    
    Trinity also shares those file descriptors between multiple threads,
    which causes havoc sometimes.
    
    If a child process successfully creates an mmap, the pointer is stored,
    and fed to subsequent syscalls, sometimes with hilarious results.

    Список rpm-пакетов, предоставляемых данным srpm-пакетом:
    trinity (x86_64, ppc64le, i586, armh, aarch64)
    trinity-debuginfo (x86_64, ppc64le, i586, armh, aarch64)

    Сопровождающий: Pavel Vasenkov

    Список участников:
    Pavel Vasenkov
    Artyom Bystrov

      1. libpam-devel
      2. libpcap-devel
      3. libssl-devel
      4. libudev-devel

    Последнее изменение


    19 мая 2023 г. Pavel Vasenkov 1.9-alt6
    - Fix removing depricated i810 definations
    27 февраля 2023 г. Artyom Bystrov 1.9-alt5
    - Add patch to fix build
    24 декабря 2022 г. Pavel Vasenkov 1.9-alt4
    - Update from upstream
    - Fix missed header file
    - Update source url(Closes: #40516)