404 FORUM NOT FOUND

Community Discussion Terminal

Score
1

connect to an IRC server on the Tor network using HexChat on Linux

1. Install Tor and HexChat

Ensure you have Tor installed and running. If not, install it:
sudo apt install tor -y

Start and enable Tor:
sudo systemctl start tor
sudo systemctl enable tor

Check if Tor is running:
systemctl status tor

Also, ensure HexChat is installed:
sudo apt install hexchat -y



2. Configure HexChat to Use Tor

HexChat doesn’t support Tor directly, but you can route it through a SOCKS5 proxy.
  1. Open HexChat.

  2. Go to Settings > Preferences > Network Setup.

  3. Under Proxy Server, set:
- Type: SOCKS5

- Host: 127.0.0.1

- Port: 9050

- Leave username/password empty.



3. Add the Tor Hidden Service IRC Server

  1. In HexChat, go to Network List (Ctrl + S).

  2. Click Add and enter a name for the network (e.g., "Tor IRC").

  3. Click Edit and add the .onion address of the IRC server in the Server List.
- Example for OFTC (replace with the real server if different):

```

oftcnet5t37o4bx3.onion/6667

```

  1. Enable "Use SSL for all servers in this network" if required.

  2. Uncheck "Use global user information" and enter a nickname.

  3. Under Connect Commands, add:
```

/msg NickServ IDENTIFY your_nickname your_password

```



4. Connect to the IRC Server

Click Connect and wait for HexChat to establish a connection.


5. Troubleshooting

  • If you get connection refused, verify that Tor is running with:
```bash

systemctl status tor

```

  • Check if the .onion IRC server is online.

  • Try port 6697 if SSL is required:
```

oftcnet5t37o4bx3.onion/6697

```

  • If you still have issues, check logs by running:
```bash

journalctl -xeu tor

```

πŸ‘€ By LuLu
πŸ•’ Jul 24, 2025 13:49
πŸ’¬ 3 replies

πŸ’¬ Join the Discussion

Login to reply to this post and share your thoughts!

πŸ” Login

πŸ’¬ Replies (3 total)

0

This is very outdated... both v2 onions and HexChat have been deprecated for some time now

The process is mostly the same, but you should check out another IRC client like Konversation (GUI) or Irssi (CLI) instead

πŸ‘€ By polpot
πŸ•’ Aug 19, 2025 17:04
#1
0

which forum is similar to xss i need specific information, i wrote a cool thing but i need a little bit help :P

πŸ‘€ By leadtheway
πŸ•’ Oct 7, 2025 18:45
#2
0

@polpot I used old onion links just for example purposes. Some people like to use hexchat because its stable and just works. irssi is fine and I prefer it over Konversation.

πŸ‘€ By LuLu
πŸ•’ Dec 29, 2025 00:49
#3