Skip to content

ticker

The ticker module can be used to execute a given set of commands periodically in the interactive session.

Start the main ticker.

Stop the main ticker.

Create and start a named ticker called NAME that will execute the given COMMANDS every PERIOD.

Stop the named ticker called NAME.

ParameterDefaultDescription
ticker.commandsclear; net.show; events.show 20List of commands for the main ticker separated by a ;.
ticker.period1Main ticker period in seconds.

Start probing for hosts, clear the screen and plot discovered endpoints every second (will use default parameters):

Terminal window
net.probe on; clear; ticker on

Keep deauthenticating clients from the access point with BSSID DE:AD:BE:EF:DE:AD every five seconds:

Terminal window
set ticker.period 5; set ticker.commands "wifi.deauth DE:AD:BE:EF:DE:AD"; ticker on

Keep deauthenticating clients from the access point with BSSID DE:AD:BE:EF:DE:AD every five seconds with a named ticker called deauthenticator:

Terminal window
ticker.create deauthenticator 5 "wifi.deauth DE:AD:BE:EF:DE:AD"