esp8266_deauther/serialcommands.md

338 lines
13 KiB
Markdown
Raw Permalink Normal View History

2018-03-24 18:15:59 +01:00
# Serial Commands
**Overview:**
- [`help`](#help)
- [`scan [<all/aps/stations>] [-t <time>] [-c <continue-time>] [-ch <channel>]`](#scan)
- [`show [selected] [<all/aps/stations/names/ssids>]`](#show)
- [`select [<all/aps/stations/names>] [<id>]`](#select-deselect)
- [`deselect [<all/aps/stations/names>] [<id>]`](#select-deselect)
- [`add ssid <ssid> [-wpa2] [-cl <clones>] [-f]`](#add-ssid)
- [`add ssid -ap <id> [-cl <clones>] [-f]`](#add-ssid)
- [`add name <name> [-ap <id>] [-s] [-f]`](#add-name)
- [`add name <name> [-st <id>] [-s] [-f]`](#add-name)
- [`add name <name> [-m <mac>] [-ch <channel>] [-b <bssid>] [-s] [-f]`](#add-name)
- [`replace name <id> [-n <name>] [-m <mac>] [-ch <channel>] [-b <bssid>] [-s]`](#replace-name)
- [`set name <id> <newname>`](#set-name)
- [`enable random <interval>`](#random)
- [`disable random`](#random)
- [`load [<all/ssids/names/settings>] [<file>]`](#load-save)
- [`save [<all/ssids/names/settings>] [<file>]`](#load-save)
- [`remove <ap/station/name/ssid> <id>` ](#remove)
- [`remove <ap/station/names/ssids> [all]` ](#remove)
- [`attack [beacon] [deauth] [deauthall] [probe] [nooutput] [-t <timeout>]`](#attack)
- [`attack status [<on/off>]`](#attack-status)
- [`sysinfo`](#sysinfo)
- [`clear`](#clear)
- [`format`](#format)
- [`print <file> [<lines>]`](#print)
- [`delete <file> [<lineFrom>] [<lineTo>]`](#delete)
- [`replace <file> <line> <new-content>`](#replace)
- [`copy <file> <newfile>`](#copy)
- [`rename <file> <newfile>`](#rename)
- [`get <setting>`](#get)
- [`set <setting> <value>`](#set)
- [`reset`](#reset)
- [`stop <all/scan/attack>`](#stop)
- [`chicken`](#chicken)
- [`reboot`](#reboot)
- [`run <file>`](#run)
- [`write <file> <commands>`](#write)
- [`info`](#info)
- [`// <comments>`](#comment)
- [`send deauth <apMac> <stMac> <rason> <channel>`](#send)
- [`send beacon <mac> <ssid> <ch> [wpa2]`](#send)
- [`send probe <mac> <ssid> <ch>`](#send)
- [`led <r> <g> <b> [<brightness>]`](#led)
- [`led <#rrggbb> [<brightness>]`](#led)
- [`draw`](#draw)
- [`startap`](#startap)
- [`stopap`](#startap)
- [`screen mode <menu/packetmonitor/buttontest/loading>`](#screen)
2018-04-01 22:04:46 +02:00
## Video Overview
2018-04-01 22:05:32 +02:00
[![@PwnKitteh made this video about deauther 2.0 serial commands. ](https://img.youtube.com/vi/wJu7lgqelZM/0.jpg)](https://www.youtube.com/watch?v=wJu7lgqelZM)
2018-04-01 22:04:46 +02:00
2018-03-24 18:15:59 +01:00
## HELP
`help`
Prints out list with all commands.
## SCAN
`scan [<all/aps/stations/wifi>] [-t <time>] [-c <continue-time>] [-ch <channel>]`
**Starts scan with given parameters.**
**Modes** (optional, default = all):
- all (-a)
- aps (-ap)
- stations (-st)
- wifi (-w)
**Mode must be the first parameter!**
**time** [-t] (optional, default = 15s): How long it should scan for stations (client devices) in seconds.
**continue** [-c] (optional): How many seconds until it should scan again.
**channel** [-ch] (optional): Only scan on a specific channel, instead of going through them all automatically.
To scan indefinitely set the time to 0, i.e. `scan stations -t 0`.
The difference between mode `stations` and mode `wifi` is that `stations` will only scan on channels that are used by at least one access point.
The `wifi` scan mode also doesn't require an access point scan first and is recommended for using the deauth detection and packet monitor feature.
## SHOW
`show [<all/aps/stations/names/ssids>]`
`show selected [<all/aps/stations/names/ssids>]`
Prints out the scan results (access points and stations), the saved device names and the saved ssids.
**Selected** (optional, default = false): Only the selected targets are printed out.
**Types** (optional, default = all):
- all (-a)
- aps (-ap)
- stations (-st)
- names (-b)
- ssids (-ss)
## SELECT-DESELECT
`select [<all/aps/stations/names>] [<id>]`
`deselect [<all/aps/stations/names>] [<id>]`
(De)Selects a specific or all access points, stations and device names.
**Types** (optional, default = all):
- all (-a)
- aps (-ap)
- stations (-st)
- names (-b)
**ID** (optional): ID of the AP/station/device you want to select.
## ADD-SSID
`add ssid <ssid> [-wpa2] [-cl <clones>] [-f]`
Adds SSID with given parameters to list.
**ssid**: The SSID you want to add to the list.
**-wpa2** (optional, default = false): If the SSID you add should be an open or WPA2 encrypted network.
**clones** [-cl] (optional, default = 0): How many SSIDs you want to add with that name.
**force** [-f] (optional, default = false): Forces adding of ssid, even if list is full.
`add ssid -ap <id> [-cl <clones>] [-f]`
Copies SSID from scanned access point and adds it to the list.
**clones** [-cl] (optional, default = 0): How many SSIDs you want to add with that name.
**force** [-f] (optional, default = false): Forces adding of ssid, even if list is full.
`add ssid -s [-f]`
Copies SSIDs from selected access points into list.
**force** [-f] (optional, default = false): Forces adding of ssid, overwrites old SSIDs.
## ADD-NAME
`add name <name> -ap <id> [-s] [-f]`
`add name <name> -st <id> [-s] [-f]`
`add name <name> -m <mac> [-ch <channel>] [-b <bssid>] [-s] [-f]`
Saves device with given name and parameters.
**name** [-n]: Name you want to give the device (max.16 characters!).
**ap** [-ap]: Access point you want to save.
**station** [-st]: Station you want to save.
**mac** [-m]: MAC address of the device.
**channel** [-ch] (optional, default = current channel): Channel the device is on.
**bssid** [-b] (optional, default = NULL): The MAC address of the access point its connected to.
**select** [-s] (optional, default = false): Select the device after adding it.
**force** [-f] (optional, default = false): Forces adding name, even if list is full.
## REPLACE NAME
`replace name <id> [-n <name>] [-m <mac>] [-ch <channel>] [-b <bssid>] [-s]`
Removes name with given ID and creates a new one with the given parameters.
## SET-NAME
`set name <id> <newname>`
Changes the name of a saved device.
**id**: ID of the saved name you want to change.
**newname**: New name you want to give that device.
## RANDOM
`enable random <interval>`
Enables SSID random mode with given interval in seconds.
`disable random`
Disables SSID random mode.
## LOAD-SAVE
`load [<all/ssids/names/settings>] [<file>]`
`save [<all/ssids/names/settings>] [<file>]`
Loads/saves the ssid list, device name list and settings.
**Types** (optional, default = all):
- all (-a)
- ssids (-ss)
- names (-n)
- settings
**File** (optional): Where to load/save the file. It will use the default file name when the parameter isn't set.
## REMOVE
`remove <ap/station/name/ssid> <id>`
Removes specific ssid or name from the list.
**Types**:
- ap (-ap)
- station (-st)
- name (-n)
- ssid (-ss)
`remove <ap/station/names/ssids>`
`remove <ap/station/names/ssids> [all]`
Removes everything from the selected list.
**all** [-a] (optional, default = true): Remove all.
## ATTACK
`attack [beacon] [deauth] [deauthall] [probe] [nooutput] [-t <timeout>]`
Starts attack with given parameters (1 or more is required):
- **beacon** [-b] (optional, default = false)
- **deauth** [-d] (optional, default = false)
- **deauthall** [-da] (optional, default = false)
- **probe** [-p] (optional, default = false)
- **nooutput** [-no] (optional, default = false): Will stop printing out the packets per second.
- **timeout** [-t] (optional, default = settings.attackTime): Will change the attack timeout time in the settings.
**PLEASE NOTE** that *deauthall* will deactivate *deauth* and vice versa.
You can only run one at a time!
## ATTACK STATUS
`attack status [<on/off>]`
Enables or disables printing the attack status (pkts/s) every second (only when an attack is running).
## SYSINFO
`sysinfo`
Prints out RAM usage, current WiFi channel, the MAC addresses, SPIFFS (SPI-Flash-File-System usage and files.
## CLEAR
`clear`
Clears the serial console.
## FORMAT
`format`
Deletes all files in the SPIFFS (SPI-Flash-File-System).
## PRINT
`print <file> [lines]`
**lines** [-l] (optional, default = false): Show line numbers.
Prints out file from SPIFFS (SPI-Flash-File-System) to the serial console.
## DELETE
`delete <file>`
2018-10-03 23:07:09 +02:00
Deletes file from the SPIFFS (SPI-Flash-File-System).
2018-03-24 18:15:59 +01:00
`delete <file> <lineFrom>`
Removes a specific line from a file.
`delete <file> <lineFrom> <lineTo>`
Removes specific lines from a file.
**The first line number is 0!**
## REPLACE
`replace <file> <line> <new-content>`
Replaces specific line of file with given content.
## COPY
`copy <file> <newfile>`
Makes a copy of a file in the SPIFFS.
## RENAME
`rename <file> <newfile>`
Renames a file in the SPIFFS.
## GET
`get <setting>`
Prints out the value of the setting.
## SET
`set <setting> <value>`
Changes the value of the setting.
## RESET
`reset`
Resets the settings.
## STOP
`stop [<all/scan/attack/script>]`
Stops ongoing tasks.
**Modes** (optional, default = all):
- all (-a)
- scan (-sc)
- attack (-a)
- script
## CHICKEN
`chicken`
Prints out a HUGE spacechick.
## REBOOT
`reboot`
Performs a hard reset (just like connecting the RST pin to GND).
## RUN
`run <file> [-c <continue-time>]`
Executes script with given filepath.
**continue** [-c] (optional, min=1s, default time is 10s): How many seconds until it should run the script again.
Please don't use this command within a script! It won't work but it might lead to errors or unexpected behaviour.
## WRITE
`write <file> <commands>`
Writes (appends) a command to the given file and saves it.
**Please note** that this command has, like all commands, a limit of 512 characters and therefor shouldn't be used
to write extensive files. There is a better way to upload files to the SPIFFS explained in the tutorials.md file.
## INFO
`info`
Shows version number, copyright info, and link to GitHub.
## COMMENT
`// <comments>`
Commands that begin with `#` will be printed out as they are and not be tried to execute.
There **must** be a space between the hash sign and the comments.
The hash sign also **has** to be at the beginning of the command!
## SEND
`send deauth <AP-MAC> <ST-MAC> <reason> <channel>`
`send beacon <mac> <ssid> <ch> [wpa2]`
`send probe <mac> <ssid> <ch>`
Sends single packet out with giving parameters.
You can also sent out custom packets with: `send packet <packet>`
The packet must be a hexadecimal string devided by `:` and with a leading zero.
It's only recommended to use this feature if you have experience on how the ESP8266 handles sending custom defined packets.
Copy pasting packets out of Wireshark is very unlikely to work.
Also note that you're still limited to 512 characters per command!
## LED
2021-01-12 14:11:26 +01:00
`led <r> <g> <b>`
2018-03-24 18:15:59 +01:00
Changes LED color based on input.
2021-01-12 14:11:26 +01:00
Be sure to disable the LED updates (see command below), if you don't want the color the be rewritten by a scan or attack.
2018-03-24 18:15:59 +01:00
2021-01-12 14:11:26 +01:00
`led <#rrggbb>`
2018-03-24 18:15:59 +01:00
Changes LED color based on input in form of a hex value.
The value **must** start with a `#` and have 6 following characters.
## DELAY
`delay <time>`
Will pause the serial command interface for a given time.
2018-04-09 07:47:01 +02:00
`delay 1000` will wait one second.
But you can also specify the delay time in seconds directly:
`delay 1s`.
2018-03-24 18:15:59 +01:00
## DRAW
`draw [<height>] [<width>]`
Draws packet monitor graph.
Will only work if you run a wifi scan first, i.e. `scan wifi -t 65s -ch 1`.
- **height** (optional, default = 25): Height of the graph in characters.
- **width** (optional, default = 2): Width in characters per bar in graph.
## STARTAP
2018-04-12 09:52:53 +02:00
`startap [-p <path][-s <ssid>] [-pswd <password>] [-ch <channel>] [-h] [-cp]`
Starts access point.
- **path** [-p] (optional, default = "/web"): Path to web files.
- **ssid** [-s] (optional, default = [settings ssid](https://github.com/spacehuhn/esp8266_deauther/blob/master/settings.md#ssid)): Network name.
- **password** [-pswd] (optional, default = [settings password](https://github.com/spacehuhn/esp8266_deauther/blob/master/settings.md#password)): Password.
- **channel** [-ch] (optional, default = [settings channel](https://github.com/spacehuhn/esp8266_deauther/blob/master/settings.md#channel)): Channel .
- **hidden** [-h] (optional, default = [settings hidden](https://github.com/spacehuhn/esp8266_deauther/blob/master/settings.md#hidden)): Hide SSID.
- **captiveportal** [-cp] (optional, default = [settings captiveportal](https://github.com/spacehuhn/esp8266_deauther/blob/master/settings.md#captiveportal)): Enable captiveportal.
`stopap`
Stops access point.
2018-03-24 18:15:59 +01:00
## SCREEN
`screen <on/off>`
Turns display on or off. To reactivate the display press the A (select) button.
`screen mode <menu/packetmonitor/buttontest/loading>`
Changes display mode.
- **menu**: default mode when using the display interface
- **packetmonitor**: draws packet graph (will only work when you're scanning at the same time)
- **buttontest**: special mode for testing the buttons
2018-04-01 22:04:46 +02:00
- **loading**: loading screen that is normally used when starting a scan over the display menu