Skip to content

Instantly share code, notes, and snippets.

View vito's full-sized avatar

Alex Suraci vito

  • Toronto, ON
  • 13:54 (UTC -04:00)
View GitHub Profile
@vito
vito / syscalls
Last active June 30, 2023 02:06
boring syscalls to filter from strace
futex,restart_syscall,epoll_wait,select,getdents64,close,sched_yield,epoll_ctl,accept4,setsockopt,getsockname,rt_sigreturn,rt_sigprocmask,rt_sigaction,fcntl,mprotect,mmap,nanosleep
@willurd
willurd / web-servers.md
Last active May 24, 2024 13:07
Big list of http static server one-liners

Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.

Discussion on reddit.

Python 2.x

$ python -m SimpleHTTPServer 8000