Skip to content

Instantly share code, notes, and snippets.

@devop-su
devop-su / sublime-SecureCRT.vbs
Created July 7, 2018 14:57
ISP switches SecureCRT Tabs Description script habrahabr
#$language = "VBScript"
#$interface = "1.0"
crt.Screen.Synchronous = True
crt.screen.IgnoreEscape = True
scr_ver = "0,55"
Developer = False
UpdateEngine = "\\SERVER\Script\Script_Update.vbs"
' Change Log:
' v0.1 The very beggining. Here where it starts.
@devop-su
devop-su / auth.log-grep-sshd.____Failed__Did.sh
Last active November 28, 2017 07:37
sshd auth.log login attempts - distributed brute force attacks from botnets
# trough pager
grep sshd.\*Failed /var/log/auth.log | less
grep sshd.*Did /var/log/auth.log | less
# realtime
tail -f /var/log/auth.log | grep sshd.\*Failed