@@ -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+
205210Web referencing modules and Forum posting modules are also included in this config. One thing of vital
206211importance 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
497502For 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 |
0 commit comments