Skip to content

Instantly share code, notes, and snippets.

View upsetbit's full-sized avatar

cai. upsetbit

View GitHub Profile
@akshaybabloo
akshaybabloo / get_dns_records.py
Last active May 9, 2024 13:22
Printing all DNS records using DNSPython in Python 3
#!/usr/bin/env python
# -*- coding utf-8 -*-
#
# Copyright 2016 Akshay Raj Gollahalli
import dns.resolver
def get_records(domain):
"""
@alexandreaquiles
alexandreaquiles / Cliente.java
Created June 20, 2014 23:49
Pequeno chat feito em Java usando Sockets. Parte do apêndice do FJ-11: http://www.caelum.com.br/apostila-java-orientacao-objetos/apendice-sockets/
package sockets.chat.cliente;
import java.io.IOException;
import java.io.PrintStream;
import java.net.Socket;
import java.net.UnknownHostException;
import java.util.Scanner;
public class Cliente {