Skip to content

Instantly share code, notes, and snippets.

View AcnodeLabs's full-sized avatar

AcnodeLabs AcnodeLabs

View GitHub Profile
@legnaleurc
legnaleurc / telnet_client.c
Last active April 17, 2023 06:21
Simple Telnet Client
/* http://l3net.wordpress.com/2012/12/09/a-simple-telnet-client/ */
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <arpa/inet.h>
#include <termios.h>
#include <fcntl.h>