- SHARK JACK $59.99, url: https://shop.hak5.org/products/shark-jack?variant=21284894670961
- USB RUBBER DUCKY $49.99, url: https://shop.hak5.org/products/usb-rubber-ducky-deluxe
- PLUNDER BUG $49.99, url: https://shop.hak5.org/products/bug
- LAN TURTLE $59.99, https://shop.hak5.org/products/lan-turtle
- WIFI PINEAPPLE BASIC $99.99, url: https://shop.hak5.org/products/wifi-pineapple?variant=81044992
- PACKET SQUIRREL $59.99, url: https://shop.hak5.org/products/packet-squirrel
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require 'rubygems' | |
| require 'net/ldap' | |
| def get_ldap_response(ldap) | |
| msg = "Response Code: #{ ldap.get_operation_result.code }, Message: #{ ldap.get_operation_result.message }" | |
| raise msg unless ldap.get_operation_result.code == 0 | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| set -euo pipefail | |
| BASE="/qradar_backups" | |
| LOGDIR="/var/log/qradar" | |
| LOGFILE="$LOGDIR/qradar_backup_$(date +%F).log" | |
| MAIL_FROM="from@domain.tld" | |
| MAIL_TO="to@domain.tld" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <# | |
| .SYNOPSIS | |
| Universal Windows Server Log Config (2008-2025 Compatible) | |
| Language: English / Turkish (ASCII) | |
| Features: User Setup + Group Permissions + Firewall + Log Size Increase | |
| Note: User is VISIBLE everywhere. | |
| #> | |
| param ( | |
| [Parameter(Mandatory=$true, Position=0)] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import paramiko | |
| import csv | |
| import sys | |
| import socket | |
| import re | |
| # --- AYARLAR --- | |
| INPUT_CSV = "servers.csv" | |
| OUTPUT_REPORT = "envanter_analiz_raporu.csv" |
OlderNewer