Skip to content
This repository was archived by the owner on Aug 1, 2024. It is now read-only.

Commit e9639af

Browse files
authored
Merge pull request #15 from sandialabs/update_readme
README update
2 parents 9eebd3a + df2e263 commit e9639af

File tree

4 files changed

+21
-17
lines changed

4 files changed

+21
-17
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@
33
```
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
```
6+
## Unreleased
7+
8+
### Added
9+
* Allow pulling from Docker repository if no Dockerfile is found locally
10+
611
## [1.1.0] - Feb 2019
712

813
Current Release

README.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -194,14 +194,19 @@ This tool is highly dependent on the configuration you provide it. Provided for
194194
for example **ansible-playbook $flags $config** ,
195195
* custom_substitutes : Sub dictionary of options to replace in the custom command above.
196196
These are usually options that are dependant on runtime items.
197-
> {\
198-
"config" : "$config/httpscreenshot_play.yml", \
199-
"flags": "-e 'infile=$infile outfile=$outfile/httpscreenshot.tar outfolder=$outfile/httpscreenshots'"\
200-
},
197+
```json
198+
{
199+
"config" : "$config/httpscreenshot_play.yml",
200+
"flags": "-e 'infile=$infile',
201+
"outfile": "$outfile/httpscreenshot.tar",
202+
"outfolder": "$outfile/httpscreenshots",
203+
}
204+
```
205+
201206
* description : Description
202207
* "inputfilelist : filename to look for
203208
* enabled : True/False run all the time
204-
209+
205210
Web referencing modules and Forum posting modules are also included in this config. One thing of vital
206211
importance when configuring these tools.
207212
* class_name : this must match the name you specify for a given class under the respective module name
@@ -496,14 +501,9 @@ The choice of SQLite was for fast implementation of database storage while also
496501
497502
For now the table is simply:
498503
499-
| ip | VARCHAR |
500-
| -------- | ------- |
501-
| hostname | VARCHAR |
502-
| headers | VARCHAR |
503-
504-
## TODO
505-
* ssh-agent keychain usage http://www.snowfrog.net/2007/11/15/ssh-ssh-agent-keychain-and-cron-notes/
506-
* Add pandas as backend manager for easier handling of information.
507-
* Implement another class for further enumeration and possible usage of the sqlite database
508-
* HTML encode the HEADERS
509-
* Allow pulling from Docker repository if no Dockerfile is found in the **docker_buildfiles** folder
504+
| ip | VARCHAR |
505+
| -------- | ------- |
506+
| hostname | VARCHAR |
507+
| headers | VARCHAR |
508+
| http_headers | VARCHAR |
509+
| https_headers| VARCHAR |

docs/images/demo.gif

168 KB
Loading

drrobot.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ class Mode(Enum):
2121

2222

2323
if not isfile(USER_CONFIG) and isfile(join(ROOT_DIR, 'configs', 'default_config.json')):
24-
print(ROOT_DIR)
2524
copy(join(ROOT_DIR, 'configs', 'default_config.json'), USER_CONFIG)
2625
elif not isfile(join(ROOT_DIR, 'configs', 'default_config.json')):
2726
print("default_config.json does not exist and user_config.json does not exist. checkout the file via git.")

0 commit comments

Comments
 (0)