{"id":21024893,"url":"https://github.com/nestybox/libseccomp","last_synced_at":"2025-03-13T18:24:28.340Z","repository":{"id":43182505,"uuid":"227437886","full_name":"nestybox/libseccomp","owner":"nestybox","description":null,"archived":false,"fork":false,"pushed_at":"2022-03-14T20:44:46.000Z","size":1197,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-01-20T13:45:56.072Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"C","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"lgpl-2.1","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nestybox.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":"SECURITY.md","support":null}},"created_at":"2019-12-11T18:54:40.000Z","updated_at":"2021-12-12T17:50:55.000Z","dependencies_parsed_at":"2022-08-31T20:52:13.092Z","dependency_job_id":null,"html_url":"https://github.com/nestybox/libseccomp","commit_stats":null,"previous_names":[],"tags_count":17,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nestybox%2Flibseccomp","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nestybox%2Flibseccomp/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nestybox%2Flibseccomp/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nestybox%2Flibseccomp/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nestybox","download_url":"https://codeload.github.com/nestybox/libseccomp/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243456651,"owners_count":20293907,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-19T11:29:07.405Z","updated_at":"2025-03-13T18:24:28.306Z","avatar_url":"https://github.com/nestybox.png","language":"C","funding_links":[],"categories":[],"sub_categories":[],"readme":"![Enhanced Seccomp Helper Library](https://github.com/seccomp/libseccomp-artwork/blob/master/logo/libseccomp-color_text.png)\n===============================================================================\nhttps://github.com/seccomp/libseccomp\n\n[![CII Best Practices](https://bestpractices.coreinfrastructure.org/projects/608/badge)](https://bestpractices.coreinfrastructure.org/projects/608)\n[![Build Status](https://img.shields.io/travis/seccomp/libseccomp/master.svg)](https://travis-ci.org/seccomp/libseccomp)\n[![Coverage Status](https://img.shields.io/coveralls/github/seccomp/libseccomp/master.svg)](https://coveralls.io/github/seccomp/libseccomp?branch=master)\n\nThe libseccomp library provides an easy to use, platform independent, interface\nto the Linux Kernel's syscall filtering mechanism.  The libseccomp API is\ndesigned to abstract away the underlying BPF based syscall filter language and\npresent a more conventional function-call based filtering interface that should\nbe familiar to, and easily adopted by, application developers.\n\n## Online Resources\n\nThe library source repository currently lives on GitHub at the following URL:\n\n* https://github.com/seccomp/libseccomp\n\nThe Go language bindings repository currently lives on GitHub at the following\nURL:\n\n* https://github.com/seccomp/libseccomp-golang\n\nThe project mailing list is currently hosted on Google Groups at the URL below,\nplease note that a Google account is not required to subscribe to the mailing\nlist.\n\n* https://groups.google.com/forum/#!forum/libseccomp\n* https://groups.google.com/forum/#!forum/libseccomp/join\n\n## Supported Architectures\n\nThe libseccomp library currently supports the architectures listed below:\n\n* 32-bit x86 (x86)\n* 64-bit x86 (x86_64)\n* 64-bit x86 x32 ABI (x32)\n* 32-bit ARM EABI (arm)\n* 64-bit ARM (aarch64)\n* 32-bit MIPS (mips)\n* 32-bit MIPS little endian (mipsel)\n* 64-bit MIPS (mips64)\n* 64-bit MIPS little endian (mipsel64)\n* 64-bit MIPS n32 ABI (mips64n32)\n* 64-bit MIPS n32 ABI little endian (mipsel64n32)\n* 32-bit PA-RISC (parisc)\n* 64-bit PA-RISC (parisc64)\n* 32-bit PowerPC (ppc)\n* 64-bit PowerPC (ppc64)\n* 64-bit PowerPC little endian (ppc64le)\n* 32-bit s390 (s390)\n* 64-bit s390x (s390x)\n\n## Documentation\n\nThe \"doc/\" directory contains all of the currently available documentation,\nmostly in the form of manpages.  The top level directory also contains a README\nfile (this file) as well as the LICENSE, CREDITS, CONTRIBUTING, and\nCHANGELOG files.\n\nThose who are interested in contributing to the the project are encouraged to\nread the CONTRIBUTING in the top level directory.\n\n## Building and Installing the Library\n\nIf you are building the libseccomp library from an official release tarball,\nyou should follow the familiar three step process used by most autotools based\napplications:\n\n\t# ./configure\n\t# make [V=0|1]\n\t# make install\n\nHowever, if you are building the library from sources retrieved from the source\nrepository you may need to run the autogen.sh script before running configure.\nIn both cases, running \"./configure -h\" will display a list of build-time\nconfiguration options.\n\n## Testing the Library\n\nThere are a number of tests located in the \"tests/\" directory and a make target\nwhich can be used to help automate their execution.  If you want to run the\nstandard regression tests you can execute the following after building the\nlibrary:\n\n\t# make check\n\nThese tests can be safely run on any Linux system, even those where the kernel\ndoes not support seccomp-bpf (seccomp mode 2).  However, be warned that the\ntest run can take a while to run and produces a lot of output.\n\nThe generated seccomp-bpf filters can be tested on a live system using the\n\"live\" tests; they can be executed using the following commands:\n\n\t# make check-build\n\t# (cd tests; ./regression -T live)\n\nThese tests will fail if the running Linux Kernel does not provide the\nnecessary support.\n\n## Developer Tools\n\nThe \"tools/\" directory includes a number of tools which may be helpful in the\ndevelopment of the library, or applications using the library.  Not all of\nthese tools are installed by default.\n\n## Bug and Vulnerability Reporting\n\nProblems with the libseccomp library can be reported using the GitHub issue\ntracking system or the mailing list.  Those who wish to privately report\npotential vulnerabilities should follow the directions in SECURITY.md.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnestybox%2Flibseccomp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnestybox%2Flibseccomp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnestybox%2Flibseccomp/lists"}