forked from percx/Praeda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.txt
65 lines (41 loc) · 1.93 KB
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
This file is used to list a few config items and recommendation. Also some basic Praeda syntax
Required perl modules:
LWP::Simple
LWP::UserAgent
HTML::TagParser
URI::Fetch
HTTP::Cookies
IO::Socket
HTML::TableExtract
use Getopt::Std;
also it is advised to install "Crypt::SSLeay or IO::Socket::SSL" for ssl support
set root of praeda install in praeda.pl under
my $dirpath =".";
Praeda version 0.02.0.b syntax:
PRAEDA OPTIONS:
-g GNMAP_FILE
-t TARGET_FILE
-p TCP_PORT
-j PTOJECT_NAME
-l OUTPUT_LOG_FILE
-S SSL
GNMAP_FILE = This is a .gnmap file output by a nmap scan.
TARGET_FILE = List of IP addresses or Host names to enumerated
TCP_PORT = port address of targets to scan " At present only one port can be specified. This is expected to be modified in future version"
PROJECT_NAME = the name for this project. This will create a folder under the folder where Praeda was executed to contain logs and export info.
OUTPUT_LOG_FILE = name of log file for data output
SYNTAX FOR GNMAP FILE INPUT:
praeda.pl -g GNMAP_FILE -j PROJECT_NAME -l OUTPUT_LOG_FILE
SYNTAX FOR IP TARGET FILE LIST:
praeda.pl -t TARGET_FILE -p TCP_PORT -j PROJECT_NAME -l OUTPUT_LOG_FILE -s SSL
Examples:
./praeda.pl -g scan1.gnmap -j acmewidget -l results
./praeda.pl -t target.txt -p 80 -j project1 -l data-file
./praeda.pl -t target.txt -p 443 -j project1 -l data-file -s SSL
The results will create a folder called project1 and save all information in that folder. Also this will write out the following data.
targetdata.txt : This is the parsed results of .gnmap file
$LOGFILE-WebHost.txt : This is an output of all webservers querried listing IP:PORT:TITLE:SERVER
$LOGFILE.log : This file will contain the results of the modules executed.
RAW extract data including: Clones, Backups, Address Books ect...
****WARNING****
Also insure that your local firewall is turned off. Certain modules that require connection back to host system for the module to run correctly.