golden hour
/usr/include/linux/netfilter
⬆️ Go Up
Upload
File/Folder
Size
Actions
ipset
-
Del
OK
nf_conntrack_common.h
4.48 KB
Del
OK
nf_conntrack_ftp.h
438 B
Del
OK
nf_conntrack_sctp.h
597 B
Del
OK
nf_conntrack_tcp.h
1.38 KB
Del
OK
nf_conntrack_tuple_common.h
896 B
Del
OK
nf_log.h
538 B
Del
OK
nf_nat.h
1.55 KB
Del
OK
nf_synproxy.h
576 B
Del
OK
nf_tables.h
56.89 KB
Del
OK
nf_tables_compat.h
731 B
Del
OK
nfnetlink.h
2.4 KB
Del
OK
nfnetlink_acct.h
900 B
Del
OK
nfnetlink_compat.h
2.39 KB
Del
OK
nfnetlink_conntrack.h
6.04 KB
Del
OK
nfnetlink_cthelper.h
1.18 KB
Del
OK
nfnetlink_cttimeout.h
2.88 KB
Del
OK
nfnetlink_hook.h
1.65 KB
Del
OK
nfnetlink_log.h
3.03 KB
Del
OK
nfnetlink_osf.h
2.6 KB
Del
OK
nfnetlink_queue.h
3.5 KB
Del
OK
x_tables.h
4.36 KB
Del
OK
xt_AUDIT.h
718 B
Del
OK
xt_CHECKSUM.h
563 B
Del
OK
xt_CLASSIFY.h
217 B
Del
OK
xt_CONNMARK.h
199 B
Del
OK
xt_CONNSECMARK.h
301 B
Del
OK
xt_CT.h
853 B
Del
OK
xt_DSCP.h
697 B
Del
OK
xt_HMARK.h
933 B
Del
OK
xt_IDLETIMER.h
1.6 KB
Del
OK
xt_LED.h
470 B
Del
OK
xt_LOG.h
642 B
Del
OK
xt_MARK.h
184 B
Del
OK
xt_NFLOG.h
556 B
Del
OK
xt_NFQUEUE.h
779 B
Del
OK
xt_RATEEST.h
390 B
Del
OK
xt_SECMARK.h
648 B
Del
OK
xt_SYNPROXY.h
498 B
Del
OK
xt_TCPMSS.h
235 B
Del
OK
xt_TCPOPTSTRIP.h
407 B
Del
OK
xt_TEE.h
333 B
Del
OK
xt_TPROXY.h
575 B
Del
OK
xt_addrtype.h
1.06 KB
Del
OK
xt_bpf.h
935 B
Del
OK
xt_cgroup.h
740 B
Del
OK
xt_cluster.h
374 B
Del
OK
xt_comment.h
230 B
Del
OK
xt_connbytes.h
577 B
Del
OK
xt_connlabel.h
360 B
Del
OK
xt_connlimit.h
575 B
Del
OK
xt_connmark.h
901 B
Del
OK
xt_conntrack.h
2.5 KB
Del
OK
xt_cpu.h
199 B
Del
OK
xt_dccp.h
483 B
Del
OK
xt_devgroup.h
429 B
Del
OK
xt_dscp.h
701 B
Del
OK
xt_ecn.h
736 B
Del
OK
xt_esp.h
418 B
Del
OK
xt_hashlimit.h
3.18 KB
Del
OK
xt_helper.h
188 B
Del
OK
xt_ipcomp.h
485 B
Del
OK
xt_iprange.h
581 B
Del
OK
xt_ipvs.h
680 B
Del
OK
xt_l2tp.h
739 B
Del
OK
xt_length.h
221 B
Del
OK
xt_limit.h
673 B
Del
OK
xt_mac.h
227 B
Del
OK
xt_mark.h
260 B
Del
OK
xt_multiport.h
721 B
Del
OK
xt_nfacct.h
421 B
Del
OK
xt_osf.h
1.66 KB
Del
OK
xt_owner.h
535 B
Del
OK
xt_physdev.h
553 B
Del
OK
xt_pkttype.h
188 B
Del
OK
xt_policy.h
1.03 KB
Del
OK
xt_quota.h
400 B
Del
OK
xt_rateest.h
859 B
Del
OK
xt_realm.h
220 B
Del
OK
xt_recent.h
1.03 KB
Del
OK
xt_rpfilter.h
320 B
Del
OK
xt_sctp.h
2.27 KB
Del
OK
xt_set.h
1.78 KB
Del
OK
xt_socket.h
640 B
Del
OK
xt_state.h
331 B
Del
OK
xt_statistic.h
716 B
Del
OK
xt_string.h
664 B
Del
OK
xt_tcpmss.h
253 B
Del
OK
xt_tcpudp.h
1.22 KB
Del
OK
xt_time.h
730 B
Del
OK
xt_u32.h
752 B
Del
OK
Edit: nfnetlink_osf.h
#ifndef _NF_OSF_H #define _NF_OSF_H #include <linux/types.h> #include <linux/ip.h> #include <linux/tcp.h> #define MAXGENRELEN 32 #define NF_OSF_GENRE (1 << 0) #define NF_OSF_TTL (1 << 1) #define NF_OSF_LOG (1 << 2) #define NF_OSF_INVERT (1 << 3) #define NF_OSF_LOGLEVEL_ALL 0 /* log all matched fingerprints */ #define NF_OSF_LOGLEVEL_FIRST 1 /* log only the first matced fingerprint */ #define NF_OSF_LOGLEVEL_ALL_KNOWN 2 /* do not log unknown packets */ #define NF_OSF_TTL_TRUE 0 /* True ip and fingerprint TTL comparison */ /* Check if ip TTL is less than fingerprint one */ #define NF_OSF_TTL_LESS 1 /* Do not compare ip and fingerprint TTL at all */ #define NF_OSF_TTL_NOCHECK 2 #define NF_OSF_FLAGMASK (NF_OSF_GENRE | NF_OSF_TTL | \ NF_OSF_LOG | NF_OSF_INVERT) /* Wildcard MSS (kind of). * It is used to implement a state machine for the different wildcard values * of the MSS and window sizes. */ struct nf_osf_wc { __u32 wc; __u32 val; }; /* This struct represents IANA options * http://www.iana.org/assignments/tcp-parameters */ struct nf_osf_opt { __u16 kind, length; struct nf_osf_wc wc; }; struct nf_osf_info { char genre[MAXGENRELEN]; __u32 len; __u32 flags; __u32 loglevel; __u32 ttl; }; struct nf_osf_user_finger { struct nf_osf_wc wss; __u8 ttl, df; __u16 ss, mss; __u16 opt_num; char genre[MAXGENRELEN]; char version[MAXGENRELEN]; char subtype[MAXGENRELEN]; /* MAX_IPOPTLEN is maximum if all options are NOPs or EOLs */ struct nf_osf_opt opt[MAX_IPOPTLEN]; }; struct nf_osf_nlmsg { struct nf_osf_user_finger f; struct iphdr ip; struct tcphdr tcp; }; /* Defines for IANA option kinds */ enum iana_options { OSFOPT_EOL = 0, /* End of options */ OSFOPT_NOP, /* NOP */ OSFOPT_MSS, /* Maximum segment size */ OSFOPT_WSO, /* Window scale option */ OSFOPT_SACKP, /* SACK permitted */ OSFOPT_SACK, /* SACK */ OSFOPT_ECHO, OSFOPT_ECHOREPLY, OSFOPT_TS, /* Timestamp option */ OSFOPT_POCP, /* Partial Order Connection Permitted */ OSFOPT_POSP, /* Partial Order Service Profile */ /* Others are not used in the current OSF */ OSFOPT_EMPTY = 255, }; /* Initial window size option state machine: multiple of mss, mtu or * plain numeric value. Can also be made as plain numeric value which * is not a multiple of specified value. */ enum nf_osf_window_size_options { OSF_WSS_PLAIN = 0, OSF_WSS_MSS, OSF_WSS_MTU, OSF_WSS_MODULO, OSF_WSS_MAX, }; enum nf_osf_attr_type { OSF_ATTR_UNSPEC, OSF_ATTR_FINGER, OSF_ATTR_MAX, }; /* * Add/remove fingerprint from the kernel. */ enum nf_osf_msg_types { OSF_MSG_ADD, OSF_MSG_REMOVE, OSF_MSG_MAX, }; #endif /* _NF_OSF_H */
Save