Skip to content
View filippolauria's full-sized avatar

Organizations

@consiglionazionaledellericerche
Block or Report

Block or report filippolauria

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
filippolauria/README.md

hey there

Pinned

  1. kesire kesire Public

    kesire.sh is a shell script designed to simplify the process of generating a private key and a certificate signing request using OpenSSL.

    Shell 3

  2. lirantal/daloradius lirantal/daloradius Public

    daloRADIUS is an advanced RADIUS web management application for managing hotspots and general-purpose ISP deployments. It features user management, graphical reporting, accounting, a billing engine…

    PHP 604 312

  3. darkoperator/dnsrecon darkoperator/dnsrecon Public

    DNS Enumeration Script

    Python 2.5k 525

  4. nerve nerve Public

    Forked from PaytmLabs/nerve

    NERVE Continuous Vulnerability Scanner

    Python

  5. LinEnum LinEnum Public

    Forked from rebootuser/LinEnum

    Scripted Local Linux Enumeration & Privilege Escalation Checks

    Shell 6 4

  6. A simple bash one-liner that, relyin... A simple bash one-liner that, relying on nmap and snmpget, scans for available printers on a given network. The results are sent to standard output and saved in the /tmp directory.
    1
    N="192.168.1.0/24" && \
    2
    H=$(sudo nmap -sS -sU -T5 -PE -pU:524,631,8611-8614,T:515,524,631,8611-8614,9100 -oG - --open -n $N | grep "/open" | cut -d' ' -f2 | tr '\n' ' ') && \
    3
    for p in $(sudo nmap -Pn -T5 -sU -p 161 -oG - --open -n $H | grep "/open" | cut -d' ' -f2); do \
    4
      S=$((snmpget -v1 -Ov -cpublic -t0.5 $p .1.3.6.1.2.1.1.1.0 | sed 's/^STRING:\s\+//') 2> /dev/null); \
    5
      if [ "$S" ]; then echo -e "$p\t: $S"; fi; \