[GH-ISSUE #624] [Feature]: How do i view the attack log? #209

Closed
opened 2026-02-28 00:00:20 +03:00 by kerem · 2 comments
Owner

Originally created by @ghost on GitHub (Sep 27, 2017).
Original GitHub issue: https://github.com/SpacehuhnTech/esp8266_deauther/issues/624

What command do i use in Arduino serial monitor at 115200 baud to view the log of all the attacks that happened? (When you first use the web interface there's a notice saying that every attack is logged) Or if it has to be done another way, how do i do it? Thanks

Originally created by @ghost on GitHub (Sep 27, 2017). Original GitHub issue: https://github.com/SpacehuhnTech/esp8266_deauther/issues/624 What command do i use in Arduino serial monitor at 115200 baud to view the log of all the attacks that happened? (When you first use the web interface there's a notice saying that every attack is logged) Or if it has to be done another way, how do i do it? Thanks
kerem 2026-02-28 00:00:20 +03:00
Author
Owner

@tobozo commented on GitHub (Sep 29, 2017):

There is no such implementation yet but it's not that far.

    void loadLogFile() {
        File logFile = SPIFFS.open("/log.txt", "r");
        server.streamFile(logFile, "text/plain");
        logFile.close();
    }

    (...)

    void setup() {

        (...)

        server.on("/log.txt",loadLogFile);

        (...)

    }

this will probably be added soon to the testing branch, please leave this ticket open until then

<!-- gh-comment-id:333065556 --> @tobozo commented on GitHub (Sep 29, 2017): There is no such implementation yet but it's not that far. ``` void loadLogFile() { File logFile = SPIFFS.open("/log.txt", "r"); server.streamFile(logFile, "text/plain"); logFile.close(); } (...) void setup() { (...) server.on("/log.txt",loadLogFile); (...) } ``` this will probably be added soon to the testing branch, please leave this ticket open until then
Author
Owner

@tobozo commented on GitHub (Oct 16, 2017):

closing this now it is merged into the testing branch

<!-- gh-comment-id:336892913 --> @tobozo commented on GitHub (Oct 16, 2017): closing this now it is merged into the testing branch
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/esp8266_deauther#209
No description provided.