Hello World
#intro#meta
Hello World
Welcome to the first WeaveSec post. This blog is built with Next.js 15, styled after the index, and deployed on Vercel.
What we cover
Security research notes, tool walkthroughs, and the occasional war story.
Example code
import socket
def port_scan(host: str, port: int) -> bool:
with socket.socket() as s:
s.settimeout(1)
return s.connect_ex((host, port)) == 0
print(port_scan("127.0.0.1", 22))
Stack
This blog uses wikilinks like [[index]] to connect pages, a D3 graph view, and client-side fuzzy search.