-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathrecon_ng_remote.bat
199 lines (175 loc) · 16.8 KB
/
recon_ng_remote.bat
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
@echo off
setlocal
rem https://www.youtube.com/watch?v=p2gpjTZgOa0 - OSINT - recon-ng information gathering example tutorial
set Proyecto=%1
set Domains=%2
set Documentacion=%3
set Timestamp=%4
set Server=%5
set Username=%6
set Password=%7
rem MODIFY WITH YOUR APIs
set google_api=
set github_api=
set hashes_api=
set shodan_api=
set pwnedlist_api=
set pwnedlist_secret=
set pwnedlist_iv=
set fullcontact_api=
set virustotal_api=
set twitter_api=
set twitter_secret=
set bing_api=
set builtwith_api=
set flickr_api=
set jigsaw_username=
set jigsaw_password=
set jigsaw_api=
set ipstack_api=
set ipinfodb_api=
set censysio_id=
set censysio_secret=
rem MODIFY WITH YOUR APIs
set Documentacion=%Documentacion:"=%
set DocumentacionReport="%Documentacion%\recon-ngReport - %Timestamp%.html"
set DocumentacionNetworks="%Documentacion%\recon-ngReport-Networks - %Timestamp%.txt"
set DocumentacionSubdomains="%Documentacion%\recon-ngReport-Subdomains - %Timestamp%.txt"
set DocumentacionIP="%Documentacion%\recon-ngReport-IP - %Timestamp%.txt"
@title=[Recon-ng] - %Proyecto%
rem git clone https://bitbucket.org/LaNMaSteR53/recon-ng.git
rem pip install -r REQUIREMENTS
rem Otros modulos para Recon-ng
rem https://github.com/scumsec/Recon-ng-modules
rem http://10degres.net/subdomain-enumeration/ mas tools
echo "Generando script..."
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'workspaces add %Proyecto%' > '/tmp/recon-ng-script_%Timestamp%.txt'"
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'add companies %Proyecto%' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'workspaces select %Proyecto%' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
set Domains=%Domains:"=%
for %%a in (%Domains:,= %) do (
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'add domains %%a' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
)
echo .
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'load recon/domains-hosts/netcraft' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'run' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'keys add bing_api %bing_api%' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'keys add builtwith_api %builtwith_api%' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'keys add fullcontact_api %fullcontact_api%' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'keys add github_api %github_api%' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'keys add google_api %google_api%' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'keys add google_cse %google_cse%' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'keys add hashes_api %hashes_api%' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'keys add shodan_api %shodan_api%' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
echo .
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'use recon/domains-hosts/bing_domain_api' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'run' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
echo .
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'use recon/domains-hosts/bing_domain_web' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'run' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
echo .
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'use recon/domains-hosts/builtwith' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'run' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
echo .
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'use recon/domains-hosts/brute_hosts' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'run' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
echo .
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'use recon/domains-hosts/ssl_san' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'run' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
echo .
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'use recon/domains-hosts/vpnhunter' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'run' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
echo .
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'use recon/domains-hosts/certificate_transparency' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'run' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
echo .
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'use recon/domains-hosts/google_site_web' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'run' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
echo .
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'use recon/domains-hosts/hackertarget' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'run' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
echo .
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'use recon/domains-hosts/mx_spf_ip' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'run' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
echo .
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'use recon/domains-hosts/shodan_hostname' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'run' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
echo .
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'use recon/domains-hosts/threatcrowd' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'run' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
echo .
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'use recon/netblocks-hosts/reverse_resolve' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'run' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
echo .
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'use recon/netblocks-hosts/shodan_net' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'run' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
rem "%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'use recon/netblocks-companies/whois_orgs' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
rem "%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'run' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
rem "%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'use recon/netblocks-ports/census_2012' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
rem "%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'run' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
rem "%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'use recon/netblocks-ports/censysio' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
rem "%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'run' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
rem "%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'use recon/ports-hosts/migrate_ports' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
rem "%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'run' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
echo .
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'use recon/hosts-hosts/reverse_resolve' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'run' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
echo .
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'use recon/hosts-hosts/resolve' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'run' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
echo .
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'use recon/hosts-hosts/bing_ip' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'run' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
echo .
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'use recon/hosts-hosts/freegeoip' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'run' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
echo .
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'use recon/hosts-hosts/ipinfodb' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'run' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
echo .
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'use recon/hosts-hosts/ssltools' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'run' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
rem "%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'use recon/hosts-ports/shodan_ip' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
rem "%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'run' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'back' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
echo .
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'spool start /tmp/recon-ngreport-networks - %Timestamp%.txt' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'query SELECT netblock FROM netblocks ORDER BY netblock' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'spool stop' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
echo .
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'spool start /tmp/recon-ngreport-ip - %Timestamp%.txt' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'query SELECT DISTINCT ip_address FROM hosts WHERE ip_address IS NOT NULL ORDER BY host' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'spool stop' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
echo .
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'spool start /tmp/recon-ngreport-subdomains - %Timestamp%.txt' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'query SELECT DISTINCT host,ip_address FROM hosts WHERE ip_address IS NOT NULL ORDER BY host' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'spool stop' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
echo .
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'load reporting/html' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'set CREATOR SVM' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'set CUSTOMER %Proyecto%' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'set FILENAME /tmp/recon-ngReport - %Timestamp%.html' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'set SANITIZE True' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'run' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "echo 'exit' >> '/tmp/recon-ng-script_%Timestamp%.txt'"
echo "Ejecutando..."
rem "%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "/root/recon-ng/recon-ng -r '/tmp/recon-ng-script_%Timestamp%.txt'"
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "which recon-ng ; if [ $? -ne 0 ] ; then /root/recon-ng/recon-ng -r '/tmp/recon-ng-script_%Timestamp%.txt' ; else recon-ng -r '/tmp/recon-ng-script_%Timestamp%.txt' ; fi"
echo "Generando Reporte..."
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "unix2dos '/tmp/recon-ngreport-networks - %Timestamp%.txt'"
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "unix2dos '/tmp/recon-ngreport-subdomains - %Timestamp%.txt'"
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "unix2dos '/tmp/recon-ngreport-ip - %Timestamp%.txt'"
"%~dp0pscp.exe" -P 22 -l %Username% -pw %Password% -C %Server%:"/tmp/recon-ngReport - %Timestamp%.html" %DocumentacionReport%
"%~dp0pscp.exe" -P 22 -l %Username% -pw %Password% -C %Server%:"/tmp/recon-ngreport-networks - %Timestamp%.txt" %DocumentacionNetworks%
"%~dp0pscp.exe" -P 22 -l %Username% -pw %Password% -C %Server%:"/tmp/recon-ngreport-subdomains - %Timestamp%.txt" %DocumentacionSubdomains%
"%~dp0pscp.exe" -P 22 -l %Username% -pw %Password% -C %Server%:"/tmp/recon-ngreport-ip - %Timestamp%.txt" %DocumentacionIP%
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "rm -f '/tmp/recon-ngReport - %Timestamp%.html'"
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "rm -f '/tmp/recon-ngreport-networks - %Timestamp%.txt'"
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "rm -f '/tmp/recon-ngreport-subdomains - %Timestamp%.txt'"
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "rm -f '/tmp/recon-ngreport-ip - %Timestamp%.txt'"
"%~dp0plink.exe" -no-antispoof -P 22 -ssh -P 22 -l %Username% -pw %Password% -C %Server% "rm -f '/tmp/recon-ng-script_%Timestamp%.txt'"
echo %DocumentacionReport%
echo %DocumentacionNetworks%
echo %DocumentacionSubdomains%
echo %DocumentacionIP%
pause