Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update port to 6667 #4

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion irc/DESCRIPTION.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
A general introduction to IRC servers.
- In each of these challenges the server can be started by running /challenge/server
- This will turn the current console into the server console.
- It is recommended to connect using Netcat. The IRC server is hosted on 127.0.0.1:667.
- It is recommended to connect using Netcat. The IRC server is hosted on 127.0.0.1:6667.
- Use [Basic IRC Commands](https://www.mirc.com/help/html/index.html?basic_irc_commands.html) to explore the IRC commands (Note: to run these through Netcat do not include the leading "/")

This module was created by [Journey Hancock](https://github.com/journeyhancock).
2 changes: 1 addition & 1 deletion irc/attack/server
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import multiprocessing
import time

def server():
command = ["/challenge/ircserver/miniircd", "--listen", "127.0.0.1", "--ports", "667"]
command = ["/challenge/ircserver/miniircd", "--listen", "127.0.0.1", "--ports", "6667"]
subprocess.run(command, text=True)

def client():
Expand Down
2 changes: 1 addition & 1 deletion irc/channel/server
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

import subprocess

command = ["/challenge/ircserver/miniircd", "--listen", "127.0.0.1", "--ports", "667"]
command = ["/challenge/ircserver/miniircd", "--listen", "127.0.0.1", "--ports", "6667"]

subprocess.run(command, text=True)
2 changes: 1 addition & 1 deletion irc/join/server
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

import subprocess

command = ["/challenge/ircserver/miniircd", "--listen", "127.0.0.1", "--ports", "667", "--motd", "/flag"]
command = ["/challenge/ircserver/miniircd", "--listen", "127.0.0.1", "--ports", "6667", "--motd", "/flag"]

subprocess.run(command, text=True)
2 changes: 1 addition & 1 deletion irc/join2/server
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

import subprocess

command = ["/challenge/ircserver/miniircd", "--listen", "127.0.0.1", "--ports", "667", "--motd", "/flag"]
command = ["/challenge/ircserver/miniircd", "--listen", "127.0.0.1", "--ports", "6667", "--motd", "/flag"]

subprocess.run(command, text=True)
2 changes: 1 addition & 1 deletion irc/msg/server
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

import subprocess

command = ["/challenge/ircserver/miniircd", "--listen", "127.0.0.1", "--ports", "667"]
command = ["/challenge/ircserver/miniircd", "--listen", "127.0.0.1", "--ports", "6667"]

subprocess.run(command, text=True)
2 changes: 1 addition & 1 deletion irc/nick/server
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

import subprocess

command = ["/challenge/ircserver/miniircd", "--listen", "127.0.0.1", "--ports", "667"]
command = ["/challenge/ircserver/miniircd", "--listen", "127.0.0.1", "--ports", "6667"]

subprocess.run(command, text=True)