Added Connect to IRC with Tor
This commit is contained in:
parent
75e798c623
commit
31280c1213
51
md/irc-tor.md
Normal file
51
md/irc-tor.md
Normal file
@ -0,0 +1,51 @@
|
|||||||
|
Connect to IRC with Tor
|
||||||
|
=======================
|
||||||
|
|
||||||
|
Debian
|
||||||
|
|
||||||
|
hexchat
|
||||||
|
-------
|
||||||
|
|
||||||
|
Two options: (1) set up a 'global' proxy that applies to every hexchat
|
||||||
|
connection, which can be overridden, or (2) set up a 'local' proxy that
|
||||||
|
only applies to one connection.
|
||||||
|
|
||||||
|
### Global proxy:
|
||||||
|
|
||||||
|
- Install Tor Browser
|
||||||
|
- Hexchat Settings > Preferences > Network setup
|
||||||
|
- hostname: 127.0.0.1
|
||||||
|
- port: 9150
|
||||||
|
- type: socks5
|
||||||
|
- use proxy for: all connections
|
||||||
|
- HexChat > Network List > Add
|
||||||
|
- name it whatever
|
||||||
|
- servers > add > km3jy7nrj3e2wiju.onion/6667
|
||||||
|
- leave all checkboxes blank
|
||||||
|
- close > connect
|
||||||
|
|
||||||
|
irssi
|
||||||
|
-----
|
||||||
|
|
||||||
|
- install irssi
|
||||||
|
- `cat irssi-tor => proxychains-ng/proxychains4 -f src/proxychains.conf irssi --home ~/.irssi-tor`
|
||||||
|
|
||||||
|
more info?
|
||||||
|
<https://trac.torproject.org/projects/tor/wiki/doc/TorifyHOWTO/irssi>
|
||||||
|
|
||||||
|
Connect to Freenode w/ Tor
|
||||||
|
==========================
|
||||||
|
|
||||||
|
- log into IRC
|
||||||
|
- open a terminal window
|
||||||
|
- `cd .config/hexchat/certs`
|
||||||
|
- `openssl req -x509 -new -newkey rsa:4096 -sha256 -days 1000 -nodes -out freenode.pem -keyout freenode.pem`
|
||||||
|
- generates a self-signed certificate
|
||||||
|
- `openssl x509 -in freenode.pem -outform der | sha1sum -b | cut -d' ' -f1`
|
||||||
|
- generates a fingerprint
|
||||||
|
- note: the certificate file has to have the same name as the name
|
||||||
|
of the network in your client
|
||||||
|
- `/msg nickserv cert add <fingerprint>`
|
||||||
|
- set auth to sas exteral
|
||||||
|
- have tor open
|
||||||
|
|
584
org/irc-how-to.html
Normal file
584
org/irc-how-to.html
Normal file
@ -0,0 +1,584 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
||||||
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
|
||||||
|
<head>
|
||||||
|
<title>irc-how-to</title>
|
||||||
|
<!-- 2019-01-26 Sat 14:13 -->
|
||||||
|
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
|
||||||
|
<meta name="generator" content="Org-mode" />
|
||||||
|
<meta name="author" content="notnull" />
|
||||||
|
<style type="text/css">
|
||||||
|
<!--/*--><![CDATA[/*><!--*/
|
||||||
|
.title { text-align: center; }
|
||||||
|
.todo { font-family: monospace; color: red; }
|
||||||
|
.done { color: green; }
|
||||||
|
.tag { background-color: #eee; font-family: monospace;
|
||||||
|
padding: 2px; font-size: 80%; font-weight: normal; }
|
||||||
|
.timestamp { color: #bebebe; }
|
||||||
|
.timestamp-kwd { color: #5f9ea0; }
|
||||||
|
.right { margin-left: auto; margin-right: 0px; text-align: right; }
|
||||||
|
.left { margin-left: 0px; margin-right: auto; text-align: left; }
|
||||||
|
.center { margin-left: auto; margin-right: auto; text-align: center; }
|
||||||
|
.underline { text-decoration: underline; }
|
||||||
|
#postamble p, #preamble p { font-size: 90%; margin: .2em; }
|
||||||
|
p.verse { margin-left: 3%; }
|
||||||
|
pre {
|
||||||
|
border: 1px solid #ccc;
|
||||||
|
box-shadow: 3px 3px 3px #eee;
|
||||||
|
padding: 8pt;
|
||||||
|
font-family: monospace;
|
||||||
|
overflow: auto;
|
||||||
|
margin: 1.2em;
|
||||||
|
}
|
||||||
|
pre.src {
|
||||||
|
position: relative;
|
||||||
|
overflow: visible;
|
||||||
|
padding-top: 1.2em;
|
||||||
|
}
|
||||||
|
pre.src:before {
|
||||||
|
display: none;
|
||||||
|
position: absolute;
|
||||||
|
background-color: white;
|
||||||
|
top: -10px;
|
||||||
|
right: 10px;
|
||||||
|
padding: 3px;
|
||||||
|
border: 1px solid black;
|
||||||
|
}
|
||||||
|
pre.src:hover:before { display: inline;}
|
||||||
|
pre.src-sh:before { content: 'sh'; }
|
||||||
|
pre.src-bash:before { content: 'sh'; }
|
||||||
|
pre.src-emacs-lisp:before { content: 'Emacs Lisp'; }
|
||||||
|
pre.src-R:before { content: 'R'; }
|
||||||
|
pre.src-perl:before { content: 'Perl'; }
|
||||||
|
pre.src-java:before { content: 'Java'; }
|
||||||
|
pre.src-sql:before { content: 'SQL'; }
|
||||||
|
|
||||||
|
table { border-collapse:collapse; }
|
||||||
|
caption.t-above { caption-side: top; }
|
||||||
|
caption.t-bottom { caption-side: bottom; }
|
||||||
|
td, th { vertical-align:top; }
|
||||||
|
th.right { text-align: center; }
|
||||||
|
th.left { text-align: center; }
|
||||||
|
th.center { text-align: center; }
|
||||||
|
td.right { text-align: right; }
|
||||||
|
td.left { text-align: left; }
|
||||||
|
td.center { text-align: center; }
|
||||||
|
dt { font-weight: bold; }
|
||||||
|
.footpara:nth-child(2) { display: inline; }
|
||||||
|
.footpara { display: block; }
|
||||||
|
.footdef { margin-bottom: 1em; }
|
||||||
|
.figure { padding: 1em; }
|
||||||
|
.figure p { text-align: center; }
|
||||||
|
.inlinetask {
|
||||||
|
padding: 10px;
|
||||||
|
border: 2px solid gray;
|
||||||
|
margin: 10px;
|
||||||
|
background: #ffffcc;
|
||||||
|
}
|
||||||
|
#org-div-home-and-up
|
||||||
|
{ text-align: right; font-size: 70%; white-space: nowrap; }
|
||||||
|
textarea { overflow-x: auto; }
|
||||||
|
.linenr { font-size: smaller }
|
||||||
|
.code-highlighted { background-color: #ffff00; }
|
||||||
|
.org-info-js_info-navigation { border-style: none; }
|
||||||
|
#org-info-js_console-label
|
||||||
|
{ font-size: 10px; font-weight: bold; white-space: nowrap; }
|
||||||
|
.org-info-js_search-highlight
|
||||||
|
{ background-color: #ffff00; color: #000000; font-weight: bold; }
|
||||||
|
/*]]>*/-->
|
||||||
|
</style>
|
||||||
|
<script type="text/javascript">
|
||||||
|
/*
|
||||||
|
@licstart The following is the entire license notice for the
|
||||||
|
JavaScript code in this tag.
|
||||||
|
|
||||||
|
Copyright (C) 2012-2013 Free Software Foundation, Inc.
|
||||||
|
|
||||||
|
The JavaScript code in this tag is free software: you can
|
||||||
|
redistribute it and/or modify it under the terms of the GNU
|
||||||
|
General Public License (GNU GPL) as published by the Free Software
|
||||||
|
Foundation, either version 3 of the License, or (at your option)
|
||||||
|
any later version. The code is distributed WITHOUT ANY WARRANTY;
|
||||||
|
without even the implied warranty of MERCHANTABILITY or FITNESS
|
||||||
|
FOR A PARTICULAR PURPOSE. See the GNU GPL for more details.
|
||||||
|
|
||||||
|
As additional permission under GNU GPL version 3 section 7, you
|
||||||
|
may distribute non-source (e.g., minimized or compacted) forms of
|
||||||
|
that code without the copy of the GNU GPL normally required by
|
||||||
|
section 4, provided you include this license notice and a URL
|
||||||
|
through which recipients can access the Corresponding Source.
|
||||||
|
|
||||||
|
|
||||||
|
@licend The above is the entire license notice
|
||||||
|
for the JavaScript code in this tag.
|
||||||
|
*/
|
||||||
|
<!--/*--><![CDATA[/*><!--*/
|
||||||
|
function CodeHighlightOn(elem, id)
|
||||||
|
{
|
||||||
|
var target = document.getElementById(id);
|
||||||
|
if(null != target) {
|
||||||
|
elem.cacheClassElem = elem.className;
|
||||||
|
elem.cacheClassTarget = target.className;
|
||||||
|
target.className = "code-highlighted";
|
||||||
|
elem.className = "code-highlighted";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
function CodeHighlightOff(elem, id)
|
||||||
|
{
|
||||||
|
var target = document.getElementById(id);
|
||||||
|
if(elem.cacheClassElem)
|
||||||
|
elem.className = elem.cacheClassElem;
|
||||||
|
if(elem.cacheClassTarget)
|
||||||
|
target.className = elem.cacheClassTarget;
|
||||||
|
}
|
||||||
|
/*]]>*///-->
|
||||||
|
</script>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="content">
|
||||||
|
<h1 class="title">irc-how-to</h1>
|
||||||
|
<div id="table-of-contents">
|
||||||
|
<h2>Table of Contents</h2>
|
||||||
|
<div id="text-table-of-contents">
|
||||||
|
<ul>
|
||||||
|
<li><a href="#sec-1">1. Anarchy Planet IRC how to</a>
|
||||||
|
<ul>
|
||||||
|
<li><a href="#sec-1-1">1.1. How to Connect</a>
|
||||||
|
<ul>
|
||||||
|
<li><a href="#sec-1-1-1">1.1.1. web</a></li>
|
||||||
|
<li><a href="#sec-1-1-2">1.1.2. using a client</a></li>
|
||||||
|
<li><a href="#sec-1-1-3">1.1.3. using tor</a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li><a href="#sec-1-2">1.2. Basic Commands</a></li>
|
||||||
|
<li><a href="#sec-1-3">1.3. Managing Nicknames (Nickserv)</a></li>
|
||||||
|
<li><a href="#sec-1-4">1.4. Managing Channels (ChanServ)</a></li>
|
||||||
|
<li><a href="#sec-1-5">1.5. Moderating Channels</a>
|
||||||
|
<ul>
|
||||||
|
<li><a href="#sec-1-5-1">1.5.1. Ban Examples:</a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
<li><a href="#sec-1-6">1.6. Advanced Commands for the uberl337</a>
|
||||||
|
<ul>
|
||||||
|
<li><a href="#sec-1-6-1">1.6.1. Advanced NickServ commands</a></li>
|
||||||
|
<li><a href="#sec-1-6-2">1.6.2. Advanced Chanserv commands</a></li>
|
||||||
|
<li><a href="#sec-1-6-3">1.6.3. Access lists</a></li>
|
||||||
|
<li><a href="#sec-1-6-4">1.6.4. Access levels</a></li>
|
||||||
|
<li><a href="#sec-1-6-5">1.6.5. AOPs</a></li>
|
||||||
|
<li><a href="#sec-1-6-6">1.6.6. SOPs</a></li>
|
||||||
|
<li><a href="#sec-1-6-7">1.6.7. Viewing AOP and SOP lists</a></li>
|
||||||
|
<li><a href="#sec-1-6-8">1.6.8. AKICKs</a></li>
|
||||||
|
<li><a href="#sec-1-6-9">1.6.9. Color codes</a></li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="outline-container-sec-1" class="outline-2">
|
||||||
|
<h2 id="sec-1"><span class="section-number-2">1</span> Anarchy Planet IRC how to</h2>
|
||||||
|
<div class="outline-text-2" id="text-1">
|
||||||
|
</div><div id="outline-container-sec-1-1" class="outline-3">
|
||||||
|
<h3 id="sec-1-1"><span class="section-number-3">1.1</span> How to Connect</h3>
|
||||||
|
<div class="outline-text-3" id="text-1-1">
|
||||||
|
</div><div id="outline-container-sec-1-1-1" class="outline-4">
|
||||||
|
<h4 id="sec-1-1-1"><span class="section-number-4">1.1.1</span> web</h4>
|
||||||
|
<div class="outline-text-4" id="text-1-1-1">
|
||||||
|
<p>
|
||||||
|
<a href="https://irc.anarchyplanet.org">https://irc.anarchyplanet.org</a>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="outline-container-sec-1-1-2" class="outline-4">
|
||||||
|
<h4 id="sec-1-1-2"><span class="section-number-4">1.1.2</span> using a client</h4>
|
||||||
|
<div class="outline-text-4" id="text-1-1-2">
|
||||||
|
<p>
|
||||||
|
irc.anarchyplanet.org port 6667
|
||||||
|
irc.anarchyplanet.org port 6697 (SSL)
|
||||||
|
km3jy7nrj3e2wiju.onion port 6667 || 6697
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="outline-container-sec-1-1-3" class="outline-4">
|
||||||
|
<h4 id="sec-1-1-3"><span class="section-number-4">1.1.3</span> using tor</h4>
|
||||||
|
<div class="outline-text-4" id="text-1-1-3">
|
||||||
|
<p>
|
||||||
|
<a href="https://irc.anarchyplanet.org/pad/p/connect-to-apirc-with-tor">https://irc.anarchyplanet.org/pad/p/connect-to-apirc-with-tor</a>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="outline-container-sec-1-2" class="outline-3">
|
||||||
|
<h3 id="sec-1-2"><span class="section-number-3">1.2</span> Basic Commands</h3>
|
||||||
|
<div class="outline-text-3" id="text-1-2">
|
||||||
|
<p>
|
||||||
|
<code>/nick nickname</code> Changes your nick.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<code>/list</code> Lists all channels on the current network.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<code>/join #channel</code> Joins the specified channel.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<code>/part #channel</code> Leaves the specified channel.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<code>/quit [message]</code> Disconnects from current server with optional leaving message.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<code>/names #channel</code> Shows the nicks of all users on #channel.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<code>/msg nickname message</code> Sends a private message to a user.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<code>/query nickname message</code> Sends a private message to a user and opens a private chat window.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<code>/me action</code> Prints "yourname action"
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<code>/notice nickname message</code> Sends a notice to the specified user. Like a /msg, but usually makes a sound.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<code>/whois nickname</code> Shows information about the specified user. This action is not visible to the specified user.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<code>/whowas nickname</code> Shows information about a user who has quit.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="outline-container-sec-1-3" class="outline-3">
|
||||||
|
<h3 id="sec-1-3"><span class="section-number-3">1.3</span> Managing Nicknames (Nickserv)</h3>
|
||||||
|
<div class="outline-text-3" id="text-1-3">
|
||||||
|
<p>
|
||||||
|
<code>/msg nickserv register password [email]</code> Registers your current nick with NickServ with the chosen password and binds it to an e-mail address (optional).
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<code>/msg nickserv identify password</code> Identifies your nick to NickServ using the password you set.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<code>/msg nickserv recover nickname password</code> Kills (forcibly disconnects) someone who has your registered nick.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<code>/msg nickserv ghost nickname password</code> Terminates a "ghost" IRC session that's using your nickname.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<code>/msg nickserv set password yournewpassword</code> Changes your password. NOTE: Under no circumstances should you change your nick to the letter O followed by 8 digit
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="outline-container-sec-1-4" class="outline-3">
|
||||||
|
<h3 id="sec-1-4"><span class="section-number-3">1.4</span> Managing Channels (ChanServ)</h3>
|
||||||
|
<div class="outline-text-3" id="text-1-4">
|
||||||
|
<p>
|
||||||
|
<code>/msg chanserv register #channel</code> Registers the current channel to you with ChanServ
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<code>/msg chanserv set #channel mlock modes</code> Locks the channel's modes. To unlock all of a channel's modes, use <code>/msg chanserv set #channel mlock +</code>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="outline-container-sec-1-5" class="outline-3">
|
||||||
|
<h3 id="sec-1-5"><span class="section-number-3">1.5</span> Moderating Channels</h3>
|
||||||
|
<div class="outline-text-3" id="text-1-5">
|
||||||
|
<p>
|
||||||
|
/kick nickname!userid@hostname
|
||||||
|
removes user from channel, but does not ban them. They are able to join immediately.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
/ban nickname!userid@hostname
|
||||||
|
bans user from channel, but does not kick them. They are prevented from speaking but can still see the channel.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
/kickban nickname!userid@hostname
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Use /whois, /whowas or /who to find the information necessary for a ban.
|
||||||
|
note: * is a wildcard and can replace nickname, userid, parts of nickname or userid, hostname or a segment of a hostname.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
/mode #channel +b nickname!userid@hostname
|
||||||
|
the same as /ban
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="outline-container-sec-1-5-1" class="outline-4">
|
||||||
|
<h4 id="sec-1-5-1"><span class="section-number-4">1.5.1</span> Ban Examples:</h4>
|
||||||
|
<div class="outline-text-4" id="text-1-5-1">
|
||||||
|
<p>
|
||||||
|
joe!*@*
|
||||||
|
Will prevent anyone with the nick joe from joining.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<b>myg0t</b>!*
|
||||||
|
Will prevent anyone whose nick contains myg0t from joining.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
mark!*elc@*
|
||||||
|
Will prevent anyone with the nick mark and the userid elc from joining.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
*!*@c-123-24-76-213.ga.isp.net
|
||||||
|
Will prevent anyone with the host c-123-24-76-213.ga.isp.net from joining.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<b>!*@</b>
|
||||||
|
Bans everyone. Don't do that.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="outline-container-sec-1-6" class="outline-3">
|
||||||
|
<h3 id="sec-1-6"><span class="section-number-3">1.6</span> Advanced Commands for the uberl337</h3>
|
||||||
|
<div class="outline-text-3" id="text-1-6">
|
||||||
|
</div><div id="outline-container-sec-1-6-1" class="outline-4">
|
||||||
|
<h4 id="sec-1-6-1"><span class="section-number-4">1.6.1</span> Advanced NickServ commands</h4>
|
||||||
|
<div class="outline-text-4" id="text-1-6-1">
|
||||||
|
</div><ol class="org-ol"><li><a id="sec-1-6-1-1" name="sec-1-6-1-1"></a>User modes<br /><div class="outline-text-5" id="text-1-6-1-1">
|
||||||
|
<p>
|
||||||
|
<code>/mode nickname +/-attributes [data]</code>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Setting people's modes (for current channel only). To set a user's mode outside of a channel, use <code>/mode nickname #channel +/- attributes</code>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Some of the more important ones are:
|
||||||
|
<code>+q: User is owner of the current channel (prefix ~ or @)</code>
|
||||||
|
<code>+a: User is an admin (SOP) on the current channel (prefix & or @).</code>
|
||||||
|
<code>+o: User is an operator (AOP) on the current channel (prefix @).</code>
|
||||||
|
<code>+h: User is a half-op on the current channel (prefix %).</code>
|
||||||
|
<code>+v: User has voice on the current channel (prefix +).</code>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
For a complete list of user modes visit <a href="https://wiki.inspircd.org/User_Modes">https://wiki.inspircd.org/User_Modes</a>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</li></ol>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="outline-container-sec-1-6-2" class="outline-4">
|
||||||
|
<h4 id="sec-1-6-2"><span class="section-number-4">1.6.2</span> Advanced Chanserv commands</h4>
|
||||||
|
<div class="outline-text-4" id="text-1-6-2">
|
||||||
|
</div><ol class="org-ol"><li><a id="sec-1-6-2-1" name="sec-1-6-2-1"></a>Commands<br /><div class="outline-text-5" id="text-1-6-2-1">
|
||||||
|
<p>
|
||||||
|
<code>/msg chanserv set #channel secure [on|off]</code> Keeps everyone except aops, sops, and the founder from becoming ops.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<code>/msg chanserv set #channel keeptopic [on|off]</code> Maintains the topic even if everyone leaves.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<code>/msg chanserv set #channel enforce [on|off]</code> Restores op/halfop/voice if a person with op/halfop/voice gets de-opped/halfopped/voiced.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<code>/msg chanserv set #channel leaveops [on|off]</code> Whether or not to allow the first person who join the channel to get ops.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<code>/msg chanserv drop #channel [dropcode]</code> Un-registers the current channel to you with ChanServ.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<code>/msg chanserv set #channel founder [nickname]</code> Sets the current channel's founder.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<code>/msg chanserv set #channel desc [description]</code> Changes the current channel's description.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<code>/msg chanserv set #channel url [address]</code> Associates a URL with the channel.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
<code>/msg chanserv set #channel [email@address]</code> Associates an email address with the channel.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</li>
|
||||||
|
<li><a id="sec-1-6-2-2" name="sec-1-6-2-2"></a>Channel modes<br /><div class="outline-text-5" id="text-1-6-2-2">
|
||||||
|
<p>
|
||||||
|
<code>/mode #channel +/-attribute [data]</code>
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
For a full list of Inspircd's channel modes visit <a href="https://wiki.inspircd.org/Channel_Modes">https://wiki.inspircd.org/Channel_Modes</a>
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</li></ol>
|
||||||
|
</div>
|
||||||
|
<div id="outline-container-sec-1-6-3" class="outline-4">
|
||||||
|
<h4 id="sec-1-6-3"><span class="section-number-4">1.6.3</span> Access lists</h4>
|
||||||
|
<div class="outline-text-4" id="text-1-6-3">
|
||||||
|
<p>
|
||||||
|
<code>/msg chanserv access #channel add [nickname] [level]</code>
|
||||||
|
Adds nickname to the channel's access list at the specified level.
|
||||||
|
<code>/msg chanserv access channel del [nickname]</code>
|
||||||
|
Removes nickname from the channel's access list.
|
||||||
|
<code>/msg chanserv access #channel list</code>
|
||||||
|
Displays the channel's access list.
|
||||||
|
<code>/msg chanserv access #channel count</code>
|
||||||
|
Displays how many entries are in the channel's access list.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="outline-container-sec-1-6-4" class="outline-4">
|
||||||
|
<h4 id="sec-1-6-4"><span class="section-number-4">1.6.4</span> Access levels</h4>
|
||||||
|
<div class="outline-text-4" id="text-1-6-4">
|
||||||
|
<p>
|
||||||
|
These may vary from network to network. For example, some networks do not go by tens and use 3, 4, 5, 10, etc.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Founder
|
||||||
|
Full access to ChanServ functions, automatic opping upon entering channel.
|
||||||
|
100+
|
||||||
|
Makes the person an SOP, automatic opping upon entering channel.
|
||||||
|
50
|
||||||
|
Makes the parson an AOP, automatic opping upon entering channel.
|
||||||
|
40
|
||||||
|
Automatic half-opping.
|
||||||
|
30
|
||||||
|
Automatic voicing.
|
||||||
|
0
|
||||||
|
No special privileges.
|
||||||
|
-1
|
||||||
|
May not be opped.
|
||||||
|
-100
|
||||||
|
May not join the channel.
|
||||||
|
Any nick not on the access list has an access level of 0.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="outline-container-sec-1-6-5" class="outline-4">
|
||||||
|
<h4 id="sec-1-6-5"><span class="section-number-4">1.6.5</span> AOPs</h4>
|
||||||
|
<div class="outline-text-4" id="text-1-6-5">
|
||||||
|
<p>
|
||||||
|
Are automatically ops and can give themselves ops.
|
||||||
|
Can give/take op/halfop/voice to/from other channel members.
|
||||||
|
Can unban themselves.
|
||||||
|
Receive memos sent to the whole channel.
|
||||||
|
Can invite themselves to the channel.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="outline-container-sec-1-6-6" class="outline-4">
|
||||||
|
<h4 id="sec-1-6-6"><span class="section-number-4">1.6.6</span> SOPs</h4>
|
||||||
|
<div class="outline-text-4" id="text-1-6-6">
|
||||||
|
<p>
|
||||||
|
Can do everything AOPs can.
|
||||||
|
Can give and take AOP privileges.
|
||||||
|
Receive memos sent to the channel's SOPs.
|
||||||
|
Can add (but not remove) AKICKs.
|
||||||
|
##Viewing and setting privileges
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="outline-container-sec-1-6-7" class="outline-4">
|
||||||
|
<h4 id="sec-1-6-7"><span class="section-number-4">1.6.7</span> Viewing AOP and SOP lists</h4>
|
||||||
|
<div class="outline-text-4" id="text-1-6-7">
|
||||||
|
<p>
|
||||||
|
/msg chanserv aop #channel list
|
||||||
|
/msg chanserv sop #channel list
|
||||||
|
adding a AOP or SOP
|
||||||
|
/msg chanserv [AOP|SOP] channel [ADD|DEL|LIST|CLEAR] [nick | entry-list]
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="outline-container-sec-1-6-8" class="outline-4">
|
||||||
|
<h4 id="sec-1-6-8"><span class="section-number-4">1.6.8</span> AKICKs</h4>
|
||||||
|
<div class="outline-text-4" id="text-1-6-8">
|
||||||
|
<p>
|
||||||
|
People on the AKICK list are automatically kicked and banned when they enter the channel. Bans made as a result of AKICK must be removed manually.
|
||||||
|
/msg chanserv akick #channel add host [reason]
|
||||||
|
Adds host to #channel's AKICK list [for reason].
|
||||||
|
/msg chanserv akick #channel del host
|
||||||
|
Removes host from the AKICK list.
|
||||||
|
/msg chanserv akick #channel list
|
||||||
|
/msg chanserv akick #channel view
|
||||||
|
Displays the AKICK list.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="outline-container-sec-1-6-9" class="outline-4">
|
||||||
|
<h4 id="sec-1-6-9"><span class="section-number-4">1.6.9</span> Color codes</h4>
|
||||||
|
<div class="outline-text-4" id="text-1-6-9">
|
||||||
|
<p>
|
||||||
|
it's possible to color your text in irc. in most clients you can use control c then foreground,background (background is optional). examples: red text ^c4. black text on a blue background ^c1,2. here's a full list of the color codes:
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<p>
|
||||||
|
Number Name
|
||||||
|
00 white
|
||||||
|
01 black
|
||||||
|
02 blue (navy)
|
||||||
|
03 green
|
||||||
|
04 red
|
||||||
|
05 brown (maroon)
|
||||||
|
06 purple
|
||||||
|
07 orange (olive)
|
||||||
|
08 yellow
|
||||||
|
09 light green (lime)
|
||||||
|
10 teal (a green/blue cyan)
|
||||||
|
11 light cyan (cyan / aqua)
|
||||||
|
12 light blue (royal)
|
||||||
|
13 pink (light purple / fuchsia)
|
||||||
|
14 grey
|
||||||
|
15 light grey (silver)
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div id="postamble" class="status">
|
||||||
|
<p class="author">Author: notnull</p>
|
||||||
|
<p class="date">Created: 2019-01-26 Sat 14:13</p>
|
||||||
|
<p class="creator"><a href="http://www.gnu.org/software/emacs/">Emacs</a> 24.5.1 (<a href="http://orgmode.org">Org</a> mode 8.2.10)</p>
|
||||||
|
<p class="validation"><a href="http://validator.w3.org/check?uri=referer">Validate</a></p>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
44
org/irc-tor.org
Normal file
44
org/irc-tor.org
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
* Connect to IRC with Tor
|
||||||
|
Debian
|
||||||
|
** hexchat
|
||||||
|
|
||||||
|
Two options: (1) set up a 'global' proxy that applies to every hexchat connection, which can be overridden, or (2) set up a 'local' proxy that only applies to one connection.
|
||||||
|
|
||||||
|
*** Global proxy:
|
||||||
|
- Install Tor Browser
|
||||||
|
- Hexchat Settings > Preferences > Network setup
|
||||||
|
- hostname: 127.0.0.1
|
||||||
|
- port: 9150
|
||||||
|
- type: socks5
|
||||||
|
- use proxy for: all connections
|
||||||
|
- HexChat > Network List > Add
|
||||||
|
- name it whatever
|
||||||
|
- servers > add > km3jy7nrj3e2wiju.onion/6667
|
||||||
|
- leave all checkboxes blank
|
||||||
|
- close > connect
|
||||||
|
|
||||||
|
** irssi
|
||||||
|
- install irssi
|
||||||
|
- ~cat irssi-tor => proxychains-ng/proxychains4 -f src/proxychains.conf irssi --home ~/.irssi-tor~
|
||||||
|
|
||||||
|
more info? https://trac.torproject.org/projects/tor/wiki/doc/TorifyHOWTO/irssi
|
||||||
|
|
||||||
|
* Connect to Freenode w/ Tor
|
||||||
|
|
||||||
|
- log into IRC
|
||||||
|
- open a terminal window
|
||||||
|
- ~cd .config/hexchat/certs~
|
||||||
|
- ~openssl req -x509 -new -newkey rsa:4096 -sha256 -days 1000 -nodes -out freenode.pem -keyout freenode.pem~
|
||||||
|
- generates a self-signed certificate
|
||||||
|
- ~openssl x509 -in freenode.pem -outform der | sha1sum -b | cut -d' ' -f1~
|
||||||
|
- generates a fingerprint
|
||||||
|
- note: the certificate file has to have the same name as the name of the network in your client
|
||||||
|
- ~/msg nickserv cert add <fingerprint>~
|
||||||
|
- set auth to sas exteral
|
||||||
|
- have tor open
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user