diff --git a/README.md b/README.md index 91ea1ee..828f1e3 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ # irc2bash -A (poorly made) bridge between an IRC channel and the bash interpreter +A bridge between an IRC channel and the bash interpreter **Ensure you run this in a sandboxed VM!** diff --git a/TODO.md b/TODO.md deleted file mode 100644 index ec44808..0000000 --- a/TODO.md +++ /dev/null @@ -1,8 +0,0 @@ -# TODO - -- don't use os.system() and piping to a file for commands -- configuration file -- only allow certain users to run commands -- (maybe) windows support? (who doesn't want to destroy windows from an IRC channel) -- add code comments -- better handling of stdout/stdin diff --git a/main.py b/main.py index 69e7b75..e0d2def 100755 --- a/main.py +++ b/main.py @@ -312,7 +312,8 @@ class Server(): if __name__ == "__main__": serv = Server("username", "nickname", "##channel", opper_nicknames = ["opperhere"]) - serv.connect("tantalum.libera.chat", 6667, sock_recvbuf = 8192) + serv.connect("IP", 6667, sock_recvbuf = 8192) + # Allow for the user to send raw IRC messages # These bypass the send queue