Skip to content

Instantly share code, notes, and snippets.

View nathanvy's full-sized avatar
🔌
unlimited power

nathanvy

🔌
unlimited power
View GitHub Profile
@nathanvy
nathanvy / pentest-arsenal.md
Created February 3, 2023 06:49 — forked from heinthanth/pentest-arsenal.md
Penetration Testing Tools for MacOS X
  • [] radare2 - brew
  • [] cutter (radare2) - brew cask
  • [] ghidra - brew cask
  • [] ida-free - brew cask
  • [] nmap - brew
  • [] proxychains - brew (https://gist.github.com/allenhuang/3792521)
  • [] sqlmap - brew
  • [] powershell - brew cask
  • [] impacket scripts - git
  • [] powersploit - git
@nathanvy
nathanvy / math.lisp
Created January 17, 2021 06:15 — forked from mheise/math.lisp
Some common math implemented in common lisp
(defun sum(l)
(reduce #'+ l))
(defun avg (a &rest rest)
(/ (apply #'+ a rest) (+ 1 (length rest))))
(defun fact(n)
(if (or (= n 1) (= n 0))
1
(* n (fact (- n 1)))))