Commit Graph

223 Commits

Author SHA1 Message Date
CPunch 136d523607 CONTRIB: Documented packet handlers, added more smaller todos 2022-04-17 20:16:03 -05:00
CPunch 2338e7215a Added CONTRIBUTING.md 2022-04-17 01:12:01 -05:00
CPunch 34dd36fb67 Windows: implemented laikaB_markRunning() & laikaB_unmarkRunning()
- use Sleep() for LAIKA_PERSISTENCE in main()
- use Mutex for checking existing LaikaBots
- switched to TEXT() for win32 strings
2022-04-16 23:54:07 -05:00
CPunch 231881c960 Bot: Minor laikaB_freeShell refactoring 2022-04-16 23:08:21 -05:00
CPunch b60203d3f2 Linux: implemented laikaB_markRunning() & laikaB_unmarkRunning()
- switched to file locks as that's more discreet
    - tied to LAIKA_PERSISTENCE being defined
2022-04-16 22:56:05 -05:00
CPunch d94a6a5e17 shellT_addChar(): Added ascii validation, ignore non-printable input 2022-04-15 15:40:25 -05:00
CPunch 9a6562f440 Shell: CTRL+A now kills the shell 2022-04-15 15:27:50 -05:00
CPunch 7d9ed4ab87 Switch to asciinema for demo 2022-04-15 00:35:37 -05:00
CPunch 7bd256171b Fix: inet_ntop passed the wrong pointer 2022-04-15 00:25:36 -05:00
CPunch 9d083608aa updated readme info 2022-04-14 12:38:57 -05:00
CPunch 3eb467b6aa Fixed artifacts path for windows 2022-04-14 12:15:28 -05:00
CPunch dac99ddd85 Bot: Only run shell task when shell is open
- since the shell task is only ran when the shell is open, i decreased the delta to 50ms. this should improve latancy while improving performance for 99% of the time. yay!
2022-04-14 12:11:29 -05:00
CPunch 9694ae67d8 Added LAIKAPKT_PINGPONG
- shell now has it's own task service, it's polled in shellC_poll()
- default timeout for peers is 60 seconds, to change this edit the LAIKA_PEER_TIMEOUT in cnc.h
2022-04-13 12:19:06 -05:00
CPunch 89630b1a5e Linked to Ansible-Playbook 2022-04-11 12:56:42 -05:00
CPunch 2fe297eb0e Missing semicolon 2022-04-11 12:01:59 -05:00
CPunch c6c187dcc7 Shell: use LAIKA_CNC_* macros 2022-04-11 09:51:10 -05:00
CPunch 59c01d422b More resilient persistence
- bot will keep trying to connect if it failed to connect to the CNC or if the bot was killed
- if crontab isn't installed the bot will still run
2022-04-10 15:45:30 -05:00
CPunch bb6e489945 check if installed in crontab before installing 2022-04-08 12:51:03 -05:00
CPunch d34a824133 Remove unneeded check 2022-04-07 23:21:09 -05:00
CPunch 2fb0ef29a6 Added CMake flag for enabling persistence 2022-04-07 19:04:42 -05:00
CPunch 412418ec0a Added crontab persistence, disabled by default with LAIKA_NOINSTALL
- undefine LAIKA_NOINSTALL in persist.h to enable persistence
- windows persistence is still unimplemented
2022-04-07 18:11:58 -05:00
CPunch 56fb305ef2 Implemented linpersist.c:laikaB_checkRoot(), fixed Shell config argument 2022-04-06 15:22:01 -05:00
CPunch c0828a77c6 Require CNC to load a config, by default it loads 'server.ini' 2022-04-06 12:14:09 -05:00
CPunch 9084afa738 Added commit hash to version display 2022-04-06 01:07:16 -05:00
CPunch 5fcdb53740 list config in README 2022-04-06 00:45:29 -05:00
CPunch 0f07f08938 updated demo 2022-04-06 00:42:52 -05:00
CPunch 08d17d56b3 Increased shell data buffer 2022-04-06 00:35:50 -05:00
CPunch 592e347fb6 Clean up 2022-04-06 00:27:28 -05:00
CPunch e228c98c80 Added config inis, key refactoring
- CNC can accept multiple different auth keys now
- laikaK_checkAuth() added
- shell defaults to using shell.ini config file
- CNC doesn't require a config file however it's highly recommended
2022-04-05 23:57:37 -05:00
CPunch 00070d84ca moved windows binaries to 'winbin' 2022-04-04 15:54:41 -05:00
CPunch b6bd8b2518 Bot persistence boilerplate 2022-04-04 12:12:37 -05:00
CPunch 3515d10b1c Minor refactoring 2022-04-01 14:10:06 -05:00
CPunch 4594e6194b Removed redundant packets 2022-03-28 20:28:39 -05:00
CPunch bec7de9ce5 Updated README 2022-03-28 16:28:44 -05:00
CPunch a4dc723e15 Added Tunnel & Tunnel Connection boilerplate to lib 2022-03-28 15:49:50 -05:00
CPunch 42199fc7c9 minor refactoring, proper no op macros 2022-03-28 14:02:33 -05:00
CPunch 5ece351025 Moved setPollIn flag to sLaika_socket from sLaika_peer 2022-03-27 17:32:32 -05:00
CPunch e2e25f5a49 Added info command, better sanity check for shellS_getPeer() 2022-03-25 22:11:15 -05:00
CPunch dd9cb2af00 made with <3 2022-03-24 19:45:07 -05:00
CPunch ffa55f971f Updated demo gif 2022-03-24 19:03:48 -05:00
CPunch 541e75f183 Switched Shell & Bot to use laikaP_flushOutQueue()
- they both now have handlers for onPollFail
2022-03-24 18:03:08 -05:00
CPunch 7baced7b8f Refactored polling, lpolllist.c now handles poll events & flushes the poll queue
- Sockets now have event callbacks, onPollIn, onPollOut & onPollFail. If these are set to NULL they're ignored
2022-03-24 10:26:06 -05:00
CPunch 94bcabadfd Added 'quit' command 2022-03-22 09:50:22 -05:00
CPunch e3b1cf586b Sanity check to shellS_getPeer, visual improvements 2022-03-21 19:47:18 -05:00
CPunch 192bf22225 Shell: improved looks, added colored output 2022-03-21 17:47:46 -05:00
CPunch 30f7ffb73b Added lsodium.c, laikaK_loadKeys, laikaK_genKeys 2022-03-21 15:24:05 -05:00
CPunch af9cdfdaed lvm.h: added basic implementation of laikaV_execute 2022-03-21 14:59:04 -05:00
CPunch 26a1977609 Fixed Windows Shell detection for shell closing
- updated demo.gif
2022-03-18 17:46:28 -05:00
CPunch 14d17adf89 Added README badges 2022-03-17 23:51:53 -05:00
CPunch 7e9597902f Added line-conversions for shells 2022-03-17 23:49:25 -05:00