Skip to content

Instantly share code, notes, and snippets.

@nootropics
Created June 28, 2015 20:05
Show Gist options
  • Save nootropics/699079933027edfa73d6 to your computer and use it in GitHub Desktop.
Save nootropics/699079933027edfa73d6 to your computer and use it in GitHub Desktop.
0day priv8 honeypot detection
#!/bin/bash
# honeypot detection method
# priv8 dont share
if [ $(which perl) ]; then
echo "[+] not a honeypot"
else
echo "[-] RM -RF /VAR/LOG/*"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment