Skip to content

Commit

Permalink
Release 2.5.3
Browse files Browse the repository at this point in the history
Fix bug when using character "<"
Replace instances of "<" with "&lt;" when scripting a payload
Software converts "&lt;" back to "<" on deployment
  • Loading branch information
exploitagency committed Sep 26, 2017
1 parent 3655c99 commit f00ab8c
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions source/ESP_Code/ESP_Code.ino
Original file line number Diff line number Diff line change
Expand Up @@ -880,6 +880,7 @@ void setup(void)
while(splitlines != NULL)
{
String liveline=splitlines;
liveline.replace("&lt;", "<");
char *i;
String cmd;
String cmdinput;
Expand Down
Binary file modified source/ESP_Code/ESP_Code.ino.generic.bin
Binary file not shown.
2 changes: 1 addition & 1 deletion source/ESP_Code/version.h
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
String version = "2.5.2";
String version = "2.5.3";
String latestardversion = "2.2";

0 comments on commit f00ab8c

Please sign in to comment.