Scripts

Posted:

[ Categories: ]

Category: Scripts

  • Scripts

    Posted:

    [ Categories: ]

    WordPress Security Scan: WPScanby J GreywoodSeptember 27, 2024 inotify-monitor_system.pyby J GreywoodSeptember 12, 2024 [Complete List] WordPress Security Scan: WPScanby J GreywoodSeptember 27, 2024 WWW Link Install and Use WPScan on Linux – …

  • WordPress Security Scan: WPScan

    Posted:

    [ Categories: ]

    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

    Posted:

    [ Categories: ]

    #!/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) …