-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
48 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
## Gowitness Command | ||
|
||
Using {{target}}, {{rootDomain}} and {{domain}} ReconNess replace {{target}} for the target name, {{rootDomain}} for the rootdomain name and {{domain}} for the subdomain. | ||
|
||
``` | ||
gowitness single -o /Content/screenshots/{{target}}/{{rootDomain}}/{{domain}}.png https://{{domain}} | ||
``` | ||
## Gowitness Command for Docker | ||
|
||
``` | ||
mkdir -p /app/Content/screenshots/{{target}}/{{rootDomain}}/ && /root/go/bin/gowitness single -o /app/Content/screenshots/{{target}}/{{rootDomain}}/{{domain}}.png https://{{domain}} | ||
``` | ||
|
||
## Gowitness Script | ||
|
||
Check [Script file](https://github.com/reconness/reconness-agents/blob/master/Gowitness/Script) | ||
|
||
## Gowitness Dockerfile Entry | ||
|
||
``` | ||
# -------- Agents dependencies -------- | ||
# To allow run gowitness inside the docker | ||
RUN wget https://golang.org/dl/go1.16.linux-amd64.tar.gz | ||
RUN tar -C /usr/local -xzf go1.16.linux-amd64.tar.gz | ||
RUN export GOPATH=$HOME/go | ||
RUN export PATH=$PATH:/usr/local/go/bin:$GOPATH/bin | ||
RUN GO111MODULE=on /usr/local/go/bin/go get -u github.com/sensepost/gowitness | ||
# -------- End Agents dependencies -------- | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
return new ReconNess.Core.Models.ScriptOutput(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters