Skip to content

Commit

Permalink
opensnitch: Add at v1.6.7
Browse files Browse the repository at this point in the history
**Summary**
- adds opensnitch a firewall inspired by Little Snitch
  • Loading branch information
uni-dos committed Jan 15, 2025
1 parent 36cfe72 commit a6f44cb
Show file tree
Hide file tree
Showing 12 changed files with 4,163 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/o/opensnitch/MAINTAINERS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
This file is used to indicate primary maintainership for this package. A package may list more than one maintainer to avoid bus factor issues. People on this list may be considered “subject-matter experts”. Please note that Solus Staff may need to perform necessary rebuilds, upgrades, or security fixes as part of the normal maintenance of the Solus package repository. If you believe this package requires an update, follow documentation from https://help.getsol.us/docs/packaging/procedures/request-a-package-update. In the event that this package becomes insufficiently maintained, the Solus Staff reserves the right to request a new maintainer, or deprecate and remove this package from the repository entirely.

- Robert Gonzalez
- Email: [email protected]
3 changes: 3 additions & 0 deletions packages/o/opensnitch/abi_used_libs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
libc.so.6
libnetfilter_queue.so.1
libnfnetlink.so.0
102 changes: 102 additions & 0 deletions packages/o/opensnitch/abi_used_symbols
Original file line number Diff line number Diff line change
@@ -0,0 +1,102 @@
libc.so.6:__errno_location
libc.so.6:__libc_start_main
libc.so.6:__stack_chk_fail
libc.so.6:abort
libc.so.6:bind
libc.so.6:calloc
libc.so.6:close
libc.so.6:dlerror
libc.so.6:dlinfo
libc.so.6:dlopen
libc.so.6:dlsym
libc.so.6:fprintf
libc.so.6:fputc
libc.so.6:free
libc.so.6:freeaddrinfo
libc.so.6:fwrite
libc.so.6:gai_strerror
libc.so.6:getaddrinfo
libc.so.6:getgrgid_r
libc.so.6:getgrnam_r
libc.so.6:getgrouplist
libc.so.6:getnameinfo
libc.so.6:getpwnam_r
libc.so.6:getpwuid_r
libc.so.6:getrlimit
libc.so.6:getsockname
libc.so.6:if_nametoindex
libc.so.6:malloc
libc.so.6:memcpy
libc.so.6:memset
libc.so.6:mmap
libc.so.6:munmap
libc.so.6:nanosleep
libc.so.6:poll
libc.so.6:printf
libc.so.6:pthread_attr_destroy
libc.so.6:pthread_attr_getstack
libc.so.6:pthread_attr_getstacksize
libc.so.6:pthread_attr_init
libc.so.6:pthread_cond_broadcast
libc.so.6:pthread_cond_wait
libc.so.6:pthread_create
libc.so.6:pthread_detach
libc.so.6:pthread_getattr_np
libc.so.6:pthread_key_create
libc.so.6:pthread_mutex_lock
libc.so.6:pthread_mutex_unlock
libc.so.6:pthread_self
libc.so.6:pthread_setspecific
libc.so.6:pthread_sigmask
libc.so.6:puts
libc.so.6:realloc
libc.so.6:recv
libc.so.6:res_search
libc.so.6:send
libc.so.6:setegid
libc.so.6:setenv
libc.so.6:seteuid
libc.so.6:setgid
libc.so.6:setgroups
libc.so.6:setregid
libc.so.6:setresgid
libc.so.6:setresuid
libc.so.6:setreuid
libc.so.6:setrlimit
libc.so.6:setsockopt
libc.so.6:setuid
libc.so.6:sigaction
libc.so.6:sigaddset
libc.so.6:sigemptyset
libc.so.6:sigfillset
libc.so.6:sigismember
libc.so.6:socket
libc.so.6:stat
libc.so.6:stderr
libc.so.6:strerror
libc.so.6:strnlen
libc.so.6:strstr
libc.so.6:syscall
libc.so.6:sysconf
libc.so.6:unsetenv
libc.so.6:vfprintf
libnetfilter_queue.so.1:nfq_bind_pf
libnetfilter_queue.so.1:nfq_close
libnetfilter_queue.so.1:nfq_create_queue
libnetfilter_queue.so.1:nfq_destroy_queue
libnetfilter_queue.so.1:nfq_fd
libnetfilter_queue.so.1:nfq_get_indev
libnetfilter_queue.so.1:nfq_get_msg_packet_hdr
libnetfilter_queue.so.1:nfq_get_nfmark
libnetfilter_queue.so.1:nfq_get_outdev
libnetfilter_queue.so.1:nfq_get_payload
libnetfilter_queue.so.1:nfq_get_uid
libnetfilter_queue.so.1:nfq_handle_packet
libnetfilter_queue.so.1:nfq_nfnlh
libnetfilter_queue.so.1:nfq_open
libnetfilter_queue.so.1:nfq_set_mode
libnetfilter_queue.so.1:nfq_set_queue_flags
libnetfilter_queue.so.1:nfq_set_queue_maxlen
libnetfilter_queue.so.1:nfq_set_verdict2
libnetfilter_queue.so.1:nfq_unbind_pf
libnfnetlink.so.0:nfnl_rcvbufsiz
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
--- /dev/null
+++ b/daemon/default-config.json 2025-01-12 13:40:30.015721721 -0600
@@ -1,7 +1,7 @@
{
"Server":
{
- "Address":"unix:///tmp/osui.sock",
+ "Address":"unix:///run/user/1000/opensnitch/osui.sock",
"LogFile":"/var/log/opensnitchd.log"
},
"DefaultAction": "allow",
@@ -18,3 +18,4 @@
"Workers": 6
}
}
+

Loading

0 comments on commit a6f44cb

Please sign in to comment.