Skip to content
This repository was archived by the owner on Dec 17, 2021. It is now read-only.

Commit d41e0b1

Browse files
committed
documentation update
1 parent 86aa052 commit d41e0b1

File tree

4 files changed

+105
-22
lines changed

4 files changed

+105
-22
lines changed

docs/en-US/Get-UrlScanioScan.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Get urlscan.io scan results.
1313
## SYNTAX
1414

1515
```
16-
Get-UrlScanioScan [-uuid] <String> [-Raw] [<CommonParameters>]
16+
Get-UrlScanioScan [-id] <String[]> [-Raw] [<CommonParameters>]
1717
```
1818

1919
## DESCRIPTION
@@ -31,18 +31,18 @@ Get urlscan.io report for the scan with uuid b14db0aa-013c-4aa9-ad5a-ec947a2278c
3131

3232
## PARAMETERS
3333

34-
### -uuid
35-
UUID of scan to get details on.
34+
### -id
35+
Guid of scan to get details on.
3636

3737
```yaml
38-
Type: String
38+
Type: String[]
3939
Parameter Sets: (All)
40-
Aliases:
40+
Aliases: uuid, _id
4141

4242
Required: True
4343
Position: 1
4444
Default value: None
45-
Accept pipeline input: True (ByPropertyName)
45+
Accept pipeline input: True (ByPropertyName, ByValue)
4646
Accept wildcard characters: False
4747
```
4848

docs/en-US/PSUrlScanio.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11
---
22
Module Name: PSUrlScanio
33
Module Guid: 00ae67df-b1ae-400c-bcb4-dad7feba9db0
4-
Download Help Link: {{ Update Download Link }}
5-
Help Version: {{ Please enter version of help manually (X.X.X.X) format }}
4+
Download Help Link: {{ n/a }}
5+
Help Version: {{ 0.0.0.1 }}
66
Locale: en-US
77
---
88

99
# PSUrlScanio Module
1010
## Description
11-
{{ Fill in the Description }}
11+
Powershell module for interacting with the urlscan.io api.
1212

1313
## PSUrlScanio Cmdlets
1414
### [Connect-UrlScanio](Connect-UrlScanio.md)
15-
{{ Fill in the Description }}
15+
Create or update the urlscan.io config file which contains the API key used within the PSUrlScanio module.
1616

1717
### [Get-UrlScanioScan](Get-UrlScanioScan.md)
18-
{{ Fill in the Description }}
18+
Get urlscan.io scan results for the provided uuid.
1919

2020
### [Search-UrlScanio](Search-UrlScanio.md)
21-
{{ Fill in the Description }}
21+
Search urlscan.io using the provided parameters or providing a filter using Elasticsearch Query String syntax
22+
(https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-query-string-query.html)
2223

2324
### [Start-UrlScanioScan](Start-UrlScanioScan.md)
24-
{{ Fill in the Description }}
25-
25+
Start-UrlScanioScan triggers a scan of the specified URL.

docs/en-US/Search-UrlScanio.md

Lines changed: 85 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,21 @@ Search urlscan.io results.
1414

1515
### Filter
1616
```
17-
Search-UrlScanio [-Filter <String>] [-Limit <Int32>] [-Raw] [<CommonParameters>]
17+
Search-UrlScanio [-Filter <String>] [-Limit <Int32>] [-All] [-Raw <String>] [-Specific] [-SortBy <String>]
18+
[-Descending] [-Ascending] [<CommonParameters>]
1819
```
1920

2021
### Params
2122
```
2223
Search-UrlScanio [-Domain <String>] [-IP <String>] [-ASN <String>] [-ASNName <String>] [-Filename <String>]
23-
[-Hash <String>] [-Server <String>] [-Limit <Int32>] [-Raw] [<CommonParameters>]
24+
[-Hash <String>] [-Server <String>] [-Limit <Int32>] [-All] [-Raw <String>] [-Specific] [-SortBy <String>]
25+
[-Descending] [-Ascending] [<CommonParameters>]
26+
```
27+
28+
### Sort
29+
```
30+
Search-UrlScanio [-Limit <Int32>] [-All] [-Raw <String>] [-Specific] [-SortBy <String>] [-Descending]
31+
[-Ascending] [<CommonParameters>]
2432
```
2533

2634
## DESCRIPTION
@@ -175,9 +183,84 @@ Accept pipeline input: False
175183
Accept wildcard characters: False
176184
```
177185
186+
### -All
187+
Return all possible results up to a maximum of 10000. (Limit set by urlscan.io)
188+
189+
```yaml
190+
Type: SwitchParameter
191+
Parameter Sets: (All)
192+
Aliases:
193+
194+
Required: False
195+
Position: Named
196+
Default value: False
197+
Accept pipeline input: False
198+
Accept wildcard characters: False
199+
```
200+
178201
### -Raw
179202
Return results as raw json.
180203
204+
```yaml
205+
Type: String
206+
Parameter Sets: (All)
207+
Aliases:
208+
209+
Required: False
210+
Position: Named
211+
Default value: False
212+
Accept pipeline input: False
213+
Accept wildcard characters: False
214+
```
215+
216+
### -Specific
217+
Only return results where the page domain contains the specified domain. Default behaiviour is to return results where domain is called in any part of the page response.
218+
219+
```yaml
220+
Type: SwitchParameter
221+
Parameter Sets: (All)
222+
Aliases:
223+
224+
Required: False
225+
Position: Named
226+
Default value: False
227+
Accept pipeline input: False
228+
Accept wildcard characters: False
229+
```
230+
231+
### -SortBy
232+
{{ Fill SortBy Description }}
233+
234+
```yaml
235+
Type: String
236+
Parameter Sets: (All)
237+
Aliases:
238+
239+
Required: False
240+
Position: Named
241+
Default value: None
242+
Accept pipeline input: False
243+
Accept wildcard characters: False
244+
```
245+
246+
### -Descending
247+
{{ Fill Descending Description }}
248+
249+
```yaml
250+
Type: SwitchParameter
251+
Parameter Sets: (All)
252+
Aliases:
253+
254+
Required: False
255+
Position: Named
256+
Default value: False
257+
Accept pipeline input: False
258+
Accept wildcard characters: False
259+
```
260+
261+
### -Ascending
262+
{{ Fill Ascending Description }}
263+
181264
```yaml
182265
Type: SwitchParameter
183266
Parameter Sets: (All)

src/PSUrlScanio.psd1

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
RootModule = 'PSUrlScanio.psm1'
1313

1414
# Version number of this module.
15-
ModuleVersion = '0.1.0'
15+
ModuleVersion = '0.1.5'
1616

1717
# Supported PSEditions
1818
# CompatiblePSEditions = @()
@@ -24,7 +24,7 @@ GUID = '00ae67df-b1ae-400c-bcb4-dad7feba9db0'
2424
Author = 'Chris Bayliss'
2525

2626
# Company or vendor of this module
27-
CompanyName = 'Unknown'
27+
# CompanyName = ''
2828

2929
# Copyright statement for this module
3030
Copyright = '(c) Chris Bayliss. All rights reserved.'
@@ -33,7 +33,7 @@ Copyright = '(c) Chris Bayliss. All rights reserved.'
3333
Description = 'Powershell module for utilising the urlscan.io api.'
3434

3535
# Minimum version of the PowerShell engine required by this module
36-
# PowerShellVersion = ''
36+
PowerShellVersion = '5.1'
3737

3838
# Name of the PowerShell host required by this module
3939
# PowerShellHostName = ''
@@ -95,19 +95,19 @@ PrivateData = @{
9595
PSData = @{
9696

9797
# Tags applied to this module. These help with module discovery in online galleries.
98-
# Tags = @()
98+
Tags = @('powershell', 'Windows', 'scan', 'urlscan')
9999

100100
# A URL to the license for this module.
101101
# LicenseUri = ''
102102

103103
# A URL to the main website for this project.
104-
# ProjectUri = ''
104+
ProjectUri = 'https://github.com/sysgoblin/PSURLScanio'
105105

106106
# A URL to an icon representing this module.
107107
# IconUri = ''
108108

109109
# ReleaseNotes of this module
110-
# ReleaseNotes = ''
110+
ReleaseNotes = 'https://github.com/sysgoblin/PSURLScanio/releases/tag/0.1.5'
111111

112112
# Prerelease string of this module
113113
# Prerelease = ''

0 commit comments

Comments
 (0)