Sinisterly
SPIRIT IS A NETWORKING SCANNER AND SSH BRUTE FORCING TOOL - Printable Version

+- Sinisterly (https://sinister.ly)
+-- Forum: Hacking (https://sinister.ly/Forum-Hacking)
+--- Forum: Website & Server Hacking (https://sinister.ly/Forum-Website-Server-Hacking)
+--- Thread: SPIRIT IS A NETWORKING SCANNER AND SSH BRUTE FORCING TOOL (/Thread-SPIRIT-IS-A-NETWORKING-SCANNER-AND-SSH-BRUTE-FORCING-TOOL)



SPIRIT IS A NETWORKING SCANNER AND SSH BRUTE FORCING TOOL - Deflate - 05-22-2024

Searching for a good linux bruteforce tool? Spirit is currently the best one we have!
Check out now the paid license is 10% off using code "DEFLATE"
Also you can use the FREE version which only works for port 22!

Join Telegram

[Image: 1X5qMgw.png]

AUTO BRUTE WITH ZONES:

Code:
# Create zone.lst containing IP addresses in CIDR notation $ cat >zone.lst<< EOF 192.168.0.0/16 172.16.0.0/12 10.0.0.0/8 EOF # autobrute will generate collision-free(non-repeating) random ports # scan and brute them over and over -- forever! ./spirit autobrute



RE: SPIRIT IS A NETWORKING SCANNER AND SSH BRUTE FORCING TOOL - Deflate - 06-27-2024

TIP:
Code:
1. Increase your file descriptor limits: ulimit -n 65535 2. Set a proper timeout based on the network latency towards your targets: --timeout 15s 3. Adjust threads according to your network bandwidth and server resources: --threads 1500 4. Disable host blocking on LAN: --block=false 5. Inspect `found.errors` for optimization clues. 6. Use `filter.lst` to skip bad SSH versions that could get your IP reported. Example Command: ./spirit brute --timeout 15s --threads 1500 --block=false

#NEW feature: ./spirit --tweak — configures your kernel settings w/ optimal values for scanning


RE: SPIRIT IS A NETWORKING SCANNER AND SSH BRUTE FORCING TOOL - dd_user - 10-01-2024

(05-22-2024, 07:47 PM)Deflate Wrote:
Searching for a good linux bruteforce tool? Spirit is currently the best one we have!
Check out now the paid license is 10% off using code "DEFLATE"
Also you can use the FREE version which only works for port 22!

Join Telegram

[Image: 1X5qMgw.png]

AUTO BRUTE WITH ZONES:

Code:
# Create zone.lst containing IP addresses in CIDR notation $ cat >zone.lst<< EOF 192.168.0.0/16 172.16.0.0/12 10.0.0.0/8 EOF # autobrute will generate collision-free(non-repeating) random ports # scan and brute them over and over -- forever! ./spirit autobrute