tcp Senior C++ Dev for Windows Internals, TCP (Hybrid TLV) By www.xplace.com Published On :: Wed, 13 Nov 2024 18:52:17 GMT C++ Developer for Windows Internals (Hybrid TLV) Requirements: 10 years of experience working with C++ in Microsoft Windows environments. Experience in Object-Oriented development. In-depth knowledge of the Microsoft Windows operating system, especially Windows Internals. Experience in Multi-threading development and debugging. Experience in developing System Services under Windows. Knowledge of communication protocols such as TCP, UDP. Advantage: Experience with Microsoft .NET and C#. Expe... Full Article
tcp Using TCP Keepalive to Detect Network Errors By blog.gnugk.org Published On :: Fri, 08 Jan 2021 16:54:00 +0000 This is not only a H.323 topic, but since H.323 also uses TCP connections, it applies to H.323 as well: To detect network errors and signaling connection problems, you can enable TCP keep alive feature. It will increase signaling bandwidth used, but as bandwidth utilized by signaling channels is low from its nature, the increase should not be significant. Moreover, you can control it using keep alive timeout. The problem is that most system use keep alive timeout of 7200 seconds, which means the system is notified about a dead connection after 2 hours. You probably want this time to be shorter, like one minute or so. On each operating system, the adjustment is done in a different way. After settings all parameters, it's recommended to check whether the feature works correctly - just make a test call and unplug a network cable at either side of the call. Then see if the call terminates after the configured timeout. Linux systems Use sysctl -A to get a list of available kernel variables and grep this list for net.ipv4 settings (sysctl -A | grep net.ipv4). There should exist the following variables:net.ipv4.tcp_keepalive_time: time of connection inactivity after which the first keep alive request is sent net.ipv4.tcp_keepalive_probes: number of keep alive requests retransmitted before the connection is considered broken net.ipv4.tcp_keepalive_intvl: time interval between keep alive probes You can manipulate with these settings using the following command: sysctl -w net.ipv4.tcp_keepalive_time=60 net.ipv4.tcp_keepalive_probes=3 net.ipv4.tcp_keepalive_intvl=10 This sample command changes TCP keepalive timeout to 60 seconds with 3 probes, 10 seconds gap between each. With this, your application will detect dead TCP connections after 90 seconds (60 + 10 + 10 + 10). FreeBSD and MacOS X For the list of available TCP settings (FreeBSD 4.8 an up and 5.4): sysctl -A | grep net.inet.tcp net.inet.tcp.keepidle - Amount of time, in milliseconds, that the (TCP) connection must be idle before keepalive probes (if enabled) are sent. net.inet.tcp.keepintvl - The interval, in milliseconds, between keepalive probes sent to remote machines. After TCPTV_KEEPCNT (default 8) probes are sent, with no response, the (TCP)connection is dropped. net.inet.tcp.always_keepalive - Assume that SO_KEEPALIVE is set on all TCP connections, the kernel will periodically send a packet to the remote host to verify the connection is still up. therefore formula to calculate maximum TCP inactive connection time is following: net.inet.tcp.keepidle + (net.inet.tcp.keepintvl x 8) the result is in milliseconds. therefore, by setting net.inet.tcp.keepidle = 10000 net.inet.tcp.keepintvl = 5000 net.inet.tcp.always_keepalive =1 (must be 1 always) the system will disconnect a call when TCP connection is dead for: 10000 + (5000 x 8) = 50000 msec (50 sec) To make system remember these settings at startup, you should add them to /etc/sysctl.conf file Solaris For the list of available TCP settings: ndd /dev/tcp ? Keepalive related variables: - tcp_keepalive_interval - idle timeout Example: ndd -set /dev/tcp tcp_keepalive_interval 60000 Windows 2000 and Windows NT Search Knowledge Base for article ID 120642: http://support.microsoft.com/kb/120642/EN-US Basically, you need to tweak some registry entries under HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesTcpipParameters Full Article error detection keep-alive network tcp
tcp Tcp Client Server 1.1.8 By www.nsauditor.com Published On :: Tue, 21 Apr 2020 10:16:12 -0800 Tcp Client Sever is a useful network utility for testing network programs, network services, firewalls and intrusion detection systems. Tcp Client Sever can also be used for debugging network programs and configuring other network tools. Depending on Client-Server mode the tool can work as a Tcp client or Tcp server, accept multiple network connections, receive and send data over network. The tool is designed with a user-friendly interface and is easy to use. Full Article
tcp Tcp Port Forwarding 1.1.5 By www.nsauditor.com Published On :: Tue, 21 Apr 2020 10:16:12 -0800 Tcp Port Forwarding tool allows to capture and redirect TCP traffic that flows through a particular port. Tcp Port Forwarding software also can work as network bridge for redirecting TCP network traffic from one network card to another one. This tool is used for testing some services, firewall and intrusion detection systems. The program can also be used for debugging programs and configuring other network tools. Full Article
tcp Enhanced TCP BBR performance in wireless mesh networks (WMNs) and next-generation high-speed 5G networks By www.inderscience.com Published On :: 2024-07-01T23:20:50-05:00 TCP BBR is one of the most powerful congestion control algorithms. In this article, we provide a comprehensive review of BBR analysis, expanding on existing knowledge across various fronts. Utilising ns3 simulations, we evaluate BBR's performance under diverse conditions, generating graphical representations. Our findings reveal flaws in the probe's RTT phase duration estimation and unequal bandwidth sharing between BBR and CUBIC protocols. Specifically, we demonstrated that the probe's RTT phase duration estimation algorithm is flawed and that BBR and CUBIC generally do not share bandwidth equally. Towards the end of the article, we propose a new improved version of TCP BBR which minimises these problems of inequity in bandwidth sharing and corrects the inaccuracies of the two key parameters RTprop and cwnd. Consequently, the BBR' protocol maintains very good fairness with the Cubic protocol, with an index that is almost equal to 0.98, and an equity index over 0.95. Full Article
tcp End-to-End Performance Evaluation of Selected TCP Variants across a Hybrid Wireless Network By Published On :: Full Article
tcp Re: CVE-2024-36905: Linux kernel: Divide-by-zero on shutdown of TCP_SYN_RECV sockets By seclists.org Published On :: Tue, 12 Nov 2024 15:03:15 GMT Posted by Solar Designer on Nov 12NIST doesn't appear to provide their own CVSS vectors/scores lately. However, they republish (with attribution) some third-party ones, this time from CISA-ADP. The CISA-ADP CVSS vector for this vulnerability specifies that it not only is network-reachable, but also that it has High impact not only on Availability, but also on Confidentiality and Integrity. This results in a CVSSv3.1 score of 9.8. Even merely correcting the vector not to... Full Article
tcp Re: CVE-2024-36905: Linux kernel: Divide-by-zero on shutdown of TCP_SYN_RECV sockets By seclists.org Published On :: Tue, 12 Nov 2024 16:42:28 GMT Posted by Clemens Lang on Nov 12Hi, I think the source for the CISA-ADP data is at [1]. For this specific CVE, the relevant file would be [2]. Their readme has a section at the bottom, where they encourage feedback: I’m aware of at last one prior case where a similar case of (IMHO) overblown CVSS scores was discussed in an issue on this particular GitHub project [3]. Somebody seems to already have opened a ticket for this CVE, too: [4] [1]:... Full Article
tcp RE: CVE-2024-36905: Linux kernel: Divide-by-zero on shutdown of TCP_SYN_RECV sockets By seclists.org Published On :: Tue, 12 Nov 2024 17:06:25 GMT Posted by Joel GUITTET on Nov 12Hello First thanks to Alexander for reposting because I was not able to do so! You're right Clemens, I have myself ask the question on this github (https://github.com/cisagov/vulnrichment/issues/130), but still no information for the moment. Joel Full Article
tcp A Novel Light-Harvesting ZIF-9-TCPP as a Promising FRET-based Ratiometric Fluorescence Probe for Sperm Mobility By pubs.rsc.org Published On :: Analyst, 2024, Accepted ManuscriptDOI: 10.1039/D4AN01305K, PaperYi-Xuan Li, Yu-Xuan Dai, Ju-Zheng Wang, Jérôme Chauvin, Xueji Zhang, Serge Cosnier, Robert Marks, Dan ShanThe concentration of zinc ions in semen is significantly correlated to the sperm viability and male fertility. In this work, a reliable ratiometric fluorescence probe (ZIF-9-TCPP) based on the efficient...The content of this RSS Feed (c) The Royal Society of Chemistry Full Article
tcp How To Find Out Your Ip Address And Other Tcp/ip Settings In Windows By www.bleepingcomputer.com Published On :: 2006-01-19T23:39:18-05:00 Full Article
tcp Reset TCP/IP Protocol Suite By www.bleepingcomputer.com Published On :: 2016-07-04T13:20:01-05:00 Full Article
tcp Linux / FreeBSD TCP-Based Denial Of Service By packetstormsecurity.com Published On :: Tue, 18 Jun 2019 15:50:02 GMT Netflix has identified several TCP networking vulnerabilities in FreeBSD and Linux kernels. The vulnerabilities specifically relate to the minimum segment size (MSS) and TCP Selective Acknowledgement (SACK) capabilities. The most serious, dubbed _"SACK Panic_," allows a remotely-triggered kernel panic on recent Linux kernels. There are patches that address most of these vulnerabilities. If patches can not be applied, certain mitigations will be effective. Full Article
tcp Slackware Security Advisory - tcpdump Updates By packetstormsecurity.com Published On :: Wed, 02 Oct 2019 15:03:37 GMT Slackware Security Advisory - New libpcap and tcpdump packages are available for Slackware 14.0, 14.1, 14.2, and -current to fix security issues. Full Article
tcp Linux/x86_64 TCP/4444 Bindshell With Password Shellcode By packetstormsecurity.com Published On :: Sun, 18 Aug 2019 18:22:22 GMT 129 bytes small Linux/x86_64 bind (4444/TCP) shell (/bin/sh) + password (pass) shellcode. Full Article
tcp Linux/x86_64 Reverse Shell TCP/4444 With Password Shellcode By packetstormsecurity.com Published On :: Tue, 20 Aug 2019 10:22:22 GMT 120 bytes small Linux/x86_64 reverse (127.0.0.1:4444/TCP) shell (/bin/sh) + password (pass) shellcode. Full Article
tcp Linux/x86 TCP Reverse Shell 127.0.0.1 Nullbyte Free Shellcode By packetstormsecurity.com Published On :: Thu, 05 Sep 2019 18:21:11 GMT Linux/x86 TCP reverse shell 127.0.0.1 nullbyte free shellcode. Full Article
tcp Linux/x86 Bind TCP Port 43690 Null-Free Shellcode By packetstormsecurity.com Published On :: Tue, 17 Sep 2019 13:33:33 GMT 53 bytes small Linux/x86 bind TCP port 43690 null-free shellcode. Full Article
tcp Covert Channel And Data Hiding In TCP/IP By packetstormsecurity.com Published On :: Mon, 04 Nov 2019 02:22:22 GMT Whitepaper called Covert Channel and Data Hiding in TCP/IP. Full Article
tcp Linux/x64 Reverse TCP Stager Shellcode By packetstormsecurity.com Published On :: Tue, 17 Dec 2019 13:03:33 GMT 188 bytes small Lnux/x64 reverse TCP stager shellcode. Full Article
tcp CHIYU BF430 TCP IP Converter Cross Site Scripting By packetstormsecurity.com Published On :: Tue, 11 Feb 2020 15:44:17 GMT CHIYU BF430 TCP IP Converter suffers from a persistent cross site scripting vulnerability. Full Article
tcp Malbait TCP/UDP Honeypot By packetstormsecurity.com Published On :: Wed, 20 Jun 2018 17:02:22 GMT Malbait is a honeypot written in perl. It creates fake servers and supports both TCP and UDP protocols, either singly or in combination. It outputs in CSV format as well as giving more detailed text reports. You can serve fake Telnet, FTP, SMTP, POP3, HTTP, TR-69, IMAP, asciitime, systat and echo servers, as well as serving blank or random output. Full Article
tcp rdp2tcp Tunneling Tool 0.1 By packetstormsecurity.com Published On :: Mon, 10 Jan 2011 11:11:11 GMT rdp2tcp is a tunneling tool on top of remote desktop protocol (RDP). It uses RDP virtual channel capabilities to multiplex several TCP ports forwarding over an already established rdesktop session. Full Article
tcp tcpdump 4.9.3 By packetstormsecurity.com Published On :: Tue, 01 Oct 2019 19:57:32 GMT tcpdump allows you to dump the traffic on a network. It can be used to print out the headers and/or contents of packets on a network interface that matches a given expression. You can use this tool to track down network problems, to detect many attacks, or to monitor the network activities. Full Article
tcp Performance evaluation of TCP over optical channels and heterogeneous networks By digital.lib.usf.edu Published On :: Sat, 15 Feb 2014 18:12:07 -0400 Full Article
tcp Performance analysis of TCP/IP over high bandwidth delay product networks By digital.lib.usf.edu Published On :: Sat, 15 Feb 2014 18:15:14 -0400 Full Article
tcp Evaluation of available bandwidth estimation tools (abets) and their application in improving tcp performance By digital.lib.usf.edu Published On :: Sat, 15 Feb 2014 18:20:04 -0400 Full Article