Fork me on GitHub

Organizations

@github @rss
2 results for darknet
  • 难度等级: 可能需要更长的时间
    images/featured-image.png
    作为访问者在黑暗网络上冲浪是非常简单的。但是,我怎么能主持一个洋葱头页面呢?我将告诉你如何建立你自己的暗网网页。 第1步:我怎样才能在暗网冲浪? 为了更好地说明问题,我使用Ubuntu桌面。我在那里安装了以下软件包。 x – + Terminal $ sudo apt-get update $ sudo apt-get install tor 然后我编辑"/etc/privoxy/config “文件并输入以下内容($ sudo vim /etc/privoxy/config)。你可以用 “ifconfig “查出电脑的IP。 listen-address hier-muss-die-ip-des-rechners-rein:8118 forward-socks5 / 127.0.0.1:9050 . 见。 为了确保Tor和Privoxy在系统启动时也被执行,我们仍然需要在自动启动中输入它们。 x – + Terminal $ sudo update-rc.d tor defaults $ sudo update-rc.d privoxy defaults 现在可以启动服务了。 x – + Terminal $ sudo service tor restart $ sudo service privoxy restart 我在我的Firefox中输入代理地址,停用 “Javascript “并访问 “Tor测试页面”。如果一切都成功了,我现在可以访问TOR/.
    darknet tor website hosting hidden Created Sun, 30 May 2021 00:00:00 +0000
  • 难度等级: 可能需要更长的时间
    images/featured-image.png
    对于我的暗网封锁器,我只需要一个Tor出口节点IO列表和以下规则。 location / { limit_req zone=one; #request limit limit_conn addr include /etc/nginx/conf.d/tor-ips.conf; #tor ips blocken ... } 通过以下脚本,我可以创建一个Ip黑名单。 IP更新脚本 #!/bin/sh # Copyright 2012, Nico R. Wohlgemuth <nico@lifeisabug.com> WGET=/usr/bin/wget LIST=/etc/nginx/conf.d/tor-ips.conf #ziel der blacklist LISTBAK=/etc/nginx/conf.d/tor-ips.bak TEMPLIST=/tmp/torlist.txt wget -qO- https://check.torproject.org/exit-addresses | grep ExitAddress | cut -d ' ' -f 2 | sed "s/^/deny /g; s/$/;/g" > $TEMPLIST if [ ! -s $TMPTEMPLIST ]; then echo "error: list is empty or was not downloaded" exit 1 fi head -n3 $TEMPLIST tail -n3 $TEMPLIST echo -e "\ndoes this look okay?
    blacklisting block hacker darknet nginx Created Fri, 14 Feb 2020 00:00:00 +0000