Skip to content

Instantly share code, notes, and snippets.

View leroyfal's full-sized avatar

Auguste Leroy F. leroyfal

View GitHub Profile
@leroyfal
leroyfal / tls_client.py
Created September 16, 2022 07:44 — forked from oborichkin/tls_client.py
Simple TLS client and server on python
import socket
import ssl
from tls_server import HOST as SERVER_HOST
from tls_server import PORT as SERVER_PORT
HOST = "127.0.0.1"
PORT = 60002
client = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
@leroyfal
leroyfal / AdbCommands
Created February 25, 2021 10:38 — forked from ernestkamara/AdbCommands
Adb useful commands list
== Adb Server
adb kill-server
adb start-server
== Adb Reboot
adb reboot
adb reboot recovery
adb reboot-bootloader
== Shell
@leroyfal
leroyfal / AdbCommands
Created March 5, 2018 20:07 — forked from Pulimet/AdbCommands
Adb useful commands list
== Adb Server
adb kill-server
adb start-server
== Adb Reboot
adb reboot
adb reboot recovery
adb reboot-bootloader
== Shell