Skip to content

Commit

Permalink
added firewall banner on startup
Browse files Browse the repository at this point in the history
  • Loading branch information
imgurbot12 committed Jan 20, 2018
1 parent a7bd740 commit 207e4b9
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion netfilter.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,27 @@ func (q *NetFilterQueue) start() {
if err != nil {
log.Fatalf("NFQueue %d Error: %s\n", q.QueueNum, err.Error())
}
log.Printf("NFQueue: %d Initialized! Starting WorkerPool...\n", q.QueueNum)
log.Printf(`
|\ /)
/\_\\__ (_//
| '>\-' _._ //')
\ /' \\ _.-':::'-._ //
' \|' ::: '|/ _____ ___
| ::: | | __ \ / _ \
|.....:::.....| | | \/ ___ / /_\ \__ __ __ _ _ _
|:::::::::::::| | | __ / _ \ | _ |\ \ /\ / / / _' || | | |
| ::: | | |_\ \| (_) || | | | \ V V / | (_| || |_| |
\ ::: / \____/ \___/ \_| |_/ \_/\_/ \__,_| \__, |
\ ::: / __/ |
'-. ::: .-' |___/
//':::'\\
// ' \\
|/ \\
`)
log.Printf("NFQueue: %d, Initalized!", q.QueueNum)
log.Printf("Workers Starting... DONE!")
// set packet queue and started boolean
q.pktQueue = q.nfq.GetPackets()
// spawn workerpool
Expand Down

0 comments on commit 207e4b9

Please sign in to comment.