Khong - here is a copy of the ngtf configuration files I have been using. I have been running specific attacks against apps, rather than running all attacks. However there is nothing to stop you specifying all attacks in the configuration file.
Here are 4 samples I used for ngtf v1.0.0. You should be able to comment out the "verbose=True" option for v1.1.0 as verbose mode is now default.
//----------------------------------------------
1. Run self-signed certificate and invalid hostname attacks.
[nogotofail.mitm]
verbose=True
port=8080
probability=0.25
attacks=selfsigned invalidhostname
serverssl=/nogotofail/server.crt
logfile=/var/log/nogotofail/ngtf-acah.log
eventlogfile=/var/log/nogotofail/ngtf-acah.event
trafficfile=/var/log/nogotofail/ngtf-acah.traffic
//-------------------------------------------------
2. Run heartbleed detection and anonymous server attacks.
[nogotofail.mitm]
verbose=True
port=8080
probability=0.3
attacks=clientheartbleed anonserver
data=httpdetection
serverssl=/nogotofail/server.crt
logfile=/var/log/nogotofail/ngtf-hrtanon.log
eventlogfile=/var/log/nogotofail/ngtf-hrtanon.event
trafficfile=/var/log/nogotofail/ngtf-hrtanon.traffic
//------------------------------------------------
3. Run sslstrip attack.
[nogotofail.mitm]
verbose=True
port=8080
probability=0.3
data=sslstrip httpdetection
serverssl=/nogotofail/server.crt
logfile=/var/log/nogotofail/ngtf-sslstrip.log
eventlogfile=/var/log/nogotofail/ngtf-sslstrip.event
trafficfile=/var/log/nogotofail/ngtf-sslstrip.traffic
//------------------------------------------------
4. Run a number of different attacks at once.
[nogotofail.mitm]
verbose=True
port=8080
probability=0.25
attacks=invalidhostname selfsigned dropssl
data=sslstrip httpdetection weaktlsversiondetection insecurecipherdetection httpauthdetection customrequest blockhttp disablecdcpencryption rawlogger
serverssl=/nogotofail/server.crt
logfile=/var/log/nogotofail/ngtf-all-attacks.log
eventlogfile=/var/log/nogotofail/ngtf-all-attacks.event
trafficfile=/var/log/nogotofail/ngtf-all-attacks.traffic
Hope this helps.