- Carnivore - Predator
- Formerly known as THC HackSuite, Carnivore - Predator stands at the forefront of cutting-edge cybersecurity tools, redefining the landscape of penetration testing with unparalleled innovation. Designed to empower ethical hackers, security professionals, and enthusiasts alike, Carnivore - Predator is the ultimate Pentest CMS that puts you in command.
current version: 0.7.0 - PREDATOR
This article explains how to effectively make use of AntiFTP.
author: Remco Kouw
created: 27-Apr-2024
updated: 27-Apr-2024
AntiFTP Introduction
This documentation details the functionality of the THC AntiFTP (thc_af) module.
AntiFTP is a module designed to brute force the password of a user account using wordlists.
Interface Parameters
- FTP Server Location: IP address or hostname of the FTP server.
- Username: The username whose password is to be retrieved.
- Verbose Mode: Displays detailed information during the brute force attack.
- Port Number: Port number on which the FTP service is listening.
- Timeout: Number of seconds before a timeout occurs.
- Select Wordlist: Menu containing names of wordlists from the Wordlists folder.
ModGlue Variables
- $_CONTEXT['thc_af']['log']: (string) Absolute path to the module's log file.
- $_CONTEXT['thc_af']['user']: (string) User to be attacked.
- $_CONTEXT['thc_af']['wordlist']: (string) Absolute path to the wordlist file located in the Wordlists folder.
- $_CONTEXT['thc_af']['wordlistdata']: (array) Data from the wordlist, each password on a new line.
- $_CONTEXT['thc_af']['port']: (int) TCP port on which the FTP service is listening, usually port 21.
- $_CONTEXT['thc_af']['timeout']: (int) Timeout in seconds.
- $_CONTEXT['thc_af']['keys']: (array) Previously hacked passwords found in the log file (available only when the View Passes case is set).
- $_CONTEXT['thc_af']['attempts']: (int) Total number of attempts.
- $_CONTEXT['thc_af']['found']: (boolean) Indicates if the password was found. If true, the password was found.
- $_CONTEXT['thc_af']['connection']: (resource) Connection to the FTP server.
- $_CONTEXT['thc_af']['lastpass']: (string) Last password attempt.
- $_CONTEXT['thc_af']['laststamp']: (int) Timestamp of the last attempt.
Resource Settings
- Time Limit: PHP default.
- Memory Limit: PHP default.
Expanding AntiFTP
N/A
Dependencies
- FTP
Known Issues
This module utilizes dictionary attack brute forcing, which can be resource-intensive. If you encounter time limit or memory issues, consider adjusting the module's settings.
Created by Remco Kouw: 2008-2024