-
Notifications
You must be signed in to change notification settings - Fork 121
Expand file tree
/
Copy pathPowerMeta-API.ps1
More file actions
463 lines (379 loc) · 15.8 KB
/
PowerMeta-API.ps1
File metadata and controls
463 lines (379 loc) · 15.8 KB
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
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
<#
By Beau Bullock (@dafthack)
.SYNOPSIS
PowerMeta-API - Find files hosted on target domains using Google Custom Search API
.DESCRIPTION
This script uses Google's Custom Search API to find publicly available files (PDF, DOCX, XLSX, etc.)
hosted on a target domain. It's more reliable than web scraping and doesn't trigger anti-bot measures.
.PARAMETER TargetDomain
The target domain to search for files (e.g., "example.com")
.PARAMETER ApiKey
Your Google Custom Search API key
.PARAMETER SearchEngineId
Your Google Custom Search Engine ID
.PARAMETER FileTypes
Comma-separated list of file extensions to search for
Default: "pdf,docx,xlsx,doc,xls,pptx,ppt"
.PARAMETER MaxResults
Maximum number of results to return per file type (default: 100)
.PARAMETER OutputFile
Optional file to save the results to
.PARAMETER OutputDir
Optional directory to save downloaded files
.PARAMETER Download
Switch to enable downloading files
.PARAMETER Extract
Switch to enable extracting metadata from files
.PARAMETER ExtractAllToCsv
Optional file to save extracted metadata to
.PARAMETER UserAgent
Optional User-Agent string for downloading files
.PARAMETER ShowUrls
Switch to enable verbose output showing URLs returned by API
.EXAMPLE
.\PowerMeta-API.ps1 -TargetDomain "example.com" -ApiKey "YOUR_API_KEY" -SearchEngineId "YOUR_SEARCH_ENGINE_ID"
.EXAMPLE
.\PowerMeta-API.ps1 -TargetDomain "example.com" -FileTypes "pdf,xlsx" -MaxResults 50 -OutputFile "results.txt"
.EXAMPLE
.\PowerMeta-API.ps1 -TargetDomain "example.com" -ApiKey "YOUR_API_KEY" -SearchEngineId "YOUR_SEARCH_ENGINE_ID" -Download -OutputDir "downloads"
.EXAMPLE
.\PowerMeta-API.ps1 -TargetDomain "example.com" -ApiKey "YOUR_API_KEY" -SearchEngineId "YOUR_SEARCH_ENGINE_ID" -Download -Extract -OutputDir "downloads"
.EXAMPLE
.\PowerMeta-API.ps1 -TargetDomain "example.com" -ApiKey "YOUR_API_KEY" -SearchEngineId "YOUR_SEARCH_ENGINE_ID" -Download -Extract -ExtractAllToCsv "metadata.csv" -OutputDir "downloads"
.NOTES
Setup Instructions:
1. Go to https://console.cloud.google.com/
2. Create a new project or select existing one
3. Enable the "Custom Search API"
4. Create credentials (API Key)
5. Go to https://programmablesearchengine.google.com/
6. Create a new search engine
7. Set search engine to search the entire web
8. Get your Search Engine ID
#>
param(
[Parameter(Mandatory = $true, Position = 0)]
[string]$TargetDomain,
[Parameter(Mandatory = $true, Position = 1)]
[string]$ApiKey,
[Parameter(Mandatory = $true, Position = 2)]
[string]$SearchEngineId,
[Parameter(Mandatory = $false)]
[string]$FileTypes = "pdf,docx,xlsx,doc,xls,pptx,ppt",
[Parameter(Mandatory = $false)]
[int]$MaxResults = 100,
[Parameter(Mandatory = $false)]
[string]$OutputFile = "",
[Parameter(Mandatory = $false)]
[string]$OutputDir = "",
[Parameter(Mandatory = $false)]
[switch]$Download,
[Parameter(Mandatory = $false)]
[switch]$Extract,
[Parameter(Mandatory = $false)]
[string]$ExtractAllToCsv = "",
[Parameter(Mandatory = $false)]
[string]$UserAgent = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/138.0.0.0 Safari/537.36",
[Parameter(Mandatory = $false)]
[switch]$ShowUrls
)
# Add System.Web assembly for URL encoding
Add-Type -AssemblyName System.Web
# Function to search for files using Google Custom Search API
function Search-FilesOnDomain {
param(
[string]$Domain,
[string]$FileType,
[string]$ApiKey,
[string]$SearchEngineId,
[int]$MaxResults
)
try {
Write-Host "[*] Searching for $FileType files on $Domain..."
$results = @()
$startIndex = 1
# Google Custom Search API allows max 10 results per request, so we need to paginate
while ($results.Count -lt $MaxResults) {
$query = "site:$Domain filetype:$FileType"
$encodedQuery = [System.Web.HttpUtility]::UrlEncode($query)
$apiUrl = "https://www.googleapis.com/customsearch/v1?key=$ApiKey&cx=$SearchEngineId&q=$encodedQuery&start=$startIndex"
Write-Host " [*] Requesting results $startIndex to $($startIndex + 9)..."
$response = Invoke-RestMethod -Uri $apiUrl -Method Get -TimeoutSec 120
if ($response.items) {
$batchCount = 0
if ($ShowUrls) {
Write-Host " [*] Debug: URLs returned by API:"
}
foreach ($item in $response.items) {
if ($ShowUrls) {
Write-Host " $($item.link)"
}
# Accept all results from the API since filetype: parameter should already filter correctly
$results += $item.link
$batchCount++
if ($ShowUrls) {
Write-Host " ✓ Added to results"
}
}
Write-Host " [*] Found $($response.items.Count) results in this batch, $batchCount added to results"
} else {
Write-Host " [*] No more results found"
break
}
$startIndex += 10
# Add small delay between API requests
Start-Sleep -Milliseconds 500
}
Write-Host "[*] Total $FileType files found: $($results.Count)"
return $results
}
catch {
Write-Host "[!] Error searching for $FileType files: $($_.Exception.Message)"
return @()
}
}
# Function to validate API credentials
function Test-APICredentials {
param(
[string]$ApiKey,
[string]$SearchEngineId
)
try {
Write-Host "[*] Testing API credentials..."
$testQuery = [System.Web.HttpUtility]::UrlEncode("test")
$testUrl = "https://www.googleapis.com/customsearch/v1?key=$ApiKey&cx=$SearchEngineId&q=$testQuery&num=1"
$response = Invoke-RestMethod -Uri $testUrl -Method Get -TimeoutSec 20
if ($response.searchInformation) {
Write-Host "[+] API credentials are valid!"
return $true
} else {
Write-Host "[!] API response format unexpected"
return $false
}
}
catch {
Write-Host "[!] API credentials test failed: $($_.Exception.Message)"
return $false
}
}
# Function to download files from URLs
function Download-Files {
param(
[array]$FileUrls,
[string]$OutputDir,
[string]$UserAgent
)
Write-Host "[*] Downloading $($FileUrls.Count) files now."
# Create output directory if it doesn't exist
if (!(Test-Path $OutputDir)) {
Write-Host "[*] Creating output directory: $OutputDir"
New-Item -ItemType Directory -Path $OutputDir -Force | Out-Null
}
$OutputPath = Convert-Path $OutputDir
# Disable SSL certificate validation for downloads
add-type @"
using System.Net;
using System.Security.Cryptography.X509Certificates;
public class TrustAllCertsPolicy : ICertificatePolicy {
public bool CheckValidationResult(
ServicePoint srvPoint, X509Certificate certificate,
WebRequest request, int certificateProblem) {
return true;
}
}
"@
$AllProtocols = [System.Net.SecurityProtocolType]'Ssl3,Tls,Tls11,Tls12'
[System.Net.ServicePointManager]::SecurityProtocol = $AllProtocols
[System.Net.ServicePointManager]::CertificatePolicy = New-Object TrustAllCertsPolicy
$counter = 1
foreach ($url in $FileUrls) {
try {
$filename = Split-Path $url -Leaf
$filepath = Join-Path $OutputPath $filename
# Handle duplicate filenames
if (Test-Path $filepath) {
$nameWithoutExt = [System.IO.Path]::GetFileNameWithoutExtension($filename)
$ext = [System.IO.Path]::GetExtension($filename)
$filename = "$nameWithoutExt-$counter$ext"
$filepath = Join-Path $OutputPath $filename
$counter++
}
Write-Host "[*] Downloading: $url"
Invoke-WebRequest -Uri $url -UserAgent $UserAgent -UseBasicParsing -OutFile $filepath -TimeoutSec 120
Write-Host "[+] Saved: $filename"
}
catch {
Write-Host "[!] Failed to download $url : $($_.Exception.Message)"
}
}
Write-Host "[*] Download complete. Files saved to: $OutputPath"
}
# Function to extract metadata using exiftool
function Extract-Metadata {
param(
[string]$OutputDir,
[string]$ExtractAllToCsv = ""
)
if (!(Test-Path $OutputDir)) {
Write-Host "[!] Output directory $OutputDir does not exist! Canceling metadata extraction."
return
}
$OutputPath = Convert-Path $OutputDir
try {
$exiftool = Get-ChildItem "exiftool.exe" -ErrorAction Stop
$exifpath = $exiftool.FullName
}
catch {
Write-Host "[!] Exiftool.exe was not found in the current directory!"
Write-Host "[!] Please download exiftool from https://exiftool.org/ and place it in the same directory as this script."
return
}
if ($ExtractAllToCsv -ne "") {
# Extract all metadata to CSV
Write-Host "[*] Extracting all metadata from $OutputDir to $ExtractAllToCsv"
$cmd = "& `"$exifpath`" `"$OutputPath`" -CSV > `"$ExtractAllToCsv`""
Invoke-Expression $cmd
Write-Host "[+] All metadata saved to: $ExtractAllToCsv"
}
else {
# Extract only Author and Creator metadata
Write-Host "[*] Extracting Author and Creator metadata from $OutputDir"
$filearray = Get-ChildItem $OutputPath
$output = @()
foreach ($file in $filearray) {
$filepath = Join-Path $OutputPath $file.Name
Write-Host "[*] Extracting metadata from: $($file.Name)"
$cmd = "& `"$exifpath`" `"$filepath`" -CSV -Author -Creator"
$exifout = Invoke-Expression $cmd | Out-String
$strippedout = $exifout -replace "SourceFile" -replace "Author" -replace "Creator" -replace "`n" -replace "`r"
$output += $strippedout -replace "^.*$($file.Name),"
}
$allmeta = @()
$allmeta += $output -split ","
$uniquemeta = $allmeta | Where-Object { $_ -ne "" } | Sort-Object -Unique
Write-Host ""
Write-Host "[*] Extracted 'Author' and 'Creator' metadata:"
Write-Host "----------------------------------------"
if ($uniquemeta.Count -gt 0) {
foreach ($meta in $uniquemeta) {
Write-Host $meta
}
} else {
Write-Host "No Author/Creator metadata found."
}
Write-Host ""
}
}
# Main execution
Write-Host "=========================================="
Write-Host "PowerMeta-API - Google Custom Search Tool"
Write-Host "=========================================="
Write-Host ""
# Validate API credentials
if (-not (Test-APICredentials -ApiKey $ApiKey -SearchEngineId $SearchEngineId)) {
Write-Host "[!] Invalid API credentials. Please check your API key and Search Engine ID."
Write-Host "[!] See the script header for setup instructions."
exit 1
}
# Parse file types
$fileTypeArray = $FileTypes -split "," | ForEach-Object { $_.Trim() }
Write-Host "[*] Target Domain: $TargetDomain"
Write-Host "[*] File Types: $($fileTypeArray -join ', ')"
Write-Host "[*] Max Results per type: $MaxResults"
Write-Host ""
# Search for each file type
$allResults = @()
foreach ($fileType in $fileTypeArray) {
$results = Search-FilesOnDomain -Domain $TargetDomain -FileType $fileType -ApiKey $ApiKey -SearchEngineId $SearchEngineId -MaxResults $MaxResults
$allResults += $results
Write-Host ""
}
# Remove duplicates and sort
$uniqueResults = $allResults | Sort-Object -Unique
Write-Host "=========================================="
Write-Host "SEARCH COMPLETE"
Write-Host "=========================================="
Write-Host "[*] Total unique files found: $($uniqueResults.Count)"
Write-Host ""
# Display results
if ($uniqueResults.Count -gt 0) {
Write-Host "Files found:"
Write-Host "------------"
foreach ($result in $uniqueResults) {
Write-Host $result
}
# Save to file if specified
if ($OutputFile -ne "") {
try {
$uniqueResults | Out-File -FilePath $OutputFile -Encoding UTF8
Write-Host ""
Write-Host "[+] Results saved to: $OutputFile"
}
catch {
Write-Host "[!] Error saving to file: $($_.Exception.Message)"
}
}
# Handle download functionality
if ($Download) {
if ($OutputDir -eq "") {
$OutputDir = Get-Date -Format "yyyy-MM-dd-HHmmss"
}
Download-Files -FileUrls $uniqueResults -OutputDir $OutputDir -UserAgent $UserAgent
}
elseif ($Download -eq $false) {
$title = "Download Files?"
$message = "Would you like to download all of the files discovered?"
$yes = New-Object System.Management.Automation.Host.ChoiceDescription "&Yes", "Downloads all of the target files."
$no = New-Object System.Management.Automation.Host.ChoiceDescription "&No", "The files will not be downloaded."
$options = [System.Management.Automation.Host.ChoiceDescription[]]($yes, $no)
$result = $host.ui.PromptForChoice($title, $message, $options, 0)
switch ($result) {
0 {
if ($OutputDir -eq "") {
$OutputDir = Get-Date -Format "yyyy-MM-dd-HHmmss"
}
Write-Host "[*] Now downloading the files."
Download-Files -FileUrls $uniqueResults -OutputDir $OutputDir -UserAgent $UserAgent
}
1 { Write-Host "[*] No files will be downloaded." }
}
}
# Handle metadata extraction
if ($Extract) {
if ($OutputDir -eq "") {
Write-Host "[!] No output directory specified for metadata extraction. Skipping."
} else {
Write-Host "[*] Now extracting metadata from the files."
if ($ExtractAllToCsv -ne "") {
Extract-Metadata -OutputDir $OutputDir -ExtractAllToCsv $ExtractAllToCsv
} else {
Extract-Metadata -OutputDir $OutputDir
}
}
}
elseif ($Extract -eq $false -and $OutputDir -ne "") {
$title = "Extract Metadata?"
$message = "Would you like to extract metadata from all of the files downloaded now?"
$yes = New-Object System.Management.Automation.Host.ChoiceDescription "&Yes", "Extracts metadata from downloaded files."
$no = New-Object System.Management.Automation.Host.ChoiceDescription "&No", "No metadata will be extracted at this time."
$options = [System.Management.Automation.Host.ChoiceDescription[]]($yes, $no)
$result = $host.ui.PromptForChoice($title, $message, $options, 0)
switch ($result) {
0 {
Write-Host "[*] Now extracting metadata from the files."
if ($ExtractAllToCsv -ne "") {
Extract-Metadata -OutputDir $OutputDir -ExtractAllToCsv $ExtractAllToCsv
} else {
Extract-Metadata -OutputDir $OutputDir
}
}
1 {
Write-Host "[*] No metadata will be extracted at this time."
Write-Host "[*] If you wish to extract metadata later, you can run:"
Write-Host " Extract-Metadata -OutputDir `"$OutputDir`""
}
}
}
} else {
Write-Host "[*] No files found for the specified criteria."
}