If you are being barraged by automated recruiter trash, consider using the list below when setting up your email filters.
- thecroxgroup.com
- idctechnologies.com
- dice.com
#!/bin/bash | |
# Check if there are arguments | |
if [ $# -eq 0 ]; then | |
echo "No arguments supplied. Please provide the names of the files or directories to be deleted." | |
exit 1 | |
fi | |
# Loop through the arguments and find the files and folders to be deleted | |
for name in "$@"; do |
#!/bin/bash | |
for d in */ ; do | |
echo "Processing directory: $d" | |
find "$d" -type f -exec du -ah {} \; | sort -rh | head -n 10 | |
done |
#!/bin/bash | |
if [ "$#" -ne 1 ]; then | |
echo "You must enter exactly 1 command line argument (the string to search for)" | |
exit 1 | |
fi | |
grep -rnw './' -e "$1" |
import os | |
import sys | |
from typing import Dict, Optional | |
import requests | |
import json | |
import gzip | |
import boto3 | |
import botocore | |
# Import necessary libraries | |
from netmiko import ConnectHandler | |
# Define list of devices | |
devices = [ | |
{ | |
'device_type': 'cisco_ios', | |
'ip': '192.168.1.1', | |
'username': 'admin', | |
'password': 'password' |
import sys | |
import time | |
import platform | |
import subprocess | |
def continuous_traceroute(target, interval=1): | |
print(f"Starting continuous traceroute to {target} with an interval of {interval} seconds") | |
# Determine the appropriate command based on the operating system | |
command = "traceroute" if platform.system() != "Windows" else "tracert" |