Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM python:3.5-alpine

RUN apk add --no-cache nmap nmap-scripts git
RUN apk add --no-cache nmap nmap-scripts git texlive-full

RUN pip install --no-cache-dir xmltodict google-cloud-storage boto3

Expand Down
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
build :
docker build -t flan_scan .

pull :
docker pull chko/flan
docker image tag chko/flan flan_scan
container_name = flan_$(shell date +'%s')
start :
docker run --name $(container_name) -v $(shell pwd)/shared:/shared flan_scan
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ $ docker --version
```bash
$ make build
```
(or alternatively, pull it from Dockerhub: `make pull`)

5. Start scanning!
```bash
Expand Down
8 changes: 8 additions & 0 deletions run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ fi

xml_dir=xml_files/$current_time
report_file=reports/report_$current_time.tex
report_file_pdf=reports/report_$current_time.pdf

function upload {
if [[ -z $upload ]]
Expand Down Expand Up @@ -44,4 +45,11 @@ sed -i 's/_/\\_/g' $root_dir$report_file
sed -i 's/\$/\\\$/g' $root_dir$report_file
sed -i 's/#/\\#/g' $root_dir$report_file
sed -i 's/%/\\%/g' $root_dir$report_file
latexmk -pdf -outdir=$root_dir/reports $root_dir$report_file #make pdf
popdir=`pwd` #pushd
cd $root_dir/reports
latexmk -c -f $root_dir$report_file #cleanup tex aux files
cd $popdir #popd
upload $report_file
upload $report_file_pdf