Category: Scripts
-
WordPress Security Scan: WPScan
WWW Link Install and Use WPScan on Linux – A WordPress Vulnerability ScannerDownload #!/bin/bash # To update database to the lastest version, run # # wpscan –update # # Scan installed plugins # # wpscan –url http(s)://your-domain.com –enumerate p …
-
inotify-monitor_system.py
#!/usr/bin/env python3 # # watch: # ~/.password-store # ~/.gnupg # from inotifyrecursive import INotify, flags inotify = INotify() mask = flags.CREATE | flags.DELETE | flags.MODIFY | flags.DELETE_SELF | flags.ACCESS inotify.add_watch_recursive(“${HOME}/.password-store”, mask) inotify.add_watch_recursive(“${HOME}/.gnupg”, mask) while True: for event in inotify.read(): #print(event.name) …