Collei :verified: · @kohelet
116 followers · 349 posts · Server mstdn.social

Did you know the command traceroute is sending "SUPERMAN" as data in the UDP packet?

The other day was learning about the difference between tracert and traceroute, and noticed that when sniffing.

Couldn't find anything online but the source code (added in comment) of where it sens SUPERMAN.

#icmp #networking #superman #Linux #udp #traceroute #wireshark

Last updated 1 year ago

Jef · @jfbucas
82 followers · 312 posts · Server mastodon.dias.ie

@catsalad

I explained the joke to daughter. To demonstrate she understood, she gives me an example of real life :

the Golden Records onboard 's missions.

We don't know if it'll be received, or when, or even if it'll be understood.

#udp #nasa #voyager #prouddaddy #geekdaddy #goldenrecord #joke #geek #Astrodon #network #protocol

Last updated 1 year ago

DNS-OARC · @dnsoarc
111 followers · 46 posts · Server mastodns.net

v2.13.1 released!
- fixes to in-progress queries
- fixes to TCP module
- fix to stream binary format input

github.com/DNS-OARC/dnsperf/re

#dnsperf #dns #performance #testing #udp #tcp #dot #doh #opensource

Last updated 1 year ago

HEAPWOLF · @heapwolf
555 followers · 1010 posts · Server fosstodon.org

I did a quick little screen cast about how to create a server inside a web page. Our protocol uses this module, which is how we can create a p2p environment that runs on mobile, desktop, or even heedlessly in the terminal all with a single codebase.

youtube.com/watch?v=6pZ8vjpYj4

#udp #p2p

Last updated 1 year ago

katzenberger · @katzenberger
226 followers · 2216 posts · Server social.tchncs.de

Interesting:

»Each copy of an app using the core library acts as a network node […] There are no special nodes, and there's no single point of failure. The project supports , macOS, Windows, Android, iOS, and web apps.

Veilid can talk over and , and connections are authenticated, timestamped, strongly end-to-end encrypted, and digitally signed to prevent eavesdropping, tampering, and impersonation.«

theregister.com/2023/08/12/vei

#veilid #linux #udp #tcp

Last updated 1 year ago

OSiUX · @osiux
153 followers · 143 posts · Server rebel.ar
Peter Czanik · @PCzanik
279 followers · 471 posts · Server fosstodon.org

No matter how awkward you feel when you hear about in the age of encrypted TCP connections, UDP syslog is here to stay. The good news is that high performance UDP log collection is now part of 4.2.0.

syslog-ng.com/community/b/blog

#udp #syslog #syslog_ng #logmanagement

Last updated 1 year ago

Mike Kasprzak 🦖 · @mike
1063 followers · 973 posts · Server jammer.social

Ah ha, that's a "feature". 🙄

To sync folders with /#KVM and , you need to use file sharing, which means installing an NFS server on your machine. Easy enough. And depending on the age of the , you may need to enable support in your host machine.

🎉

#qemu #vagrant #linux #nfs #vm #udp

Last updated 1 year ago

Tadahide · @tadahide
1 followers · 30 posts · Server techhub.social

Today, there are many E2E communication services on the market. These services are claimed to be secure through encryption and other means.

Are these really so?
Is it really end-to-end communication?
Does encryption really prevent information leakage?

Only a few people in the world understand the meaning of these questions.



#informationtheory #telecom #ICT #onetimepad #entropy #infosec #cryptography #internetprotocol #tcp #udp #web3 #defense #cybersecurity #ddosattacks #ciso #e2e

Last updated 1 year ago

Peter Czanik · @PCzanik
268 followers · 380 posts · Server fosstodon.org

Some very useful advice about from @bazsi, original author of syslog-ng:

axoflow.com/syslog-over-udp-ke

#udp #syslog

Last updated 1 year ago

El Mostrador (mirror) · @elmostrador
705 followers · 13543 posts · Server mas.to

Escucha el pódcast: “Por primera vez que la opción gobierno autoritario supera a quienes creen en la ”- Claudio Fuentes sobre estudio del Laboratorio Constitucional de la en con Mirna Schindler

#alpanpan #udp #democracia

Last updated 1 year ago

TomTooM · @tomtoom
125 followers · 559 posts · Server pouet.chapril.org

Comment utiliser le protocole de transmission. à faible latence pour transmettre de la vidéo via une connexion 4G/LTE plutôt moyenne ayant de la perte importante sachant que le transfert est fait en ? Après un certain temps à chercher, je décide de forcer le TTL de l'émission vidéo à 254 au lien de 64. Et en allongeant la durée de vie de paquets cela a solutionné mes problèmes d'artéfacts vidéo, sans rien changer à la latence.😄
fr.wikipedia.org/wiki/Time_to_

#udp #srt

Last updated 1 year ago

@tuwat@ruhr.social · @tuwat
56 followers · 347 posts · Server ruhr.social

I2S Microfon und 3W Class D Verstärker - mal schauen ob man daraus ein bauen kann

#inmp441 #max98357 #udp #intercom

Last updated 1 year ago

Saemon Zixel · @saemonzixel
15 followers · 57 posts · Server lor.sh

Bash тоже умеет слать данные по TCP и UDP. Я этим пользовался, когда писал сетевые тесты.

Например, вот так можно послать минимальный валидный HTTP GET запрос:

echo -e 'GET /maintenance/start HTTP/1.0\r\n\r\n' > /dev/tcp/127.0.0.1/80

А вот так можно отправить Standart query на Google Public DNS:

echo -e '\x00\x01\x01\x00\x00\x01\x00\x00\x00\x00\x00\x00\x03www\x06google\x03com\x00\x00\x01\x00\x01' > /dev/udp/8.8.8.8/53

При этом если IP-адрес не существует или не отвечает, то в случае с TCP, bash будет где-то минуту пытаться подключиться (слать SYN-пакеты) прежде чем вернёт ошибку. А в случае с UDP, bash просто пошлёт данные в никуда и не вернёт никакой ошибки.

К сожалению, получить ответ на посланные данные нельзя :(. Но можно прочитать из сокета данные. Например, вот так можно узнать, что нам скажет GitHub.com с SSH порта:

cat < /dev/tcp/github.com/22

Через некоторое время в терминале выведется "SSH-2.0-babeld-077acb5b" и bash продолжит ждать следующие данные, пока сокет не будет закрыт с той стороны.

А вот открывать сокет на слушание - bash уже не умеет. И вот это жаль, конечно.

#linux #unix #bash #net #tcp #udp #testing #dev

Last updated 1 year ago

DeaDSouL :fedora: · @DeaDSouL
258 followers · 458 posts · Server fosstodon.org

Thank you to our Emperor Partner , for our delicious packets and pipes!

We couldn't deliver without you!

(We'd make a joke ... but you might not get it 🥁✨)

aarnet.edu.au

#network #sponsor #aarnet #everythingopen #udp

Last updated 1 year ago

Thomas Ganter · @Thomas
10 followers · 337 posts · Server blog.fami.ga

betterprogramming.pub/why-i-wi

Smarter Every Day.

Ich habe nicht gewusst dass ein inhärentes Problem mit hat, und dass die einzige Lösung dafür ist ein anderes BaseImage zu verwenden.

#alpine #dns #docker #container #DNSoverTCP #udp

Last updated 1 year ago

CK's Technology News · @CKsTechNews
1943 followers · 4979 posts · Server cktn.todon.de

#udp #discovery

Last updated 1 year ago

Blain Smith · @blainsmith
358 followers · 513 posts · Server fosstodon.org

Reverse Engineering A Mysterious UDP Stream in My Hotel gkbrk.com/2016/05/hotel-music/

#udp #networking #wireshark

Last updated 1 year ago

Francis 🚀 Gulotta · @reconbot
466 followers · 7459 posts · Server toot.cafe

My usecase is a local network - I'm going with 64kb because it's all the memory I'll ever need.

#udp

Last updated 1 year ago