From 2ee0c8fa403b0b2831e13409348670b6d3ad7080 Mon Sep 17 00:00:00 2001 From: Bernardo Damele Date: Sun, 15 Jul 2012 01:58:41 +0100 Subject: [PATCH] added abstract --- generatepdf.sh | 2 +- template.latex | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/generatepdf.sh b/generatepdf.sh index 0ae742e8a..a174b8153 100755 --- a/generatepdf.sh +++ b/generatepdf.sh @@ -1,3 +1,3 @@ #!/bin/sh -pandoc -f markdown -o Users-manual.pdf --smart --normalize --tab-stop=4 --standalone --template=template.latex --variable version=1.0 --toc --highlight-style=haddock --number-sections title.txt Users-manual.md +pandoc -f markdown -o Users-manual.pdf --smart --normalize --tab-stop=4 --standalone --template=template.latex --variable version=1.0 --variable author-meta="sqlmap developers" --variable title-meta="sqlmap user's manual" --toc --highlight-style=haddock --number-sections title.txt Users-manual.md diff --git a/template.latex b/template.latex index e0c3619ec..919d2682f 100644 --- a/template.latex +++ b/template.latex @@ -149,6 +149,10 @@ $endif$ $if(title)$ \maketitle $endif$ +\begin{abstract} +sqlmap is an open source penetration testing tool that automates the process of detecting and exploiting SQL injection flaws and taking over of database servers. +It comes with a powerful detection engine, many niche features for the ultimate penetration tester and a broad range of switches lasting from database fingerprinting, over data fetching from the database, to accessing the underlying file system and executing commands on the operating system via out-of-band connections. +\end{abstract} $for(include-before)$ $include-before$