-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhelp.html
127 lines (88 loc) · 3.58 KB
/
help.html
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<!DOCTYPE html>
<html>
<head>
<title>Help</title>
<!--
// <script type="text/javascript">
// $(document).ready(function() {
// // $.ajax({
// // url : "ricco/README.md",
// // dataType: "text",
// // success : function (data) {
// // $("xmp").text(data);
// // }
// // });
// $( "xmp" ).load( "ricco/README.md" );
// $.getScript( "assets/js/strapdown.js", function( data, textStatus, jqxhr ) {
// console.log( data ); // Data returned
// console.log( textStatus ); // Success
// console.log( jqxhr.status ); // 200
// console.log( "Load was performed." );
// });
// });
// </script>
-->
</head>
<body>
<xmp theme="cyborg" style="display:none;">
![Supported Python versions](https://img.shields.io/badge/python-2.7-blue.svg)
![Supported OS](https://img.shields.io/badge/Supported%20OS-Linux-yellow.svg)
#Ricco
Simple Reconnaissance Framework.
Description
============
Ricco is a simple and extensible framework for retrieving information about target.
Features
========
- DNS Information
- Photos by Location.
- Whois Information ( only in terminal mode currently).
- Fuzzing on suffixes, dirs, and subdomains.
- Mails For Host.
Examples
========
Run specified Strategy on Target:
```python ricco.py --target <TARGET> --strategy <STRATEGY>```
Run specified Vector on Target:
```python ricco.py --target <TARGET> --vector <VECTOR>```
Run specified Vector on Target:
```python ricco.py --target <TARGET> --vector <VECTOR> --vector-args <ARG>=<VALUE>```
Show list of all Strategies:
```python ricco.py --show-strategies```
Show list of all Vectors:
```python ricco.py --show-vectors```
Help on specified Strategy:
```python ricco.py --help-vector <VECTOR>```
Help on specified Vector:
```python ricco.py --help-vector <VECTOR>```
Output Results ad json:
```python ricco.py --target <TARGET> --strategy <STRATEGY> --output-json```
Currently Available Vectors:
| Vector | Description | Arguments |
|:--------------------|:-----------------------------------------|:------------|
| dirs_fuzzing | Check dirs on host | |
| suffixes_fuzzing | Check suffixes for host. | |
| iana_whois_info | Get whois info from IANA. | |
| domain_whois_info | Get whois info from domain whois. | |
| panoramio_by_box | Search Panoramio for photos by location. | radius |
| location_info | Get Info About location | |
| nmap_banner | Get banners from nmap banner nse. | |
| dns_info | Get information from dns server. | |
| dns_zone_transfer | Try to Make Zone Transfer. | |
| http_grab_banner | Get banner from http/https. | |
| flickr_by_radius | Search Flickr for photos by location. | radius |
| ip_whois_info | Get whois info from IPWHOIS | |
| mails_on_host | Search for mails by host. | |
| subdomains_fuzzing | Check subdomains for host. | |
| instagram_by_radius | Search Instagram for photos by location. | radius |
| youtube_by_radius | Search YouTube for photos by location. | radius |
Installation
============
- Clone this repository
- pip install requirements.txt.
- python ricco.py --help
</xmp>
<script src="assets/packages/strapdown.js/strapdown.js"></script>
<p>© Using Strapdown.js<p>
</body>
</html>