Gharib Blog
What is it ?
This instance is dedicated to my posts, experiences and my daily learning or searching across the Internet. I will mention the authors if that posts does not belong to me.
This instance is dedicated to my posts, experiences and my daily learning or searching across the Internet. I will mention the authors if that posts does not belong to me.
The tree of liberty must be refreshed from time to time with blood of patriots and tyrants – Thomas Jefferson –
He who would trade liberty for some temporary security deserves neither security nor liberty – Benjamin Franklin –
Democracy is two wolves and a lamb voting on what to have for lunch. Liberty is a well-armed lamb contesting the vote – Benjamin Franklin –
Freedom of speech is far more important the content of the speech – Voltaire –
Hi 👋, I’m Alireza Gharib Software Developer Passionate, Motivated and spontaneous developer, active and disciplined in learning new technologies and trying to be up to date 🙂❤️
📄 Know about my experiences and Skills My Online CV
🔭 I’m currently working on Cybersecurity and DevOps
🌱 I’m currently learning Rust and Cybersecurity
👯 I’m looking to collaborate on any type of Golang Projects
🐳 My Docker Hub Page AlirezaGharib
👨💻 My Personal Website AlirezaGharib
📝 Look at my LinkedIn Account to see my Experiences, Skills & Certifications linkedin
🤩 My HackerRank Profile link
💬 Ask me about Golang, Rust, Cybersecuritye
📫 How to reach me [email protected] and [email protected]
😍 Take a look at my telegram channel if you are a Geek Invite Link 😃
❤️ I am not programming for money, that’s a humble goal. I am programming because I LOVE IT, LIVE FOR IT
Everything about Unix and GNU/Linux operating systems.
du
command in linux efficientlysudo du -ahx / | sort -rh | head -20
-a
→ Show both files and directories-h
→ Human-readable sizes (e.g., MB, GB)-x
→ Stay on the same filesystem (avoid mounted drives)sort -rh
→ Sort by size, largest firsthead -20
→ Show top 20 largest directories/filessudo du -hx --max-depth=3 / | sort -rh | head -20
--max-depth=3
→ Limits output to top 3 levels for better readabilitysudo find / -type f -size +500M -exec du -h {} + | sort -rh | head -20
-type f
→ Only files-size +500M
→ Files larger than 500MBdu -h
→ Show file sizes in human-readable formatsudo du -ahx --exclude={/proc,/sys,/dev,/run,/snap,/tmp,/mnt,/media} / | sort -rh | head -20
sudo du -sh /home/* 2>/dev/null
/home
.If you want to analyze later:
sudo du -ahx / | sort -rh > large_files.txt
Then open it:
less large_files.txt
Check logs:
sudo du -sh /var/log/*
sudo journalctl --vacuum-time=7d # Keep logs for 7 days
Check package cache:
sudo du -sh /var/cache/apt
sudo apt clean
Check old kernels:
dpkg --list | grep linux-image
sudo apt remove --purge linux-image-OLD-VERSION
Linux provides a vast collection of security tools for penetration testing, network analysis, and system hardening. This guide covers essential tools with installation steps and example usage.
Nmap is a powerful tool for discovering hosts and services on a network.
sudo apt update && sudo apt install nmap -y
nmap <target-ip>
nmap 192.168.1.0/24
nmap -A <target-ip>
Wireshark captures and inspects network traffic in real time.
sudo apt install wireshark -y
wireshark
sudo tshark -i eth0
Metasploit is a tool for discovering, exploiting, and validating vulnerabilities.
sudo apt install metasploit-framework -y
msfconsole
use exploit/windows/smb/ms17_010_eternalblue
set RHOSTS <target-ip>
exploit
Hashcat is a high-speed password recovery tool.
sudo apt install hashcat -y
hashcat -m 0 -a 0 hashes.txt rockyou.txt
John the Ripper is another tool for brute-force password attacks.
sudo apt install john -y
john --wordlist=/usr/share/wordlists/rockyou.txt hashes.txt
Lynis performs system audits to detect security weaknesses.
sudo apt install lynis -y
sudo lynis audit system
Fail2Ban monitors logs and bans IPs after multiple failed login attempts.
sudo apt install fail2ban -y
sudo systemctl enable --now fail2ban
UFW is a simple tool for managing iptables firewall rules.
sudo apt install ufw -y
sudo ufw enable
sudo ufw allow ssh
sudo ufw status
Suricata is an advanced intrusion detection system.
sudo apt install suricata -y
sudo systemctl enable --now suricata
Chkrootkit scans the system for known rootkits.
sudo apt install chkrootkit -y
sudo chkrootkit
Rkhunter detects rootkits, backdoors, and local exploits.
sudo apt install rkhunter -y
sudo rkhunter --check
These tools help enhance Linux security, detect vulnerabilities, and prevent attacks. Regularly updating and using these tools can significantly improve your system’s defense against cyber threats.
🚀 Stay secure and keep learning!
On Debian and Ubuntu use the following command
sudo apt install usbmuxd libimobiledevice6 libimobiledevice-utils ifuse
On Fedora or RHEL
sudo dnf install libimobiledevice ifuse usbmuxd
Hardening Kali Linux is essential for maintaining security, especially since it is a penetration testing distro that can be a target for attackers.
It is not explicitly associated with security but it affects it implicitly.
In addition to this it affects the stability of whole system.
deb https://kali.download kali-last-snapshot <keep others here>
Ensure your system is always updated with the latest security patches.
sudo apt update && sudo apt full-upgrade -y
For kernel updates:
sudo apt dist-upgrade -y
Remove unnecessary packages:
sudo apt autoremove -y && sudo apt clean
Kali uses kali
as the default user. Ensure root login is disabled.
sudo passwd -l root
Use a strong password or configure password complexity policies:
sudo apt install libpam-pwquality
sudo nano /etc/security/pwquality.conf
Modify:
minlen = 12
dcredit = -1
ucredit = -1
lcredit = -1
ocredit = -1
sudo apt install libpam-google-authenticator
google-authenticator
Configure /etc/pam.d/sshd
:
auth required pam_google_authenticator.so
Restart SSH:
sudo systemctl restart ssh
Edit SSH config:
sudo nano /etc/ssh/sshd_config
Modify:
PermitRootLogin no
PasswordAuthentication no
PermitEmptyPasswords no
UsePAM yes
MaxAuthTries 3
AllowUsers your_username
Restart SSH:
sudo systemctl restart ssh
sudo apt install ufw -y
sudo ufw default deny incoming
sudo ufw default allow outgoing
sudo ufw allow 22/tcp # If using SSH
sudo ufw enable
sudo ufw status verbose
AppArmor (default in Kali):
sudo apt install apparmor apparmor-profiles apparmor-utils -y
sudo systemctl enable --now apparmor
For SELinux (optional):
sudo apt install selinux-basics selinux-policy-default auditd -y
sudo selinux-activate
sudo reboot
Edit:
sudo nano /etc/apt/apt.conf.d/20auto-upgrades
Add:
APT::Periodic::Update-Package-Lists "1";
APT::Periodic::Unattended-Upgrade "1";
List enabled services:
systemctl list-unit-files --type=service | grep enabled
Disable unneeded ones:
sudo systemctl disable avahi-daemon
sudo systemctl disable bluetooth
sudo systemctl disable cups
Edit GRUB:
sudo nano /etc/default/grub
Modify:
GRUB_CMDLINE_LINUX="ipv6.disable=1"
Update GRUB:
sudo update-grub && sudo reboot
echo "net.ipv4.tcp_syncookies = 1" | sudo tee -a /etc/sysctl.conf
echo "net.ipv4.icmp_echo_ignore_all = 1" | sudo tee -a /etc/sysctl.conf
Apply changes:
sudo sysctl -p
Prevent unauthorized access by setting a GRUB password:
sudo grub-mkpasswd-pbkdf2
Copy the generated hash and add it to /etc/grub.d/40_custom
:
sudo nano /etc/grub.d/40_custom
Add:
set superusers="root"
password_pbkdf2 root <hashed-password>
Update GRUB:
sudo update-grub
Encrypt a partition:
sudo cryptsetup luksFormat /dev/sdX
sudo cryptsetup luksOpen /dev/sdX secure_data
For full disk encryption, use LUKS during installation.
sudo apt install aide -y
sudo aideinit
sudo mv /var/lib/aide/aide.db.new /var/lib/aide/aide.db
Check system integrity:
sudo aide --check
sudo apt install tripwire -y
Initialize and configure rules.
sudo nano /etc/logrotate.conf
Ensure logs are rotated and archived.
sudo apt install auditd -y
sudo systemctl enable --now auditd
Check logs:
sudo ausearch -m avc
To disable USB storage:
echo "blacklist usb-storage" | sudo tee /etc/modprobe.d/usb-storage.conf
Apply changes:
sudo update-initramfs -u && sudo reboot
Ctrl + Alt + L
).sudo apt install firejail -y
firejail --seccomp firefox
Edit /etc/fstab
:
sudo nano /etc/fstab
Add:
tmpfs /tmp tmpfs defaults,noexec,nosuid 0 0
For encrypted swap:
sudo apt install cryptsetup -y
sudo cryptsetup luksFormat /dev/sdX
sudo cryptsetup luksOpen /dev/sdX swap
mkswap /dev/mapper/swap
swapon /dev/mapper/swap
Since Kali comes with many tools, remove what you don’t use:
sudo apt remove wireshark metasploit-framework -y
For better anonymity:
sudo nano /etc/NetworkManager/conf.d/wifi_scan-rand-mac.conf
Add:
[device]
wifi.scan-rand-mac-address=yes
Restart NetworkManager:
sudo systemctl restart NetworkManager
Consider using the grsecurity or linux-hardened kernel.
=======================================
GNOME’s tracker is a CPU and privacy hog. There’s a pretty good case as to why it’s neither useful nor necessary here: http://lduros.net/posts/tracker-sucks-thanks-tracker/
After discovering it chowing 2 cores, I decided to go about disabling it.
~/.cache/tracker
~/.local/share/tracker
After wiping and letting it do a fresh index on my almost new desktop, the total size of each of these directories was a whopping 3.9 GB!
On my Ubuntu GNOME setup, I found the following files:
$ ls /etc/xdg/autostart/tracker-*
/etc/xdg/autostart/tracker-extract.desktop
/etc/xdg/autostart/tracker-miner-fs.desktop
/etc/xdg/autostart/tracker-store.desktop
/etc/xdg/autostart/tracker-miner-apps.desktop
/etc/xdg/autostart/tracker-miner-user-guides.desktop
You can disable these by adding Hidden=true
to them. It’s best done in your
local .config
directory because 1) you don’t need sudo and 2) you are pretty
much guaranteed that your changes won’t be blown away by an update.
tracker
BinaryRunning tracker
will give you a vast array of tools to check on tracker and
manage its processes.
$ tracker
usage: tracker [--version] [--help]
<command> [<args>]
Available tracker commands are:
daemon Start, stop, pause and list processes responsible for indexing content
info Show information known about local files or items indexed
index Backup, restore, import and (re)index by MIME type or file name
reset Reset or remove index and revert configurations to defaults
search Search for content indexed or show content by type
sparql Query and update the index using SPARQL or search, list and tree the ontology
sql Query the database at the lowest level using SQL
status Show the indexing progress, content statistics and index state
tag Create, list or delete tags for indexed content
See 'tracker help <command>' to read about a specific subcommand.
This disables everything but tracker-store
, which even though it has a
.desktop
file, seems tenacious and starts up anyway. However, nothing gets
indexed.
tracker daemon -t
cd ~/.config/autostart
cp -v /etc/xdg/autostart/tracker-*.desktop ./
for FILE in tracker-*.desktop; do echo Hidden=true >> $FILE; done
rm -rf ~/.cache/tracker ~/.local/share/tracker
Note that tracker daemon -t
is for graceful termination. If you are having
issues terminating processes or just want to take your frustration out,
tracker daemon -k
immediately kills all processes.
After this is done, tracker-store
will still start on the next boot. However,
nothing will be indexed. Your disk and CPU will be better for wear.
$ tracker status
Currently indexed: 0 files, 0 folders
Remaining space on database partition: 123 GB (78.9%)
All data miners are idle, indexing complete
Everything about security and cybersecurity.
SPF (Sender Policy Framework), DKIM (DomainKeys Identified Mail), and DMARC (Domain-based Message Authentication, Reporting & Conformance) are essential email authentication protocols that work together to improve email security. Here’s a breakdown of their full security benefits:
By implementing SPF, DKIM, and DMARC, organizations can significantly enhance their email security posture. These protocols work in tandem to authenticate the sender, protect the integrity of the email, enforce policies on unauthenticated messages, and provide valuable insights through reporting, making them essential for any organization concerned with email fraud and abuse.
Everything about DevOps tools and methods.
Follow the provided commands to install ntopng on your system
apt-get install software-properties-common wget
add-apt-repository universe
wget https://packages.ntop.org/apt-stable/xx.yy/all/apt-ntop-stable.deb
apt install ./apt-ntop-stable.deb
Before to install make sure to edit /etc/apt/sources.list and add “contrib” at the end of each line that begins with deb and deb-src.
codename
could be bullseye, bookworm or buster.
wget https://packages.ntop.org/apt-stable/<codename>/all/apt-ntop-stable.deb
apt install ./apt-ntop-stable.deb
Note that ntopng must not be installed together with nedge. Remove ntopng before installing nedge.
nTopNG
apt-get clean all
apt-get update
apt-get install pfring-dkms ntopng pfring-drivers-zc-dkms
nEdge
apt-get install nedge
path is /etc/ntopng/ntopng.conf
# The configuration file is similar to the command line, with the exception that an equal
# sign '=' must be used between key and value. Example: -i=p1p2 or --interface=p1p2 For
# options with no value (e.g. -v) the equal is also necessary. Example: "-v=" must be used.
#
#
# -G|--pid-path
# Specifies the path where the PID (process ID) is saved. This option is ignored when
# ntopng is controlled with systemd (e.g., service ntopng start).
#
-G=/var/run/ntopng.pid
#
# -e|--daemon
# This parameter causes ntop to become a daemon, i.e. a task which runs in the background
# without connection to a specific terminal. To use ntop other than as a casual monitoring
# tool, you probably will want to use this option. This option is ignored when ntopng is
# controlled with systemd (e.g., service ntopng start)
#
# -e=
#
# -i|--interface
# Specifies the network interface or collector endpoint to be used by ntopng for network
# monitoring. On Unix you can specify both the interface name (e.g. lo) or the numeric
# interface id as shown by ntopng -h. On Windows you must use the interface number instead.
# Note that you can specify -i multiple times in order to instruct ntopng to create multi-
# ple interfaces.
#
# -i=eth1
# -i=eth2
#
# -w|--http-port
# Sets the HTTP port of the embedded web server.
#
-w=3002
#
# -m|--local-networks
# ntopng determines the ip addresses and netmasks for each active interface. Any traffic on
# those networks is considered local. This parameter allows the user to define additional
# networks and subnetworks whose traffic is also considered local in ntopng reports. All
# other hosts are considered remote. If not specified the default is set to 192.168.1.0/24.
#
# Commas separate multiple network values. Both netmask and CIDR notation may be used,
# even mixed together, for instance "131.114.21.0/24,10.0.0.0/255.0.0.0".
#
# -m=10.10.123.0/24,10.10.124.0/24
#
# -n|--dns-mode
# Sets the DNS address resolution mode: 0 - Decode DNS responses and resolve only local
# (-m) numeric IPs 1 - Decode DNS responses and resolve all numeric IPs 2 - Decode DNS
# responses and don't resolve numeric IPs 3 - Don't decode DNS responses and don't resolve
#
# -n=1
#
# -S|--sticky-hosts
# ntopng periodically purges idle hosts. With this option you can modify this behaviour by
# telling ntopng not to purge the hosts specified by -S. This parameter requires an argu-
# ment that can be "all" (Keep all hosts in memory), "local" (Keep only local hosts),
# "remote" (Keep only remote hosts), "none" (Flush hosts when idle).
#
# -S=
#
# -d|--data-dir
# Specifies the data directory (it must be writable by the user that is executing ntopng).
#
# -d=/var/lib/ntopng
#
# -q|--disable-autologout
# Disable web interface logout for inactivity.
#
# -q=
#
# Define nDPI custom protocols
#
#--ndpi-protocols=/etc/ntopng/custom_protocols.txt
# Use prefix due to nginx proxy
#--http-prefix="/ntopng"
# Everybody's admin
#--disable-login=1
# Do not resolve any names
--dns-mode=3
# Limit memory usage
--max-num-flows=10000
--max-num-hosts=10000
--community
sudo docker run --privileged --restart=always -d -p 3002:3000 --net=host ntop/ntopng_arm64.dev:latest -i eth0
FreshRSS is a self-hosted RSS and Atom feed aggregator. It is lightweight, easy to work with, powerful, and customizable.
Install Docker and Docker-Compose based on the digitalocean guides on your linux server.
version: "2.4"
services:
freshrss-db:
image: postgres:17
container_name: freshrss-db
hostname: freshrss-db
restart: unless-stopped
logging:
options:
max-size: 10m
volumes:
- ./db/:/var/lib/postgresql/data
environment:
POSTGRES_DB: ${DB_BASE}
POSTGRES_USER: ${DB_USER}
POSTGRES_PASSWORD: ${DB_PASSWORD}
command:
# Examples of PostgreSQL tuning.
# https://wiki.postgresql.org/wiki/Tuning_Your_PostgreSQL_Server
# When in doubt, skip and stick to default PostgreSQL settings.
- -c
- shared_buffers=1GB
- -c
- work_mem=32MB
freshrss:
image: freshrss/freshrss:latest
# Optional build section if you want to build the image locally:
# build:
# Pick #latest (stable release) or #edge (rolling release) or a specific release like #1.21.0
# context: https://github.com/FreshRSS/FreshRSS.git#latest
# dockerfile: Docker/Dockerfile-Alpine
container_name: freshrss
hostname: freshrss
restart: unless-stopped
depends_on:
- freshrss-db
logging:
options:
max-size: 10m
volumes:
- ./data/:/var/www/FreshRSS/data/
- ./extensions/:/var/www/FreshRSS/extensions/
# - config.custom.php:/var/www/FreshRSS/data/config.custom.php
# - config-user.custom.php:/var/www/FreshRSS/data/config-user.custom.php
ports:
- "127.0.0.1:80:80"
environment:
TZ: Asia/Tehran
CRON_MIN: '3,33'
FRESHRSS_INSTALL: |-
--api-enabled
--base-url ${BASE_URL}
--db-base ${DB_BASE}
--db-host ${DB_HOST}
--db-password ${DB_PASSWORD}
--db-type pgsql
--db-user ${DB_USER}
--default_user admin
--language en
--allow-anonymous
--allow-robots
FRESHRSS_USER: |-
--api-password ${ADMIN_API_PASSWORD}
--email ${ADMIN_EMAIL}
--language en
--password ${ADMIN_PASSWORD}
--user admin
If you want to expose your service for others use reverse-proxy like Nginx with TLS to prevent from being compromised.
A curated list of amazingly Free and Open-Source sysadmin resources.
Build automation.
Apache-2.0
Java
Apache-2.0
Java
Apache-2.0
Java
Apache-2.0
Ruby
GPL-3.0
C
Apache-2.0
Groovy/Java
MIT
Ruby
Backup software.
MIT
C
GPL-2.0
Shell
GPL-3.0
Perl
AGPL-3.0
C++/C
GPL-3.0
Python
BSD-3-Clause
Python
AGPL-3.0
C
GPL-2.0
C++
LGPL-2.1
C#
GPL-2.0
Python
GPL-3.0
Rust
MIT
Go
GPL-2.0
Python
BSD-2-Clause
Go
GPL-2.0
Perl
MIT
Go
AGPL-3.0
C/C++
Build and software organization tools.
GPL-2.0
Python
GPL-2.0
Tcl
MIT
Lua
MIT/Apache-2.0
Python
Conversation-driven development and management.
_See also: /r/chatops*
GPL-2.0
C
GPL-3.0
Python
MIT
Nodejs
Configuration management (CM) is a systems engineering process for establishing and maintaining consistency of a product’s performance, functional, and physical attributes with its requirements, design, and operational information throughout its life.
GPL-3.0
Python
GPL-3.0
C
Apache-2.0
Ruby
Apache-2.0
Ruby/C
GPL-3.0
Scala
Apache-2.0
Python
Configuration management database (CMDB) software.
Apache-2.0
Docker/Scala
AGPL-3.0
PHP
AGPL-3.0
PHP
Apache-2.0
Python
Continuous integration/deployment software.
GPL-2.0
Python
BSD-3-Clause
Go
Apache-2.0
Go
Apache-2.0
Go
MIT
Ruby
MIT
Ruby
Apache-2.0
Java/Ruby
MIT
Java
GPL-3.0
C++
BSD-2-Clause
PHP
BSD-2-Clause
PHP
MIT
Nodejs
Apache-2.0
Go
Apache-2.0
Go
Web hosting and server or service control panels.
MIT
Python/Shell
LGPL-2.1
C
GPL-2.0
PHP
GPL-3.0
PHP/Shell/Other
BSD-3-Clause
PHP
GPL-3.0
PHP
GPL-3.0
Shell/Perl/Other
BSD-3-Clause
Perl
Tools and scripts to support deployments to your servers.
MIT
Ruby
Apache-2.0
Java
Apache-2.0
Java/Python
GPL-2.0
Python
BSD-2-Clause
Python
MIT
Perl
Apache-2.0
Python
MIT
Nodejs
Tools used to create diagrams of networks, flows, etc.
Apache-2.0
JavaScript/Docker
MIT
Java
MIT
Nodejs/Docker
Network distributed filesystems.
See also: awesome-selfhosted/File Transfer - Object Storage & File Servers
LGPL-3.0
C++
GPL-2.0
C
GPL-2.0/LGPL-3.0
C
Apache-2.0
Java
Apache-2.0
Go
Apache-2.0/MIT
Go
Apache-2.0
Erlang
GPL-2.0
C
AGPL-3.0
Go
GPL-2.0
C
IPL-1.0
C
Apache-2.0
Python
Apache-2.0
C
GPL-2.0
Python
BSD-3-Clause
Java
DNS server control panels, web interfaces and domain management tools.
Related: DNS - Servers
See also: awesome-selfhosted/DNS
ISC
Perl
Apache-2.0
Python
MIT
Go/Docker
GPL-3.0
PHP
BSD-3-Clause
Python
MIT
Python
GPL-3.0
PHP
MIT
PHP
DNS servers.
Related: DNS - Control Panels & Domain Management
See also: awesome-selfhosted/DNS
MPL-2.0
C
Apache-2.0
Go
CC0-1.0
C
GPL-2.0
C
GPL-3.0
C
BSD-3-Clause
C
GPL-2.0
C++
BSD-3-Clause
C
BSD-3-Clause
C
Open-source code editors.
MIT
JavaScript
MIT
JavaScript
EPL-1.0
Java
GPL-2.0
C/C++
GPL-3.0
C
GPL-3.0
JavaScript
MIT
PHP
MIT
Nodejs
GFDL-1.2
C++
MIT
Go
GPL-3.0
C
GPL-2.0
C++
GPL-3.0
C++
Vim
C
MIT
TypeScript
Lightweight Directory Access Protocol (LDAP) is an open, vendor-neutral, industry standard application protocol for accessing and maintaining distributed directory information services over an Internet Protocol (IP) network.
GPL-3.0
C
Apache-2.0
Java
GPL-3.0
Python/C/JavaScript
GPL-2.0
C
GPL-3.0
Rust
OLDAP-2.8
C
Single sign-on (SSO) is an authentication scheme that allows a user to log in with a single ID to any of several related, yet independent, software systems.
Apache-2.0
Go
MIT
Python
Apache-2.0
Java
Miscellaneous utilities and web interfaces for identity management systems.
Apache-2.0
Python
GPL-2.0
Shell
GPL-2.0
PHP
GPL-3.0
PHP
AGPL-3.0
Python
Apache-2.0
Docker/Go
GPL-3.0
C
Apache-2.0
Go
Apache-2.0
Go/Docker/K8S
IT asset management software.
GPL-3.0
PHP
GPL-2.0
PHP/Perl
GPL-3.0/AGPL-3.0
OVF/Python
GPL-2.0
PHP
Apache-2.0
Python/Docker
AGPL-3.0
PHP
Log management tools: collect, parse, visualize…
Apache-2.0
Ruby
Apache-2.0
Java
MIT
C
AGPL-3.0
Go
GPL-3.0
C
An email client, email reader or, more formally, message user agent (MUA) or mail user agent is a computer program used to access and manage a user’s email.
MIT
Go
GPL-3.0
C
NLPL
Perl
GPL-2.0
C
GPL-2.0
C
MPL-2.0
C/C++
Metric gathering and display software.
Related: Databases, Monitoring
Apache-2.0
Go
MIT
C
MIT
Python
AGPL-3.0
Go
Apache-2.0
Python
GPL-2.0
C
MIT
Nodejs
LGPL-3.0/GPL-3.0
Python
MIT
Go
Software that does not fit in another section.
Apache-2.0
C#/PowerShell
GPL-2.0
Perl/Shell/Other
GPL-2.0
Perl
GPL-3.0
PHP/Shell
AGPL-3.0
PHP
Monitoring software.
Related: Metrics & Metric Collection
AGPL-3.0
Docker/Python
Apache-2.0
Python
GPL-3.0
Perl
MIT
Go
GPL-2.0
PHP
Apache-2.0
Go
GPL-2.0
Python/PHP
MIT
Nodejs/Docker
MIT
Java
GPL-3.0
PHP/Shell
GPL-3.0
Python
BSD-3-Clause
Python
GPL-2.0
C++
GPL-3.0
PHP
MIT
Nodejs/Go/Python/PHP
AGPL-3.0
C
GPL-2.0
Perl/Shell
GPL-2.0
C
GPL-2.0
C
GPL-3.0
C
LGPL-3.0/GPL-3.0
Java/C++/C
QPL-1.0
PHP
GPL-3.0
deb/Docker
LGPL-2.1/GPL-2.0
C
GPL-3.0
PHP
GPL-2.0
PHP
Apache-2.0
Go
EPL-1.0
Java
MIT
Go
AGPL-3.0
Shell
MIT
Go
MIT
Go
MIT
Python
GPL-1.0
Perl
GPL-2.0
C
GPL-2.0
C
Network configuration management tools.
GPL-3.0
Python
GPL-3.0
Python
Apache-2.0
Ruby
GPL-3.0
PHP
BSD-3-Clause
Perl/Shell
GPL-3.0
PHP
Platform-as-a-Service software allows customers to provision, instantiate, run, and manage a computing platform and one or more applications, without the complexity of building and maintaining the infrastructure typically associated with developing and launching the application. Also includes Serverless computing and Function-as-a-service (FaaS) software.
Apache-2.0
Docker/Nodejs
Apache-2.0
Docker
MIT
Docker/Shell/Go/deb
MIT
Go
GPL-3.0
K8S/Nodejs/Go
Apache-2.0
Python/Docker/K8S
MIT
Docker/Nodejs/Go
MIT
Go
BSD-3-Clause
Go/Rust/Docker
MIT
Go/deb/Docker
A package manager or package-management system is a collection of software tools that automates the process of installing, upgrading, configuring, and removing computer programs for a computer in a consistent manner.
MIT
Go
MIT
Ruby
Apache-2.0
Ruby
GPL-2.0
Python
Message queues and message broker software, typically used for inter-process communication (IPC), or for inter-thread communication within the same process.
See also: Cloud Native Landscape - Streaming & Messaging
Apache-2.0
Java
MIT
C
BSD-3-Clause
C++
MPL-2.0
Go
GPL-3.0
C++
Remote Desktop client software.
See also: awesome-selfhosted/Remote Access
GPL-2.0
C
GPL-2.0
C++
GPL-2.0
Perl
Software for management of router hardware.
GPL-2.0
C
GPL-2.0
C
BSD-2-Clause
C/PHP
Apache-2.0
Shell/PHP/Other
Service discovery is the process of automatically detecting devices and services on a computer network.
MPL-2.0
Go
Apache-2.0
Go
Apache-2.0
Java/C++
Operating system–level virtualization.
Apache-2.0
Go
Apache-2.0
Go
Apache-2.0
Go
GPL-2.0
C
Apache-2.0
Go
GPL-2.0
C
alias docker=podman
. (Source Code) Apache-2.0
Go
Zlib
Go
GPL-2.0
C
Troubleshooting tools.
GPL-3.0
Shell
MIT
Python
GPL-2.0
C
Apache-2.0
Docker/Lua/C
GPL-2.0
C
Software versioning and revision control.
GPL-2.0
Haskell
BSD-2-Clause
C
GPL-2.0
C
GPL-2.0
Python/C/Rust
Apache-2.0
C
Virtualization software.
BSD-2-Clause
Python/Haskell
GPL-2.0/LGPL-2.0
C
Apache-2.0
C++
Apache-2.0
Java
MPL-2.0
Go
GPL-2.0
Perl/Shell
LGPL-2.1
C
BUSL-1.1
Ruby
GPL-3.0/CDDL-1.0
C++
GPL-2.0
C
GPL-2.0
C
VPN software.
Apache-2.0
Rust
GPL-2.0
Docker
Apache-2.0
Docker
MIT
docker
BSD-3-Clause
Go
MIT
Go
GPL-2.0
C
GPL-2.0
C
Apache-2.0
C
LGPL-2.1
Python
GPL-2.0
C
GPL-2.0
C
AGPL-3.0
- GNU Affero General Public License 3.0Apache-2.0
- Apache, Version 2.0BSD-2-Clause
- BSD 2-clause “Simplified”BSD-3-Clause
- BSD 3-Clause “New” or “Revised”BUSL-1.1
- Business Source License 1.1CC0-1.0
- Public Domain/Creative Common Zero 1.0CDDL-1.0
- Common Development and Distribution License 1.0EPL-1.0
- Eclipse Public License 1.0GFDL-1.2
- GNU Free Documentation License 1.2GPL-1.0
- GNU General Public License 1.0GPL-2.0
- GNU General Public License 2.0GPL-3.0
- GNU General Public License 3.0IPL-1.0
- IBM Public License v1.0ISC
- ISC LicenseLGPL-2.0
- GNU Lesser General Public License v2LGPL-2.1
- GNU Lesser General Public License v2.1LGPL-3.0
- GNU Lesser General Public License v3MIT
- MIT LicenseMPL-2.0
- Mozilla Public LicenseNLPL
- No Limit Public LicenseOLDAP-2.8
- Open LDAP Public License v2.8QPL-1.0
- Q Public License 1.0Vim
- Vim LicenseZlib
- zlib LicenseSoftware package repositories.
This work is licensed under a Creative Commons Attribution-ShareAlike 4.0 International license.
Make sure to include server and company locations. If they use BitPay or Coinbase please flag this. Additional notes (what level of anonymity is allowed at signup, whether they offer block storage / are suited to running Bitcoin full nodes, etc) are welcome. Particularly interested in hosts that take Lightning payments and hosts in exotic locations. Yes, you can request listing for a company you own or work for, we love to hear from providers.
Using BitPay, Coinbase or using providers that require it is discouraged: many readers have complained BitPay requires a separate account and extensive personal information from the customer in order to pay for services from BitPay-using merchants. Coinbase has recently changed their service and will require the same as BitPay.
Due to draconian new laws being pushed worldwide, I STRONGLY recommend hosting providers move to self-hosted payment processing (e.g BTCPayServer). We have a suggestions for hosting providers page with more information on this for payment providers, along with some other tips.
Initech - Locations: Melbourne (AU), Sydney (AU), Belgium (BE), Sao Paulo (BR), Montreal (CA), Toronto (CA), Santiago (CL), Hong Kong (CN), Helsinki (FI), Finland (FI), Paris (FR), Berlin (DE), Falkenstein (DE), Frankfurt (DE), Nuremberg (DE), Bangalore (IN), Delhi (IN), Mumbai (IN), Jakarta (ID), Ireland (IE), Tel Aviv (IL), Milan (IT), Turnin (IT), Osaka (JP), Tokyo (JP), Kuala Lumpur (MY), Mexico City (MX), Amsterdam (NL), Holland (NL), Manila (PH), Warsaw (PL), Doha (QA), Singapore (SG), Johannesburg (ZA), Seoul (KR), Madrid (ES), Stockholm (SE), Dubai (AE), London (UK), Manchester (UK), Atlanta (US), Chicago (US), Columbus (US), Dallas (US), Honolulu (US), Iowa (US), Las Vegas (US), Los Angeles (US), Miami (US), New York (US), Ohio (US), Oregon (US), Salt Lake City (US), San Francisco (US), Seattle (US), Silicon Valley (US), South Carolina (US), Virginia (US), Zurich (CH), Taiwan (TW). Company registered in United States. Also offers a residential proxy (VPN) service with endpoints available in almost every country worldwide (the residential proxy service blocks websites that are common abuse targets, like banking or Netflix. Their VPS service does not block). Resells VPS services from many cloud providers (Vultr, Alibaba Cloud, Amazon Lightsail/AWS, DigitalOcean, Google Cloud/GCP, Hetzner Cloud). No email verification required to order. Accept all major cryptocurrencies. Tor traffic is OK, their website is built to be easy to use over Tor. Accepts crypto payments via Plisio and BTCPayServer, including Bitcoin Lightning Network (LN) payments via BTCPayServer. Large Storage / Block storage 40GB up to 40TB now available via normal ordering flow. Use promo code BITCOINVPS for 10% discount on all orders for new customers.
Njalla - Locations: Sweden (SE). Company registered in Nevis. Runs their own datacenter. Tor- and anonymity-friendly. Privacy-focused domain registration service that also offers VPS, VPN. Accepts BTC, XMR, ZEC among other options. Onion URL: http://njallalafimoej5i4eg7vlnqjvmb6zhdh27qxcatdn647jtwwwui3nad.onion
Hostiko - Locations: Kyiv (UA), Falkenstein (DE), Warsaw (PL). Company registered in Ukraine. Accepts BTC, XMR, many others via NOWPayments (no KYC and numerous altcoins). Anonymous sign-up/signup via Tor is allowed. They actively monitor their network for abuse and react accordingly.
Private WebHost - Locations: Vienna (AT), Helsinki (FI), Frankfurt (DE), Netherlands (NL), Moscow (RU), Stockholm (SE), Zurich (CH), Paris (FR), Los Angeles (US). Company registered in Switzerland. Privacy/anonymity-focused hoster. Only an email required at signup, Signup via VPNs, proxies, and Tor allowed, payments via NOWPayments, CoinPayments.net. Lightning Network (LN) payments via CoinPayments. Working on self/hosted payments. The Swiss dedicated servers are Large Storage and suitable for Bitcoin full nodes. All servers can be used for Tor nodes (exit nodes allowed if you block port 25). Netherlands VPS servers are Large Storage. No Google Captcha. Support via tickets or encrypted email. Dedicated servers in Switzerland, working on more locations. Use promo code BITCOINVPS for 10% off. Very responsive support.
Profvds - Locations: Bratislava (SK). Company registered in Slovakia. Accepts Bitcoin via BTCPayServer, NOWPayments, Plisio, and Payeer. Only Email required to register. Provider notes they support running Bitcoin full nodes
Opera VPS - Locations: London (UK), Frankfurt (DE) , Chicago (US), Dallas (US), Los Angeles (US), Miami (US), New Jersey (US), Montreal (CA), Amsterdam (NL), Paris (FR), Tokyo (JP). Company registered in US (Washington state). Anonymous signup OK, Tor allowed, Lightning Network (LN) payments via Jeeb
VPSBG - Locations: Sofia (BG). Company registered in Bulgaria. Locations: Sofia (BG). Company registered in Bulgaria. Anonymous signup OK, Tor allowed. No 3rd party payment processor, has own implementation to take payments via Bitcoin, Litecoin and Lightning Network (LN). Advertises high performance servers. Provider notes: “VPN servers are installed on a private VPS. They have a dedicated static IP, full SSH root access to the VPS, allowing for full control over the VPN. Verifiable no-logs and privacy policies. Unlimited device connections. VPN uses open-source protocols and custom scripts that are used are publicly available.”
Pqhosting - Locations: Moldova (MD), Russia (RU), Latvia (LV), Netherlands (NL), Hong Kong (HK), Germany (DE), Ukraine (UA), United States (US), Hong Kong (HK), Canada (CA), Czechia (CZ), Slovakia (SK), Israel (IL), Turkey (TR), Poland (PL), Bulgaria (BG), Romania (RO). Company registered in Russia. Google Captchas. User reports they may suddenly require KYC to access your server or pay with crypto if your signup IP (e.g proxy/VPN/Tor) triggers fraud checks, or randomly if they decide they want to know who you are
PrivateAlps - Locations: Switzerland (CH). Company registered in Panama. Networking provided by Ipconnect (Seychelles). Tor traffic and anonymous signup OK. No LN payment. 10% discount if you enter the affiliate 5DBKR when ordering
VSYS - Locations: Ukraine (UA), Netherlands (NL). Company registered in Kyiv, Ukraine. Anonymous signup and Tor traffic OK. States they use Bitcoin Core to process BTC payments directly, LTC and Doge via their billing software.
HostZealot - Locations: Amsterdam (NL), London (UK), Stockholm (SE), Warsaw (PL), Limassol (CY), Tallinn (EE), Ashburn (US), Chicago (US), Dallas (US), Seattle (US), Toronto (CA), Brussels (BE), Tel Aviv (IL), Hong Kong (HK), Dusseldorf (DE), Tbilisi (GE). Company registered in Bulgaria. Provider states they are Tor and anonymity friendly as long as you do not violate their ToS. All their VPS instances use SSDs, their Poland and Netherlands locations offer NVMe also. User reports they do not allow registration from Protonmail email addresses.
Rockhoster - Locations: US, Canada (CA), France (FR). Company registered in UK.
RackNerd - Locations: Los Angeles (US), Utah (US), Dallas (US), New York (US), New Jersey (US), Seattle (US), Montreal (CA), London (UK), Amsterdam (NL), Chicago (US), San Jose (US), Atlanta (US), Tampa (US), Ashburn (US), Strasbourg (FR), Frankfurt (DE), Singapore (SG). Company registered in United States. Accepts BTC, LTC, ETH, ZEC. No Lightning Network. User reports good service and responsive support. User reports they use Coinbase Commerce
BlueVPS - Locations: Amsterdam (NL), Limassol (CY), Gravelines (FR), Singapore (SG), Sofiya (BG), London (UK), Ashburn (US), Los Angeles (US), Atlanta (US), Frankfurt (DE), Palermo (IT), Tel Aviv (IL), Stockholm (SE), Toronto (CA), Tallinn (EE), Madrid (ES), Hong Kong (CN), Warsaw (PL), Sydney (AU), Fujairah (UAE). Company registered in Estonia. Payments via Coinpayments. Regarding anonymity they state “We require clients confirmation e-Mail or ID”. Provider has hardware in two different data centers at their Warsaw and London locations.
3v-hosting - Locations: Ukraine (UA). Company registered in Ukraine. Tor traffic allowed unless backbone provider objects. User data required at signup (not anonymous)
VPS2day - Locations: Frankfurt a.M (DE), Zug/Switzerland (CH), Tallin (EE), Bucharest (RO), The Hague (NL), Stockholm (SE), Manchester (UK), Dallas (US). Company registered in Frankfurt, Germany. Website blocks Tor traffic outright. Does not allow anonymous signup. Payment via Coingate.
Eldernode - Locations: Chicago (US), San Jose (US), New York (US), Denmark (DK), Netherlands (NL), Manchester (UK), France (FR), Germany (DE), Canada. Company registered in Lithuania .
Shock Hosting - Locations: Piscataway/New Jersey (US), Los Angeles (US), Chicago (US), Dallas (US), Jacksonville (US), Denver (US), Seattle (US), Maidenhead (UK), Amsterdam (NL), Sydney (AU), Tokyo (JP), Singapore (SG). Company registered in United States.
Cinfu - Locations: Germany (DE), Bulgaria (BG), France (FR), Netherlands (NL), US. Company registered in Seychelles. Anonymous signup discouraged (automated fraud checks). No signup over Tor (website currently blocks Tor users entirely). User reports their datacentres may de-prioritise Bitcoin related traffic (and/or other large data transfers) resulting in extremely long full node sync times (weeks, single kbps bandwidth) after an initial burst for about 15% of the BTC blockchain
Host-World - Locations: Frankfurt (DE), Amsterdam (NL), London (UK), Strasbourg (FR), Gravelines (FR), Limassol (CY), Bratislava (SK), Prague (CZ), Riga (LV), Warsaw (PL), Chisinau (MD), Kiev (UA), New Jersey (US), Toronto (CA), Beauharnois (CA), Sydney (AU), Hong Kong (HK), Tokyo (JP), Singapore (SG), Petach Tikva (IL), Turkey (TR). Company registered in Estonia. Uses Coinpayments.net. Anonymous signup OK (they only verify email)
LegionBox - Locations: US, Switzerland (CH), Germany (DE), Russia (RU). Company registered in Australia. Anonymous signup discouraged (automated fraud checks)
THC Servers - Locations: Romania (RO), Canada. Company registered in United States. Supports Lightning Network (LN)
ServerMath - Locations: Amsterdam (NL), Hong Kong (HK), Madrid (ES), Seoul (KR), Dallas (TX), Istanbul (TR), Manila (PH), Singapore (SG), Dubai (AE), Lagos (NG), Miami (US), Tokyo (JP), Frankfurt (DE), London (UK), Moscow (RU), Warsaw (PL). Company registered in ???. Accepts Bitcoin via BTCPayServer. Willing to consider payment via other cryptocurrencies on request. Does not require KYC or check identity. Happy to arrange custom server configurations (e.g GPUs, high bandwidth servers). Affiliated with RatioServer. Website does not work when visited from some IP addresses
FlokiNET - Locations: Romania (RO), Iceland (IS), Finland (FI), Netherlands (NL). Company registered in Iceland. Free speech-focused service, Tor friendly. Includes (potentially outdated) OpenBSD images which must be manually installed via VNC. Anonymous signup OK, only valid email address is required. Accepts Bitcoin and XMR via Coinpayments. Allows customizing dedicated servers, including with Large Storage suitable for full nodes. This website is currently hosted on Flokinet
SeedVPS - Locations: Netherlands (NL). Company registered in US/Israel. Google captchas. Automated fraud detection system may cancel your order or even ban your account, we recommend against using VPN/Tor/proxies to order from this provider. User reports that their website is unusable over Tor: you are constantly logged out, and have to solve a captcha every time you click anything on their website
ExtraVM - Locations: Dallas TX (US), Los Angeles CA (US), Miami FL (US), Vint Hill VA (US), Montreal QC (CAN), London (UK), Gravelines (FR), Sydney (AU), Singapore (SG), Tokyo (JP). Company registered in Delaware, US. Ryzen servers. Crypto payments via Cryptomus. DdoS protected. Also offers Minecraft servers.
Qhoster - Locations: UK, US, Canada (CA), Bulgaria (BG), Lithuania (LT), France (FR), Germany (DE), Netherlands (NL), Switzerland (CH). Company registered in ???. Google captcha
SporeStack - Locations: San Francisco/NYC (US), Toronto (CA), London (UK), Amsterdam (NL), Frankfurt (DE), Singapore (SG), Bangalore (IN). Company registered in Texas (US). Accountless VPS provider. Also takes Bcash / Bitcoin SV. API-only/no registration, servers on Digital Ocean, Vultur/Linode available on request, Tor-only servers in undisclosed location, onion service URL: http://spore64i5sofqlfz5gq2ju4msgzojjwifls7rok2cti624zyq3fcelad.onion/#ref=vps
GlobalDataServer - Locations: Atlanta (US), Chicago (US), Dallas (US), Los Angeles (US), Miami (US), Montreal (CA), New York (US), Seattle (US), Vancouver (CA), Washington DC (US), Amsterdam (NL), Brussels (BE), Bucharest (RO), Copenhagen (DK), Dublin (IE), Frankfurt (DE), London (UK), Madrid (ES), Milan (IT), Moscow (RU), Oslo (NO), Paris (FR), Sofia (BG), Stockholm (SE), Vienna (AT), Vilnius (LT), Warsaw (PL), Zurich (CH), Bursa (TR), Hong Kong (HK), Singapore (SG), Tokyo (JP), Sydney (AU), Johannesburg (ZA). Company registered in Las Vegas (US). Dedicated servers in 100+ locations. Has high bandwidth 20GBps dedicated servers and can do custom configuration. Tor friendly. Contact them directly to arrange BTC payment. User reports they are likely connected to AllServerHost. Use code BITCOINVPS for a 10% discount on first order
NiceVPS - Locations: Netherlands (NL). Company registered in Dominica. Minimal registration data and Tor friendly. Bulletproof DDoS-protected hosting available. Also provides confidential domains. Will offer hosting in Switzerland (CH) soon.
BlazingFast - Locations: Netherlands (NL). Company registered in Netherlands. High performance servers
ThunderVM - Locations: Germany (DE), United States (US), Iceland (IS), Switzerland (CH), Netherlands (NL), France (FR), Italy (IT), United Kingdom (UK), Lithuania (LT), Poland (PL). Company registered in italy. Ok with hosting full nodes and Tor relays, but not Tor exit nodes, or (on VPS) mining cryptocurrency. Uses hCaptcha. Provider states that all their servers/hypervisors are installed and encrypted by them for user security. Uses BTCPayServer and self-hosted Monero (XMR) payments. Accepts Lightning Network (LN) payments via NowPayments
Cockbox - Locations: Romania (RO). Company registered in Seychelles. Servers with cocks. Tor and anonymity-friendly. Onion URL: http://dwtqmjzvn2c6z2x462mmbd34ugjjrodowtul4jfbkexjuttzaqzcjyad.onion/?r=3033
Ahost - Locations: Dubai (AE), Vienna (AT), Sydney (AU), Brussels (BE), Sofia (BG), Zurich (CH), Prague (CZ), Copenhagen (DK), Seville (ES), Thessaloniki (GR), Kwai Chung (HK), Zagreb (HR), Budapest (HU), Tel Aviv (IL), Hafnarfjordur (IS), Milan (IT), Tokyo (JP), Vilnius (LT), Riga (LV), Chisinau (MD), Skopje (MK), Oslo (NO), Warsaw (PL), Belgrade (RS), Bucharest (RO), Moscow (RU), Stockholm (SE), Ljubljana (SI). Company registered in Estonia. No anonymous signup. No Tor or spam allowed. Payments via Payeer. KVM virtualization, Gigabit speeds for every VPS. They do NOT want anonymous signups or Tor traffic. User reports they ask for KYC (scan of government ID) after payment. Google Captchas
AtomicNetworks - Locations: Eygelshoven (NL), Chicago (US), Miami (US), Los Angeles (US). Company registered in Delware, United States. Crypto payments through Coinbase Wallets, samller altcoins via NowPayments. Tor traffic OK. Uses Google Captchas. Asks for personal information but you can write whatever you like.
AlexHost - Locations: Tallbert (SE), Moldova (MD), Sofia (BG), Netherlands (NL). Company registered in Moldova. Email hosting included with shared web hosting service. Operates through AS200019, with own datacenter, network and hardware in the Republic of Moldova. Domain registration via OpenSRS/Tucows. They welcome people using their VPS for VPN endpoints. No KYC unless the payment gateway (e.g Paypal) asks for it (so pay with crypto). Doesn’t verify the personal data you give them otherwise. Tor bridges and relays are fine, Tor exit nodes are not allowed. Bitcoin payments accepted via BTCPayServer. Monero and other cryptocurrencies also accepted. May use Google Captchas (via Hostbill). Dedicated servers can be customized so they have Large Storage for running full nodes. Provider states they support freedom of speech and privacy.
HostStage - Locations: France (FR), Canada (CA), US. Company registered in France. Uses Coingate. Also provides shared web hosting. Anonymous sign up OK as long as no fraud, Tor traffic OK provided it is not used in a way that causes trouble
Justhost - Locations: Russia (RU). Company registered in Russia. Selling VDS
Lunanode - Locations: Canada (CA), France (FR). Company registered in Canada. User reports that registration is not allowed when using a VPN. Another user reports that their VPN worked, but LunaNode required phone number verification to pay with Bitcoin and/or Lightning Network (LN).
Skhron - Locations: Warsaw (PL). Company registered in Estonia. Equipment located at Equinix WA3. Bitcoin, Monero (XMR), TRX, USDT/TRC20, LTC accepted using self-hosted BTCPayServer (BTC) and BitCartCC (other coins). Lightning Network (LN) payments supported. Tor traffic allowed. Only a valid email is required, they don’t check other user-provided personal info unless you pay with fiat. No KYC and no error prone fraud protection to cancel your order unexpectedly. Captchas are standard pictures or hCaptcha. Offers a low-end KVM VPS for 1.15 EUR/month. Onion service at http://ufcmgzuawelktlvqaypyj4efjonbzleoketixdmtzidvfg254gfwyuqd.onion/
IP-Connect - Locations: Ukraine (UA). Company registered in Ukraine. Runs their own datacenter. Tor-friendly. Minimal registration. Crypto payments accepted via payment gateway. Doesn’t require KYC, allows TOR/proxy. Criminal activity prohibited. All VPS are KVM-based, 100% SSD, recent Intel processors, redundant high quality uplinks, lowest latency possible, loads of bandwidth, TUN/TAP for VPN, hostCPU passthrough, random generators for fast entropy, noVNC, images of common Linux distributions for fully automated installation, bring your own .iso (also Windows etc. allowed). Now additionally accepts payments via Nowpayments.io, which supports hundreds of different cryptocurrencies. Use promocode “bitcoin-vps2022” for -10% discount
FlyNet - Locations: Tomsk/Russia (RU). Company registered in Russia. May require SMS verification. Use coupon code FLYNET-PRO-180784 for 10% discount.
SeiMaxim - Locations: Almere (NL), Amsterdam (NL), Los Angeles (US). Company registered in Netherlands. Anonymous signup allowed. Bitcoin full nodes are allowed. Also offers GPU mining servers, domains, shared hosting, and HTTP/SOCKS proxies. Uses Coinbase payment gateway
ForexVPS - Locations: New York (US), London (UK), Manchester (UK), Zurich (CH), Amsterdam (NL), Frankfurt (DE), Singapore (SG), Tokyo (JP). Company registered in Hong Kong. Lightning Network (LN) payment support
Internoc24 - Locations: Czech Republic (CZ), Sweden (SE), UK, Finland (FI), Russia (RU). Company registered in US/CZ. Offers both OpenVZ and KVM. Advertises anonymous signup
VPSGOD - Locations: Germany (DE), US, France (FR), Netherlands (NL), United States (US). Company registered in US. Google captcha
BuyVM / Frantech - Locations: Las Vegas (US), New Jersey (US), Luxembourg (LU), Miami (US). Company registered in Canada. Supports Anycast IP addressing
Noez - Locations: Frankfurt (DE). Company registered in Germany. Large Storage, may be suitable for running Bitcoin full nodes
XetHost - Locations: Budapest (HU). Company registered in Hungary. DevOps-focused. Accepts many different cryptocurrencies via CoinGate. Asks for phone number and email address.
Host4Coins - Locations: France (FR), Zurich (CH). Company registered in France(?). Only Bitcoin and Lightning Network (LN) payments. Anonymous signup encouraged (they do not verify email address validity). $2/mo discount for IPv6-only service. Run by https://twitter.com/ketominer
Servting - Locations: Netherlands (NL), India (IN), Germany (DE), London (UK), United States (US), Singapore (SG), Canada (CA), South Korea (KR), Australia (AU), Japan (JP), Ireland (IE), France (FR), Sweden (SE), Spain (ES), Mexico (MX), Brazil (BR), Poland (PL). Company registered in United States. Currently reselling Digital Ocean, AWS Lightsail and Vultr. BTCPayServer as payment gateway. Encourage anonymous sign-up. Provider notes: “TOR and VPNs allowed, we do not use any fraud detection software such as Maxmind. A real email address is encouraged for correspondence but not a requirement . We offer block storage upgrades upon request. We do not check identities or perform any verification, if payment is successful you get a server!”
MrVM - Locations: Sweden (SE). Company registered in Sweden. No Tor traffic allowed
LiteServer - Locations: Netherlands (NL). Company registered in Netherlands. Accepts Lightning Network (LN) payments via Coingate. Large Storage (as of writing, 512GB for 5€/mo!), may be suitable for running full nodes
RamNode - Locations: Seattle/Los Angeles/Atlanta/NYC (US), Netherlands (NL). Company registered in US. Pay-by-the-hour model. User reports they require phone number verification
VPSServer - Locations: San Francisco/Chicago/Dallas/Miami/NYC (US), Toronto (CA), London (UK), Amsterdam (NL), Frankfurt (DE), Bangalore (IN), Tokyo (JP), Hong Kong (HK), Singapore (SG), Sydney (AU). Company registered in US. Uses BitPay. Reader reports they are Tor hostile: “I can’t join or use SSH to connect to their VPSs over Tor. No relays allowed (and most certainly no exits).” See: https://www.vpsserver.com/community/questions/7/i-want-tot-use-tor-network-is-it-allowed/
HostSailor - Locations: Romania (RO), Netherlands (NL). Company registered in UAE. Lightning network (LN) via Coingate. Google Captchas. User reports they log you out constantly if using Tor.
LowEndSpirit - Locations: Rotterdam (NL), London (UK), Milan (IT), Phoenix/Kansas/Lenoir NC (US), Tokyo (JP), Falkenstein (DE), Sofia (BG), Sandefjord (NO), Reims (FR), Perth/Sydney (AU), Singapore. Company registered in ???. Now a directory site / forum for low cost hosting.
OrangeWebsite - Locations: Iceland (IS). Company registered in Iceland. Asks for very minimal user information, seems to take security seriously
VPSBit - Locations: Hong Kong (HK), Lithuania (LT). Company registered in Hong Kong & Lithuania.
BitLaunch - Locations: DigitalOcean, Vultr, Linode, Netherlands (NL), United States (US), United Kingdom (UK). Company registered in Unknown. Cryptocurrency payment front-end to Digital Ocean/Vultr/Linode. User reprts they also run their own infrastructure with their own ASN
Coin.Host / Coinshost - Locations: Zurich (CH). Company registered in Switzerland. Does not provide anonymous hosting, will ask for detailed information about what you are hosting on their servers. Will not refund any deposits made prior to this. We recommend clarifying your proposed usage with them before depositing money with them.
Hostkey - Locations: US, Netherlands (NL), Russia (RU). Company registered in Netherlands. User reports they do not allow registration from Protonmail email addresses
Crowncloud - Locations: Frankfurt (DE), Los Angeles (US). Company registered in Australia.
Hostwinds - Locations: US, Netherlands (NL). Company registered in US.
CryptoHO.ST - Locations: Romania (RO). Company registered in Romania (?). Supports Lightning Network (LN), Monero, and 300+ altcoins
EDIS Global - Locations: Vienna / Austria (AT), Graz / Austria (AT), Brussels / Belgium (BE), Sofia / Bulgaria (BG), Montreal / Canada (CA), Vina del Mar / Valparaiso / Chile (CL), Bogota / Colombia (CO), Prague / Czech Republic (CZ), Zagreb / Croatia (HR), Dubai (UAE), Paris / France (FR), Frankfurt / Germany (DE), Copenhagen / Denmark (DK), Thessaloniki / Greece (GR), Kwai Chung / Hong Kong (HK), Budapest / Hungary (HU), Hafnarfjördur / Iceland (IS), Ballasalla / Isle of Man (IM), Tel Aviv / Israel (IL), Milan / Italy (IT), Palermo / Sicily (IT), Tokyo / Japan (JP), Vilnius / Lithuania (LT), Riga / Latvia (LV), Chisinau / Moldova (MD), Skopje/North Macedonia (MK), Amsterdam / Netherlands (NL), Oslo / Norway (NO), Warsaw / Poland (PL), Bucharest / Romania (RO), Belgrade / Serbia (RS), Moscow / Russia (RU), St. Petersburg / Russia (RU), Belgrade / Serbia (RS), Singapore (SG), Stockholm / Sweden (SE), Ljubljana / Slovenia (SI), Seville / Spain (ES), Zurich / Switcherland(CH), Sydney / Australia (AU), New York (US), London City and London Docklands (UK). Company registered in Limassol, Cyprus. Now using Cryptomus and accepting Bitcoin (plus other standard coins, including DOGE) at all locations.Use coupon code BITCOINVPS for a 10% (lifetime) discount on your first order. The provider notes: Instant Provisioning! All VPS are KVM-based, 100% SSD, modern Intel processors, up to 2x 10Gbps per node, fully GEO-located IP ranges, redundant high quality uplinks, lowest latenc, peerings at local IX, loads of bandwidth, TUN/TAP for VPN, hostCPU passthrough, random-numbers generators for fast entropy, noVNC, 100+ ready to use Turnkey images, images of common Linux distributions for fully automated installation, bring your own .iso and boot it on EDIS KVM, post-install scripts for automated installation according to your recipes. Windows and Linux. Auto-Installers for Windows 2016/2019/2022 Server (trial). TOR traffic is fine but TOR exit notes are not allowed. EDIS does not require KYC, but a real name and a real-world address is required (they don’t come to check if you really live at the indicated address) and EDIS allows signup via TOR or Proxies, but they do not want criminal activity and will manually review all new signups for signs of fraud or criminal intent before provisioning the first service. User reports signups not allowed with cock.li email addresses and a phone number is required at signup.
SuperBitHost - Locations: Bulgaria (BG), Germany (DE), Netherlands (NL), Luxembourg (LU), Malaysia (MY) Russia (RU), Singapore (SG), Switzerland (CH). Company registered in ???. uses Google captchas
Aurologic (Fastpipe) - Locations: Combahton datacenter in Frankfurt, Germany (DE). Company registered in Germany. Large Storage / Block storage offered, may be suitable for running Bitcoin full nodes. Used to be Fastpipe.io, is now Aurologic. If they still take Bitcoin, let us know:
Sered - Locations: Madrid (ES), Barcelona (ES). Company registered in Spain. Website may block Tor users (Google captcha). Use coupon code VQSZANRO for a 2 month discount.
Javapipe (now Mochahost) - Locations: Chicago (US), Amsterdan (NL), Bucharest (RO). Company registered in ???.
Evolution Host - Locations: Strasbourg (FR), Sydney (AU), Frankfurt (DE), Montreal (CA), London (UK), Dallas (US), Oregon (US), Virginia (US), Warsaw (PL). Company registered in ???. Supports Lightning Network (LN). User reports they have started blocking proxy/Tor signups for smaller packages due to abuse
Vultr - Locations: Atlanta (US), Chicago (US), Dallas (US), Los Angeles (US), Miami (US), New Jersey (US), Seattle (US), Silicon Valley (US), Toronto (CA), Amsterdam (NL), Frankfurt (DE), London (UK), Paris (FR), Tokyo (JP), Singapore (SG), Sydney (AU). Company registered in US. Reader reports strong anti-privacy policies: users must make credit card or PayPal payment before they are allowed to make Bitcoin deposits, and they use BitPay (which requires government ID/etc). Reader recommends using a Vultr reseller (e.g Bithost)
xitheon - Locations: Quebec (CA), Frankfurt (DE), Sydney (AU), Warsaw (PL), France (FR), Singapore (SG), UK. Company registered in ???.
Hostens - Locations: London (UK), Frankfurt (DE), Lithuania (LT), Amsterdam (NL), Washington (US), San Fransisco (US), Singapore (SG). Company registered in Lithuania. Large Storage, may be suitable for running Bitcoin full nodes. Requires full KYC (govt ID/etc) on signup, may use BitPay
Hosthatch - Locations: Stockholm (SE), Los Angeles (US), Chicago (US), Amsterdam (NL). Company registered in US. Large Storage, may be suitable for running Bitcoin full nodes
Serverhub - Locations: Chicago (US), Seattle (US), New York (US), Dallas (US), Phoneix (US), Frankfurt (DE). Company registered in US. Large Storage, may be suitable for running Bitcoin full nodes
DeinServerHost - Locations: Combahton datacenter in Frankfurt, Germany (DE). Company registered in Germany. Bitcoin & Lightning Network (LN) via Coingate, anonymous/pseudonymous signup over Tor allowed. Very flexible server configuration (set RAM/disk/# cores independently). Large Storage, may be suitable for running Bitcoin full nodes. Offers one-click DdoS protection via Path.net
Terrahost - Locations: Sandefjord (NO). Company registered in Norway. Runs their own datacenter. Good reputation in the OpenBSD community (but does not offer OpenBSD support natively, you must bring your own install image). Their website claims to use BitPay but it’s not true, they actually use Coingate/BTCPayServer. Sometimes asks for full KYC at signup (e.g if you signed up via Tor)
ClientVPS - Locations: Bahrain (BH), Ukraine (UA), Netherlands (NL), Panama (PA), Russia (RU), Singapore (SG), Hong Kong (HK), Iran (IR). Company registered in Russia or US, it’s unclear. “Bulletproof” hosting provider.
Time4VPS - Locations: Lithuania (LT), Singapore (SG), US. Company registered in Lithuania. Large Storage, may be suitable for running Bitcoin full nodes. Now requiring KYC (ID scans)
1984Hosting - Locations: Iceland (IS). Company registered in Iceland. Anonymous signup allowed. Accepts BTC & XMR via their own implementation. Also offers share & managed hosting, domain registration
Privex - Locations: Sweden (SE), Netherlands (NL), Germany (DE), Finland (FI), United States (US), Japan (JP), Canada (CA). Company registered in Belize. Owns their own hardware and network at their SE / NL regions. Resells Hetzner in DE / FI. Resells Dacentec+Reliablesite in US. Resells Vultr in JP/CA. Privacy focused, anonymous/pseudonymous sign up encouraged. No captchas/cloudflare/analytics. Payments processed by their own in-house solution. Allows hosting Tor exit nodes / public VPNs in SE/NL locations and Tor/I2P relays in all locations except JP/CA. Runs their own Tor nodes to support the network. Ordering is possible with JavaScript disabled. Supports Bring-Your-Own-IP and colocation in SE/NL. Very flexible and willing to consider special requests. Onion service: http://privex3guvvasyer6pxz2fqcgy56auvw5egkir6ykwpptferdcb5toad.onion/ and I2P service: http://privex.i2p/
AnyColo - Locations: Romania (RO). Company registered in Romania. Accepts BTC, XMR. Payments via own BTCPayServer instance. Anonymous signup allowed. According to the company, “our TOS is simple: no abuse and no complaints.”
RatioServer - Locations: Amsterdam (NL), Budapest (HU), Copenhagen (DK), Dallas (US), Dublin (IE), Frankfurt (DE), London (UK), Los Angeles (US), Madrid (ES), Miami (US), Montreal (CA), New York (US), Paris (FR), Prague (CZ), Rome (IT), Singapore (SG), Sofia (BG), Sydney (AU), Tokyo (JP), Zurich (CH) and more. Company registered in ???. Most locations have unmetered dedicated servers and custom-built server options available. Tor- and anonymity-friendly. Does not verify email address validity, but encourages people to sign up with a working email address. Uses their own in-house BTC/ETH payment processor
CryptoVPS - Locations: Hetzner/Germany (DE), Hetzner/Finland (FI), Hetzner (US), Ecatel/Netherlands (NL), Norway (NO), Gcorelabs/Luxembourg (LU). Company registered in ???. Anonymity friendly, their TOS promises they will never ask for KYC. Payments via CoinPayments, other gateways available.
Aaroli - Locations: Amsterdam (NL), Atlanta (US), Frankfurt (DE), London (UK), Paris (FR), Singapore (SG), Sydney (AU), Tokyo (JP), Toronto (CA). Company registered in an undisclosed location. Large Storage offered in 5 locations, may be suitable for full nodes. Payment via BTCPayServer or manual payment (accepts BTC, ETH). Willing to do custom configurations or payment via alternate methods. Anonymous/pseudonymous signup OK, provided you provide a working email address.
IQHost - Locations: Poland (PL)?. Company registered in Poland. Only Polish-language website
DataClub - Locations: Meppel/Netherlands (NL), Stockholm (SE), Riga/Latvia (LV). Company registered in Belize/Cyprus/UK. Dedicated servers in Latvia. May require KYC
Hostiquette - Locations: Amsterdam (NL), Frankfurt (DE), Helsinki (FI), London (UK), Moscow (RU), Paris (FR), Zurich (CH). Company registered in ???. Tor and anonymity-friendly. Using BTCPay Server for Bitcoin payments. Can accept other cryptocurrencies if you contact them. Emai addresses are not verified but using a valid email is recommended for communications. Custom servers are available if you contact them.
VPSAG - Locations: Bulgaria (BG). Company registered in Cyprus. Payments via Coinify. Sister company of DediStart (dedicated servers). Blocks Tor users
eCompute - Locations: Romania (RO). Company registered in Romania. Payments via Coinify. Website appears not to use HTTPS
Servers.Guru - Locations: Helsinki (FI), Nuremberg (DE), Falkenstein (DE), Ashburn (US). Company registered in United States. Anonymous signup allowed (only a valid email address is required). Tor traffic OK. Accepts Lightning Network (LN) payments. Uses self-hosted BitCartCC for Bitcoin payments (as well as others), takes DOGE, DASH, and Zcash/ZEC via Plisio.
Ukrainian Data Network (UDN) - Locations: Kyiv/Kiev (UA). Company registered in Ukraine. Anonymous signup OK, even email address is optional. Accepts BTC and Monero/XMR. Uses their own internal payment system, no 3rd party payment processor
VPS One - Locations: Netherlands (NL). Company registered in UAE. Anonymous signup allowed (only a valid email address is required). Uses CoinPayments.
Zergrush Hosting - Locations: Bucharest (RO). Company registered in Romania. Payments via uTrust, which supports Lightning Network (LN) payments. No Tor exits allowed. Do ask for personal information at signup.
IncogNET - Locations: Netherlands (NL), Idaho (US). Company registered in Wyoming, United States. Accepts Bitcoin via BTCPayServer (and other cryptocurrencies also). No personal information required to sign up, only an email address (which isn’t verified). Ordering via Tor/VPN is OK. Large Storage available on a case-by-case basis, contact them to arrange it. Uses Google Captchas (reCaptcha). Also does anonymous domain registration
SafeAlps - Locations: Switzerland (CH) (shared hosting only), Romania (RO), United States (US), Iceland (IS) (email hosting only). Company registered in Switzerland. VPS in Romania and the US, shared hosting in Switzerland, one-time-payment email hosting in Iceland. Tor-friendly, both traffic and nodes are welcome. Anonymous sign up is OK, PGP encrypted email communication is supported. Payments via Plisio, Lightning Network (LN) payment supported. No captchas or assets loaded from servers they don’t control. Large Storage servers with HDDs (or SSDs on request) are available.
HostSlick - Locations: Netherlands (NL). Company registered in Germany. Accepts Bitcoin via Coinify. Has internal KYC checks - your server can be suspended if you registered via Proxy/VPN. Google captchas. User reports you may be able to register via VPN if you open a support ticket to manually deposit BTC. We recommend testing with small amounts of money and low cost services first.
Webconn Technology - Locations: Netherlands (NL), United States (US), Italy (IT), Japan (JP), France (FR). Company registered in Pakistan. Offers GPU servers. Unlimited traffic. They don’t care what information you provide at signup. Payments via Coinbase or direct transfer to wallet. Google captchas. Linked to Seimaxim
Melbicom - Locations: Riga (LV), Amsterdam (NL), Warsaw (PL), Moscow (RU), Palermo (IT), Vilnius (LT), Madrid (ES), Sofia (BG), Lagos (NG), Singapore (SG), Fujairah (AE), Atlanta (US), Los Angeles (US). Company registered in Lithuania. Windows and Linux VPS. Also offers CDN services. No Tor traffic allowed. They don’t ask for much personal information but don’t want anonymous signup, they may request ID verification. No illegal activities allowed. Bitcoin Lightning network (LN) payments supported. No Google Captchas. Large Storage servers are available. They support BGP sessions, colocations, and cloud services also.
RDP.sh - Locations: Netherlands (NL), Phoneix (US), Poland (PL). Company registered in Germany. Privacy focused Windows RDP and Linux server provider. Only asks for email, no KYC. Accepts Bitcoin via Coinbase gateway.
AnonRDP - Locations: Poland (PL), France (FR). Company registered in Unknown. Anonymous signup allowed, only email address is required. Tor traffic is OK, but requires javascipt due to DdoS protection. Payments via Cryptomus. Accepts XMR, BTC, ETH, TRX, USDT, LTC, and more. Uses Google Captcha now, will soon have a self-hosted non-Javascript solution.
Fort.pw - Locations: Frankfurt am Main (DE). Company registered in Austria. Offers Large Storage servers with HDD, and NVMe boot disks. Very anonymity friendly, even offers an anonymous Web chat where you can contact them. Only requires an email to sign up, a forwarding or temp email is OK. Happy to host crypto nodes or backups. Accepts BTC, XMR, LTC, BCH, Bitcoin Lightning Network (LN) payments using their own in-house payment system. For some transactions they may use 3rd party no-KYC providers. Servers are in Equinix datacenter in Frankfurt, Germany. Free 3.2Tbit DdoS protection and backup slots. No automated fraud checks, no captchas, no cookies. Tor exit nodes not allowed due to all the abuse complaints they generate.
KernelHost - Locations: Frankfurt (DE). Company registered in Austria. Bitcoin payments via BTCPayServer. KVM based servers. Servers at Maincubes datacenter
NetNexus - Locations: Virginia (US), Ohio (US), California (US), Oregon (US), Mumbai (IN), Osaka (JP), Seoul (KR), Singapore (SG), Sydney (AU), Tokyo (JP), Central (CA), Frankfurt (DE), Ireland (IE), London (GB), Paris (FR), Stockholm (SE), Sao Paulo (BR). Company registered in Portland, Oregon. Tor traffic allowed. Asks for email address, name, phone number, etc on signup but doesn’t verify the information. Bitcoin payment with Plisio. No Google Captchas. Large Storage, maybe suitable for full nodes.
MyNymBox - Locations: Frankfurt (DE), Nuremberg (DE), Helsinki (FI), Munich (DE), Portsmouth (UK), New York (US), Seattle (US), St. Louis (US), Singapore (Asia). Company registered in Seychelles. Resells services from Hetzner Cloud, Dedicated Servers and Contabo. Offers Shared Hosting on encrypted storage and anonym Domain Registrations. No email verification required to order. Tor- and anonymity-friendly. Accepts Bitcoin, Lightning and Monero payments via self hosted BTCPayServer. No Google Captchas or 3rd party stuff. Has Storage VPS (Large Storage) servers, suitable for full nodes, provider runs their BTCPayServer on one of them!
SnowCore - Locations: Amsterdam (NL), Salt Lake City (US). Company registered in ???. Uses a Mullvad-style token login system so they don’t collect any personal information at all. Payments via NOWpayments. Cloudflare captchas. Dedicated servers available with 1TB SSDs for 30 EUR one time payment in some locations, might be useful as Large Storage servers for full nodes. Tor is allowed and fully supported.
Gigablits - Locations: Amsterdam (NL), Bangalore (IN), Frankfurt (DE), London (UK), New York (US), San Francisco (US), Singapore (SG), Sydney (AU), Toronto (CA). Company registered in ???. DigitalOcean reseller. Anonymity focused, no personal information required. Payments accepted via Plisio. User reports they took payment but did not deliver service or respond to tickets, business may be defunct.
VPSBroker - Locations: Amsterdam (NL), Atlanta (US), Bangalore (IN), Chicago (US), Dallas (US), Delhi NCR (IN), Frankfurt (DE), Honolulu (US), Johannesburg (ZA), London (UK), Los Angeles (US), Madrid (ES), Manchester (UK), Melbourne (AU), Mexico City (MX), Miami (US), Mumbai (IN), New York (US), Osaka (JP), Paris (FR), Santiago (CL), São Paulo (BR), Seattle (US), Silicon Valley (US), Singapore (SG), Stockholm (SE), Sydney (AU), Tel Aviv (IL), Tokyo (JP), Toronto (CA), Warsaw (PL), Seoul (KR). Company registered in ???. Signup over Tor ok, user reports no captchas or Maxmind/KYC. Accepts Bitcoin, Monero (XMR), and others. User reports the UI is really good. Disk space available up to 160GB.
SafeCloud - Locations: Amsterdam (NL), Athens (GR), Barcelona (ES), Belgrade (RS), Brussels (BE), Bucharest (RO), Copenhagen (DK), Dublin (IE), Dusseldorf (DE), Florence (IT), Frankfurt (DE), Helsinki (FI), Kyiv (UA), Lisbon (PT), London (UK), Madrid (ES), Moscow (RU), Nicosia (CY), Oslo (NO), Paris (FR), Sofia (BG), Stockholm (SE), Warsaw (PL), Vienna (AT), Vilnius (LT), Zurich (CH), Ashburn (US), Atlanta (US), Chicago (US), Dallas (US), Kansas City (US), Los Angeles (US), Mexico City (MX), Miami (US), Montreal (CA), New York (US), Portland (US), Salt Lake City (US), San Juan(PR), Seattle (US), Toronto (CA), Vancouver (CA), Washington (US), Bogota (CO), Buenos Aires (AR), Guatemala City (GT), La Paz (BO), Lima (PE), Quito (EC), San Jose (CR), Santiago (CL), São Paulo (BR), Dubai (AE), Hong Kong (HK), Istanbul (TR), Kuala Lumpur (MY), Mumbai (IN), Singapore (SG), Taipei (TW), Tel Aviv (IL), Tokyo (JP), Fez (MA), Johannesburg (ZA), Lagos (NG), Sydney (AU). Company registered in Seattle (US). Tor traffic OK. Only valid email required at signup. Payments via Bitserver and manual payment processing. No Google Captchas. 100MBps-40Gbps dedicated bandwidth dedicated servers available. Use promo code BITCOINVPS for 10% discount on orders.
BrilliantHost - Locations: Washington, D.C. (US), California (US), Iowa (US), Toronto (CA), London (GB), Amsterdam (NL), Warsaw (PL), Paris (FR), Frankfurt (DE), Milan (IT), Vienna (AT), Sydney (AU), Hong Kong (HK), Stockholm (SE), Dubai (AE), São Paulo (BR). Company registered in Wyoming, United States. Tor traffic OK. No Google Captchas. Very privacy-and anonymity friendly, only an email is required. Processes crypto payments manually via their support team. Advertises high performance at low prices.
Initech - Locations: Melbourne (AU), Sydney (AU), Belgium (BE), Sao Paulo (BR), Montreal (CA), Toronto (CA), Santiago (CL), Hong Kong (CN), Helsinki (FI), Finland (FI), Paris (FR), Berlin (DE), Falkenstein (DE), Frankfurt (DE), Nuremberg (DE), Bangalore (IN), Delhi (IN), Mumbai (IN), Jakarta (ID), Ireland (IE), Tel Aviv (IL), Milan (IT), Turnin (IT), Osaka (JP), Tokyo (JP), Kuala Lumpur (MY), Mexico City (MX), Amsterdam (NL), Holland (NL), Manila (PH), Warsaw (PL), Doha (QA), Singapore (SG), Johannesburg (ZA), Seoul (KR), Madrid (ES), Stockholm (SE), Dubai (AE), London (UK), Manchester (UK), Atlanta (US), Chicago (US), Columbus (US), Dallas (US), Honolulu (US), Iowa (US), Las Vegas (US), Los Angeles (US), Miami (US), New York (US), Ohio (US), Oregon (US), Salt Lake City (US), San Francisco (US), Seattle (US), Silicon Valley (US), South Carolina (US), Virginia (US), Zurich (CH), Taiwan (TW). Company registered in United States. Also offers a residential proxy (VPN) service with endpoints available in almost every country worldwide (the residential proxy service blocks websites that are common abuse targets, like banking or Netflix. Their VPS service does not block). Resells VPS services from many cloud providers (Vultr, Alibaba Cloud, Amazon Lightsail/AWS, DigitalOcean, Google Cloud/GCP, Hetzner Cloud). No email verification required to order. Accept all major cryptocurrencies. Tor traffic is OK, their website is built to be easy to use over Tor. Accepts crypto payments via Plisio and BTCPayServer, including Bitcoin Lightning Network (LN) payments via BTCPayServer. Large Storage / Block storage 40GB up to 40TB now available via normal ordering flow. Use promo code BITCOINVPS for 10% discount on all orders for new customers.
Private WebHost - Locations: Vienna (AT), Helsinki (FI), Frankfurt (DE), Netherlands (NL), Moscow (RU), Stockholm (SE), Zurich (CH), Paris (FR), Los Angeles (US). Company registered in Switzerland. Privacy/anonymity-focused hoster. Only an email required at signup, Signup via VPNs, proxies, and Tor allowed, payments via NOWPayments, CoinPayments.net. Lightning Network (LN) payments via CoinPayments. Working on self/hosted payments. The Swiss dedicated servers are Large Storage and suitable for Bitcoin full nodes. All servers can be used for Tor nodes (exit nodes allowed if you block port 25). Netherlands VPS servers are Large Storage. No Google Captcha. Support via tickets or encrypted email. Dedicated servers in Switzerland, working on more locations. Use promo code BITCOINVPS for 10% off. Very responsive support.
Opera VPS - Locations: London (UK), Frankfurt (DE) , Chicago (US), Dallas (US), Los Angeles (US), Miami (US), New Jersey (US), Montreal (CA), Amsterdam (NL), Paris (FR), Tokyo (JP). Company registered in US (Washington state). Anonymous signup OK, Tor allowed, Lightning Network (LN) payments via Jeeb
Pqhosting - Locations: Moldova (MD), Russia (RU), Latvia (LV), Netherlands (NL), Hong Kong (HK), Germany (DE), Ukraine (UA), United States (US), Hong Kong (HK), Canada (CA), Czechia (CZ), Slovakia (SK), Israel (IL), Turkey (TR), Poland (PL), Bulgaria (BG), Romania (RO). Company registered in Russia. Google Captchas. User reports they may suddenly require KYC to access your server or pay with crypto if your signup IP (e.g proxy/VPN/Tor) triggers fraud checks, or randomly if they decide they want to know who you are
HostZealot - Locations: Amsterdam (NL), London (UK), Stockholm (SE), Warsaw (PL), Limassol (CY), Tallinn (EE), Ashburn (US), Chicago (US), Dallas (US), Seattle (US), Toronto (CA), Brussels (BE), Tel Aviv (IL), Hong Kong (HK), Dusseldorf (DE), Tbilisi (GE). Company registered in Bulgaria. Provider states they are Tor and anonymity friendly as long as you do not violate their ToS. All their VPS instances use SSDs, their Poland and Netherlands locations offer NVMe also. User reports they do not allow registration from Protonmail email addresses.
Rockhoster - Locations: US, Canada (CA), France (FR). Company registered in UK.
RackNerd - Locations: Los Angeles (US), Utah (US), Dallas (US), New York (US), New Jersey (US), Seattle (US), Montreal (CA), London (UK), Amsterdam (NL), Chicago (US), San Jose (US), Atlanta (US), Tampa (US), Ashburn (US), Strasbourg (FR), Frankfurt (DE), Singapore (SG). Company registered in United States. Accepts BTC, LTC, ETH, ZEC. No Lightning Network. User reports good service and responsive support. User reports they use Coinbase Commerce
BlueVPS - Locations: Amsterdam (NL), Limassol (CY), Gravelines (FR), Singapore (SG), Sofiya (BG), London (UK), Ashburn (US), Los Angeles (US), Atlanta (US), Frankfurt (DE), Palermo (IT), Tel Aviv (IL), Stockholm (SE), Toronto (CA), Tallinn (EE), Madrid (ES), Hong Kong (CN), Warsaw (PL), Sydney (AU), Fujairah (UAE). Company registered in Estonia. Payments via Coinpayments. Regarding anonymity they state “We require clients confirmation e-Mail or ID”. Provider has hardware in two different data centers at their Warsaw and London locations.
VPS2day - Locations: Frankfurt a.M (DE), Zug/Switzerland (CH), Tallin (EE), Bucharest (RO), The Hague (NL), Stockholm (SE), Manchester (UK), Dallas (US). Company registered in Frankfurt, Germany. Website blocks Tor traffic outright. Does not allow anonymous signup. Payment via Coingate.
Eldernode - Locations: Chicago (US), San Jose (US), New York (US), Denmark (DK), Netherlands (NL), Manchester (UK), France (FR), Germany (DE), Canada. Company registered in Lithuania .
Shock Hosting - Locations: Piscataway/New Jersey (US), Los Angeles (US), Chicago (US), Dallas (US), Jacksonville (US), Denver (US), Seattle (US), Maidenhead (UK), Amsterdam (NL), Sydney (AU), Tokyo (JP), Singapore (SG). Company registered in United States.
Cinfu - Locations: Germany (DE), Bulgaria (BG), France (FR), Netherlands (NL), US. Company registered in Seychelles. Anonymous signup discouraged (automated fraud checks). No signup over Tor (website currently blocks Tor users entirely). User reports their datacentres may de-prioritise Bitcoin related traffic (and/or other large data transfers) resulting in extremely long full node sync times (weeks, single kbps bandwidth) after an initial burst for about 15% of the BTC blockchain
Host-World - Locations: Frankfurt (DE), Amsterdam (NL), London (UK), Strasbourg (FR), Gravelines (FR), Limassol (CY), Bratislava (SK), Prague (CZ), Riga (LV), Warsaw (PL), Chisinau (MD), Kiev (UA), New Jersey (US), Toronto (CA), Beauharnois (CA), Sydney (AU), Hong Kong (HK), Tokyo (JP), Singapore (SG), Petach Tikva (IL), Turkey (TR). Company registered in Estonia. Uses Coinpayments.net. Anonymous signup OK (they only verify email)
LegionBox - Locations: US, Switzerland (CH), Germany (DE), Russia (RU). Company registered in Australia. Anonymous signup discouraged (automated fraud checks)
THC Servers - Locations: Romania (RO), Canada. Company registered in United States. Supports Lightning Network (LN)
ServerMath - Locations: Amsterdam (NL), Hong Kong (HK), Madrid (ES), Seoul (KR), Dallas (TX), Istanbul (TR), Manila (PH), Singapore (SG), Dubai (AE), Lagos (NG), Miami (US), Tokyo (JP), Frankfurt (DE), London (UK), Moscow (RU), Warsaw (PL). Company registered in ???. Accepts Bitcoin via BTCPayServer. Willing to consider payment via other cryptocurrencies on request. Does not require KYC or check identity. Happy to arrange custom server configurations (e.g GPUs, high bandwidth servers). Affiliated with RatioServer. Website does not work when visited from some IP addresses
ExtraVM - Locations: Dallas TX (US), Los Angeles CA (US), Miami FL (US), Vint Hill VA (US), Montreal QC (CAN), London (UK), Gravelines (FR), Sydney (AU), Singapore (SG), Tokyo (JP). Company registered in Delaware, US. Ryzen servers. Crypto payments via Cryptomus. DdoS protected. Also offers Minecraft servers.
Qhoster - Locations: UK, US, Canada (CA), Bulgaria (BG), Lithuania (LT), France (FR), Germany (DE), Netherlands (NL), Switzerland (CH). Company registered in ???. Google captcha
SporeStack - Locations: San Francisco/NYC (US), Toronto (CA), London (UK), Amsterdam (NL), Frankfurt (DE), Singapore (SG), Bangalore (IN). Company registered in Texas (US). Accountless VPS provider. Also takes Bcash / Bitcoin SV. API-only/no registration, servers on Digital Ocean, Vultur/Linode available on request, Tor-only servers in undisclosed location, onion service URL: http://spore64i5sofqlfz5gq2ju4msgzojjwifls7rok2cti624zyq3fcelad.onion/#ref=vps
GlobalDataServer - Locations: Atlanta (US), Chicago (US), Dallas (US), Los Angeles (US), Miami (US), Montreal (CA), New York (US), Seattle (US), Vancouver (CA), Washington DC (US), Amsterdam (NL), Brussels (BE), Bucharest (RO), Copenhagen (DK), Dublin (IE), Frankfurt (DE), London (UK), Madrid (ES), Milan (IT), Moscow (RU), Oslo (NO), Paris (FR), Sofia (BG), Stockholm (SE), Vienna (AT), Vilnius (LT), Warsaw (PL), Zurich (CH), Bursa (TR), Hong Kong (HK), Singapore (SG), Tokyo (JP), Sydney (AU), Johannesburg (ZA). Company registered in Las Vegas (US). Dedicated servers in 100+ locations. Has high bandwidth 20GBps dedicated servers and can do custom configuration. Tor friendly. Contact them directly to arrange BTC payment. User reports they are likely connected to AllServerHost. Use code BITCOINVPS for a 10% discount on first order
ThunderVM - Locations: Germany (DE), United States (US), Iceland (IS), Switzerland (CH), Netherlands (NL), France (FR), Italy (IT), United Kingdom (UK), Lithuania (LT), Poland (PL). Company registered in italy. Ok with hosting full nodes and Tor relays, but not Tor exit nodes, or (on VPS) mining cryptocurrency. Uses hCaptcha. Provider states that all their servers/hypervisors are installed and encrypted by them for user security. Uses BTCPayServer and self-hosted Monero (XMR) payments. Accepts Lightning Network (LN) payments via NowPayments
AtomicNetworks - Locations: Eygelshoven (NL), Chicago (US), Miami (US), Los Angeles (US). Company registered in Delware, United States. Crypto payments through Coinbase Wallets, samller altcoins via NowPayments. Tor traffic OK. Uses Google Captchas. Asks for personal information but you can write whatever you like.
WindowsVPSHost - Locations: Buffalo (US) . Company registered in Singapore .
Rad Web Hosting - Locations: Dallas TX (US). Company registered in United States. Datacenter located in a former Federal Reserve Bank building, highly secure
HostStage - Locations: France (FR), Canada (CA), US. Company registered in France. Uses Coingate. Also provides shared web hosting. Anonymous sign up OK as long as no fraud, Tor traffic OK provided it is not used in a way that causes trouble
Lunanode - Locations: Canada (CA), France (FR). Company registered in Canada. User reports that registration is not allowed when using a VPN. Another user reports that their VPN worked, but LunaNode required phone number verification to pay with Bitcoin and/or Lightning Network (LN).
SeiMaxim - Locations: Almere (NL), Amsterdam (NL), Los Angeles (US). Company registered in Netherlands. Anonymous signup allowed. Bitcoin full nodes are allowed. Also offers GPU mining servers, domains, shared hosting, and HTTP/SOCKS proxies. Uses Coinbase payment gateway
ForexVPS - Locations: New York (US), London (UK), Manchester (UK), Zurich (CH), Amsterdam (NL), Frankfurt (DE), Singapore (SG), Tokyo (JP). Company registered in Hong Kong. Lightning Network (LN) payment support
IndoVirtue - Locations: Singapore (SG), US. Company registered in Bali, Indonesia (?). No VPN/proxy during signup allowed
VPSGOD - Locations: Germany (DE), US, France (FR), Netherlands (NL), United States (US). Company registered in US. Google captcha
BuyVM / Frantech - Locations: Las Vegas (US), New Jersey (US), Luxembourg (LU), Miami (US). Company registered in Canada. Supports Anycast IP addressing
Servting - Locations: Netherlands (NL), India (IN), Germany (DE), London (UK), United States (US), Singapore (SG), Canada (CA), South Korea (KR), Australia (AU), Japan (JP), Ireland (IE), France (FR), Sweden (SE), Spain (ES), Mexico (MX), Brazil (BR), Poland (PL). Company registered in United States. Currently reselling Digital Ocean, AWS Lightsail and Vultr. BTCPayServer as payment gateway. Encourage anonymous sign-up. Provider notes: “TOR and VPNs allowed, we do not use any fraud detection software such as Maxmind. A real email address is encouraged for correspondence but not a requirement . We offer block storage upgrades upon request. We do not check identities or perform any verification, if payment is successful you get a server!”
RamNode - Locations: Seattle/Los Angeles/Atlanta/NYC (US), Netherlands (NL). Company registered in US. Pay-by-the-hour model. User reports they require phone number verification
VPSServer - Locations: San Francisco/Chicago/Dallas/Miami/NYC (US), Toronto (CA), London (UK), Amsterdam (NL), Frankfurt (DE), Bangalore (IN), Tokyo (JP), Hong Kong (HK), Singapore (SG), Sydney (AU). Company registered in US. Uses BitPay. Reader reports they are Tor hostile: “I can’t join or use SSH to connect to their VPSs over Tor. No relays allowed (and most certainly no exits).” See: https://www.vpsserver.com/community/questions/7/i-want-tot-use-tor-network-is-it-allowed/
LowEndSpirit - Locations: Rotterdam (NL), London (UK), Milan (IT), Phoenix/Kansas/Lenoir NC (US), Tokyo (JP), Falkenstein (DE), Sofia (BG), Sandefjord (NO), Reims (FR), Perth/Sydney (AU), Singapore. Company registered in ???. Now a directory site / forum for low cost hosting.
Namecheap - Locations: US. Company registered in US.
BitLaunch - Locations: DigitalOcean, Vultr, Linode, Netherlands (NL), United States (US), United Kingdom (UK). Company registered in Unknown. Cryptocurrency payment front-end to Digital Ocean/Vultr/Linode. User reprts they also run their own infrastructure with their own ASN
Hostkey - Locations: US, Netherlands (NL), Russia (RU). Company registered in Netherlands. User reports they do not allow registration from Protonmail email addresses
Crowncloud - Locations: Frankfurt (DE), Los Angeles (US). Company registered in Australia.
Hostwinds - Locations: US, Netherlands (NL). Company registered in US.
Mightweb - Locations: US. Company registered in US.
MeanServers - Locations: US. Company registered in US.
SecureDragon - Locations: US. Company registered in US.
EDIS Global - Locations: Vienna / Austria (AT), Graz / Austria (AT), Brussels / Belgium (BE), Sofia / Bulgaria (BG), Montreal / Canada (CA), Vina del Mar / Valparaiso / Chile (CL), Bogota / Colombia (CO), Prague / Czech Republic (CZ), Zagreb / Croatia (HR), Dubai (UAE), Paris / France (FR), Frankfurt / Germany (DE), Copenhagen / Denmark (DK), Thessaloniki / Greece (GR), Kwai Chung / Hong Kong (HK), Budapest / Hungary (HU), Hafnarfjördur / Iceland (IS), Ballasalla / Isle of Man (IM), Tel Aviv / Israel (IL), Milan / Italy (IT), Palermo / Sicily (IT), Tokyo / Japan (JP), Vilnius / Lithuania (LT), Riga / Latvia (LV), Chisinau / Moldova (MD), Skopje/North Macedonia (MK), Amsterdam / Netherlands (NL), Oslo / Norway (NO), Warsaw / Poland (PL), Bucharest / Romania (RO), Belgrade / Serbia (RS), Moscow / Russia (RU), St. Petersburg / Russia (RU), Belgrade / Serbia (RS), Singapore (SG), Stockholm / Sweden (SE), Ljubljana / Slovenia (SI), Seville / Spain (ES), Zurich / Switcherland(CH), Sydney / Australia (AU), New York (US), London City and London Docklands (UK). Company registered in Limassol, Cyprus. Now using Cryptomus and accepting Bitcoin (plus other standard coins, including DOGE) at all locations.Use coupon code BITCOINVPS for a 10% (lifetime) discount on your first order. The provider notes: Instant Provisioning! All VPS are KVM-based, 100% SSD, modern Intel processors, up to 2x 10Gbps per node, fully GEO-located IP ranges, redundant high quality uplinks, lowest latenc, peerings at local IX, loads of bandwidth, TUN/TAP for VPN, hostCPU passthrough, random-numbers generators for fast entropy, noVNC, 100+ ready to use Turnkey images, images of common Linux distributions for fully automated installation, bring your own .iso and boot it on EDIS KVM, post-install scripts for automated installation according to your recipes. Windows and Linux. Auto-Installers for Windows 2016/2019/2022 Server (trial). TOR traffic is fine but TOR exit notes are not allowed. EDIS does not require KYC, but a real name and a real-world address is required (they don’t come to check if you really live at the indicated address) and EDIS allows signup via TOR or Proxies, but they do not want criminal activity and will manually review all new signups for signs of fraud or criminal intent before provisioning the first service. User reports signups not allowed with cock.li email addresses and a phone number is required at signup.
Javapipe (now Mochahost) - Locations: Chicago (US), Amsterdan (NL), Bucharest (RO). Company registered in ???.
AHnames - Locations: Ashburn (US). Company registered in Netherlands. Supports Lightning Network (LN)
Evolution Host - Locations: Strasbourg (FR), Sydney (AU), Frankfurt (DE), Montreal (CA), London (UK), Dallas (US), Oregon (US), Virginia (US), Warsaw (PL). Company registered in ???. Supports Lightning Network (LN). User reports they have started blocking proxy/Tor signups for smaller packages due to abuse
ChunkHost - Locations: Los Angeles (US). Company registered in US. Has anonymous registration (email and password), and they were first web hosting company to ever accept Bitcoin, way back in 2012. When you pay with Bitcoin, you get 5% discount. No payment processor, they accept BTC directly. Description provided by a user and not verified. There is a CloudFlare / Google captcha for Tor browser users visiting their website
Vultr - Locations: Atlanta (US), Chicago (US), Dallas (US), Los Angeles (US), Miami (US), New Jersey (US), Seattle (US), Silicon Valley (US), Toronto (CA), Amsterdam (NL), Frankfurt (DE), London (UK), Paris (FR), Tokyo (JP), Singapore (SG), Sydney (AU). Company registered in US. Reader reports strong anti-privacy policies: users must make credit card or PayPal payment before they are allowed to make Bitcoin deposits, and they use BitPay (which requires government ID/etc). Reader recommends using a Vultr reseller (e.g Bithost)
xitheon - Locations: Quebec (CA), Frankfurt (DE), Sydney (AU), Warsaw (PL), France (FR), Singapore (SG), UK. Company registered in ???.
letbox - Locations: Los Angeles (US), Dallas (US). Company registered in Seattle (US). Large Storage, may be suitable for running Bitcoin full nodes
Hostens - Locations: London (UK), Frankfurt (DE), Lithuania (LT), Amsterdam (NL), Washington (US), San Fransisco (US), Singapore (SG). Company registered in Lithuania. Large Storage, may be suitable for running Bitcoin full nodes. Requires full KYC (govt ID/etc) on signup, may use BitPay
Hosthatch - Locations: Stockholm (SE), Los Angeles (US), Chicago (US), Amsterdam (NL). Company registered in US. Large Storage, may be suitable for running Bitcoin full nodes
Serverhub - Locations: Chicago (US), Seattle (US), New York (US), Dallas (US), Phoneix (US), Frankfurt (DE). Company registered in US. Large Storage, may be suitable for running Bitcoin full nodes
Time4VPS - Locations: Lithuania (LT), Singapore (SG), US. Company registered in Lithuania. Large Storage, may be suitable for running Bitcoin full nodes. Now requiring KYC (ID scans)
Privex - Locations: Sweden (SE), Netherlands (NL), Germany (DE), Finland (FI), United States (US), Japan (JP), Canada (CA). Company registered in Belize. Owns their own hardware and network at their SE / NL regions. Resells Hetzner in DE / FI. Resells Dacentec+Reliablesite in US. Resells Vultr in JP/CA. Privacy focused, anonymous/pseudonymous sign up encouraged. No captchas/cloudflare/analytics. Payments processed by their own in-house solution. Allows hosting Tor exit nodes / public VPNs in SE/NL locations and Tor/I2P relays in all locations except JP/CA. Runs their own Tor nodes to support the network. Ordering is possible with JavaScript disabled. Supports Bring-Your-Own-IP and colocation in SE/NL. Very flexible and willing to consider special requests. Onion service: http://privex3guvvasyer6pxz2fqcgy56auvw5egkir6ykwpptferdcb5toad.onion/ and I2P service: http://privex.i2p/
RatioServer - Locations: Amsterdam (NL), Budapest (HU), Copenhagen (DK), Dallas (US), Dublin (IE), Frankfurt (DE), London (UK), Los Angeles (US), Madrid (ES), Miami (US), Montreal (CA), New York (US), Paris (FR), Prague (CZ), Rome (IT), Singapore (SG), Sofia (BG), Sydney (AU), Tokyo (JP), Zurich (CH) and more. Company registered in ???. Most locations have unmetered dedicated servers and custom-built server options available. Tor- and anonymity-friendly. Does not verify email address validity, but encourages people to sign up with a working email address. Uses their own in-house BTC/ETH payment processor
Aaroli - Locations: Amsterdam (NL), Atlanta (US), Frankfurt (DE), London (UK), Paris (FR), Singapore (SG), Sydney (AU), Tokyo (JP), Toronto (CA). Company registered in an undisclosed location. Large Storage offered in 5 locations, may be suitable for full nodes. Payment via BTCPayServer or manual payment (accepts BTC, ETH). Willing to do custom configurations or payment via alternate methods. Anonymous/pseudonymous signup OK, provided you provide a working email address.
Servers.Guru - Locations: Helsinki (FI), Nuremberg (DE), Falkenstein (DE), Ashburn (US). Company registered in United States. Anonymous signup allowed (only a valid email address is required). Tor traffic OK. Accepts Lightning Network (LN) payments. Uses self-hosted BitCartCC for Bitcoin payments (as well as others), takes DOGE, DASH, and Zcash/ZEC via Plisio.
MadGenius - Locations: Minneapolis (US), Chicago (US), Ashburn (US). Company registered in Minnesota, US. Uses BitPay, but user reports that if you email their sales department they will give you a non-BitPay BTC address. User reports they do not require/verify personal info except for email address.
BreezeHost - Locations: Dallas TX (US), Charlotte NC (US). Company registered in United States. Accepts Bitcoin (and other cryptocurrencies) using Plisio, Lightning payments currently not supported. Personal information supplied at signup does not need to be accurate. Tor traffic is allowed.
VPS-mart / DatabaseMart - Locations: Dallas (US). Company registered in Dallas (US).
TechRich - Locations: Japan (JP), Korea (KR), Malaysia (MY), China (CN), Hong Kong (HK), United States (US), Thailand (TH). Company registered in Hong Kong. They ask for user information but don’t verify/require KYC if you pay by cryptocurrency. Tor traffic OK as long as you don’t get abuse/complaints. They can arrange dedicated fiber lines for each client at the HK location. Uses Coinpayments, Bitpay, and Payeer for payments, can arrange other payment methods as long as you are not sending from an OFAC-listed address. They accept Lightning Network (LN) payments
IncogNET - Locations: Netherlands (NL), Idaho (US). Company registered in Wyoming, United States. Accepts Bitcoin via BTCPayServer (and other cryptocurrencies also). No personal information required to sign up, only an email address (which isn’t verified). Ordering via Tor/VPN is OK. Large Storage available on a case-by-case basis, contact them to arrange it. Uses Google Captchas (reCaptcha). Also does anonymous domain registration
SafeAlps - Locations: Switzerland (CH) (shared hosting only), Romania (RO), United States (US), Iceland (IS) (email hosting only). Company registered in Switzerland. VPS in Romania and the US, shared hosting in Switzerland, one-time-payment email hosting in Iceland. Tor-friendly, both traffic and nodes are welcome. Anonymous sign up is OK, PGP encrypted email communication is supported. Payments via Plisio, Lightning Network (LN) payment supported. No captchas or assets loaded from servers they don’t control. Large Storage servers with HDDs (or SSDs on request) are available.
Webconn Technology - Locations: Netherlands (NL), United States (US), Italy (IT), Japan (JP), France (FR). Company registered in Pakistan. Offers GPU servers. Unlimited traffic. They don’t care what information you provide at signup. Payments via Coinbase or direct transfer to wallet. Google captchas. Linked to Seimaxim
Domains4Bitcoins - Locations: United States (US), India (IN). Company registered in United States. Payments via BitPay – KYC and BitPay account required to purchase
GoSSDHosting - Locations: United States (US), India (IN). Company registered in India.
RDP.sh - Locations: Netherlands (NL), Phoneix (US), Poland (PL). Company registered in Germany. Privacy focused Windows RDP and Linux server provider. Only asks for email, no KYC. Accepts Bitcoin via Coinbase gateway.
CoinsHosting - Locations: New York (US). Company registered in Delaware, US. Tor traffic allowed only on dedicated servers. Doesn’t check the information you provide at signup (only asks for name and email). May require for KYC for suspicious or abusive customers but provider states they do so very rarely. Payments via CoinPayments and Coinify. Uses Google Captchas.
NetNexus - Locations: Virginia (US), Ohio (US), California (US), Oregon (US), Mumbai (IN), Osaka (JP), Seoul (KR), Singapore (SG), Sydney (AU), Tokyo (JP), Central (CA), Frankfurt (DE), Ireland (IE), London (GB), Paris (FR), Stockholm (SE), Sao Paulo (BR). Company registered in Portland, Oregon. Tor traffic allowed. Asks for email address, name, phone number, etc on signup but doesn’t verify the information. Bitcoin payment with Plisio. No Google Captchas. Large Storage, maybe suitable for full nodes.
MyNymBox - Locations: Frankfurt (DE), Nuremberg (DE), Helsinki (FI), Munich (DE), Portsmouth (UK), New York (US), Seattle (US), St. Louis (US), Singapore (Asia). Company registered in Seychelles. Resells services from Hetzner Cloud, Dedicated Servers and Contabo. Offers Shared Hosting on encrypted storage and anonym Domain Registrations. No email verification required to order. Tor- and anonymity-friendly. Accepts Bitcoin, Lightning and Monero payments via self hosted BTCPayServer. No Google Captchas or 3rd party stuff. Has Storage VPS (Large Storage) servers, suitable for full nodes, provider runs their BTCPayServer on one of them!
SnowCore - Locations: Amsterdam (NL), Salt Lake City (US). Company registered in ???. Uses a Mullvad-style token login system so they don’t collect any personal information at all. Payments via NOWpayments. Cloudflare captchas. Dedicated servers available with 1TB SSDs for 30 EUR one time payment in some locations, might be useful as Large Storage servers for full nodes. Tor is allowed and fully supported.
Gigablits - Locations: Amsterdam (NL), Bangalore (IN), Frankfurt (DE), London (UK), New York (US), San Francisco (US), Singapore (SG), Sydney (AU), Toronto (CA). Company registered in ???. DigitalOcean reseller. Anonymity focused, no personal information required. Payments accepted via Plisio. User reports they took payment but did not deliver service or respond to tickets, business may be defunct.
VPSBroker - Locations: Amsterdam (NL), Atlanta (US), Bangalore (IN), Chicago (US), Dallas (US), Delhi NCR (IN), Frankfurt (DE), Honolulu (US), Johannesburg (ZA), London (UK), Los Angeles (US), Madrid (ES), Manchester (UK), Melbourne (AU), Mexico City (MX), Miami (US), Mumbai (IN), New York (US), Osaka (JP), Paris (FR), Santiago (CL), São Paulo (BR), Seattle (US), Silicon Valley (US), Singapore (SG), Stockholm (SE), Sydney (AU), Tel Aviv (IL), Tokyo (JP), Toronto (CA), Warsaw (PL), Seoul (KR). Company registered in ???. Signup over Tor ok, user reports no captchas or Maxmind/KYC. Accepts Bitcoin, Monero (XMR), and others. User reports the UI is really good. Disk space available up to 160GB.
SafeCloud - Locations: Amsterdam (NL), Athens (GR), Barcelona (ES), Belgrade (RS), Brussels (BE), Bucharest (RO), Copenhagen (DK), Dublin (IE), Dusseldorf (DE), Florence (IT), Frankfurt (DE), Helsinki (FI), Kyiv (UA), Lisbon (PT), London (UK), Madrid (ES), Moscow (RU), Nicosia (CY), Oslo (NO), Paris (FR), Sofia (BG), Stockholm (SE), Warsaw (PL), Vienna (AT), Vilnius (LT), Zurich (CH), Ashburn (US), Atlanta (US), Chicago (US), Dallas (US), Kansas City (US), Los Angeles (US), Mexico City (MX), Miami (US), Montreal (CA), New York (US), Portland (US), Salt Lake City (US), San Juan(PR), Seattle (US), Toronto (CA), Vancouver (CA), Washington (US), Bogota (CO), Buenos Aires (AR), Guatemala City (GT), La Paz (BO), Lima (PE), Quito (EC), San Jose (CR), Santiago (CL), São Paulo (BR), Dubai (AE), Hong Kong (HK), Istanbul (TR), Kuala Lumpur (MY), Mumbai (IN), Singapore (SG), Taipei (TW), Tel Aviv (IL), Tokyo (JP), Fez (MA), Johannesburg (ZA), Lagos (NG), Sydney (AU). Company registered in Seattle (US). Tor traffic OK. Only valid email required at signup. Payments via Bitserver and manual payment processing. No Google Captchas. 100MBps-40Gbps dedicated bandwidth dedicated servers available. Use promo code BITCOINVPS for 10% discount on orders.
BrilliantHost - Locations: Washington, D.C. (US), California (US), Iowa (US), Toronto (CA), London (GB), Amsterdam (NL), Warsaw (PL), Paris (FR), Frankfurt (DE), Milan (IT), Vienna (AT), Sydney (AU), Hong Kong (HK), Stockholm (SE), Dubai (AE), São Paulo (BR). Company registered in Wyoming, United States. Tor traffic OK. No Google Captchas. Very privacy-and anonymity friendly, only an email is required. Processes crypto payments manually via their support team. Advertises high performance at low prices.
Initech - Locations: Melbourne (AU), Sydney (AU), Belgium (BE), Sao Paulo (BR), Montreal (CA), Toronto (CA), Santiago (CL), Hong Kong (CN), Helsinki (FI), Finland (FI), Paris (FR), Berlin (DE), Falkenstein (DE), Frankfurt (DE), Nuremberg (DE), Bangalore (IN), Delhi (IN), Mumbai (IN), Jakarta (ID), Ireland (IE), Tel Aviv (IL), Milan (IT), Turnin (IT), Osaka (JP), Tokyo (JP), Kuala Lumpur (MY), Mexico City (MX), Amsterdam (NL), Holland (NL), Manila (PH), Warsaw (PL), Doha (QA), Singapore (SG), Johannesburg (ZA), Seoul (KR), Madrid (ES), Stockholm (SE), Dubai (AE), London (UK), Manchester (UK), Atlanta (US), Chicago (US), Columbus (US), Dallas (US), Honolulu (US), Iowa (US), Las Vegas (US), Los Angeles (US), Miami (US), New York (US), Ohio (US), Oregon (US), Salt Lake City (US), San Francisco (US), Seattle (US), Silicon Valley (US), South Carolina (US), Virginia (US), Zurich (CH), Taiwan (TW). Company registered in United States. Also offers a residential proxy (VPN) service with endpoints available in almost every country worldwide (the residential proxy service blocks websites that are common abuse targets, like banking or Netflix. Their VPS service does not block). Resells VPS services from many cloud providers (Vultr, Alibaba Cloud, Amazon Lightsail/AWS, DigitalOcean, Google Cloud/GCP, Hetzner Cloud). No email verification required to order. Accept all major cryptocurrencies. Tor traffic is OK, their website is built to be easy to use over Tor. Accepts crypto payments via Plisio and BTCPayServer, including Bitcoin Lightning Network (LN) payments via BTCPayServer. Large Storage / Block storage 40GB up to 40TB now available via normal ordering flow. Use promo code BITCOINVPS for 10% discount on all orders for new customers.
Opera VPS - Locations: London (UK), Frankfurt (DE) , Chicago (US), Dallas (US), Los Angeles (US), Miami (US), New Jersey (US), Montreal (CA), Amsterdam (NL), Paris (FR), Tokyo (JP). Company registered in US (Washington state). Anonymous signup OK, Tor allowed, Lightning Network (LN) payments via Jeeb
Pqhosting - Locations: Moldova (MD), Russia (RU), Latvia (LV), Netherlands (NL), Hong Kong (HK), Germany (DE), Ukraine (UA), United States (US), Hong Kong (HK), Canada (CA), Czechia (CZ), Slovakia (SK), Israel (IL), Turkey (TR), Poland (PL), Bulgaria (BG), Romania (RO). Company registered in Russia. Google Captchas. User reports they may suddenly require KYC to access your server or pay with crypto if your signup IP (e.g proxy/VPN/Tor) triggers fraud checks, or randomly if they decide they want to know who you are
HostZealot - Locations: Amsterdam (NL), London (UK), Stockholm (SE), Warsaw (PL), Limassol (CY), Tallinn (EE), Ashburn (US), Chicago (US), Dallas (US), Seattle (US), Toronto (CA), Brussels (BE), Tel Aviv (IL), Hong Kong (HK), Dusseldorf (DE), Tbilisi (GE). Company registered in Bulgaria. Provider states they are Tor and anonymity friendly as long as you do not violate their ToS. All their VPS instances use SSDs, their Poland and Netherlands locations offer NVMe also. User reports they do not allow registration from Protonmail email addresses.
RackNerd - Locations: Los Angeles (US), Utah (US), Dallas (US), New York (US), New Jersey (US), Seattle (US), Montreal (CA), London (UK), Amsterdam (NL), Chicago (US), San Jose (US), Atlanta (US), Tampa (US), Ashburn (US), Strasbourg (FR), Frankfurt (DE), Singapore (SG). Company registered in United States. Accepts BTC, LTC, ETH, ZEC. No Lightning Network. User reports good service and responsive support. User reports they use Coinbase Commerce
BlueVPS - Locations: Amsterdam (NL), Limassol (CY), Gravelines (FR), Singapore (SG), Sofiya (BG), London (UK), Ashburn (US), Los Angeles (US), Atlanta (US), Frankfurt (DE), Palermo (IT), Tel Aviv (IL), Stockholm (SE), Toronto (CA), Tallinn (EE), Madrid (ES), Hong Kong (CN), Warsaw (PL), Sydney (AU), Fujairah (UAE). Company registered in Estonia. Payments via Coinpayments. Regarding anonymity they state “We require clients confirmation e-Mail or ID”. Provider has hardware in two different data centers at their Warsaw and London locations.
Shock Hosting - Locations: Piscataway/New Jersey (US), Los Angeles (US), Chicago (US), Dallas (US), Jacksonville (US), Denver (US), Seattle (US), Maidenhead (UK), Amsterdam (NL), Sydney (AU), Tokyo (JP), Singapore (SG). Company registered in United States.
Host-World - Locations: Frankfurt (DE), Amsterdam (NL), London (UK), Strasbourg (FR), Gravelines (FR), Limassol (CY), Bratislava (SK), Prague (CZ), Riga (LV), Warsaw (PL), Chisinau (MD), Kiev (UA), New Jersey (US), Toronto (CA), Beauharnois (CA), Sydney (AU), Hong Kong (HK), Tokyo (JP), Singapore (SG), Petach Tikva (IL), Turkey (TR). Company registered in Estonia. Uses Coinpayments.net. Anonymous signup OK (they only verify email)
ServerMath - Locations: Amsterdam (NL), Hong Kong (HK), Madrid (ES), Seoul (KR), Dallas (TX), Istanbul (TR), Manila (PH), Singapore (SG), Dubai (AE), Lagos (NG), Miami (US), Tokyo (JP), Frankfurt (DE), London (UK), Moscow (RU), Warsaw (PL). Company registered in ???. Accepts Bitcoin via BTCPayServer. Willing to consider payment via other cryptocurrencies on request. Does not require KYC or check identity. Happy to arrange custom server configurations (e.g GPUs, high bandwidth servers). Affiliated with RatioServer. Website does not work when visited from some IP addresses
ExtraVM - Locations: Dallas TX (US), Los Angeles CA (US), Miami FL (US), Vint Hill VA (US), Montreal QC (CAN), London (UK), Gravelines (FR), Sydney (AU), Singapore (SG), Tokyo (JP). Company registered in Delaware, US. Ryzen servers. Crypto payments via Cryptomus. DdoS protected. Also offers Minecraft servers.
SporeStack - Locations: San Francisco/NYC (US), Toronto (CA), London (UK), Amsterdam (NL), Frankfurt (DE), Singapore (SG), Bangalore (IN). Company registered in Texas (US). Accountless VPS provider. Also takes Bcash / Bitcoin SV. API-only/no registration, servers on Digital Ocean, Vultur/Linode available on request, Tor-only servers in undisclosed location, onion service URL: http://spore64i5sofqlfz5gq2ju4msgzojjwifls7rok2cti624zyq3fcelad.onion/#ref=vps
GlobalDataServer - Locations: Atlanta (US), Chicago (US), Dallas (US), Los Angeles (US), Miami (US), Montreal (CA), New York (US), Seattle (US), Vancouver (CA), Washington DC (US), Amsterdam (NL), Brussels (BE), Bucharest (RO), Copenhagen (DK), Dublin (IE), Frankfurt (DE), London (UK), Madrid (ES), Milan (IT), Moscow (RU), Oslo (NO), Paris (FR), Sofia (BG), Stockholm (SE), Vienna (AT), Vilnius (LT), Warsaw (PL), Zurich (CH), Bursa (TR), Hong Kong (HK), Singapore (SG), Tokyo (JP), Sydney (AU), Johannesburg (ZA). Company registered in Las Vegas (US). Dedicated servers in 100+ locations. Has high bandwidth 20GBps dedicated servers and can do custom configuration. Tor friendly. Contact them directly to arrange BTC payment. User reports they are likely connected to AllServerHost. Use code BITCOINVPS for a 10% discount on first order
MLNL.host (Millenial) - Locations: Hong Kong (HK), United Kingdom (UK). Company registered in UK. More locations being added. KVM servers, offers cheaper options behind NAT. User reports they work well for accessing geofenced web services intended for HK users. User reports payment is via CoinGate and Coinbase. Automated fraud checks may cancel your order (file a ticket to get through this)
Mondoze - Locations: Cyberjaya Malaysia (MY). Company registered in Malaysia. Payments via Plisio. Dedicated server available if you contact them directly. Tor traffic OK as long as you conform to their TOS. Anonymous sign up OK. Large storage maybe available if you contact support.
Ahost - Locations: Dubai (AE), Vienna (AT), Sydney (AU), Brussels (BE), Sofia (BG), Zurich (CH), Prague (CZ), Copenhagen (DK), Seville (ES), Thessaloniki (GR), Kwai Chung (HK), Zagreb (HR), Budapest (HU), Tel Aviv (IL), Hafnarfjordur (IS), Milan (IT), Tokyo (JP), Vilnius (LT), Riga (LV), Chisinau (MD), Skopje (MK), Oslo (NO), Warsaw (PL), Belgrade (RS), Bucharest (RO), Moscow (RU), Stockholm (SE), Ljubljana (SI). Company registered in Estonia. No anonymous signup. No Tor or spam allowed. Payments via Payeer. KVM virtualization, Gigabit speeds for every VPS. They do NOT want anonymous signups or Tor traffic. User reports they ask for KYC (scan of government ID) after payment. Google Captchas
ForexVPS - Locations: New York (US), London (UK), Manchester (UK), Zurich (CH), Amsterdam (NL), Frankfurt (DE), Singapore (SG), Tokyo (JP). Company registered in Hong Kong. Lightning Network (LN) payment support
IndoVirtue - Locations: Singapore (SG), US. Company registered in Bali, Indonesia (?). No VPN/proxy during signup allowed
Servting - Locations: Netherlands (NL), India (IN), Germany (DE), London (UK), United States (US), Singapore (SG), Canada (CA), South Korea (KR), Australia (AU), Japan (JP), Ireland (IE), France (FR), Sweden (SE), Spain (ES), Mexico (MX), Brazil (BR), Poland (PL). Company registered in United States. Currently reselling Digital Ocean, AWS Lightsail and Vultr. BTCPayServer as payment gateway. Encourage anonymous sign-up. Provider notes: “TOR and VPNs allowed, we do not use any fraud detection software such as Maxmind. A real email address is encouraged for correspondence but not a requirement . We offer block storage upgrades upon request. We do not check identities or perform any verification, if payment is successful you get a server!”
VPSServer - Locations: San Francisco/Chicago/Dallas/Miami/NYC (US), Toronto (CA), London (UK), Amsterdam (NL), Frankfurt (DE), Bangalore (IN), Tokyo (JP), Hong Kong (HK), Singapore (SG), Sydney (AU). Company registered in US. Uses BitPay. Reader reports they are Tor hostile: “I can’t join or use SSH to connect to their VPSs over Tor. No relays allowed (and most certainly no exits).” See: https://www.vpsserver.com/community/questions/7/i-want-tot-use-tor-network-is-it-allowed/
LowEndSpirit - Locations: Rotterdam (NL), London (UK), Milan (IT), Phoenix/Kansas/Lenoir NC (US), Tokyo (JP), Falkenstein (DE), Sofia (BG), Sandefjord (NO), Reims (FR), Perth/Sydney (AU), Singapore. Company registered in ???. Now a directory site / forum for low cost hosting.
VPSBit - Locations: Hong Kong (HK), Lithuania (LT). Company registered in Hong Kong & Lithuania.
JPStream - Locations: Japan (JP). Company registered in Japan.
Hostkey - Locations: US, Netherlands (NL), Russia (RU). Company registered in Netherlands. User reports they do not allow registration from Protonmail email addresses
InternetBrothers - Locations: Korea (KR). Company registered in Korea. BTC accepted only on orders over $100, dedicated servers are not pre-configured. Non-HTTPS site
Kdatacenter - Locations: Korea (KR). Company registered in Korea.
VpsHosting - Locations: Hong Kong (HK). Company registered in Hong Kong (HK).
EDIS Global - Locations: Vienna / Austria (AT), Graz / Austria (AT), Brussels / Belgium (BE), Sofia / Bulgaria (BG), Montreal / Canada (CA), Vina del Mar / Valparaiso / Chile (CL), Bogota / Colombia (CO), Prague / Czech Republic (CZ), Zagreb / Croatia (HR), Dubai (UAE), Paris / France (FR), Frankfurt / Germany (DE), Copenhagen / Denmark (DK), Thessaloniki / Greece (GR), Kwai Chung / Hong Kong (HK), Budapest / Hungary (HU), Hafnarfjördur / Iceland (IS), Ballasalla / Isle of Man (IM), Tel Aviv / Israel (IL), Milan / Italy (IT), Palermo / Sicily (IT), Tokyo / Japan (JP), Vilnius / Lithuania (LT), Riga / Latvia (LV), Chisinau / Moldova (MD), Skopje/North Macedonia (MK), Amsterdam / Netherlands (NL), Oslo / Norway (NO), Warsaw / Poland (PL), Bucharest / Romania (RO), Belgrade / Serbia (RS), Moscow / Russia (RU), St. Petersburg / Russia (RU), Belgrade / Serbia (RS), Singapore (SG), Stockholm / Sweden (SE), Ljubljana / Slovenia (SI), Seville / Spain (ES), Zurich / Switcherland(CH), Sydney / Australia (AU), New York (US), London City and London Docklands (UK). Company registered in Limassol, Cyprus. Now using Cryptomus and accepting Bitcoin (plus other standard coins, including DOGE) at all locations.Use coupon code BITCOINVPS for a 10% (lifetime) discount on your first order. The provider notes: Instant Provisioning! All VPS are KVM-based, 100% SSD, modern Intel processors, up to 2x 10Gbps per node, fully GEO-located IP ranges, redundant high quality uplinks, lowest latenc, peerings at local IX, loads of bandwidth, TUN/TAP for VPN, hostCPU passthrough, random-numbers generators for fast entropy, noVNC, 100+ ready to use Turnkey images, images of common Linux distributions for fully automated installation, bring your own .iso and boot it on EDIS KVM, post-install scripts for automated installation according to your recipes. Windows and Linux. Auto-Installers for Windows 2016/2019/2022 Server (trial). TOR traffic is fine but TOR exit notes are not allowed. EDIS does not require KYC, but a real name and a real-world address is required (they don’t come to check if you really live at the indicated address) and EDIS allows signup via TOR or Proxies, but they do not want criminal activity and will manually review all new signups for signs of fraud or criminal intent before provisioning the first service. User reports signups not allowed with cock.li email addresses and a phone number is required at signup.
SuperBitHost - Locations: Bulgaria (BG), Germany (DE), Netherlands (NL), Luxembourg (LU), Malaysia (MY) Russia (RU), Singapore (SG), Switzerland (CH). Company registered in ???. uses Google captchas
Vultr - Locations: Atlanta (US), Chicago (US), Dallas (US), Los Angeles (US), Miami (US), New Jersey (US), Seattle (US), Silicon Valley (US), Toronto (CA), Amsterdam (NL), Frankfurt (DE), London (UK), Paris (FR), Tokyo (JP), Singapore (SG), Sydney (AU). Company registered in US. Reader reports strong anti-privacy policies: users must make credit card or PayPal payment before they are allowed to make Bitcoin deposits, and they use BitPay (which requires government ID/etc). Reader recommends using a Vultr reseller (e.g Bithost)
xitheon - Locations: Quebec (CA), Frankfurt (DE), Sydney (AU), Warsaw (PL), France (FR), Singapore (SG), UK. Company registered in ???.
Hostens - Locations: London (UK), Frankfurt (DE), Lithuania (LT), Amsterdam (NL), Washington (US), San Fransisco (US), Singapore (SG). Company registered in Lithuania. Large Storage, may be suitable for running Bitcoin full nodes. Requires full KYC (govt ID/etc) on signup, may use BitPay
ClientVPS - Locations: Bahrain (BH), Ukraine (UA), Netherlands (NL), Panama (PA), Russia (RU), Singapore (SG), Hong Kong (HK), Iran (IR). Company registered in Russia or US, it’s unclear. “Bulletproof” hosting provider.
Time4VPS - Locations: Lithuania (LT), Singapore (SG), US. Company registered in Lithuania. Large Storage, may be suitable for running Bitcoin full nodes. Now requiring KYC (ID scans)
Privex - Locations: Sweden (SE), Netherlands (NL), Germany (DE), Finland (FI), United States (US), Japan (JP), Canada (CA). Company registered in Belize. Owns their own hardware and network at their SE / NL regions. Resells Hetzner in DE / FI. Resells Dacentec+Reliablesite in US. Resells Vultr in JP/CA. Privacy focused, anonymous/pseudonymous sign up encouraged. No captchas/cloudflare/analytics. Payments processed by their own in-house solution. Allows hosting Tor exit nodes / public VPNs in SE/NL locations and Tor/I2P relays in all locations except JP/CA. Runs their own Tor nodes to support the network. Ordering is possible with JavaScript disabled. Supports Bring-Your-Own-IP and colocation in SE/NL. Very flexible and willing to consider special requests. Onion service: http://privex3guvvasyer6pxz2fqcgy56auvw5egkir6ykwpptferdcb5toad.onion/ and I2P service: http://privex.i2p/
RatioServer - Locations: Amsterdam (NL), Budapest (HU), Copenhagen (DK), Dallas (US), Dublin (IE), Frankfurt (DE), London (UK), Los Angeles (US), Madrid (ES), Miami (US), Montreal (CA), New York (US), Paris (FR), Prague (CZ), Rome (IT), Singapore (SG), Sofia (BG), Sydney (AU), Tokyo (JP), Zurich (CH) and more. Company registered in ???. Most locations have unmetered dedicated servers and custom-built server options available. Tor- and anonymity-friendly. Does not verify email address validity, but encourages people to sign up with a working email address. Uses their own in-house BTC/ETH payment processor
Aaroli - Locations: Amsterdam (NL), Atlanta (US), Frankfurt (DE), London (UK), Paris (FR), Singapore (SG), Sydney (AU), Tokyo (JP), Toronto (CA). Company registered in an undisclosed location. Large Storage offered in 5 locations, may be suitable for full nodes. Payment via BTCPayServer or manual payment (accepts BTC, ETH). Willing to do custom configurations or payment via alternate methods. Anonymous/pseudonymous signup OK, provided you provide a working email address.
Casbay - Locations: Malaysia (MY), Singapore (SG). Company registered in Malaysia. Accepts Bitcoin (and many more cryptocurrencies) via Plisio. No restrictions on Tor traffic. They only verify email address on signup, but may require KYC if you trigger anti-abuse/anti-fraud monitoring systems. Uses Google Captchas. Offers Large Storage servers, may be suitable for full nodes. Even larger storage capacity available if you contact them directly.
TechRich - Locations: Japan (JP), Korea (KR), Malaysia (MY), China (CN), Hong Kong (HK), United States (US), Thailand (TH). Company registered in Hong Kong. They ask for user information but don’t verify/require KYC if you pay by cryptocurrency. Tor traffic OK as long as you don’t get abuse/complaints. They can arrange dedicated fiber lines for each client at the HK location. Uses Coinpayments, Bitpay, and Payeer for payments, can arrange other payment methods as long as you are not sending from an OFAC-listed address. They accept Lightning Network (LN) payments
Wesbytes - Locations: Malaysia (MY). Company registered in Malaysia. Payments via Coinbase. Verifies email address, does not encourage anonymous registration. Does not limit user activity other than specified in their TOS. All VPS instances use KVM
Webconn Technology - Locations: Netherlands (NL), United States (US), Italy (IT), Japan (JP), France (FR). Company registered in Pakistan. Offers GPU servers. Unlimited traffic. They don’t care what information you provide at signup. Payments via Coinbase or direct transfer to wallet. Google captchas. Linked to Seimaxim
Domains4Bitcoins - Locations: United States (US), India (IN). Company registered in United States. Payments via BitPay – KYC and BitPay account required to purchase
GoSSDHosting - Locations: United States (US), India (IN). Company registered in India.
Melbicom - Locations: Riga (LV), Amsterdam (NL), Warsaw (PL), Moscow (RU), Palermo (IT), Vilnius (LT), Madrid (ES), Sofia (BG), Lagos (NG), Singapore (SG), Fujairah (AE), Atlanta (US), Los Angeles (US). Company registered in Lithuania. Windows and Linux VPS. Also offers CDN services. No Tor traffic allowed. They don’t ask for much personal information but don’t want anonymous signup, they may request ID verification. No illegal activities allowed. Bitcoin Lightning network (LN) payments supported. No Google Captchas. Large Storage servers are available. They support BGP sessions, colocations, and cloud services also.
NetNexus - Locations: Virginia (US), Ohio (US), California (US), Oregon (US), Mumbai (IN), Osaka (JP), Seoul (KR), Singapore (SG), Sydney (AU), Tokyo (JP), Central (CA), Frankfurt (DE), Ireland (IE), London (GB), Paris (FR), Stockholm (SE), Sao Paulo (BR). Company registered in Portland, Oregon. Tor traffic allowed. Asks for email address, name, phone number, etc on signup but doesn’t verify the information. Bitcoin payment with Plisio. No Google Captchas. Large Storage, maybe suitable for full nodes.
MyNymBox - Locations: Frankfurt (DE), Nuremberg (DE), Helsinki (FI), Munich (DE), Portsmouth (UK), New York (US), Seattle (US), St. Louis (US), Singapore (Asia). Company registered in Seychelles. Resells services from Hetzner Cloud, Dedicated Servers and Contabo. Offers Shared Hosting on encrypted storage and anonym Domain Registrations. No email verification required to order. Tor- and anonymity-friendly. Accepts Bitcoin, Lightning and Monero payments via self hosted BTCPayServer. No Google Captchas or 3rd party stuff. Has Storage VPS (Large Storage) servers, suitable for full nodes, provider runs their BTCPayServer on one of them!
Gigablits - Locations: Amsterdam (NL), Bangalore (IN), Frankfurt (DE), London (UK), New York (US), San Francisco (US), Singapore (SG), Sydney (AU), Toronto (CA). Company registered in ???. DigitalOcean reseller. Anonymity focused, no personal information required. Payments accepted via Plisio. User reports they took payment but did not deliver service or respond to tickets, business may be defunct.
VPSBroker - Locations: Amsterdam (NL), Atlanta (US), Bangalore (IN), Chicago (US), Dallas (US), Delhi NCR (IN), Frankfurt (DE), Honolulu (US), Johannesburg (ZA), London (UK), Los Angeles (US), Madrid (ES), Manchester (UK), Melbourne (AU), Mexico City (MX), Miami (US), Mumbai (IN), New York (US), Osaka (JP), Paris (FR), Santiago (CL), São Paulo (BR), Seattle (US), Silicon Valley (US), Singapore (SG), Stockholm (SE), Sydney (AU), Tel Aviv (IL), Tokyo (JP), Toronto (CA), Warsaw (PL), Seoul (KR). Company registered in ???. Signup over Tor ok, user reports no captchas or Maxmind/KYC. Accepts Bitcoin, Monero (XMR), and others. User reports the UI is really good. Disk space available up to 160GB.
SafeCloud - Locations: Amsterdam (NL), Athens (GR), Barcelona (ES), Belgrade (RS), Brussels (BE), Bucharest (RO), Copenhagen (DK), Dublin (IE), Dusseldorf (DE), Florence (IT), Frankfurt (DE), Helsinki (FI), Kyiv (UA), Lisbon (PT), London (UK), Madrid (ES), Moscow (RU), Nicosia (CY), Oslo (NO), Paris (FR), Sofia (BG), Stockholm (SE), Warsaw (PL), Vienna (AT), Vilnius (LT), Zurich (CH), Ashburn (US), Atlanta (US), Chicago (US), Dallas (US), Kansas City (US), Los Angeles (US), Mexico City (MX), Miami (US), Montreal (CA), New York (US), Portland (US), Salt Lake City (US), San Juan(PR), Seattle (US), Toronto (CA), Vancouver (CA), Washington (US), Bogota (CO), Buenos Aires (AR), Guatemala City (GT), La Paz (BO), Lima (PE), Quito (EC), San Jose (CR), Santiago (CL), São Paulo (BR), Dubai (AE), Hong Kong (HK), Istanbul (TR), Kuala Lumpur (MY), Mumbai (IN), Singapore (SG), Taipei (TW), Tel Aviv (IL), Tokyo (JP), Fez (MA), Johannesburg (ZA), Lagos (NG), Sydney (AU). Company registered in Seattle (US). Tor traffic OK. Only valid email required at signup. Payments via Bitserver and manual payment processing. No Google Captchas. 100MBps-40Gbps dedicated bandwidth dedicated servers available. Use promo code BITCOINVPS for 10% discount on orders.
BrilliantHost - Locations: Washington, D.C. (US), California (US), Iowa (US), Toronto (CA), London (GB), Amsterdam (NL), Warsaw (PL), Paris (FR), Frankfurt (DE), Milan (IT), Vienna (AT), Sydney (AU), Hong Kong (HK), Stockholm (SE), Dubai (AE), São Paulo (BR). Company registered in Wyoming, United States. Tor traffic OK. No Google Captchas. Very privacy-and anonymity friendly, only an email is required. Processes crypto payments manually via their support team. Advertises high performance at low prices.
Initech - Locations: Melbourne (AU), Sydney (AU), Belgium (BE), Sao Paulo (BR), Montreal (CA), Toronto (CA), Santiago (CL), Hong Kong (CN), Helsinki (FI), Finland (FI), Paris (FR), Berlin (DE), Falkenstein (DE), Frankfurt (DE), Nuremberg (DE), Bangalore (IN), Delhi (IN), Mumbai (IN), Jakarta (ID), Ireland (IE), Tel Aviv (IL), Milan (IT), Turnin (IT), Osaka (JP), Tokyo (JP), Kuala Lumpur (MY), Mexico City (MX), Amsterdam (NL), Holland (NL), Manila (PH), Warsaw (PL), Doha (QA), Singapore (SG), Johannesburg (ZA), Seoul (KR), Madrid (ES), Stockholm (SE), Dubai (AE), London (UK), Manchester (UK), Atlanta (US), Chicago (US), Columbus (US), Dallas (US), Honolulu (US), Iowa (US), Las Vegas (US), Los Angeles (US), Miami (US), New York (US), Ohio (US), Oregon (US), Salt Lake City (US), San Francisco (US), Seattle (US), Silicon Valley (US), South Carolina (US), Virginia (US), Zurich (CH), Taiwan (TW). Company registered in United States. Also offers a residential proxy (VPN) service with endpoints available in almost every country worldwide (the residential proxy service blocks websites that are common abuse targets, like banking or Netflix. Their VPS service does not block). Resells VPS services from many cloud providers (Vultr, Alibaba Cloud, Amazon Lightsail/AWS, DigitalOcean, Google Cloud/GCP, Hetzner Cloud). No email verification required to order. Accept all major cryptocurrencies. Tor traffic is OK, their website is built to be easy to use over Tor. Accepts crypto payments via Plisio and BTCPayServer, including Bitcoin Lightning Network (LN) payments via BTCPayServer. Large Storage / Block storage 40GB up to 40TB now available via normal ordering flow. Use promo code BITCOINVPS for 10% discount on all orders for new customers.
EDIS Global - Locations: Vienna / Austria (AT), Graz / Austria (AT), Brussels / Belgium (BE), Sofia / Bulgaria (BG), Montreal / Canada (CA), Vina del Mar / Valparaiso / Chile (CL), Bogota / Colombia (CO), Prague / Czech Republic (CZ), Zagreb / Croatia (HR), Dubai (UAE), Paris / France (FR), Frankfurt / Germany (DE), Copenhagen / Denmark (DK), Thessaloniki / Greece (GR), Kwai Chung / Hong Kong (HK), Budapest / Hungary (HU), Hafnarfjördur / Iceland (IS), Ballasalla / Isle of Man (IM), Tel Aviv / Israel (IL), Milan / Italy (IT), Palermo / Sicily (IT), Tokyo / Japan (JP), Vilnius / Lithuania (LT), Riga / Latvia (LV), Chisinau / Moldova (MD), Skopje/North Macedonia (MK), Amsterdam / Netherlands (NL), Oslo / Norway (NO), Warsaw / Poland (PL), Bucharest / Romania (RO), Belgrade / Serbia (RS), Moscow / Russia (RU), St. Petersburg / Russia (RU), Belgrade / Serbia (RS), Singapore (SG), Stockholm / Sweden (SE), Ljubljana / Slovenia (SI), Seville / Spain (ES), Zurich / Switcherland(CH), Sydney / Australia (AU), New York (US), London City and London Docklands (UK). Company registered in Limassol, Cyprus. Now using Cryptomus and accepting Bitcoin (plus other standard coins, including DOGE) at all locations.Use coupon code BITCOINVPS for a 10% (lifetime) discount on your first order. The provider notes: Instant Provisioning! All VPS are KVM-based, 100% SSD, modern Intel processors, up to 2x 10Gbps per node, fully GEO-located IP ranges, redundant high quality uplinks, lowest latenc, peerings at local IX, loads of bandwidth, TUN/TAP for VPN, hostCPU passthrough, random-numbers generators for fast entropy, noVNC, 100+ ready to use Turnkey images, images of common Linux distributions for fully automated installation, bring your own .iso and boot it on EDIS KVM, post-install scripts for automated installation according to your recipes. Windows and Linux. Auto-Installers for Windows 2016/2019/2022 Server (trial). TOR traffic is fine but TOR exit notes are not allowed. EDIS does not require KYC, but a real name and a real-world address is required (they don’t come to check if you really live at the indicated address) and EDIS allows signup via TOR or Proxies, but they do not want criminal activity and will manually review all new signups for signs of fraud or criminal intent before provisioning the first service. User reports signups not allowed with cock.li email addresses and a phone number is required at signup.
Vultr - Locations: Atlanta (US), Chicago (US), Dallas (US), Los Angeles (US), Miami (US), New Jersey (US), Seattle (US), Silicon Valley (US), Toronto (CA), Amsterdam (NL), Frankfurt (DE), London (UK), Paris (FR), Tokyo (JP), Singapore (SG), Sydney (AU). Company registered in US. Reader reports strong anti-privacy policies: users must make credit card or PayPal payment before they are allowed to make Bitcoin deposits, and they use BitPay (which requires government ID/etc). Reader recommends using a Vultr reseller (e.g Bithost)
xitheon - Locations: Quebec (CA), Frankfurt (DE), Sydney (AU), Warsaw (PL), France (FR), Singapore (SG), UK. Company registered in ???.
MyNymBox - Locations: Frankfurt (DE), Nuremberg (DE), Helsinki (FI), Munich (DE), Portsmouth (UK), New York (US), Seattle (US), St. Louis (US), Singapore (Asia). Company registered in Seychelles. Resells services from Hetzner Cloud, Dedicated Servers and Contabo. Offers Shared Hosting on encrypted storage and anonym Domain Registrations. No email verification required to order. Tor- and anonymity-friendly. Accepts Bitcoin, Lightning and Monero payments via self hosted BTCPayServer. No Google Captchas or 3rd party stuff. Has Storage VPS (Large Storage) servers, suitable for full nodes, provider runs their BTCPayServer on one of them!
Pqhosting - Locations: Moldova (MD), Russia (RU), Latvia (LV), Netherlands (NL), Hong Kong (HK), Germany (DE), Ukraine (UA), United States (US), Hong Kong (HK), Canada (CA), Czechia (CZ), Slovakia (SK), Israel (IL), Turkey (TR), Poland (PL), Bulgaria (BG), Romania (RO). Company registered in Russia. Google Captchas. User reports they may suddenly require KYC to access your server or pay with crypto if your signup IP (e.g proxy/VPN/Tor) triggers fraud checks, or randomly if they decide they want to know who you are
HostZealot - Locations: Amsterdam (NL), London (UK), Stockholm (SE), Warsaw (PL), Limassol (CY), Tallinn (EE), Ashburn (US), Chicago (US), Dallas (US), Seattle (US), Toronto (CA), Brussels (BE), Tel Aviv (IL), Hong Kong (HK), Dusseldorf (DE), Tbilisi (GE). Company registered in Bulgaria. Provider states they are Tor and anonymity friendly as long as you do not violate their ToS. All their VPS instances use SSDs, their Poland and Netherlands locations offer NVMe also. User reports they do not allow registration from Protonmail email addresses.
BlueVPS - Locations: Amsterdam (NL), Limassol (CY), Gravelines (FR), Singapore (SG), Sofiya (BG), London (UK), Ashburn (US), Los Angeles (US), Atlanta (US), Frankfurt (DE), Palermo (IT), Tel Aviv (IL), Stockholm (SE), Toronto (CA), Tallinn (EE), Madrid (ES), Hong Kong (CN), Warsaw (PL), Sydney (AU), Fujairah (UAE). Company registered in Estonia. Payments via Coinpayments. Regarding anonymity they state “We require clients confirmation e-Mail or ID”. Provider has hardware in two different data centers at their Warsaw and London locations.
Host-World - Locations: Frankfurt (DE), Amsterdam (NL), London (UK), Strasbourg (FR), Gravelines (FR), Limassol (CY), Bratislava (SK), Prague (CZ), Riga (LV), Warsaw (PL), Chisinau (MD), Kiev (UA), New Jersey (US), Toronto (CA), Beauharnois (CA), Sydney (AU), Hong Kong (HK), Tokyo (JP), Singapore (SG), Petach Tikva (IL), Turkey (TR). Company registered in Estonia. Uses Coinpayments.net. Anonymous signup OK (they only verify email)
ServerMath - Locations: Amsterdam (NL), Hong Kong (HK), Madrid (ES), Seoul (KR), Dallas (TX), Istanbul (TR), Manila (PH), Singapore (SG), Dubai (AE), Lagos (NG), Miami (US), Tokyo (JP), Frankfurt (DE), London (UK), Moscow (RU), Warsaw (PL). Company registered in ???. Accepts Bitcoin via BTCPayServer. Willing to consider payment via other cryptocurrencies on request. Does not require KYC or check identity. Happy to arrange custom server configurations (e.g GPUs, high bandwidth servers). Affiliated with RatioServer. Website does not work when visited from some IP addresses
Ahost - Locations: Dubai (AE), Vienna (AT), Sydney (AU), Brussels (BE), Sofia (BG), Zurich (CH), Prague (CZ), Copenhagen (DK), Seville (ES), Thessaloniki (GR), Kwai Chung (HK), Zagreb (HR), Budapest (HU), Tel Aviv (IL), Hafnarfjordur (IS), Milan (IT), Tokyo (JP), Vilnius (LT), Riga (LV), Chisinau (MD), Skopje (MK), Oslo (NO), Warsaw (PL), Belgrade (RS), Bucharest (RO), Moscow (RU), Stockholm (SE), Ljubljana (SI). Company registered in Estonia. No anonymous signup. No Tor or spam allowed. Payments via Payeer. KVM virtualization, Gigabit speeds for every VPS. They do NOT want anonymous signups or Tor traffic. User reports they ask for KYC (scan of government ID) after payment. Google Captchas
IpTransit - Locations: Iran (IR). Company registered in Iran. Non-HTTPS site. Appears to be down, but you can try emailing them at the address given on their website
EDIS Global - Locations: Vienna / Austria (AT), Graz / Austria (AT), Brussels / Belgium (BE), Sofia / Bulgaria (BG), Montreal / Canada (CA), Vina del Mar / Valparaiso / Chile (CL), Bogota / Colombia (CO), Prague / Czech Republic (CZ), Zagreb / Croatia (HR), Dubai (UAE), Paris / France (FR), Frankfurt / Germany (DE), Copenhagen / Denmark (DK), Thessaloniki / Greece (GR), Kwai Chung / Hong Kong (HK), Budapest / Hungary (HU), Hafnarfjördur / Iceland (IS), Ballasalla / Isle of Man (IM), Tel Aviv / Israel (IL), Milan / Italy (IT), Palermo / Sicily (IT), Tokyo / Japan (JP), Vilnius / Lithuania (LT), Riga / Latvia (LV), Chisinau / Moldova (MD), Skopje/North Macedonia (MK), Amsterdam / Netherlands (NL), Oslo / Norway (NO), Warsaw / Poland (PL), Bucharest / Romania (RO), Belgrade / Serbia (RS), Moscow / Russia (RU), St. Petersburg / Russia (RU), Belgrade / Serbia (RS), Singapore (SG), Stockholm / Sweden (SE), Ljubljana / Slovenia (SI), Seville / Spain (ES), Zurich / Switcherland(CH), Sydney / Australia (AU), New York (US), London City and London Docklands (UK). Company registered in Limassol, Cyprus. Now using Cryptomus and accepting Bitcoin (plus other standard coins, including DOGE) at all locations.Use coupon code BITCOINVPS for a 10% (lifetime) discount on your first order. The provider notes: Instant Provisioning! All VPS are KVM-based, 100% SSD, modern Intel processors, up to 2x 10Gbps per node, fully GEO-located IP ranges, redundant high quality uplinks, lowest latenc, peerings at local IX, loads of bandwidth, TUN/TAP for VPN, hostCPU passthrough, random-numbers generators for fast entropy, noVNC, 100+ ready to use Turnkey images, images of common Linux distributions for fully automated installation, bring your own .iso and boot it on EDIS KVM, post-install scripts for automated installation according to your recipes. Windows and Linux. Auto-Installers for Windows 2016/2019/2022 Server (trial). TOR traffic is fine but TOR exit notes are not allowed. EDIS does not require KYC, but a real name and a real-world address is required (they don’t come to check if you really live at the indicated address) and EDIS allows signup via TOR or Proxies, but they do not want criminal activity and will manually review all new signups for signs of fraud or criminal intent before provisioning the first service. User reports signups not allowed with cock.li email addresses and a phone number is required at signup.
ClientVPS - Locations: Bahrain (BH), Ukraine (UA), Netherlands (NL), Panama (PA), Russia (RU), Singapore (SG), Hong Kong (HK), Iran (IR). Company registered in Russia or US, it’s unclear. “Bulletproof” hosting provider.
Melbicom - Locations: Riga (LV), Amsterdam (NL), Warsaw (PL), Moscow (RU), Palermo (IT), Vilnius (LT), Madrid (ES), Sofia (BG), Lagos (NG), Singapore (SG), Fujairah (AE), Atlanta (US), Los Angeles (US). Company registered in Lithuania. Windows and Linux VPS. Also offers CDN services. No Tor traffic allowed. They don’t ask for much personal information but don’t want anonymous signup, they may request ID verification. No illegal activities allowed. Bitcoin Lightning network (LN) payments supported. No Google Captchas. Large Storage servers are available. They support BGP sessions, colocations, and cloud services also.
VPSBroker - Locations: Amsterdam (NL), Atlanta (US), Bangalore (IN), Chicago (US), Dallas (US), Delhi NCR (IN), Frankfurt (DE), Honolulu (US), Johannesburg (ZA), London (UK), Los Angeles (US), Madrid (ES), Manchester (UK), Melbourne (AU), Mexico City (MX), Miami (US), Mumbai (IN), New York (US), Osaka (JP), Paris (FR), Santiago (CL), São Paulo (BR), Seattle (US), Silicon Valley (US), Singapore (SG), Stockholm (SE), Sydney (AU), Tel Aviv (IL), Tokyo (JP), Toronto (CA), Warsaw (PL), Seoul (KR). Company registered in ???. Signup over Tor ok, user reports no captchas or Maxmind/KYC. Accepts Bitcoin, Monero (XMR), and others. User reports the UI is really good. Disk space available up to 160GB.
SafeCloud - Locations: Amsterdam (NL), Athens (GR), Barcelona (ES), Belgrade (RS), Brussels (BE), Bucharest (RO), Copenhagen (DK), Dublin (IE), Dusseldorf (DE), Florence (IT), Frankfurt (DE), Helsinki (FI), Kyiv (UA), Lisbon (PT), London (UK), Madrid (ES), Moscow (RU), Nicosia (CY), Oslo (NO), Paris (FR), Sofia (BG), Stockholm (SE), Warsaw (PL), Vienna (AT), Vilnius (LT), Zurich (CH), Ashburn (US), Atlanta (US), Chicago (US), Dallas (US), Kansas City (US), Los Angeles (US), Mexico City (MX), Miami (US), Montreal (CA), New York (US), Portland (US), Salt Lake City (US), San Juan(PR), Seattle (US), Toronto (CA), Vancouver (CA), Washington (US), Bogota (CO), Buenos Aires (AR), Guatemala City (GT), La Paz (BO), Lima (PE), Quito (EC), San Jose (CR), Santiago (CL), São Paulo (BR), Dubai (AE), Hong Kong (HK), Istanbul (TR), Kuala Lumpur (MY), Mumbai (IN), Singapore (SG), Taipei (TW), Tel Aviv (IL), Tokyo (JP), Fez (MA), Johannesburg (ZA), Lagos (NG), Sydney (AU). Company registered in Seattle (US). Tor traffic OK. Only valid email required at signup. Payments via Bitserver and manual payment processing. No Google Captchas. 100MBps-40Gbps dedicated bandwidth dedicated servers available. Use promo code BITCOINVPS for 10% discount on orders.
BrilliantHost - Locations: Washington, D.C. (US), California (US), Iowa (US), Toronto (CA), London (GB), Amsterdam (NL), Warsaw (PL), Paris (FR), Frankfurt (DE), Milan (IT), Vienna (AT), Sydney (AU), Hong Kong (HK), Stockholm (SE), Dubai (AE), São Paulo (BR). Company registered in Wyoming, United States. Tor traffic OK. No Google Captchas. Very privacy-and anonymity friendly, only an email is required. Processes crypto payments manually via their support team. Advertises high performance at low prices.
Shock Hosting - Locations: Piscataway/New Jersey (US), Los Angeles (US), Chicago (US), Dallas (US), Jacksonville (US), Denver (US), Seattle (US), Maidenhead (UK), Amsterdam (NL), Sydney (AU), Tokyo (JP), Singapore (SG). Company registered in United States.
Host-World - Locations: Frankfurt (DE), Amsterdam (NL), London (UK), Strasbourg (FR), Gravelines (FR), Limassol (CY), Bratislava (SK), Prague (CZ), Riga (LV), Warsaw (PL), Chisinau (MD), Kiev (UA), New Jersey (US), Toronto (CA), Beauharnois (CA), Sydney (AU), Hong Kong (HK), Tokyo (JP), Singapore (SG), Petach Tikva (IL), Turkey (TR). Company registered in Estonia. Uses Coinpayments.net. Anonymous signup OK (they only verify email)
ExtraVM - Locations: Dallas TX (US), Los Angeles CA (US), Miami FL (US), Vint Hill VA (US), Montreal QC (CAN), London (UK), Gravelines (FR), Sydney (AU), Singapore (SG), Tokyo (JP). Company registered in Delaware, US. Ryzen servers. Crypto payments via Cryptomus. DdoS protected. Also offers Minecraft servers.
VPSServer - Locations: San Francisco/Chicago/Dallas/Miami/NYC (US), Toronto (CA), London (UK), Amsterdam (NL), Frankfurt (DE), Bangalore (IN), Tokyo (JP), Hong Kong (HK), Singapore (SG), Sydney (AU). Company registered in US. Uses BitPay. Reader reports they are Tor hostile: “I can’t join or use SSH to connect to their VPSs over Tor. No relays allowed (and most certainly no exits).” See: https://www.vpsserver.com/community/questions/7/i-want-tot-use-tor-network-is-it-allowed/
ZappieHost - Locations: New Zealand (NZ), South Africa (ZA), Valdivia (CL). Company registered in US.
Vultr - Locations: Atlanta (US), Chicago (US), Dallas (US), Los Angeles (US), Miami (US), New Jersey (US), Seattle (US), Silicon Valley (US), Toronto (CA), Amsterdam (NL), Frankfurt (DE), London (UK), Paris (FR), Tokyo (JP), Singapore (SG), Sydney (AU). Company registered in US. Reader reports strong anti-privacy policies: users must make credit card or PayPal payment before they are allowed to make Bitcoin deposits, and they use BitPay (which requires government ID/etc). Reader recommends using a Vultr reseller (e.g Bithost)
RatioServer - Locations: Amsterdam (NL), Budapest (HU), Copenhagen (DK), Dallas (US), Dublin (IE), Frankfurt (DE), London (UK), Los Angeles (US), Madrid (ES), Miami (US), Montreal (CA), New York (US), Paris (FR), Prague (CZ), Rome (IT), Singapore (SG), Sofia (BG), Sydney (AU), Tokyo (JP), Zurich (CH) and more. Company registered in ???. Most locations have unmetered dedicated servers and custom-built server options available. Tor- and anonymity-friendly. Does not verify email address validity, but encourages people to sign up with a working email address. Uses their own in-house BTC/ETH payment processor
Aaroli - Locations: Amsterdam (NL), Atlanta (US), Frankfurt (DE), London (UK), Paris (FR), Singapore (SG), Sydney (AU), Tokyo (JP), Toronto (CA). Company registered in an undisclosed location. Large Storage offered in 5 locations, may be suitable for full nodes. Payment via BTCPayServer or manual payment (accepts BTC, ETH). Willing to do custom configurations or payment via alternate methods. Anonymous/pseudonymous signup OK, provided you provide a working email address.
NetNexus - Locations: Virginia (US), Ohio (US), California (US), Oregon (US), Mumbai (IN), Osaka (JP), Seoul (KR), Singapore (SG), Sydney (AU), Tokyo (JP), Central (CA), Frankfurt (DE), Ireland (IE), London (GB), Paris (FR), Stockholm (SE), Sao Paulo (BR). Company registered in Portland, Oregon. Tor traffic allowed. Asks for email address, name, phone number, etc on signup but doesn’t verify the information. Bitcoin payment with Plisio. No Google Captchas. Large Storage, maybe suitable for full nodes.
Gigablits - Locations: Amsterdam (NL), Bangalore (IN), Frankfurt (DE), London (UK), New York (US), San Francisco (US), Singapore (SG), Sydney (AU), Toronto (CA). Company registered in ???. DigitalOcean reseller. Anonymity focused, no personal information required. Payments accepted via Plisio. User reports they took payment but did not deliver service or respond to tickets, business may be defunct.
VPSBroker - Locations: Amsterdam (NL), Atlanta (US), Bangalore (IN), Chicago (US), Dallas (US), Delhi NCR (IN), Frankfurt (DE), Honolulu (US), Johannesburg (ZA), London (UK), Los Angeles (US), Madrid (ES), Manchester (UK), Melbourne (AU), Mexico City (MX), Miami (US), Mumbai (IN), New York (US), Osaka (JP), Paris (FR), Santiago (CL), São Paulo (BR), Seattle (US), Silicon Valley (US), Singapore (SG), Stockholm (SE), Sydney (AU), Tel Aviv (IL), Tokyo (JP), Toronto (CA), Warsaw (PL), Seoul (KR). Company registered in ???. Signup over Tor ok, user reports no captchas or Maxmind/KYC. Accepts Bitcoin, Monero (XMR), and others. User reports the UI is really good. Disk space available up to 160GB.
SafeCloud - Locations: Amsterdam (NL), Athens (GR), Barcelona (ES), Belgrade (RS), Brussels (BE), Bucharest (RO), Copenhagen (DK), Dublin (IE), Dusseldorf (DE), Florence (IT), Frankfurt (DE), Helsinki (FI), Kyiv (UA), Lisbon (PT), London (UK), Madrid (ES), Moscow (RU), Nicosia (CY), Oslo (NO), Paris (FR), Sofia (BG), Stockholm (SE), Warsaw (PL), Vienna (AT), Vilnius (LT), Zurich (CH), Ashburn (US), Atlanta (US), Chicago (US), Dallas (US), Kansas City (US), Los Angeles (US), Mexico City (MX), Miami (US), Montreal (CA), New York (US), Portland (US), Salt Lake City (US), San Juan(PR), Seattle (US), Toronto (CA), Vancouver (CA), Washington (US), Bogota (CO), Buenos Aires (AR), Guatemala City (GT), La Paz (BO), Lima (PE), Quito (EC), San Jose (CR), Santiago (CL), São Paulo (BR), Dubai (AE), Hong Kong (HK), Istanbul (TR), Kuala Lumpur (MY), Mumbai (IN), Singapore (SG), Taipei (TW), Tel Aviv (IL), Tokyo (JP), Fez (MA), Johannesburg (ZA), Lagos (NG), Sydney (AU). Company registered in Seattle (US). Tor traffic OK. Only valid email required at signup. Payments via Bitserver and manual payment processing. No Google Captchas. 100MBps-40Gbps dedicated bandwidth dedicated servers available. Use promo code BITCOINVPS for 10% discount on orders.
BrilliantHost - Locations: Washington, D.C. (US), California (US), Iowa (US), Toronto (CA), London (GB), Amsterdam (NL), Warsaw (PL), Paris (FR), Frankfurt (DE), Milan (IT), Vienna (AT), Sydney (AU), Hong Kong (HK), Stockholm (SE), Dubai (AE), São Paulo (BR). Company registered in Wyoming, United States. Tor traffic OK. No Google Captchas. Very privacy-and anonymity friendly, only an email is required. Processes crypto payments manually via their support team. Advertises high performance at low prices.
Host-World - Locations: Frankfurt (DE), Amsterdam (NL), London (UK), Strasbourg (FR), Gravelines (FR), Limassol (CY), Bratislava (SK), Prague (CZ), Riga (LV), Warsaw (PL), Chisinau (MD), Kiev (UA), New Jersey (US), Toronto (CA), Beauharnois (CA), Sydney (AU), Hong Kong (HK), Tokyo (JP), Singapore (SG), Petach Tikva (IL), Turkey (TR). Company registered in Estonia. Uses Coinpayments.net. Anonymous signup OK (they only verify email)
EDIS Global - Locations: Vienna / Austria (AT), Graz / Austria (AT), Brussels / Belgium (BE), Sofia / Bulgaria (BG), Montreal / Canada (CA), Vina del Mar / Valparaiso / Chile (CL), Bogota / Colombia (CO), Prague / Czech Republic (CZ), Zagreb / Croatia (HR), Dubai (UAE), Paris / France (FR), Frankfurt / Germany (DE), Copenhagen / Denmark (DK), Thessaloniki / Greece (GR), Kwai Chung / Hong Kong (HK), Budapest / Hungary (HU), Hafnarfjördur / Iceland (IS), Ballasalla / Isle of Man (IM), Tel Aviv / Israel (IL), Milan / Italy (IT), Palermo / Sicily (IT), Tokyo / Japan (JP), Vilnius / Lithuania (LT), Riga / Latvia (LV), Chisinau / Moldova (MD), Skopje/North Macedonia (MK), Amsterdam / Netherlands (NL), Oslo / Norway (NO), Warsaw / Poland (PL), Bucharest / Romania (RO), Belgrade / Serbia (RS), Moscow / Russia (RU), St. Petersburg / Russia (RU), Belgrade / Serbia (RS), Singapore (SG), Stockholm / Sweden (SE), Ljubljana / Slovenia (SI), Seville / Spain (ES), Zurich / Switcherland(CH), Sydney / Australia (AU), New York (US), London City and London Docklands (UK). Company registered in Limassol, Cyprus. Now using Cryptomus and accepting Bitcoin (plus other standard coins, including DOGE) at all locations.Use coupon code BITCOINVPS for a 10% (lifetime) discount on your first order. The provider notes: Instant Provisioning! All VPS are KVM-based, 100% SSD, modern Intel processors, up to 2x 10Gbps per node, fully GEO-located IP ranges, redundant high quality uplinks, lowest latenc, peerings at local IX, loads of bandwidth, TUN/TAP for VPN, hostCPU passthrough, random-numbers generators for fast entropy, noVNC, 100+ ready to use Turnkey images, images of common Linux distributions for fully automated installation, bring your own .iso and boot it on EDIS KVM, post-install scripts for automated installation according to your recipes. Windows and Linux. Auto-Installers for Windows 2016/2019/2022 Server (trial). TOR traffic is fine but TOR exit notes are not allowed. EDIS does not require KYC, but a real name and a real-world address is required (they don’t come to check if you really live at the indicated address) and EDIS allows signup via TOR or Proxies, but they do not want criminal activity and will manually review all new signups for signs of fraud or criminal intent before provisioning the first service. User reports signups not allowed with cock.li email addresses and a phone number is required at signup.
NetNexus - Locations: Virginia (US), Ohio (US), California (US), Oregon (US), Mumbai (IN), Osaka (JP), Seoul (KR), Singapore (SG), Sydney (AU), Tokyo (JP), Central (CA), Frankfurt (DE), Ireland (IE), London (GB), Paris (FR), Stockholm (SE), Sao Paulo (BR). Company registered in Portland, Oregon. Tor traffic allowed. Asks for email address, name, phone number, etc on signup but doesn’t verify the information. Bitcoin payment with Plisio. No Google Captchas. Large Storage, maybe suitable for full nodes.
VPSBroker - Locations: Amsterdam (NL), Atlanta (US), Bangalore (IN), Chicago (US), Dallas (US), Delhi NCR (IN), Frankfurt (DE), Honolulu (US), Johannesburg (ZA), London (UK), Los Angeles (US), Madrid (ES), Manchester (UK), Melbourne (AU), Mexico City (MX), Miami (US), Mumbai (IN), New York (US), Osaka (JP), Paris (FR), Santiago (CL), São Paulo (BR), Seattle (US), Silicon Valley (US), Singapore (SG), Stockholm (SE), Sydney (AU), Tel Aviv (IL), Tokyo (JP), Toronto (CA), Warsaw (PL), Seoul (KR). Company registered in ???. Signup over Tor ok, user reports no captchas or Maxmind/KYC. Accepts Bitcoin, Monero (XMR), and others. User reports the UI is really good. Disk space available up to 160GB.
SafeCloud - Locations: Amsterdam (NL), Athens (GR), Barcelona (ES), Belgrade (RS), Brussels (BE), Bucharest (RO), Copenhagen (DK), Dublin (IE), Dusseldorf (DE), Florence (IT), Frankfurt (DE), Helsinki (FI), Kyiv (UA), Lisbon (PT), London (UK), Madrid (ES), Moscow (RU), Nicosia (CY), Oslo (NO), Paris (FR), Sofia (BG), Stockholm (SE), Warsaw (PL), Vienna (AT), Vilnius (LT), Zurich (CH), Ashburn (US), Atlanta (US), Chicago (US), Dallas (US), Kansas City (US), Los Angeles (US), Mexico City (MX), Miami (US), Montreal (CA), New York (US), Portland (US), Salt Lake City (US), San Juan(PR), Seattle (US), Toronto (CA), Vancouver (CA), Washington (US), Bogota (CO), Buenos Aires (AR), Guatemala City (GT), La Paz (BO), Lima (PE), Quito (EC), San Jose (CR), Santiago (CL), São Paulo (BR), Dubai (AE), Hong Kong (HK), Istanbul (TR), Kuala Lumpur (MY), Mumbai (IN), Singapore (SG), Taipei (TW), Tel Aviv (IL), Tokyo (JP), Fez (MA), Johannesburg (ZA), Lagos (NG), Sydney (AU). Company registered in Seattle (US). Tor traffic OK. Only valid email required at signup. Payments via Bitserver and manual payment processing. No Google Captchas. 100MBps-40Gbps dedicated bandwidth dedicated servers available. Use promo code BITCOINVPS for 10% discount on orders.
BrilliantHost - Locations: Washington, D.C. (US), California (US), Iowa (US), Toronto (CA), London (GB), Amsterdam (NL), Warsaw (PL), Paris (FR), Frankfurt (DE), Milan (IT), Vienna (AT), Sydney (AU), Hong Kong (HK), Stockholm (SE), Dubai (AE), São Paulo (BR). Company registered in Wyoming, United States. Tor traffic OK. No Google Captchas. Very privacy-and anonymity friendly, only an email is required. Processes crypto payments manually via their support team. Advertises high performance at low prices.
ServerMath - Locations: Amsterdam (NL), Hong Kong (HK), Madrid (ES), Seoul (KR), Dallas (TX), Istanbul (TR), Manila (PH), Singapore (SG), Dubai (AE), Lagos (NG), Miami (US), Tokyo (JP), Frankfurt (DE), London (UK), Moscow (RU), Warsaw (PL). Company registered in ???. Accepts Bitcoin via BTCPayServer. Willing to consider payment via other cryptocurrencies on request. Does not require KYC or check identity. Happy to arrange custom server configurations (e.g GPUs, high bandwidth servers). Affiliated with RatioServer. Website does not work when visited from some IP addresses
GlobalDataServer - Locations: Atlanta (US), Chicago (US), Dallas (US), Los Angeles (US), Miami (US), Montreal (CA), New York (US), Seattle (US), Vancouver (CA), Washington DC (US), Amsterdam (NL), Brussels (BE), Bucharest (RO), Copenhagen (DK), Dublin (IE), Frankfurt (DE), London (UK), Madrid (ES), Milan (IT), Moscow (RU), Oslo (NO), Paris (FR), Sofia (BG), Stockholm (SE), Vienna (AT), Vilnius (LT), Warsaw (PL), Zurich (CH), Bursa (TR), Hong Kong (HK), Singapore (SG), Tokyo (JP), Sydney (AU), Johannesburg (ZA). Company registered in Las Vegas (US). Dedicated servers in 100+ locations. Has high bandwidth 20GBps dedicated servers and can do custom configuration. Tor friendly. Contact them directly to arrange BTC payment. User reports they are likely connected to AllServerHost. Use code BITCOINVPS for a 10% discount on first order
ZappieHost - Locations: New Zealand (NZ), South Africa (ZA), Valdivia (CL). Company registered in US.
Web4Africa - Locations: Ghana, Kenya, Nigeria (NG), South Africa (ZA). Company registered in South Africa.
Melbicom - Locations: Riga (LV), Amsterdam (NL), Warsaw (PL), Moscow (RU), Palermo (IT), Vilnius (LT), Madrid (ES), Sofia (BG), Lagos (NG), Singapore (SG), Fujairah (AE), Atlanta (US), Los Angeles (US). Company registered in Lithuania. Windows and Linux VPS. Also offers CDN services. No Tor traffic allowed. They don’t ask for much personal information but don’t want anonymous signup, they may request ID verification. No illegal activities allowed. Bitcoin Lightning network (LN) payments supported. No Google Captchas. Large Storage servers are available. They support BGP sessions, colocations, and cloud services also.
VPSBroker - Locations: Amsterdam (NL), Atlanta (US), Bangalore (IN), Chicago (US), Dallas (US), Delhi NCR (IN), Frankfurt (DE), Honolulu (US), Johannesburg (ZA), London (UK), Los Angeles (US), Madrid (ES), Manchester (UK), Melbourne (AU), Mexico City (MX), Miami (US), Mumbai (IN), New York (US), Osaka (JP), Paris (FR), Santiago (CL), São Paulo (BR), Seattle (US), Silicon Valley (US), Singapore (SG), Stockholm (SE), Sydney (AU), Tel Aviv (IL), Tokyo (JP), Toronto (CA), Warsaw (PL), Seoul (KR). Company registered in ???. Signup over Tor ok, user reports no captchas or Maxmind/KYC. Accepts Bitcoin, Monero (XMR), and others. User reports the UI is really good. Disk space available up to 160GB.
SafeCloud - Locations: Amsterdam (NL), Athens (GR), Barcelona (ES), Belgrade (RS), Brussels (BE), Bucharest (RO), Copenhagen (DK), Dublin (IE), Dusseldorf (DE), Florence (IT), Frankfurt (DE), Helsinki (FI), Kyiv (UA), Lisbon (PT), London (UK), Madrid (ES), Moscow (RU), Nicosia (CY), Oslo (NO), Paris (FR), Sofia (BG), Stockholm (SE), Warsaw (PL), Vienna (AT), Vilnius (LT), Zurich (CH), Ashburn (US), Atlanta (US), Chicago (US), Dallas (US), Kansas City (US), Los Angeles (US), Mexico City (MX), Miami (US), Montreal (CA), New York (US), Portland (US), Salt Lake City (US), San Juan(PR), Seattle (US), Toronto (CA), Vancouver (CA), Washington (US), Bogota (CO), Buenos Aires (AR), Guatemala City (GT), La Paz (BO), Lima (PE), Quito (EC), San Jose (CR), Santiago (CL), São Paulo (BR), Dubai (AE), Hong Kong (HK), Istanbul (TR), Kuala Lumpur (MY), Mumbai (IN), Singapore (SG), Taipei (TW), Tel Aviv (IL), Tokyo (JP), Fez (MA), Johannesburg (ZA), Lagos (NG), Sydney (AU). Company registered in Seattle (US). Tor traffic OK. Only valid email required at signup. Payments via Bitserver and manual payment processing. No Google Captchas. 100MBps-40Gbps dedicated bandwidth dedicated servers available. Use promo code BITCOINVPS for 10% discount on orders.
SporeStack - Locations: San Francisco/NYC (US), Toronto (CA), London (UK), Amsterdam (NL), Frankfurt (DE), Singapore (SG), Bangalore (IN). Company registered in Texas (US). Accountless VPS provider. Also takes Bcash / Bitcoin SV. API-only/no registration, servers on Digital Ocean, Vultur/Linode available on request, Tor-only servers in undisclosed location, onion service URL: http://spore64i5sofqlfz5gq2ju4msgzojjwifls7rok2cti624zyq3fcelad.onion/#ref=vps
Host4Coins - Locations: France (FR), Zurich (CH). Company registered in France(?). Only Bitcoin and Lightning Network (LN) payments. Anonymous signup encouraged (they do not verify email address validity). $2/mo discount for IPv6-only service. Run by https://twitter.com/ketominer
SporeStack - Locations: San Francisco/NYC (US), Toronto (CA), London (UK), Amsterdam (NL), Frankfurt (DE), Singapore (SG), Bangalore (IN). Company registered in Texas (US). Accountless VPS provider. Also takes Bcash / Bitcoin SV. API-only/no registration, servers on Digital Ocean, Vultur/Linode available on request, Tor-only servers in undisclosed location, onion service URL: http://spore64i5sofqlfz5gq2ju4msgzojjwifls7rok2cti624zyq3fcelad.onion/#ref=vps
Host4Coins - Locations: France (FR), Zurich (CH). Company registered in France(?). Only Bitcoin and Lightning Network (LN) payments. Anonymous signup encouraged (they do not verify email address validity). $2/mo discount for IPv6-only service. Run by https://twitter.com/ketominer
GlobalDataServer - Locations: Atlanta (US), Chicago (US), Dallas (US), Los Angeles (US), Miami (US), Montreal (CA), New York (US), Seattle (US), Vancouver (CA), Washington DC (US), Amsterdam (NL), Brussels (BE), Bucharest (RO), Copenhagen (DK), Dublin (IE), Frankfurt (DE), London (UK), Madrid (ES), Milan (IT), Moscow (RU), Oslo (NO), Paris (FR), Sofia (BG), Stockholm (SE), Vienna (AT), Vilnius (LT), Warsaw (PL), Zurich (CH), Bursa (TR), Hong Kong (HK), Singapore (SG), Tokyo (JP), Sydney (AU), Johannesburg (ZA). Company registered in Las Vegas (US). Dedicated servers in 100+ locations. Has high bandwidth 20GBps dedicated servers and can do custom configuration. Tor friendly. Contact them directly to arrange BTC payment. User reports they are likely connected to AllServerHost. Use code BITCOINVPS for a 10% discount on first order
LowEndSpirit - Locations: Rotterdam (NL), London (UK), Milan (IT), Phoenix/Kansas/Lenoir NC (US), Tokyo (JP), Falkenstein (DE), Sofia (BG), Sandefjord (NO), Reims (FR), Perth/Sydney (AU), Singapore. Company registered in ???. Now a directory site / forum for low cost hosting.
Ccihosting - Locations: Panama (PA). Company registered in Panama.
ClientVPS - Locations: Bahrain (BH), Ukraine (UA), Netherlands (NL), Panama (PA), Russia (RU), Singapore (SG), Hong Kong (HK), Iran (IR). Company registered in Russia or US, it’s unclear. “Bulletproof” hosting provider.
Servting - Locations: Netherlands (NL), India (IN), Germany (DE), London (UK), United States (US), Singapore (SG), Canada (CA), South Korea (KR), Australia (AU), Japan (JP), Ireland (IE), France (FR), Sweden (SE), Spain (ES), Mexico (MX), Brazil (BR), Poland (PL). Company registered in United States. Currently reselling Digital Ocean, AWS Lightsail and Vultr. BTCPayServer as payment gateway. Encourage anonymous sign-up. Provider notes: “TOR and VPNs allowed, we do not use any fraud detection software such as Maxmind. A real email address is encouraged for correspondence but not a requirement . We offer block storage upgrades upon request. We do not check identities or perform any verification, if payment is successful you get a server!”
BitHost - Locations: All Digital Ocean/Linode/Hetzner/Vultr. Company registered in ???. Bitcoin-accepting front end for renting servers from Digital Ocean/Linode/Hetzner/Vultr
BitLaunch - Locations: DigitalOcean, Vultr, Linode, Netherlands (NL), United States (US), United Kingdom (UK). Company registered in Unknown. Cryptocurrency payment front-end to Digital Ocean/Vultr/Linode. User reprts they also run their own infrastructure with their own ASN
Bizcloud - Locations: Everywhere DigitalOcean has presence. Company registered in Malaysia. DigitalOcean reseller. Accepts BTC, LTC, ETH, XRP, BCH.
MyNymBox - Locations: Frankfurt (DE), Nuremberg (DE), Helsinki (FI), Munich (DE), Portsmouth (UK), New York (US), Seattle (US), St. Louis (US), Singapore (Asia). Company registered in Seychelles. Resells services from Hetzner Cloud, Dedicated Servers and Contabo. Offers Shared Hosting on encrypted storage and anonym Domain Registrations. No email verification required to order. Tor- and anonymity-friendly. Accepts Bitcoin, Lightning and Monero payments via self hosted BTCPayServer. No Google Captchas or 3rd party stuff. Has Storage VPS (Large Storage) servers, suitable for full nodes, provider runs their BTCPayServer on one of them!
Gigablits - Locations: Amsterdam (NL), Bangalore (IN), Frankfurt (DE), London (UK), New York (US), San Francisco (US), Singapore (SG), Sydney (AU), Toronto (CA). Company registered in ???. DigitalOcean reseller. Anonymity focused, no personal information required. Payments accepted via Plisio. User reports they took payment but did not deliver service or respond to tickets, business may be defunct.
Pqhosting - Locations: Moldova (MD), Russia (RU), Latvia (LV), Netherlands (NL), Hong Kong (HK), Germany (DE), Ukraine (UA), United States (US), Hong Kong (HK), Canada (CA), Czechia (CZ), Slovakia (SK), Israel (IL), Turkey (TR), Poland (PL), Bulgaria (BG), Romania (RO). Company registered in Russia. Google Captchas. User reports they may suddenly require KYC to access your server or pay with crypto if your signup IP (e.g proxy/VPN/Tor) triggers fraud checks, or randomly if they decide they want to know who you are
Justhost - Locations: Russia (RU). Company registered in Russia. Selling VDS
Skhron - Locations: Warsaw (PL). Company registered in Estonia. Equipment located at Equinix WA3. Bitcoin, Monero (XMR), TRX, USDT/TRC20, LTC accepted using self-hosted BTCPayServer (BTC) and BitCartCC (other coins). Lightning Network (LN) payments supported. Tor traffic allowed. Only a valid email is required, they don’t check other user-provided personal info unless you pay with fiat. No KYC and no error prone fraud protection to cancel your order unexpectedly. Captchas are standard pictures or hCaptcha. Offers a low-end KVM VPS for 1.15 EUR/month. Onion service at http://ufcmgzuawelktlvqaypyj4efjonbzleoketixdmtzidvfg254gfwyuqd.onion/
MrVM - Locations: Sweden (SE). Company registered in Sweden. No Tor traffic allowed
LowEndSpirit - Locations: Rotterdam (NL), London (UK), Milan (IT), Phoenix/Kansas/Lenoir NC (US), Tokyo (JP), Falkenstein (DE), Sofia (BG), Sandefjord (NO), Reims (FR), Perth/Sydney (AU), Singapore. Company registered in ???. Now a directory site / forum for low cost hosting.
Pqhosting - Locations: Moldova (MD), Russia (RU), Latvia (LV), Netherlands (NL), Hong Kong (HK), Germany (DE), Ukraine (UA), United States (US), Hong Kong (HK), Canada (CA), Czechia (CZ), Slovakia (SK), Israel (IL), Turkey (TR), Poland (PL), Bulgaria (BG), Romania (RO). Company registered in Russia. Google Captchas. User reports they may suddenly require KYC to access your server or pay with crypto if your signup IP (e.g proxy/VPN/Tor) triggers fraud checks, or randomly if they decide they want to know who you are
LowEndSpirit - Locations: Rotterdam (NL), London (UK), Milan (IT), Phoenix/Kansas/Lenoir NC (US), Tokyo (JP), Falkenstein (DE), Sofia (BG), Sandefjord (NO), Reims (FR), Perth/Sydney (AU), Singapore. Company registered in ???. Now a directory site / forum for low cost hosting.
Pqhosting - Locations: Moldova (MD), Russia (RU), Latvia (LV), Netherlands (NL), Hong Kong (HK), Germany (DE), Ukraine (UA), United States (US), Hong Kong (HK), Canada (CA), Czechia (CZ), Slovakia (SK), Israel (IL), Turkey (TR), Poland (PL), Bulgaria (BG), Romania (RO). Company registered in Russia. Google Captchas. User reports they may suddenly require KYC to access your server or pay with crypto if your signup IP (e.g proxy/VPN/Tor) triggers fraud checks, or randomly if they decide they want to know who you are
LowEndSpirit - Locations: Rotterdam (NL), London (UK), Milan (IT), Phoenix/Kansas/Lenoir NC (US), Tokyo (JP), Falkenstein (DE), Sofia (BG), Sandefjord (NO), Reims (FR), Perth/Sydney (AU), Singapore. Company registered in ???. Now a directory site / forum for low cost hosting.
Hostiko - Locations: Kyiv (UA), Falkenstein (DE), Warsaw (PL). Company registered in Ukraine. Accepts BTC, XMR, many others via NOWPayments (no KYC and numerous altcoins). Anonymous sign-up/signup via Tor is allowed. They actively monitor their network for abuse and react accordingly.
Private WebHost - Locations: Vienna (AT), Helsinki (FI), Frankfurt (DE), Netherlands (NL), Moscow (RU), Stockholm (SE), Zurich (CH), Paris (FR), Los Angeles (US). Company registered in Switzerland. Privacy/anonymity-focused hoster. Only an email required at signup, Signup via VPNs, proxies, and Tor allowed, payments via NOWPayments, CoinPayments.net. Lightning Network (LN) payments via CoinPayments. Working on self/hosted payments. The Swiss dedicated servers are Large Storage and suitable for Bitcoin full nodes. All servers can be used for Tor nodes (exit nodes allowed if you block port 25). Netherlands VPS servers are Large Storage. No Google Captcha. Support via tickets or encrypted email. Dedicated servers in Switzerland, working on more locations. Use promo code BITCOINVPS for 10% off. Very responsive support.
Opera VPS - Locations: London (UK), Frankfurt (DE) , Chicago (US), Dallas (US), Los Angeles (US), Miami (US), New Jersey (US), Montreal (CA), Amsterdam (NL), Paris (FR), Tokyo (JP). Company registered in US (Washington state). Anonymous signup OK, Tor allowed, Lightning Network (LN) payments via Jeeb
Pqhosting - Locations: Moldova (MD), Russia (RU), Latvia (LV), Netherlands (NL), Hong Kong (HK), Germany (DE), Ukraine (UA), United States (US), Hong Kong (HK), Canada (CA), Czechia (CZ), Slovakia (SK), Israel (IL), Turkey (TR), Poland (PL), Bulgaria (BG), Romania (RO). Company registered in Russia. Google Captchas. User reports they may suddenly require KYC to access your server or pay with crypto if your signup IP (e.g proxy/VPN/Tor) triggers fraud checks, or randomly if they decide they want to know who you are
PrivateAlps - Locations: Switzerland (CH). Company registered in Panama. Networking provided by Ipconnect (Seychelles). Tor traffic and anonymous signup OK. No LN payment. 10% discount if you enter the affiliate 5DBKR when ordering
VSYS - Locations: Ukraine (UA), Netherlands (NL). Company registered in Kyiv, Ukraine. Anonymous signup and Tor traffic OK. States they use Bitcoin Core to process BTC payments directly, LTC and Doge via their billing software.
HostZealot - Locations: Amsterdam (NL), London (UK), Stockholm (SE), Warsaw (PL), Limassol (CY), Tallinn (EE), Ashburn (US), Chicago (US), Dallas (US), Seattle (US), Toronto (CA), Brussels (BE), Tel Aviv (IL), Hong Kong (HK), Dusseldorf (DE), Tbilisi (GE). Company registered in Bulgaria. Provider states they are Tor and anonymity friendly as long as you do not violate their ToS. All their VPS instances use SSDs, their Poland and Netherlands locations offer NVMe also. User reports they do not allow registration from Protonmail email addresses.
RackNerd - Locations: Los Angeles (US), Utah (US), Dallas (US), New York (US), New Jersey (US), Seattle (US), Montreal (CA), London (UK), Amsterdam (NL), Chicago (US), San Jose (US), Atlanta (US), Tampa (US), Ashburn (US), Strasbourg (FR), Frankfurt (DE), Singapore (SG). Company registered in United States. Accepts BTC, LTC, ETH, ZEC. No Lightning Network. User reports good service and responsive support. User reports they use Coinbase Commerce
BlueVPS - Locations: Amsterdam (NL), Limassol (CY), Gravelines (FR), Singapore (SG), Sofiya (BG), London (UK), Ashburn (US), Los Angeles (US), Atlanta (US), Frankfurt (DE), Palermo (IT), Tel Aviv (IL), Stockholm (SE), Toronto (CA), Tallinn (EE), Madrid (ES), Hong Kong (CN), Warsaw (PL), Sydney (AU), Fujairah (UAE). Company registered in Estonia. Payments via Coinpayments. Regarding anonymity they state “We require clients confirmation e-Mail or ID”. Provider has hardware in two different data centers at their Warsaw and London locations.
3v-hosting - Locations: Ukraine (UA). Company registered in Ukraine. Tor traffic allowed unless backbone provider objects. User data required at signup (not anonymous)
Zak Servers - Locations: Bulgaria (BG), Ukraine (UA), Netherlands (NL), Switzerland (CH), Romania (RO), Russia (RU), Malaysia (MY). Company registered in Singapore. Privacy-focused dedicated server provider, anonymous/Tor signup/Tor traffic OK. Payments processed by Blockonomics
Eldernode - Locations: Chicago (US), San Jose (US), New York (US), Denmark (DK), Netherlands (NL), Manchester (UK), France (FR), Germany (DE), Canada. Company registered in Lithuania .
Shock Hosting - Locations: Piscataway/New Jersey (US), Los Angeles (US), Chicago (US), Dallas (US), Jacksonville (US), Denver (US), Seattle (US), Maidenhead (UK), Amsterdam (NL), Sydney (AU), Tokyo (JP), Singapore (SG). Company registered in United States.
Cinfu - Locations: Germany (DE), Bulgaria (BG), France (FR), Netherlands (NL), US. Company registered in Seychelles. Anonymous signup discouraged (automated fraud checks). No signup over Tor (website currently blocks Tor users entirely). User reports their datacentres may de-prioritise Bitcoin related traffic (and/or other large data transfers) resulting in extremely long full node sync times (weeks, single kbps bandwidth) after an initial burst for about 15% of the BTC blockchain
Host-World - Locations: Frankfurt (DE), Amsterdam (NL), London (UK), Strasbourg (FR), Gravelines (FR), Limassol (CY), Bratislava (SK), Prague (CZ), Riga (LV), Warsaw (PL), Chisinau (MD), Kiev (UA), New Jersey (US), Toronto (CA), Beauharnois (CA), Sydney (AU), Hong Kong (HK), Tokyo (JP), Singapore (SG), Petach Tikva (IL), Turkey (TR). Company registered in Estonia. Uses Coinpayments.net. Anonymous signup OK (they only verify email)
LegionBox - Locations: US, Switzerland (CH), Germany (DE), Russia (RU). Company registered in Australia. Anonymous signup discouraged (automated fraud checks)
THC Servers - Locations: Romania (RO), Canada. Company registered in United States. Supports Lightning Network (LN)
ServerMath - Locations: Amsterdam (NL), Hong Kong (HK), Madrid (ES), Seoul (KR), Dallas (TX), Istanbul (TR), Manila (PH), Singapore (SG), Dubai (AE), Lagos (NG), Miami (US), Tokyo (JP), Frankfurt (DE), London (UK), Moscow (RU), Warsaw (PL). Company registered in ???. Accepts Bitcoin via BTCPayServer. Willing to consider payment via other cryptocurrencies on request. Does not require KYC or check identity. Happy to arrange custom server configurations (e.g GPUs, high bandwidth servers). Affiliated with RatioServer. Website does not work when visited from some IP addresses
FlokiNET - Locations: Romania (RO), Iceland (IS), Finland (FI), Netherlands (NL). Company registered in Iceland. Free speech-focused service, Tor friendly. Includes (potentially outdated) OpenBSD images which must be manually installed via VNC. Anonymous signup OK, only valid email address is required. Accepts Bitcoin and XMR via Coinpayments. Allows customizing dedicated servers, including with Large Storage suitable for full nodes. This website is currently hosted on Flokinet
Qhoster - Locations: UK, US, Canada (CA), Bulgaria (BG), Lithuania (LT), France (FR), Germany (DE), Netherlands (NL), Switzerland (CH). Company registered in ???. Google captcha
GlobalDataServer - Locations: Atlanta (US), Chicago (US), Dallas (US), Los Angeles (US), Miami (US), Montreal (CA), New York (US), Seattle (US), Vancouver (CA), Washington DC (US), Amsterdam (NL), Brussels (BE), Bucharest (RO), Copenhagen (DK), Dublin (IE), Frankfurt (DE), London (UK), Madrid (ES), Milan (IT), Moscow (RU), Oslo (NO), Paris (FR), Sofia (BG), Stockholm (SE), Vienna (AT), Vilnius (LT), Warsaw (PL), Zurich (CH), Bursa (TR), Hong Kong (HK), Singapore (SG), Tokyo (JP), Sydney (AU), Johannesburg (ZA). Company registered in Las Vegas (US). Dedicated servers in 100+ locations. Has high bandwidth 20GBps dedicated servers and can do custom configuration. Tor friendly. Contact them directly to arrange BTC payment. User reports they are likely connected to AllServerHost. Use code BITCOINVPS for a 10% discount on first order
NiceVPS - Locations: Netherlands (NL). Company registered in Dominica. Minimal registration data and Tor friendly. Bulletproof DDoS-protected hosting available. Also provides confidential domains. Will offer hosting in Switzerland (CH) soon.
BlazingFast - Locations: Netherlands (NL). Company registered in Netherlands. High performance servers
ThunderVM - Locations: Germany (DE), United States (US), Iceland (IS), Switzerland (CH), Netherlands (NL), France (FR), Italy (IT), United Kingdom (UK), Lithuania (LT), Poland (PL). Company registered in italy. Ok with hosting full nodes and Tor relays, but not Tor exit nodes, or (on VPS) mining cryptocurrency. Uses hCaptcha. Provider states that all their servers/hypervisors are installed and encrypted by them for user security. Uses BTCPayServer and self-hosted Monero (XMR) payments. Accepts Lightning Network (LN) payments via NowPayments
Cockbox - Locations: Romania (RO). Company registered in Seychelles. Servers with cocks. Tor and anonymity-friendly. Onion URL: http://dwtqmjzvn2c6z2x462mmbd34ugjjrodowtul4jfbkexjuttzaqzcjyad.onion/?r=3033
Ahost - Locations: Dubai (AE), Vienna (AT), Sydney (AU), Brussels (BE), Sofia (BG), Zurich (CH), Prague (CZ), Copenhagen (DK), Seville (ES), Thessaloniki (GR), Kwai Chung (HK), Zagreb (HR), Budapest (HU), Tel Aviv (IL), Hafnarfjordur (IS), Milan (IT), Tokyo (JP), Vilnius (LT), Riga (LV), Chisinau (MD), Skopje (MK), Oslo (NO), Warsaw (PL), Belgrade (RS), Bucharest (RO), Moscow (RU), Stockholm (SE), Ljubljana (SI). Company registered in Estonia. No anonymous signup. No Tor or spam allowed. Payments via Payeer. KVM virtualization, Gigabit speeds for every VPS. They do NOT want anonymous signups or Tor traffic. User reports they ask for KYC (scan of government ID) after payment. Google Captchas
Hostingby.Design - Locations: Germany (DE), Netherlands (NL). Company registered in Denmark. Reseller / crypto front-end for Hetzner, Leaseweb, NFOrce. Large Storage, may be suitable for running full nodes. Google Captchas
AtomicNetworks - Locations: Eygelshoven (NL), Chicago (US), Miami (US), Los Angeles (US). Company registered in Delware, United States. Crypto payments through Coinbase Wallets, samller altcoins via NowPayments. Tor traffic OK. Uses Google Captchas. Asks for personal information but you can write whatever you like.
AlexHost - Locations: Tallbert (SE), Moldova (MD), Sofia (BG), Netherlands (NL). Company registered in Moldova. Email hosting included with shared web hosting service. Operates through AS200019, with own datacenter, network and hardware in the Republic of Moldova. Domain registration via OpenSRS/Tucows. They welcome people using their VPS for VPN endpoints. No KYC unless the payment gateway (e.g Paypal) asks for it (so pay with crypto). Doesn’t verify the personal data you give them otherwise. Tor bridges and relays are fine, Tor exit nodes are not allowed. Bitcoin payments accepted via BTCPayServer. Monero and other cryptocurrencies also accepted. May use Google Captchas (via Hostbill). Dedicated servers can be customized so they have Large Storage for running full nodes. Provider states they support freedom of speech and privacy.
HostStage - Locations: France (FR), Canada (CA), US. Company registered in France. Uses Coingate. Also provides shared web hosting. Anonymous sign up OK as long as no fraud, Tor traffic OK provided it is not used in a way that causes trouble
Justhost - Locations: Russia (RU). Company registered in Russia. Selling VDS
IP-Connect - Locations: Ukraine (UA). Company registered in Ukraine. Runs their own datacenter. Tor-friendly. Minimal registration. Crypto payments accepted via payment gateway. Doesn’t require KYC, allows TOR/proxy. Criminal activity prohibited. All VPS are KVM-based, 100% SSD, recent Intel processors, redundant high quality uplinks, lowest latency possible, loads of bandwidth, TUN/TAP for VPN, hostCPU passthrough, random generators for fast entropy, noVNC, images of common Linux distributions for fully automated installation, bring your own .iso (also Windows etc. allowed). Now additionally accepts payments via Nowpayments.io, which supports hundreds of different cryptocurrencies. Use promocode “bitcoin-vps2022” for -10% discount
SeiMaxim - Locations: Almere (NL), Amsterdam (NL), Los Angeles (US). Company registered in Netherlands. Anonymous signup allowed. Bitcoin full nodes are allowed. Also offers GPU mining servers, domains, shared hosting, and HTTP/SOCKS proxies. Uses Coinbase payment gateway
ForexVPS - Locations: New York (US), London (UK), Manchester (UK), Zurich (CH), Amsterdam (NL), Frankfurt (DE), Singapore (SG), Tokyo (JP). Company registered in Hong Kong. Lightning Network (LN) payment support
Internoc24 - Locations: Czech Republic (CZ), Sweden (SE), UK, Finland (FI), Russia (RU). Company registered in US/CZ. Offers both OpenVZ and KVM. Advertises anonymous signup
VPSGOD - Locations: Germany (DE), US, France (FR), Netherlands (NL), United States (US). Company registered in US. Google captcha
Noez - Locations: Frankfurt (DE). Company registered in Germany. Large Storage, may be suitable for running Bitcoin full nodes
XetHost - Locations: Budapest (HU). Company registered in Hungary. DevOps-focused. Accepts many different cryptocurrencies via CoinGate. Asks for phone number and email address.
Dedimax - Locations: 120+ worldwide: France (FR), Netherlands (NL), United States (US), Canada (CA), Portugal (PT), Lithuania (LT), Moldova (MD), Spain (ES), Bulgaria (BG), Germany (DE), Austria (AT), and many many more…. Company registered in Belgium. User reports Tor signup doesn’t work
HostSailor - Locations: Romania (RO), Netherlands (NL). Company registered in UAE. Lightning network (LN) via Coingate. Google Captchas. User reports they log you out constantly if using Tor.
OrangeWebsite - Locations: Iceland (IS). Company registered in Iceland. Asks for very minimal user information, seems to take security seriously
VPSBit - Locations: Hong Kong (HK), Lithuania (LT). Company registered in Hong Kong & Lithuania.
Coin.Host / Coinshost - Locations: Zurich (CH). Company registered in Switzerland. Does not provide anonymous hosting, will ask for detailed information about what you are hosting on their servers. Will not refund any deposits made prior to this. We recommend clarifying your proposed usage with them before depositing money with them.
Hostkey - Locations: US, Netherlands (NL), Russia (RU). Company registered in Netherlands. User reports they do not allow registration from Protonmail email addresses
Crowncloud - Locations: Frankfurt (DE), Los Angeles (US). Company registered in Australia.
Hostwinds - Locations: US, Netherlands (NL). Company registered in US.
CryptoHO.ST - Locations: Romania (RO). Company registered in Romania (?). Supports Lightning Network (LN), Monero, and 300+ altcoins
EDIS Global - Locations: Vienna / Austria (AT), Graz / Austria (AT), Brussels / Belgium (BE), Sofia / Bulgaria (BG), Montreal / Canada (CA), Vina del Mar / Valparaiso / Chile (CL), Bogota / Colombia (CO), Prague / Czech Republic (CZ), Zagreb / Croatia (HR), Dubai (UAE), Paris / France (FR), Frankfurt / Germany (DE), Copenhagen / Denmark (DK), Thessaloniki / Greece (GR), Kwai Chung / Hong Kong (HK), Budapest / Hungary (HU), Hafnarfjördur / Iceland (IS), Ballasalla / Isle of Man (IM), Tel Aviv / Israel (IL), Milan / Italy (IT), Palermo / Sicily (IT), Tokyo / Japan (JP), Vilnius / Lithuania (LT), Riga / Latvia (LV), Chisinau / Moldova (MD), Skopje/North Macedonia (MK), Amsterdam / Netherlands (NL), Oslo / Norway (NO), Warsaw / Poland (PL), Bucharest / Romania (RO), Belgrade / Serbia (RS), Moscow / Russia (RU), St. Petersburg / Russia (RU), Belgrade / Serbia (RS), Singapore (SG), Stockholm / Sweden (SE), Ljubljana / Slovenia (SI), Seville / Spain (ES), Zurich / Switcherland(CH), Sydney / Australia (AU), New York (US), London City and London Docklands (UK). Company registered in Limassol, Cyprus. Now using Cryptomus and accepting Bitcoin (plus other standard coins, including DOGE) at all locations.Use coupon code BITCOINVPS for a 10% (lifetime) discount on your first order. The provider notes: Instant Provisioning! All VPS are KVM-based, 100% SSD, modern Intel processors, up to 2x 10Gbps per node, fully GEO-located IP ranges, redundant high quality uplinks, lowest latenc, peerings at local IX, loads of bandwidth, TUN/TAP for VPN, hostCPU passthrough, random-numbers generators for fast entropy, noVNC, 100+ ready to use Turnkey images, images of common Linux distributions for fully automated installation, bring your own .iso and boot it on EDIS KVM, post-install scripts for automated installation according to your recipes. Windows and Linux. Auto-Installers for Windows 2016/2019/2022 Server (trial). TOR traffic is fine but TOR exit notes are not allowed. EDIS does not require KYC, but a real name and a real-world address is required (they don’t come to check if you really live at the indicated address) and EDIS allows signup via TOR or Proxies, but they do not want criminal activity and will manually review all new signups for signs of fraud or criminal intent before provisioning the first service. User reports signups not allowed with cock.li email addresses and a phone number is required at signup.
SuperBitHost - Locations: Bulgaria (BG), Germany (DE), Netherlands (NL), Luxembourg (LU), Malaysia (MY) Russia (RU), Singapore (SG), Switzerland (CH). Company registered in ???. uses Google captchas
Aurologic (Fastpipe) - Locations: Combahton datacenter in Frankfurt, Germany (DE). Company registered in Germany. Large Storage / Block storage offered, may be suitable for running Bitcoin full nodes. Used to be Fastpipe.io, is now Aurologic. If they still take Bitcoin.
Sered - Locations: Madrid (ES), Barcelona (ES). Company registered in Spain. Website may block Tor users (Google captcha). Use coupon code VQSZANRO for a 2 month discount.
Javapipe (now Mochahost) - Locations: Chicago (US), Amsterdan (NL), Bucharest (RO). Company registered in ???.
Vultr - Locations: Atlanta (US), Chicago (US), Dallas (US), Los Angeles (US), Miami (US), New Jersey (US), Seattle (US), Silicon Valley (US), Toronto (CA), Amsterdam (NL), Frankfurt (DE), London (UK), Paris (FR), Tokyo (JP), Singapore (SG), Sydney (AU). Company registered in US. Reader reports strong anti-privacy policies: users must make credit card or PayPal payment before they are allowed to make Bitcoin deposits, and they use BitPay (which requires government ID/etc). Reader recommends using a Vultr reseller (e.g Bithost)
Serverhub - Locations: Chicago (US), Seattle (US), New York (US), Dallas (US), Phoneix (US), Frankfurt (DE). Company registered in US. Large Storage, may be suitable for running Bitcoin full nodes
DeinServerHost - Locations: Combahton datacenter in Frankfurt, Germany (DE). Company registered in Germany. Bitcoin & Lightning Network (LN) via Coingate, anonymous/pseudonymous signup over Tor allowed. Very flexible server configuration (set RAM/disk/# cores independently). Large Storage, may be suitable for running Bitcoin full nodes. Offers one-click DdoS protection via Path.net
Terrahost - Locations: Sandefjord (NO). Company registered in Norway. Runs their own datacenter. Good reputation in the OpenBSD community (but does not offer OpenBSD support natively, you must bring your own install image). Their website claims to use BitPay but it’s not true, they actually use Coingate/BTCPayServer. Sometimes asks for full KYC at signup (e.g if you signed up via Tor)
ClientVPS - Locations: Bahrain (BH), Ukraine (UA), Netherlands (NL), Panama (PA), Russia (RU), Singapore (SG), Hong Kong (HK), Iran (IR). Company registered in Russia or US, it’s unclear. “Bulletproof” hosting provider.
ServerRoom - Locations: New York (US), Bucharest (RO), San Francisco (US), Miami (US), Amsterdam (NL). Company registered in New York (US). Same management as Primcast. Self-hosted Bitcoin payment processing, no Lightning yet but is planned soon. Anonymous signup and Tor ok. Offers Bitcoin full nodes as dedicated servers, also GPU dedicated servers.
Primcast - Locations: New York (US), Bucharest (RO), San Francisco (US), Miami (US), Amsterdam (NL). Company registered in New York (US). Streaming-focused provider, advertises low latency routes. Same management as ServerRoom. Self-hosted Bitcoin payment processing, no Lightning yet but is planned soon. Anonymous signup and Tor ok. Offers Bitcoin full nodes as dedicated servers, also GPU dedicated servers.
Privex - Locations: Sweden (SE), Netherlands (NL), Germany (DE), Finland (FI), United States (US), Japan (JP), Canada (CA). Company registered in Belize. Owns their own hardware and network at their SE / NL regions. Resells Hetzner in DE / FI. Resells Dacentec+Reliablesite in US. Resells Vultr in JP/CA. Privacy focused, anonymous/pseudonymous sign up encouraged. No captchas/cloudflare/analytics. Payments processed by their own in-house solution. Allows hosting Tor exit nodes / public VPNs in SE/NL locations and Tor/I2P relays in all locations except JP/CA. Runs their own Tor nodes to support the network. Ordering is possible with JavaScript disabled. Supports Bring-Your-Own-IP and colocation in SE/NL. Very flexible and willing to consider special requests. Onion service: http://privex3guvvasyer6pxz2fqcgy56auvw5egkir6ykwpptferdcb5toad.onion/ and I2P service: http://privex.i2p/
AnyColo - Locations: Romania (RO). Company registered in Romania. Accepts BTC, XMR. Payments via own BTCPayServer instance. Anonymous signup allowed. According to the company, “our TOS is simple: no abuse and no complaints.”
RatioServer - Locations: Amsterdam (NL), Budapest (HU), Copenhagen (DK), Dallas (US), Dublin (IE), Frankfurt (DE), London (UK), Los Angeles (US), Madrid (ES), Miami (US), Montreal (CA), New York (US), Paris (FR), Prague (CZ), Rome (IT), Singapore (SG), Sofia (BG), Sydney (AU), Tokyo (JP), Zurich (CH) and more. Company registered in ???. Most locations have unmetered dedicated servers and custom-built server options available. Tor- and anonymity-friendly. Does not verify email address validity, but encourages people to sign up with a working email address. Uses their own in-house BTC/ETH payment processor
Aaroli - Locations: Amsterdam (NL), Atlanta (US), Frankfurt (DE), London (UK), Paris (FR), Singapore (SG), Sydney (AU), Tokyo (JP), Toronto (CA). Company registered in an undisclosed location. Large Storage offered in 5 locations, may be suitable for full nodes. Payment via BTCPayServer or manual payment (accepts BTC, ETH). Willing to do custom configurations or payment via alternate methods. Anonymous/pseudonymous signup OK, provided you provide a working email address.
DataClub - Locations: Meppel/Netherlands (NL), Stockholm (SE), Riga/Latvia (LV). Company registered in Belize/Cyprus/UK. Dedicated servers in Latvia. May require KYC
Hostiquette - Locations: Amsterdam (NL), Frankfurt (DE), Helsinki (FI), London (UK), Moscow (RU), Paris (FR), Zurich (CH). Company registered in ???. Tor and anonymity-friendly. Using BTCPay Server for Bitcoin payments. Can accept other cryptocurrencies if you contact them. Emai addresses are not verified but using a valid email is recommended for communications. Custom servers are available if you contact them.
DediStart - Locations: Bulgaria (BG). Company registered in Cyprus. Payments via Coinify. Sister company of VPSAG (for VPS). Blocks Tor users.
Host.ag - Locations: Bulgaria (BG). Company registered in Bulgaria. Blocks Tor users. Uses self-hosted payment gateway. Large Storage, probably suitable for full nodes. Lets you customise the server extensively before ordering. Offers lease-to-own where you own the server after a certain number of months, in exchange for a higher per-month rate.
Ukrainian Data Network (UDN) - Locations: Kyiv/Kiev (UA). Company registered in Ukraine. Anonymous signup OK, even email address is optional. Accepts BTC and Monero/XMR. Uses their own internal payment system, no 3rd party payment processor
Zergrush Hosting - Locations: Bucharest (RO). Company registered in Romania. Payments via uTrust, which supports Lightning Network (LN) payments. No Tor exits allowed. Do ask for personal information at signup.
IncogNET - Locations: Netherlands (NL), Idaho (US). Company registered in Wyoming, United States. Accepts Bitcoin via BTCPayServer (and other cryptocurrencies also). No personal information required to sign up, only an email address (which isn’t verified). Ordering via Tor/VPN is OK. Large Storage available on a case-by-case basis, contact them to arrange it. Uses Google Captchas (reCaptcha). Also does anonymous domain registration
HostSlick - Locations: Netherlands (NL). Company registered in Germany. Accepts Bitcoin via Coinify. Has internal KYC checks - your server can be suspended if you registered via Proxy/VPN. Google captchas. User reports you may be able to register via VPN if you open a support ticket to manually deposit BTC. We recommend testing with small amounts of money and low cost services first.
Webconn Technology - Locations: Netherlands (NL), United States (US), Italy (IT), Japan (JP), France (FR). Company registered in Pakistan. Offers GPU servers. Unlimited traffic. They don’t care what information you provide at signup. Payments via Coinbase or direct transfer to wallet. Google captchas. Linked to Seimaxim
Melbicom - Locations: Riga (LV), Amsterdam (NL), Warsaw (PL), Moscow (RU), Palermo (IT), Vilnius (LT), Madrid (ES), Sofia (BG), Lagos (NG), Singapore (SG), Fujairah (AE), Atlanta (US), Los Angeles (US). Company registered in Lithuania. Windows and Linux VPS. Also offers CDN services. No Tor traffic allowed. They don’t ask for much personal information but don’t want anonymous signup, they may request ID verification. No illegal activities allowed. Bitcoin Lightning network (LN) payments supported. No Google Captchas. Large Storage servers are available. They support BGP sessions, colocations, and cloud services also.
KernelHost - Locations: Frankfurt (DE). Company registered in Austria. Bitcoin payments via BTCPayServer. KVM based servers. Servers at Maincubes datacenter
MyNymBox - Locations: Frankfurt (DE), Nuremberg (DE), Helsinki (FI), Munich (DE), Portsmouth (UK), New York (US), Seattle (US), St. Louis (US), Singapore (Asia). Company registered in Seychelles. Resells services from Hetzner Cloud, Dedicated Servers and Contabo. Offers Shared Hosting on encrypted storage and anonym Domain Registrations. No email verification required to order. Tor- and anonymity-friendly. Accepts Bitcoin, Lightning and Monero payments via self hosted BTCPayServer. No Google Captchas or 3rd party stuff. Has Storage VPS (Large Storage) servers, suitable for full nodes, provider runs their BTCPayServer on one of them!
SnowCore - Locations: Amsterdam (NL), Salt Lake City (US). Company registered in ???. Uses a Mullvad-style token login system so they don’t collect any personal information at all. Payments via NOWpayments. Cloudflare captchas. Dedicated servers available with 1TB SSDs for 30 EUR one time payment in some locations, might be useful as Large Storage servers for full nodes. Tor is allowed and fully supported.
SafeCloud - Locations: Amsterdam (NL), Athens (GR), Barcelona (ES), Belgrade (RS), Brussels (BE), Bucharest (RO), Copenhagen (DK), Dublin (IE), Dusseldorf (DE), Florence (IT), Frankfurt (DE), Helsinki (FI), Kyiv (UA), Lisbon (PT), London (UK), Madrid (ES), Moscow (RU), Nicosia (CY), Oslo (NO), Paris (FR), Sofia (BG), Stockholm (SE), Warsaw (PL), Vienna (AT), Vilnius (LT), Zurich (CH), Ashburn (US), Atlanta (US), Chicago (US), Dallas (US), Kansas City (US), Los Angeles (US), Mexico City (MX), Miami (US), Montreal (CA), New York (US), Portland (US), Salt Lake City (US), San Juan(PR), Seattle (US), Toronto (CA), Vancouver (CA), Washington (US), Bogota (CO), Buenos Aires (AR), Guatemala City (GT), La Paz (BO), Lima (PE), Quito (EC), San Jose (CR), Santiago (CL), São Paulo (BR), Dubai (AE), Hong Kong (HK), Istanbul (TR), Kuala Lumpur (MY), Mumbai (IN), Singapore (SG), Taipei (TW), Tel Aviv (IL), Tokyo (JP), Fez (MA), Johannesburg (ZA), Lagos (NG), Sydney (AU). Company registered in Seattle (US). Tor traffic OK. Only valid email required at signup. Payments via Bitserver and manual payment processing. No Google Captchas. 100MBps-40Gbps dedicated bandwidth dedicated servers available. Use promo code BITCOINVPS for 10% discount on orders.
RedSwitches - Locations: Singapore (SG), Miami (US), Germany (DE), Switzerland (CH), Australia (AU), Mumbai (IN), Tokyo (JP), Netherlands (NL), Hong Kong (HK), San Francisco (US), Canada (CA), London (UK), Washington DC (US). Company registered in Singapore.
Private WebHost - Locations: Vienna (AT), Helsinki (FI), Frankfurt (DE), Netherlands (NL), Moscow (RU), Stockholm (SE), Zurich (CH), Paris (FR), Los Angeles (US). Company registered in Switzerland. Privacy/anonymity-focused hoster. Only an email required at signup, Signup via VPNs, proxies, and Tor allowed, payments via NOWPayments, CoinPayments.net. Lightning Network (LN) payments via CoinPayments. Working on self/hosted payments. The Swiss dedicated servers are Large Storage and suitable for Bitcoin full nodes. All servers can be used for Tor nodes (exit nodes allowed if you block port 25). Netherlands VPS servers are Large Storage. No Google Captcha. Support via tickets or encrypted email. Dedicated servers in Switzerland, working on more locations. Use promo code BITCOINVPS for 10% off. Very responsive support.
Opera VPS - Locations: London (UK), Frankfurt (DE) , Chicago (US), Dallas (US), Los Angeles (US), Miami (US), New Jersey (US), Montreal (CA), Amsterdam (NL), Paris (FR), Tokyo (JP). Company registered in US (Washington state). Anonymous signup OK, Tor allowed, Lightning Network (LN) payments via Jeeb
Pqhosting - Locations: Moldova (MD), Russia (RU), Latvia (LV), Netherlands (NL), Hong Kong (HK), Germany (DE), Ukraine (UA), United States (US), Hong Kong (HK), Canada (CA), Czechia (CZ), Slovakia (SK), Israel (IL), Turkey (TR), Poland (PL), Bulgaria (BG), Romania (RO). Company registered in Russia. Google Captchas. User reports they may suddenly require KYC to access your server or pay with crypto if your signup IP (e.g proxy/VPN/Tor) triggers fraud checks, or randomly if they decide they want to know who you are
HostZealot - Locations: Amsterdam (NL), London (UK), Stockholm (SE), Warsaw (PL), Limassol (CY), Tallinn (EE), Ashburn (US), Chicago (US), Dallas (US), Seattle (US), Toronto (CA), Brussels (BE), Tel Aviv (IL), Hong Kong (HK), Dusseldorf (DE), Tbilisi (GE). Company registered in Bulgaria. Provider states they are Tor and anonymity friendly as long as you do not violate their ToS. All their VPS instances use SSDs, their Poland and Netherlands locations offer NVMe also. User reports they do not allow registration from Protonmail email addresses.
RackNerd - Locations: Los Angeles (US), Utah (US), Dallas (US), New York (US), New Jersey (US), Seattle (US), Montreal (CA), London (UK), Amsterdam (NL), Chicago (US), San Jose (US), Atlanta (US), Tampa (US), Ashburn (US), Strasbourg (FR), Frankfurt (DE), Singapore (SG). Company registered in United States. Accepts BTC, LTC, ETH, ZEC. No Lightning Network. User reports good service and responsive support. User reports they use Coinbase Commerce
BlueVPS - Locations: Amsterdam (NL), Limassol (CY), Gravelines (FR), Singapore (SG), Sofiya (BG), London (UK), Ashburn (US), Los Angeles (US), Atlanta (US), Frankfurt (DE), Palermo (IT), Tel Aviv (IL), Stockholm (SE), Toronto (CA), Tallinn (EE), Madrid (ES), Hong Kong (CN), Warsaw (PL), Sydney (AU), Fujairah (UAE). Company registered in Estonia. Payments via Coinpayments. Regarding anonymity they state “We require clients confirmation e-Mail or ID”. Provider has hardware in two different data centers at their Warsaw and London locations.
Eldernode - Locations: Chicago (US), San Jose (US), New York (US), Denmark (DK), Netherlands (NL), Manchester (UK), France (FR), Germany (DE), Canada. Company registered in Lithuania .
Shock Hosting - Locations: Piscataway/New Jersey (US), Los Angeles (US), Chicago (US), Dallas (US), Jacksonville (US), Denver (US), Seattle (US), Maidenhead (UK), Amsterdam (NL), Sydney (AU), Tokyo (JP), Singapore (SG). Company registered in United States.
Cinfu - Locations: Germany (DE), Bulgaria (BG), France (FR), Netherlands (NL), US. Company registered in Seychelles. Anonymous signup discouraged (automated fraud checks). No signup over Tor (website currently blocks Tor users entirely). User reports their datacentres may de-prioritise Bitcoin related traffic (and/or other large data transfers) resulting in extremely long full node sync times (weeks, single kbps bandwidth) after an initial burst for about 15% of the BTC blockchain
Host-World - Locations: Frankfurt (DE), Amsterdam (NL), London (UK), Strasbourg (FR), Gravelines (FR), Limassol (CY), Bratislava (SK), Prague (CZ), Riga (LV), Warsaw (PL), Chisinau (MD), Kiev (UA), New Jersey (US), Toronto (CA), Beauharnois (CA), Sydney (AU), Hong Kong (HK), Tokyo (JP), Singapore (SG), Petach Tikva (IL), Turkey (TR). Company registered in Estonia. Uses Coinpayments.net. Anonymous signup OK (they only verify email)
LegionBox - Locations: US, Switzerland (CH), Germany (DE), Russia (RU). Company registered in Australia. Anonymous signup discouraged (automated fraud checks)
THC Servers - Locations: Romania (RO), Canada. Company registered in United States. Supports Lightning Network (LN)
ServerMath - Locations: Amsterdam (NL), Hong Kong (HK), Madrid (ES), Seoul (KR), Dallas (TX), Istanbul (TR), Manila (PH), Singapore (SG), Dubai (AE), Lagos (NG), Miami (US), Tokyo (JP), Frankfurt (DE), London (UK), Moscow (RU), Warsaw (PL). Company registered in ???. Accepts Bitcoin via BTCPayServer. Willing to consider payment via other cryptocurrencies on request. Does not require KYC or check identity. Happy to arrange custom server configurations (e.g GPUs, high bandwidth servers). Affiliated with RatioServer. Website does not work when visited from some IP addresses
Qhoster - Locations: UK, US, Canada (CA), Bulgaria (BG), Lithuania (LT), France (FR), Germany (DE), Netherlands (NL), Switzerland (CH). Company registered in ???. Google captcha
GlobalDataServer - Locations: Atlanta (US), Chicago (US), Dallas (US), Los Angeles (US), Miami (US), Montreal (CA), New York (US), Seattle (US), Vancouver (CA), Washington DC (US), Amsterdam (NL), Brussels (BE), Bucharest (RO), Copenhagen (DK), Dublin (IE), Frankfurt (DE), London (UK), Madrid (ES), Milan (IT), Moscow (RU), Oslo (NO), Paris (FR), Sofia (BG), Stockholm (SE), Vienna (AT), Vilnius (LT), Warsaw (PL), Zurich (CH), Bursa (TR), Hong Kong (HK), Singapore (SG), Tokyo (JP), Sydney (AU), Johannesburg (ZA). Company registered in Las Vegas (US). Dedicated servers in 100+ locations. Has high bandwidth 20GBps dedicated servers and can do custom configuration. Tor friendly. Contact them directly to arrange BTC payment. User reports they are likely connected to AllServerHost. Use code BITCOINVPS for a 10% discount on first order
ThunderVM - Locations: Germany (DE), United States (US), Iceland (IS), Switzerland (CH), Netherlands (NL), France (FR), Italy (IT), United Kingdom (UK), Lithuania (LT), Poland (PL). Company registered in italy. Ok with hosting full nodes and Tor relays, but not Tor exit nodes, or (on VPS) mining cryptocurrency. Uses hCaptcha. Provider states that all their servers/hypervisors are installed and encrypted by them for user security. Uses BTCPayServer and self-hosted Monero (XMR) payments. Accepts Lightning Network (LN) payments via NowPayments
AtomicNetworks - Locations: Eygelshoven (NL), Chicago (US), Miami (US), Los Angeles (US). Company registered in Delware, United States. Crypto payments through Coinbase Wallets, samller altcoins via NowPayments. Tor traffic OK. Uses Google Captchas. Asks for personal information but you can write whatever you like.
WindowsVPSHost - Locations: Buffalo (US) . Company registered in Singapore .
Rad Web Hosting - Locations: Dallas TX (US). Company registered in United States. Datacenter located in a former Federal Reserve Bank building, highly secure
HostStage - Locations: France (FR), Canada (CA), US. Company registered in France. Uses Coingate. Also provides shared web hosting. Anonymous sign up OK as long as no fraud, Tor traffic OK provided it is not used in a way that causes trouble
SeiMaxim - Locations: Almere (NL), Amsterdam (NL), Los Angeles (US). Company registered in Netherlands. Anonymous signup allowed. Bitcoin full nodes are allowed. Also offers GPU mining servers, domains, shared hosting, and HTTP/SOCKS proxies. Uses Coinbase payment gateway
ForexVPS - Locations: New York (US), London (UK), Manchester (UK), Zurich (CH), Amsterdam (NL), Frankfurt (DE), Singapore (SG), Tokyo (JP). Company registered in Hong Kong. Lightning Network (LN) payment support
IndoVirtue - Locations: Singapore (SG), US. Company registered in Bali, Indonesia (?). No VPN/proxy during signup allowed
VPSGOD - Locations: Germany (DE), US, France (FR), Netherlands (NL), United States (US). Company registered in US. Google captcha
Dedimax - Locations: 120+ worldwide: France (FR), Netherlands (NL), United States (US), Canada (CA), Portugal (PT), Lithuania (LT), Moldova (MD), Spain (ES), Bulgaria (BG), Germany (DE), Austria (AT), and many many more…. Company registered in Belgium. User reports Tor signup doesn’t work
Namecheap - Locations: US. Company registered in US.
Hostkey - Locations: US, Netherlands (NL), Russia (RU). Company registered in Netherlands. User reports they do not allow registration from Protonmail email addresses
Crowncloud - Locations: Frankfurt (DE), Los Angeles (US). Company registered in Australia.
Hostwinds - Locations: US, Netherlands (NL). Company registered in US.
Mightweb - Locations: US. Company registered in US.
MeanServers - Locations: US. Company registered in US.
EDIS Global - Locations: Vienna / Austria (AT), Graz / Austria (AT), Brussels / Belgium (BE), Sofia / Bulgaria (BG), Montreal / Canada (CA), Vina del Mar / Valparaiso / Chile (CL), Bogota / Colombia (CO), Prague / Czech Republic (CZ), Zagreb / Croatia (HR), Dubai (UAE), Paris / France (FR), Frankfurt / Germany (DE), Copenhagen / Denmark (DK), Thessaloniki / Greece (GR), Kwai Chung / Hong Kong (HK), Budapest / Hungary (HU), Hafnarfjördur / Iceland (IS), Ballasalla / Isle of Man (IM), Tel Aviv / Israel (IL), Milan / Italy (IT), Palermo / Sicily (IT), Tokyo / Japan (JP), Vilnius / Lithuania (LT), Riga / Latvia (LV), Chisinau / Moldova (MD), Skopje/North Macedonia (MK), Amsterdam / Netherlands (NL), Oslo / Norway (NO), Warsaw / Poland (PL), Bucharest / Romania (RO), Belgrade / Serbia (RS), Moscow / Russia (RU), St. Petersburg / Russia (RU), Belgrade / Serbia (RS), Singapore (SG), Stockholm / Sweden (SE), Ljubljana / Slovenia (SI), Seville / Spain (ES), Zurich / Switcherland(CH), Sydney / Australia (AU), New York (US), London City and London Docklands (UK). Company registered in Limassol, Cyprus. Now using Cryptomus and accepting Bitcoin (plus other standard coins, including DOGE) at all locations.Use coupon code BITCOINVPS for a 10% (lifetime) discount on your first order. The provider notes: Instant Provisioning! All VPS are KVM-based, 100% SSD, modern Intel processors, up to 2x 10Gbps per node, fully GEO-located IP ranges, redundant high quality uplinks, lowest latenc, peerings at local IX, loads of bandwidth, TUN/TAP for VPN, hostCPU passthrough, random-numbers generators for fast entropy, noVNC, 100+ ready to use Turnkey images, images of common Linux distributions for fully automated installation, bring your own .iso and boot it on EDIS KVM, post-install scripts for automated installation according to your recipes. Windows and Linux. Auto-Installers for Windows 2016/2019/2022 Server (trial). TOR traffic is fine but TOR exit notes are not allowed. EDIS does not require KYC, but a real name and a real-world address is required (they don’t come to check if you really live at the indicated address) and EDIS allows signup via TOR or Proxies, but they do not want criminal activity and will manually review all new signups for signs of fraud or criminal intent before provisioning the first service. User reports signups not allowed with cock.li email addresses and a phone number is required at signup.
Javapipe (now Mochahost) - Locations: Chicago (US), Amsterdan (NL), Bucharest (RO). Company registered in ???.
Vultr - Locations: Atlanta (US), Chicago (US), Dallas (US), Los Angeles (US), Miami (US), New Jersey (US), Seattle (US), Silicon Valley (US), Toronto (CA), Amsterdam (NL), Frankfurt (DE), London (UK), Paris (FR), Tokyo (JP), Singapore (SG), Sydney (AU). Company registered in US. Reader reports strong anti-privacy policies: users must make credit card or PayPal payment before they are allowed to make Bitcoin deposits, and they use BitPay (which requires government ID/etc). Reader recommends using a Vultr reseller (e.g Bithost)
letbox - Locations: Los Angeles (US), Dallas (US). Company registered in Seattle (US). Large Storage, may be suitable for running Bitcoin full nodes
Serverhub - Locations: Chicago (US), Seattle (US), New York (US), Dallas (US), Phoneix (US), Frankfurt (DE). Company registered in US. Large Storage, may be suitable for running Bitcoin full nodes
ServerRoom - Locations: New York (US), Bucharest (RO), San Francisco (US), Miami (US), Amsterdam (NL). Company registered in New York (US). Same management as Primcast. Self-hosted Bitcoin payment processing, no Lightning yet but is planned soon. Anonymous signup and Tor ok. Offers Bitcoin full nodes as dedicated servers, also GPU dedicated servers.
Primcast - Locations: New York (US), Bucharest (RO), San Francisco (US), Miami (US), Amsterdam (NL). Company registered in New York (US). Streaming-focused provider, advertises low latency routes. Same management as ServerRoom. Self-hosted Bitcoin payment processing, no Lightning yet but is planned soon. Anonymous signup and Tor ok. Offers Bitcoin full nodes as dedicated servers, also GPU dedicated servers.
Privex - Locations: Sweden (SE), Netherlands (NL), Germany (DE), Finland (FI), United States (US), Japan (JP), Canada (CA). Company registered in Belize. Owns their own hardware and network at their SE / NL regions. Resells Hetzner in DE / FI. Resells Dacentec+Reliablesite in US. Resells Vultr in JP/CA. Privacy focused, anonymous/pseudonymous sign up encouraged. No captchas/cloudflare/analytics. Payments processed by their own in-house solution. Allows hosting Tor exit nodes / public VPNs in SE/NL locations and Tor/I2P relays in all locations except JP/CA. Runs their own Tor nodes to support the network. Ordering is possible with JavaScript disabled. Supports Bring-Your-Own-IP and colocation in SE/NL. Very flexible and willing to consider special requests. Onion service: http://privex3guvvasyer6pxz2fqcgy56auvw5egkir6ykwpptferdcb5toad.onion/ and I2P service: http://privex.i2p/
RatioServer - Locations: Amsterdam (NL), Budapest (HU), Copenhagen (DK), Dallas (US), Dublin (IE), Frankfurt (DE), London (UK), Los Angeles (US), Madrid (ES), Miami (US), Montreal (CA), New York (US), Paris (FR), Prague (CZ), Rome (IT), Singapore (SG), Sofia (BG), Sydney (AU), Tokyo (JP), Zurich (CH) and more. Company registered in ???. Most locations have unmetered dedicated servers and custom-built server options available. Tor- and anonymity-friendly. Does not verify email address validity, but encourages people to sign up with a working email address. Uses their own in-house BTC/ETH payment processor
Aaroli - Locations: Amsterdam (NL), Atlanta (US), Frankfurt (DE), London (UK), Paris (FR), Singapore (SG), Sydney (AU), Tokyo (JP), Toronto (CA). Company registered in an undisclosed location. Large Storage offered in 5 locations, may be suitable for full nodes. Payment via BTCPayServer or manual payment (accepts BTC, ETH). Willing to do custom configurations or payment via alternate methods. Anonymous/pseudonymous signup OK, provided you provide a working email address.
MadGenius - Locations: Minneapolis (US), Chicago (US), Ashburn (US). Company registered in Minnesota, US. Uses BitPay, but user reports that if you email their sales department they will give you a non-BitPay BTC address. User reports they do not require/verify personal info except for email address.
BreezeHost - Locations: Dallas TX (US), Charlotte NC (US). Company registered in United States. Accepts Bitcoin (and other cryptocurrencies) using Plisio, Lightning payments currently not supported. Personal information supplied at signup does not need to be accurate. Tor traffic is allowed.
VPS-mart / DatabaseMart - Locations: Dallas (US). Company registered in Dallas (US).
TechRich - Locations: Japan (JP), Korea (KR), Malaysia (MY), China (CN), Hong Kong (HK), United States (US), Thailand (TH). Company registered in Hong Kong. They ask for user information but don’t verify/require KYC if you pay by cryptocurrency. Tor traffic OK as long as you don’t get abuse/complaints. They can arrange dedicated fiber lines for each client at the HK location. Uses Coinpayments, Bitpay, and Payeer for payments, can arrange other payment methods as long as you are not sending from an OFAC-listed address. They accept Lightning Network (LN) payments
IncogNET - Locations: Netherlands (NL), Idaho (US). Company registered in Wyoming, United States. Accepts Bitcoin via BTCPayServer (and other cryptocurrencies also). No personal information required to sign up, only an email address (which isn’t verified). Ordering via Tor/VPN is OK. Large Storage available on a case-by-case basis, contact them to arrange it. Uses Google Captchas (reCaptcha). Also does anonymous domain registration
Webconn Technology - Locations: Netherlands (NL), United States (US), Italy (IT), Japan (JP), France (FR). Company registered in Pakistan. Offers GPU servers. Unlimited traffic. They don’t care what information you provide at signup. Payments via Coinbase or direct transfer to wallet. Google captchas. Linked to Seimaxim
Domains4Bitcoins - Locations: United States (US), India (IN). Company registered in United States. Payments via BitPay – KYC and BitPay account required to purchase
GoSSDHosting - Locations: United States (US), India (IN). Company registered in India.
CoinsHosting - Locations: New York (US). Company registered in Delaware, US. Tor traffic allowed only on dedicated servers. Doesn’t check the information you provide at signup (only asks for name and email). May require for KYC for suspicious or abusive customers but provider states they do so very rarely. Payments via CoinPayments and Coinify. Uses Google Captchas.
MyNymBox - Locations: Frankfurt (DE), Nuremberg (DE), Helsinki (FI), Munich (DE), Portsmouth (UK), New York (US), Seattle (US), St. Louis (US), Singapore (Asia). Company registered in Seychelles. Resells services from Hetzner Cloud, Dedicated Servers and Contabo. Offers Shared Hosting on encrypted storage and anonym Domain Registrations. No email verification required to order. Tor- and anonymity-friendly. Accepts Bitcoin, Lightning and Monero payments via self hosted BTCPayServer. No Google Captchas or 3rd party stuff. Has Storage VPS (Large Storage) servers, suitable for full nodes, provider runs their BTCPayServer on one of them!
SnowCore - Locations: Amsterdam (NL), Salt Lake City (US). Company registered in ???. Uses a Mullvad-style token login system so they don’t collect any personal information at all. Payments via NOWpayments. Cloudflare captchas. Dedicated servers available with 1TB SSDs for 30 EUR one time payment in some locations, might be useful as Large Storage servers for full nodes. Tor is allowed and fully supported.
SafeCloud - Locations: Amsterdam (NL), Athens (GR), Barcelona (ES), Belgrade (RS), Brussels (BE), Bucharest (RO), Copenhagen (DK), Dublin (IE), Dusseldorf (DE), Florence (IT), Frankfurt (DE), Helsinki (FI), Kyiv (UA), Lisbon (PT), London (UK), Madrid (ES), Moscow (RU), Nicosia (CY), Oslo (NO), Paris (FR), Sofia (BG), Stockholm (SE), Warsaw (PL), Vienna (AT), Vilnius (LT), Zurich (CH), Ashburn (US), Atlanta (US), Chicago (US), Dallas (US), Kansas City (US), Los Angeles (US), Mexico City (MX), Miami (US), Montreal (CA), New York (US), Portland (US), Salt Lake City (US), San Juan(PR), Seattle (US), Toronto (CA), Vancouver (CA), Washington (US), Bogota (CO), Buenos Aires (AR), Guatemala City (GT), La Paz (BO), Lima (PE), Quito (EC), San Jose (CR), Santiago (CL), São Paulo (BR), Dubai (AE), Hong Kong (HK), Istanbul (TR), Kuala Lumpur (MY), Mumbai (IN), Singapore (SG), Taipei (TW), Tel Aviv (IL), Tokyo (JP), Fez (MA), Johannesburg (ZA), Lagos (NG), Sydney (AU). Company registered in Seattle (US). Tor traffic OK. Only valid email required at signup. Payments via Bitserver and manual payment processing. No Google Captchas. 100MBps-40Gbps dedicated bandwidth dedicated servers available. Use promo code BITCOINVPS for 10% discount on orders.
RedSwitches - Locations: Singapore (SG), Miami (US), Germany (DE), Switzerland (CH), Australia (AU), Mumbai (IN), Tokyo (JP), Netherlands (NL), Hong Kong (HK), San Francisco (US), Canada (CA), London (UK), Washington DC (US). Company registered in Singapore.
ReliableSite - Locations: New York City metro (US), Miami (US), Los Angeles (US). Company registered in Miami, United States. Tor traffic not allowed. No anonymous signup. Bitcoin payments via BitPay (KYC required). No Google captchas (uses Turnstile). Large Storage servers available.
Opera VPS - Locations: London (UK), Frankfurt (DE) , Chicago (US), Dallas (US), Los Angeles (US), Miami (US), New Jersey (US), Montreal (CA), Amsterdam (NL), Paris (FR), Tokyo (JP). Company registered in US (Washington state). Anonymous signup OK, Tor allowed, Lightning Network (LN) payments via Jeeb
Pqhosting - Locations: Moldova (MD), Russia (RU), Latvia (LV), Netherlands (NL), Hong Kong (HK), Germany (DE), Ukraine (UA), United States (US), Hong Kong (HK), Canada (CA), Czechia (CZ), Slovakia (SK), Israel (IL), Turkey (TR), Poland (PL), Bulgaria (BG), Romania (RO). Company registered in Russia. Google Captchas. User reports they may suddenly require KYC to access your server or pay with crypto if your signup IP (e.g proxy/VPN/Tor) triggers fraud checks, or randomly if they decide they want to know who you are
HostZealot - Locations: Amsterdam (NL), London (UK), Stockholm (SE), Warsaw (PL), Limassol (CY), Tallinn (EE), Ashburn (US), Chicago (US), Dallas (US), Seattle (US), Toronto (CA), Brussels (BE), Tel Aviv (IL), Hong Kong (HK), Dusseldorf (DE), Tbilisi (GE). Company registered in Bulgaria. Provider states they are Tor and anonymity friendly as long as you do not violate their ToS. All their VPS instances use SSDs, their Poland and Netherlands locations offer NVMe also. User reports they do not allow registration from Protonmail email addresses.
RackNerd - Locations: Los Angeles (US), Utah (US), Dallas (US), New York (US), New Jersey (US), Seattle (US), Montreal (CA), London (UK), Amsterdam (NL), Chicago (US), San Jose (US), Atlanta (US), Tampa (US), Ashburn (US), Strasbourg (FR), Frankfurt (DE), Singapore (SG). Company registered in United States. Accepts BTC, LTC, ETH, ZEC. No Lightning Network. User reports good service and responsive support. User reports they use Coinbase Commerce
BlueVPS - Locations: Amsterdam (NL), Limassol (CY), Gravelines (FR), Singapore (SG), Sofiya (BG), London (UK), Ashburn (US), Los Angeles (US), Atlanta (US), Frankfurt (DE), Palermo (IT), Tel Aviv (IL), Stockholm (SE), Toronto (CA), Tallinn (EE), Madrid (ES), Hong Kong (CN), Warsaw (PL), Sydney (AU), Fujairah (UAE). Company registered in Estonia. Payments via Coinpayments. Regarding anonymity they state “We require clients confirmation e-Mail or ID”. Provider has hardware in two different data centers at their Warsaw and London locations.
Zak Servers - Locations: Bulgaria (BG), Ukraine (UA), Netherlands (NL), Switzerland (CH), Romania (RO), Russia (RU), Malaysia (MY). Company registered in Singapore. Privacy-focused dedicated server provider, anonymous/Tor signup/Tor traffic OK. Payments processed by Blockonomics
Shock Hosting - Locations: Piscataway/New Jersey (US), Los Angeles (US), Chicago (US), Dallas (US), Jacksonville (US), Denver (US), Seattle (US), Maidenhead (UK), Amsterdam (NL), Sydney (AU), Tokyo (JP), Singapore (SG). Company registered in United States.
Host-World - Locations: Frankfurt (DE), Amsterdam (NL), London (UK), Strasbourg (FR), Gravelines (FR), Limassol (CY), Bratislava (SK), Prague (CZ), Riga (LV), Warsaw (PL), Chisinau (MD), Kiev (UA), New Jersey (US), Toronto (CA), Beauharnois (CA), Sydney (AU), Hong Kong (HK), Tokyo (JP), Singapore (SG), Petach Tikva (IL), Turkey (TR). Company registered in Estonia. Uses Coinpayments.net. Anonymous signup OK (they only verify email)
ServerMath - Locations: Amsterdam (NL), Hong Kong (HK), Madrid (ES), Seoul (KR), Dallas (TX), Istanbul (TR), Manila (PH), Singapore (SG), Dubai (AE), Lagos (NG), Miami (US), Tokyo (JP), Frankfurt (DE), London (UK), Moscow (RU), Warsaw (PL). Company registered in ???. Accepts Bitcoin via BTCPayServer. Willing to consider payment via other cryptocurrencies on request. Does not require KYC or check identity. Happy to arrange custom server configurations (e.g GPUs, high bandwidth servers). Affiliated with RatioServer. Website does not work when visited from some IP addresses
GlobalDataServer - Locations: Atlanta (US), Chicago (US), Dallas (US), Los Angeles (US), Miami (US), Montreal (CA), New York (US), Seattle (US), Vancouver (CA), Washington DC (US), Amsterdam (NL), Brussels (BE), Bucharest (RO), Copenhagen (DK), Dublin (IE), Frankfurt (DE), London (UK), Madrid (ES), Milan (IT), Moscow (RU), Oslo (NO), Paris (FR), Sofia (BG), Stockholm (SE), Vienna (AT), Vilnius (LT), Warsaw (PL), Zurich (CH), Bursa (TR), Hong Kong (HK), Singapore (SG), Tokyo (JP), Sydney (AU), Johannesburg (ZA). Company registered in Las Vegas (US). Dedicated servers in 100+ locations. Has high bandwidth 20GBps dedicated servers and can do custom configuration. Tor friendly. Contact them directly to arrange BTC payment. User reports they are likely connected to AllServerHost. Use code BITCOINVPS for a 10% discount on first order
Mondoze - Locations: Cyberjaya Malaysia (MY). Company registered in Malaysia. Payments via Plisio. Dedicated server available if you contact them directly. Tor traffic OK as long as you conform to their TOS. Anonymous sign up OK. Large storage maybe available if you contact support.
Ahost - Locations: Dubai (AE), Vienna (AT), Sydney (AU), Brussels (BE), Sofia (BG), Zurich (CH), Prague (CZ), Copenhagen (DK), Seville (ES), Thessaloniki (GR), Kwai Chung (HK), Zagreb (HR), Budapest (HU), Tel Aviv (IL), Hafnarfjordur (IS), Milan (IT), Tokyo (JP), Vilnius (LT), Riga (LV), Chisinau (MD), Skopje (MK), Oslo (NO), Warsaw (PL), Belgrade (RS), Bucharest (RO), Moscow (RU), Stockholm (SE), Ljubljana (SI). Company registered in Estonia. No anonymous signup. No Tor or spam allowed. Payments via Payeer. KVM virtualization, Gigabit speeds for every VPS. They do NOT want anonymous signups or Tor traffic. User reports they ask for KYC (scan of government ID) after payment. Google Captchas
ForexVPS - Locations: New York (US), London (UK), Manchester (UK), Zurich (CH), Amsterdam (NL), Frankfurt (DE), Singapore (SG), Tokyo (JP). Company registered in Hong Kong. Lightning Network (LN) payment support
IndoVirtue - Locations: Singapore (SG), US. Company registered in Bali, Indonesia (?). No VPN/proxy during signup allowed
VPSBit - Locations: Hong Kong (HK), Lithuania (LT). Company registered in Hong Kong & Lithuania.
JPStream - Locations: Japan (JP). Company registered in Japan.
Server Field - Locations: Taiwan (TW). Company registered in Taiwan.
Hostkey - Locations: US, Netherlands (NL), Russia (RU). Company registered in Netherlands. User reports they do not allow registration from Protonmail email addresses
InternetBrothers - Locations: Korea (KR). Company registered in Korea. BTC accepted only on orders over $100, dedicated servers are not pre-configured. Non-HTTPS site
Kdatacenter - Locations: Korea (KR). Company registered in Korea.
VpsHosting - Locations: Hong Kong (HK). Company registered in Hong Kong (HK).
EDIS Global - Locations: Vienna / Austria (AT), Graz / Austria (AT), Brussels / Belgium (BE), Sofia / Bulgaria (BG), Montreal / Canada (CA), Vina del Mar / Valparaiso / Chile (CL), Bogota / Colombia (CO), Prague / Czech Republic (CZ), Zagreb / Croatia (HR), Dubai (UAE), Paris / France (FR), Frankfurt / Germany (DE), Copenhagen / Denmark (DK), Thessaloniki / Greece (GR), Kwai Chung / Hong Kong (HK), Budapest / Hungary (HU), Hafnarfjördur / Iceland (IS), Ballasalla / Isle of Man (IM), Tel Aviv / Israel (IL), Milan / Italy (IT), Palermo / Sicily (IT), Tokyo / Japan (JP), Vilnius / Lithuania (LT), Riga / Latvia (LV), Chisinau / Moldova (MD), Skopje/North Macedonia (MK), Amsterdam / Netherlands (NL), Oslo / Norway (NO), Warsaw / Poland (PL), Bucharest / Romania (RO), Belgrade / Serbia (RS), Moscow / Russia (RU), St. Petersburg / Russia (RU), Belgrade / Serbia (RS), Singapore (SG), Stockholm / Sweden (SE), Ljubljana / Slovenia (SI), Seville / Spain (ES), Zurich / Switcherland(CH), Sydney / Australia (AU), New York (US), London City and London Docklands (UK). Company registered in Limassol, Cyprus. Now using Cryptomus and accepting Bitcoin (plus other standard coins, including DOGE) at all locations.Use coupon code BITCOINVPS for a 10% (lifetime) discount on your first order. The provider notes: Instant Provisioning! All VPS are KVM-based, 100% SSD, modern Intel processors, up to 2x 10Gbps per node, fully GEO-located IP ranges, redundant high quality uplinks, lowest latenc, peerings at local IX, loads of bandwidth, TUN/TAP for VPN, hostCPU passthrough, random-numbers generators for fast entropy, noVNC, 100+ ready to use Turnkey images, images of common Linux distributions for fully automated installation, bring your own .iso and boot it on EDIS KVM, post-install scripts for automated installation according to your recipes. Windows and Linux. Auto-Installers for Windows 2016/2019/2022 Server (trial). TOR traffic is fine but TOR exit notes are not allowed. EDIS does not require KYC, but a real name and a real-world address is required (they don’t come to check if you really live at the indicated address) and EDIS allows signup via TOR or Proxies, but they do not want criminal activity and will manually review all new signups for signs of fraud or criminal intent before provisioning the first service. User reports signups not allowed with cock.li email addresses and a phone number is required at signup.
SuperBitHost - Locations: Bulgaria (BG), Germany (DE), Netherlands (NL), Luxembourg (LU), Malaysia (MY) Russia (RU), Singapore (SG), Switzerland (CH). Company registered in ???. uses Google captchas
Vultr - Locations: Atlanta (US), Chicago (US), Dallas (US), Los Angeles (US), Miami (US), New Jersey (US), Seattle (US), Silicon Valley (US), Toronto (CA), Amsterdam (NL), Frankfurt (DE), London (UK), Paris (FR), Tokyo (JP), Singapore (SG), Sydney (AU). Company registered in US. Reader reports strong anti-privacy policies: users must make credit card or PayPal payment before they are allowed to make Bitcoin deposits, and they use BitPay (which requires government ID/etc). Reader recommends using a Vultr reseller (e.g Bithost)
ClientVPS - Locations: Bahrain (BH), Ukraine (UA), Netherlands (NL), Panama (PA), Russia (RU), Singapore (SG), Hong Kong (HK), Iran (IR). Company registered in Russia or US, it’s unclear. “Bulletproof” hosting provider.
Privex - Locations: Sweden (SE), Netherlands (NL), Germany (DE), Finland (FI), United States (US), Japan (JP), Canada (CA). Company registered in Belize. Owns their own hardware and network at their SE / NL regions. Resells Hetzner in DE / FI. Resells Dacentec+Reliablesite in US. Resells Vultr in JP/CA. Privacy focused, anonymous/pseudonymous sign up encouraged. No captchas/cloudflare/analytics. Payments processed by their own in-house solution. Allows hosting Tor exit nodes / public VPNs in SE/NL locations and Tor/I2P relays in all locations except JP/CA. Runs their own Tor nodes to support the network. Ordering is possible with JavaScript disabled. Supports Bring-Your-Own-IP and colocation in SE/NL. Very flexible and willing to consider special requests. Onion service: http://privex3guvvasyer6pxz2fqcgy56auvw5egkir6ykwpptferdcb5toad.onion/ and I2P service: http://privex.i2p/
RatioServer - Locations: Amsterdam (NL), Budapest (HU), Copenhagen (DK), Dallas (US), Dublin (IE), Frankfurt (DE), London (UK), Los Angeles (US), Madrid (ES), Miami (US), Montreal (CA), New York (US), Paris (FR), Prague (CZ), Rome (IT), Singapore (SG), Sofia (BG), Sydney (AU), Tokyo (JP), Zurich (CH) and more. Company registered in ???. Most locations have unmetered dedicated servers and custom-built server options available. Tor- and anonymity-friendly. Does not verify email address validity, but encourages people to sign up with a working email address. Uses their own in-house BTC/ETH payment processor
Aaroli - Locations: Amsterdam (NL), Atlanta (US), Frankfurt (DE), London (UK), Paris (FR), Singapore (SG), Sydney (AU), Tokyo (JP), Toronto (CA). Company registered in an undisclosed location. Large Storage offered in 5 locations, may be suitable for full nodes. Payment via BTCPayServer or manual payment (accepts BTC, ETH). Willing to do custom configurations or payment via alternate methods. Anonymous/pseudonymous signup OK, provided you provide a working email address.
Casbay - Locations: Malaysia (MY), Singapore (SG). Company registered in Malaysia. Accepts Bitcoin (and many more cryptocurrencies) via Plisio. No restrictions on Tor traffic. They only verify email address on signup, but may require KYC if you trigger anti-abuse/anti-fraud monitoring systems. Uses Google Captchas. Offers Large Storage servers, may be suitable for full nodes. Even larger storage capacity available if you contact them directly.
TechRich - Locations: Japan (JP), Korea (KR), Malaysia (MY), China (CN), Hong Kong (HK), United States (US), Thailand (TH). Company registered in Hong Kong. They ask for user information but don’t verify/require KYC if you pay by cryptocurrency. Tor traffic OK as long as you don’t get abuse/complaints. They can arrange dedicated fiber lines for each client at the HK location. Uses Coinpayments, Bitpay, and Payeer for payments, can arrange other payment methods as long as you are not sending from an OFAC-listed address. They accept Lightning Network (LN) payments
Webconn Technology - Locations: Netherlands (NL), United States (US), Italy (IT), Japan (JP), France (FR). Company registered in Pakistan. Offers GPU servers. Unlimited traffic. They don’t care what information you provide at signup. Payments via Coinbase or direct transfer to wallet. Google captchas. Linked to Seimaxim
Domains4Bitcoins - Locations: United States (US), India (IN). Company registered in United States. Payments via BitPay – KYC and BitPay account required to purchase
GoSSDHosting - Locations: United States (US), India (IN). Company registered in India.
Melbicom - Locations: Riga (LV), Amsterdam (NL), Warsaw (PL), Moscow (RU), Palermo (IT), Vilnius (LT), Madrid (ES), Sofia (BG), Lagos (NG), Singapore (SG), Fujairah (AE), Atlanta (US), Los Angeles (US). Company registered in Lithuania. Windows and Linux VPS. Also offers CDN services. No Tor traffic allowed. They don’t ask for much personal information but don’t want anonymous signup, they may request ID verification. No illegal activities allowed. Bitcoin Lightning network (LN) payments supported. No Google Captchas. Large Storage servers are available. They support BGP sessions, colocations, and cloud services also.
MyNymBox - Locations: Frankfurt (DE), Nuremberg (DE), Helsinki (FI), Munich (DE), Portsmouth (UK), New York (US), Seattle (US), St. Louis (US), Singapore (Asia). Company registered in Seychelles. Resells services from Hetzner Cloud, Dedicated Servers and Contabo. Offers Shared Hosting on encrypted storage and anonym Domain Registrations. No email verification required to order. Tor- and anonymity-friendly. Accepts Bitcoin, Lightning and Monero payments via self hosted BTCPayServer. No Google Captchas or 3rd party stuff. Has Storage VPS (Large Storage) servers, suitable for full nodes, provider runs their BTCPayServer on one of them!
SafeCloud - Locations: Amsterdam (NL), Athens (GR), Barcelona (ES), Belgrade (RS), Brussels (BE), Bucharest (RO), Copenhagen (DK), Dublin (IE), Dusseldorf (DE), Florence (IT), Frankfurt (DE), Helsinki (FI), Kyiv (UA), Lisbon (PT), London (UK), Madrid (ES), Moscow (RU), Nicosia (CY), Oslo (NO), Paris (FR), Sofia (BG), Stockholm (SE), Warsaw (PL), Vienna (AT), Vilnius (LT), Zurich (CH), Ashburn (US), Atlanta (US), Chicago (US), Dallas (US), Kansas City (US), Los Angeles (US), Mexico City (MX), Miami (US), Montreal (CA), New York (US), Portland (US), Salt Lake City (US), San Juan(PR), Seattle (US), Toronto (CA), Vancouver (CA), Washington (US), Bogota (CO), Buenos Aires (AR), Guatemala City (GT), La Paz (BO), Lima (PE), Quito (EC), San Jose (CR), Santiago (CL), São Paulo (BR), Dubai (AE), Hong Kong (HK), Istanbul (TR), Kuala Lumpur (MY), Mumbai (IN), Singapore (SG), Taipei (TW), Tel Aviv (IL), Tokyo (JP), Fez (MA), Johannesburg (ZA), Lagos (NG), Sydney (AU). Company registered in Seattle (US). Tor traffic OK. Only valid email required at signup. Payments via Bitserver and manual payment processing. No Google Captchas. 100MBps-40Gbps dedicated bandwidth dedicated servers available. Use promo code BITCOINVPS for 10% discount on orders.
RedSwitches - Locations: Singapore (SG), Miami (US), Germany (DE), Switzerland (CH), Australia (AU), Mumbai (IN), Tokyo (JP), Netherlands (NL), Hong Kong (HK), San Francisco (US), Canada (CA), London (UK), Washington DC (US). Company registered in Singapore.
Pqhosting - Locations: Moldova (MD), Russia (RU), Latvia (LV), Netherlands (NL), Hong Kong (HK), Germany (DE), Ukraine (UA), United States (US), Hong Kong (HK), Canada (CA), Czechia (CZ), Slovakia (SK), Israel (IL), Turkey (TR), Poland (PL), Bulgaria (BG), Romania (RO). Company registered in Russia. Google Captchas. User reports they may suddenly require KYC to access your server or pay with crypto if your signup IP (e.g proxy/VPN/Tor) triggers fraud checks, or randomly if they decide they want to know who you are
HostZealot - Locations: Amsterdam (NL), London (UK), Stockholm (SE), Warsaw (PL), Limassol (CY), Tallinn (EE), Ashburn (US), Chicago (US), Dallas (US), Seattle (US), Toronto (CA), Brussels (BE), Tel Aviv (IL), Hong Kong (HK), Dusseldorf (DE), Tbilisi (GE). Company registered in Bulgaria. Provider states they are Tor and anonymity friendly as long as you do not violate their ToS. All their VPS instances use SSDs, their Poland and Netherlands locations offer NVMe also. User reports they do not allow registration from Protonmail email addresses.
BlueVPS - Locations: Amsterdam (NL), Limassol (CY), Gravelines (FR), Singapore (SG), Sofiya (BG), London (UK), Ashburn (US), Los Angeles (US), Atlanta (US), Frankfurt (DE), Palermo (IT), Tel Aviv (IL), Stockholm (SE), Toronto (CA), Tallinn (EE), Madrid (ES), Hong Kong (CN), Warsaw (PL), Sydney (AU), Fujairah (UAE). Company registered in Estonia. Payments via Coinpayments. Regarding anonymity they state “We require clients confirmation e-Mail or ID”. Provider has hardware in two different data centers at their Warsaw and London locations.
Host-World - Locations: Frankfurt (DE), Amsterdam (NL), London (UK), Strasbourg (FR), Gravelines (FR), Limassol (CY), Bratislava (SK), Prague (CZ), Riga (LV), Warsaw (PL), Chisinau (MD), Kiev (UA), New Jersey (US), Toronto (CA), Beauharnois (CA), Sydney (AU), Hong Kong (HK), Tokyo (JP), Singapore (SG), Petach Tikva (IL), Turkey (TR). Company registered in Estonia. Uses Coinpayments.net. Anonymous signup OK (they only verify email)
ServerMath - Locations: Amsterdam (NL), Hong Kong (HK), Madrid (ES), Seoul (KR), Dallas (TX), Istanbul (TR), Manila (PH), Singapore (SG), Dubai (AE), Lagos (NG), Miami (US), Tokyo (JP), Frankfurt (DE), London (UK), Moscow (RU), Warsaw (PL). Company registered in ???. Accepts Bitcoin via BTCPayServer. Willing to consider payment via other cryptocurrencies on request. Does not require KYC or check identity. Happy to arrange custom server configurations (e.g GPUs, high bandwidth servers). Affiliated with RatioServer. Website does not work when visited from some IP addresses
Ahost - Locations: Dubai (AE), Vienna (AT), Sydney (AU), Brussels (BE), Sofia (BG), Zurich (CH), Prague (CZ), Copenhagen (DK), Seville (ES), Thessaloniki (GR), Kwai Chung (HK), Zagreb (HR), Budapest (HU), Tel Aviv (IL), Hafnarfjordur (IS), Milan (IT), Tokyo (JP), Vilnius (LT), Riga (LV), Chisinau (MD), Skopje (MK), Oslo (NO), Warsaw (PL), Belgrade (RS), Bucharest (RO), Moscow (RU), Stockholm (SE), Ljubljana (SI). Company registered in Estonia. No anonymous signup. No Tor or spam allowed. Payments via Payeer. KVM virtualization, Gigabit speeds for every VPS. They do NOT want anonymous signups or Tor traffic. User reports they ask for KYC (scan of government ID) after payment. Google Captchas
IpTransit - Locations: Iran (IR). Company registered in Iran. Non-HTTPS site. Appears to be down, but you can try emailing them at the address given on their website
EDIS Global - Locations: Vienna / Austria (AT), Graz / Austria (AT), Brussels / Belgium (BE), Sofia / Bulgaria (BG), Montreal / Canada (CA), Vina del Mar / Valparaiso / Chile (CL), Bogota / Colombia (CO), Prague / Czech Republic (CZ), Zagreb / Croatia (HR), Dubai (UAE), Paris / France (FR), Frankfurt / Germany (DE), Copenhagen / Denmark (DK), Thessaloniki / Greece (GR), Kwai Chung / Hong Kong (HK), Budapest / Hungary (HU), Hafnarfjördur / Iceland (IS), Ballasalla / Isle of Man (IM), Tel Aviv / Israel (IL), Milan / Italy (IT), Palermo / Sicily (IT), Tokyo / Japan (JP), Vilnius / Lithuania (LT), Riga / Latvia (LV), Chisinau / Moldova (MD), Skopje/North Macedonia (MK), Amsterdam / Netherlands (NL), Oslo / Norway (NO), Warsaw / Poland (PL), Bucharest / Romania (RO), Belgrade / Serbia (RS), Moscow / Russia (RU), St. Petersburg / Russia (RU), Belgrade / Serbia (RS), Singapore (SG), Stockholm / Sweden (SE), Ljubljana / Slovenia (SI), Seville / Spain (ES), Zurich / Switcherland(CH), Sydney / Australia (AU), New York (US), London City and London Docklands (UK). Company registered in Limassol, Cyprus. Now using Cryptomus and accepting Bitcoin (plus other standard coins, including DOGE) at all locations.Use coupon code BITCOINVPS for a 10% (lifetime) discount on your first order. The provider notes: Instant Provisioning! All VPS are KVM-based, 100% SSD, modern Intel processors, up to 2x 10Gbps per node, fully GEO-located IP ranges, redundant high quality uplinks, lowest latenc, peerings at local IX, loads of bandwidth, TUN/TAP for VPN, hostCPU passthrough, random-numbers generators for fast entropy, noVNC, 100+ ready to use Turnkey images, images of common Linux distributions for fully automated installation, bring your own .iso and boot it on EDIS KVM, post-install scripts for automated installation according to your recipes. Windows and Linux. Auto-Installers for Windows 2016/2019/2022 Server (trial). TOR traffic is fine but TOR exit notes are not allowed. EDIS does not require KYC, but a real name and a real-world address is required (they don’t come to check if you really live at the indicated address) and EDIS allows signup via TOR or Proxies, but they do not want criminal activity and will manually review all new signups for signs of fraud or criminal intent before provisioning the first service. User reports signups not allowed with cock.li email addresses and a phone number is required at signup.
ClientVPS - Locations: Bahrain (BH), Ukraine (UA), Netherlands (NL), Panama (PA), Russia (RU), Singapore (SG), Hong Kong (HK), Iran (IR). Company registered in Russia or US, it’s unclear. “Bulletproof” hosting provider.
Melbicom - Locations: Riga (LV), Amsterdam (NL), Warsaw (PL), Moscow (RU), Palermo (IT), Vilnius (LT), Madrid (ES), Sofia (BG), Lagos (NG), Singapore (SG), Fujairah (AE), Atlanta (US), Los Angeles (US). Company registered in Lithuania. Windows and Linux VPS. Also offers CDN services. No Tor traffic allowed. They don’t ask for much personal information but don’t want anonymous signup, they may request ID verification. No illegal activities allowed. Bitcoin Lightning network (LN) payments supported. No Google Captchas. Large Storage servers are available. They support BGP sessions, colocations, and cloud services also.
SafeCloud - Locations: Amsterdam (NL), Athens (GR), Barcelona (ES), Belgrade (RS), Brussels (BE), Bucharest (RO), Copenhagen (DK), Dublin (IE), Dusseldorf (DE), Florence (IT), Frankfurt (DE), Helsinki (FI), Kyiv (UA), Lisbon (PT), London (UK), Madrid (ES), Moscow (RU), Nicosia (CY), Oslo (NO), Paris (FR), Sofia (BG), Stockholm (SE), Warsaw (PL), Vienna (AT), Vilnius (LT), Zurich (CH), Ashburn (US), Atlanta (US), Chicago (US), Dallas (US), Kansas City (US), Los Angeles (US), Mexico City (MX), Miami (US), Montreal (CA), New York (US), Portland (US), Salt Lake City (US), San Juan(PR), Seattle (US), Toronto (CA), Vancouver (CA), Washington (US), Bogota (CO), Buenos Aires (AR), Guatemala City (GT), La Paz (BO), Lima (PE), Quito (EC), San Jose (CR), Santiago (CL), São Paulo (BR), Dubai (AE), Hong Kong (HK), Istanbul (TR), Kuala Lumpur (MY), Mumbai (IN), Singapore (SG), Taipei (TW), Tel Aviv (IL), Tokyo (JP), Fez (MA), Johannesburg (ZA), Lagos (NG), Sydney (AU). Company registered in Seattle (US). Tor traffic OK. Only valid email required at signup. Payments via Bitserver and manual payment processing. No Google Captchas. 100MBps-40Gbps dedicated bandwidth dedicated servers available. Use promo code BITCOINVPS for 10% discount on orders.
Shock Hosting - Locations: Piscataway/New Jersey (US), Los Angeles (US), Chicago (US), Dallas (US), Jacksonville (US), Denver (US), Seattle (US), Maidenhead (UK), Amsterdam (NL), Sydney (AU), Tokyo (JP), Singapore (SG). Company registered in United States.
Host-World - Locations: Frankfurt (DE), Amsterdam (NL), London (UK), Strasbourg (FR), Gravelines (FR), Limassol (CY), Bratislava (SK), Prague (CZ), Riga (LV), Warsaw (PL), Chisinau (MD), Kiev (UA), New Jersey (US), Toronto (CA), Beauharnois (CA), Sydney (AU), Hong Kong (HK), Tokyo (JP), Singapore (SG), Petach Tikva (IL), Turkey (TR). Company registered in Estonia. Uses Coinpayments.net. Anonymous signup OK (they only verify email)
Vultr - Locations: Atlanta (US), Chicago (US), Dallas (US), Los Angeles (US), Miami (US), New Jersey (US), Seattle (US), Silicon Valley (US), Toronto (CA), Amsterdam (NL), Frankfurt (DE), London (UK), Paris (FR), Tokyo (JP), Singapore (SG), Sydney (AU). Company registered in US. Reader reports strong anti-privacy policies: users must make credit card or PayPal payment before they are allowed to make Bitcoin deposits, and they use BitPay (which requires government ID/etc). Reader recommends using a Vultr reseller (e.g Bithost)
RatioServer - Locations: Amsterdam (NL), Budapest (HU), Copenhagen (DK), Dallas (US), Dublin (IE), Frankfurt (DE), London (UK), Los Angeles (US), Madrid (ES), Miami (US), Montreal (CA), New York (US), Paris (FR), Prague (CZ), Rome (IT), Singapore (SG), Sofia (BG), Sydney (AU), Tokyo (JP), Zurich (CH) and more. Company registered in ???. Most locations have unmetered dedicated servers and custom-built server options available. Tor- and anonymity-friendly. Does not verify email address validity, but encourages people to sign up with a working email address. Uses their own in-house BTC/ETH payment processor
Aaroli - Locations: Amsterdam (NL), Atlanta (US), Frankfurt (DE), London (UK), Paris (FR), Singapore (SG), Sydney (AU), Tokyo (JP), Toronto (CA). Company registered in an undisclosed location. Large Storage offered in 5 locations, may be suitable for full nodes. Payment via BTCPayServer or manual payment (accepts BTC, ETH). Willing to do custom configurations or payment via alternate methods. Anonymous/pseudonymous signup OK, provided you provide a working email address.
SafeCloud - Locations: Amsterdam (NL), Athens (GR), Barcelona (ES), Belgrade (RS), Brussels (BE), Bucharest (RO), Copenhagen (DK), Dublin (IE), Dusseldorf (DE), Florence (IT), Frankfurt (DE), Helsinki (FI), Kyiv (UA), Lisbon (PT), London (UK), Madrid (ES), Moscow (RU), Nicosia (CY), Oslo (NO), Paris (FR), Sofia (BG), Stockholm (SE), Warsaw (PL), Vienna (AT), Vilnius (LT), Zurich (CH), Ashburn (US), Atlanta (US), Chicago (US), Dallas (US), Kansas City (US), Los Angeles (US), Mexico City (MX), Miami (US), Montreal (CA), New York (US), Portland (US), Salt Lake City (US), San Juan(PR), Seattle (US), Toronto (CA), Vancouver (CA), Washington (US), Bogota (CO), Buenos Aires (AR), Guatemala City (GT), La Paz (BO), Lima (PE), Quito (EC), San Jose (CR), Santiago (CL), São Paulo (BR), Dubai (AE), Hong Kong (HK), Istanbul (TR), Kuala Lumpur (MY), Mumbai (IN), Singapore (SG), Taipei (TW), Tel Aviv (IL), Tokyo (JP), Fez (MA), Johannesburg (ZA), Lagos (NG), Sydney (AU). Company registered in Seattle (US). Tor traffic OK. Only valid email required at signup. Payments via Bitserver and manual payment processing. No Google Captchas. 100MBps-40Gbps dedicated bandwidth dedicated servers available. Use promo code BITCOINVPS for 10% discount on orders.
RedSwitches - Locations: Singapore (SG), Miami (US), Germany (DE), Switzerland (CH), Australia (AU), Mumbai (IN), Tokyo (JP), Netherlands (NL), Hong Kong (HK), San Francisco (US), Canada (CA), London (UK), Washington DC (US). Company registered in Singapore.
Host-World - Locations: Frankfurt (DE), Amsterdam (NL), London (UK), Strasbourg (FR), Gravelines (FR), Limassol (CY), Bratislava (SK), Prague (CZ), Riga (LV), Warsaw (PL), Chisinau (MD), Kiev (UA), New Jersey (US), Toronto (CA), Beauharnois (CA), Sydney (AU), Hong Kong (HK), Tokyo (JP), Singapore (SG), Petach Tikva (IL), Turkey (TR). Company registered in Estonia. Uses Coinpayments.net. Anonymous signup OK (they only verify email)
EDIS Global - Locations: Vienna / Austria (AT), Graz / Austria (AT), Brussels / Belgium (BE), Sofia / Bulgaria (BG), Montreal / Canada (CA), Vina del Mar / Valparaiso / Chile (CL), Bogota / Colombia (CO), Prague / Czech Republic (CZ), Zagreb / Croatia (HR), Dubai (UAE), Paris / France (FR), Frankfurt / Germany (DE), Copenhagen / Denmark (DK), Thessaloniki / Greece (GR), Kwai Chung / Hong Kong (HK), Budapest / Hungary (HU), Hafnarfjördur / Iceland (IS), Ballasalla / Isle of Man (IM), Tel Aviv / Israel (IL), Milan / Italy (IT), Palermo / Sicily (IT), Tokyo / Japan (JP), Vilnius / Lithuania (LT), Riga / Latvia (LV), Chisinau / Moldova (MD), Skopje/North Macedonia (MK), Amsterdam / Netherlands (NL), Oslo / Norway (NO), Warsaw / Poland (PL), Bucharest / Romania (RO), Belgrade / Serbia (RS), Moscow / Russia (RU), St. Petersburg / Russia (RU), Belgrade / Serbia (RS), Singapore (SG), Stockholm / Sweden (SE), Ljubljana / Slovenia (SI), Seville / Spain (ES), Zurich / Switcherland(CH), Sydney / Australia (AU), New York (US), London City and London Docklands (UK). Company registered in Limassol, Cyprus. Now using Cryptomus and accepting Bitcoin (plus other standard coins, including DOGE) at all locations.Use coupon code BITCOINVPS for a 10% (lifetime) discount on your first order. The provider notes: Instant Provisioning! All VPS are KVM-based, 100% SSD, modern Intel processors, up to 2x 10Gbps per node, fully GEO-located IP ranges, redundant high quality uplinks, lowest latenc, peerings at local IX, loads of bandwidth, TUN/TAP for VPN, hostCPU passthrough, random-numbers generators for fast entropy, noVNC, 100+ ready to use Turnkey images, images of common Linux distributions for fully automated installation, bring your own .iso and boot it on EDIS KVM, post-install scripts for automated installation according to your recipes. Windows and Linux. Auto-Installers for Windows 2016/2019/2022 Server (trial). TOR traffic is fine but TOR exit notes are not allowed. EDIS does not require KYC, but a real name and a real-world address is required (they don’t come to check if you really live at the indicated address) and EDIS allows signup via TOR or Proxies, but they do not want criminal activity and will manually review all new signups for signs of fraud or criminal intent before provisioning the first service. User reports signups not allowed with cock.li email addresses and a phone number is required at signup.
SafeCloud - Locations: Amsterdam (NL), Athens (GR), Barcelona (ES), Belgrade (RS), Brussels (BE), Bucharest (RO), Copenhagen (DK), Dublin (IE), Dusseldorf (DE), Florence (IT), Frankfurt (DE), Helsinki (FI), Kyiv (UA), Lisbon (PT), London (UK), Madrid (ES), Moscow (RU), Nicosia (CY), Oslo (NO), Paris (FR), Sofia (BG), Stockholm (SE), Warsaw (PL), Vienna (AT), Vilnius (LT), Zurich (CH), Ashburn (US), Atlanta (US), Chicago (US), Dallas (US), Kansas City (US), Los Angeles (US), Mexico City (MX), Miami (US), Montreal (CA), New York (US), Portland (US), Salt Lake City (US), San Juan(PR), Seattle (US), Toronto (CA), Vancouver (CA), Washington (US), Bogota (CO), Buenos Aires (AR), Guatemala City (GT), La Paz (BO), Lima (PE), Quito (EC), San Jose (CR), Santiago (CL), São Paulo (BR), Dubai (AE), Hong Kong (HK), Istanbul (TR), Kuala Lumpur (MY), Mumbai (IN), Singapore (SG), Taipei (TW), Tel Aviv (IL), Tokyo (JP), Fez (MA), Johannesburg (ZA), Lagos (NG), Sydney (AU). Company registered in Seattle (US). Tor traffic OK. Only valid email required at signup. Payments via Bitserver and manual payment processing. No Google Captchas. 100MBps-40Gbps dedicated bandwidth dedicated servers available. Use promo code BITCOINVPS for 10% discount on orders.
ServerMath - Locations: Amsterdam (NL), Hong Kong (HK), Madrid (ES), Seoul (KR), Dallas (TX), Istanbul (TR), Manila (PH), Singapore (SG), Dubai (AE), Lagos (NG), Miami (US), Tokyo (JP), Frankfurt (DE), London (UK), Moscow (RU), Warsaw (PL). Company registered in ???. Accepts Bitcoin via BTCPayServer. Willing to consider payment via other cryptocurrencies on request. Does not require KYC or check identity. Happy to arrange custom server configurations (e.g GPUs, high bandwidth servers). Affiliated with RatioServer. Website does not work when visited from some IP addresses
GlobalDataServer - Locations: Atlanta (US), Chicago (US), Dallas (US), Los Angeles (US), Miami (US), Montreal (CA), New York (US), Seattle (US), Vancouver (CA), Washington DC (US), Amsterdam (NL), Brussels (BE), Bucharest (RO), Copenhagen (DK), Dublin (IE), Frankfurt (DE), London (UK), Madrid (ES), Milan (IT), Moscow (RU), Oslo (NO), Paris (FR), Sofia (BG), Stockholm (SE), Vienna (AT), Vilnius (LT), Warsaw (PL), Zurich (CH), Bursa (TR), Hong Kong (HK), Singapore (SG), Tokyo (JP), Sydney (AU), Johannesburg (ZA). Company registered in Las Vegas (US). Dedicated servers in 100+ locations. Has high bandwidth 20GBps dedicated servers and can do custom configuration. Tor friendly. Contact them directly to arrange BTC payment. User reports they are likely connected to AllServerHost. Use code BITCOINVPS for a 10% discount on first order
Web4Africa - Locations: Ghana, Kenya, Nigeria (NG), South Africa (ZA). Company registered in South Africa.
Melbicom - Locations: Riga (LV), Amsterdam (NL), Warsaw (PL), Moscow (RU), Palermo (IT), Vilnius (LT), Madrid (ES), Sofia (BG), Lagos (NG), Singapore (SG), Fujairah (AE), Atlanta (US), Los Angeles (US). Company registered in Lithuania. Windows and Linux VPS. Also offers CDN services. No Tor traffic allowed. They don’t ask for much personal information but don’t want anonymous signup, they may request ID verification. No illegal activities allowed. Bitcoin Lightning network (LN) payments supported. No Google Captchas. Large Storage servers are available. They support BGP sessions, colocations, and cloud services also.
SafeCloud - Locations: Amsterdam (NL), Athens (GR), Barcelona (ES), Belgrade (RS), Brussels (BE), Bucharest (RO), Copenhagen (DK), Dublin (IE), Dusseldorf (DE), Florence (IT), Frankfurt (DE), Helsinki (FI), Kyiv (UA), Lisbon (PT), London (UK), Madrid (ES), Moscow (RU), Nicosia (CY), Oslo (NO), Paris (FR), Sofia (BG), Stockholm (SE), Warsaw (PL), Vienna (AT), Vilnius (LT), Zurich (CH), Ashburn (US), Atlanta (US), Chicago (US), Dallas (US), Kansas City (US), Los Angeles (US), Mexico City (MX), Miami (US), Montreal (CA), New York (US), Portland (US), Salt Lake City (US), San Juan(PR), Seattle (US), Toronto (CA), Vancouver (CA), Washington (US), Bogota (CO), Buenos Aires (AR), Guatemala City (GT), La Paz (BO), Lima (PE), Quito (EC), San Jose (CR), Santiago (CL), São Paulo (BR), Dubai (AE), Hong Kong (HK), Istanbul (TR), Kuala Lumpur (MY), Mumbai (IN), Singapore (SG), Taipei (TW), Tel Aviv (IL), Tokyo (JP), Fez (MA), Johannesburg (ZA), Lagos (NG), Sydney (AU). Company registered in Seattle (US). Tor traffic OK. Only valid email required at signup. Payments via Bitserver and manual payment processing. No Google Captchas. 100MBps-40Gbps dedicated bandwidth dedicated servers available. Use promo code BITCOINVPS for 10% discount on orders.
Ccihosting - Locations: Panama (PA). Company registered in Panama.
ClientVPS - Locations: Bahrain (BH), Ukraine (UA), Netherlands (NL), Panama (PA), Russia (RU), Singapore (SG), Hong Kong (HK), Iran (IR). Company registered in Russia or US, it’s unclear. “Bulletproof” hosting provider.
Dedimax - Locations: 120+ worldwide: France (FR), Netherlands (NL), United States (US), Canada (CA), Portugal (PT), Lithuania (LT), Moldova (MD), Spain (ES), Bulgaria (BG), Germany (DE), Austria (AT), and many many more…. Company registered in Belgium. User reports Tor signup doesn’t work
EDIS Global - Locations: Vienna / Austria (AT), Graz / Austria (AT), Brussels / Belgium (BE), Sofia / Bulgaria (BG), Montreal / Canada (CA), Vina del Mar / Valparaiso / Chile (CL), Bogota / Colombia (CO), Prague / Czech Republic (CZ), Zagreb / Croatia (HR), Dubai (UAE), Paris / France (FR), Frankfurt / Germany (DE), Copenhagen / Denmark (DK), Thessaloniki / Greece (GR), Kwai Chung / Hong Kong (HK), Budapest / Hungary (HU), Hafnarfjördur / Iceland (IS), Ballasalla / Isle of Man (IM), Tel Aviv / Israel (IL), Milan / Italy (IT), Palermo / Sicily (IT), Tokyo / Japan (JP), Vilnius / Lithuania (LT), Riga / Latvia (LV), Chisinau / Moldova (MD), Skopje/North Macedonia (MK), Amsterdam / Netherlands (NL), Oslo / Norway (NO), Warsaw / Poland (PL), Bucharest / Romania (RO), Belgrade / Serbia (RS), Moscow / Russia (RU), St. Petersburg / Russia (RU), Belgrade / Serbia (RS), Singapore (SG), Stockholm / Sweden (SE), Ljubljana / Slovenia (SI), Seville / Spain (ES), Zurich / Switcherland(CH), Sydney / Australia (AU), New York (US), London City and London Docklands (UK). Company registered in Limassol, Cyprus. Now using Cryptomus and accepting Bitcoin (plus other standard coins, including DOGE) at all locations.Use coupon code BITCOINVPS for a 10% (lifetime) discount on your first order. The provider notes: Instant Provisioning! All VPS are KVM-based, 100% SSD, modern Intel processors, up to 2x 10Gbps per node, fully GEO-located IP ranges, redundant high quality uplinks, lowest latenc, peerings at local IX, loads of bandwidth, TUN/TAP for VPN, hostCPU passthrough, random-numbers generators for fast entropy, noVNC, 100+ ready to use Turnkey images, images of common Linux distributions for fully automated installation, bring your own .iso and boot it on EDIS KVM, post-install scripts for automated installation according to your recipes. Windows and Linux. Auto-Installers for Windows 2016/2019/2022 Server (trial). TOR traffic is fine but TOR exit notes are not allowed. EDIS does not require KYC, but a real name and a real-world address is required (they don’t come to check if you really live at the indicated address) and EDIS allows signup via TOR or Proxies, but they do not want criminal activity and will manually review all new signups for signs of fraud or criminal intent before provisioning the first service. User reports signups not allowed with cock.li email addresses and a phone number is required at signup.
Vultr - Locations: Atlanta (US), Chicago (US), Dallas (US), Los Angeles (US), Miami (US), New Jersey (US), Seattle (US), Silicon Valley (US), Toronto (CA), Amsterdam (NL), Frankfurt (DE), London (UK), Paris (FR), Tokyo (JP), Singapore (SG), Sydney (AU). Company registered in US. Reader reports strong anti-privacy policies: users must make credit card or PayPal payment before they are allowed to make Bitcoin deposits, and they use BitPay (which requires government ID/etc). Reader recommends using a Vultr reseller (e.g Bithost)
MyNymBox - Locations: Frankfurt (DE), Nuremberg (DE), Helsinki (FI), Munich (DE), Portsmouth (UK), New York (US), Seattle (US), St. Louis (US), Singapore (Asia). Company registered in Seychelles. Resells services from Hetzner Cloud, Dedicated Servers and Contabo. Offers Shared Hosting on encrypted storage and anonym Domain Registrations. No email verification required to order. Tor- and anonymity-friendly. Accepts Bitcoin, Lightning and Monero payments via self hosted BTCPayServer. No Google Captchas or 3rd party stuff. Has Storage VPS (Large Storage) servers, suitable for full nodes, provider runs their BTCPayServer on one of them!
Virtual Private Network providers allow you to tunnel your Internet traffic to their servers using an encrypted link.
Initech - Locations: Melbourne (AU), Sydney (AU), Belgium (BE), Sao Paulo (BR), Montreal (CA), Toronto (CA), Santiago (CL), Hong Kong (CN), Helsinki (FI), Finland (FI), Paris (FR), Berlin (DE), Falkenstein (DE), Frankfurt (DE), Nuremberg (DE), Bangalore (IN), Delhi (IN), Mumbai (IN), Jakarta (ID), Ireland (IE), Tel Aviv (IL), Milan (IT), Turnin (IT), Osaka (JP), Tokyo (JP), Kuala Lumpur (MY), Mexico City (MX), Amsterdam (NL), Holland (NL), Manila (PH), Warsaw (PL), Doha (QA), Singapore (SG), Johannesburg (ZA), Seoul (KR), Madrid (ES), Stockholm (SE), Dubai (AE), London (UK), Manchester (UK), Atlanta (US), Chicago (US), Columbus (US), Dallas (US), Honolulu (US), Iowa (US), Las Vegas (US), Los Angeles (US), Miami (US), New York (US), Ohio (US), Oregon (US), Salt Lake City (US), San Francisco (US), Seattle (US), Silicon Valley (US), South Carolina (US), Virginia (US), Zurich (CH), Taiwan (TW). Company registered in United States. Also offers a residential proxy (VPN) service with endpoints available in almost every country worldwide (the residential proxy service blocks websites that are common abuse targets, like banking or Netflix. Their VPS service does not block). Resells VPS services from many cloud providers (Vultr, Alibaba Cloud, Amazon Lightsail/AWS, DigitalOcean, Google Cloud/GCP, Hetzner Cloud). No email verification required to order. Accept all major cryptocurrencies. Tor traffic is OK, their website is built to be easy to use over Tor. Accepts crypto payments via Plisio and BTCPayServer, including Bitcoin Lightning Network (LN) payments via BTCPayServer. Large Storage / Block storage 40GB up to 40TB now available via normal ordering flow. Use promo code BITCOINVPS for 10% discount on all orders for new customers.
Njalla - Locations: Sweden (SE). Company registered in Nevis. Runs their own datacenter. Tor- and anonymity-friendly. Privacy-focused domain registration service that also offers VPS, VPN. Accepts BTC, XMR, ZEC among other options. Onion URL: http://njallalafimoej5i4eg7vlnqjvmb6zhdh27qxcatdn647jtwwwui3nad.onion
Private WebHost - Locations: Vienna (AT), Helsinki (FI), Frankfurt (DE), Netherlands (NL), Moscow (RU), Stockholm (SE), Zurich (CH), Paris (FR), Los Angeles (US). Company registered in Switzerland. Privacy/anonymity-focused hoster. Only an email required at signup, Signup via VPNs, proxies, and Tor allowed, payments via NOWPayments, CoinPayments.net. Lightning Network (LN) payments via CoinPayments. Working on self/hosted payments. The Swiss dedicated servers are Large Storage and suitable for Bitcoin full nodes. All servers can be used for Tor nodes (exit nodes allowed if you block port 25). Netherlands VPS servers are Large Storage. No Google Captcha. Support via tickets or encrypted email. Dedicated servers in Switzerland, working on more locations. Use promo code BITCOINVPS for 10% off. Very responsive support.
VPS2day - Locations: Frankfurt a.M (DE), Zug/Switzerland (CH), Tallin (EE), Bucharest (RO), The Hague (NL), Stockholm (SE), Manchester (UK), Dallas (US). Company registered in Frankfurt, Germany. Website blocks Tor traffic outright. Does not allow anonymous signup. Payment via Coingate.
NiceVPS - Locations: Netherlands (NL). Company registered in Dominica. Minimal registration data and Tor friendly. Bulletproof DDoS-protected hosting available. Also provides confidential domains. Will offer hosting in Switzerland (CH) soon.
AlexHost - Locations: Tallbert (SE), Moldova (MD), Sofia (BG), Netherlands (NL). Company registered in Moldova. Email hosting included with shared web hosting service. Operates through AS200019, with own datacenter, network and hardware in the Republic of Moldova. Domain registration via OpenSRS/Tucows. They welcome people using their VPS for VPN endpoints. No KYC unless the payment gateway (e.g Paypal) asks for it (so pay with crypto). Doesn’t verify the personal data you give them otherwise. Tor bridges and relays are fine, Tor exit nodes are not allowed. Bitcoin payments accepted via BTCPayServer. Monero and other cryptocurrencies also accepted. May use Google Captchas (via Hostbill). Dedicated servers can be customized so they have Large Storage for running full nodes. Provider states they support freedom of speech and privacy.
LNVPN - Locations: Canada (CA), United States (US), Finland (FI), United Kingdom (UK), Singapore (SG), India (IN), Netherlands (NL), Russia (RU), Ukraine (UA), Switzerland (CH), Israel (IL), Kazakhstan (KZ), Brazil (BR), Romania (RO), Kenya (KE), Iceland (IS). Company registered in Germany. Accountless VPN provider that supports Lightning Network (LN) payment. Stores no private information about you whatsoever. Only supports Wireguard. Aimed at people who know how to configure Wireguard themselves. Soon offering login using LNAUTH
Noez - Locations: Frankfurt (DE). Company registered in Germany. Large Storage, may be suitable for running Bitcoin full nodes
Airvpn - Locations: 19 Countries. Company registered in ???.
OVPN - Locations: US, Finland (FI), Sweden (SE), Norway (NO), UK, France (FR), Spain (ES), Germany (DE), Switzerland (CH), Netherlands (NL). Company registered in Sweden.
xitheon - Locations: Quebec (CA), Frankfurt (DE), Sydney (AU), Warsaw (PL), France (FR), Singapore (SG), UK. Company registered in ???.
Hostens - Locations: London (UK), Frankfurt (DE), Lithuania (LT), Amsterdam (NL), Washington (US), San Fransisco (US), Singapore (SG). Company registered in Lithuania. Large Storage, may be suitable for running Bitcoin full nodes. Requires full KYC (govt ID/etc) on signup, may use BitPay
Time4VPS - Locations: Lithuania (LT), Singapore (SG), US. Company registered in Lithuania. Large Storage, may be suitable for running Bitcoin full nodes. Now requiring KYC (ID scans)
Zergrush Hosting - Locations: Bucharest (RO). Company registered in Romania. Payments via uTrust, which supports Lightning Network (LN) payments. No Tor exits allowed. Do ask for personal information at signup.
iVPN - Locations: United States (US), United Kingdom (UK), Ukraine (UA), Taiwan (TW), Switzerland (CH), Sweden (SE), Spain (ES), South Africa (ZA), Singapore (SG), Serbia (RS), Romania (RO), Portugal (PT), Poland (PL), Netherlands (NL), Mexico (MX), Malaysia (MY), Luxembourg (LU), Japan (JP), Italy (IT), Israel (IL), Iceland (IS), Hong Kong (HK), Greece (GR), Germany (DE), France (FR), Finland (FI), Denmark (DK), Czech Republic (CZ), Canada (CA), Bulgaria (BG), Brazil (BR), Belgium (BE), Austria (AT), Australia (AU). Company registered in Gibraltar. Supports Lightning Network (LN) payments, automatic Wireguard key rotation
Initech - Locations: Melbourne (AU), Sydney (AU), Belgium (BE), Sao Paulo (BR), Montreal (CA), Toronto (CA), Santiago (CL), Hong Kong (CN), Helsinki (FI), Finland (FI), Paris (FR), Berlin (DE), Falkenstein (DE), Frankfurt (DE), Nuremberg (DE), Bangalore (IN), Delhi (IN), Mumbai (IN), Jakarta (ID), Ireland (IE), Tel Aviv (IL), Milan (IT), Turnin (IT), Osaka (JP), Tokyo (JP), Kuala Lumpur (MY), Mexico City (MX), Amsterdam (NL), Holland (NL), Manila (PH), Warsaw (PL), Doha (QA), Singapore (SG), Johannesburg (ZA), Seoul (KR), Madrid (ES), Stockholm (SE), Dubai (AE), London (UK), Manchester (UK), Atlanta (US), Chicago (US), Columbus (US), Dallas (US), Honolulu (US), Iowa (US), Las Vegas (US), Los Angeles (US), Miami (US), New York (US), Ohio (US), Oregon (US), Salt Lake City (US), San Francisco (US), Seattle (US), Silicon Valley (US), South Carolina (US), Virginia (US), Zurich (CH), Taiwan (TW). Company registered in United States. Also offers a residential proxy (VPN) service with endpoints available in almost every country worldwide (the residential proxy service blocks websites that are common abuse targets, like banking or Netflix. Their VPS service does not block). Resells VPS services from many cloud providers (Vultr, Alibaba Cloud, Amazon Lightsail/AWS, DigitalOcean, Google Cloud/GCP, Hetzner Cloud). No email verification required to order. Accept all major cryptocurrencies. Tor traffic is OK, their website is built to be easy to use over Tor. Accepts crypto payments via Plisio and BTCPayServer, including Bitcoin Lightning Network (LN) payments via BTCPayServer. Large Storage / Block storage 40GB up to 40TB now available via normal ordering flow. Use promo code BITCOINVPS for 10% discount on all orders for new customers.
Private WebHost - Locations: Vienna (AT), Helsinki (FI), Frankfurt (DE), Netherlands (NL), Moscow (RU), Stockholm (SE), Zurich (CH), Paris (FR), Los Angeles (US). Company registered in Switzerland. Privacy/anonymity-focused hoster. Only an email required at signup, Signup via VPNs, proxies, and Tor allowed, payments via NOWPayments, CoinPayments.net. Lightning Network (LN) payments via CoinPayments. Working on self/hosted payments. The Swiss dedicated servers are Large Storage and suitable for Bitcoin full nodes. All servers can be used for Tor nodes (exit nodes allowed if you block port 25). Netherlands VPS servers are Large Storage. No Google Captcha. Support via tickets or encrypted email. Dedicated servers in Switzerland, working on more locations. Use promo code BITCOINVPS for 10% off. Very responsive support.
VPS2day - Locations: Frankfurt a.M (DE), Zug/Switzerland (CH), Tallin (EE), Bucharest (RO), The Hague (NL), Stockholm (SE), Manchester (UK), Dallas (US). Company registered in Frankfurt, Germany. Website blocks Tor traffic outright. Does not allow anonymous signup. Payment via Coingate.
LNVPN - Locations: Canada (CA), United States (US), Finland (FI), United Kingdom (UK), Singapore (SG), India (IN), Netherlands (NL), Russia (RU), Ukraine (UA), Switzerland (CH), Israel (IL), Kazakhstan (KZ), Brazil (BR), Romania (RO), Kenya (KE), Iceland (IS). Company registered in Germany. Accountless VPN provider that supports Lightning Network (LN) payment. Stores no private information about you whatsoever. Only supports Wireguard. Aimed at people who know how to configure Wireguard themselves. Soon offering login using LNAUTH
Airvpn - Locations: 19 Countries. Company registered in ???.
OVPN - Locations: US, Finland (FI), Sweden (SE), Norway (NO), UK, France (FR), Spain (ES), Germany (DE), Switzerland (CH), Netherlands (NL). Company registered in Sweden.
xitheon - Locations: Quebec (CA), Frankfurt (DE), Sydney (AU), Warsaw (PL), France (FR), Singapore (SG), UK. Company registered in ???.
Hostens - Locations: London (UK), Frankfurt (DE), Lithuania (LT), Amsterdam (NL), Washington (US), San Fransisco (US), Singapore (SG). Company registered in Lithuania. Large Storage, may be suitable for running Bitcoin full nodes. Requires full KYC (govt ID/etc) on signup, may use BitPay
Time4VPS - Locations: Lithuania (LT), Singapore (SG), US. Company registered in Lithuania. Large Storage, may be suitable for running Bitcoin full nodes. Now requiring KYC (ID scans)
iVPN - Locations: United States (US), United Kingdom (UK), Ukraine (UA), Taiwan (TW), Switzerland (CH), Sweden (SE), Spain (ES), South Africa (ZA), Singapore (SG), Serbia (RS), Romania (RO), Portugal (PT), Poland (PL), Netherlands (NL), Mexico (MX), Malaysia (MY), Luxembourg (LU), Japan (JP), Italy (IT), Israel (IL), Iceland (IS), Hong Kong (HK), Greece (GR), Germany (DE), France (FR), Finland (FI), Denmark (DK), Czech Republic (CZ), Canada (CA), Bulgaria (BG), Brazil (BR), Belgium (BE), Austria (AT), Australia (AU). Company registered in Gibraltar. Supports Lightning Network (LN) payments, automatic Wireguard key rotation
Initech - Locations: Melbourne (AU), Sydney (AU), Belgium (BE), Sao Paulo (BR), Montreal (CA), Toronto (CA), Santiago (CL), Hong Kong (CN), Helsinki (FI), Finland (FI), Paris (FR), Berlin (DE), Falkenstein (DE), Frankfurt (DE), Nuremberg (DE), Bangalore (IN), Delhi (IN), Mumbai (IN), Jakarta (ID), Ireland (IE), Tel Aviv (IL), Milan (IT), Turnin (IT), Osaka (JP), Tokyo (JP), Kuala Lumpur (MY), Mexico City (MX), Amsterdam (NL), Holland (NL), Manila (PH), Warsaw (PL), Doha (QA), Singapore (SG), Johannesburg (ZA), Seoul (KR), Madrid (ES), Stockholm (SE), Dubai (AE), London (UK), Manchester (UK), Atlanta (US), Chicago (US), Columbus (US), Dallas (US), Honolulu (US), Iowa (US), Las Vegas (US), Los Angeles (US), Miami (US), New York (US), Ohio (US), Oregon (US), Salt Lake City (US), San Francisco (US), Seattle (US), Silicon Valley (US), South Carolina (US), Virginia (US), Zurich (CH), Taiwan (TW). Company registered in United States. Also offers a residential proxy (VPN) service with endpoints available in almost every country worldwide (the residential proxy service blocks websites that are common abuse targets, like banking or Netflix. Their VPS service does not block). Resells VPS services from many cloud providers (Vultr, Alibaba Cloud, Amazon Lightsail/AWS, DigitalOcean, Google Cloud/GCP, Hetzner Cloud). No email verification required to order. Accept all major cryptocurrencies. Tor traffic is OK, their website is built to be easy to use over Tor. Accepts crypto payments via Plisio and BTCPayServer, including Bitcoin Lightning Network (LN) payments via BTCPayServer. Large Storage / Block storage 40GB up to 40TB now available via normal ordering flow. Use promo code BITCOINVPS for 10% discount on all orders for new customers.
LNVPN - Locations: Canada (CA), United States (US), Finland (FI), United Kingdom (UK), Singapore (SG), India (IN), Netherlands (NL), Russia (RU), Ukraine (UA), Switzerland (CH), Israel (IL), Kazakhstan (KZ), Brazil (BR), Romania (RO), Kenya (KE), Iceland (IS). Company registered in Germany. Accountless VPN provider that supports Lightning Network (LN) payment. Stores no private information about you whatsoever. Only supports Wireguard. Aimed at people who know how to configure Wireguard themselves. Soon offering login using LNAUTH
Airvpn - Locations: 19 Countries. Company registered in ???.
xitheon - Locations: Quebec (CA), Frankfurt (DE), Sydney (AU), Warsaw (PL), France (FR), Singapore (SG), UK. Company registered in ???.
Hostens - Locations: London (UK), Frankfurt (DE), Lithuania (LT), Amsterdam (NL), Washington (US), San Fransisco (US), Singapore (SG). Company registered in Lithuania. Large Storage, may be suitable for running Bitcoin full nodes. Requires full KYC (govt ID/etc) on signup, may use BitPay
Time4VPS - Locations: Lithuania (LT), Singapore (SG), US. Company registered in Lithuania. Large Storage, may be suitable for running Bitcoin full nodes. Now requiring KYC (ID scans)
iVPN - Locations: United States (US), United Kingdom (UK), Ukraine (UA), Taiwan (TW), Switzerland (CH), Sweden (SE), Spain (ES), South Africa (ZA), Singapore (SG), Serbia (RS), Romania (RO), Portugal (PT), Poland (PL), Netherlands (NL), Mexico (MX), Malaysia (MY), Luxembourg (LU), Japan (JP), Italy (IT), Israel (IL), Iceland (IS), Hong Kong (HK), Greece (GR), Germany (DE), France (FR), Finland (FI), Denmark (DK), Czech Republic (CZ), Canada (CA), Bulgaria (BG), Brazil (BR), Belgium (BE), Austria (AT), Australia (AU). Company registered in Gibraltar. Supports Lightning Network (LN) payments, automatic Wireguard key rotation
Initech - Locations: Melbourne (AU), Sydney (AU), Belgium (BE), Sao Paulo (BR), Montreal (CA), Toronto (CA), Santiago (CL), Hong Kong (CN), Helsinki (FI), Finland (FI), Paris (FR), Berlin (DE), Falkenstein (DE), Frankfurt (DE), Nuremberg (DE), Bangalore (IN), Delhi (IN), Mumbai (IN), Jakarta (ID), Ireland (IE), Tel Aviv (IL), Milan (IT), Turnin (IT), Osaka (JP), Tokyo (JP), Kuala Lumpur (MY), Mexico City (MX), Amsterdam (NL), Holland (NL), Manila (PH), Warsaw (PL), Doha (QA), Singapore (SG), Johannesburg (ZA), Seoul (KR), Madrid (ES), Stockholm (SE), Dubai (AE), London (UK), Manchester (UK), Atlanta (US), Chicago (US), Columbus (US), Dallas (US), Honolulu (US), Iowa (US), Las Vegas (US), Los Angeles (US), Miami (US), New York (US), Ohio (US), Oregon (US), Salt Lake City (US), San Francisco (US), Seattle (US), Silicon Valley (US), South Carolina (US), Virginia (US), Zurich (CH), Taiwan (TW). Company registered in United States. Also offers a residential proxy (VPN) service with endpoints available in almost every country worldwide (the residential proxy service blocks websites that are common abuse targets, like banking or Netflix. Their VPS service does not block). Resells VPS services from many cloud providers (Vultr, Alibaba Cloud, Amazon Lightsail/AWS, DigitalOcean, Google Cloud/GCP, Hetzner Cloud). No email verification required to order. Accept all major cryptocurrencies. Tor traffic is OK, their website is built to be easy to use over Tor. Accepts crypto payments via Plisio and BTCPayServer, including Bitcoin Lightning Network (LN) payments via BTCPayServer. Large Storage / Block storage 40GB up to 40TB now available via normal ordering flow. Use promo code BITCOINVPS for 10% discount on all orders for new customers.
ExpressVPN - Locations: 94+ worldwide. Company registered in British Virgin Islands.
NordVPN - Locations: Worldwide. Company registered in Panama. Uses BitPay
PrivateVPN - Locations: 60+ worldwide. Company registered in Sweden.
Mullvad - Locations: 420+ worldwide. Company registered in Sweden. Accepting Bitcoin since July 2010, supports WireGuard. Has a good reputation, recommended
CyberGhost - Locations: 61 Countries, Worldwide. Company registered in Czech Republic. uses Bitpay. Privacy controversy: https://bitcointalk.org/index.php?topic=5203656.msg53196238#msg53196238
Surfshark - Locations: 50+ Worldwide. Company registered in British Virgin Islands. uses Coingate, Lightning Network (LN) support
privateinternetaccess - Locations: 32 Countries, Worldwide. Company registered in US. privacy controversy: https://bitcointalk.org/index.php?topic=5203656.msg53196238#msg53196238
IVACY - Locations: US, United Kingdom (UK), Ukraine (UA), Turkey (TR), Switzerland (CH), Taiwan (TW), Sweden (SE), Spain (ES), South Korea (KR), Singapore (SG), Saudi Arabia (SA), South Africa (ZA), Russia (RU), Seychelles, Romania (RO), Poland (PL), Philippines (PH), Panama (PA), Peru (PE), Norway (NO), Pakistan (PK), Nigeria (NG), New Zealand (NZ), Netherlands (NL), Mexico (MX), Malaysia (MY) Latvia (LV), Luxembourg (LU) Japan (JP), Kuwait, Kenya,Italy (IT), India (IN), Hong Kong (HK), Indonesia (IN), Ghana, France (FR), Finland (FI),Germany (DE), Egypt, Denmark (DK), Czech Republic (CZ), Colombia (CO), China (CN), Chile (CL), Costa Rica, Bulgaria (BG), Brunei, Brazil (BR), Canada (CA), Austria (AT), Australia (AU), Belgium (BE),. Company registered in Singapore. Uses BitPay and Coingate
Le Vpn - Locations: 120+ Countries. Company registered in Hong Kong.
HIDEme - Locations: 57 Countries. Company registered in Malaysia.
IronSocket - Locations: 70+ Countries. Company registered in Hong Kong.
Protonvpn - Locations: 89+ Countries. Company registered in Switzerland.
TorGuard - Locations: 50+ Worldwide. Company registered in US.
VPN.AC - Locations: 21 Countries. Company registered in Romania.
VPNme - Locations: US. Company registered in US.
VPN Secure - Locations: 48 Countries. Company registered in Australia .
xitheon - Locations: Quebec (CA), Frankfurt (DE), Sydney (AU), Warsaw (PL), France (FR), Singapore (SG), UK. Company registered in ???.
Windscribe VPN - Locations: Albania (AL), Argentina (AR), Australia (AU), Austria (AT), Azerbaijan (AZ), Belgium (BE), Bosnia, Brazil (BR), Bulgaria (BG), Colombia (CO), Croatia (HR), Cyprus (CY), Czech Republic (CZ), Denmark (DK), Estonia (EE), Fake Antarctica, Finland (FI), France (FR), Germany (DE), Greece (GR), Hong Kong (HK), Hungary (HU), Iceland (IS), India (IN), Indonesia (IN), Ireland (IE), Israel (IL), Italy (IT), Japan (JP), Latvia (LV), Lithuania (LT), Macedonia, Malaysia (MY) Mexico (MX), Moldova (MD), Netherlands (NL), New Zealand (NZ), Norway (NO), Philippines (PH), Poland (PL), Portugal (PT), Romania (RO), Russia (RU), Serbia (RS), Singapore (SG), Slovakia (SK), Slovenia, South Africa (ZA), South Korea (KR), Spain (ES), Sweden (SE), Switzerland (CH), Taiwan (TW), Thailand (TH), Tunisia (TN), Turkey (TR), Ukraine (UA), United Arab Emirates (AE), United Kingdom (UK), Vietnam (VN), Canada (CA), Japan (JP),. Company registered in Canada. Offers residential IP addresses to bypass VPN blocking
AzireVPN - Locations: Toronto (CA), Paris (FR), Frankfurt (DE), Amsterdam (NL), Bucharest (RO), Malaga (ES), Gothemburg (SE), Phuket (TH), Chicago (US), New York (US), Copenhagen (DK), Berlin (DE), Milan (IT), Oslo (NO), Madrid (ES), Stockholm (SE), Zurich (CH), London (UK), Miami (US). Company registered in Sweden. IPv6 support, Wireguard support, P2P traffic allowed, they own their own servers, servers run without physical storage media to ensure no logging, unblocks Netflix
iVPN - Locations: United States (US), United Kingdom (UK), Ukraine (UA), Taiwan (TW), Switzerland (CH), Sweden (SE), Spain (ES), South Africa (ZA), Singapore (SG), Serbia (RS), Romania (RO), Portugal (PT), Poland (PL), Netherlands (NL), Mexico (MX), Malaysia (MY), Luxembourg (LU), Japan (JP), Italy (IT), Israel (IL), Iceland (IS), Hong Kong (HK), Greece (GR), Germany (DE), France (FR), Finland (FI), Denmark (DK), Czech Republic (CZ), Canada (CA), Bulgaria (BG), Brazil (BR), Belgium (BE), Austria (AT), Australia (AU). Company registered in Gibraltar. Supports Lightning Network (LN) payments, automatic Wireguard key rotation
Virtual Dedicated Server providers, which are very similar to VPS providers but sometimes offer greater isolation (e.g using KVM or Xen instead of OpenVZ – note many VPS providers also offer KVM or Xen). In some cases VDS may mean a VPS with a dedicated CPU core, so it is not sharing CPU capacity with other clients from that provider.
Private WebHost - Locations: Vienna (AT), Helsinki (FI), Frankfurt (DE), Netherlands (NL), Moscow (RU), Stockholm (SE), Zurich (CH), Paris (FR), Los Angeles (US). Company registered in Switzerland. Privacy/anonymity-focused hoster. Only an email required at signup, Signup via VPNs, proxies, and Tor allowed, payments via NOWPayments, CoinPayments.net. Lightning Network (LN) payments via CoinPayments. Working on self/hosted payments. The Swiss dedicated servers are Large Storage and suitable for Bitcoin full nodes. All servers can be used for Tor nodes (exit nodes allowed if you block port 25). Netherlands VPS servers are Large Storage. No Google Captcha. Support via tickets or encrypted email. Dedicated servers in Switzerland, working on more locations. Use promo code BITCOINVPS for 10% off. Very responsive support.
Profvds - Locations: Bratislava (SK). Company registered in Slovakia. Accepts Bitcoin via BTCPayServer, NOWPayments, Plisio, and Payeer. Only Email required to register. Provider notes they support running Bitcoin full nodes
VPSBG - Locations: Sofia (BG). Company registered in Bulgaria. Locations: Sofia (BG). Company registered in Bulgaria. Anonymous signup OK, Tor allowed. No 3rd party payment processor, has own implementation to take payments via Bitcoin, Litecoin and Lightning Network (LN). Advertises high performance servers. Provider notes: “VPN servers are installed on a private VPS. They have a dedicated static IP, full SSH root access to the VPS, allowing for full control over the VPN. Verifiable no-logs and privacy policies. Unlimited device connections. VPN uses open-source protocols and custom scripts that are used are publicly available.”
Pqhosting - Locations: Moldova (MD), Russia (RU), Latvia (LV), Netherlands (NL), Hong Kong (HK), Germany (DE), Ukraine (UA), United States (US), Hong Kong (HK), Canada (CA), Czechia (CZ), Slovakia (SK), Israel (IL), Turkey (TR), Poland (PL), Bulgaria (BG), Romania (RO). Company registered in Russia. Google Captchas. User reports they may suddenly require KYC to access your server or pay with crypto if your signup IP (e.g proxy/VPN/Tor) triggers fraud checks, or randomly if they decide they want to know who you are
Justhost - Locations: Russia (RU). Company registered in Russia. Selling VDS
IP-Connect - Locations: Ukraine (UA). Company registered in Ukraine. Runs their own datacenter. Tor-friendly. Minimal registration. Crypto payments accepted via payment gateway. Doesn’t require KYC, allows TOR/proxy. Criminal activity prohibited. All VPS are KVM-based, 100% SSD, recent Intel processors, redundant high quality uplinks, lowest latency possible, loads of bandwidth, TUN/TAP for VPN, hostCPU passthrough, random generators for fast entropy, noVNC, images of common Linux distributions for fully automated installation, bring your own .iso (also Windows etc. allowed). Now additionally accepts payments via Nowpayments.io, which supports hundreds of different cryptocurrencies. Use promocode “bitcoin-vps2022” for -10% discount
Hostkey - Locations: US, Netherlands (NL), Russia (RU). Company registered in Netherlands. User reports they do not allow registration from Protonmail email addresses
Servers.Guru - Locations: Helsinki (FI), Nuremberg (DE), Falkenstein (DE), Ashburn (US). Company registered in United States. Anonymous signup allowed (only a valid email address is required). Tor traffic OK. Accepts Lightning Network (LN) payments. Uses self-hosted BitCartCC for Bitcoin payments (as well as others), takes DOGE, DASH, and Zcash/ZEC via Plisio.
MyNymBox - Locations: Frankfurt (DE), Nuremberg (DE), Helsinki (FI), Munich (DE), Portsmouth (UK), New York (US), Seattle (US), St. Louis (US), Singapore (Asia). Company registered in Seychelles. Resells services from Hetzner Cloud, Dedicated Servers and Contabo. Offers Shared Hosting on encrypted storage and anonym Domain Registrations. No email verification required to order. Tor- and anonymity-friendly. Accepts Bitcoin, Lightning and Monero payments via self hosted BTCPayServer. No Google Captchas or 3rd party stuff. Has Storage VPS (Large Storage) servers, suitable for full nodes, provider runs their BTCPayServer on one of them!
VDS: North America
Private WebHost - Locations: Vienna (AT), Helsinki (FI), Frankfurt (DE), Netherlands (NL), Moscow (RU), Stockholm (SE), Zurich (CH), Paris (FR), Los Angeles (US). Company registered in Switzerland. Privacy/anonymity-focused hoster. Only an email required at signup, Signup via VPNs, proxies, and Tor allowed, payments via NOWPayments, CoinPayments.net. Lightning Network (LN) payments via CoinPayments. Working on self/hosted payments. The Swiss dedicated servers are Large Storage and suitable for Bitcoin full nodes. All servers can be used for Tor nodes (exit nodes allowed if you block port 25). Netherlands VPS servers are Large Storage. No Google Captcha. Support via tickets or encrypted email. Dedicated servers in Switzerland, working on more locations. Use promo code BITCOINVPS for 10% off. Very responsive support.
Pqhosting - Locations: Moldova (MD), Russia (RU), Latvia (LV), Netherlands (NL), Hong Kong (HK), Germany (DE), Ukraine (UA), United States (US), Hong Kong (HK), Canada (CA), Czechia (CZ), Slovakia (SK), Israel (IL), Turkey (TR), Poland (PL), Bulgaria (BG), Romania (RO). Company registered in Russia. Google Captchas. User reports they may suddenly require KYC to access your server or pay with crypto if your signup IP (e.g proxy/VPN/Tor) triggers fraud checks, or randomly if they decide they want to know who you are
Hostkey - Locations: US, Netherlands (NL), Russia (RU). Company registered in Netherlands. User reports they do not allow registration from Protonmail email addresses
Servers.Guru - Locations: Helsinki (FI), Nuremberg (DE), Falkenstein (DE), Ashburn (US). Company registered in United States. Anonymous signup allowed (only a valid email address is required). Tor traffic OK. Accepts Lightning Network (LN) payments. Uses self-hosted BitCartCC for Bitcoin payments (as well as others), takes DOGE, DASH, and Zcash/ZEC via Plisio.
MyNymBox - Locations: Frankfurt (DE), Nuremberg (DE), Helsinki (FI), Munich (DE), Portsmouth (UK), New York (US), Seattle (US), St. Louis (US), Singapore (Asia). Company registered in Seychelles. Resells services from Hetzner Cloud, Dedicated Servers and Contabo. Offers Shared Hosting on encrypted storage and anonym Domain Registrations. No email verification required to order. Tor- and anonymity-friendly. Accepts Bitcoin, Lightning and Monero payments via self hosted BTCPayServer. No Google Captchas or 3rd party stuff. Has Storage VPS (Large Storage) servers, suitable for full nodes, provider runs their BTCPayServer on one of them!
Pqhosting - Locations: Moldova (MD), Russia (RU), Latvia (LV), Netherlands (NL), Hong Kong (HK), Germany (DE), Ukraine (UA), United States (US), Hong Kong (HK), Canada (CA), Czechia (CZ), Slovakia (SK), Israel (IL), Turkey (TR), Poland (PL), Bulgaria (BG), Romania (RO). Company registered in Russia. Google Captchas. User reports they may suddenly require KYC to access your server or pay with crypto if your signup IP (e.g proxy/VPN/Tor) triggers fraud checks, or randomly if they decide they want to know who you are
Hostkey - Locations: US, Netherlands (NL), Russia (RU). Company registered in Netherlands. User reports they do not allow registration from Protonmail email addresses
MyNymBox - Locations: Frankfurt (DE), Nuremberg (DE), Helsinki (FI), Munich (DE), Portsmouth (UK), New York (US), Seattle (US), St. Louis (US), Singapore (Asia). Company registered in Seychelles. Resells services from Hetzner Cloud, Dedicated Servers and Contabo. Offers Shared Hosting on encrypted storage and anonym Domain Registrations. No email verification required to order. Tor- and anonymity-friendly. Accepts Bitcoin, Lightning and Monero payments via self hosted BTCPayServer. No Google Captchas or 3rd party stuff. Has Storage VPS (Large Storage) servers, suitable for full nodes, provider runs their BTCPayServer on one of them!
Signing up for a VPS generally requires an email address, but there are major privacy downsides to using most free services. Therefore we also list paid, privacy-friendly email providers who accept Bitcoin. For a non-Bitcoin-specific list of email providers ranked by observable technical security competence, see the Dismail list: https://dismail.de/serverlist.html
Mondoze - Locations: Cyberjaya Malaysia (MY). Company registered in Malaysia. Payments via Plisio. Dedicated server available if you contact them directly. Tor traffic OK as long as you conform to their TOS. Anonymous sign up OK. Large storage maybe available if you contact support.
Casbay - Locations: Malaysia (MY), Singapore (SG). Company registered in Malaysia. Accepts Bitcoin (and many more cryptocurrencies) via Plisio. No restrictions on Tor traffic. They only verify email address on signup, but may require KYC if you trigger anti-abuse/anti-fraud monitoring systems. Uses Google Captchas. Offers Large Storage servers, may be suitable for full nodes. Even larger storage capacity available if you contact them directly.
Domains4Bitcoins - Locations: United States (US), India (IN). Company registered in United States. Payments via BitPay – KYC and BitPay account required to purchase
Migadu - Locations: France (FR). Company registered in Switzerland. Widely respected. Very strict about TOS enforcement, black-hat users are not welcome here! Unlimited aliases/accounts/domains. Bitcoin payment for annual plans on request (email them or open a ticket)… but… only for existing accounts in good standing unless you can demonstrate you are not planning to use the service for spam/scam/fraud/etc. We currently host our email on Migadu and have found them to be very competent.
Neomailbox - Locations: Switzerland (CH). Company registered in Switzerland or Seychelles, it’s unclear. Paid-only. User reports they block Tor users from sending via SMTP
Protonmail - Locations: Switzerland (CH). Company registered in Switzerland. Very well known. Free service with paid options. IMAP/POP3 requires paid account. Paying with Bitcoin is somewhat complex: https://proton.me/support/pay-with-bitcoin Please tell Protonmail to simplify this and have their website accept Bitcoin under all circumstances.
Tutanota - Locations: Germany (DE). Company registered in Germany. Free service with paid options. No IMAP/POP3.
CounterMail - Locations: Sweden (SE). Company registered in Sweden. In business since 2010. Paid-only, requires invite code from another user to register
Runbox - Locations: Norway (NO). Company registered in Norway. Uses BitPay
AnonymousEmail.me - Locations: Moldova (MD). Company registered in ???. Send-only (no receive!) anonymous email. Accepts Bitcoin and Monero. Lets you anonymously send email to any address for a fee. Offers an optional semi-secure reply forwarding service, to forward replies to your real email. Tor OK, onion service is being developed.
SnowCore - Locations: Amsterdam (NL), Salt Lake City (US). Company registered in ???. Uses a Mullvad-style token login system so they don’t collect any personal information at all. Payments via NOWpayments. Cloudflare captchas. Dedicated servers available with 1TB SSDs for 30 EUR one time payment in some locations, might be useful as Large Storage servers for full nodes. Tor is allowed and fully supported.
Domains4Bitcoins - Locations: United States (US), India (IN). Company registered in United States. Payments via BitPay – KYC and BitPay account required to purchase
SnowCore - Locations: Amsterdam (NL), Salt Lake City (US). Company registered in ???. Uses a Mullvad-style token login system so they don’t collect any personal information at all. Payments via NOWpayments. Cloudflare captchas. Dedicated servers available with 1TB SSDs for 30 EUR one time payment in some locations, might be useful as Large Storage servers for full nodes. Tor is allowed and fully supported.
Domain name providers that take Bitcoin.
Njalla - Locations: Sweden (SE). Company registered in Nevis. Runs their own datacenter. Tor- and anonymity-friendly. Privacy-focused domain registration service that also offers VPS, VPN. Accepts BTC, XMR, ZEC among other options. Onion URL: http://njallalafimoej5i4eg7vlnqjvmb6zhdh27qxcatdn647jtwwwui3nad.onion
Private WebHost - Locations: Vienna (AT), Helsinki (FI), Frankfurt (DE), Netherlands (NL), Moscow (RU), Stockholm (SE), Zurich (CH), Paris (FR), Los Angeles (US). Company registered in Switzerland. Privacy/anonymity-focused hoster. Only an email required at signup, Signup via VPNs, proxies, and Tor allowed, payments via NOWPayments, CoinPayments.net. Lightning Network (LN) payments via CoinPayments. Working on self/hosted payments. The Swiss dedicated servers are Large Storage and suitable for Bitcoin full nodes. All servers can be used for Tor nodes (exit nodes allowed if you block port 25). Netherlands VPS servers are Large Storage. No Google Captcha. Support via tickets or encrypted email. Dedicated servers in Switzerland, working on more locations. Use promo code BITCOINVPS for 10% off. Very responsive support.
ThunderVM - Locations: Germany (DE), United States (US), Iceland (IS), Switzerland (CH), Netherlands (NL), France (FR), Italy (IT), United Kingdom (UK), Lithuania (LT), Poland (PL). Company registered in italy. Ok with hosting full nodes and Tor relays, but not Tor exit nodes, or (on VPS) mining cryptocurrency. Uses hCaptcha. Provider states that all their servers/hypervisors are installed and encrypted by them for user security. Uses BTCPayServer and self-hosted Monero (XMR) payments. Accepts Lightning Network (LN) payments via NowPayments
AlexHost - Locations: Tallbert (SE), Moldova (MD), Sofia (BG), Netherlands (NL). Company registered in Moldova. Email hosting included with shared web hosting service. Operates through AS200019, with own datacenter, network and hardware in the Republic of Moldova. Domain registration via OpenSRS/Tucows. They welcome people using their VPS for VPN endpoints. No KYC unless the payment gateway (e.g Paypal) asks for it (so pay with crypto). Doesn’t verify the personal data you give them otherwise. Tor bridges and relays are fine, Tor exit nodes are not allowed. Bitcoin payments accepted via BTCPayServer. Monero and other cryptocurrencies also accepted. May use Google Captchas (via Hostbill). Dedicated servers can be customized so they have Large Storage for running full nodes. Provider states they support freedom of speech and privacy.
AnonRDP - Locations: Poland (PL), France (FR). Company registered in Unknown. Anonymous signup allowed, only email address is required. Tor traffic is OK, but requires javascipt due to DdoS protection. Payments via Cryptomus. Accepts XMR, BTC, ETH, TRX, USDT, LTC, and more. Uses Google Captcha now, will soon have a self-hosted non-Javascript solution.
KernelHost - Locations: Frankfurt (DE). Company registered in Austria. Bitcoin payments via BTCPayServer. KVM based servers. Servers at Maincubes datacenter
MyNymBox - Locations: Frankfurt (DE), Nuremberg (DE), Helsinki (FI), Munich (DE), Portsmouth (UK), New York (US), Seattle (US), St. Louis (US), Singapore (Asia). Company registered in Seychelles. Resells services from Hetzner Cloud, Dedicated Servers and Contabo. Offers Shared Hosting on encrypted storage and anonym Domain Registrations. No email verification required to order. Tor- and anonymity-friendly. Accepts Bitcoin, Lightning and Monero payments via self hosted BTCPayServer. No Google Captchas or 3rd party stuff. Has Storage VPS (Large Storage) servers, suitable for full nodes, provider runs their BTCPayServer on one of them!
SafeCloud - Locations: Amsterdam (NL), Athens (GR), Barcelona (ES), Belgrade (RS), Brussels (BE), Bucharest (RO), Copenhagen (DK), Dublin (IE), Dusseldorf (DE), Florence (IT), Frankfurt (DE), Helsinki (FI), Kyiv (UA), Lisbon (PT), London (UK), Madrid (ES), Moscow (RU), Nicosia (CY), Oslo (NO), Paris (FR), Sofia (BG), Stockholm (SE), Warsaw (PL), Vienna (AT), Vilnius (LT), Zurich (CH), Ashburn (US), Atlanta (US), Chicago (US), Dallas (US), Kansas City (US), Los Angeles (US), Mexico City (MX), Miami (US), Montreal (CA), New York (US), Portland (US), Salt Lake City (US), San Juan(PR), Seattle (US), Toronto (CA), Vancouver (CA), Washington (US), Bogota (CO), Buenos Aires (AR), Guatemala City (GT), La Paz (BO), Lima (PE), Quito (EC), San Jose (CR), Santiago (CL), São Paulo (BR), Dubai (AE), Hong Kong (HK), Istanbul (TR), Kuala Lumpur (MY), Mumbai (IN), Singapore (SG), Taipei (TW), Tel Aviv (IL), Tokyo (JP), Fez (MA), Johannesburg (ZA), Lagos (NG), Sydney (AU). Company registered in Seattle (US). Tor traffic OK. Only valid email required at signup. Payments via Bitserver and manual payment processing. No Google Captchas. 100MBps-40Gbps dedicated bandwidth dedicated servers available. Use promo code BITCOINVPS for 10% discount on orders.
Private WebHost - Locations: Vienna (AT), Helsinki (FI), Frankfurt (DE), Netherlands (NL), Moscow (RU), Stockholm (SE), Zurich (CH), Paris (FR), Los Angeles (US). Company registered in Switzerland. Privacy/anonymity-focused hoster. Only an email required at signup, Signup via VPNs, proxies, and Tor allowed, payments via NOWPayments, CoinPayments.net. Lightning Network (LN) payments via CoinPayments. Working on self/hosted payments. The Swiss dedicated servers are Large Storage and suitable for Bitcoin full nodes. All servers can be used for Tor nodes (exit nodes allowed if you block port 25). Netherlands VPS servers are Large Storage. No Google Captcha. Support via tickets or encrypted email. Dedicated servers in Switzerland, working on more locations. Use promo code BITCOINVPS for 10% off. Very responsive support.
ThunderVM - Locations: Germany (DE), United States (US), Iceland (IS), Switzerland (CH), Netherlands (NL), France (FR), Italy (IT), United Kingdom (UK), Lithuania (LT), Poland (PL). Company registered in italy. Ok with hosting full nodes and Tor relays, but not Tor exit nodes, or (on VPS) mining cryptocurrency. Uses hCaptcha. Provider states that all their servers/hypervisors are installed and encrypted by them for user security. Uses BTCPayServer and self-hosted Monero (XMR) payments. Accepts Lightning Network (LN) payments via NowPayments
Namecheap - Locations: US. Company registered in US.
Domains4Bitcoins - Locations: United States (US), India (IN). Company registered in United States. Payments via BitPay – KYC and BitPay account required to purchase
CoinsHosting - Locations: New York (US). Company registered in Delaware, US. Tor traffic allowed only on dedicated servers. Doesn’t check the information you provide at signup (only asks for name and email). May require for KYC for suspicious or abusive customers but provider states they do so very rarely. Payments via CoinPayments and Coinify. Uses Google Captchas.
MyNymBox - Locations: Frankfurt (DE), Nuremberg (DE), Helsinki (FI), Munich (DE), Portsmouth (UK), New York (US), Seattle (US), St. Louis (US), Singapore (Asia). Company registered in Seychelles. Resells services from Hetzner Cloud, Dedicated Servers and Contabo. Offers Shared Hosting on encrypted storage and anonym Domain Registrations. No email verification required to order. Tor- and anonymity-friendly. Accepts Bitcoin, Lightning and Monero payments via self hosted BTCPayServer. No Google Captchas or 3rd party stuff. Has Storage VPS (Large Storage) servers, suitable for full nodes, provider runs their BTCPayServer on one of them!
SafeCloud - Locations: Amsterdam (NL), Athens (GR), Barcelona (ES), Belgrade (RS), Brussels (BE), Bucharest (RO), Copenhagen (DK), Dublin (IE), Dusseldorf (DE), Florence (IT), Frankfurt (DE), Helsinki (FI), Kyiv (UA), Lisbon (PT), London (UK), Madrid (ES), Moscow (RU), Nicosia (CY), Oslo (NO), Paris (FR), Sofia (BG), Stockholm (SE), Warsaw (PL), Vienna (AT), Vilnius (LT), Zurich (CH), Ashburn (US), Atlanta (US), Chicago (US), Dallas (US), Kansas City (US), Los Angeles (US), Mexico City (MX), Miami (US), Montreal (CA), New York (US), Portland (US), Salt Lake City (US), San Juan(PR), Seattle (US), Toronto (CA), Vancouver (CA), Washington (US), Bogota (CO), Buenos Aires (AR), Guatemala City (GT), La Paz (BO), Lima (PE), Quito (EC), San Jose (CR), Santiago (CL), São Paulo (BR), Dubai (AE), Hong Kong (HK), Istanbul (TR), Kuala Lumpur (MY), Mumbai (IN), Singapore (SG), Taipei (TW), Tel Aviv (IL), Tokyo (JP), Fez (MA), Johannesburg (ZA), Lagos (NG), Sydney (AU). Company registered in Seattle (US). Tor traffic OK. Only valid email required at signup. Payments via Bitserver and manual payment processing. No Google Captchas. 100MBps-40Gbps dedicated bandwidth dedicated servers available. Use promo code BITCOINVPS for 10% discount on orders.
Mondoze - Locations: Cyberjaya Malaysia (MY). Company registered in Malaysia. Payments via Plisio. Dedicated server available if you contact them directly. Tor traffic OK as long as you conform to their TOS. Anonymous sign up OK. Large storage maybe available if you contact support.
Casbay - Locations: Malaysia (MY), Singapore (SG). Company registered in Malaysia. Accepts Bitcoin (and many more cryptocurrencies) via Plisio. No restrictions on Tor traffic. They only verify email address on signup, but may require KYC if you trigger anti-abuse/anti-fraud monitoring systems. Uses Google Captchas. Offers Large Storage servers, may be suitable for full nodes. Even larger storage capacity available if you contact them directly.
Domains4Bitcoins - Locations: United States (US), India (IN). Company registered in United States. Payments via BitPay – KYC and BitPay account required to purchase
MyNymBox - Locations: Frankfurt (DE), Nuremberg (DE), Helsinki (FI), Munich (DE), Portsmouth (UK), New York (US), Seattle (US), St. Louis (US), Singapore (Asia). Company registered in Seychelles. Resells services from Hetzner Cloud, Dedicated Servers and Contabo. Offers Shared Hosting on encrypted storage and anonym Domain Registrations. No email verification required to order. Tor- and anonymity-friendly. Accepts Bitcoin, Lightning and Monero payments via self hosted BTCPayServer. No Google Captchas or 3rd party stuff. Has Storage VPS (Large Storage) servers, suitable for full nodes, provider runs their BTCPayServer on one of them!
SafeCloud - Locations: Amsterdam (NL), Athens (GR), Barcelona (ES), Belgrade (RS), Brussels (BE), Bucharest (RO), Copenhagen (DK), Dublin (IE), Dusseldorf (DE), Florence (IT), Frankfurt (DE), Helsinki (FI), Kyiv (UA), Lisbon (PT), London (UK), Madrid (ES), Moscow (RU), Nicosia (CY), Oslo (NO), Paris (FR), Sofia (BG), Stockholm (SE), Warsaw (PL), Vienna (AT), Vilnius (LT), Zurich (CH), Ashburn (US), Atlanta (US), Chicago (US), Dallas (US), Kansas City (US), Los Angeles (US), Mexico City (MX), Miami (US), Montreal (CA), New York (US), Portland (US), Salt Lake City (US), San Juan(PR), Seattle (US), Toronto (CA), Vancouver (CA), Washington (US), Bogota (CO), Buenos Aires (AR), Guatemala City (GT), La Paz (BO), Lima (PE), Quito (EC), San Jose (CR), Santiago (CL), São Paulo (BR), Dubai (AE), Hong Kong (HK), Istanbul (TR), Kuala Lumpur (MY), Mumbai (IN), Singapore (SG), Taipei (TW), Tel Aviv (IL), Tokyo (JP), Fez (MA), Johannesburg (ZA), Lagos (NG), Sydney (AU). Company registered in Seattle (US). Tor traffic OK. Only valid email required at signup. Payments via Bitserver and manual payment processing. No Google Captchas. 100MBps-40Gbps dedicated bandwidth dedicated servers available. Use promo code BITCOINVPS for 10% discount on orders.
This guide helps you to run a private Mastodon Instance. I personally prefer to use mastodon with docker and docker-compose to isolate my application from main server environment. The following docker compose yaml file helps you to deploy your instance. After that we try to modify the settings of our application to make it private instance (Personal Instance with just One Account). Put the content of the following docker-compose config into a seperate folder.
# This file is designed for production server deployment, not local development work
# For a containerized local dev environment, see: https://github.com/mastodon/mastodon/blob/main/README.md#docker
services:
db:
restart: always
image: postgres:14-alpine
shm_size: 256mb
networks:
- internal_network
healthcheck:
test: ['CMD', 'pg_isready', '-U', 'postgres']
volumes:
- ./mastodon/postgres14:/var/lib/postgresql/data
environment:
- 'POSTGRES_HOST_AUTH_METHOD=trust'
- 'POSTGRES_USER=mastodon'
- 'POSTGRES_DB=mastodon'
- 'POSTGRES_PASSWORD=pasword'
redis:
restart: always
image: redis:7-alpine
networks:
- internal_network
healthcheck:
test: ['CMD', 'redis-cli', 'ping']
volumes:
- ./mastodon/redis:/data
# es:
# restart: always
# image: docker.elastic.co/elasticsearch/elasticsearch:7.17.4
# environment:
# - "ES_JAVA_OPTS=-Xms512m -Xmx512m -Des.enforce.bootstrap.checks=true"
# - "xpack.license.self_generated.type=basic"
# - "xpack.security.enabled=false"
# - "xpack.watcher.enabled=false"
# - "xpack.graph.enabled=false"
# - "xpack.ml.enabled=false"
# - "bootstrap.memory_lock=true"
# - "cluster.name=es-mastodon"
# - "discovery.type=single-node"
# - "thread_pool.write.queue_size=1000"
# networks:
# - external_network
# - internal_network
# healthcheck:
# test: ["CMD-SHELL", "curl --silent --fail localhost:9200/_cluster/health || exit 1"]
# volumes:
# - ./elasticsearch:/usr/share/elasticsearch/data
# ulimits:
# memlock:
# soft: -1
# hard: -1
# nofile:
# soft: 65536
# hard: 65536
# ports:
# - '127.0.0.1:9200:9200'
web:
# You can uncomment the following line if you want to not use the prebuilt image, for example if you have local code changes
# build: .
image: ghcr.io/mastodon/mastodon:v4.2.12
restart: always
env_file: .env.production
command: bundle exec puma -C config/puma.rb
networks:
- external_network
- internal_network
healthcheck:
# prettier-ignore
test: ['CMD-SHELL',"curl -s --noproxy localhost localhost:3000/health | grep -q 'OK' || exit 1"]
ports:
- '127.0.0.1:3000:3000'
depends_on:
- db
- redis
# - es
volumes:
- ./mastodon/public/system/:/mastodon/public/system
streaming:
# You can uncomment the following lines if you want to not use the prebuilt image, for example if you have local code changes
# build:
# dockerfile: ./streaming/Dockerfile
# context: .
image: ghcr.io/mastodon/mastodon-streaming:latest
restart: always
env_file: .env.production
command: node ./streaming/index.js
networks:
- external_network
- internal_network
healthcheck:
# prettier-ignore
test: ['CMD-SHELL', "curl -s --noproxy localhost localhost:4000/api/v1/streaming/health | grep -q 'OK' || exit 1"]
ports:
- '127.0.0.1:4000:4000'
depends_on:
- db
- redis
sidekiq:
build: .
image: ghcr.io/mastodon/mastodon:v4.2.12
restart: always
env_file: .env.production
command: bundle exec sidekiq
depends_on:
- db
- redis
networks:
- external_network
- internal_network
volumes:
- ./mastodon/public/system/:/mastodon/public/system/
healthcheck:
test: ['CMD-SHELL', "ps aux | grep '[s]idekiq\ 6' || false"]
## Uncomment to enable federation with tor instances along with adding the following ENV variables
## http_hidden_proxy=http://privoxy:8118
## ALLOW_ACCESS_TO_HIDDEN_SERVICE=true
# tor:
# image: sirboops/tor
# networks:
# - external_network
# - internal_network
#
# privoxy:
# image: sirboops/privoxy
# volumes:
# - ./priv-config:/opt/config
# networks:
# - external_network
# - internal_network
networks:
external_network:
internal_network:
internal: true
The .env.prodution
file store critical information about your instance.
It is better to use password with your redis instance.
DB_HOST=db
DB_PORT=5432
DB_NAME=mastodon
DB_USER=mastodon
DB_PASS=password
REDIS_HOST=redis
REDIS_PORT=6379
REDIS_PASSWORD=
Run docker-compose run --rm web bundle exec rake mastodon:setup
in the folder which holds docker-compose.yml
then follow the instructions and answer the questions.
Run the following commands to create a user and make it admin.
export RAILS_ENV=production tootctl accounts create --email EMAIL --confirmed --role Admin
export RAILS_ENV=production tootctl accounts modify USERNAME --approve
export RAILS_ENV=production tootctl accounts approve USERNAME
The commands above give you the requirement information to login to your server.
I prefer using nginx to expose my instance to the internet.
map $http_upgrade $connection_upgrade {
default upgrade;
'' close;
}
upstream backend {
server 127.0.0.1:3000 fail_timeout=0;
}
upstream streaming {
# Instruct nginx to send connections to the server with the least number of connections
# to ensure load is distributed evenly.
least_conn;
server 127.0.0.1:4000 fail_timeout=0;
# Uncomment these lines for load-balancing multiple instances of streaming for scaling,
# this assumes your running the streaming server on ports 4000, 4001, and 4002:
# server 127.0.0.1:4001 fail_timeout=0;
# server 127.0.0.1:4002 fail_timeout=0;
}
proxy_cache_path /var/cache/nginx levels=1:2 keys_zone=CACHE:10m inactive=7d max_size=1g;
server {
listen <IP>:80;
server_name domain.com;
root /var/www/mastodon/public;
location /.well-known/acme-challenge/ { allow all; }
location / { return 301 https://$host$request_uri; }
}
server {
listen <IP>:443 ssl http2;
server_name domain.com;
ssl_protocols TLSv1.2 TLSv1.3;
ssl_ciphers ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384:DHE-RSA-CHACHA20-POLY1305;
ssl_prefer_server_ciphers on;
ssl_session_cache shared:SSL:10m;
ssl_session_tickets off;
access_log /var/log/nginx/mastodonaccess.log;
error_log /var/log/nginx/mastodonerror.log warn;
ssl_certificate /root/ghariib.ir.crt;
ssl_certificate_key /root/ghariib.ir.key;
keepalive_timeout 70;
sendfile on;
client_max_body_size 99m;
root /var/www/mastodon/public;
gzip on;
gzip_disable "msie6";
gzip_vary on;
gzip_proxied any;
gzip_comp_level 6;
gzip_buffers 16 8k;
gzip_http_version 1.1;
gzip_types text/plain text/css application/json application/javascript text/xml application/xml application/xml+rss text/javascript image/svg+xml image/x-icon;
location / {
try_files $uri @proxy;
}
location = /sw.js {
add_header Cache-Control "public, max-age=604800, must-revalidate";
add_header Strict-Transport-Security "max-age=63072000; includeSubDomains";
try_files $uri =404;
}
location ~ ^/assets/ {
add_header Cache-Control "public, max-age=2419200, must-revalidate";
add_header Strict-Transport-Security "max-age=63072000; includeSubDomains";
try_files $uri =404;
}
location ~ ^/avatars/ {
add_header Cache-Control "public, max-age=2419200, must-revalidate";
add_header Strict-Transport-Security "max-age=63072000; includeSubDomains";
try_files $uri =404;
}
location ~ ^/emoji/ {
add_header Cache-Control "public, max-age=2419200, must-revalidate";
add_header Strict-Transport-Security "max-age=63072000; includeSubDomains";
try_files $uri =404;
}
location ~ ^/headers/ {
add_header Cache-Control "public, max-age=2419200, must-revalidate";
add_header Strict-Transport-Security "max-age=63072000; includeSubDomains";
try_files $uri =404;
}
location ~ ^/packs/ {
add_header Cache-Control "public, max-age=2419200, must-revalidate";
add_header Strict-Transport-Security "max-age=63072000; includeSubDomains";
try_files $uri =404;
}
location ~ ^/shortcuts/ {
add_header Cache-Control "public, max-age=2419200, must-revalidate";
add_header Strict-Transport-Security "max-age=63072000; includeSubDomains";
try_files $uri =404;
}
location ~ ^/sounds/ {
add_header Cache-Control "public, max-age=2419200, must-revalidate";
add_header Strict-Transport-Security "max-age=63072000; includeSubDomains";
try_files $uri =404;
}
location ~ ^/system/ {
# root /root/mastodon/public/system; # New root path for /system/
add_header Cache-Control "public, max-age=2419200, immutable";
add_header Strict-Transport-Security "max-age=63072000; includeSubDomains";
add_header X-Content-Type-Options nosniff;
add_header Content-Security-Policy "default-src 'none'; form-action 'none'";
try_files $uri =404;
}
location ^~ /api/v1/streaming {
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header Proxy "";
proxy_pass http://streaming;
proxy_buffering off;
proxy_redirect off;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
add_header Strict-Transport-Security "max-age=63072000; includeSubDomains";
tcp_nodelay on;
}
location @proxy {
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header Proxy "";
proxy_pass_header Server;
proxy_pass http://backend;
proxy_buffering on;
proxy_redirect off;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection $connection_upgrade;
proxy_cache CACHE;
proxy_cache_valid 200 7d;
proxy_cache_valid 410 24h;
proxy_cache_use_stale error timeout updating http_500 http_502 http_503 http_504;
add_header X-Cached $upstream_cache_status;
tcp_nodelay on;
}
error_page 404 500 501 502 503 504 /500.html;
}
This guide helps you to run a private Matrix (Element) instance with Federation mechanism to communicate with other servers. I prefer to use docker with docker-compose to run an isolated environment.
version: '3.8'
services:
postgres:
restart: always
image: docker.io/postgres:13-alpine
environment:
LANG: en_US.utf8
POSTGRES_USER: synapse
POSTGRES_PASSWORD: password
POSTGRES_DB: synapse
volumes:
- ./matrix/schemas/:/var/lib/postgresql/data
synapse:
image: ghcr.io/element-hq/synapse:v1.113.0
environment:
- VIRTUAL_HOST=matrix.domain.com
- SYNAPSE_SERVER_NAME=matrix.domain.com
- SYNAPSE_REPORT_STATS=no
volumes:
- ./matrix/data/:/data
ports:
# - "8448:8448" # Matrix Federation API (HTTPS)
- "127.0.0.1:8008:8008" # Client-Server API (HTTP)
# - "3478:3478" # STUN/TURN
# - "5349:5349" # STUN/TURN over TLS
# - "49152-49300:49152-49300/udp" # TURN relay range
depends_on:
- postgres
restart: always
user: "991:991"
Generate homeserver.yaml
which is necessary for running element server.
docker run -v ./matrix/data:/data --rm -e SERVER_NAME=matrix.domain.com -e REPORT_STATS=yes ghcr.io/element-hq/synapse:v1.113.0 generate
Put the homeserver.yaml
file under the mentioned path in the docker-compose.yml
file.
# Configuration file for Synapse.
#
# This is a YAML file: see [1] for a quick introduction. Note in particular
# that *indentation is important*: all the elements of a list or dictionary
# should have the same indentation.
#
# [1] https://docs.ansible.com/ansible/latest/reference_appendices/YAMLSyntax.html
#
# For more information on how to configure Synapse, including a complete accounting of
# each option, go to docs/usage/configuration/config_documentation.md or
# https://element-hq.github.io/synapse/latest/usage/configuration/config_documentation.html
server_name: "matrix.domain.com"
pid_file: /data/homeserver.pid
listeners:
- port: 8008
tls: false
type: http
x_forwarded: true
resources:
- names: [client, federation]
compress: false
rc_login:
address:
per_second: 5.00
burst_count: 100
account:
per_second: 5.00
burst_count: 100
failed_attempts:
per_second: 5.00
burst_count: 100
#database:
# name: psycopg2
# args:
# user: synapse
# password: synapse
# host: postgres
# database: synapse
# cp_min: 5
# cp_max: 10
database:
name: psycopg2
args:
user: synapse
password: password
database: synapse
# This hostname is accessible through the docker network and is set
# by docker-compose. If you change the name of the service it will be different
host: postgres
log_config: "/data/matrix.domain.com.log.config"
media_store_path: /data/media_store
registration_shared_secret: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
report_stats: true
macaroon_secret_key: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
form_secret: "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
enable_registration: false
enable_registration_without_verification: false
signing_key_path: "/data/matrix.domain.com.signing.key"
trusted_key_servers:
- server_name: "matrix.org"
# vim:ft=yaml
To expose the Matrix server to the internet I use nginx with the following configuration.
server {
listen <IP>:8448 ssl http2;
server_name matrix.domain.com;
ssl_certificate /root/matrix.domain.com.tls.crt;
ssl_certificate_key /root/matrix.domain.com.tls.key;
location / {
proxy_pass http://127.0.0.1:8008;
proxy_http_version 1.1;
### Set WebSocket headers ###
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header X-Forwarded-For $remote_addr;
# Nginx by default only allows file uploads up to 1M in size
# Increase client_max_body_size to match max_upload_size defined in homeserver.yaml
client_max_body_size 20M;
}
}
server {
listen <IP>:443 ssl http2;
server_name matrix.domain.com;
ssl_certificate /root/matrix.domain.com.tls.crt;
ssl_certificate_key /root/matrix.domain.com.tls.key;
location / {
proxy_pass http://127.0.0.1:8008;
proxy_http_version 1.1;
### Set WebSocket headers ###
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header X-Forwarded-For $remote_addr;
# Nginx by default only allows file uploads up to 1M in size
# Increase client_max_body_size to match max_upload_size defined in homeserver.yaml
client_max_body_size 20M;
}
}
A curated list of things related to GitHub Actions.
Actions are triggered by GitHub platform events directly in a repo and run on-demand workflows either on Linux, Windows or macOS virtual machines or inside a container in response. With GitHub Actions you can automate your workflow from idea to production.
Tool actions for your workflow.
Automate management for issues, pull requests, and releases.
Set up your GitHub Actions workflow with a specific version of your programming languages.
ssh-agent
- Run ssh-agent
with additional SSH keys to access private repositories..properties
files..properties
files.package.json
) version changes.$github.token
) and cmdlets, return value => action output.ergebnis/composer-normalize
to ensure your PHP project has a normalized composer.json
stolt/lean-package-validator
to ensure your package has only the required runtime
artifactsformat
and/or lint
script used by the packagePlease don’t hesitate to make a PR if you have more resources to share. Check out contributing.md for more information.
Analytics is the systematic computational analysis of data or statistics. It is used for the discovery, interpretation, and communication of meaningful patterns in data. Related: Database Management, Personal Dashboards
AGPL-3.0
Docker
GPL-3.0
Perl
AGPL-3.0
Nodejs/Docker
Apache-2.0
Java/Docker
AGPL-3.0
Nodejs/Docker
MIT
Go/Docker
GPL-2.0
C
EUPL-1.2
Go
GPL-3.0
PHP
AGPL-3.0
Java/Docker
MIT
PHP/Docker
MIT
Python/Nodejs
Apache-2.0
Go/Docker
GPL-2.0
PHP
AGPL-3.0
Elixir
MIT
Python
AGPL-3.0/MIT
Docker
BSD-2-Clause
Docker
AGPL-3.0
Docker/K8S/Go/Nodejs
Apache-2.0
Python/Docker
⚠
- Social media management, analytics, and reporting platform supporting nine social media networks out-of-the-box. GPL-3.0
Nodejs
Apache-2.0
Python
AGPL-3.0
Docker
MIT
Nodejs/Docker
Digital archiving and preservation software. Related: Content Management Systems (CMS) See also: awesome-web-archiving
MIT
Python/Docker
ECL-2.0
Ruby
MIT
Go/Docker
AGPL-3.0
Python
GPL-3.0
PHP
⚠
- Twitch VOD and Live Stream archiving platform. Includes a rendered chat for each archive. GPL-3.0
Docker
⚠
- An automatic Twitch recorder capable of capturing live streams, chat messages and stream metadata. MIT
Python/Nodejs/Docker
GPL-3.0
Nodejs
MIT
PHP
GPL-3.0
Go
BSD-3-Clause
Go
Automation software designed to reduce human intervention in processes. Related: Internet of Things (IoT), Software Development - Continuous Integration & Deployment
MIT
Docker
Apache-2.0
Python/Docker
AGPL-3.0
Docker
GPL-3.0
Python/Docker
Apache-2.0
Python/Docker
AGPL-3.0
Docker
GPL-3.0
Go/Docker
Apache-2.0
Docker/Java/Nodejs
WTFPL
Python
GPL-3.0
Python
BSD-3-Clause
Python
GPL-3.0
PHP
MIT
Ruby
Apache-2.0
Docker
MIT
Python
MIT
PHP
⚠
- LazyLibrarian is a program to follow authors and grab metadata for all your digital reading needs. It uses a combination of Goodreads Librarything and optionally GoogleBooks as sources for author info and book info. GPL-3.0
Python
MIT
Nodejs
GPL-3.0
C#/Docker
GPL-3.0
Docker
GPL-3.0
Python
⚠
- A Web GUI to automatically download music from YouTube add metadata from Spotify, Deezer or Musicbrainz. GPL-3.0
Python
AGPL-3.0
Python/Nodejs/Docker
GPL-3.0
Python/Docker
GPL-3.0
Python
AGPL-3.0
Go
GPL-3.0
Python
GPL-3.0
C#/Docker
GPL-3.0
Python/Docker
GPL-3.0
C#/Docker
Apache-2.0
Python
⚠
- Syncs YouTube channels and playlists to a locally hosted media server. AGPL-3.0
Docker/Python
GPL-3.0
Python
MIT
Nodejs/Docker
MIT
Python/Docker
MPL-2.0
Docker/Go/Nodejs
BSD-3-Clause
Go/Docker
A blog is a discussion or informational website consisting of discrete, diary-style text entries (posts). Related: Static Site Generators, Content Management Systems (CMS) See also: WeblogMatrix
Apache-2.0
Javascript
AGPL-3.0
PHP/Docker
BSD-3-Clause
PHP
GPL-2.0
PHP
GPL-2.0
PHP
MIT
Nodejs
MIT
Ruby
Apache-2.0
PHP
MIT
Python
GPL-3.0
PHP
BSD-3-Clause
PHP
AGPL-3.0
Go
Event scheduling, reservation, and appointment management software. Related: Polls and Events
GPL-3.0
Java
MIT
Nodejs
GPL-3.0
PHP
OSL-3.0
PHP/Nodejs
AGPL-3.0
Nodejs/Docker
GPL-3.0
Docker
Software which allows users to add, annotate, edit, and share bookmarks of web documents.
MIT
Nodejs/Docker
GPL-3.0
Python/deb
AGPL-3.0
Nodejs/PHP
AGPL-3.0
Haskell
MPL-2.0
Nodejs/Java
MIT
Nodejs/Docker
MIT
Ruby
AGPL-3.0
Docker
GPL-3.0
Docker/PHP
MIT
Docker/Python/Nodejs
MIT
Docker/Nodejs
MIT
Docker
AGPL-3.0
Go/Docker
GPL-3.0
Docker/Nodejs/PHP
Zlib
PHP/deb
MIT
Go/Docker
GPL-3.0
Docker
AGPL-3.0
PHP
CalDAV and CardDAV protocol servers and web clients/interfaces for Electronic calendar, address book and contact management. Related: Groupware See also: Comparison of CalDAV and CardDAV implementations - Wikipedia
GPL-3.0
PHP
GPL-2.0
PHP/deb
MIT
PHP
AGPL-3.0
Python/Django
AGPL-3.0
Javascript
GPL-3.0
Nodejs/Docker
GPL-3.0
Python/deb
MIT
PHP
GPL-3.0
Python/deb
Communication software used to provide remote access to systems and exchange files and messages in text, audio and/or video formats between different computers or users, using their own custom protocols.
MIT
Go/Docker
MIT
Python/Docker/deb
MIT
Go/Docker/K8S
MIT
Ruby/Docker/K8S
GPL-2.0
Nodejs
Apache-2.0
Rust
MIT
Nodejs
Apache-2.0
Docker
Apache-2.0
Go
Apache-2.0
Nodejs
GPL-3.0
C
MIT
Go/Docker
GPL-2.0
Java
GPL-3.0
C++
Apache-2.0
PHP
AGPL-3.0
Docker/Nodejs/Shell
Apache-2.0
PHP
AGPL-3.0/Apache-2.0
Go/Docker/K8S
MIT
Nodejs
BSD-3-Clause
C++/deb
MIT
C#
MIT
Docker/Nodejs
Apache-2.0/GPL-2.0
Go/Docker/K8S
Apache-2.0
Go
ISC
Go
GPL-2.0
C++
AGPL-3.0
Rust
MIT
Nodejs/Docker/K8S
GPL-3.0
Docker/Go
MIT
Python
AGPL-3.0
Haskell
MIT
Nodejs/Docker/K8S
GPL-3.0
C++
Apache-2.0
Python/deb
CC0-1.0
Java
Apache-2.0
Docker/K8S/Nodejs
⚠
- Outgoing SMS API that uses carrier-specific gateways to deliver your text messages for free, and without ads. MIT
Javascript
MIT
Docker/K8S
GPL-3.0
Go
GPL-3.0
C
AGPL-3.0
Docker
AGPL-3.0
Nodejs/Docker
Apache-2.0
Go/Docker
Apache-2.0
Python
Simple deployment of E-mail servers, e.g. for inexperienced or impatient admins.
MIT
PHP/Docker
GPL-3.0
Ansible/Python
MIT
Docker
LGPL-3.0
Go
GPL-3.0
Shell
GPL-3.0
Shell
GPL-3.0
Python
GPL-3.0
Shell
GPL-3.0
Go
CC0-1.0
Shell
GPL-2.0
Docker/PHP
MIT
Docker/Python
ISC
Python
MIT
Docker/Ruby
GPL-3.0
Nix
MIT
Docker/Python
AGPL-3.0
Rust/Docker
EUPL-1.2
Nodejs/Docker
Mail Delivery Agents (MDAs) - IMAP/POP3 server software.
BSD-3-Clause-Attribution
C
MIT/LGPL-2.1
C/deb
GPL-3.0
C
AGPL-3.0
Rust/Docker
Mail Transfer Agents (MTAs) - SMTP servers.
Apache-2.0
Go
GPL-3.0
C/deb
BSD-3-Clause
C
GPL-3.0
C++
GPL-3.0
C/deb
MIT
Nodejs
MIT
Ruby
ISC
C/deb
Apache-2.0
Python/PHP/Docker
IPL-1.0
C/deb
Sendmail
C/deb
MIT
Python
AGPL-3.0
Rust
Mailing list servers and mass mailing software - one message to many recipients.
GPL-2.0
Perl
GPL-3.0
Python
AGPL-3.0
Docker
AGPL-3.0
Go/Docker
GPL-3.0
Python
GPL-3.0
PHP
AGPL-3.0
PHP
GPL-3.0
Python
GPL-3.0
Ruby
GPL-2.0
Perl
Webmail clients.
LGPL-2.1
PHP
GPL-3.0
PHP/deb
AGPL-3.0
PHP
GPL-2.0
PHP
IRC communication software.
Artistic-2.0
Perl/Docker
MIT
Go/Docker
GPL-3.0
Nodejs
GPL-2.0
C++/Docker
Apache-2.0
Nodejs
GPL-2.0
C/deb
GPL-2.0
C++
BSD-3-Clause
Go
MIT
Nodejs/Docker
GPL-2.0
C
GPL-3.0
C/Docker/deb
Apache-2.0
C++/deb
GPL-2.0
C/deb
AGPL-3.0
PHP
MIT
Docker/PHP
AGPL-3.0
C/Docker
GPL-2.0
PHP
MPL-2.0
C
MPL-1.1
PHP
GPL-2.0
C/deb
GPL-2.0
C
MIT
Docker/K8S
Apache-2.0
Java
AGPL-3.0
Nodejs/Go/Docker
GPL-3.0
Python
GPL-2.0
C++/Ruby
Social Networking and Forum software.
AGPL-3.0
Elixir/Docker
GPL-3.0
PHP
Apache-2.0
Docker/Go
EUPL-1.2
Assembly
GPL-2.0
PHP
AGPL-3.0
Docker/Nodejs
Apache-2.0
Docker/Nodejs
AGPL-3.0
Ruby
GPL-2.0
Docker
GPL-2.0
PHP
BSD-2-Clause
Shell/Docker/Nodejs
MIT
PHP
AGPL-3.0
PHP
AGPL-3.0
Docker/Go
AGPL-3.0
Docker/Rust
MIT
PHP
AGPL-3.0
PHP
MIT
Python/Docker
AGPL-3.0
PHP/Nodejs/Docker
AGPL-3.0
Docker/Rust
⚠
- Private front-end for Reddit written in Rust. AGPL-3.0
Rust
AGPL-3.0
Docker
AGPL-3.0
Ruby
GPL-2.0
Docker
AGPL-3.0
Nodejs/Docker
AGPL-3.0
PHP/Docker
LGPL-3.0
PHP
⚠
- An alternative front end to twitter. (Source Code) AGPL-3.0
Nim/Docker
GPL-3.0
Nodejs
BSD-3-Clause
Go
GPL-2.0
PHP
GPL-2.0
PHP
AGPL-3.0
PHP
AGPL-3.0
Elixir
AGPL-3.0
Ruby
MIT
Docker/Go
AGPL-3.0
Ruby/Nodejs
Apache-2.0
Java/Docker/K8S
BSD-3-Clause
PHP
AGPL-3.0
Docker/Python
BSD-3-Clause
Docker
AGPL-3.0
Docker/Scala
MIT
Go
AGPL-3.0
PHP
Video/Web Conferencing tools and software. Related: Conference Management
LGPL-3.0
Java
MIT
Go
GPL-3.0
C
Apache-2.0
Nodejs/Docker/deb
Apache-2.0
Java/deb
MIT
Nodejs/Docker
AGPL-3.0
Nodejs/Docker
AGPL-3.0
Nodejs/Docker
MIT
Docker/Go
Extensible Messaging and Presence Protocol servers.
GPL-2.0
Erlang/Docker
GPL-2.0
Erlang/Docker/K8S
Apache-2.0
Java
MIT
Lua
Apache-2.0
Docker
GPL-3.0
Java
Extensible Messaging and Presence Protocol Web clients/interfaces.
MPL-2.0
Javascript
MIT
Javascript
AGPL-3.0
Python
AGPL-3.0
Python
Management and administration tools for community supported agriculture and food cooperatives. Related: E-commerce
MIT
Ruby
MIT
Docker
AGPL-3.0
PHP/Docker
AGPL-3.0
Docker/Ruby
LGPL-3.0
Python
MIT
PHP
AGPL-3.0
Ruby
AGPL-3.0
Scala
AGPL-3.0
Nodejs
Software for submission of abstracts and preparation/management of academic conferences.
GPL-2.0
PHP
MIT
Ruby/Docker
MIT
Python
AGPL-3.0
PHP/Docker
MIT
Docker
MIT
Ruby/Docker
Apache-2.0
Python
Content Management Systems offer a practical way to setup a website with many features, using third party plugins, themes and functionality that are easy to add and customize. Related: Blogging Platforms, Static Site Generators, Photo and Video Galleries
LGPL-3.0
Java
MIT
Nodejs
GPL-2.0
PHP
LGPL-2.1
PHP
⚠
- Simple application to build a site or blog in seconds. Bludit uses flat-files (text files in JSON format) to store posts and pages. (Demo, Source Code) MIT
PHP
MIT
PHP
GPL-2.0
PHP
MIT
PHP
MIT
PHP
LGPL-3.0
PHP
CPAL-1.0
PHP
GPL-2.0
PHP
AGPL-3.0
PHP
MIT
Nodejs
GPL-2.0
PHP
MIT
Nodejs
GPL-2.0
PHP
GPL-3.0
PHP
AGPL-3.0
Ruby
GPL-3.0
PHP
MIT
Nodejs
GPL-3.0
PHP/Docker
ZPL-2.0
Python/Docker
MIT
Ruby
AGPL-3.0
Go
MIT
PHP/Docker
MIT
PHP
BSD-3-Clause
PHP
GPL-3.0
PHP
MIT
.NET
MIT
Nodejs
GPL-2.0
PHP
MIT
PHP
GPL-2.0
PHP
MIT
.NET
BSD-3-Clause
Python
MIT
PHP
MIT
PHP
GPL-2.0
PHP
Web interfaces for database management. Includes tools for database analytics and visualization. Related: Analytics, Automation See also: dbdb.io - Database of Databases
Apache-2.0/GPL-2.0
PHP
MIT
Elixir/Nodejs/Docker
MIT
Docker
MIT
Docker/K8S/Go
MIT
Nodejs/Docker
Apache-2.0
Docker
MIT
Docker
Apache-2.0
Python/Docker
GPL-3.0
Nodejs/Docker
MIT
Nodejs
GPL-2.0
PHP
GPL-3.0
Docker/Python
GPL-3.0
Docker/Python
GPL-3.0
Nodejs/Docker
AGPL-3.0
Docker
DNS servers and management tools with advertisement blocking functionality, primarily aimed at home or small networks. See also: awesome-sysadmin/DNS - Servers, awesome-sysadmin/DNS - Control Panels & Domain Management
GPL-3.0
Docker
Apache-2.0
Go/Docker
Apache-2.0
Shell
EUPL-1.2
Shell/PHP/Docker
GPL-3.0
Docker/C#
A document management system (DMS) is a system used to receive, track, manage and store documents and reduce paper.
MIT
PHP/Nodejs/Docker
GPL-3.0
Scala/Java/Docker
AGPL-3.0
Docker
GPL-3.0
Docker/Ruby
GPL-3.0
PHP
Apache-2.0
Python
⚠
- Free, open source & self-hosted document signing software (alternative to DocuSign). (Source Code) AGPL-3.0
Nodejs/Docker
GPL-3.0
Python/Docker
Apache-2.0
Python/Docker/K8S
Apache-2.0
Docker/Java
GPL-2.0
Docker/Java
Ebook library management software.
MIT
Java/Docker
GPL-3.0
Python
GPL-3.0
Python/deb
GPL-3.0
.NET/Docker
MIT
Java/Docker
GPL-3.0
C++
MIT
Rust
GPL-3.0
PHP
Institutional repository and digital library management software.
BSD-3-Clause
Java
GPL-3.0
Perl
Apache-2.0
Java
MIT
Python
GPL-3.0
PHP
Apache-2.0
Ruby
An integrated library system is an enterprise resource planning system for a library, used to track items owned, orders made, bills paid, and patrons who have borrowed. Related: Content Management Systems (CMS), Archiving and Digital Preservation (DP)
GPL-2.0
PLpgSQL
GPL-3.0
Perl
AGPL-3.0
Python/Docker
E-commerce software. Related: Community-Supported Agriculture (CSA)
LGPL-3.0/MIT
PHP
MIT
PHP
GPL-3.0
PHP
GPL-2.0
PHP
⚠
- E-commerce platform with essential commerce features. Modular architecture and fully customizable. (Demo, Source Code) GPL-3.0
Docker/Nodejs
⚠
- Shopping cart in 1 file (with support for payment by card or cryptocurrency). MIT
Go/Docker
OSL-3.0
PHP
MIT
Nodejs
Apache-2.0
PHP
MIT
PHP
GPL-3.0
PHP
GPL-3.0
PHP
OSL-3.0
PHP
Apache-2.0
Python/Docker
MIT
PHP
BSD-3-Clause
Docker/Python
MIT
PHP
BSD-3-Clause
Ruby/Docker
BSD-3-Clause
Ruby
MIT
PHP
LGPL-3.0
PHP
MIT
Nodejs
GPL-3.0
PHP
Federated identity and authentication software. Please visit awesome-sysadmin/Identity Management
A news aggregator, also termed a feed aggregator, feed reader, news reader, RSS reader, is an application that aggregates web content such as newspapers/blogs/vlogs/podcasts in one location for easy viewing.
MIT
Nodejs
Apache-2.0
Java/Docker
⚠
- A simple, lightweight & customizable RSS News Feed for your Discord Server. MIT
Docker
GPL-3.0
Go/Docker
AGPL-3.0
PHP/Docker
MIT
Go/Docker
MIT
Go
AGPL-3.0
Docker/Python
CC0-1.0
PHP
AGPL-3.0
PHP
Apache-2.0
Go/deb/Docker
MIT
Python
AGPL-3.0
Python
BSD-3-Clause
Python
MIT
Go/Docker
Unlicense
PHP/Docker
MIT
PHP
GPL-2.0
Python/deb
MIT
Nodejs/Docker
GPL-3.0
PHP
MIT
Ruby
MIT
Python
GPL-3.0
Docker/PHP
MIT
Go
File transfer, sharing and synchronization software software. Related: Groupware
GPL-3.0
Haskell
Apache-2.0
Python
AGPL-3.0
PHP/deb
BSD-2-Clause
C/deb
AGPL-3.0
PHP/Docker/deb
AGPL-3.0
Java
AGPL-3.0
Nodejs/Docker
AGPL-3.0
Go
GPL-3.0
C
GPL-2.0/GPL-3.0/AGPL-3.0/Apache-2.0
C
MPL-2.0
Go/Docker/deb
GPL-3.0
deb/OCaml
Object storage is a computer data storage that manages data as objects, as opposed to other storage architectures like file systems which manages data as a file hierarchy, and block storage which manages data as blocks within sectors and tracks.
AGPL-3.0
Docker/Rust
AGPL-3.0
Go/Docker/K8S
Apache-2.0
Go
AGPL-3.0
Go/deb/Docker
Apache-2.0
Docker/Nodejs
Apache-2.0
Go/Docker
Peer-to-peer file sharing is the distribution and sharing of digital media using peer-to-peer (P2P) networking technology.
MIT
Nodejs
MIT
Nodejs
GPL-3.0
Python/deb
MIT
Nodejs
GPL-2.0
C++
MPL-2.0
Nodejs/Docker
GPL-3.0
C++/deb
Simplified file servers for sharing of one-time/short-lived/temporary files, providing single-click or drag-and-drop upload functionality.
ISC
Nodejs/Docker
MIT
Docker/Nodejs
AGPL-3.0
Python
GPL-3.0
PHP/Docker
GPL-3.0
C++/deb
GPL-3.0
Go/Docker
MIT
Go
Apache-2.0
Go/Docker
AGPL-3.0
Perl
GPL-2.0
Python/deb
GPL-3.0
Docker
AGPL-3.0
Go/Docker
GPL-3.0
Docker
Apache-2.0
PHP/Docker
BSD-2-Clause
Docker/Nodejs
MIT
Go/Docker
GPL-2.0
PHP
BSD-2-Clause
Nodejs
LGPL-3.0
Docker/Go
GPL-3.0
Scala/Java/deb/Docker
MIT
Docker
MIT
Go
MIT
PHP
MIT
PHP
AGPL-3.0
PHP/Docker
MIT
Docker/Nodejs
Web-based file managers. Related: Groupware
GPL-3.0
Javascript
MIT
Python
MIT
PHP
Apache-2.0
Go
MIT
PHP/Docker
AGPL-3.0
Docker
MIT
Go
MIT
PHP
MIT
Go/Docker/K8S
MIT
Rust
BSD-4-Clause
PHP
MIT
Nodejs
AGPL-3.0
Nodejs
GPL-3.0
PHP
Multiplayer game servers and browser games. Related: Games - Administrative Utilities & Control Panels
MIT/GPL-2.0/Zlib
C++/C/deb
MPL-2.0
Javascript
AGPL-3.0
Nodejs
AGPL-3.0
Scala
GPL-3.0
Java
LGPL-2.1/MIT/Zlib
C++/deb
⚠
- Multi Theft Auto (MTA) is a software project that adds network play functionality to Rockstar North’s Grand Theft Auto game series, in which this functionality is not originally found. (Source Code) GPL-3.0
C++
GPL-2.0
C++/Docker
GPL-3.0
Python/C++
MIT
Python
Apache-2.0
Scala
Zlib/MIT/CC-BY-SA-4.0
C/C++/deb
⚠
- RomM (Rom Manager) is a web based retro roms manager integrated with IGDB. GPL-3.0
Docker
GPL-3.0
Nodejs
GPL-2.0
C++/deb
GPL-3.0
Rust
MIT
Nodejs
GPL-2.0
Lua
Utilities for managing game servers. Related: Games
GPL-3.0
C++
GPL-3.0
Docker/Python
GPL-3.0
PHP/Shell
GPL-3.0
Nodejs
⚠
- LAN Party game caching made easy. (Source Code) MIT
Docker/Shell
MIT
Shell
AGPL-3.0
Docker/Rust
MIT
PHP
Apache-2.0
Go
MIT
Go
CC-BY-SA-4.0
PHP
GPL-3.0
C++/deb/Docker
Genealogy software used to record, organize, and publish genealogical data.
MIT
Javascript
GPL-2.0
OCaml
AGPL-3.0
Docker
GPL-3.0
PHP
Collaborative software or groupware is designed to help people working on a common task to attain their goals. Groupware often regroups multiple services such as file sharing, calendar/events management, address books… in a single, integrated application.
GPL-3.0
C/Docker/Shell
Apache-2.0
Go
GPL-3.0
Nodejs
AGPL-3.0
Nodejs
AGPL-3.0
Nodejs
AGPL-3.0
Nodejs
GPL-2.0
PHP
AGPL-3.0
PHP
AGPL-3.0
PHP
Apache-2.0
Java
LGPL-2.1
Objective-C
AGPL-3.0
PHP
AGPL-3.0
Docker
AGPL-3.0/LGPL-3.0/MIT
Python
AGPL-3.0
Docker
GPL-2.0/CPAL-1.0
Java
A human resources management system combines a number of systems and processes to ensure the easy management of human resources, business processes and data.
GPL-2.0
PHP/Docker
GPL-2.0
PHP
MIT
Nodejs
Internet of Things describes physical objects with sensors, processing ability, software, and other technologies that connect and exchange data with other devices over the Internet.
Apache-2.0
Java/Docker/K8S
GPL-3.0
C/C++/Docker/Shell
Apache-2.0
Docker/Erlang
GPL-3.0
Perl
Apache-2.0
Nodejs/Docker/K8S
Apache-2.0
Nodejs/Docker
Apache-2.0
Python/Docker
MIT
Nodejs
Apache-2.0
Nodejs/Docker
EPL-2.0
Java
AGPL-3.0
Java
GPL-3.0
Python
GPL-3.0
C/C++
Apache-2.0
Java/Docker/K8S
MPL-2.0
Nodejs
Inventory management software. Related: Money, Budgeting & Management, Resource Planning See also: awesome-sysadmin/IT Asset Management
AGPL-3.0
Nodejs
MIT
Python
AGPL-3.0
Docker/PHP/Nodejs
AGPL-3.0
Nodejs
Knowledge management is the collection of methods relating to creating, sharing, using and managing the knowledge and information. Related: Note-taking & Editors, Wikis, Database Management
MIT
Docker/Rust
AGPL-3.0
Nodejs/PHP
MIT
Docker/Nodejs
Tools and software to help with education and learning.
AGPL-3.0
Ruby
GPL-3.0
PHP
AGPL-3.0
PHP
AGPL-3.0
Nodejs/PHP
AGPL-3.0
PHP
AGPL-3.0
Python
GPL-3.0
PHP
GPL-3.0
PHP
AGPL-3.0
Python/Docker
GPL-3.0
PHP
GPL-2.0
PHP
Apache-2.0
Java
GPL-2.0
Perl
MIT
Python
GPL-2.0
PHP
MIT
Docker
Software to manage 3D printers, CNC machines and other physical manufacturing tools.
MIT
Nodejs
GPL-3.0
Docker/Nodejs
GPL-3.0
Docker/Python
MIT
Docker
AGPL-3.0
Docker/Python
Maps, cartography, GIS and GPS software. See also: awesome-openstreetmap, awesome-gis
MIT
Javascript
MIT
Go/Docker
Apache-2.0
Java
GPL-2.0
C
BSD-2-Clause
C++
GPL-3.0
Docker/Java
GPL-2.0
Ruby
LGPL-3.0
Java/Javascript
⚠
- Store and access data published by OwnTracks location tracking apps. GPL-2.0
C/Lua/deb/Docker
BSD-2-Clause
Nodejs/Docker
Apache-2.0
Java
GPL-3.0
PHP
Audio streaming tools and software.
AGPL-3.0
PHP
GPL-3.0
Docker/deb/Nodejs
MIT
Rust
Apache-2.0
Docker
MIT
Python/deb
MIT
Docker/Ruby
Apache-2.0
Go
BSD-3-Clause
Python/Django
GPL-3.0
Go/Docker
⚠
- Web app using Invidious API for listening to Youtube audio sources. (Source Code) MIT
Nodejs/Docker
MIT
PHP
AGPL-3.0
Docker/PHP
GPL-3.0
Docker/deb/C++
GPL-3.0
Python/Docker
GPL-3.0
PHP
Apache-2.0
Python/deb
GPL-2.0
C++
GPL-2.0
Nodejs
MIT
Nodejs/Docker
BSD-3-Clause
C++/deb
GPL-3.0
Docker/Go
GPL-3.0
Docker
MIT
Rust/Docker
GPL-3.0
C++/deb
MIT
Nodejs
AGPL-3.0
Python/deb
MIT
Python/Docker
⚠
- Convert YouTube and Twitch channels to podcasts, no storage required. Transcodes VoDs to MP3 192k on the fly, generates an RSS feed to use in podcast clients. MIT
Docker
Multimedia streaming tools and software. Related: Media Streaming - Video Streaming, Media Streaming - Audio Streaming
GPL-2.0
Rust
GPL-2.0
Docker/deb/C++
GPL-2.0
C
GPL-2.0
C#/deb/Docker
ISC
Docker/Nodejs
GPL-2.0
C++/deb
GPL-3.0
Docker
MIT
PHP
GPL-3.0
Docker
AGPL-3.0
C++
BSD-3-Clause
C++
GPL-2.0
C
GPL-3.0
C
AGPL-3.0
Docker/Go
GPL-3.0
C/deb
⚠
- Self-hosted collaborative listening platform. Users take turns playing media—songs, talks, gameplay videos, or anything else—from a variety of media sources like YouTube and SoundCloud. (Demo, Source Code) MIT
Nodejs
Video streaming tools and software. Related: Video Surveillance, Media Streaming - Multimedia Streaming
MIT
Nodejs
⚠
- Alternative YouTube front-end. (Demo) AGPL-3.0
Docker/Crystal
AGPL-3.0
Python/Docker
⚠
- Media server for Movies and TV Shows with a responsive Vue.js frontend. It has robust transcoding support as well as federation capabilities to share your library with your friends. AGPL-3.0
Nodejs
MIT
Python
GPL-3.0
C++/Docker
MIT
Go
AGPL-3.0
Nodejs
MIT
Python/Docker
Apache-2.0
Nodejs/Docker
MIT
Docker/C++
MIT
Java
MIT
Nodejs/Haxe
⚠
- Organize, search, and enjoy your YouTube collection. Subscribe, download, and track viewed content with metadata indexing and a user-friendly interface. (Source Code, Clients) GPL-3.0
Docker
MIT
Go
GPL-2.0
C/deb
Software that does not fit in another section.
AGPL-3.0
PHP/Docker
⚠
- AlertHub is a simple tool to get alerted from GitHub releases. MIT
Nodejs/Docker
GPL-3.0
Nodejs
Apache-2.0
Elixir/Docker
BSD-2-Clause
Python
⚠
- Honeypot framework designed to provide a highly secure environment for detecting and analyzing cyber attacks. (Demo, Source Code) MIT
Docker/K8S/Go
Apache-2.0
Go/deb/Docker/K8S
MIT
PHP/Docker
GPL-2.0
C
Apache-2.0
Javascript
AGPL-3.0
Nodejs
AGPL-3.0
Nodejs
AGPL-3.0
Nodejs
AGPL-3.0
Nodejs
AGPL-3.0
Nodejs
⚠
- View YouTube videos in a distraction-free interface (documentation in French). (Demo, Source Code) AGPL-3.0
Nodejs/PHP
AGPL-3.0
Nodejs/PHP
MIT
Python/Docker
GPL-3.0
PHP
GPL-2.0/BSD-3-Clause/MIT
PHP
AGPL-3.0
PHP
AGPL-3.0
Python/Docker/deb
⚠
- Fasten is an open-source, self-hosted, personal/family electronic medical record aggregator, designed to integrate with 100,000’s of insurances/hospitals/clinics in the United States. GPL-3.0
Go/Docker
BSD-3-Clause
Docker/K8S
GPL-3.0
Docker/K8S/Go
MIT
Docker
MIT
Go
⚠
- Hassle-Free Way to Self-Host Google Fonts. Get eot, ttf, svg, woff and woff2 files + CSS snippets. (Demo) MIT
Nodejs
MIT
Go/Docker
MIT
Python/Docker/K8S
GPL-3.0/CC-BY-SA-3.0
Nodejs/Docker
MIT
PHP/Docker
MIT
PHP
MIT
Docker/Nodejs
GPL-3.0
Docker
MIT
Docker/PHP
⚠
- A free and open-source inpainting tool powered by SOTA AI model. Apache-2.0
Python/Docker
LGPL-2.1
Java/Docker
AGPL-3.0
Docker/Python
AGPL-3.0
Deno
MIT
Go
⚠
- With Mere Medical, you can finally manage all of your medical records from Epic MyChart, Cerner, and OnPatient patient portals in one place. Privacy-focused, self-hosted, and offline-first. (Demo, Source Code) GPL-3.0
Docker/Nodejs
AGPL-3.0
PHP/Docker
MIT
PHP
⚠
- All in one IP Toolbox. Easy to check what’s your IPs, IP geolocation, check for DNS leaks, examine WebRTC connections, speed test, ping test, MTR test, check website availability and more. (Demo, Source Code) MIT
Nodejs/Docker
Apache-2.0
Docker/Go
AGPL-3.0
Nodejs/Docker
AGPL-3.0
Docker/Nodejs
GPL-2.0
C#/deb
AGPL-3.0
Docker
Apache-2.0
Go
MIT
Docker
⚠
- Overseerr is a free and open source software application for managing requests for your media library. It integrates with your existing services, such as Sonarr, Radarr, and Plex!. (Source Code) MIT
Docker
MPL-2.0
Docker
GPL-2.0
Javascript
MIT
Docker/Nodejs
MIT
Nodejs
MIT
Javascript
GPL-2.0
PHP
GPL-2.0
C
MIT
Docker
AGPL-3.0
Nodejs
Apache-2.0
Go/Docker/K8S
MIT
Elixir/Docker
MIT
Go/Docker
MIT
Nodejs/Docker
MIT
Docker
MIT
PHP/Docker
GPL-3.0
Python/deb
MIT
Docker/Nodejs
AGPL-3.0
Python/Docker
Money management and budgeting software. Related: Inventory Management, Resource Planning
MIT
Nodejs/Docker
AGPL-3.0
Docker
MIT
Docker/Python/Nodejs
MIT
C#
AGPL-3.0
Deno
MIT
Nodejs
Apache-2.0
Scala
MIT
Python
AGPL-3.0
PHP/Docker
Apache-2.0
PHP/Docker
GPL-3.0
PHP
AGPL-3.0
Docker/Nodejs
GPL-2.0
PHP
AGPL-3.0
Docker/Python
⚠
- HyperSwitch is an Open Source Financial Switch to make payments Fast, Reliable and Affordable. It lets you connect with multiple payment processors and route traffic effortlessly, all with a single API integration. (Source Code) Apache-2.0
Docker/Rust
BSD-3-Clause
Docker/Python
AAL
PHP/Docker/K8S
MIT
PHP
Apache-2.0
Java/Docker
MIT
Nodejs/Docker
AGPL-3.0
Docker
GPL-3.0
Python/Docker
MIT
Docker
MIT
Docker/C#
⚠
- Easy-to-use receipt manager, powered by AI. Allows users to create receipts effortlessly and quickly, categorize and more. (Demo, Source Code) AGPL-3.0
Docker
MIT
Go
MIT
PHP
Note taking editors. Related: Wikis
MIT
PHP/Docker
MIT
Docker
AGPL-3.0
Go
Apache-2.0
Javascript/Docker
MIT
Docker
AGPL-3.0
Docker/Nodejs
MIT
Nodejs
GPL-3.0
C++
Apache-2.0
Elixir/Docker
MIT
Nodejs
MIT
Docker/Go
Apache-2.0
PHP
AGPL-3.0
Docker
GPL-3.0
Perl
AGPL-3.0
Ruby
GPL-3.0
PHP
GPL-3.0
Ruby
AGPL-3.0
Nodejs/Docker/K8S
MIT
Javascript
GPL-3.0
CommonLisp
MIT
Javascript
An office suite is a collection of productivity software usually containing at least a word processor, spreadsheet and a presentation program.
MPL-2.0
C++
AGPL-3.0
Nodejs/Docker
AGPL-3.0
Nodejs/PHP
Apache-2.0
Nodejs/Docker
Apache-2.0
Nodejs/Python/Docker
MIT
C++
AGPL-3.0
Nodejs/Docker
LGPL-3.0
PHP
A password manager allows users to store, generate, and manage their passwords for local applications and online services.
⚠
- Password manager with webapp, browser extension, and mobile app. (Source Code) AGPL-3.0
Docker/C#
GPL-3.0
Nodejs
AGPL-3.0
PHP/deb/K8S/Docker
AGPL-3.0
Docker/Django
GPL-3.0
PHP
Apache-2.0
Python
GPL-3.0
PHP
GPL-3.0
Rust/Docker
A pastebin is a type of online content-hosting service used for sharing and storing code and text.
BSD-2-Clause
Python/deb
WTFPL/0BSD
Rust
MIT
Docker/Django
MIT
Docker
MIT
Docker/PHP
MIT
Docker/Nodejs
AGPL-3.0
Docker/Go/Nodejs
GPL-3.0
Docker
GPL-3.0
Docker/K8S/Ruby
MIT
Docker/K8S/Java
Zlib
PHP
MIT
Rust
MIT
Docker
Apache-2.0
Go/Docker
MIT
Go
GPL-3.0
Rust/Docker
MIT
Rust/Docker
MIT
Nodejs/Docker
MIT
Go/Nodejs/Docker
Dashboards for accessing information and applications. Related: Monitoring, Bookmarks and Link Sharing
MIT
Nodejs/Docker
GPL-3.0
.NET/Docker
MIT
PHP
MIT
Javascript/Docker
MIT
Docker/Nodejs
GPL-3.0
Docker/Nodejs
MIT
PHP
Apache-2.0
Docker/K8S/Nodejs
MIT
Docker
MIT
Docker/PHP
AGPL-3.0
PHP/Docker
MIT
Javascript
MIT
Docker/Nodejs
GPL-3.0
PHP/Docker
AGPL-3.0
Go/Docker
GPL-3.0
Docker
MIT
Docker
AGPL-3.0
Docker/Python
⚠
- Allows you to record your Spotify listening activity and have statistics about them served through a Web application. MIT
Nodejs/Docker
A gallery is software that helps the user publish or share photos, pictures, videos or other digital media. Related: Static Site Generators, Photo and Video Galleries, Content Management Systems (CMS)
AGPL-3.0
PHP/Docker
GPL-3.0
PHP
GPL-3.0
Docker/C#/.NET
AGPL-3.0
Docker/Nodejs/Go
MIT
Nodejs/Docker
AGPL-3.0
Docker
MIT
Python/Docker
MIT
PHP/Docker
AGPL-3.0
Python
GPL-3.0
PHP
AGPL-3.0
PHP
AGPL-3.0
Go/Docker
GPL-3.0
Go/Docker
MIT
Docker/Nodejs
GPL-2.0
PHP
MIT
Python
GPL-3.0
Docker/Rust
MIT
Docker/Rust
MIT
Python/Docker
GPL-2.0
PHP
Software for organising polls and events. Related: Booking and Scheduling
GPL-3.0
Docker/Python
AGPL-3.0
Docker/Nodejs
AGPL-3.0
Docker/Nodejs
GPL-3.0
Elixir/Docker
AGPL-3.0
Docker
MIT
Docker/Python
MIT
Docker
AGPL-3.0
Nodejs/Docker
CECILL-B
PHP
AGPL-3.0
Nodejs
GPL-3.0
Nodejs/Docker
AGPL-3.0
Ruby
AGPL-3.0
PHP/Nodejs/Docker
GPL-2.0
PHP
MIT
PHP
GPL-3.0
Elixir/Docker
GPL-3.0
Python/Docker
A proxy is a server application that acts as an intermediary between a client requesting a resource and the server providing that resource. This section about forward (i.e. outgoing) proxies. For reverse proxies, see the Web Server section. Related: Web Servers
MIT
Go/Docker/K8S
ISC
C/deb
MIT
Rust/Docker
Apache-2.0
Docker/Nodejs
GPL-2.0
C/deb
MIT
Go/Docker
Apache-2.0
Docker
GPL-2.0
C/deb
GPL-2.0
C/deb
MIT
Nodejs/Docker
Software and tools for managing recipes.
MIT
PHP/Docker
AGPL-3.0
Docker/deb
MIT
Python
AGPL-3.0
Nodejs
MIT
Docker
GPL-3.0
Docker/Python
Remote desktop and SSH servers and web interfaces for remote management of computer systems.
Apache-2.0
Elixir/Docker
Apache-2.0
Java/C
Apache-2.0
Nodejs
GPL-3.0
C#/Docker
AGPL-3.0
Rust/Docker/deb
Apache-2.0
Docker
AGPL-3.0
Go/Docker
Apache-2.0
Rust/Docker
Software and tools to help with resource and supply planning, including enterprise resource and supply planning (ERP). Related: Money, Budgeting & Management, Inventory Management
GPL-3.0
PHP/deb
GPL-3.0
Python/Docker
GPL-2.0
PHP/Docker
MIT
PHP/Docker
GPL-2.0
Docker/Perl
LGPL-3.0
Python/deb/Docker
Apache-2.0
Java
GPL-3.0
Python
A search engine is an information retrieval system designed to help find information stored on a computer system. This includes Web search engines.
Apache-2.0
Java/Docker/K8S
Apache-2.0
Java/Docker
Apache-2.0
Python/Docker
GPL-2.0
Docker/deb/C++
MIT
Rust/Docker/deb
Apache-2.0
Java/Docker/K8S/deb
⚠
- Internet metasearch engine which aggregates results from various search services and databases (Fork of Searx). (Source Code) AGPL-3.0
Python/Docker
GPL-3.0
C/Docker
AGPL-3.0
Python/Docker
GPL-3.0
C++/Docker/K8S/deb
⚠
- Aggregate results from other search engines (metasearch engine) without ads while keeping privacy and security in mind. It is extremely fast and provides a high level of customization (alternative to SearX). AGPL-3.0
Rust/Docker
⚠
- A self-hosted, ad-free, privacy-respecting metasearch engine. MIT
Python
GPL-2.0
Java/Docker/K8S
Apache-2.0
Go/Docker/K8S
Software for easy installation, management and configuration of self-hosted services and applications.
MIT
Ansible/Docker
Apache-2.0
Go/Docker
GPL-2.0
Shell
MIT
Shell
AGPL-3.0
Python/deb
MIT
Docker
AGPL-3.0
Shell
MIT
Docker
MIT
Shell/Docker
GPL-2.0
Shell/PHP
GPL-3.0
PHP
Apache-2.0
C++/Shell
MIT
Rust
GPL-3.0
Go/Shell
GPL-3.0
Shell
GPL-3.0
Perl
GPL-3.0/LGPL-2.1/Apache-2.0/MPL-2.0/MPL-1.1/MIT/AGPL-3.0
Shell/Perl/deb
GPL-3.0
Ansible/Shell
AGPL-3.0
Python/Shell
API management is the process of creating and publishing application programming interfaces (APIs), enforcing their usage policies, controlling access, nurturing the subscriber community, collecting and analyzing usage statistics, and reporting on performance.
Apache-2.0
PHP/Docker/K8S
MIT
Nodejs/Docker
AGPL-3.0
PHP/Docker
MIT
Nodejs
Apache-2.0
Haskell/Docker/K8S
MIT
Nodejs/Docker
Apache-2.0
Lua/Docker/K8S/deb
Apache-2.0
Go
⚠
- An API to add an integration catalog to your SaaS product in minutes (alternative to Merge.dev). (Source Code) AGPL-3.0
Nodejs/Docker
Apache-2.0
Java/Docker
GPL-3.0
Python
MIT
Docker/Rust
MPL-2.0
Go/Docker/K8S
MIT
Docker
An integrated development environment (IDE) is a software application that provides comprehensive facilities to computer programmers for software development. Related: Software Development - Low Code
MIT
PHP/Docker
MIT
Nodejs/Docker
AGPL-3.0
Go/Docker/K8S/deb
EPL-1.0
Docker/Java
Unlicense
Haskell
MIT
C#
GPL-3.0
Docker
BSD-3-Clause
Python/Docker
Apache-2.0
Nodejs/Docker
AGPL-3.0
Java/C++
GPL-3.0
Go/Docker
Localization is the process of adapting code and software to other languages.
BSD-3-Clause
Elixir/Docker
Apache-2.0
Docker/Java
AGPL-3.0
Docker/K8S/Nodejs
GPL-3.0
Python/Docker/K8S
A low-code development platform (LCDP) provides a development environment used to create application software through a graphical user interface. Related: Software Development - IDE & Tools
Apache-2.0
Java/Docker/K8S
BSD-3-Clause
Docker
MIT
Nodejs
AGPL-3.0
Nodejs/Docker
AGPL-3.0
Ruby/Docker
MIT
Go/Docker
MIT
Rust/Docker
GPL-3.0
Nodejs/Docker/K8S
Tools and software for software project management. Related: Ticketing, Task Management & To-do Lists
GPL-2.0
C
MIT
Docker/Go
BSD-2-Clause-FreeBSD
C
Apache-2.0
Java/Docker
Apache-2.0
Java
Apache-2.0
Scala/Java
MIT
Go/Docker/K8S
MIT
Ruby/deb/Docker/K8S
GPL-2.0
Perl
MIT
Go
EPL-2.0
Docker/K8S/Nodejs
GPL-3.0
Python
ISC
Python/Docker
⚠
- Eliminate the annoying work within ticketing systems (Jira, GitHub, Trello). Allows to automate daily actions like tickets fields verification, email notifications by JQL/GQL, meeting requests to your (or teammates) calendar. (Source Code) MIT
Ruby/Docker
GPL-2.0
PHP/Docker
AGPL-3.0
Docker/Elixir
MIT
Docker
⚠
- Take back control of your GitHub Notifications. (Source Code) AGPL-3.0
Ruby/Docker
MIT
Java/Docker/K8S
GPL-3.0
Ruby/deb/Docker
GPL-2.0
Docker/Python/deb
Apache-2.0
PHP
Apache-2.0
Docker
AGPL-3.0
PHP
GPL-2.0
Ruby
MIT
Python/Docker
WTFPL
Rust/Docker
AGPL-3.0
Python
GPL-2.0
PHP
BSD-3-Clause
Java/deb/Docker/K8S
AGPL-3.0
Scala
GPL-2.0
Go
MPL-2.0
Docker/Python/Nodejs
GPL-3.0
Javascript/Docker
BSD-3-Clause
Python/deb
GPL-3.0
PHP/Nodejs
GPL-2.0
PHP
MIT
PHP
AGPL-3.0
PHP
Tools and software for software testing.
MIT/Apache-2.0
Rust
Apache-2.0
Go
MIT
Docker/K8S
Apache-2.0
Docker/Nodejs
Uptime is a measure of system reliability, expressed as the percentage of time a machine, typically a computer, has been working and available. Related: Monitoring
MIT
Go
Apache-2.0
Docker/K8S
GPL-3.0
Docker/Go
MIT
Docker/Nodejs
MPL-2.0
Rust/Docker/deb
Task management software. Related: Software Development - Project Management, Ticketing
AGPL-3.0
Rust/Dart/Docker
MIT/AGPL-3.0/Apache-2.0
Nodejs/Go/Docker
MIT
PHP
GPL-2.0
PHP
BSD-2-Clause
Javascript
AGPL-3.0
Docker
AGPL-3.0
Nodejs/Docker/K8S
Apache-2.0
Scala
MIT
Docker
MIT
C++
GPL-2.0
Ruby
GPL-3.0
Go
MIT
Nodejs
Helpdesk, bug and issue tracking software to help the tracking of user requests, bugs and missing features. Related: Task Management & To-do Lists, Software Development - Project Management
MPL-2.0
Perl
AGPL-3.0
PHP/Docker
MIT
Python/Docker/K8S
CC-BY-SA-4.0
Python/Docker
GPL-3.0
PHP
GPL-2.0
PHP
GPL-2.0
PHP
GPL-3.0
Perl/Docker
GPL-2.0
Perl
MIT/ZPL-2.0
Python/Docker
Apache-2.0
Nodejs/Docker
AGPL-3.0
Ruby/deb
Time-tracking software is a category of computer software that allows its users to record time spent on tasks or projects.
MPL-2.0
Python
AGPL-3.0
PHP
GPL-3.0
Python
GPL-3.0
Docker/Go
URL shortening is the action of shortening a URL to make it substantially shorter and still direct to the required page. Before hosting one, please see disadvantages of URL shorteners.
MIT
Rust/Docker
MIT
Docker
MIT
Python/deb
WTFPL
Perl/Docker
MIT
Nodejs/Docker
MPL-2.0
Rust
MIT
PHP/Docker
MIT
PHP
MIT
Java/Docker
MIT
PHP
Video surveillance, also known as Closed-circuit television (CCTV), is the use of video cameras for surveillance in areas that require additional security or ongoing monitoring. Related: Media Streaming - Video Streaming
GPL-2.0
PHP
MIT
Docker/Python/Nodejs
MIT
Docker/K8S
GPL-2.0
Docker/Rust
MIT
Docker
MIT
Docker
GPL-2.0
PHP/deb
A virtual private network (VPN) extends a private network across a public network and enables users to send and receive data across shared or public networks as if their computing devices were directly connected to the private network.
Web Servers and Reverse Proxies. A web server is a piece of software and underlying hardware that accepts requests via HTTP (the network protocol created to distribute web content) or its secure variant HTTPS. A Reverse Proxy is a proxy server that appears to any client to be an ordinary web server, but in reality merely acts as an intermediary that forwards requests to one or more ordinary web servers. Related: Proxy
BSD-3-Clause
Go/Docker
Apache-2.0
C/deb/Docker
AGPL-3.0
deb/Docker/K8S/Python
Apache-2.0
Go/deb/Docker
GPL-2.0
C/deb/Docker
⚠
- Lightweight SSL/TLS reverse proxy with authorization (via Telegram and SSH) for self-hosted apps. GPL-3.0
Go
BSD-3-Clause
C/deb/Docker
MIT
Nodejs/Docker
BSD-2-Clause
C/deb/Docker
Apache-2.0
Go
Apache-2.0/MIT
Rust/Docker
GPL-3.0
Docker
MIT
Go/Docker
BSD-3-Clause
Go/deb/Docker
A wiki is a publication collaboratively edited and managed by its own audience directly using a web browser. Related: Note-taking & Editors, Static Site Generators, Knowledge Management Tools See also: Wikimatrix, List of wiki software - Wikipedia, Comparison of wiki software - Wikipedia
GPL-1.0
Perl/Docker
MIT
PHP/Docker
GPL-3.0
Python
AGPL-3.0
Go
GPL-2.0
PHP
AGPL-3.0
Javascript
GPL-2.0
Haskell
MIT
Ruby
GPL-2.0
PHP
AGPL-3.0
Go
MIT
Docker
⚠
- An open, extensible, wiki for your team. (Source Code) BSD-3-Clause
Nodejs/Docker
MPL-2.0
PHP
GPL-3.0
PHP
MIT
Nodejs
BSD-3-Clause
Nodejs
LGPL-2.1
PHP
BSD-3-Clause
PHP
AGPL-3.0
Nodejs/Docker/K8S
MIT
PHP/Docker
GPL-2.0
PHP
MIT
Python/Docker
LGPL-2.1
Java/Docker/deb
GPL-2.0
Python/deb
MIT
CSS
It implements their own licensing with restrictions and grants which you must check on each case. Restrictions may include limits on allowed use of the software, access to the source code, modification and further redistribution. This software can therefore contain anti user-freedom features, such as but not limited to: backdoors, user lock-in, sending personal data to a third party.
⊘ Proprietary
Unknown
⚠
- Reporting and PDF document generation with a user-friendly WYSIWYG template editor, API, automated email delivery, and robust security features. ⊘ Proprietary
Docker
Apache-2.0/Commons-Clause
Nodejs
AGPL-3.0/Commons-Clause
Ruby
⊘ Proprietary
Unknown
⊘ Proprietary
PHP
⊘ Proprietary
C++
AGPL-3.0/Commons-Clause
Docker
⊘ Proprietary
PHP
⊘ Proprietary
Unknown
⊘ Proprietary
PHP
⊘ Proprietary
PHP
⊘ Proprietary
PHP
⊘ Proprietary
deb/Ansible/Shell/Docker
⊘ Proprietary
Python
⊘ Proprietary
Java
⊘ Proprietary
Ruby
⊘ Proprietary
PHP
⊘ Proprietary
Unknown
⊘ Proprietary
PHP
GPL-3.0/SSPL-1.0
Nodejs
CC-BY-NC-4.0
Javascript
CC-BY-NC-SA-3.0
Nodejs
⊘ Proprietary
Docker
⊘ Proprietary
Unknown
⊘ Proprietary
Unknown
⊘ Proprietary
C#
⊘ Proprietary
Unknown
⊘ Proprietary
Unknown
CC-BY-NC-SA-4.0
Nodejs/Docker
Elastic-2.0
Ruby
⊘ Proprietary
Unknown
⊘ Proprietary
Unknown
BUSL-1.1
PHP
⊘ Proprietary
PHP
⊘ Proprietary
Go
⊘ Proprietary
Nodejs
⊘ Proprietary
PHP
⊘ Proprietary
PHP
⊘ Proprietary
Go/Docker
MIT/Commons-Clause
Python/Docker/K8S
⊘ Proprietary
Java
⊘ Proprietary
PHP
SSPL-1.0
Java
⊘ Proprietary
Unknown
⊘ Proprietary
Nodejs/Docker
Apache-2.0/Commons-Clause
Docker/Go
⊘ Proprietary
Docker
⊘ Proprietary
C++
⊘ Proprietary
Unknown
⊘ Proprietary
Nodejs/Docker
⚠
- Linux-based operating system designed to run on home media server setups. ⊘ Proprietary
Unknown
SSPL-1.0
Rust/Nodejs/Docker
⊘ Proprietary
Nodejs/Docker/K8S
Apache-2.0/Commons-Clause
Docker
⊘ Proprietary
PHP
⊘ Proprietary
PHP
⊘ Proprietary
Java
⊘ Proprietary
Nodejs/Java
⊘ Proprietary
Java
⊘ Proprietary
PHP
⊘ Proprietary
Ruby
⊘ Proprietary
Python
⊘ Proprietary
PHP
⊘ Proprietary
Java
⊘ Proprietary
Docker
Elastic-2.0
Docker
⊘ Proprietary
Go
BUSL-1.1
Python/Django
⊘ Proprietary
Unknown
AGPL-3.0/Commons-Clause
Docker/Nodejs
⊘ Proprietary
PHP
⊘ Proprietary
Java
⊘ Proprietary
.NET
⊘ Proprietary
PHP
SSPL-1.0
PHP
⊘ Proprietary
Unknown
BUSL-1.1
- Business Source License 1.1CC-BY-NC-SA-3.0
- Creative Commons Attribution-NonCommercial-ShareAlike License 3.0CC-BY-NC-SA-4.0
- Creative Commons Attribution-NonCommercial-ShareAlike License 4.0CC-BY-ND-3.0
- Creative Commons Attribution-NoDerivs Unported License 3.0CC-BY-NC-4.0
- Creative Commons Attribution-NonCommercial License 4.0Commons-Clause
- Commons Clause LicenseDPL
- Devblocks Public License 1.0Elastic-2.0
- Elastic License 2.0SSPL-1.0
- Server Side Public License⊘ Proprietary
- Proprietary softwareHAProxy, or High Availability Proxy is used by RightScale for load balancing in the cloud.Load-balancer servers are also known as front-end servers. Generally, their purpose is to direct users to available application servers.
If you use debian or Ubuntu ditros search Debian Haproxy
then you will find the link to install it.
Typically, we define a frontend for a specific TCP based protocol like https
and apply the configuration. The following conf is just a bootstrap sample to make you familliar with the haproxy.
frontend https
bind public_ip:443
mode tcp
tcp-request inspect-delay 5s
tcp-request content accept if { req_ssl_hello_type 1 }
use_backend face if { req_ssl_sni -i yy.xx.ir }
use_backend face if { req_ssl_sni -i zz.xx.ir }
use_backend dns if { req_ssl_sni -i tt.xx.ir }
use_backend blog if { req_ssl_sni -i uu.xx.ir }
default_backend block
backend block
mode tcp
server block1 192.168.1.5:443
backend doh
mode tcp
server doh1 192.168.1.6:443
backend dns
mode tcp
server dns1 192.168.1.7:3006
server dns2 192.168.1.8:3006
backend face
mode tcp
option ssl-hello-chk
server face1 192.168.1.9:443
server face2 192.168.1.10:443
backend blog
mode tcp
server blog1 192.168.1.11:443
Use your personal account on your VPS not the root account. Install the following tools.
wget https://github.com/ton-utils/reverse-proxy/releases/download/v0.3.3/tonutils-reverse-proxy-linux-amd64
chmod +x tonutils-reverse-proxy-linux-amd64
./tonutils-reverse-proxy-linux-amd64 --domain your-domain.ton
-If you want to change some settings, like proxy pass url open config.json file, edit and restart proxy. Default proxy pass url is http://127.0.0.1:80/
Useful data across the web.
#RSS Feeds
A curated list of RSS feeds (with OPML files).
Source | Primary Feed Url | All Feeds |
---|---|---|
The Daily Star | https://www.thedailystar.net/frontpage/rss.xml | https://www.thedailystar.net/rss |
BD24Live.com | https://www.bd24live.com/feed | |
bdnews24.com - Home | https://bdnews24.com/?widgetName=rssfeed&widgetId=1150&getXmlFeed=true | |
Bangla News | https://www.banglanews24.com/rss/rss.xml | |
JUGANTOR | https://www.jugantor.com/feed/rss.xml | |
jagonews24.com - rss Feed | https://www.jagonews24.com/rss/rss.xml | |
kalerkantho Kantho | https://www.kalerkantho.com/rss.xml | |
প্রথম আলো | https://www.prothomalo.com/feed/ |
Source | Primary Feed Url | All Feeds |
---|---|---|
Folha de S.Paulo - Em cima da hora - Principal | https://feeds.folha.uol.com.br/emcimadahora/rss091.xml | https://www1.folha.uol.com.br/feed/ |
Portal EBC - RSS | http://www.ebc.com.br/rss/feed.xml | http://www.ebc.com.br/rss |
R7 - Notícias | https://noticias.r7.com/feed.xml | http://www.r7.com/institucional/rss |
UOL | http://rss.home.uol.com.br/index.xml | https://rss.uol.com.br/ |
The Rio Times | https://riotimesonline.com/feed/ | |
Brasil Wire | http://www.brasilwire.com/feed/ | |
Jornal de Brasília | https://jornaldebrasilia.com.br/feed/ |
Source | Primary Feed Url | All Feeds |
---|---|---|
CBC - Top Stories News | https://www.cbc.ca/cmlink/rss-topstories | https://www.cbc.ca/rss/ |
CTVNews.ca - Top Stories - Public RSS | https://www.ctvnews.ca/rss/ctvnews-ca-top-stories-public-rss-1.822009 | https://www.ctvnews.ca/more/rss-feeds-for-ctv-news |
https://globalnews.ca/feed/ | https://globalnews.ca/pages/feeds/ | |
Financial Post | https://business.financialpost.com/feed/ | |
National Post | https://nationalpost.com/feed/ | |
Ottawa Citizen | https://ottawacitizen.com/feed/ | |
The Province | https://theprovince.com/feed/ | |
LaPresse.ca - Actualités | https://www.lapresse.ca/actualites/rss | https://www.lapresse.ca/faq.php#rss |
Toronto Star | https://www.thestar.com/content/thestar/feed.RSSManagerServlet.articles.topstories.rss | https://www.thestar.com/about/rssfeeds.html |
Toronto Sun - RSS Feed | https://torontosun.com/category/news/feed | https://torontosun.com/sitemap |
Source | Primary Feed Url | All Feeds |
---|---|---|
ZEIT ONLINE - Nachrichten, Hintergründe und Debatten | http://newsfeed.zeit.de/index | https://www.zeit.de/hilfe/hilfe#rss |
FOCUS Online | https://rss.focus.de/fol/XML/rss_folnews.xml | https://www.focus.de/service/rss/immer-top-informiert-rss-auf-focus-online_aid_13713.html |
Aktuell - FAZ.NET | https://www.faz.net/rss/aktuell/ | https://www.faz.net/faz-net-services/widgets/rss-feed-nichts-verpassen-mit-den-rss-angeboten-von-faz-net-11124617.html |
tagesschau.de - Die Nachrichten der ARD | http://www.tagesschau.de/xml/rss2 | https://www.tagesschau.de/infoservices/rssfeeds/ |
Deutsche Welle | https://rss.dw.com/rdf/rss-en-all | https://www.dw.com/en/service/rss/s-31500 |
Source | Primary Feed Url | All Feeds |
---|---|---|
The Local | https://feeds.thelocal.com/rss/es | |
EL PAÍS: el periódico global | https://feeds.elpais.com/mrss-s/pages/ep/site/elpais.com/portada | https://servicios.elpais.com/rss/ |
España | https://rss.elconfidencial.com/espana/ | https://www.elconfidencial.com/rss/ |
ElDiario.es - ElDiario.es | https://www.eldiario.es/rss/ | https://www.eldiario.es/Feeds.html |
Portada // expansion | https://e00-expansion.uecdn.es/rss/portada.xml | https://www.expansion.com/rss/ |
El Periódico - portada | https://www.elperiodico.com/es/rss/rss_portada.xml | https://www.elperiodico.com/es/rss/portada_rss.shtml |
huffingtonpost.es | https://www.huffingtonpost.es/feeds/index.xml | |
Euro Weekly News Spain | https://www.euroweeklynews.com/feed/ | |
Agencia EFE - www.efe.com - English edition | https://www.efe.com/efe/english/4/rss |
Source | Primary Feed Url | All Feeds |
---|---|---|
BBC News - Home | http://feeds.bbci.co.uk/news/rss.xml | https://www.bbc.com/news/10628494 |
World news - The Guardian | https://www.theguardian.com/world/rss | https://www.theguardian.com/help/feeds |
Home - Mail Online | https://www.dailymail.co.uk/home/index.rss | https://www.dailymail.co.uk/home/rssMenu.html |
The Independent UK | http://www.independent.co.uk/news/uk/rss | https://www.independent.co.uk/service/rss-feeds-775086.html |
Daily Express :: News Feed | http://feeds.feedburner.com/daily-express-news-showbiz | https://www.express.co.uk/feeds |
Source | Primary Feed Url | All Feeds |
---|---|---|
Hong Kong Free Press HKFP | https://www.hongkongfp.com/feed/ | |
The Standard - Latest News | https://www.thestandard.com.hk/newsfeed/latest/news.xml | |
頭條日報 Headline Daily - 頭條網 | https://hd.stheadline.com/rss/news/daily/ | |
香港新聞RSS - 香港經濟日報 hket.com | https://www.hket.com/rss/hongkong | https://www.hket.com/rss |
News - South China Morning Post | https://www.scmp.com/rss/91/feed | https://www.scmp.com/rss |
hongkongnews.net latest rss headlines | http://feeds.hongkongnews.net/rss/b82693edf38ebff8 |
Source | Primary Feed Url | All Feeds |
---|---|---|
Republika Online RSS Feed | https://www.republika.co.id/rss/ | |
Tribunnews.com | https://www.tribunnews.com/rss | |
Merdeka.com | https://www.merdeka.com/feed/ | |
Suara.com | https://www.suara.com/rss | https://www.suara.com/feed |
Source | Primary Feed Url | All Feeds |
---|---|---|
TheJournal.ie | https://www.thejournal.ie/feed/ | |
All: BreakingNews.ie | https://feeds.breakingnews.ie/bntopstories | https://www.breakingnews.ie/info/rss/ |
The42 | https://www.the42.ie/feed/ | |
IrishExaminer.com | https://feeds.feedburner.com/ietopstories | https://www.irishexaminer.com/breakingnews/ireland/syndication-830438.html |
IrishCentral.com - Top Stories | https://feeds.feedburner.com/IrishCentral | |
Irish Mirror - Home | https://www.irishmirror.ie/?service=rss |
Source | Primary Feed Url | All Feeds |
---|---|---|
خبرگزاری باشگاه خبرنگاران - آخرین اخبار ایران و جهان - YJC | https://www.yjc.ir/fa/rss/allnews | https://www.yjc.ir/fa/rss |
تابناک - TABNAK | https://www.tabnak.ir/fa/rss/allnews | https://www.tabnak.ir/fa/rss |
خبرگزاری ایسنا - صفحه اصلی -ISNA News Agency | https://www.isna.ir/rss | https://www.isna.ir/rss-help |
خبرگزاری مهر - اخبار ایران و جهان - Mehr News Agency | https://www.mehrnews.com/rss | https://www.mehrnews.com/rss |
خبرگزاری خبرآنلاین - آخرین اخبار ایران و جهان - Khabaronline | https://www.khabaronline.ir/rss | https://www.khabaronline.ir/rss-help |
اخبار ایران و جهان | https://www.tasnimnews.com/fa/rss/feed/0/8/0/%D9%85%D9%87%D9%85%D8%AA%D8%B1%DB%8C%D9%86-%D8%A7%D8%AE%D8%A8%D8%A7%D8%B1-%D8%AA%D8%B3%D9%86%DB%8C%D9%85 | https://www.tasnimnews.com/fa/rss |
عصر ايران | https://www.asriran.com/fa/rss/allnews | https://www.asriran.com/fa/rss |
Source | Primary Feed Url | All Feeds |
---|---|---|
Japan Times latest articles | https://www.japantimes.co.jp/feed/topstories/ | |
Japan Today | https://japantoday.com/feed | |
News On Japan | http://www.newsonjapan.com/rss/top.xml | |
All - Kyodo News+ | https://english.kyodonews.net/rss/all.xml | |
BRIDGE(ブリッジ)テクノロジー&スタートアップ情報 | http://feeds.feedburner.com/SdJapan | |
NYT > Japan | https://www.nytimes.com/svc/collections/v1/publish/http://www.nytimes.com/topic/destination/japan/rss.xml | |
ライブドアニュース - 主要トピックス | https://news.livedoor.com/topics/rss/top.xml | |
朝日新聞デジタル | http://rss.asahi.com/rss/asahi/newsheadlines.rdf |
Source | Primary Feed Url | All Feeds |
---|---|---|
Myanmar Gazette News Media Forum Network | http://myanmargazette.net/feed | |
DVB Multimedia Group | http://www.dvb.no/feed | |
THIT HTOO LWIN (Daily News) | http://www.thithtoolwin.com/feeds/posts/default |
Source | Primary Feed Url | All Feeds |
---|---|---|
All Content | http://saharareporters.com/feeds/latest/feed | http://saharareporters.com/rss |
Nigeria News Links - Today’s Updates - Nigerian Bulletin | https://www.nigerianbulletin.com/forums/-/index.rss | |
Nigerian News. Latest Nigeria News. Your online Nigerian Newspaper. | http://feeds.feedburner.com/Nigerianeye | |
Legit.ng | https://www.legit.ng/rss/all.rss | |
Latest Nigeria News, Nigerian Newspapers, Politics | https://thenationonlineng.net/feed/ | |
Daily Post Nigeria | https://dailypost.ng/feed | |
Premium Times Nigeria | https://www.premiumtimesng.com/feed | |
Information Nigeria | https://www.informationng.com/feed | |
The Guardian Nigeria News – Nigeria and World News | https://guardian.ng/feed/ | |
Tribune Online | http://tribuneonlineng.com/feed/ |
Source | Primary Feed Url | All Feeds |
---|---|---|
The Express Tribune | https://tribune.com.pk/feed/home | https://tribune.com.pk/rss/ |
The Nation - Top Stories | https://nation.com.pk/rss/top-stories | https://nation.com.pk/rss |
قومی خبریں | https://jang.com.pk/rss/1/1 | https://jang.com.pk/rss |
The News International - Pakistan | https://www.thenews.com.pk/rss/1/1 | https://www.thenews.com.pk/rss |
News Blog | https://newsnblogs.com/feed/ | |
UrduPoint.com All Urdu News | https://www.urdupoint.com/rss/urdupoint.rss | https://www.urdupoint.com/rss/ |
ایکسپریس اردو | https://www.express.pk/feed/ | https://www.express.pk/rssfeeds/ |
Source | Primary Feed Url | All Feeds |
---|---|---|
Najnowsze | http://feeds.feedburner.com/wPolitycepl | |
Newsweek Polska | https://www.newsweek.pl/rss.xml | |
Dziennik.pl Dziennik - dziennik.pl | http://rss.dziennik.pl/Dziennik-PL/ | |
www.wirtualnemedia.pl | https://www.wirtualnemedia.pl/rss/wirtualnemedia_rss.xml | https://www.wirtualnemedia.pl/rss.html |
GazetaPrawna.pl - biznes, podatki, prawo, finanse, wiadomości, praca | http://rss.gazetaprawna.pl/GazetaPrawna | https://www.gazetaprawna.pl/rss/ |
https://www.rp.pl | https://www.rp.pl/rss/1019 | |
Polska Agencja Prasowa SA | https://www.pap.pl/rss.xml | |
RMF24.pl | https://www.rmf24.pl/feed | https://www.rmf24.pl/kanaly/rss |
Source | Primary Feed Url | All Feeds |
---|---|---|
Lenta.ru : Новости | https://lenta.ru/rss | |
Вести.Ru | https://www.vesti.ru/vesti.rss | |
Газета.Ru - Первая полоса | https://www.gazeta.ru/export/rss/first.xml | https://www.gazeta.ru/export_news.shtml |
Все материалы - Московский Комсомолец | https://www.mk.ru/rss/index.xml | https://www.mk.ru/rss/ |
Российская Газета | https://rg.ru/xml/index.xml | |
NEWSru.com :: Главные новости | https://rss.newsru.com/top/big/ | https://www.newsru.com/rss/ |
RT - Daily news | https://www.rt.com/rss/ | https://www.rt.com/rss-feeds/ |
Meduza.io | https://meduza.io/rss/all | |
Russia Insider Daily Headlines | https://russia-insider.com/en/all-content/rss | https://russia-insider.com/en/rss_feeds |
TASS | http://tass.com/rss/v2.xml | |
The Moscow Times - Independent News From Russia | https://www.themoscowtimes.com/rss/news | https://www.themoscowtimes.com/page/rss |
Газета “Коммерсантъ”. Главное | https://www.kommersant.ru/RSS/main.xml | https://www.kommersant.ru/rss-list |
PravdaReport | https://www.pravdareport.com/export.xml |
Source | Primary Feed Url | All Feeds |
---|---|---|
News Agency UNIAN | https://rss.unian.net/site/news_eng.rss | |
ТЕЛЕГРАФ - последние новости Украины и мира | https://telegraf.com.ua/yandex-feed/ | |
Последние новости на сайте korrespondent.net | http://k.img.com.ua/rss/ru/all_news2.0.xml | https://korrespondent.net/rss_subscription/ |
Цензор.НЕТ - Новости | https://censor.net.ua/includes/news_ru.xml | https://censor.net.ua/feed |
Новини на tsn.ua | https://tsn.ua/rss/full.rss | |
Українська правда | https://www.pravda.com.ua/rss/ | https://www.pravda.com.ua/rss-info/ |
Гордон - Самые популярные материалы | https://gordonua.com/xml/rss_category/top.html | https://gordonua.com/rsslist.html |
НВ | https://nv.ua/rss/all.xml | https://nv.ua/rss |
Информационное агентство УНИАН | https://rss.unian.net/site/news_rus.rss | |
Еспресо - український погляд на світ! | https://espreso.tv/rss | |
Gazeta.ua | https://gazeta.ua/rss | |
Вести.ua | https://vesti.ua/feeds/partners |
Source | Primary Feed Url | All Feeds |
---|---|---|
SowetanLIVE | https://www.sowetanlive.co.za/rss/?publication=sowetan-live | https://www.sowetanlive.co.za/rss-feeds/ |
BusinessTech | https://businesstech.co.za/news/feed/ | |
TechCentral | https://techcentral.co.za/feed | |
News24 Top Stories | http://feeds.news24.com/articles/news24/TopStories/rss | https://www.news24.com/SiteElements/Services/News24-RSS-Feeds-20111202-2 |
Eyewitness News - Latest News | https://ewn.co.za/RSS%20Feeds/Latest%20News | https://ewn.co.za/RSSFeeds |
The Citizen | https://citizen.co.za/feed/ | |
Daily Maverick | https://www.dailymaverick.co.za/dmrss/ | |
Moneyweb | https://www.moneyweb.co.za/feed/ | |
IOL section feed for News | http://rss.iol.io/iol/news | https://www.iol.co.za/rss |
TimesLIVE | https://www.timeslive.co.za/rss/ | https://www.timeslive.co.za/rss-feeds/ |
The South African | https://www.thesouthafrican.com/feed/ | |
Axios | https://api.axios.com/feed/ |
Title | RSS Feed Url | Domain |
---|---|---|
All About Android (Audio) | https://feeds.twit.tv/aaa.xml | twit.tv |
Android | https://blog.google/products/android/rss | blog.google |
Android | https://www.reddit.com/r/android/.rss | reddit.com |
Android Authority | https://www.androidauthority.com/feed | androidauthority.com |
Android Authority | https://www.youtube.com/feeds/videos.xml?user=AndroidAuthority | youtube.com |
Android Authority Podcast | https://androidauthority.libsyn.com/rss | androidauthority.com |
Android Central - Android Forums, News, Reviews, Help and Android Wallpapers | http://feeds.androidcentral.com/androidcentral | androidcentral.com |
Android Central Podcast | http://feeds.feedburner.com/AndroidCentralPodcast | androidcentral.com |
Android Community | https://androidcommunity.com/feed/ | androidcommunity.com |
Android Police – Android news, reviews, apps, games, phones, tablets | http://feeds.feedburner.com/AndroidPolice | androidpolice.com |
AndroidGuys | https://www.androidguys.com/feed | androidguys.com |
Cult of Android | https://www.cultofandroid.com/feed | cultofandroid.com |
Cyanogen Mods | https://www.cyanogenmods.org/feed | cyanogenmods.org |
Droid Life | https://www.droid-life.com/feed | droid-life.com |
GSMArena.com - Latest articles | https://www.gsmarena.com/rss-news-reviews.php3 | gsmarena.com |
Phandroid | http://feeds2.feedburner.com/AndroidPhoneFans | phandroid.com |
TalkAndroid | http://feeds.feedburner.com/AndroidNewsGoogleAndroidForums | talkandroid.com |
xda-developers | https://data.xda-developers.com/portal-feed | xda-developers.com |
Title | RSS Feed Url | Domain |
---|---|---|
Beauty - ELLE | https://www.elle.com/rss/beauty.xml/ | elle.com |
Beauty - Fashionista | https://fashionista.com/.rss/excerpt/beauty | fashionista.com |
Beauty – Indian Fashion Blog | https://www.fashionlady.in/category/beauty-tips/feed | fashionlady.in |
Blog – The Beauty Brains | https://thebeautybrains.com/blog/feed/ | thebeautybrains.com |
DORÉ | https://www.wearedore.com/feed | wearedore.com |
From Head To Toe | http://feeds.feedburner.com/frmheadtotoe | frmheadtotoe.com |
Into The Gloss - Beauty Tips, Trends, And Product Reviews | https://feeds.feedburner.com/intothegloss/oqoU | intothegloss.com |
POPSUGAR Beauty | https://www.popsugar.com/beauty/feed | popsugar.com |
Refinery29 | https://www.refinery29.com/beauty/rss.xml | refinery29.com |
THE YESSTYLIST – Asian Fashion Blog – brought to you by YesStyle.com | https://www.yesstyle.com/blog/category/the-beauty-blog/feed/ | yesstyle.com |
The Beauty Look Book | https://thebeautylookbook.com/feed | thebeautylookbook.com |
Title | RSS Feed Url | Domain |
---|---|---|
A year of reading the world | https://ayearofreadingtheworld.com/feed/ | ayearofreadingtheworld.com |
Aestas Book Blog | https://aestasbookblog.com/feed/ | aestasbookblog.com |
BOOK RIOT | https://bookriot.com/feed/ | bookriot.com |
Kirkus Reviews | https://www.kirkusreviews.com/feeds/rss/ | kirkusreviews.com |
Page Array – NewInBooks | https://www.newinbooks.com/feed/ | newinbooks.com |
So many books, so little time | https://reddit.com/r/books/.rss | reddit.com |
Wokeread | https://wokeread.home.blog/feed/ | wokeread.home.blog |
Title | RSS Feed Url | Domain |
---|---|---|
Autoblog | https://www.autoblog.com/rss.xml | autoblog.com |
Autocar India - All Bike Reviews | https://www.autocarindia.com/RSS/rss.ashx?type=all_bikes | autocarindia.com |
Autocar India - All Car Reviews | https://www.autocarindia.com/RSS/rss.ashx?type=all_cars | autocarindia.com |
Autocar India - News | https://www.autocarindia.com/RSS/rss.ashx?type=News | autocarindia.com |
Autocar RSS Feed | https://www.autocar.co.uk/rss | autocar.co.uk |
BMW BLOG | https://feeds.feedburner.com/BmwBlog | bmwblog.com |
Bike EXIF | https://www.bikeexif.com/feed | bikeexif.com |
Car Body Design | https://www.carbodydesign.com/feed/ | carbodydesign.com |
Carscoops | https://www.carscoops.com/feed/ | carscoops.com |
Formula 1 | https://www.reddit.com/r/formula1/.rss | reddit.com |
Jalopnik | https://jalopnik.com/rss | jalopnik.com |
Latest Content - Car and Driver | https://www.caranddriver.com/rss/all.xml/ | caranddriver.com |
Petrolicious | https://petrolicious.com/feed | petrolicious.com |
Section Page News - Automotive News | http://feeds.feedburner.com/autonews/AutomakerNews | autonews.com |
Section Page News - Automotive News | http://feeds.feedburner.com/autonews/EditorsPicks | autonews.com |
Speedhunters | http://feeds.feedburner.com/speedhunters | speedhunters.com |
The Truth About Cars | https://www.thetruthaboutcars.com/feed/ | thetruthaboutcars.com |
The best vintage and classic cars for sale online - Bring a Trailer | https://bringatrailer.com/feed/ | bringatrailer.com |
Title | RSS Feed Url | Domain |
---|---|---|
Apartment Therapy- Saving the world, one room at a time | https://www.apartmenttherapy.com/design.rss | apartmenttherapy.com |
Better Living Through Design | http://www.betterlivingthroughdesign.com/feed/ | betterlivingthroughdesign.com |
Blog - decor8 | https://www.decor8blog.com/blog?format=rss | decor8blog.com |
Core77 | http://feeds.feedburner.com/core77/blog | core77.com |
Design MilkInterior Design – Design Milk | https://design-milk.com/category/interior-design/feed/ | design-milk.com |
Fubiz Media | http://feeds.feedburner.com/fubiz | fubiz.net |
Ideal Home | https://www.idealhome.co.uk/feed | idealhome.co.uk |
In My Own Style | https://inmyownstyle.com/feed | inmyownstyle.com |
Inhabitat - Green Design, Innovation, Architecture, Green Building | https://inhabitat.com/design/feed/ | inhabitat.com |
Interior Design (Interior Architecture) | https://www.reddit.com/r/InteriorDesign/.rss | reddit.com |
Interior Design Ideas | http://www.home-designing.com/feed | home-designing.com |
Interior Design Latest | https://www.interiordesign.net/rss/ | interiordesign.net |
Interiors – Dezeen | https://www.dezeen.com/interiors/feed/ | dezeen.com |
Liz Marie Blog | https://www.lizmarieblog.com/feed/ | lizmarieblog.com |
The Design Files - Australia’s most popular design blog.The Design Files - Australia’s most popular design blog. | https://thedesignfiles.net/feed/ | thedesignfiles.net |
The Inspired Room | https://theinspiredroom.net/feed/ | theinspiredroom.net |
Thrifty Decor Chick | http://feeds.feedburner.com/blogspot/ZBcZ | thriftydecorchick.com |
Trendir | https://www.trendir.com/feed/ | trendir.com |
Yanko Design | http://feeds.feedburner.com/yankodesign | yankodesign.com |
Yatzer RSS Feed | https://www.yatzer.com/rss.xml | yatzer.com |
Young House Love | https://www.younghouselove.com/feed/ | younghouselove.com |
decoist | https://www.decoist.com/feed/ | decoist.com |
design – designboom - architecture & design magazine | https://www.designboom.com/design/feed | designboom.com |
sfgirlbybay | https://www.sfgirlbybay.com/feed/ | sfgirlbybay.com |
Title | RSS Feed Url | Domain |
---|---|---|
A Beautiful Mess | https://abeautifulmess.com/feed | abeautifulmess.com |
Apartment Therapy- Saving the world, one room at a time | https://www.apartmenttherapy.com/projects.rss | apartmenttherapy.com |
Blog – Hackaday | https://hackaday.com/blog/feed/ | hackaday.com |
Centsational Style | https://centsationalstyle.com/feed/ | centsationalstyle.com |
Doityourself.com | https://www.doityourself.com/feed | doityourself.com |
Etsy Journal | https://blog.etsy.com/en/feed/ | blog.etsy.com |
How-To Geek | https://www.howtogeek.com/feed/ | howtogeek.com |
IKEA Hackers | https://www.ikeahackers.net/feed | ikeahackers.net |
MUO - Feed | https://www.makeuseof.com/feed/ | makeuseof.com |
Oh Happy Day! | http://ohhappyday.com/feed/ | ohhappyday.com |
WonderHowTo | https://www.wonderhowto.com/rss.xml | wonderhowto.com |
Title | RSS Feed Url | Domain |
---|---|---|
Fashion - ELLE | https://www.elle.com/rss/fashion.xml/ | elle.com |
Fashion - The Guardian | https://www.theguardian.com/fashion/rss | theguardian.com |
Fashion – Indian Fashion Blog | https://www.fashionlady.in/category/fashion/feed | fashionlady.in |
FashionBeans Men’s Fashion and Style Feed | https://www.fashionbeans.com/rss-feed/?category=fashion | fashionbeans.com |
Fashionista | https://fashionista.com/.rss/excerpt/ | fashionista.com |
NYT > Style | https://rss.nytimes.com/services/xml/rss/nyt/FashionandStyle.xml | nytimes.com |
POPSUGAR Fashion | https://www.popsugar.com/fashion/feed | popsugar.com |
Refinery29 | https://www.refinery29.com/fashion/rss.xml | refinery29.com |
THE YESSTYLIST – Asian Fashion Blog – brought to you by YesStyle.com | https://www.yesstyle.com/blog/category/trend-and-style/feed/ | yesstyle.com |
Who What Wear | https://www.whowhatwear.com/rss | whowhatwear.com |
Title | RSS Feed Url | Domain |
---|---|---|
EFL Championship | https://www.reddit.com/r/Championship/.rss?format=xml | reddit.com |
Football - The People’s Sport | https://www.reddit.com/r/football/.rss?format=xml | reddit.com |
Football News, Live Scores, Results & Transfers - Goal.com | https://www.goal.com/feeds/en/news | goal.com |
Football365 | https://www.football365.com/feed | football365.com |
Soccer News | https://www.soccernews.com/feed | soccernews.com |
Title | RSS Feed Url | Domain |
---|---|---|
AwkwardFamilyPhotos.com | https://awkwardfamilyphotos.com/feed/ | awkwardfamilyphotos.com |
Cracked: All Posts | http://feeds.feedburner.com/CrackedRSS | cracked.com |
Explosm.net | http://feeds.feedburner.com/Explosm | explosm.net |
FAIL Blog | http://feeds.feedburner.com/failblog | failblog.cheezburger.com |
I Can Has Cheezburger? | http://feeds.feedburner.com/icanhascheezburger | icanhas.cheezburger.com |
PHD Comics | http://phdcomics.com/gradfeed.php | phdcomics.com |
Penny Arcade | https://www.penny-arcade.com/feed | penny-arcade.com |
PostSecret | https://postsecret.com/feed/?alt=rss | postsecret.com |
Saturday Morning Breakfast Cereal | https://www.smbc-comics.com/comic/rss | smbc-comics.com |
The Bloggess | https://thebloggess.com/feed/ | thebloggess.com |
The Daily WTF | http://syndication.thedailywtf.com/TheDailyWtf | thedailywtf.com |
The Oatmeal - Comics by Matthew Inman | http://feeds.feedburner.com/oatmealfeed | theoatmeal.com |
The Onion | https://www.theonion.com/rss | theonion.com |
xkcd.com | https://xkcd.com/rss.xml | xkcd.com |
Title | RSS Feed Url | Domain |
---|---|---|
Escapist Magazine | https://www.escapistmagazine.com/v2/feed/ | escapistmagazine.com |
Eurogamer.net | https://www.eurogamer.net/?format=rss | eurogamer.net |
Gamasutra News | http://feeds.feedburner.com/GamasutraNews | gamasutra.com |
GameSpot - All Content | https://www.gamespot.com/feeds/mashup/ | gamespot.com |
IGN All | http://feeds.ign.com/ign/all | ign.com |
Indie Games Plus | https://indiegamesplus.com/feed | indiegamesplus.com |
Kotaku | https://kotaku.com/rss | kotaku.com |
Makeup and Beauty Blog - Makeup Reviews, Swatches and How-To Makeup | https://www.makeupandbeautyblog.com/feed/ | makeupandbeautyblog.com |
PlayStation.Blog | http://feeds.feedburner.com/psblog | blog.playstation.com |
Polygon -All | https://www.polygon.com/rss/index.xml | polygon.com |
Rock, Paper, Shotgun | http://feeds.feedburner.com/RockPaperShotgun | rockpapershotgun.com |
Steam RSS News Feed | https://store.steampowered.com/feeds/news.xml | steampowered.com |
The Ancient Gaming Noob | http://feeds.feedburner.com/TheAncientGamingNoob | tagn.wordpress.com |
TouchArcade - iPhone, iPad, Android Games Forum | https://toucharcade.com/community/forums/-/index.rss | toucharcade.com |
Xbox’s Major Nelson | https://majornelson.com/feed/ | majornelson.com |
r/gaming | https://www.reddit.com/r/gaming.rss | reddit.com |
Title | RSS Feed Url | Domain |
---|---|---|
30 For 30 Podcasts | https://feeds.megaphone.fm/ESP5765452710 | espn.com |
Blog Feed | https://americanhistory.si.edu/blog/feed | americanhistory.si.edu |
Dan Carlin’s Hardcore History | https://feeds.feedburner.com/dancarlin/history?format=xml | dancarlin.com |
History in 28-minutes | https://www.historyisnowmagazine.com/blog?format=RSS | historyisnowmagazine.com |
HistoryNet | http://www.historynet.com/feed | historynet.com |
Lore | https://feeds.megaphone.fm/lore | lorepodcast.com |
Revisionist History | https://feeds.megaphone.fm/revisionisthistory | revisionisthistory.com |
The History Reader | https://www.thehistoryreader.com/feed/ | thehistoryreader.com |
Throughline | https://feeds.npr.org/510333/podcast.xml | npr.org |
You Must Remember This | https://feeds.megaphone.fm/YMRT7068253588 | youmustrememberthispodcast.com |
the memory palace | http://feeds.thememorypalace.us/thememorypalace | thememorypalace.us |
Title | RSS Feed Url | Domain |
---|---|---|
ALL SHOWS - Devchat.tv | https://feeds.feedwrench.com/all-shows-devchattv.rss | devchat.tv |
Alberto De Bortoli | https://albertodebortoli.com/rss/ | albertodebortoli.com |
Augmented Code | https://augmentedcode.io/feed/ | augmentedcode.io |
Benoit Pasquier - Swift, Data and more | https://benoitpasquier.com/index.xml | benoitpasquier.com |
Fabisevi.ch | https://www.fabisevi.ch/feed.xml | fabisevi.ch |
Mobile A11y | https://mobilea11y.com/index.xml | mobilea11y.com |
More Than Just Code podcast - iOS and Swift development, news and advice | https://feeds.fireside.fm/mtjc/rss | mtjc.fireside.fm |
News - Apple Developer | https://developer.apple.com/news/rss/news.rss | developer.apple.com |
Ole Begemann | https://oleb.net/blog/atom.xml | oleb.net |
Pavel Zak’s dev blog | https://nerdyak.tech/feed.xml | izakpavel.github.io |
Swift by Sundell | https://www.swiftbysundell.com/feed.rss | swiftbysundell.com |
Swift by Sundell | https://swiftbysundell.com/feed.rss | swiftbysundell.com |
SwiftRocks | https://swiftrocks.com/rss.xml | swiftrocks.com |
The Atomic Birdhouse | https://atomicbird.com/index.xml | atomicbird.com |
Under the Radar | https://www.relay.fm/radar/feed | relay.fm |
Use Your Loaf - iOS Development News & Tips | https://useyourloaf.com/blog/rss.xml | useyourloaf.com |
inessential.com | https://inessential.com/xml/rss.xml | inessential.com |
tyler.io | https://tyler.io/feed/ | tyler.io |
Title | RSS Feed Url | Domain |
---|---|---|
/Film | https://feeds2.feedburner.com/slashfilm | slashfilm.com |
Ain’t It Cool News Feed | https://www.aintitcool.com/node/feed/ | aintitcool.com |
ComingSoon.net | https://www.comingsoon.net/feed | comingsoon.net |
Deadline | https://deadline.com/feed/ | deadline.com |
Film School Rejects | https://filmschoolrejects.com/feed/ | filmschoolrejects.com |
FirstShowing.net | https://www.firstshowing.net/feed/ | firstshowing.net |
IndieWire | https://www.indiewire.com/feed | indiewire.com |
Movie News and Discussion | https://reddit.com/r/movies/.rss | reddit.com |
Movies | https://www.bleedingcool.com/movies/feed/ | bleedingcool.com |
The A.V. Club | https://film.avclub.com/rss | avclub.com |
Variety | https://variety.com/feed/ | variety.com |
Title | RSS Feed Url | Domain |
---|---|---|
Billboard | https://www.billboard.com/articles/rss.xml | billboard.com |
Consequence | http://consequenceofsound.net/feed | consequence.net |
EDM.com - The Latest Electronic Dance Music News, Reviews & Artists | https://edm.com/.rss/full/ | edm.com |
Metal Injection | http://feeds.feedburner.com/metalinjection | metalinjection.net |
Music Business Worldwide | https://www.musicbusinessworldwide.com/feed/ | musicbusinessworldwide.com |
RSS: News | http://pitchfork.com/rss/news | pitchfork.com |
Song Exploder | http://songexploder.net/feed | songexploder.net |
Your EDM | https://www.youredm.com/feed | youredm.com |
Title | RSS Feed Url | Domain |
---|---|---|
BBC News - World | http://feeds.bbci.co.uk/news/world/rss.xml | bbc.co.uk |
CNN.com - RSS Channel - World | http://rss.cnn.com/rss/edition_world.rss | cnn.com |
International: Top News And Analysis | https://www.cnbc.com/id/100727362/device/rss/rss.html | cnbc.com |
NDTV News - World-news | http://feeds.feedburner.com/ndtvnews-world-news | ndtv.com |
NYT > World News | https://rss.nytimes.com/services/xml/rss/nyt/World.xml | nytimes.com |
Top stories - Google News | https://news.google.com/rss | news.google.com |
World | http://feeds.washingtonpost.com/rss/world | washingtonpost.com |
World News | https://www.reddit.com/r/worldnews/.rss | reddit.com |
World News Headlines, Latest International News, World Breaking News - Times of India | https://timesofindia.indiatimes.com/rssfeeds/296589292.cms | timesofindia.indiatimes.com |
World news - The Guardian | https://www.theguardian.com/world/rss | theguardian.com |
Yahoo News - Latest News & Headlines | https://www.yahoo.com/news/rss | yahoo.com |
Title | RSS Feed Url | Domain |
---|---|---|
Afford Anything | https://affordanything.com/feed/ | affordanything.com |
Blog – Student Loan Hero | https://studentloanhero.com/blog/feed | studentloanhero.com |
Budgets Are Sexy | https://feeds2.feedburner.com/budgetsaresexy | budgetsaresexy.com |
Financial Samurai | https://www.financialsamurai.com/feed/ | financialsamurai.com |
Frugalwoods | https://feeds.feedburner.com/Frugalwoods | frugalwoods.com |
Get Rich Slowly | https://www.getrichslowly.org/feed/ | getrichslowly.org |
Good Financial Cents® | https://www.goodfinancialcents.com/feed/ | goodfinancialcents.com |
I Will Teach You To Be Rich | https://www.iwillteachyoutoberich.com/feed/ | iwillteachyoutoberich.com |
Learn To Trade The Market | https://www.learntotradethemarket.com/feed | learntotradethemarket.com |
Making Sense Of Cents | https://www.makingsenseofcents.com/feed | makingsenseofcents.com |
Millennial Money | https://millennialmoney.com/feed/ | millennialmoney.com |
MintLife Blog | https://blog.mint.com/feed/ | mint.intuit.com |
Money Crashers | https://www.moneycrashers.com/feed/ | moneycrashers.com |
Money Saving Mom® | https://moneysavingmom.com/feed/ | moneysavingmom.com |
Money Under 30 | https://www.moneyunder30.com/feed | moneyunder30.com |
MoneyNing | http://feeds.feedburner.com/MoneyNing | moneyning.com |
MyWifeQuitHerJob.com | https://mywifequitherjob.com/feed/ | mywifequitherjob.com |
Nerd’s Eye View - Kitces.com | http://feeds.feedblitz.com/kitcesnerdseyeview&x=1 | kitces.com |
NerdWallet | https://www.nerdwallet.com/blog/feed/ | nerdwallet.com |
Oblivious Investor | https://obliviousinvestor.com/feed/ | obliviousinvestor.com |
Personal Finance | https://reddit.com/r/personalfinance/.rss | reddit.com |
SavingAdvice.com Blog | https://www.savingadvice.com/feed/ | savingadvice.com |
Side Hustle Nation | https://www.sidehustlenation.com/feed | sidehustlenation.com |
The College Investor | https://thecollegeinvestor.com/feed/ | cdn.thecollegeinvestor.com |
The Dough Roller | https://www.doughroller.net/feed/ | doughroller.net |
The Penny Hoarder | https://www.thepennyhoarder.com/feed/ | thepennyhoarder.com |
Well Kept Wallet | https://wellkeptwallet.com/feed/ | wellkeptwallet.com |
Wise Bread | http://feeds.killeraces.com/wisebread | wisebread.com |
Title | RSS Feed Url | Domain |
---|---|---|
500px | https://iso.500px.com/feed/ | iso.500px.com |
500px: | https://500px.com/editors.rss | 500px.com |
Big Picture | https://www.bostonglobe.com/rss/bigpicture | bostonglobe.com |
Canon Rumors – Your best source for Canon rumors, leaks and gossip | https://www.canonrumors.com/feed/ | canonrumors.com |
Digital Photography School | https://feeds.feedburner.com/DigitalPhotographySchool | digital-photography-school.com |
Light Stalking | https://www.lightstalking.com/feed/ | lightstalking.com |
Lightroom Killer Tips | https://lightroomkillertips.com/feed/ | lightroomkillertips.com |
One Big Photo | http://feeds.feedburner.com/OneBigPhoto | onebigphoto.com |
PetaPixel | https://petapixel.com/feed/ | petapixel.com |
Strobist | http://feeds.feedburner.com/blogspot/WOBq | strobist.blogspot.com |
Stuck in Customs | https://stuckincustoms.com/feed/ | stuckincustoms.com |
The Sartorialist | https://feeds.feedburner.com/TheSartorialist | thesartorialist.com |
Title | RSS Feed Url | Domain |
---|---|---|
Better Programming - Medium | https://medium.com/feed/better-programming | betterprogramming.pub |
Code as Craft | https://codeascraft.com/feed/atom/ | codeascraft.com |
CodeNewbie | http://feeds.codenewbie.org/cnpodcast.xml | codenewbie.org |
Coding Horror | https://feeds.feedburner.com/codinghorror | blog.codinghorror.com |
Complete Developer Podcast | https://completedeveloperpodcast.com/feed/podcast/ | completedeveloperpodcast.com |
Dan Abramov’s Overreacted Blog RSS Feed | https://overreacted.io/rss.xml | overreacted.io |
Developer Tea | https://feeds.simplecast.com/dLRotFGk | developertea.com |
English (US) | https://blog.twitter.com/engineering/en_us/blog.rss | blog.twitter.com |
FLOSS Weekly (Audio) | https://feeds.twit.tv/floss.xml | twit.tv |
Facebook Engineering | https://engineering.fb.com/feed/ | engineering.fb.com |
GitLab | https://about.gitlab.com/atom.xml | about.gitlab.com |
Google Developers Blog | http://feeds.feedburner.com/GDBcode | developers.googleblog.com |
Google TechTalks | https://www.youtube.com/feeds/videos.xml?user=GoogleTechTalks | youtube.com |
HackerNoon.com - Medium | https://medium.com/feed/hackernoon | medium.com |
Hanselminutes with Scott Hanselman | https://feeds.simplecast.com/gvtxUiIf | hanselminutes.com |
InfoQ | https://feed.infoq.com | infoq.com |
Instagram Engineering - Medium | https://instagram-engineering.com/feed/ | instagram-engineering.com |
Java, SQL and jOOQ. | https://blog.jooq.org/feed | blog.jooq.org |
JetBrains Blog | https://blog.jetbrains.com/feed | blog.jetbrains.com |
Joel on Software | https://www.joelonsoftware.com/feed/ | joelonsoftware.com |
LinkedIn Engineering | https://engineering.linkedin.com/blog.rss.html | engineering.linkedin.com |
Martin Fowler | https://martinfowler.com/feed.atom | martinfowler.com |
Netflix TechBlog - Medium | https://netflixtechblog.com/feed | netflixtechblog.com |
Overflow - Buffer Resources | https://buffer.com/resources/overflow/rss/ | buffer.com |
Podcast – Software Engineering Daily | https://softwareengineeringdaily.com/category/podcast/feed | softwareengineeringdaily.com |
Posts on &> /dev/null | https://www.thirtythreeforty.net/posts/index.xml | thirtythreeforty.net |
Prezi Engineering - Medium | https://engineering.prezi.com/feed | engineering.prezi.com |
Programming Throwdown | http://feeds.feedburner.com/ProgrammingThrowdown | programmingthrowdown.com |
Programming – The Crazy Programmer | https://www.thecrazyprogrammer.com/category/programming/feed | thecrazyprogrammer.com |
Robert Heaton - Blog | https://robertheaton.com/feed.xml | robertheaton.com |
Scott Hanselman’s Blog | http://feeds.hanselman.com/ScottHanselman | hanselman.com |
Scripting News | http://scripting.com/rss.xml | scripting.com |
Signal v. Noise | https://m.signalvnoise.com/feed/ | m.signalvnoise.com |
Slack Engineering | https://slack.engineering/feed | slack.engineering |
Software Defined Talk | https://feeds.fireside.fm/sdt/rss | softwaredefinedtalk.com |
Software Engineering Radio - The Podcast for Professional Software Developers | http://feeds.feedburner.com/se-radio | se-radio.net |
SoundCloud Backstage Blog | https://developers.soundcloud.com/blog/blog.rss | developers.soundcloud.com |
Spotify Engineering | https://labs.spotify.com/feed/ | engineering.atspotify.com |
Stack Abuse | https://stackabuse.com/rss/ | stackabuse.com |
Stack Overflow Blog | https://stackoverflow.blog/feed/ | stackoverflow.blog |
The 6 Figure Developer | http://6figuredev.com/feed/rss/ | 6figuredev.com |
The Airbnb Tech Blog - Medium | https://medium.com/feed/airbnb-engineering | medium.com |
The Cynical Developer | https://cynicaldeveloper.com/feed/podcast | cynical.dev |
The GitHub Blog | https://github.blog/feed/ | github.blog |
The PIT Show: Reflections and Interviews in the Tech World | https://feeds.transistor.fm/productivity-in-tech-podcast | productivityintech.com |
The Rabbit Hole: The Definitive Developer’s Podcast | http://therabbithole.libsyn.com/rss | therabbithole.libsyn.com |
The Stack Overflow Podcast | https://feeds.simplecast.com/XA_851k3 | stackoverflow.blog |
The Standup | https://feeds.fireside.fm/standup/rss | standup.fm |
The Women in Tech Show: A Technical Podcast | https://thewomenintechshow.com/category/podcast/feed/ | thewomenintechshow.com |
programming | https://www.reddit.com/r/programming/.rss | reddit.com |
Title | RSS Feed Url | Domain |
---|---|---|
/r/space: news, articles and discussion | https://www.reddit.com/r/space/.rss?format=xml | reddit.com |
NASA Breaking News | https://www.nasa.gov/rss/dyn/breaking_news.rss | nasa.gov |
New Scientist - Space | https://www.newscientist.com/subject/space/feed/ | newscientist.com |
Sky & Telescope | https://www.skyandtelescope.com/feed/ | skyandtelescope.org |
Space - The Guardian | https://www.theguardian.com/science/space/rss | theguardian.com |
Space.com | https://www.space.com/feeds/all | space.com |
SpaceX | https://www.youtube.com/feeds/videos.xml?user=spacexchannel | youtube.com |
Title | RSS Feed Url | Domain |
---|---|---|
BBC Sport - Sport | http://feeds.bbci.co.uk/sport/rss.xml | bbc.co.uk |
Reddit Sports | https://www.reddit.com/r/sports.rss | reddit.com |
Sports News - Latest Sports and Football News - Sky News | http://feeds.skynews.com/feeds/rss/sports.xml | news.sky.com |
Sportskeeda | https://www.sportskeeda.com/feed | sportskeeda.com |
Yahoo! Sports - News, Scores, Standings, Rumors, Fantasy Games | https://sports.yahoo.com/rss/ | sports.yahoo.com |
www.espn.com - TOP | https://www.espn.com/espn/rss/news | espn.com |
Title | RSS Feed Url | Domain |
---|---|---|
TV | https://www.bleedingcool.com/tv/feed/ | bleedingcool.com |
TV Fanatic | https://www.tvfanatic.com/rss.xml | tvfanatic.com |
TVLine | https://tvline.com/feed/ | tvline.com |
Television News and Discussion | https://reddit.com/r/television/.rss | reddit.com |
The A.V. Club | https://tv.avclub.com/rss | avclub.com |
the TV addict | http://feeds.feedburner.com/thetvaddict/AXob | thetvaddict.com |
Title | RSS Feed Url | Domain |
---|---|---|
BBC Sport - Tennis | http://feeds.bbci.co.uk/sport/tennis/rss.xml | bbc.co.uk |
Essential Tennis Podcast - Instruction, Lessons, Tips | https://feed.podbean.com/essentialtennis/feed.xml | essentialtennis.podbean.com |
Grand Slam Fantasy Tennis | http://www.grandslamfantasytennis.com/feed/?x=1 | grandslamfantasytennis.com |
Tennis - ATP World Tour | https://www.atptour.com/en/media/rss-feed/xml-feed | atptour.com |
Tennis News & Discussion | https://www.reddit.com/r/tennis/.rss | reddit.com |
peRFect Tennis | https://www.perfect-tennis.com/feed/ | perfect-tennis.com |
www.espn.com - TENNIS | https://www.espn.com/espn/rss/tennis/news | espn.com |
Title | RSS Feed Url | Domain |
---|---|---|
Atlas Obscura - Latest Articles and Places | https://www.atlasobscura.com/feeds/latest | atlasobscura.com |
Live Life Travel | https://www.livelifetravel.world/feed/ | livelifetravel.world |
Lonely Planet Travel News | https://www.lonelyplanet.com/news/feed/atom/ | lonelyplanet.com |
NYT > Travel | https://rss.nytimes.com/services/xml/rss/nyt/Travel.xml | nytimes.com |
Nomadic Matt’s Travel Site | https://www.nomadicmatt.com/travel-blog/feed/ | nomadicmatt.com |
Travel - The Guardian | https://www.theguardian.com/uk/travel/rss | theguardian.com |
Title | RSS Feed Url | Domain |
---|---|---|
Articles on Smashing Magazine — For Web Designers And Developers | https://www.smashingmagazine.com/feed | smashingmagazine.com |
Boxes and Arrows | http://boxesandarrows.com/rss/ | boxesandarrows.com |
Designer News Feed | https://www.designernews.co/?format=rss | designernews.co |
Inside Design | https://www.invisionapp.com/inside-design/feed | invisionapp.com |
JUST™ Creative | https://feeds.feedburner.com/JustCreativeDesignBlog | justcreative.com |
NN/g latest articles and announcements | https://www.nngroup.com/feed/rss/ | nngroup.com |
UX Blog – UX Studio | https://uxstudioteam.com/ux-blog/feed/ | uxstudioteam.com |
UX Collective - Medium | https://uxdesign.cc/feed | uxdesign.cc |
UX Movement | https://uxmovement.com/feed/ | uxmovement.com |
Usability Geek | https://usabilitygeek.com/feed/ | usabilitygeek.com |
User Experience | https://www.reddit.com/r/userexperience/.rss | reddit.com |
Title | RSS Feed Url | Domain |
---|---|---|
A List Apart: The Full Feed | https://alistapart.com/main/feed/ | alistapart.com |
CSS-Tricks | https://css-tricks.com/feed/ | css-tricks.com |
Code Wall | https://www.codewall.co.uk/feed/ | codewall.co.uk |
David Walsh Blog | https://davidwalsh.name/feed | davidwalsh.name |
Mozilla Hacks – the Web developer blog | https://hacks.mozilla.org/feed/ | hacks.mozilla.org |
Sink In - Tech and Travel | https://gosink.in/rss/ | gosink.in |
Updates | https://developers.google.com/web/updates/rss.xml | developers.google.com |
Feeds in the OPML files in “with category” will have all the feeds wrapped around extra <outline>
tag so that they can be imported with the predefined category in the RSS readers which support categorization. If your reader does not support OPML with extra <outline>
tag, you can use the opml inside “without category” directory.
A list of Useful GitHub Repositories full of FREE Resources.
Repository | Description | License |
---|---|---|
GraphQL-Apis | 📜 A collective list of public GraphQL APIs | MIT |
Public-Apis | A collective list of free APIs | MIT |
Repository | Description | License |
---|---|---|
Computer Vision | A curated list of awesome computer vision resources | CC0-1.0 |
Machine Learning | A curated list of awesome Machine Learning frameworks, libraries and software | CC0-1.0 |
Natural Language Processing | 📖 A curated list of resources dedicated to Natural Language Processing (NLP) | CC0-1.0 |
Pytorch | A comprehensive list of pytorch related content on github,such as different models,implementations,helper libraries,tutorials etc | No License |
Repository | Description | License |
---|---|---|
GraphQL | Awesome list of GraphQL | CC0-1.0 |
Repository | Description | License |
---|---|---|
Free OReilly Books | Free O Reilly Books | No License |
Free Programming Books | 📚 Freely available programming books | CC-BY-4.0 |
GoBooks | List of Golang books | CC-BY-4.0 |
JavaScript | 📚 List of books to master JavaScript Development 🚀 | No License |
Mind Expanding Books | 📚 Books everyone should read | CC0-1.0 |
Python Books | 📚 Directory of Python books | CC-BY-4.0 |
TypeScript Books | :books: The definitive guide to TypeScript and possibly the best TypeScript book 📖. Free and Open Source 🌹 | CC-BY-4.0 |
Repository | Description | License |
---|---|---|
Become A Full Stack Web Developer | Free resources for learning Full Stack Web Development | MIT |
Clean Code JavaScript | 🛁 Clean Code concepts adapted for JavaScript | MIT |
Coding Interview University | A complete computer science study plan to become a software engineer. | CC-BY-SA-4.0 |
Computer Science (OSSU) | 🎓 Path to a free self-taught education in Computer Science! | MIT |
CS Courses | 📚 List of awesome university courses for learning Computer Science! | No License |
Developer Roadmap | Roadmap to becoming a web developer in 2021 | Custom |
Easy Application | Over 400 software engineering companies that are easy to apply to | MIT |
FrontEnd Developer Interview Questions | A list of helpful front-end related questions you can use to interview potential candidates, test yourself or completely ignore | MIT |
Hiring Without Whiteboards | ⭐️ Companies that don’t have a broken hiring process | MIT |
Interview This | An open source list of developer questions to ask prospective employers | CC BY-SA 3.0 |
JavaScript Algorithms | 📝 Algorithms and data structures implemented in JavaScript with explanations and links to further readings | MIT |
Leetcode Patterns | A curated list of leetcode questions grouped by their common patterns | GPL-3.0 |
Repository | Description | License |
---|---|---|
Async-JavaScript | Cheatsheet for promises and async/await. | MIT |
Bootstrap 5 | An interactive list of Bootstrap 5 classes, variables, and mixins | MIT |
C++ | Modern C++ Cheatsheet | No License |
Data Science | List of Data Science Cheatsheets to rule the world | MIT |
Docker | 🐋 Docker Cheat Sheet 🐋 | MIT |
Emoji | A markdown version emoji cheat sheet | MIT |
Git and GitHub | A list of cool features of Git and GitHub. | MIT |
Python | Comprehensive Python Cheatsheet | No License |
Vim | Shortcuts that will help you to become an advance VIM user. | CC-BY-4.0 |
Repository | Description | License |
---|---|---|
AWS | A curated list of awesome Amazon Web Services (AWS) libraries, open source repos, guides, blogs, and other resources. Featuring the Fiery Meter of AWSome. | CC-BY-4.0 |
Repository | Description | License |
---|---|---|
ACM-ICPC Algorithms | Algorithms used in Competitive Programming | No License |
Awesome Competitive Programming | A curated list of awesome Competitive Programming, Algorithm and Data Structure resources | CC-BY-4.0 |
Competitive Code | A repo for interesting Competitive Coding problems | MIT |
Competitive Programming Resources | Competitive Programming & System Design Resources. | MIT |
Repository | Description | License |
---|---|---|
Awesome learn by playing | A curated list of resources that can allow you to learn programming languages by playing games | MIT |
Free Certifications | Curated list of free courses & certifications | MIT |
GCP Training | Labs and demos for courses for GCP Training | Apache-2.0 |
Repository | Description | License |
---|---|---|
Beautiful Docs | Pointers to useful, well-written, and otherwise beautiful documentation. | No License |
Design Resources for Developers | Curated list of design and UI resources from stock photos, web templates, CSS frameworks, UI libraries, tools and much more | MIT |
DevYouTubeList | List of Development YouTube Channels | MIT |
Programming Talks | Awesome & interesting talks about programming | No License |
Repository | Description | License |
---|---|---|
Math | A curated list of awesome mathematics resources | CC0-1.0 |
Project Based Learning | Curated list of project-based tutorials | MIT |
Repository | Description | License |
---|---|---|
.NET | A collection of awesome .NET libraries, tools, frameworks and software | CC0-1.0 |
CSS | List of awesome CSS frameworks | CC-BY-4.0 |
Electron | Useful resources for creating apps with Electron | CC0-1.0 |
Laravel | A curated list of bookmarks, packages, tutorials, videos and other cool resources from the Laravel ecosystem | CC-BY-4.0 |
NestJS | A curated list of awesome things related to NestJS 😎 | CC0-1.0 |
Vue | 🎉 A curated list of awesome things related to Vue.js | MIT |
Repository | Description | License |
---|---|---|
Animate CSS | 🍿 A cross-browser library of CSS animations. As easy to use as an easy thing | MIT |
Front End Web Development | This repository contains content which will be helpful in your journey as a front-end Web Developer | MIT |
Front End Dev Bookmarks | Manually curated collection of resources for frontend web developers. | CC-BY-SA-4.0 |
HTML5 | 📝 A curated list of awesome HTML5 resources | MIT |
React Components | Curated List of React Components & Libraries | CC0-1.0 |
Repository | Description | License |
---|---|---|
Community Writer Programs | A list of Developer Community Writer Programs | MIT |
List-Of-Open-Source-Internships-Programs | A curated list of all the open-source internships/Programs | No License |
Repository | Description | License |
---|---|---|
C | A curated list of awesome C frameworks, libraries, resources and other shiny things. Inspired by all the other awesome-… projects out there | CC-BY-SA-4.0 |
C++ | A curated list of awesome C++ (or C) frameworks, libraries, resources, and shiny things. Inspired by awesome-… stuff | MIT |
Go | A curated list of awesome Go frameworks, libraries and software | MIT |
Java | A curated list of awesome frameworks, libraries and software for the Java programming language | CC-BY-4.0 |
JavaScript | 🐢 A collection of awesome browser-side JavaScript libraries, resources and shiny things | CC-BY-4.0 |
Lua | A curated list of quality Lua packages and resources. | CC0-1.0 |
PHP | A curated list of amazingly awesome PHP libraries, resources and shiny things | WTFPL |
Python | A curated list of awesome Python frameworks, libraries, software and resources | CC-BY-4.0 |
R | A curated list of awesome R packages, frameworks and software | CC BY-NC-SA 4.0 |
Rust | A curated list of Rust code and resources | CC0-1.0 |
Shell | A curated list of awesome command-line frameworks, toolkits, guides and gizmos | CC0-1.0 |
Swift | A collaborative list of awesome Swift libraries and resources | CC0-1.0 |
V | A curated list of awesome V frameworks, libraries, software and resources. | CC0-1.0 |
Repository | Description | License |
---|---|---|
50projects50days | 50+ mini web projects using HTML, CSS & JS | MIT |
Build your own X | 🤓 Build your own (insert technology here) | CC0-1.0 |
React Projects | A collection of projects built on the React library | No License |
Vanilla Web Projects | Mini projects built with HTML5, CSS & JavaScript. No frameworks or libraries | No License |
Repository | Description | License |
---|---|---|
EthList | The Comprehensive Ethereum Reading List | No License |
Gopher | A curated selection of blog posts on Go | Apache-2.0 |
Repository | Description | License |
---|---|---|
Hacking | A collection of various awesome lists for hackers, pentesters and security researchers | CC0-1.0 |
Web Security | 🐶 A curated list of Web Security materials and resources. | CC0-1.0 |
Repository | Description | License |
---|---|---|
Grokking System Design | Systems design is the process of defining the architecture, modules, interfaces, and data for a system to satisfy specified requirements. Systems design could be seen as the application of systems theory to product development. | GPL-3.0 |
System Design Interview | System design interview for IT companies | No License |
System Design Primer | Learn how to design large-scale systems. Prep for the system design interview. Includes Anki flashcards. | CC-BY-SA-4.0 |
System Design Resources | These are the best resources for System Design on the Internet | GPL-3.0 |
Repository | Description | License |
---|---|---|
Proxy List | A list of free, public, forward proxy servers. UPDATED DAILY! | MIT |
Streaming | a curated list of awesome streaming frameworks, applications, etc | CC-BY-SA-4.0 |
Trackerslist | Updated list of public BitTorrent trackers | GPL-2.0 |
WPO | 📝 A curated list of Web Performance Optimization. Everyone can contribute here! | MIT |
Everything about VPNs Technologies and tools
This method is usefule when a service is prohibited in your region/area. Buy a vps a 4$ worth VPS is good enough and it is preferable to use Ubuntu/Debian Images.
apt install nginx
./etc/nginx/nginx.conf
with the following configworker_processes auto;
worker_rlimit_nofile 35000;
events {
worker_connections 15000;
multi_accept off;
}
http {
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
server {
listen 80 default_server;
listen [::]:80 default_server;
resolver 8.8.8.8 ipv6=off;
location / {
proxy_pass http://$host$request_uri;
}
}
}
stream {
log_format basic '$remote_addr [$time_local] '
'$protocol $status $bytes_sent $bytes_received '
'$session_time';
access_log /var/log/nginx/access.log basic;
error_log /var/log/nginx/error.log error;
server {
resolver 1.1.1.1 ipv6=off;
listen 443;
ssl_preread on;
proxy_connect_timeout 5s;
proxy_pass $ssl_preread_server_name:443;
}
}
dpkg
command or compile src to get the binary file# dns server name, default is host name
# server-name,
# example:
# server-name smartdns
#
# whether resolv local hostname to ip address
# resolv-hostname yes
# dns server run user
# user [username]
# example: run as nobody
# user nobody
#
# Include another configuration options, if -group is specified, only include the rules to specified group.
# conf-file [file] [-group group-name]
# conf-file blacklist-ip.conf
# conf-file whitelist-ip.conf -group office
# conf-file *.conf
# dns server bind ip and port, default dns server port is 53, support binding multi ip and port
# bind udp server
# bind [IP]:[port][@device] [-group [group]] [-no-rule-addr] [-no-rule-nameserver] [-no-rule-ipset] [-no-speed-check] [-no-cache] [-no-rule-soa] [-no-dualstack-selection]
# bind tcp server
# bind-tcp [IP]:[port][@device] [-group [group]] [-no-rule-addr] [-no-rule-nameserver] [-no-rule-ipset] [-no-speed-check] [-no-cache] [-no-rule-soa] [-no-dualstack-selection]
# bind tls server
# bind-tls [IP]:[port][@device] [-group [group]] [-no-rule-addr] [-no-rule-nameserver] [-no-rule-ipset] [-no-speed-check] [-no-cache] [-no-rule-soa] [-no-dualstack-selection]
# bind-cert-key-file [path to file]
# tls private key file
# bind-cert-file [path to file]
# tls cert file
# bind-cert-key-pass [password]
# tls private key password
# bind-https server
# bind-https [IP]:[port][@device] [-group [group]] [-no-rule-addr] [-no-rule-nameserver] [-no-rule-ipset] [-no-speed-check] [-no-cache] [-no-rule-soa] [-no-dualstack-selection]
# option:
# -group: set domain request to use the appropriate server group.
# -no-rule-addr: skip address rule.
# -no-rule-nameserver: skip nameserver rule.
# -no-rule-ipset: skip ipset rule or nftset rule.
# -no-speed-check: do not check speed.
# -no-cache: skip cache.
# -no-rule-soa: Skip address SOA(#) rules.
# -no-dualstack-selection: Disable dualstack ip selection.
# -no-ip-alias: ignore ip alias.
# -force-aaaa-soa: force AAAA query return SOA.
# -force-https-soa: force HTTPS query return SOA.
# -no-serve-expired: no serve expired.
# -no-rules: skip all rules.
# -ipset ipsetname: use ipset rule.
# -nftset nftsetname: use nftset rule.
# example:
# IPV4:
# bind :53
# bind :53@eth0
# bind :6053 -group office -no-speed-check
# IPV6:
# bind [::]:53
# bind [::]:53@eth0
# bind-tcp [::]:53
bind <VPS_IPADDRESS>:53
# tcp connection idle timeout
# tcp-idle-time [second]
# dns cache size
# cache-size [number]
# 0: for no cache
# -1: auto set cache size
# cache-size 32768
# dns cache memory size
# cache-mem-size [size]
# enable persist cache when restart
# cache-persist no
# cache persist file
# cache-file /tmp/smartdns.cache
# cache persist time
# cache-checkpoint-time [second]
# cache-checkpoint-time 86400
# prefetch domain
# prefetch-domain [yes|no]
# prefetch-domain yes
# cache serve expired
# serve-expired [yes|no]
# serve-expired yes
# cache serve expired TTL
# serve-expired-ttl [num]
# serve-expired-ttl 0
# reply TTL value to use when replying with expired data
# serve-expired-reply-ttl [num]
# serve-expired-reply-ttl 30
# List of hosts that supply bogus NX domain results
# bogus-nxdomain [ip/subnet]
# List of IPs that will be filtered when nameserver is configured -blacklist-ip parameter
# blacklist-ip [ip/subnet]
# List of IPs that will be accepted when nameserver is configured -whitelist-ip parameter
# whitelist-ip [ip/subnet]
# List of IPs that will be ignored
# ignore-ip [ip/subnet]
# alias of IPs
# ip-alias [ip/subnet] [ip1[,ip2]...]
# ip-alias 192.168.0.1/24 10.9.0.1,10.9.0.2
# speed check mode
# speed-check-mode [ping|tcp:port|none|,]
# example:
# speed-check-mode ping,tcp:80,tcp:443
# speed-check-mode tcp:443,ping
# speed-check-mode none
# force AAAA query return SOA
# force-AAAA-SOA [yes|no]
# force specific qtype return soa
# force-qtype-SOA [-,][qtypeid |...]
# force-qtype-SOA [qtypeid|start_id-end_id|,...]
# force-qtype-SOA 65 28 add type 65,28
# force-qtype-SOA 65,28 add type 65,28
# force-qtype-SOA 65-68 add type 65-68
# force-qtype-SOA -,65-68, clear type 65-68
# force-qtype-SOA - clear all type
force-qtype-SOA 65
# Enable IPV4, IPV6 dual stack IP optimization selection strategy
# dualstack-ip-selection-threshold [num] (0~1000)
# dualstack-ip-allow-force-AAAA [yes|no]
# dualstack-ip-selection [yes|no]
# dualstack-ip-selection no
# edns client subnet
# edns-client-subnet [ip/subnet]
# edns-client-subnet 192.168.1.1/24
# edns-client-subnet 8::8/56
# ttl for all resource record
# rr-ttl: ttl for all record
# rr-ttl-min: minimum ttl for resource record
# rr-ttl-max: maximum ttl for resource record
# rr-ttl-reply-max: maximum reply ttl for resource record
# example:
# rr-ttl 300
# rr-ttl-min 60
# rr-ttl-max 86400
# rr-ttl-reply-max 60
# Maximum number of IPs returned to the client|8|number of IPs, 1~16
# example:
# max-reply-ip-num 1
# Maximum number of queries per second|0|number of queries, 0 means no limit.
# example:
# max-query-limit 65535
# response mode
# response-mode [first-ping|fastest-ip|fastest-response]
# set log level
# log-level: [level], level=off, fatal, error, warn, notice, info, debug
# log-file: file path of log file.
# log-console [yes|no]: output log to console.
# log-syslog [yes|no]: output log to syslog.
# log-size: size of each log file, support k,m,g
# log-num: number of logs, 0 means disable log
log-level info
# log-file /var/log/smartdns/smartdns.log
# log-size 128k
# log-num 2
# log-file-mode [mode]: file mode of log file.
# dns audit
# audit-enable [yes|no]: enable or disable audit.
# audit-enable yes
# audit-SOA [yes|no]: enable or disable log soa result.
# audit-size size of each audit file, support k,m,g
# audit-file /var/log/smartdns-audit.log
# audit-console [yes|no]: output audit log to console.
# audit-syslog [yes|no]: output audit log to syslog.
# audit-file-mode [mode]: file mode of audit file.
# audit-size 128k
# audit-num 2
# Support reading dnsmasq dhcp file to resolve local hostname
# dnsmasq-lease-file /var/lib/misc/dnsmasq.leases
# certificate file
# ca-file [file]
# ca-file /etc/ssl/certs/ca-certificates.crt
# certificate path
# ca-path [path]
# ca-path /etc/ssl/certs
# remote udp dns server list
# server [IP]:[PORT]|URL [-blacklist-ip] [-whitelist-ip] [-check-edns] [-group [group] ...] [-exclude-default-group]
# default port is 53
# -blacklist-ip: filter result with blacklist ip
# -whitelist-ip: filter result with whitelist ip, result in whitelist-ip will be accepted.
# -check-edns: result must exist edns RR, or discard result.
# g|-group [group]: set server to group, use with nameserver /domain/group.
# e|-exclude-default-group: exclude this server from default group.
# p|-proxy [proxy-name]: use proxy to connect to server.
# b|-bootstrap-dns: set as bootstrap dns server.
# -set-mark: set mark on packets.
# -subnet [ip/subnet]: set edns client subnet.
# -host-ip [ip]: set dns server host ip.
# -interface [interface]: set dns server interface.
server 8.8.8.8 -group g1
#server 8.8.8.8 -group g2
# server tls://dns.google:853
# server https://dns.google/dns-query
# remote tcp dns server list
# server-tcp [IP]:[PORT] [-blacklist-ip] [-whitelist-ip] [-group [group] ...] [-exclude-default-group]
# default port is 53
server-tcp 8.8.8.8 -group g1
#server-tcp 8.8.8.8 -group g2
#server-tcp 18.130.3.145 -group g3
# remote tls dns server list
# server-tls [IP]:[PORT] [-blacklist-ip] [-whitelist-ip] [-spki-pin [sha256-pin]] [-group [group] ...] [-exclude-default-group]
# -spki-pin: TLS spki pin to verify.
# -tls-host-verify: cert hostname to verify.
# -host-name: TLS sni hostname.
# k|-no-check-certificate: no check certificate.
# p|-proxy [proxy-name]: use proxy to connect to server.
# -bootstrap-dns: set as bootstrap dns server.
# Get SPKI with this command:
# echo | openssl s_client -connect '[ip]:853' | openssl x509 -pubkey -noout | openssl pkey -pubin -outform der | openssl dgst -sha256 -binary | openssl enc -base64
# default port is 853
# server-tls 8.8.8.8
# server-tls 1.0.0.1
# remote https dns server list
# server-https https://[host]:[port]/path [-blacklist-ip] [-whitelist-ip] [-spki-pin [sha256-pin]] [-group [group] ...] [-exclude-default-group]
# -spki-pin: TLS spki pin to verify.
# -tls-host-verify: cert hostname to verify.
# -host-name: TLS sni hostname.
# -http-host: http host.
# k|-no-check-certificate: no check certificate.
# p|-proxy [proxy-name]: use proxy to connect to server.
# -bootstrap-dns: set as bootstrap dns server.
# default port is 443
# server-https https://cloudflare-dns.com/dns-query
# socks5 and http proxy list
# proxy-server URL -name [proxy name]
# URL: socks5://[username:password@]host:port
# http://[username:password@]host:port
# -name: proxy name, use with server -proxy [proxy-name]
# example:
# proxy-server socks5://alireza:[email protected]:2059 -name proxy
#proxy-server http://127.0.0.1:6660 -name proxy
# specific nameserver to domain
# nameserver [/domain/][group|-]
# nameserer group, set the domain name to use the appropriate server group.
#nameserver /chatgpt.com/g1, #Set the domain name to use the appropriate server group.
# nameserver /www.example.com/-, ignore this domain
# expand ptr record from address record
# expand-ptr-from-address yes
# specific address to domain
# address [/domain/][ip1,ip2|-|-4|-6|#|#4|#6]
# address #, block all A and AAAA request.
# address #6, block all AAAA request.
# address -6, allow all AAAA request.
#5.202.100.100,5.202.100.101,185.55.226.26,185.55.225.25,78.157.42.100,78.157.42.101,91.107.164.5
# address /www.example.com/1.2.3.4,5.6.7.8, return multiple ip addresses
# address /www.example.com/-, ignore address, query from upstream, suffix 4, for ipv4, 6 for ipv6, none for all
# address /www.example.com/#, return SOA to client, suffix 4, for ipv4, 6 for ipv6, none for all
# specific cname to domain
# cname /domain/target
# add srv record, support multiple srv record.
# srv-record /domain/[target][,port][,priority][,weight]
# srv-record /_ldap._tcp.example.com/ldapserver.example.com,389
# srv-record /_ldap._tcp.example.com/
# https-record /domain/[target=][,port=][,priority=][,alph=][,ech=][,ipv4hint=][,ipv6hint=]
# https-record noipv4hint,noipv6hint
# https-record /www.example.com/ipv4hint=192.168.1.2
# enable DNS64 feature
# dns64 [ip/subnet]
# dns64 64:ff9b::/96
# enable ipset timeout by ttl feature
# ipset-timeout [yes]
# specific ipset to domain
# ipset [/domain/][ipsetname|#4:v4setname|#6:v6setname|-|#4:-|#6:-]
# ipset [ipsetname|#4:v4setname|#6:v6setname], set global ipset.
# ipset /www.example.com/block, set ipset with ipset name of block.
# ipset /www.example.com/-, ignore this domain.
# ipset ipsetname, set global ipset.
# add to ipset when ping is unreachable
# ipset-no-speed ipsetname
# ipset-no-speed pass
# enable nftset timeout by ttl feature
# nftset-timeout [yes|no]
# nftset-timeout yes
# add to nftset when ping is unreachable
# nftset-no-speed [#4:ip#table#set,#6:ipv6#table#setv6]
# nftset-no-speed #4:ip#table#set
# enable nftset debug, check nftset setting result, output log when error.
# nftset-debug [yes|no]
# nftset-debug yes
# specific nftset to domain
# nftset [/domain/][#4:ip#table#set,#6:ipv6#table#setv6]
# nftset [#4:ip#table#set,#6:ipv6#table#setv6] set global nftset.
# nftset /www.example.com/ip#table#set, equivalent to 'nft add element ip table set { ... }'
# nftset /www.example.com/-, ignore this domain
# nftset /www.example.com/#6:-, ignore ipv6
# nftset #6:ip#table#set, set global nftset.
# set ddns domain
# ddns-domain domain
# lookup local network hostname or ip address from mdns
# mdns-lookup [yes|no]
# mdns-lookup no
# set hosts file
# hosts-file [file]
# set domain rules
# domain-rules /domain/ [-speed-check-mode [...]]
# rules:
# [-c] -speed-check-mode [mode]: speed check mode
# speed-check-mode [ping|tcp:port|none|,]
# [-a] -address [address|-]: same as address option
# [-n] -nameserver [group|-]: same as nameserver option
# [-p] -ipset [ipset|-]: same as ipset option
# [-t] -nftset [nftset|-]: same as nftset option
# [-d] -dualstack-ip-selection [yes|no]: same as dualstack-ip-selection option
# [-g|-group group-name]: set domain-rules to group.
# -no-serve-expired: ignore expired domain
# -delete: delete domain rule
# -no-ip-alias: ignore ip alias
# -no-cache: ignore cache
# collection of domains
# the domain-set can be used with /domain/ for address, nameserver, ipset, etc.
# domain-set -name [set-name] -type list -file [/path/to/file]
# [-n] -name [set name]: domain set name
# [-t] -type [list]: domain set type, list only now
# [-f] -file [path/to/set]: file path of domain set
#
# example:
domain-set -name sanction -type list -file /etc/smartdns/proxy.list
address /domain-set:sanction/<VPS_IP_ADDRESS>
nameserver /domain-set:sanction/g1
# ipset /domain-set:domain-list/ipset
# domain-rules /domain-set:domain-list/ -speed-check-mode ping
# set ip rules
# ip-rules ip-cidrs [-ip-alias [...]]
# rules:
# [-c] -ip-alias [ip1,ip2]: same as ip-alias option
# [-a] -whitelist-ip: same as whitelist-ip option
# [-n] -blacklist-ip: same as blacklist-ip option
# [-p] -bogus-nxdomain: same as bogus-nxdomain option
# [-t] -ignore-ip: same as ignore-ip option
# collection of IPs
# the ip-set can be used with /ip-cidr/ for ip-alias, ignore-ip, etc.
# ip-set -name [set-name] -type list -file [/path/to/file]
# [-n] -name [set name]: ip set name
# [-t] -type [list]: ip set type, list only now
# [-f] -file [path/to/set]: file path of ip set
#
# example:
# ip-set -name ip-list -file /etc/smartdns/ip-list.conf
# bogus-nxdomain ip-set:ip-list
# ip-alias ip-set:ip-list 1.2.3.4
# ip-alias ip-set:ip-list ip-set:ip-map-list
# set client rules
# client-rules [ip-cidr|mac|ip-set] [-group [group]] [-no-rule-addr] [-no-rule-nameserver] [-no-rule-ipset] [-no-speed-check] [-no-cache] [-no-rule-soa] [-no-dualstack-selection]
# client-rules option is same as bind option, please see bind option for detail.
# set group rules
# group-begin [group-name]
# group-match [-g|group group-name] [-domain domain] [-client-ip [ip-cidr|mac|ip-set]]
# group-end
# load plugin
# plugin [path/to/file] [args]
# plugin /usr/lib/smartdns/libsmartdns-ui.so --p 8080 -i 0.0.0.0 -r /usr/share/smartdns/wwwroot
/etc/smartdns/proxy.list
and put the actual domain name any slash or https things line by line, each line just one domain. For instanceasfadfad.com
asfdkanskf.net
.
.
.
.
.
If you want to run a website that supports HTTPS you should get tls certificate for it. I will not delve into the technical things behind the TLS and HTTPS protocol. Just Acquiring Free 3-months certificate.
cd
to that directory.acme.sh --issue --server letsencrypt -d 'qharib.ir' --dns --yes-I-know-dns-manual-mode-enough-go-ahead-please
--renew
except the --issue
flag~/.acme.sh
directoryI use Adguard Home.
wget --no-verbose -O - https://raw.githubusercontent.com/AdguardTeam/AdGuardHome/master/scripts/install.sh | sh -s -- -v
We use Adguard Dns-Proxy tool to proxify our dns queries through DOH.
dnsproxy -l <public_ip_of_vps> -p 53 --https-port=443 --tls-crt=/path/crt.crt --tls-key=/path/key.pkcs8.pem -u https://dnsoverhttps.doh/dns-query -b 8.8.8.8:53
Use Nyr scripts to fully install and manage users with them. Download the respective clients from the official sources to avoid further problems
docker run --name ocserv --restart always --privileged -p 443:443 -p 443:443/udp -e CA_CN="fqdn.sth" -e CA_ORG="fqdn.sth" -e CA_DAYS=3650 -e SRV_CN=fqdn.sth -e SRV_ORG="fqdn.sth" -e SRV_DAYS=3650 -e NO_TEST_USER=1 -d tommylau/ocserv
docker exec -ti ocserv ocpasswd -c /etc/ocserv/ocpasswd -g "Route,All" tommy
docker run --name ipsec-vpn-server --restart=always --env-file ./vpn.env -v /mnt/ikev2-vpn-data:/etc/ipsec.d -v /lib/modules:/lib/modules:ro -p 500:500/udp -p 4500:4500/udp -d --privileged hwdsl2/ipsec-vpn-server
vpn.env
fileVPN_IPSEC_PSK=your_ipsec_pre_shared_key
VPN_USER=your_vpn_username
VPN_PASSWORD=your_vpn_password
apt install apt-transport-https
deb [arch=amd64 signed-by=/usr/share/keyrings/deb.torproject.org-keyring.gpg] https://deb.torproject.org/torproject.org <DISTRIBUTION>/jammy main
deb-src [arch=amd64 signed-by=/usr/share/keyrings/deb.torproject.org-keyring.gpg] https://deb.torproject.org/torproject.org <DISTRIBUTION>/jammy main
wget -qO- https://deb.torproject.org/torproject.org/A3C4F0F979CAA22CDBA8F512EE8CBC9E886DDD89.asc | gpg --dearmor | tee /usr/share/keyrings/deb.torproject.org-keyring.gpg >/dev/null
apt update && apt install tor deb.torproject.org-keyring
https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/lyrebird
https://github.com/jetsung/golang-install
and latest golang tools/usr/local/bin/
directory/etc/tor/torrc
file add the following linesRunAsDaemon 1
ORPort 6889
ExtORPort auto
ExitPolicy reject *:*
BridgeRelay 1
PublishServerDescriptor 0
ServerTransportPlugin obfs4 exec /usr/local/bin/lyrebird
ServerTransportListenAddr obfs4 0.0.0.0:<port>
ContactInfo [email protected]
Nickname FreeBeerPrivate
/etc/apparmor.d/system_tor
and add this line /usr/local/bin/lyrebird ix,
sudo apparmor_parser -r /etc/apparmor.d/system_tor
tor.service
with systemdcat /var/lib/tor/pt_state/obfs4_bridgeline.txt
, cat /var/lib/tor/fingerprint
tor-instances create <name>
or replace it with OBFS4ORPort 36788
ExtORPort auto
ExitPolicy reject *:*
BridgeRelay 1
PublishServerDescriptor 0
ServerTransportPlugin webtunnel exec /usr/local/bin/webtunnel
ServerTransportListenAddr webtunnel 127.0.0.1:15003
ServerTransportOptions webtunnel url=https://domain.sth:443/<sth>
ContactInfo [email protected]
Nickname sth
nano/vi /etc/apparmor.d/system_tor
add this line: /usr/local/bin/webtunnel ix,
sudo apparmor_parser -r /etc/apparmor.d/system_tor
server {
listen [::]:443 ssl http2;
listen 443 ssl http2;
server_name domain.sth;
#ssl on;
# certificates generated via acme.sh
ssl_certificate path.crt;
ssl_certificate_key path.key;
ssl_session_timeout 15m;
ssl_protocols TLSv1.2 TLSv1.3;
ssl_ciphers ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384;
ssl_prefer_server_ciphers off;
ssl_session_cache shared:MozSSL:50m;
#ssl_ecdh_curve secp521r1,prime256v1,secp384r1;
ssl_session_tickets off;
add_header Strict-Transport-Security "max-age=63072000" always;
location = /<sth> {
proxy_pass http://127.0.0.1:15003;
proxy_http_version 1.1;
### Set WebSocket headers ###
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
### Set Proxy headers ###
proxy_set_header Accept-Encoding "";
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
add_header Front-End-Https on;
proxy_redirect off;
access_log off;
error_log off;
}
}
Thanks and Enjoy The Bridge
SniProxy based on dnsmasq and nginx It works like shecan.ir in Iran. SniProxy
docker-compose up -d
dnsmasq/proxy.conf
file based on the internet status of Iranlo
interface, localhostEverything about software engineeing and software development.
A curated list of awesome Java frameworks, libraries and software.
Frameworks that ease bean mapping.
Tools that handle the build cycle and dependencies of an application.
Libraries to manipulate bytecode programmatically.
Libraries that provide caching facilities.
Libraries for everything related to the CLI.
Libraries to assist with parsing command line arguments.
Libraries that provide TUI frameworks, or building blocks related functions.
Frameworks that can dynamically manage applications inside of a cluster.
Tools that provide metrics and quality measurements.
Frameworks and tools that enable code coverage metrics collection for test suites.
Tools that generate patterns for repetitive code in order to reduce verbosity and error-proneness.
Frameworks that help to create parsers, interpreters or compilers.
Libraries which seek to gain high level information from images and videos.
Libraries that provide external configuration.
Libraries that help with implementing optimization and satisfiability problems.
Frameworks and libraries that simplify reading/writing CSV data.
Efficient and specific data structures.
Everything that simplifies interactions with the database.
Libraries related to handling date and time.
Libraries that help to realize the Inversion of Control paradigm.
Augmentation of the development process at a fundamental level.
Libraries and frameworks for writing distributed and fault-tolerant applications.
Distributed transactions provide a mechanism for ensuring consistency of data updates in the presence of concurrent access and partial failures.
Tools that handle the distribution of applications in native formats.
Libraries that assist with processing office document formats.
Libraries related to the financial domain.
Formal-methods tools: proof assistants, model checking, symbolic execution, etc.
Libraries that facilitate functional programming.
Frameworks that support the development of games.
Libraries for working with geospatial data and algorithms.
Libraries to create modern graphical user interfaces.
Everything about high-performance computation, from collections to specific libraries.
Libraries that assist with creating HTTP requests and/or binding responses.
Libraries that handle serialization to hypermedia types.
Integrated development environments that try to simplify several aspects of development.
Libraries that assist with the creation, evaluation or manipulation of graphical images.
Libraries that help make the Java introspection and reflection API easier and faster to use.
Libraries for scheduling background jobs.
Libraries for serializing and deserializing JSON to and from Java objects.
Current implementations of the JVM/JDK.
Libraries that log the behavior of an application.
Tools that provide specific statistical algorithms for learning from data.
Tools that help send messages between clients to ensure protocol independency.
Tools for creating and managing microservices.
Everything else.
Tools for creating or managing mobile applications.
Tools that observe/monitor applications in production by providing telemetry.
For working with platform-specific native libraries.
Libraries that specialize in processing text.
Libraries for building network servers.
APIs that handle the persistence of objects.
Java platform as a service.
Tools to help with PDF files.
Tools for performance analysis, profiling and benchmarking.
Frameworks that are suites of multiple libraries encompassing several categories.
Libraries that help the management of operating system processes.
Libraries for developing reactive applications.
Frameworks specifically for creating RESTful services.
Libraries for scientific computing, analysis and visualization.
Engines that index documents for search and analysis.
Libraries that handle security, authentication, authorization or session management.
Libraries that handle serialization with high efficiency.
Servers specifically used to deploy applications.
Tools that substitute expressions in a template.
Tools that test from model to the view.
Tools that simplify testing asynchronous services.
Testing for the software development process that emerged from TDD and was heavily influenced by DDD and OOAD.
Everything related to the creation and handling of random data.
Provide environments to run tests for a specific use case.
Libraries that provide custom matchers.
Other stuff related to testing.
Tools which mock collaborators to help testing single, isolated units.
Libraries which provide general utility functions.
Utilities that help create the development shell environment and switch between different Java versions.
Libraries that analyze the content of websites.
Frameworks that handle the communication between the layers of a web application.
Active discussions.
Websites that provide a frontend for this list. Please note, there won’t be an official website. We don’t associate with a particular website and everybody is allowed to create one.
Books that made a big impact and are still worth reading.
Something to look at or listen to while programming.
Active accounts to follow. Descriptions from Twitter.
Sites to read.
Go language frameworks and tools
Libraries for building actor-based programs.
Libraries for building programs that leverage AI.
Libraries for manipulating audio.
Libraries for implementing authentication schemes.
Tools for building blockchains.
Libraries for building and working with bots.
Libraries and tools help with build automation.
Libraries for building Console Applications and Console User Interfaces.
Libraries for building standard or basic Command Line applications.
flag
package to support sub commands and more in idiomatic way.flag
package.kong
; see below).flag
package.Libraries for configuration parsing.
.env
).kingpin
).Tools for help with continuous integration.
Libraries for preprocessing CSS files.
Frameworks for performing ELT / ETL
See also Database for more complex key-value stores, and Trees for additional ordered map implementations.
interface{}
as key and auto scale up shards.bufio.Writer
.package strings
but adapted to work with slices.Data stores with expiring records, in-memory distributed data stores, or in-memory subsets of file-based databases.
Libraries for building and using SQL.
database/sql
driver for Azure Cosmos DB.database/sql
compatibility.Libraries for working with dates and times.
Packages that help with building Distributed Systems.
Tools for updating dynamic DNS records.
Libraries and tools that implement email creation and sending.
net/smtp
.Embedding other languages inside your go code.
Libraries for handling errors.
Libraries for handling files and file systems.
Packages for accounting and finance.
Libraries for working with forms.
url.Values
into usable struct values of standard or custom types.Packages to support functional programming in Go.
Awesome game development libraries.
Tools that generate Go code.
Geographic tools and servers
Tools for compiling Go to other languages.
Tools for managing and working with Goroutines.
conc
is your toolbelt for structured concurrency in go, making common tasks easier and safer.sync.WaitGroup
with error handling and concurrency control.All
, First
, Retry
, Waterfall
etc., that makes asynchronous flow control more intuitive.sync/errgroup
, limited to a pool of N worker goroutines.routine
is a ThreadLocal
for go library. It encapsulates and provides some easy-to-use, non-competitive, high-performance goroutine
context access interfaces, which can help you access coroutine context information more gracefully.Libraries for building GUI Applications.
Toolkits
Interaction
Libraries, tools, and tutorials for interacting with hardware.
Libraries for manipulating images.
Libraries for programming devices of the IoT.
Libraries for scheduling jobs.
Libraries for working with JSON.
encoding/json
that outputs colorized JSON.encoding/json
.Libraries for generating and working with log files.
io.Writer
implementation using logrus logger.io.Writer
implementation with multi policies to provide log file rotation.net/context
aware HTTP handlers with flexible dispatching.Libraries for Machine Learning.
Libraries that implement messaging systems.
Libraries for working with Microsoft Excel.
Libraries for working with dependency injection.
Unofficial set of patterns for structuring projects.
Libraries for working with strings.
{}
format strings.These libraries were placed here because none of the other categories seemed to fit.
Libraries for working with human languages.
See also Text Processing and Text Analysis.
fs.FS
support. YAML locale definitions are based on Rails i18n.t.T (gettext)
, t.N (ngettext)
, etc. And it contains a cmd tool xtemplate, which can extract messages as a pot file from text/html template.Libraries for working with various layers of the network.
gnet
is a high-performance, lightweight, non-blocking, event-driven networking framework written in pure Go.gnet
is a high-performance networking framework,especially for game servers.Libraries for making HTTP requests.
Libraries for using OpenGL in Go.
Libraries that implement Object-Relational Mapping or datamapping techniques.
Official tooling for dependency and package management
Official experimental tooling for package management
Unofficial libraries for package and dependency management.
AND
, OR
operations are supported directly in the query.embed.FS
from an existing embed.FS
subdirectory.go generate
. Focused on simplicity.embed.FS
typeLibraries for scientific computing and data analyzing.
Libraries that are used to help make your application more secure.
io.ReadWriteCloser
based on XChaCha20-poly1305, ECDH and ED25519.Libraries and tools for binary serialization.
Libraries and tools for stream processing and reactive programming.
Libraries and tools for templating and lexing.
func(name string) g.Node { return Div(Class("headline"), g.Textf("Hi %v!", name)) }
.Libraries for testing codebases and generating test data.
databasecleaner
in Ruby.testing
by leveraging Go1.7’s Subtests.time
package.Libraries for parsing and manipulating texts.
See also Natural Language Processing and Text Analysis.
textwrap
module from Python.fmt.Printf("%#v")
.Libraries for accessing third party APIs.
General utilities and tools to make your life easier.
.env
or any io.Reader
in Go.sql.Rows
directly to structs, slices, or primitive types.os.Signal
handling.Libraries for working with UUIDs.
Libraries for validation.
Libraries for version control.
Libraries for manipulating video.
Full stack web frameworks.
net/http
.X-Forwarded-For
header and friends.http.Client
to allow dumping/shaping/tracing/… of requests/responses.httprouter
. The first router fit for fasthttp
.net/context
.net/context
.httprouter
with net/context
support.Libraries and tools for manipulating XML.
Libraries and tools to implement Zero Trust architectures.
Source code analysis tools, also known as Static Application Security Testing (SAST) Tools.
yaml
config, has integrations with all major IDE and has dozens of linters included.golint
.go vet
on steroids, applying a ton of static analysis checks you might be used to from tools like ReSharper for C#.git blame
to identify the author.Plugin for text editors and IDEs.
go
command for colorized go build
output.dbg!
macro for quick and easy debugging during development.text/template
templates live.go test
outputs with text decorations.Software written in Go.
ProxyCommand
.Where to discover new Go libraries.
go/*
packages.Add the group of your city/country here (send PR)
This repository contains resources to learn System Design concepts and prepare for interviews.
For a more complete list of AI writing assistants visit: Awesome AI Writing
Everything about onions domains inside TOR network.
I only provide information about what exists on the dark web as informative/educational purposes only. I have listed many onion links that are still up and running with a legitimate purpose.
Few onion links might be a scam, phishing, or contain illegal activities like drugs, weapons, illegal markets, fraudulent services, stolen data, etc., and many more. These activities may involve you at risk in danger by unknowingly. Kindly be aware of such activities which may take you and put yourself under risk.
I am not involved in any practices like described above and if you wish to surf the dark web you are the only solely responsible for your activity. Any misleads or dealing with illegal markets accessed by you will end up in a bad situation.
Know your risk before opening any onion links, if you the link is legal then you can enjoy surfing and know more about the dark web or else learn about dark web before accessing it. Use a good VPN to stay away from danger and your risk factor will be very less.
Just download the Tor Browser from its original page; https://www.torproject.org
This product is made independently of Tor® anonymity software and makes no warranties about quality, suitability, or anything else from the Tor Project.
For acquiring additional onion links
http://dwltorbltw3tdjskxn23j2mwz2f4q25j4ninl5bdvttiy4xb6cqzikid.onion
Established Darknet markets that have been operating for a while
http://alphabay522szl32u4ci5e3iokdsyth56ei7rwngr2wm7i5jo54j2eid.onion
http://monopolydc6hvkh425ov6xolmgx62q2tgown55zvhpngh75tz5xkzfyd.onion
http://darkoddrkj3gqz7ke7nyjfkh7o72hlvr44uz5zl2xrapna4tribuorqd.onion
http://pqqmr3p3tppwqvvapi6fa7jowrehgd36ct6lzr26qqormaqvh6gt4jyd.onion
http://yxuy5oau7nugw4kpb4lclrqdbixp3wvc4iuiad23ebyp2q3gx7rtrgqd.onion
http://ASAP2u4pvplnkzl7ecle45wajojnftja45wvovl3jrvhangeyq67ziid.onion
http://4pt4axjgzmm4ibmxplfiuvopxzf775e5bqseyllafcecryfthdupjwyd.onion
http://vice2e3gr3pmaikukidllstulxvkb7a247gkguihzvyk3gqwdpolqead.onion
http://t2didmjqj7yqzlc44oiqmwr3u62xdg4pvzfrtxdy2wsewgrt2zelwhyd.onion
http://2b4z3y7fq45kafqy4ygweaz5k4culbbwj6nwfvgdutltlxelurxhd6yd.onion
http://rrlm2f22lpqgfhyydqkxxzv6snwo5qvc2krjt2q557l7z4te7fsvhbid.onion
http://mgybzfrldjn5drzv537skh7kgwgbq45dwha67r4elda4vl7m6qul5xqd.onion
New and upcoming markets
http://bohemiaobko4cecexkj5xmlaove6yn726dstp5wfw4pojjwp6762paqd.onion
Markets that shut down or got busted
http://auzbdiguv5qtp37xoma3n4xfch62duxtdiu4cfrrwbxgckipd4aktxid.onion
http://dreadytofatroptsdj6io7l3xptbet6onoyno2yv7jicoxknyazubrad.onion
http://enxx3byspwsdo446jujc52ucy2pf5urdbhqw3kbsfhlfjwmbpj5smdad.onion
http://mlyusr6htlxsyc7t2f4z53wdxh3win7q3qpxcrbam6jf3dmua7tnzuyd.onion
DanWin’s Email - http://danielas3rtn54uwmofdo3x2bsdifr47huasnmbgqzfrec5ubupvtpid.onion
Elude - http://eludemailxhnqzfmxehy3bk5guyhlxbunfyhkcksv4gvx6d3wcf6smad.onion
Facebook facebookwkhpilnemxj7asaniu7vnjjbiltxjqhye3mhbshg7kx5tfyd.onion -
Twitter twitter3e4tixl4xyajtrzo62zg5vztmjuricljdp2c5kshju4avyoid.onion -
DuckDuckGo duckduckgogg42xjoc72x3sjasowoarfbgcmvfimaftt6twagswzczad.onion -
Hidden wiki wikiv2z7bogl633j4ok2fs3a3ht5f45gpjtiasmqwuxacclxek4u47qd.onion -
To enter darknet, download Tor Browser. It’s a modified Firefox that allows access to the dark web and is configured for higher security.
You may get Tor Browser for Windows, Linux, Mac OS and Android here:
https://www.torproject.org/download/
For iOS the recommended browser is Onion Browser:
Alternatively you can use Brave Browser. It supports Tor and Onion protocols. It’s simple to use, and avaible on both desktop and mobile devices
Using Tor is legal in most countries. It’s illegal to perform certain activities, depending on your residency these may include: buying or selling drugs, weapons, counterfeit money, abusive materials etc.
The Web consists of three large areas:
Tor (The Onion Router) is an open-source software that bounces Internet traffic through a worldwide network consisting of almost million relays in order to hide user’s location and protect him against surveillance or traffic analysis. Tor makes more difficult to trace Internet activity: websites visits, online posts, instant messages and other communication forms.
Your traffic passes through 3 intermediate nodes before reaching destination. Each of the 3 nodes has separate layer of encryption and nobody who watches your connection can read what you send and where.
Hidden services are accessible only within Tor network. Their domain names end with .onion. They are not indexed by any public search engine. The only way to enter .onion sites is to know equal address. You can find some example deep web links in table above.
There are many tor link lists, wikis and catalogues where you can find addresses to .onion sites. There are also many link lists in clearnet but majority of them is not updated and most links do not work. It’s standard that hidden services work for small amount of time and dissappear forever.
This github page is maintained by voluteers, that makes this page get updated more often - to provide better access to information.
There are some darknet search engines mostly created by amateurs and they are very limited due to hidden services nature.
Before accessing any darknet site, make sure that it’s legal in your country to browse content that they contain.
The idea of onion routing was created in 1995 at the U.S. Naval Research Lab by David Goldschlag, Mike Reed and Paul Syverson in effect of a research to find a way to create Internet connections that don’t reveal who is talking to whom. The reason was to protect US intelligence communications online.
In early 2000s, Roger Dingledine (MIT graduate) with Paul Syverson began working on the onion routing project created at Naval Research Lab. To distinguish their work from other efforts, they named the project Tor (The Onion Routing).
Tor was oficially deployed in October 2002 and its source code was released under a free and open software license. In December 2006 computer scientists Roger Dingledine, Nick Mathewson and five others founded The Tor Project research-education nonprofit organization that is responsible for maintaining the software.
Tor is supported by US government, many NGOs, private foundations, research institutions, private companies and over 20,000 personal donations from people from around the World.
A collection of important onion sites that you can leverage for surfing across Deep and Darkweb and gather relevant intelligence to improve your organization defences and security controls. You can use this tool improve Mean-Time-To-Detect (MTTD) and Mean-Time-To-Respond (MTTR) to cyber security incidents
This information is for informative, educational and research purpose only. This information can be used for intelligence gathering for your incident investigations and for the purpose of securing your organization. The motive of providing this information is to share intelligence and secure organizations from cyber threats. Do not utilize this information for illegal, unauthorized, and unlawful activities. You are solely responsible for your actions.
Darkweb sites are designed in a way that they cannot be accessed through normal web browsers like Chrome or Firefox. You can use these browsers to access the Onion sites.
I only provide information about what exists on the dark web as informative/educational purposes only. I have listed many onion links that are still up and running with a legitimate purpose.
Few onion links might be a scam, phishing, or contain illegal activities like drugs, weapons, illegal markets, fraudulent services, stolen data, etc., and many more. These activities may involve you at risk in danger by unknowingly. Kindly be aware of such activities which may take you and put yourself under risk.
I am not involved in any practices like described above and if you wish to surf the dark web you are the only solely responsible for your activity. Any misleads or dealing with illegal markets accessed by you will end up in a bad situation.
Know your risk before opening any onion links, if you the link is legal then you can enjoy surfing and know more about the dark web or else learn about dark web before accessing it. Use a good VPN to stay away from danger and your risk factor will be very less.
https://lxwu7pwyszfevhglxfgaukjqjdk2belosfvsl2ekzx3vrboacvewc7qd.onion/
http://v65ngaoj2nyaiq2ltf4uzota254gnasarrkuj4aqndi2bb5lw6frt3ad.onion/
https://amuffettdexn6r5s4lt45b6mlrgmsmo56szaaighyjurp4ccuj63zkad.onion/blog
https://kushal76uaid62oup5774umh654scnu5dwzh4u2534qxhcbi4wbab3ad.onion/
http://michaelahgu3sqef5yz3u242nok2uczduq5oxqfkwq646tvjhdnl35id.onion/
https://xw226dvxac7jzcpsf4xb64r4epr6o5hgn46dxlqk7gnjptakik6xnzqd.onion/
https://nickf43ab43xxf3yqgzy5uedsjij6h473rmbyzq6inohcnr3lohlu3yd.onion/
https://shen.hongio267dx4o2ofkn4ddsztu4ok2vq4euc7sxumbi7kcfd64ije62ad.onion/
https://privacy2ws3ora5p4qpzptqr32qm54gf5ifyzvo5bhl7bb254c6nbiyd.onion/
http://vww6ybal4bd7szmgncyruucpgfkqahzddi37ktceo3ah7ngmcopnpyyd.onion/
http://vww6ybal4bd7szmgncyruucpgfkqahzddi37ktceo3ah7ngmcopnpyyd.onion/en/security/network-security/tor#riseups-tor-onion-services
http://7sk2kov2xwx6cbc32phynrifegg6pklmzs7luwcggtzrnlsolxxuyfyd.onion/en/index.html
http://7sk2kov2xwx6cbc32phynrifegg6pklmzs7luwcggtzrnlsolxxuyfyd.onion/en/service/onion.html
https://hyfs2rd42ij4opqkdxzycb7dolzwjtbmmm4mbpohc57mm76u6iyurxqd.onion/
https://dlegal66uj5u2dvcbrev7vv6fjtwnd4moqu7j6jnd42rmbypv3coigyd.onion/
https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/learningenglish/
https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/learningenglish/chinese
http://ciadotgov4sjwlzihbbgxnqg3xiyrg7so2r2o3lt5wz5ypk4sxyjstad.onion/index.html
https://www.bbcnewsd73hkzno2ini43t4gblxvycyac5aw4gnv7t2rccijh7745uqd.onion/
http://bellcatmbguthn3age23lrbseln2lryzv3mt7whis7ktjw4qrestbzad.onion/
http://es.bellcatmbguthn3age23lrbseln2lryzv3mt7whis7ktjw4qrestbzad.onion/
http://fr.bellcatmbguthn3age23lrbseln2lryzv3mt7whis7ktjw4qrestbzad.onion/
http://ru.bellcatmbguthn3age23lrbseln2lryzv3mt7whis7ktjw4qrestbzad.onion/
http://ukraine.bellcatmbguthn3age23lrbseln2lryzv3mt7whis7ktjw4qrestbzad.onion/
-see language index in titlebar-
https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/
https://p53lf57qovyuvwsc6xnrppyply3vtqm7l6pcobkmyqsiofyeznfu5uqd.onion/
-https://www.rfa.org/about/releases/mirror_websites-04172020105949.html-
https://www.rferlo2zxgv23tct66v45s5mecftol5vod3hf4rqbipfp46fqu2q56ad.onion/
https://www.guardian2zotagl6tmjucg3lrhxdk4dw3lhbqnkvvkywawy3oqfoprid.onion/
https://27m3p2uv7igmj6kvd4ql3cct5h3sdwrsajovkkndeufumzyfhlfev4qd.onion
https://www.nytimesn7cgmftshazwhfgzm37qxb44r64ytbb2dj3x62d2lljsciiyd.onion/
https://www.voanews5aitmne6gs2btokcacixclgfl43cv27sirgbauyyjylwpdtqd.onion/
https://yahoonewsnqkxo423g7vuwr2mvkwmc5t4df5x44dfdfvmyzqgcyt3had.onion/
:arrow_up: return to top index
https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/afaanoromoo
https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/afrique
https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/amharic
https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/arabic
https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/azeri
https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/bengali
https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/burmese
https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/gahuza
https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/gujarati
https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/hausa
https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/hindi
https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/igbo
https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/indonesia
https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/korean
https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/kyrgyz
https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/marathi
https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/mundo
https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/nepali
https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/pashto
https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/persian
https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/pidgin
https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/portuguese
https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/punjabi
https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/russian
https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/serbian/cyr
https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/serbian/lat
https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/sinhala
https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/somali
https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/swahili
https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/tamil
https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/telugu
https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/thai
https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/tigrinya
https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/turkce
https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/ukrainian
https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/urdu
https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/uzbek
https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/vietnamese
https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/yoruba
https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/zhongwen/simp
https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/zhongwen/trad
-language index-
https://www.bbcweb3hytmzhn5d532owbu6oqadra5z3ar726vq5kgwwn6aucdccrad.onion/ws/languages
:arrow_up: return to top index
https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/sq/
https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/am/
https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/ar/
https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/bn/
https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/bs/
https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/bg/
https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/zh/?zhongwen=simp
https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/zh/?zhongwen=trad
https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/hr/
https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/fa-af/
https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/en/
https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/fr/
https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/de/
https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/el/
https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/ha/
https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/hi/
https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/id/
https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/sw/
https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/mk/
https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/ps/
https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/fa-ir/
https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/pl/
https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/pt-br/
-cannot find top-page redirect-
https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/pt-002/not%C3%ADcias/s-13918
https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/ro/
https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/ru/
https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/sr/
https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/es/
https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/tr/
https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/uk/
https://www.dwnewsgngmhlplxy6o2twtfgjnrnjxbegbwqx6wnotdhkzt562tszfid.onion/ur/
:arrow_up: return to top index
https://www.azatli7ifydxlltreov6fyvzwuflgggwdgry2cnxllzs7xpoh7qjmmid.onion/
https://www.currtv242aqatxhyqfyh3mtq2ubzxz7crvj7aon3zccrnwatc5gugvqd.onion/
https://moldova.eurolibaoxh6xnxcms7egvag474qnjeca5m6rvomwhmmkw2jkascwhqd.onion/
https://romania.eurolibaoxh6xnxcms7egvag474qnjeca5m6rvomwhmmkw2jkascwhqd.onion/
https://www.farda7tcb3bmdtmsmwx7wofkxxjrcw4iiizin7zzcju2oega74cnzbid.onion/
https://www.idelraalduykh5md4f5kempsx2vhhvs53sf7td25imcsyscru7i63cyd.onion/
https://www.kavkazrtsgiv5be4orqcben4bbr2zfikcx2zb4uceuhbu6vhlxbnbjqd.onion/
https://ktat.krymr37vzmjc3lzijeokiaaa5scwqdveyeljh6eri4aqjqhkviv446id.onion/
https://ru.krymr37vzmjc3lzijeokiaaa5scwqdveyeljh6eri4aqjqhkviv446id.onion/
https://ua.krymr37vzmjc3lzijeokiaaa5scwqdveyeljh6eri4aqjqhkviv446id.onion/
https://www.marsho5jlvj4v5bv5zatvfzg6gd33hrykaejm2fpdxegxgqqazs76hqd.onion/
https://www.severr375roaznysslbu4joiu2snztzwucsm46gghi34xglhh5w4cmyd.onion/
https://www.sibrealr32niwsfksyycn6dyci3wnssnq5xhg3g7kpkddyrzfh2fd4qd.onion/
https://www.svabodmmmsdce3rmzoor5cw3byj6rqss4q6bh2yfhux2dbmobnpg5ead.onion/
https://www.golosamr2fr3ojunabk2zaa2hyislbt2ht34vjhfsdwpg2dyg2xaybqd.onion/
https://www.sesic3wy3ursfzn7odbol5ddurz2kr3rbfvgnowhwbaefjahzwwsycqd.onion/
:arrow_up: return to top index
-works fine, but seems to block curl / upness-tester; ignore status codes below-
https://search.brave4u7jddbv7cyviptqjc7jusxh72uik7zt6adtckl5f4nwy2v72qd.onion/
https://duckduckgogg42xjoc72x3sjasowoarfbgcmvfimaftt6twagswzczad.onion/
:arrow_up: return to top index
https://www.facebookwkhpilnemxj7asaniu7vnjjbiltxjqhye3mhbshg7kx5tfyd.onion/
https://m.facebookwkhpilnemxj7asaniu7vnjjbiltxjqhye3mhbshg7kx5tfyd.onion/
https://www.reddittorjg6rue252oqsxryoxengawnmo46qy4kyii5wtqnwfj4ooad.onion/
https://twitter3e4tixl4xyajtrzo62zg5vztmjuricljdp2c5kshju4avyoid.onion/
:arrow_up: return to top index
https://hzwjmjimhr7bdmfv2doll4upibt5ojjmpo3pbp5ctwcg37n3hyk7qzid.onion/
http://jrw32khnmfehvdsvwdf34mywoqj5emvxh4mzbkls6jk2cb3thcgz6nid.onion/
http://g7ejphhubv5idbbu3hb3wawrs5adw7tkx7yjabnf65xtzztgg4hcsqqd.onion/
http://m6rqq6kocsyugo2laitup5nn32bwm3lh677chuodjfmggczoafzwfcad.onion/
http://jvgypgbnfyvfopg5msp6nwr2sl2fd6xmnguq35n7rfkw3yungjn2i4yd.onion/
http://lkiw4tmbudbr43hbyhm636sarn73vuow77czzohdbqdpjuq3vdzvenyd.onion/
https://imprezareshna326gqgmbdzwmnad2wnjmeowh45bs2buxarh5qummjad.onion/
http://lldan5gahapx5k7iafb3s4ikijc4ni7gx5iywdflkba5y2ezyg6sjgyd.onion/
http://www.qubesosfasa4zl44o4tws22di6kepyzfeqv3tg4e3ztknltfxqrymdad.onion/
http://2gzyxa5ihm7nsggfxnu52rck2vv4rvmdlkiu3zzui5du4xyclen53wid.onion/
-everything tor-related-
http://xao2lxsmia2edq2n5zxg6uahx6xox2t7bfjw6b5vdzsxi7ezmqob6qid.onion/
http://forums.dds6qkxpwdeubwucdiaord2xgbbeyds25rbsgr73tbfpqpt4a6vjwsyd.onion/
http://dds6qkxpwdeubwucdiaord2xgbbeyds25rbsgr73tbfpqpt4a6vjwsyd.onion/
http://keybase5wmilwokqirssclfnsqrjdsi7jdir5wy7y7iu3tanwmtp6oid.onion/
:arrow_up: return to top index
http://archiveiya74codqgiixo33q62qlrqtkgmcitqx5u2oeqnmn5bpcbiyd.onion/
https://dns4torpnlfs2ifuz2s2yf3fc7rdmsbhm6rw75euj35pac6ap25zgqad.onion/
https://4gmrlefxkq4mtan6a2lqwfwa7un4brjlatka75nwdczemqqwn3wznnad.onion/
https://protonmailrmez3lotccipshtkleegetolb73fuirgj7r4o4vfu7ozyd.onion/
:arrow_up: return to top index
-via: https://securedrop.org/api/v1/directory/-
short: 2600.securedrop.tor.onion
link: http://cy6wj77vryhcyh6go576hxycjz4wxlo4s5vevdinkw3armwzty5jozyd.onion
plain: http://cy6wj77vryhcyh6go576hxycjz4wxlo4s5vevdinkw3armwzty5jozyd.onion
-via: https://securedrop.org/api/v1/directory/-
short: aftenposten.securedrop.tor.onion
link: http://tiykfvhb562gheutfnedysnhrxpxoztyszkqyroloyepwzxmxien77id.onion
plain: http://tiykfvhb562gheutfnedysnhrxpxoztyszkqyroloyepwzxmxien77id.onion
-via: https://securedrop.org/api/v1/directory/-
short: aftonbladet.securedrop.tor.onion
link: http://xm33ge4kupk5o66eqxcd2r4fqcplpqb2sbdduf5z2nw4g2jrxe57luid.onion
plain: http://xm33ge4kupk5o66eqxcd2r4fqcplpqb2sbdduf5z2nw4g2jrxe57luid.onion
-via: https://securedrop.org/api/v1/directory/-
short: ajiunit.securedrop.tor.onion
link: http://jkta32w5gvk6pmqdfwj67psojot3l2iwoqbdvrvywi5bkudfeandq7id.onion
plain: http://jkta32w5gvk6pmqdfwj67psojot3l2iwoqbdvrvywi5bkudfeandq7id.onion
-via: https://securedrop.org/api/v1/directory/-
short: apache.securedrop.tor.onion
link: http://okd7utbak43lm7qaixr6yv7s62e32mhngjsfpjn26eklokqofg6776yd.onion
plain: http://okd7utbak43lm7qaixr6yv7s62e32mhngjsfpjn26eklokqofg6776yd.onion
-via: https://securedrop.org/api/v1/directory/-
short: bloombergindustrygroup.securedrop.tor.onion
link: http://33buewrpzrfpttl7kerqvtvzyo3ivumilwwmeqjryzajusltibaqc6ad.onion
plain: http://33buewrpzrfpttl7kerqvtvzyo3ivumilwwmeqjryzajusltibaqc6ad.onion
-via: https://securedrop.org/api/v1/directory/-
short: bloomberg.securedrop.tor.onion
link: http://ogdwaroarq4p6rnfn2hl4crvldyruyc2g24435qtxmd3twhevg7dsqid.onion
plain: http://ogdwaroarq4p6rnfn2hl4crvldyruyc2g24435qtxmd3twhevg7dsqid.onion
-via: https://securedrop.org/api/v1/directory/-
short: cbcrc.securedrop.tor.onion
link: http://gppg43zz5d2yfuom3yfmxnnokn3zj4mekt55onlng3zs653ty4fio6qd.onion
plain: http://gppg43zz5d2yfuom3yfmxnnokn3zj4mekt55onlng3zs653ty4fio6qd.onion
-via: https://securedrop.org/api/v1/directory/-
short: cnn.securedrop.tor.onion
link: http://qmifwf762qftydprw2adbg7hs2mkunac5xrz3cb5busaflji3rja5lid.onion
plain: http://qmifwf762qftydprw2adbg7hs2mkunac5xrz3cb5busaflji3rja5lid.onion
-via: https://securedrop.org/api/v1/directory/-
http://hpaauqmv2wegiu4cz6st6hty4s7gwqol272xhcu3xmh6azw2f2zffgid.onion
-via: https://securedrop.org/api/v1/directory/-
short: dagbladet.securedrop.tor.onion
link: http://ydbpz5knb6ji3bdtahhm3wo7sed6lsy5vqnwfpnhpez4bquvoexbz7qd.onion
plain: http://ydbpz5knb6ji3bdtahhm3wo7sed6lsy5vqnwfpnhpez4bquvoexbz7qd.onion
-via: https://securedrop.org/api/v1/directory/-
short: spiegel.securedrop.tor.onion
link: http://q6vdlj2ukulrqk37piqgxucpcwtxzdjhvjzqrfbevuhrzimsgjltmpqd.onion
plain: http://q6vdlj2ukulrqk37piqgxucpcwtxzdjhvjzqrfbevuhrzimsgjltmpqd.onion
-via: https://securedrop.org/api/v1/directory/-
short: ft.securedrop.tor.onion
link: http://nqu6crmtnzs2hs5abo2uqni53yqsnnwqnerdxuzyz5yxairxlzjzt6yd.onion
plain: http://nqu6crmtnzs2hs5abo2uqni53yqsnnwqnerdxuzyz5yxairxlzjzt6yd.onion
-via: https://securedrop.org/api/v1/directory/-
short: forbes.securedrop.tor.onion
link: http://6zonlfhh7aqtfwoyvdlad3nxn6ljecx2k6tyyy3spt43nn54q6lvncid.onion
plain: http://6zonlfhh7aqtfwoyvdlad3nxn6ljecx2k6tyyy3spt43nn54q6lvncid.onion
-via: https://securedrop.org/api/v1/directory/-
short: forbiddenstories.securedrop.tor.onion
link: http://fg25fqpu2dnxp24xs3jlcley4hp2inshpzek44q3czkhq3zffoqk26id.onion
plain: http://fg25fqpu2dnxp24xs3jlcley4hp2inshpzek44q3czkhq3zffoqk26id.onion
-via: https://securedrop.org/api/v1/directory/-
short: greekleaks.securedrop.tor.onion
link: http://jatasaqcoe7lqdpcyxo7vl3e5tdvl5jgmtadfat77i25qdj6z6a4ulad.onion
plain: http://jatasaqcoe7lqdpcyxo7vl3e5tdvl5jgmtadfat77i25qdj6z6a4ulad.onion
-via: https://securedrop.org/api/v1/directory/-
short: iqss.harvard.securedrop.tor.onion
link: http://5kcyaqagvnrvyan7y5ntzreqsn2msowqlmtoo46qju2pctlbkzzztxqd.onion
plain: http://5kcyaqagvnrvyan7y5ntzreqsn2msowqlmtoo46qju2pctlbkzzztxqd.onion
-via: https://securedrop.org/api/v1/directory/-
short: noyb.securedrop.tor.onion
link: http://xjc4s5z26i2z5tzjzj3w6jwzuomedzsahq4tccktwdcs6fldt4ojznqd.onion
plain: http://xjc4s5z26i2z5tzjzj3w6jwzuomedzsahq4tccktwdcs6fldt4ojznqd.onion
-via: https://securedrop.org/api/v1/directory/-
short: nrk.securedrop.tor.onion
link: http://537ztcntpbmspja4mkpxldpsoc46mqlssnsaklqnfw3gnlpj5glcjgid.onion
plain: http://537ztcntpbmspja4mkpxldpsoc46mqlssnsaklqnfw3gnlpj5glcjgid.onion
http://ej3kv4ebuugcmuwxctx5ic7zxh73rnxt42soi3tdneu2c2em55thufqd.onion
politico.securedrop.tor.onion
http://mzi5yynpd6qqq3lnh7vnaojy36v3hcorytsut47zwkguhnorduyxwead.onion
http://z4gd5t2g6u6kqeqjeddvmvlhhjtjgslg4elh4ztnct7snskcd7phbiyd.onion
maurizi.securedrop.tor.onion
http://jxsb4ovmavjy3r64bak4ha63xwggf3nzf3vikvs23r2avm5rhzmaqtqd.onion
http://udhauo3m3fh7v6yfiuornjzxn3fh6vlp4ooo3wogvghcnv5xik6mnayd.onion
tv2.dk.securedrop.tor.onion
http://srumyob2jq5nvppzt66aaab333n2wmq6xgkg4khfe24ixdb7umf7mtyd.onion
-via: https://securedrop.org/api/v1/directory/-
short: taz.securedrop.tor.onion
link: http://tazleakssvtc2lqrhkpvbzo6qwolcldzkzoexo7wombufd6a573bhlid.onion
plain: http://tazleakssvtc2lqrhkpvbzo6qwolcldzkzoexo7wombufd6a573bhlid.onion
-via: https://securedrop.org/api/v1/directory/-
short: techcrunch.securedrop.tor.onion
link: http://vplxle7awnyvvvduv6exnwrxbf4gzsh7lv7fxosnfl2ecidkttcbfcqd.onion
plain: http://vplxle7awnyvvvduv6exnwrxbf4gzsh7lv7fxosnfl2ecidkttcbfcqd.onion
-via: https://securedrop.org/api/v1/directory/-
short: theeconomist.securedrop.tor.onion
link: http://mxmddqsh4jnr4gjan37ayin3fu5ecnejxge4wjhj4i45qq5djbxdjtad.onion
plain: http://mxmddqsh4jnr4gjan37ayin3fu5ecnejxge4wjhj4i45qq5djbxdjtad.onion
-via: https://securedrop.org/api/v1/directory/-
short: theglobeandmail.securedrop.tor.onion
link: http://a4zum5ydurvljrohxqp2rjjal5kro4ge2q2qizuonf2jubkhcr627gad.onion
plain: http://a4zum5ydurvljrohxqp2rjjal5kro4ge2q2qizuonf2jubkhcr627gad.onion
-via: https://securedrop.org/api/v1/directory/-
short: theguardian.securedrop.tor.onion
link: http://xp44cagis447k3lpb4wwhcqukix6cgqokbuys24vmxmbzmaq2gjvc2yd.onion
plain: http://xp44cagis447k3lpb4wwhcqukix6cgqokbuys24vmxmbzmaq2gjvc2yd.onion
-via: https://securedrop.org/api/v1/directory/-
short: theintercept.securedrop.tor.onion
link: http://lhollo6vzrft3w77mgm67fhfv3fjadmf7oinmafa7tbmupc273oi7kid.onion
plain: http://lhollo6vzrft3w77mgm67fhfv3fjadmf7oinmafa7tbmupc273oi7kid.onion
-via: https://securedrop.org/api/v1/directory/-
short: washingtonpost.securedrop.tor.onion
link: http://vfnmxpa6fo4jdpyq3yneqhglluweax2uclvxkytfpmpkp5rsl75ir5qd.onion
plain: http://vfnmxpa6fo4jdpyq3yneqhglluweax2uclvxkytfpmpkp5rsl75ir5qd.onion
-via: https://securedrop.org/api/v1/directory/-
short: torontostar.securedrop.tor.onion
link: http://yj3b7rgmglcocbbvzrwfbo4d6j2aa7thwupra4yqutbd27v3vxcpvgid.onion
plain: http://yj3b7rgmglcocbbvzrwfbo4d6j2aa7thwupra4yqutbd27v3vxcpvgid.onion
-via: https://securedrop.org/api/v1/directory/-
short: whistlebloweraid.securedrop.tor.onion
link: http://kogbxf4ysay2qzozmg7ar45ijqmj2vxrwqa4upzqq2i7sqj7wv7wcdqd.onion
plain: http://kogbxf4ysay2qzozmg7ar45ijqmj2vxrwqa4upzqq2i7sqj7wv7wcdqd.onion
I only provide information about what exists on the dark web as informative/educational purposes only. I have listed many onion links that are still up and running with a legitimate purpose.
Few onion links might be a scam, phishing, or contain illegal activities like drugs, weapons, illegal markets, fraudulent services, stolen data, etc., and many more. These activities may involve you at risk in danger by unknowingly. Kindly be aware of such activities which may take you and put yourself under risk.
I am not involved in any practices like described above and if you wish to surf the dark web you are the only solely responsible for your activity. Any misleads or dealing with illegal markets accessed by you will end up in a bad situation.
Know your risk before opening any onion links, if you the link is legal then you can enjoy surfing and know more about the dark web or else learn about dark web before accessing it. Use a good VPN to stay away from danger and your risk factor will be very less.
A collection of important onion sites that you can leverage for surfing across Deep and Darkweb and gather relevant intelligence to improve your organization defences and security controls. You can use this tool improve Mean-Time-To-Detect (MTTD) and Mean-Time-To-Respond (MTTR) to cyber security incidents
Darkweb sites are designed in a way that they cannot be accessed through normal web browsers like Chrome or Firefox. You can use these browsers to access the Onion sites.
I only provide information about what exists on the dark web as informative/educational purposes only. I have listed many onion links that are still up and running with a legitimate purpose.
Few onion links might be a scam, phishing, or contain illegal activities like drugs, weapons, illegal markets, fraudulent services, stolen data, etc., and many more. These activities may involve you at risk in danger by unknowingly. Kindly be aware of such activities which may take you and put yourself under risk.
I am not involved in any practices like described above and if you wish to surf the dark web you are the only solely responsible for your activity. Any misleads or dealing with illegal markets accessed by you will end up in a bad situation.
Know your risk before opening any onion links, if you the link is legal then you can enjoy surfing and know more about the dark web or else learn about dark web before accessing it. Use a good VPN to stay away from danger and your risk factor will be very less.
sites about the dark web and how to use it properly
sites that help people avoid scams on the dark web, as they are VERY common
services that allow you to find .onion sites, just like google would on the clearweb
.onion links providing lists for .onion links, like search Engines
sites that monitor popular dark web sites to see if they are online or not
–ONLY– BUY FROM TRUSTED -VENDORS- TO AVOID GETTING –SCAMMED– –ALWAYS– VERIFY PGP KEYS OF -.ONION LINKS- & -BITCOIN WALLETS- BEFORE BUYING, you can quickly do it here –ALWAYS– MIX YOUR BITCOINS BEFORE BUYING –I AM NOT RESPONSIBLE IF YOU GET SCAMMED–
Verify Legit Darkweb Vendors & Markets Via These Sites
–ONLY– BUY FROM TRUSTED -VENDORS- TO AVOID GETTING –SCAMMED– –ALWAYS– VERIFY PGP KEYS OF -.ONION LINKS- & -BITCOIN WALLETS- BEFORE BUYING, you can quickly do it here –ALWAYS– MIX YOUR BITCOINS BEFORE BUYING –I AM NOT RESPONSIBLE IF YOU GET SCAMMED–
Verify Legit Darkweb Vendors & Markets Via These Sites
Possible Dark Web Scam Links
! Title: Dark Web Anti-Scam Filters
! Description: uBlock Origin filter designed to block scams on the dark web.
Use CTRL + F to search. Insert onion link (without http:// part) or name in the search bar.
If you think there is a site that is a scam or want to remove a false positive from the list,
then please contact the owners of the scam lists and not me,
I only update them according to what the scam lists say.
You can find their respective emails at the very bottom of the list,
as well as links to their clearweb/darkweb sites.
! Version: 2.1.2
! Expires: 1 day
! License: https://creativecommons.org/licenses/by/3.0/
!-------------------------------------------------------------!
!---------------------------- NoScam -------------------------!
!-------------------------------------------------------------!
||stackublfq5ipqlj.onion
||silkroad4n7fwsrw.onion
||sgkvfgvtxjzvbadm.onion
||bankors4d5cdq2tq.onion
||plasticzxmw4gepd.onion
||applekpoykqqdjo5.onion
||snovzruogrfrh252.onion
||oqrz7kprdoxd7734.onion
||arcbaciyv5xwguic.onion
||3twqowj7hetz3dwf.onion
||vgw2tqqp622wbtm7.onion
||y2vrbi2eg6hpghmt.onion
||hqcarderxnmfndxk.onion
||rosnerqw5bcwfpfb.onion
||horizontjsecs65q.onion
||fusionvlc7cvltmy.onion
||mlj4iyalawb2ve2u.onion
||empererwidlf7kmb.onion
||moneytkfgglev7nr.onion
||cckingdomtmf7w7l.onion
||dark73adlkrgr6u7.onion
||queeniooaa7sziqo.onion
||gmarketmtv62pdkp.onion
||sharkjo6ramnxc6s.onion
||ccbay3yanmktpr3s.onion
||galaxyaonv32reim.onion
||6yid7vhjltxgefhm.onion
||krushux2j2feimt6.onion
||lordpay3t52brqwf.onion
||queencdcguevwedi.onion
||s7ccy6bman4zb6lh.onion
||footballsge4ocq3.onion
||vqbintgn7d2l7z43.onion
||prepaid3jdde64ro.onion
||choicecbtavv4cax.onion
||matchfixube5iwgs.onion
||xmatchesfmhuzgfb.onion
||gutprintbqe72yuy.onion
||fakenotefzutekmq.onion
||gbpoundzv2ot73eh.onion
||mo4moybqbtmdex44.onion
||777o6suetmexlesv.onion
||moneydtbosp6ygfx.onion
||rjye7v2fnxe5ou6o.onion
||blackph5fuiz72bf.onion
||pumpdumppqgxwu4k.onion
||cww3ggjgpw56wter.onion
||22ppp3cboaonwjwl.onion
||moneycvbr2ihsv3j.onion
||bnwcards4xuwihpj.onion
||btcmultiimolu2fo.onion
||ccppshopsndysr45.onion
||ccsalewb7nujwnks.onion
||clonedusbmna6mmw.onion
||clonexp3j3qdjdvp.onion
||tei5mg2z36lyq7jd.onion
||cvendorzr7w3gdtq.onion
||financo6ytrzaoqg.onion
||jeuzg7g3xkslpf6k.onion
||un62d2ywi33bho53.onion
||easycoinsayj7p5l.onion
||2k3wty376idyonjt.onion
||safepayjlz76pnix.onion
||qr5rw75na7gipe62.onion
||efb6om7tze6aab25.onion
||bucepafkui6lyblt.onion
||7uxohh5bat7kouex.onion
||bitcardsqucnyfv2.onion
||kryptocg6rptq3wd.onion
||dcm6xhlrfyaek4si.onion
||2222ppclgy2amp23.onion
||r26liax2opq7knn3.onion
||32orihrbrhpk5x6o.onion
||usjudr3c6ez6tesi.onion
||htqhl25peesc3lrm.onion
||medusas6rqee6x6e.onion
||azworldjqhsr4pd5.onion
||hbetshipq5yhhrsd.onion
||mesc5wozvbdqbh2y.onion
||sn2vwdleom47kzqp.onion
||ju5iiyel2glsu3mh.onion
||amgic2ym32odxor2.onion
||escrowkaw72yld57.onion
||ugtech6yot3p5n3u.onion
||cashoutxdrebmlj2.onion
!-------------------------------------------------------------!
!------------------------- Tor Scam List ---------------------!
!-------------------------------------------------------------!
||trnf7mcbf6ko6h6w.onion
||64fgu54a3tlsgptx.onion
||uqzht2vfz5moumdd.onion
||cr567grrbfpsyrz6.onion
||cashgodr53umth4z.onion
||fp5xenfxy7o5a2vq.onion
||owsb6hydgnalalht.onion
||nlsx24j23uyyqct7.onion
||netauth3qialu2ha.onion
||escrow43eaperqie.onion
||5xxqhn7qbtug7cag.onion
||sf6pmq4fur5c22hu.onion
||h4y5xramfiooe3mz.onion
||applei7nkshrsnih.onion
||bestshop3neaglxk.onion
||tbaown3pd2sfidwx.onion
||mghreb4l5hdhiytu.onion
||stppd5as5x4hxs45.onion
||safepayab3enffl2.onion
||marketdftsaewyfx.onion
||zzq7gpluliw6iq7l.onion
||midcity7ccxtrzhn.onion
||countfe766hqe4qd.onion
||limaconzruthefg4.onion
||aqdkw4qjwponmlt3.onion
||bestshop5zc7t3mf.onion
||newshit5g5lc5coc.onion
||ppccpzam4nurujzv.onion
||xsqp76ka66qgue2s.onion
||w2k5fbvvlfoi62tw.onion
||topbtc.torpress2sarn7xw.onion
||jmkxdr4djc3cpsei.onion
||hcutffpecnc44vef.onion
||25ffhnaechrbzwf3.onion
||ppcwp.torpress2sarn7xw.onion
||qkj4drtgvpm7eecl.onion
||ts4cwattzgsiitv7.onion
||cashoutsdkyirll4.onion
||easyvisa5i67p2hc.onion
||nql7pv7k32nnqor2.onion
||rtwtyinmq4wzzl6d.onion
||65px7xq64qrib2fx.onion
||nh5hqktdhe2gogsb.onion
||ab2moc6ot2wkvua7.onion
||djn4mhmbbqwjiq2v.onion
||agarthazdeeoph2a.onion
||o6maqsjp23l2i45w.onion
||mjturxqbtbncbv6i.onion
||lecards.torpress2sarn7xw.onion
||ugtechlr4a6x5eab.onion
||ugtech3haoipeh3s.onion
||newpdsuslmzqazvr.onion
||bankrollc2qbvqn3.onion
||avituul2qflk55yd.onion
||ubivqf757ysk53t7.onion
||35flmpspwpnarbos.onion
||upv3wvf6sikfiluy.onion
||emufy7tn3dhg45wp.onion
||gunshopzpqbe4kgl.onion
||bankcrpbhxfnmmd6.onion
||3xyzrjb72jzmshoq.onion
||xdsa5xcrrrxxxolc.onion
||fusifrndcjrcewvm.onion
||eushopsprwnxudic.onion
||dreamrvfuqrpzn4q.onion
||jlshyuiizag3m4hp.onion
||ccshophv5gxsge6o.onion
||mescrowbshprfzgg.onion
||debankckcgq2exv5.onion
||gc4youec2ulsdkbs.onion
||4yjes6zfucnh7vcj.onion
||4lq4prlyxiifarmj.onion
||3cash3sze3jcvvox.onion
||or7amhxzp7jc77xr.onion
||5jqvh54jxaftdav6.onion
||xduacuj2tz4z23l6.onion
||multidxltunesmv6.onion
||empirembpcpuelxd.onion
||mikffhylznwnc25o.onion
||ccbay2jxd5dcobl2.onion
||ccbay4wqgbxa2igl.onion
||ccbay5gv4az6ewgv.onion
||fzbsxc4xa4w4tgzufa3knvuerjhmgvbnrd7igye5ot5mfywuiu3h3bad.onion
||zvvtba2a37mcydnntjkzy26lrv3y5elfyotr4glujkaaanyz5a4uerqd.onion
||avn3xbtzud7bp75pjl42px6xkpj5vyiymnnz4htonlzcnm2uwcfcflyd.onion
||ck73ugjvx5a4wkhsmrfvwhlrq7evceovbsb7tvaxilpahybdokbyqcqd.onion
||k35yauzkptmemr5nbwhyigihw2tfcytbvm4fq2yzfzyzi2nwh7ty7xyd.onion
!-------------------------------------------------------------!
!----------------------- Tor Scam List v2 --------------------!
!-------------------------------------------------------------!
||cn56mmvuv6toexq3.onion
||6thhimkhby4az3vz.onion
||bfgsu4uktbrbue3p.onion
||slwc4j5wkn3yyo5j.onion
||oazis64odog3oorh.onion
||applexgrqv3ihh6f.onion
||cmhqrgwwpaxcquxp.onion
||onionw75v3imttfa.onion
||countercedyd3fbc.onion
||armoryetem5mclq4.onion
||mescrowvbbfqihed.onion
||rsescrowtybxf43d.onion
||escrow26gdxwbzjb.onion
||darkma35pkdraq2b.onion
||hacker3r3cbxxbni.onion
||h4gca3vb6v37awux.onion
||z57whuq7jaqgmh6d.onion
||waltcard74gwxkwj.onion
||gdaqpaukrkqwjop6.onion
||undrol7rt4yu5zzd.onion
||paypalmkwfrikwlw.onion
||ppcentrend4erspk.onion
||nare7pqnmnojs2pg.onion
||silkroad7rn2puhj.onion
||silkdljpnclgdc2eecu5k3b55d5nikky7r4ljmpgapr5rnzeupsgbzid.onion
||zrgv5miyjb4pdxaxyicbkp74hdxjdks44ahls5qiqr7puwa7qgjz45qd.onion
||ca3sii6jljzxqtwa4y3tunww5nfevwolrhn3cowzoobpciofldkdksqd.onion
||pdixgp5s27jkd26pc2oenismtlumi7cbkywanlzvf62kcau6ro4hbsad.onion
||vk5akdnqjyupp34lpz65oj4pomlu3jxz663tp4xmxnz22crt2qpojtid.onion
||7j5c24itghnglnodmlg76j6dxo64hn5sgtrm7q7z4pv4hoexemr2pmid.onion
||qeybpwjb7qn2ws2dein5zvsqgxral3shzsobgypzom4oihqfdlvl4uid.onion
||wth474sv6ct4glwiowjipvr6ydeg6tbxlenxqibe5vno7ivmeqlumnid.onion
!-------------------------------------------------------------!
!--------------------------- Tor Links -----------------------!
!-------------------------------------------------------------!
||hidden24vowyrcic.onion
||tj2djlce6qtevcai.onion
||stacvvulbayktqlf.onion
||vzmvmmaldx3h7vx6.onion
||bithackm5geoeeuu.onion
||midnightkt43f3fk.onion
||paxromanadfudhte.onion
||lmoney4rw45hrqfm.onion
||zw5atj5ckiw6rh46.onion
||alphac5biyz7adb4.onion
||deepmartyqzffl5n.onion
||deepmart55jnyjvd.onion
||deepmarbql25sagu.onion
||cccentersemzrqne.onion
||ccenter3wl2ojn7r.onion
||cccetxnsai5dfm3t.onion
||5p32k6mwxbmvqbgwepssmuxluiodr5qtulw73pe3yekkbymk6hwcujyd.onion
||ksotfkmgxgcoj4tp.onion
||p4mvyqmtczqnor5k.onion
||yuul2gjh6lntsrya.onion
||e3u7bcsaitpvos5p.onion
||imp65lw565mim4wa.onion
||imperia6tjbaa2lt.onion
||hhhzuo2aqjb6qzlk.onion
||imperiali5phcpa3.onion
!-------------------------------------------------------------!
!--------------------------- UnderDir ------------------------!
!-------------------------------------------------------------!
||underdj5pebcmfqf.onion
||undedfdvagdsov4z.onion
||undeqvfyhefptjtc.onion
||z5taguvepvuevyp3.onion
||linkdih75f4psumn.onion
||linkdchaw32pg5ju.onion
||linkdt43zhpn4zic.onion
||linkdaliqdmt6qqg.onion
||linkddxacu7dehai.onion
||linkd4izufb4qzqm.onion
||linkd3q4qudvpctn.onion
||linkd4j64dc4grf2.onion
||auutwvpmfqfsmcen.onion
||4om2jscnc2e3vpie.onion
||jwyngqi6njcgsgbb.onion
||2222222dfa7e7pmc.onion
||2222222pass6qkkw.onion
||2222222sgsxom6o3.onion
||22222224t2y6otrx.onion
||2222222sfqnrbpzi.onion
||2222222q6hohtan2.onion
||2222222mienbekqf.onion
||2222222wxkqnjz25.onion
||22222225lbh45mmt.onion
||jvhp2iv7vfwuurva.onion
||hackfbqeihaagbff.onion
||2rgxdk7qtawadebofm6jurur5v5ee26o23uwvbmit23uhsledpy6cbyd.onion
||5crsrbqukiefmkrv.onion
||3idjhshoxzqm5nuz.onion
||3ljugjydhuwr6fux.onion
||fobgemanrtpvbxok.onion
||22222222gkxknocu.onion
||37nj3wqjq4pxt6tgb4yfhejgd5k6yhfu3wp7dtbi6hgsdxkpj6rhhsid.onion
||3zopytflp2tat7aq.onion
||3qjxmxweyvpnfczm.onion
||zkqsx2wbxusrefjw.onion
||iinjakjk2ydhj7al.onion
!-------------------------------------------------------------!
!---------------------- Dark Web Magazine --------------------!
!-------------------------------------------------------------!
||deepmarticgyp6if.onion
||deepmartrigqwenz.onion
||deepmartmfvbijza.onion
||deepmarbaaaiwpph.onion
||deepmar57fbonfiw.onion
||hidden24tha4plsx.onion
||hiddenmark43cbxd.onion
||hiddenmagmteisz2.onion
||hidden24qtvlgaxp.onion
||nu5grt6sqv4imico.onion
||nu5grt6sxtkep757.onion
||tenebra5nlfxplf5.onion
||d6icqld2aunwupgp.onion
||2tq6nz2a3ijn4yhh.onion
||statv2gccyh7roto.onion
||alimic5a3ecaeywv.onion
||neweram2ko7qacon.onion
||6qdvcew6jhxifqge.onion
||bmarketyyx64v54x.onion
||lg7iwjj3ajzz2cmd.onion
||a534p6bdxbf2niq7.onion
||hqcards3mrbxrfak.onion
||oz2l3ihpg6j5vxkb.onion
||hlpg5p2rc3uou7wr.onion
||c2qzddqjccyy4qem.onion
||2ljfiwqcup2kc3u3.onion
||ebkjlvge7furmo6y.onion
||bnrusds5aw6b3iul.onion
||tj2dl4f4piiyke4i.onion
||alphaca4pxfzfyvm.onion
||xilliayhoiuv5qmk.onion
||2pneiouz2aj27kjs.onion
||itilyljv4vf6qgqm.onion
||lox7ibfj7e3pw3c6.onion
||cashyjun2yp4tiub.onion
||fmp2arn5ftrxzoba.onion
||prepaidojhtmroco.onion
||ub2fkkeeyl3jgwwz.onion
||o3fkhst6gymb6duo.onion
||carddumpa36spoya.onion
||jokerooxzda6ruf4.onion
||caworldwyrxypvqm.onion
||zenithccalwhzy26.onion
||ecashpkvsc2qroz6.onion
||deepointokustfwk.onion
||qdoqihbtet5jt5qx.onion
||blackccyuvti57v7.onion
||dark2w4t34jlb5nt.onion
||j7cd2za5dxcw4uan.onion
||cardshopffielsxi.onion
||darkrawbz4fkib2c.onion
||lordpg3nluytdenw.onion
||travelziverr35bk.onion
||paypal6qqdpo2jhc.onion
||paypalp2l6xiemsy.onion
||easyppslbft37xq7.onion
||45l7ejfvg6tocxjg.onion
||ioqkxhnm3uivbtth.onion
||22222222ss554wof.onion
||g5b5erkjomqen6nm.onion
||22227zvkbytnwlrt.onion
||7yrwexuvl2horzr2.onion
||buygc467q5ez2fg7.onion
||debitcards.torpress2sarn7xw.onion
||vend2qz3bva3jhol.onion
||vendor5in7aid2nb.onion
||cccenterjb27ubnm.onion
||cccenterse4ofwp6.onion
||3223onhiaeolkhbe.onion
||3s7hfvharztoevy5zpbq6jk7rzvwvvviqz45v6cxq2kovq4yfxxq4sqd.onion
||aestjoovxnehn5mlcnhvmyarl3oyozmqbxvmtppl65j67jazz5yu66qd.onion
||7g6osvevkboz5ce3ytn42tefk2bzrzp53ugqapdrzwcjhuxfv6yup7yd.onion
||7b4vsorl3pjq5f4fqy2dmsqlbgqy7gbgb7wvnggjfpcudmbh4hhkawad.onion
||mzeh627q7bmzsoxozampnsstkfnby2zvm3y73qcsy43n3eaveehqjoyd.onion
||w7syjbv4tqzudakassr6yzuxsmtdovihlwedwzvz4x7a7tzpjgtoqjqd.onion
||srwmltrmx5uy3j74adakpixaptlr2lie42cshrlglsyy2mml24hcs4id.onion
||4jnwltgnjvb44xh4jzfqe2tlq37bkyknnnhpx4ia4yyz5qgbpamvntqd.onion
||bestcc5xpfjihry2nlc25pj5ujxzrezrjh4egzugvs3u2eopjk5u5zid.onion
||nu25zvegynpgpgbywuudtov7g37h2jsxfa2avz5dyqx32kmqzsp2qjyd.onion
||fiw27htrk5av3bnhfjtl23dn62fa6e3rwlhtvkimthy46jbuxuy3jdyd.onion
||darkf2d7zte4t7ys.onion
||dumpscciolcwmacb.onion
||2222222mm67h6ypm.onion
||3ld7ttejt76spqxv.onion
||buyccvhbq25t5l3y.onion
||hcutffpxiq6zdpqm.onion
||amazonhh6bvisfdl.onion
||ppccpzamw4qb3yji.onion
||accsaphx55wcxaxd.onion
||netauth3iph4qwjd.onion
||bankors4spr7ohze.onion
||wc5ab2qgobwlb7mp54dbxkf2dvjstftj2b6uwfadvawng4liyiuiusad.onion
||fcq6zs5hhvbxdqb6.onion
||nkq6572rde7s73pemuo6fxz3elcu5xczfin3qy3eo36apakrqbevzdid.onion
||54ce5x7l4m3t2spm.onion
||p2rkdistflgo3eqx.onion
||stacaqsyrzfg4jos.onion
||stacnb5bmdtzysww.onion
||stacithgj4xrdolk.onion
||stacaqpfbfiz54sq.onion
||stacwitkktemyvgs.onion
||stacps5rb3dwzmju.onion
||stacixwftmr27igr.onion
||staco3a37yho7sox.onion
||premiumd7ww5c43q.onion
||premiumruzgaamwt.onion
||ccqvend6aq5wig35.onion
||fasttruunhj4agjl.onion
||bitccmch47v3xypb.onion
||westernu7e5v6qez.onion
||3vfws2yqv4wii54e.onion
||bnrub6cwicyu7snv.onion
||ccaz3dzqrouqshop.onion
||hbl6udan73w7qbjdey6chsu5gq5ehrfqbb73jq726kj3khnev2yarlid.onion
||moneyfa6bic6gmxd.onion
||thebank33vuixg66.onion
||loobucks2fmgyivu.onion
||cardccgwbm5xob4e.onion
||card2v6wbr2cuyrh.onion
||crspseme2b55ztlf7nqylxvunl6aqnu26pdurodltldjsekzbkrcsuad.onion
||e3bv6gcn3qjpg4kfi4qy3t7z3hzm2eoyv7o5lua2goaz6dv44f3yukyd.onion
||nobleco6f77cs2h6.onion
||enxlsmjhbv2wn67j.onion
||phyqslpwbkodrwd7.onion
||r5nwehhbbtp4rrg3.onion
||torcvvq44o7ofjuu.onion
||pdf6uqyd4nxmghgw.onion
||d5ubjv46kownm4jl.onion
||aannwx6fzpwniruq.onion
||transferiwon44pq.onion
||toringei5vt4sfk7.onion
||tj2d2hizwtbialiv.onion
||mpm3oc6m2dy3jjho63syrjbdtyixwxgbwmsyc24r66uazgqhbz4y2nid.onion
||xf3mt5ev4brqmfrh.onion
||precardsn7zl3n6x.onion
||ppcentznbskgodcp.onion
||bitshopotisgandd.onion
||cardp2rckmuocccy.onion
||cenn5byalpdhx4c5mrs722tzttjkrkxzdpspri3y4fscv3lrqy6ob3yd.onion
||acardsavkhwfreuq.onion
||id5fh5dfrdzrxkro.onion
||uujpz6aszhnrxyix.onion
||instapayickpt3tu.onion
||r4zbmobyalfzfejwxu2633qfr6nx62khkdznqwlpc5ozkhadxpe5edqd.onion
||hdvs2bh7mq357tj4.onion
||oldecr7kb3zho273rqeye6mwk4cwpl644s6cciiqk7zf7anpao2ntvyd.onion
||ccguruetr5jwye5g.onion
||xb635ncim63dlahg.onion
||sbxxtg7qehc6wvhl.onion
||morhx3irxknskwu5.onion
||ewad7i7uw2deouyg.onion
||bnruxuk34pu5l37h.onion
||3gs7lq52ccbqvdu3kf7m7ilbasjqhsegmb2rnvu4zjfx7lf27oz7ytyd.onion
||ccmen5ivf6em3m3s.onion
||h7hsn3g7ebub3opewsxtcjfsstyy3s4kvtphxwmv5lvwq5lrtazit2yd.onion
||countuwelx4r7qi5.onion
||countrfoioed4ckx.onion
||en35tuzqmn4lofbk.onion
||fakeidskhfik46ux.onion
||6c3qzz4q7jvnzoxg.onion
||passporxakpmzurx.onion
||o6klk2vxlpunyqt6.onion
||y3fpieiezy2sin4a.onion
||ukpasspprmwaqrsd.onion
||7n535arkbmecbw62wy7h2acvze3wqejk3ekazzk44ibriz55itcs37ad.onion
||abbujjh5vqtq77wg.onion
||cfactoryxecooa6l.onion
||rocksolidyyacwsa.onion
||rocksolyis6cxkyy.onion
||rsescrow5zcepqjh.onion
||escrown4d564qtgz.onion
||escrow5jkmjpxprw.onion
||sgjfdl42o6565wli.onion
||2hftxvyft7dl3fk2.onion
||mescrowy4dr6xqh5.onion
||mescynls2xqjqeoc.onion
||mescrowsi3yjswh2.onion
||sblqp5utjj3bu2ec.onion
||sblqlbzrejulqzsi.onion
||tm47kmrvlxuibig7.onion
||apmqltpmgmpqwqwt.onion
||2uyiwmcn4wudbzcj.onion
||safebtck4qejiero.onion
||bitpw7stentgch5y.onion
||52jiu6jc6isptocs.onion
||6qkockkyu3ln3twr.onion
||safepayt2nt56gy4.onion
||ohift5o756azx327ihkkytajdixynoibwj47sfebkral47uttffl7nyd.onion
||safepayren6pt7fj.onion
||btcasiah5fa5mhkp.onion
||btcaiysn5azhuwi7.onion
||e64qidckaxijfm6l.onion
||ygqevii2umdcvk5z4k2pqxhpynpgix63dl5prcslz4gggph5ea63qrqd.onion
||lrcnreaelox6ccu6qnr77jlz5vbsba2davmtncb6plpklkpgrlhx2sad.onion
||3bd7kkf7xm2fcthbm6ynqwg6i5crl46o4hfmllbgtkpwhlzkbdsju6id.onion
||vfh3tsbizlsirnxg73ebrf2fuuud62oben7rijm7kzhfg43de6ecoiyd.onion
||qovaihss3wzf4zo2ns7tckvrm7cfkl5rfgbjmk6vim2a7eufvrlbqwyd.onion
||escrowq5tus5jpgw.onion
||bescrowwc3nlocsb.onion
||vnidbxx3zaa2ksva.onion
||6q5mipksw3qe5cqxxfmjg2gorzwlctbbmdjiub2iwxiu6zxse5bwvaid.onion
||bbbitgkcgods6tlt.onion
||btcdepowt7qahs6z.onion
||btcdepouvsdohehn.onion
||7i42x3kjxjldvcqw.onion
||ib62tqf55t7f34ay7fhspcgk2a43pjkwquegwkhcewivratwg2oy3mad.onion
||2mbag6csiomy2e7l.onion
||lockerpwpshriwam.onion
||escrow5go6vopjjg.onion
||okjh4irka63gweyk2fjpciro7wvhfiujsst7fxopjielb7xzcaaomsyd.onion
||vgnuhmuj6aex2ycc.onion
||22escrowkxy56tvd.onion
||escrowytu7s7rlqn.onion
||5xbpc5qu4jx4e2eo.onion
||ps66utstlfojv3nv.onion
||hpumcyqddysk54ejprdadm5hczqaeavqt6ygfnikcuwqa7u75z5vmtid.onion
||middle2d7bkn7mdy.onion
||weedway2vlaj37gy.onion
||ausbulkdoxtv4tkt.onion
||weedu6vbqo45xrjt.onion
||v4t3ogtrdoe6ozkn.onion
||quality2ui4uooym.onion
||z7kd7qa7lndx67v5.onion
||crimen6nxejwy2f2.onion
||kbvbh4kdddiha2ht.onion
||nnipbjberqh6lpvt.onion
||fzqnrlcvhkgbdwx5.onion
||v4t3rb4gpei5vixb.onion
||darkmambawopntdk.onion
||darkmambazsmnkjo.onion
||swkcw6eudl7lciek.onion
||assassinuyy7h425.onion
||blkmobbzqjhpn232.onion
||ygrqgcnoodnqdmlc.onion
||zsyvom262oiaoc6es7bgg66xieyil6nqkh7jn5ntraghpqgudbcl3vad.onion
||4tvzeuakkunuvbmf.onion
||camorrau23edy436.onion
||2ogmrlfzdthnwkez.onion
||nfs6e454oyvajfro.onion
||hacker5quf443wtg4n7hi6m3l4xpcyasknjvhhrb6pcbgakhu7bblhad.onion
||brohoodahjzxriv7.onion
||hackerrljqhmq6jb.onion
||xhackergnluw32xz.onion
||4u7aueoex3gv2ybl.onion
||hack5xpgngf2frll.onion
||gnshpojuxrioibud.onion
||weapon5cd6o72mny.onion
||luckp47s6xhz26rn.onion
||3n3w4m56atug7osb.onion
||applestor7qfi636.onion
||electronz2gpfyz5.onion
||rjb2zyzskm7he5pd.onion
||tfwdi3izigxllure.onion
||applesf6emggp2pz.onion
||etrrdbuorwng2hkw.onion
||bitstorenctdwhmo.onion
||isto66yzdrjlvnig.onion
||mobil7rab6nuf7vx.onion
||iphonegwasqieryi.onion
||etronix47auvlmt7.onion
||markethh52nfbvxy.onion
||dewzrshlaw7e2hev.onion
||bitmixergv5vvbza.onion
||cleancoikmh6uamc.onion
||loundryslz2venqx.onion
||ow24et3tetp6tvmk.onion
||ujnkg4uirpaiqejr.onion
||hdwikiueikaeviwk.onion
||ndntmfusjmj6tkpl.onion
||z6ttukngw2hlok2u.onion
||he22pncoselnm54h.onion
||z2hjm7uhwisw5jm5.onion
||yip2pklv6nivtzrq.onion
||4r4zaei5qa7qq5ha.onion
||trstxp6ljtdyy275.onion
||djx6idjhk5yumfn2.onion
||4gj66ltkilkyutyw.onion
||virus323mhjmnav2.onion
||virush6axb3bkhpe.onion
||virushb3ve5ymaue.onion
!-------------------------------------------------------------!
!------------------------ Miscellaneous ----------------------!
!-------------------------------------------------------------!
||vu2wohoog2bytxgr.onion
||2kka4f23pcxgqkpv.onion
||3dbr5t4pygahedms.onion
||hiddenmarketplace.org
! Title: Dark Web AdBlock Filters
! Description: AdBlock filters for tor network (dark web),
only use if you browse the tor network,
make sure cosmetic filtering is enabled in uBlock Origin for it to work properly.
! Version: 2.2.0
! Expires: 1 day
! License: http://creativecommons.org/licenses/by/3.0/
!-------------------------------------------------------------!
!----------------------------- Ads ---------------------------!
!-------------------------------------------------------------!
! Dark Web Links - bznjtqphs2lp4xdd.onion
||bznjtqphs2lp4xdd.onion/images/1.png
! 4/15/20 - Onion Center Search Engine - http://oikgfwfqmqkph4rl.onion
oikgfwfqmqkph4rl.onion###content > center
oikgfwfqmqkph4rl.onion##.adSpace2
oikgfwfqmqkph4rl.onion##.adSpace3
! 4/15/2020 - OnionLand Search - 3bbad7fauom4d6sgppalyqddsqbf5u5p56b5k5uk2zxsy3d6ey2jobad.onion
3bbad7fauom4d6sgppalyqddsqbf5u5p56b5k5uk2zxsy3d6ey2jobad.onion##.col-sm-12
! 4/15/2020 - Tor66 - tor66sezptuu2nta.onion
tor66sezptuu2nta.onion##center:nth-of-type(2)
tor66sezptuu2nta.onion##center:nth-of-type(3)
tor66sezptuu2nta.onion##center:nth-of-type(4)
tor66sezptuu2nta.onion##center:nth-of-type(5)
tor66sezptuu2nta.onion##center:nth-of-type(6)
tor66sezptuu2nta.onion##center:nth-of-type(7)
tor66sezptuu2nta.onion##center:nth-of-type(8)
tor66sezptuu2nta.onion##center:nth-of-type(9)
tor66sezptuu2nta.onion##center:nth-of-type(10)
tor66sezptuu2nta.onion##center:nth-of-type(11)
tor66sezptuu2nta.onion##center:nth-of-type(12)
tor66sezptuu2nta.onion##center:nth-of-type(13)
! 4/15/2020 - Torch: Tor Search - xmh57jrzrnw6insl.onion
||area23wa3d32yygu.onion/delivery/list_banners/1/FP$subdocument
! 4/15/2020 - Tordex - tordex7iie7z2wcg.onion
tordex7iie7z2wcg.onion##div.mb-1:nth-of-type(2)
tordex7iie7z2wcg.onion##div.mb-1:nth-of-type(3)
tordex7iie7z2wcg.onion##div.mb-1:nth-of-type(4)
tordex7iie7z2wcg.onion##div.mb-1:nth-of-type(5)
tordex7iie7z2wcg.onion##div.mb-1:nth-of-type(6)
tordex7iie7z2wcg.onion##div.mb-1:nth-of-type(7)
tordex7iie7z2wcg.onion##div.mb-1:nth-of-type(8)
tordex7iie7z2wcg.onion##div.mb-1:nth-of-type(9)
tordex7iie7z2wcg.onion##div.mb-1:nth-of-type(10)
tordex7iie7z2wcg.onion##div.mb-1:nth-of-type(11)
tordex7iie7z2wcg.onion##div.mb-1:nth-of-type(12)
tordex7iie7z2wcg.onion##div.mb-1:nth-of-type(13)
tordex7iie7z2wcg.onion##div.mb-1:nth-of-type(14)
tordex7iie7z2wcg.onion##div.mb-1:nth-of-type(15)
tordex7iie7z2wcg.onion##div.mb-1:nth-of-type(16)
tordex7iie7z2wcg.onion##div.mb-1:nth-of-type(17)
tordex7iie7z2wcg.onion##div.mb-1:nth-of-type(18)
tordex7iie7z2wcg.onion##div.mb-1:nth-of-type(19)
tordex7iie7z2wcg.onion##div.mb-1:nth-of-type(20)
tordex7iie7z2wcg.onion##div.mb-1:nth-of-type(21)
tordex7iie7z2wcg.onion##div.mb-1:nth-of-type(22)
tordex7iie7z2wcg.onion##div.mb-1:nth-of-type(23)
tordex7iie7z2wcg.onion##div.mb-1:nth-of-type(24)
tordex7iie7z2wcg.onion##div.mb-1:nth-of-type(25)
tordex7iie7z2wcg.onion##div.mb-1:nth-of-type(26)
tordex7iie7z2wcg.onion##div.mb-1:nth-of-type(27)
tordex7iie7z2wcg.onion##div.mb-1:nth-of-type(28)
tordex7iie7z2wcg.onion##div.mb-1:nth-of-type(29)
tordex7iie7z2wcg.onion##div.mb-1:nth-of-type(30)
tordex7iie7z2wcg.onion##div.mb-1:nth-of-type(31)
tordex7iie7z2wcg.onion##div.mb-1:nth-of-type(32)
tordex7iie7z2wcg.onion##div.mb-1:nth-of-type(33)
tordex7iie7z2wcg.onion##div.mb-1:nth-of-type(34)
tordex7iie7z2wcg.onion##div.mb-1:nth-of-type(35)
tordex7iie7z2wcg.onion##div.mb-1:nth-of-type(36)
tordex7iie7z2wcg.onion##div.mb-1:nth-of-type(37)
tordex7iie7z2wcg.onion##div.mb-1:nth-of-type(38)
tordex7iie7z2wcg.onion##div.mb-1:nth-of-type(39)
tordex7iie7z2wcg.onion##div.mb-1:nth-of-type(40)
tordex7iie7z2wcg.onion##div.mb-1:nth-of-type(41)
tordex7iie7z2wcg.onion##div.mb-1:nth-of-type(42)
tordex7iie7z2wcg.onion##div.mb-1:nth-of-type(43)
tordex7iie7z2wcg.onion##div.mb-1:nth-of-type(44)
tordex7iie7z2wcg.onion##div.mb-1:nth-of-type(45)
tordex7iie7z2wcg.onion##div.mb-1:nth-of-type(46)
tordex7iie7z2wcg.onion##div.mb-1:nth-of-type(47)
tordex7iie7z2wcg.onion##div.mb-1:nth-of-type(48)
tordex7iie7z2wcg.onion##div.mb-1:nth-of-type(49)
tordex7iie7z2wcg.onion##div.mb-1:nth-of-type(50)
! 4/15/2020 - Torgle - torglejzid2cyoqt.onion
torglejzid2cyoqt.onion##.mt-5.text-center.col-md-9
! 4/15/2020 - VisiTOR - visitorfi5kl7q7i.onion
visitorfi5kl7q7i.onion##body > div:nth-of-type(1)
visitorfi5kl7q7i.onion##div.item:nth-of-type(3)
visitorfi5kl7q7i.onion##div.item:nth-of-type(4)
visitorfi5kl7q7i.onion##div.item:nth-of-type(5)
! 4/15/2020 - The Light Hidden Wiki cbo7whgxo2dnplgz.onion
cbo7whgxo2dnplgz.onion##div#p-tb.portlet:nth-of-type(7) > h3
cbo7whgxo2dnplgz.onion##div#p-tb.portlet:nth-of-type(7)
! 4/15/2020 Hidden Links - wclekwrf2aclunlmuikf2bopusjfv66jlhwtgbiycy5nw524r6ngioid.onion
wclekwrf2aclunlmuikf2bopusjfv66jlhwtgbiycy5nw524r6ngioid.onion##h6.friends:nth-of-type(2)
wclekwrf2aclunlmuikf2bopusjfv66jlhwtgbiycy5nw524r6ngioid.onion##div.friend-list:nth-of-type(2)
wclekwrf2aclunlmuikf2bopusjfv66jlhwtgbiycy5nw524r6ngioid.onion##h6.friends:nth-of-type(1)
wclekwrf2aclunlmuikf2bopusjfv66jlhwtgbiycy5nw524r6ngioid.onion##div.friend-list:nth-of-type(1)
! 4/15/20 - The Hidden Wiki / Deep Web Onion List - ndntmfusjmj6tkpl.onion
ndntmfusjmj6tkpl.onion##p:nth-of-type(5)
ndntmfusjmj6tkpl.onion##p:nth-of-type(7)
ndntmfusjmj6tkpl.onion###sidebar-inner > center
ndntmfusjmj6tkpl.onion##p:nth-of-type(9)
ndntmfusjmj6tkpl.onion##p:nth-of-type(10)
! 4/15/2020 - Tor Links - torlinkswwqg3lwt.onion
torlinkswwqg3lwt.onion###t > tbody > tr:nth-of-type(1) > td > center
! 4/15/2020 - TorLinks v3 - tor3ypms2vlohh2e.onion
tor3ypms2vlohh2e.onion##[href="http://hdwikiueikaeviwk.onion/"]
! 4/15/20 - Onion Links Directory - http://aaalinktbyhxngho.onion
aaalinktbyhxngho.onion##div.container:nth-child(3) > div.row:nth-child(3) > div.side:first-child > div.sidebar_banner:last-child
aaalinktbyhxngho.onion##div.container:nth-child(3) > div.header:first-child > div.header_banner:last-child > div > a > img
! 4/15/2020 - Onion List - onionailnm7t3437.onion
onionailnm7t3437.onion##.c-con
onionailnm7t3437.onion##.advertising
! 4/15/2020 - Link Direction - linkdire62kbkigq.onion
linkdire62kbkigq.onion##.box
! HD Wiki - 4/15/2020 - hdwikiueikaeviwk.onion
hdwikiueikaeviwk.onion###dokuwiki__top > div:nth-of-type(2)
! 4/15/2020 - Best Deep Web - bestdeepweb.com
bestdeepweb.com##p:nth-of-type(2)
bestdeepweb.com##div.moduletable:nth-of-type(4) > div:nth-of-type(1)
bestdeepweb.com##div.moduletable:nth-of-type(5) > div:nth-of-type(1)
bestdeepweb.com##div.moduletable:nth-of-type(6) > div:nth-of-type(1)
bestdeepweb.com##div.moduletable:nth-of-type(7) > div:nth-of-type(1)
bestdeepweb.com##div.moduletable:nth-of-type(8) > div:nth-of-type(1)
! 4/15/2020 - Raptor - raptortiabg7uyez.onion
raptortiabg7uyez.onion##p:nth-of-type(2)
raptortiabg7uyez.onion##body > [href="http://silkroadxjzvoyxh.onion/"]
raptortiabg7uyez.onion##body > [href="http://tapeucwutvne7l5o.onion/"]
raptortiabg7uyez.onion##p:nth-of-type(4)
! 4/15/2020 - Deep Web Links - deep-weblinks.com
deep-weblinks.com##.site-header > .wrap
deep-weblinks.com###custom_html-16 > .widget-wrap.widget_text > .custom-html-widget.textwidget
deep-weblinks.com##p:nth-of-type(10)
deep-weblinks.com##p:nth-of-type(20)
deep-weblinks.com##p:nth-of-type(25)
deep-weblinks.com##p:nth-of-type(349)
! 4/15/2020 - CodeDir - 67xkew7pvctdcj526yl7gl6pc6e2dwqwx3ugbe67g2hfjdnbwjd7euad.onion
67xkew7pvctdcj526yl7gl6pc6e2dwqwx3ugbe67g2hfjdnbwjd7euad.onion##center:nth-of-type(2)
! 4/15/2020 - Recon - reconponydonugup.onion
reconponydonugup.onion##.banner-section
! 4/15/20 - Secmail - secmailw453j7piv.onion
secmailw453j7piv.onion##div:nth-of-type(2)
secmailw453j7piv.onion##body > table:nth-of-type(1) > tbody > tr:nth-of-type(2) > td:nth-of-type(2)
giyzk7o6dcunb2ry.onion##body > table:nth-of-type(1) > tbody > tr:nth-of-type(2) > td:nth-of-type(2)
giyzk7o6dcunb2ry.onion##div:nth-of-type(2)
||secmailw453j7piv.onion/src/ads/*$subdocument,1p
||secmailw453j7piv.onion/src/login.php/images/backg.png$image
||giyzk7o6dcunb2ry.onion/src/ads/*$subdocument,1p
||giyzk7o6dcunb2ry.onion/src/login.php/images/backg.png$image
! 4/15/2020 - Flashlight - kxojy6ygju4h6lwn.onion
kxojy6ygju4h6lwn.onion##div.clearfix.sb-widget:nth-of-type(1)
kxojy6ygju4h6lwn.onion##div.clearfix.sb-widget:nth-of-type(2)
kxojy6ygju4h6lwn.onion##div.clearfix.sb-widget:nth-of-type(3)
kxojy6ygju4h6lwn.onion##div.clearfix.sb-widget:nth-of-type(4)
kxojy6ygju4h6lwn.onion##div.clearfix.sb-widget:nth-of-type(5)
kxojy6ygju4h6lwn.onion##div.clearfix.sb-widget:nth-of-type(6)
kxojy6ygju4h6lwn.onion##div.clearfix.sb-widget:nth-of-type(7)
kxojy6ygju4h6lwn.onion##div.clearfix.sb-widget:nth-of-type(8)
kxojy6ygju4h6lwn.onion##div.clearfix.sb-widget:nth-of-type(9)
kxojy6ygju4h6lwn.onion##div.clearfix.sb-widget:nth-of-type(10)
kxojy6ygju4h6lwn.onion##div.clearfix.sb-widget:nth-of-type(11)
kxojy6ygju4h6lwn.onion##div.clearfix.sb-widget:nth-of-type(13)
kxojy6ygju4h6lwn.onion##div.clearfix.sb-widget:nth-of-type(14)
kxojy6ygju4h6lwn.onion##div.clearfix.sb-widget:nth-of-type(15)
kxojy6ygju4h6lwn.onion##div.clearfix.sb-widget:nth-of-type(16)
kxojy6ygju4h6lwn.onion##div.clearfix.sb-widget:nth-of-type(17)
kxojy6ygju4h6lwn.onion##div.clearfix.sb-widget:nth-of-type(18)
kxojy6ygju4h6lwn.onion##.bottom-ad-section
! 4/15/2020 - OnionThumbs - othumbs53mh65hxc.onion
othumbs53mh65hxc.onion##body > center > div.MainAdverTiseMentDiv:nth-of-type(1)
othumbs53mh65hxc.onion##center > div:nth-of-type(3)
othumbs53mh65hxc.onion##div.MainAdverTiseMentDiv:nth-of-type(4)
othumbs53mh65hxc.onion##center > center > .MainAdverTiseMentDiv
othumbs53mh65hxc.onion##.hoOcbG0CqpjS-bg
othumbs53mh65hxc.onion###EPxdU9xTuRWk
! 4/15/2020 - Instantgrams - y4w6wobb66qbolcru7obrqu2763gctj6kls5tpvkjt42is4uzplnqzad.onion
y4w6wobb66qbolcru7obrqu2763gctj6kls5tpvkjt42is4uzplnqzad.onion##div.mb-2:nth-of-type(2)
y4w6wobb66qbolcru7obrqu2763gctj6kls5tpvkjt42is4uzplnqzad.onion##div.mb-2:nth-of-type(3)
y4w6wobb66qbolcru7obrqu2763gctj6kls5tpvkjt42is4uzplnqzad.onion##div.mb-2:nth-of-type(4)
y4w6wobb66qbolcru7obrqu2763gctj6kls5tpvkjt42is4uzplnqzad.onion##div.mb-2:nth-of-type(6)
y4w6wobb66qbolcru7obrqu2763gctj6kls5tpvkjt42is4uzplnqzad.onion##div.mb-2:nth-of-type(8)
! 4/15/2020 - Hidden Answers - answerszuvs3gg2l64e6hmnryudl5zgrmwm3vh65hzszdghblddvfiqd.onion
answerszuvs3gg2l64e6hmnryudl5zgrmwm3vh65hzszdghblddvfiqd.onion##.qa-sidepanel > div:nth-of-type(2)
! 4/15/2020 - The Onion Web - onionwsoiu53xre32jwve7euacadvhprq2jytfttb55hrbo3execodad.onion
onionwsoiu53xre32jwve7euacadvhprq2jytfttb55hrbo3execodad.onion##.w-article-list-num > .widget
onionwsoiu53xre32jwve7euacadvhprq2jytfttb55hrbo3execodad.onion##div.header-pob:nth-of-type(14)
onionwsoiu53xre32jwve7euacadvhprq2jytfttb55hrbo3execodad.onion##aside.sidebar.ddwnews-sidebar-small:nth-of-type(2) > .theiaStickySidebar
onionwsoiu53xre32jwve7euacadvhprq2jytfttb55hrbo3execodad.onion##.do-space-bg.do-space
! 4/15/2020 - Tape - tapeucwutvne7l5o.onion
tapeucwutvne7l5o.onion##.p-b-30.bn-lg-sidebar.col-xs-12.col-sm-12
! 4/15/2020 - DNMLive - dnmliveahwgu7nvu.onion
dnmliveahwgu7nvu.onion###slider
! 4/19/2020 - Tormax - tormaxunodsbvtgo.onion
tormaxunodsbvtgo.onion###banners
! 4/19/2020 - Onion Links Directory - aaalinkdbpopbfax.onion
aaalinkdbpopbfax.onion##.header_banner > div
aaalinkdbpopbfax.onion##.sidebar_banner
! 4/23/2020 - Uncensored Hidden Wiki - z5taguvepvuevyp3.onion
z5taguvepvuevyp3.onion##table#mp-upper:nth-of-type(2) > tbody > tr > td.MainPageBG:nth-of-type(2)
! 5/25/2020 http://multivacigqzqqon.onion
multivacigqzqqon.onion##div.Input:nth-of-type(3) > p:nth-of-type(1)
multivacigqzqqon.onion##p:nth-of-type(2)
multivacigqzqqon.onion##p:nth-of-type(3)
multivacigqzqqon.onion##[src="img/paid/5b8fc5641b244.gif"]
multivacigqzqqon.onion##[href="http://young64ispejbqrl.onion"]
multivacigqzqqon.onion##[href="#"]
!-------------------------------------------------------------!
!------------------------- Annoyances ------------------------!
!-------------------------------------------------------------!
! 4/15/2020 - Start [Wizardry & Steamwork] - kaarvixjxfdy2wv2.onion
kaarvixjxfdy2wv2.onion##.plugin_wrap.wrap_centeralign
! 4/15/2020 - Best Deep Web - bestdeepweb.com
bestdeepweb.com##.fade-header-website
All provided links in txt format
____ _ _ _ _
/ __ \ (_) | | (_) | |
| | | |_ __ _ ___ _ __ | | _ _ __ | | _____
| | | | '_ \| |/ _ \| '_ \ | | | | '_ \| |/ / __|
_ | |__| | | | | | (_) | | | | | |____| | | | | <\__ \
(_) \____/|_| |_|_|\___/|_| |_| |______|_|_| |_|_|\_\___/
[==================================================]
I n t r o d u c t i o n P o i n t s
[==================================================]
-------------------------
Dark Web Guides
-------------------------
The Way Into The Dark Web: http://guideyeb5ew6plwj.onion/
The Way Into The Dark Web: http://f2fv76wtuwdvbpci.onion/
Owledge: http://owlzyj4to3l5daq6edgsgp5z4lh4tzlnms4z6jv6xdtkily77j4b3byd.onion/
The Dark Web Pug (Outdated): http://thedarkwebpugv5m.onion/
-------------------------
Tor Scam Lists
-------------------------
Dark.Fail: http://darkfailllnkf4vf.onion/
NoScam: http://noscamomtq5kauyu.onion/
Scam List Of Tor 1: http://ba7fsz4656jjxs3p.onion/
Scam List Of Tor 1: http://vzii5edzuyvjb4kf.onion/
Scam List Of Tor 1: http://wua54ku5ixg72qas.onion/
Scam List Of Tor 1: http://r33ar5ezvrigo7p5.onion/
Scam List Of Tor 1: http://pag7cizw7yi4teop.onion/
Scam List Of Tor 1: http://ny24l7k4tnvqie6j.onion/
Scam List Of Tor 1: http://z6xo2uug7nw6oof2.onion/
Scam List Of Tor 1: http://lbrenhktrm33342a.onion/
Scam List Of Tor 1: http://254fxqpk7m2k5pah.onion/
Scam List Of Tor 1: http://mu667ri3fiac4dba.onion/
Scam List Of Tor 1: http://2qv5vlqtjwaub6ub.onion/
Scam List Of Tor 1: http://jgbhzkuksu43brgq.onion/
Scam List Of Tor 1: http://da6u6fqyevtkdzei.onion/
Scam List Of Tor 1: http://fezxztzfgy5bqbnt.onion/
Scam List Of Tor 1: http://v3kdes4p6wazs3zq.onion/
Scam List Of Tor 1: http://w4d3exd5fgii6jj2.onion/
Scam List Of Tor 1: http://oe2tpx5rnzpyxobp.onion/
Scam List Of Tor 1: http://qomo6udnlvekysvm.onion/
Scam List Of Tor 1: http://2eofubmy3gvr3sr5.onion/
Scam List Of Tor 1: http://6jc2l3xdvfyzw5qw.onion/
Scam List Of Tor 1: http://6modvohqhaioqq3e.onion/
Scam List Of Tor 1: http://frqj2noku3ymbcob.onion/
Scam List Of Tor 1: http://g6syrj4tifdznptd.onion/
Scam List Of Tor 1: http://jabtshi2mr3klw4h.onion/
Scam List Of Tor 1: http://n443zdedizjdev7j.onion/
Scam List Of Tor 1: http://pq5sw6nmhxentueq.onion/
Scam List Of Tor 1: http://qevbxwqkpzv3bg5f.onion/
Scam List Of Tor 1: http://tfv4pasrmo3n7kmf.onion/
Scam List Of Tor 1: http://vgv76dcdoj2rlm24.onion/
Scam List Of Tor 1: http://y2fagcdnexoqxfmu.onion/
Scam List Of Tor 1: http://7dxbj6einldsp5ig.onion/
Scam List Of Tor 1: http://7l7dakrz2nabo4jz.onion/
Scam List Of Tor 1: http://bmfkvejunpuqdxjx.onion/
Scam List Of Tor 1: http://gttfi6vyzs33nrqe.onion/
Scam List Of Tor 2: http://rap7gypjs4v6a7ax.onion/
Scam List Of Tor 2: http://roey5smpp67p4fxq.onion/
Scam List Of Tor 2: http://y7zigmjrpm2pkgzi.onion/
Scam List Of Tor 2: http://jancwqly2wrh35ab.onion/
Scam List Of Tor 3: http://mi325vr3yhtlptho42mkaup4loyesnzfmx7simiw2f5gxrbrqeonh4id.onion/
DarkGuard: http://guardday6e5nxblpojbhmx5ws2avautr7eswu3qg7gynh52rh744anyd.onion/
-------------------------
Search Engines
-------------------------
Ahmia: http://msydqstlz2kzerdg.onion/
BTDigg: http://btdiggwzoyrwwbiv.onion/
Candle: http://gjobqjj7wyczbqie.onion/
Dark Web Links: http://jdpskjmgy6kk4urv.onion/
DuckDuckGo: http://3g2upl4pq6kufc4m.onion/
Evo Search: http://evo7no6twwwrm63c.onion/
Excavator: http://2fd6cemt4gmccflhm6imvdfvli3nf7zn6rfrwpsy7uhxrgbypvwf5fad.onion/
Google.Onion: http://ggonionvhfq7brmj.onion/
Grams: http://grams7ebnju7gwjl.onion/
Haystak: http://haystakvxad7wbk5.onion/
I2P Search: http://i2psesltivefcujc.onion/
MultiVAC: http://multivacigqzqqon.onion/
Not Evil: http://hss3uro2hsxfogfq.onion/
Onion Bag: http://onionbagy25be2bg.onion/
Onion Center: http://oikgfwfqmqkph4rl.onion/
Onion Search Engine: http://onionf4j3fwqpeo5.onion/
Onion Search Engine: http://5u56fjmxu63xcmbk.onion/
Onion Search Service: http://oss7wrm7xvoub77o.onion/
OnionLand Search Engine: http://3bbaaaccczcbdddz.onion/
Phobos: http://phobosxilamwcg75xt22id7aywkzol6q6rfl2flipcqoc4e4ahima5id.onion/
SearX: http://5plvrsgydwy2sgce.onion/
Start: http://kaarvixjxfdy2wv2.onion/
Tor66: http://tor66sezptuu2nta.onion/
Tor66: http://tor77orrbgejplwp.onion/
Tormax: http://tormaxunodsbvtgo.onion/
Torrentz 2: http://torrentzwealmisr.onion/
Tor Search: http://torsearchruby56z.onion/
Tor Search Engine: http://searchcoaupi3csb.onion/
Tor Search Engine 2: http://searcherc3uwk535.onion/
Torch: http://xmh57jrzrnw6insl.onion/
Torch: http://26ozf35d2rwtmqbk.onion/
Tordex: http://tordex7iie7z2wcg.onion/
Torgle: http://torglejzid2cyoqt.onion/
Tornet: http://tgs5dkeqkg5hrjjk.onion/
VisiTOR: http://visitorfi5kl7q7i.onion/
-------------------------
Wikis / Link Lists
-------------------------
The Hidden Wiki 1: http://hiddenwiki7wiyzr.onion/
The Hidden Wiki 2: http://nqigfqrxnkwcqmiq.onion/
The Hidden Wiki 3: http://hwikim2v2jscf5tgpcfgkfxjyrfmgs4vwr2raqayt4uzfde6w4dutiqd.onion/
The Hidden Wiki 4: http://ndntmfusjmj6tkpl.onion/
The Hidden Wiki 5: http://wikitorcwogtsifs.onion/
The Hidden Wiki 6: http://zqktlwi4fecvo6ri.onion/
The Hidden Wiki 6: http://zqktlwiuavvvqqt4ybvgvi7tyo4hjl5xgfuvpdf6otjiycgwqbym2qad.onion/
The Hidden Wiki 7: http://hdwikihod77v6fas.onion/
The Hidden Wiki 8: http://wikitjerrta4qgz4.onion/
The Hidden Wiki 9: http://hwikis25cffertqe.onion/
The Light Hidden Wiki: http://cbo7whgxo2dnplgz.onion/
Hidden Wiki Fresh: http://ujnkg4uirpaiqejr.onion/
Hidden Wiki Fresh 2020: http://wikikbig7ni573g5.onion/
Hidden Wiki Fresh 2020: http://hdwf22kgyrnpmq5f.onion/
Hidden Wiki Fresh 2020: http://hdwikiueikaeviwk.onion/
Hidden Links: http://wclekwrf2aclunlmuikf2bopusjfv66jlhwtgbiycy5nw524r6ngioid.onion/
Tor Links v1: http://torlinkbgs6aabns.onion/
Tor Links v1.5: http://torlinkyrd26ovflctq7j3edrcamticj2tikyjghbehnow73av2dtmqd.onion/
Tor Links v2: http://torlinkglejjnyof.onion/
Tor Links v3: http://tor3ypms2vlohh2e.onion/
Tor Links 2: http://torlinkswwqg3lwt.onion/
LinkDir: http://linkdir7ekbalksw.onion/
Link Direction: http://linkdire62kbkigq.onion/
Onion List: http://onionailnm7t3437.onion/
Onion List 2: http://jh32yv5zgayyyts3.onion/
Onion Links: http://onionlinksv3zit3.onion/
Onion Links Directory: http://aaalinktbyhxngho.onion/
Onion Links Directory: http://linkdir5vglxf6by.onion/
Dark Net Links: http://aetmdmazqr5hacyus5iw3foutnj5swzuj3kjyk2hwoxve2pkgilcjkqd.onion/
HD Wiki: http://hdwikicorldcisiy.onion/
UnderDir: http://underdj5ziov3ic7.onion/
OnionDir: http://dirnxxdraygbifgc.onion/
OnionTree: http://onions53ehmf4q75.onion/
OnionList: http://u5gnv57w3wimlrmr.onion/
Onion List 2: http://onionvdyiweqdlta.onion/
Tor Wiki: http://torwikignoueupfm.onion/
Wiki Link: http://wikilink77h7lrbi.onion/
Oni-Dir: http://directory4ichoxb.onion/
Paul's Onion List: http://linkdnwzr3lpx6xq.onion/
DeepLink: http://deeplinkdeatbml7.onion/
Fresh Onion Link List 2019: http://tecjjcyooceyhwyhyhyjmfpnq2c4wxhaxclwqyq6cvpigbqqizf3drqd.onion/
Dark Web Links 2017: http://wiki5kauuihowqi5.onion/
Project PM: http://projpmcxufvim7be.onion/
Raptor: http://raptortiabg7uyez.onion/
Grams Wiki: http://uepurdryqkrheiqs.onion/
Uncensored Onion List: http://list4ywgch4gsd56.onion/
Dir: http://5kgkvealcpsrgsfmxo4fssmr7zcemq7zp5qfvsuppnio5cr6harqq2id.onion/
OnionDir: http://oniot2zvfczp4lpc.onion/
-------------------------
Monitors
-------------------------
DarkEye: http://t7tb43a7gvl6wb7j.onion/
DarkEye: http://darkeyepxw7cuu2cppnjlgqaav6j42gyt43clcn4vjjf7llfyly5cxid.onion/
Onion Scanner: http://4r4zaei5qa7qq5ha.onion/
CodeDir: http://67xkew7pvctdcj526yl7gl6pc6e2dwqwx3ugbe67g2hfjdnbwjd7euad.onion/
[==================================================]
F i n a n c i a l S e r v i c e s
[==================================================]
-------------------------
Bitcoin Mixers
-------------------------
Helix Light: http://mixerrzbgcknjzk4.onion/
Smart Mixer: http://smrtmxdxognxhv64.onion/
Onion Wallet: http://ow24et3tetp6tvmk.onion/
-------------------------
Credit Cards
-------------------------
Bitcards: http://bitccsaxbrxb6iiv.onion/
EasyCards: http://hlpg5p2rc3uou7wr.onion/
Hidden Financial Services: http://morhx3irxknskwu5.onion/
Stack Of DW: http://stacvvulbayktqlf.onion/
La Casa De Papel: http://vljrafgxx4gjozn5.onion/
-------------------------
Cryptocurrency
-------------------------
AgoraDesk: http://agoradeska6jfxpf.onion/
We Buy Bitcoins: http://jzn5w5pac26sqef4.onion/
[==================================================]
C o m m e r c i a l S e r v i c e s
[==================================================]
-------------------------
Electronics
-------------------------
Z33Shop: http://2wkwv7m4hetvqo3d.onion/
Apples 4 Bitcoin: http://tfwdi3izigxllure.onion/
Mobile Store: http://mobil7rab6nuf7vx.onion/
-------------------------
Miscellaneous
-------------------------
Resell Shop: http://g2rvhyzcapyxswgu.onion/
[==================================================]
N o n - C o m m e r c i a l S e r v i c e s
[==================================================]
-------------------------
Email
-------------------------
ProtonMail: http://protonirockerxow.onion/
SecMail: http://secmailw453j7piv.onion/
SecMail: http://giyzk7o6dcunb2ry.onion/
EludeMail: http://eludemaillhqfkh5.onion/
Dark Net Mail Exchange: http://hxuzjtocnzvv5g2rtg2bhwkcbupmk7rclb6lly3fo4tvqkk5oyrv3nid.onion/
RiseUp: http://zsolxunfmbfuq7wf.onion/
CockMail: http://cockmailwwfvrtqj.onion/
Daniel's Email Hosting: http://danielas3rtn54uwmofdo3x2bsdifr47huasnmbgqzfrec5ubupvtpid.onion/
Mail2Tor: http://mail2tor2zyjdctd.onion/
TorBox: http://torbox3uiot6wchz.onion/
Underwood's Mail: http://underwood2hj3pwd.onion/
OnionMail: http://p6x47b547s2fkmj3.onion/
GuerrillaMail: http://grrmailb3fxpjbwm.onion/
-------------------------
Hosting
-------------------------
SporeStak: http://spore64i5sofqlfz5gq2ju4msgzojjwifls7rok2cti624zyq3fcelad.onion/
Albative Hosting: http://hzwjmjimhr7bdmfv2doll4upibt5ojjmpo3pbp5ctwcg37n3hyk7qzid.onion/
Prometheus: http://prometh5th5t5rfd.onion/
Freedom Hosting Reloaded: http://fhostingineiwjg6cppciac2bemu42nwsupvvisihnczinok362qfrqd.onion/
TorVPS: http://torvps7kzis5ujfz.onion/
OneHost: http://q3lgwxinynjxkor6wghr6hrhlix7fquja3t25phbagqizkpju36fwdyd.onion/
Kowloon Hosting: http://kowloon5aibdbege.onion/
RealHost: http://ezuwnhj5j6mtk4xr.onion/
TorPress: http://torpress2sarn7xw.onion/
0xacab: http://wmj5kiic7b6kjplpbvwadnht2nh2qnkbnqtcv3dyvpqtz7ssbssftxid.onion/
-------------------------
File Hosting
-------------------------
SecureDrop: http://secrdrop5wyphb5x.onion/
Matrix Image Hosting: http://matrixtxri745dfw.onion/
Image Hosting: http://twlba5j7oo5g4kj5.onion/
PopFiles: http://popfilesxuru7lsr.onion/
FileDropper: http://dropperibhaerr2m.onion/
BlackCloud: http://bcloud2suoza3ybr.onion/
Just Upload Stuff: http://jusfileobjorolmq.onion/
Crypto Uploader: http://cryptoupei2am6si.onion/
CryptoFile: http://ec7yptcpai4dtebe.onion/
Felixxx: http://felixxxboni3mk4a.onion/
ZeroBin: http://zerobinqmdqd236y.onion/
OnionPaste: http://pastmo4ixjkacqqv.onion/
DeepPaste: http://depastedihrn3jtw.onion/
Tor Pastebin: http://postits4tga4cqts.onion/
The Pirate Bay: http://piratebayztemzmv.onion/
The Pirate Bay: http://piratebaymbf3ul7.onion/
Torrent Galaxy: http://galaxy2gchufcb3z.onion/
Torrent Paradise: http://r5n26fdanb4i522h.onion/
IPA Hosting: http://ipahostyyez3loer.onion/
Intel Repository: http://intel5vmppiwc4u6l5bisfdv7sazzlacrqcuze4wxqdavd5kltxru7qd.onion/
Intel Exchange: http://intelex7ny6coqno.onion/
Anodex: http://anodex.oniichanylo2tsi4.onion/
Free Stuff: http://zodiaczgi6edcl6nc22ylrlzavwmfqhzol4kyejos3lkn4bmum5ux3id.onion/
-------------------------
Security & Privacy
-------------------------
PrivacyTools: http://privacy2zbidut4m4jyj3ksdqidzkw3uoip2vhvhbvwxbqux5xy5obyd.onion/
Debain Security Team: http://ynvs3km32u33agwq.onion/
GNUPG: http://ic6au7wa3f6naxjq.onion/
Whonix OS: http://dds6qkxpwdeubwucdiaord2xgbbeyds25rbsgr73tbfpqpt4a6vjwsyd.onion/
Qubes OS: http://qubesosfasa4zl44o4tws22di6kepyzfeqv3tg4e3ztknltfxqrymdad.onion/
ExpressVPN: http://expressobutiolem.onion/
MullvadVPN: http://xcln5hkbriyklr6n.onion/
Private Internet Access: http://piavpnaymodqeuza.onion/
Keybase: http://keybase5wmilwokqirssclfnsqrjdsi7jdir5wy7y7iu3tanwmtp6oid.onion/
Keybase: http://fncuwbiisyh6ak3i.onion/
Sonar: http://kcxb2moqaw76xrhv.onion/
Stem: http://vt5hknv6sblkgf22.onion/
Universal Encoding Tool: http://usegafl7jdygvjcm5velj4mopbcdlxtxeob2xi5hcskm5w46chxipoqd.onion/
AspireCrypt: http://j36f2zfz7v3neai7.onion/
PrivacyBox: http://2h3xkc7wmxthijqb.onion/
ServNet: http://servnetshsztndci.onion/
Anonymous FTP Client: http://wtutoxfznz45gf6c.onion/
CGI Proxy: http://x5yd2gfthlfgdqjg.onion/
-------------------------
Music
-------------------------
Deep Web Radio: http://76qugh5bey5gum7l.onion/
HFS: http://wuvdsbmbwyjzsgei.onion/
Black Jesus: http://niggervteelq47id.onion/
Used2Now: http://used2now7fin3qse.onion/
Stream: http://streamtmr46ysxw6.onion/
-------------------------
Multipurpose
-------------------------
Volatile: http://vola7ileiax4ueow.onion/
Kaizushi's Little Onion Service: http://kaizushih5iec2mxohpvbt5uaapqdnbluaasa2cmsrrjtwrbx46cnaid.onion/
The Kingdom Of God: http://xt6zo6bcjbrrjyvr.onion/
-------------------------
Miscellaneous
-------------------------
Simple Bookmarks: http://afajj7x4zfl2d3fc2u7uzxp4iwf4r2kucr5on24xk2hwrssoj7yivhid.onion/
AdHook: http://adhook6u2wrwdhlb.onion/
OnionThumbs: http://othumbs53mh65hxc.onion/
4Chan Archives: http://ydt6jy2ng3s3xg2e.onion/
4Chan Archives: http://oweeh6jcqx3aoey2.onion/
Debain Package Tracker: http://2qlvvvnhqyda2ahd.onion/
[==================================================]
S o c i a l
[==================================================]
-------------------------
Networks
-------------------------
Dread: http://dreadytofatroptsdj6io7l3xptbet6onoyno2yv7jicoxknyazubrad.onion/
Facebook: http://facebookcorewwwi.onion/
Connect: http://connectkjsazkwud.onion/
Galaxy3: http://galaxy3m2mn5iqtn.onion/
Nitter: http://3nzoldnxplag42gqjs23xvghtzf6t6yzssrtytnntc6ppc7xxuoneoad.onion/
Raddle: http://lfbg75wjgi4nzdio.onion/
OnionTube: http://tubef7zilcjhme2g.onion/
Cave Tor: http://cavetord6bosm3sl.onion/
Dark Quora: http://quorambidnvcon7l.onion/
Bibliogram: http://rlp5gt4d7dtkok3yaogocbcvrs2tdligjrxipsamztjq4wwpxzjeuxqd.onion/
Invidious: http://kgg2m7yk5aybusll.onion/
The Permanent Booru: http://vsdfdtkr5mh6y33p.onion/
The Permanent Booru: http://owmvhpxyisu6fgd7r2fcswgavs7jly4znldaey33utadwmgbbp4pysad.onion/
-------------------------
Forums
-------------------------
Kiwi Farms: http://uquusqsaaad66cvub4473csdu4uu7ahxou3zqc35fpw5d4ificedzyqd.onion/
Torum: http://torum43tajnrxritn4iumy75giwb5yfw6cjq2czjikhtcac67tfif2yd.onion/
Onionland: http://onionlandbakyt3j.onion/
Darknet Avengers: http://avengersdutyk3xf.onion/
Hidden Answers: http://answerszuvs3gg2l64e6hmnryudl5zgrmwm3vh65hzszdghblddvfiqd.onion/
Envoy: http://envoys5appps3bin.onion/
Hermes: http://hermesibuzda3rtv.onion/
SuprBay: http://suprbayoubiexnmp.onion/
HM: http://wtj5psom5zufu4yo.onion/
AnonGTS: http://ocu3errhpxppmwpr.onion/
NZ Darknet Market: http://nz53a6eqr3jchq5g.onion/
The Hub: http://thehub7xbw4dc5r2.onion/
The Hub: http://thehubpkeu7x6ddq5tc4gali6ldsi4ly6bqlhsid7pztwhbirahu6vqd.onion/
The Hub: http://thehub5himseelprs44xzgfrb4obgujkqwy5tzbsh5yttebqhaau23yd.onion/
The Hub: http://thehubdpfbw54ujdgwdhvgsaicvtc5jz4ncthfcbriny2dzsimlifoqd.onion/
The Hub: http://thehube5dbng3dwww4fhbiihruloenvh66536cot3wrpc4hvhm2bdayd.onion/
The Hub: http://thehubeebh6z6pqdy4wmxdd6d45gmchjm3xe5sdppadna7m3qtmksmid.onion/
The Hub: http://thehuboy27kracz6sdql2r7c324vrs5aok2e33gorrikccaqhvzfcvad.onion/
Thunder's Place: http://thundersplv36ecb.onion/
-------------------------
Chat
-------------------------
Chat With Strangers: http://tetatl6umgbmtv27.onion/
Ableonion: http://notbumpz34bgbz4yfdigxvd6vzwtxc3zpt5imukgl6bvip2nikdmdaad.onion/
Hidden Chat: http://hiddendsw3qqh2if.onion/
EvilChat: http://evilchatxp24s7vb.onion/
Daniel's Chat: http://danschat356lctri3zavzh6fbxg2a7lo6z3etgkctzzpspewu7zdsaqd.onion/
BlackHat Chat: http://blkh4ylofapg42tj6ht565klld5i42dhjtysvsnnswte4xt4uvnfj5qd.onion/
Enforcer's Chat: http://pkgdherwvzn5qjzb6ypygmsyl2xrkbvznisjv675bly4dcbjznstdxid.onion/chat.php
Torichat: http://hss33mlbykbsxmug.onion:1488/
-------------------------
Chans
-------------------------
9chan: http://ninechnjd5aaxfbcsszlbr4inp7qjsficep4hiffh4jbzovpt2ok3cad.onion/
16chan: http://47s7obvdgdpj6fkc.onion/
EndChan: http://s6424n4x4bsmqs27.onion/
EndChan: http://enxx3byspwsdo446jujc52ucy2pf5urdbhqw3kbsfhlfjwmbpj5smdad.onion/
Ni-Chan: http://nichank62kpkrxvg.onion/
Ni-Chan: http://bp4hx2biztixaw5o.onion/
TorChan: http://zw3crggtadila2sg.onion/imageboard/
BalkanChan: http://26yukmkrhmhfg6alc56oexe7bcrokv4rilwpfwgh2u6bsbkddu55h4ad.onion/
JulayWorld: http://bhlnasxdkbaoxf4gtpbhavref7l2j3bwooes77hqcacxztkindztzrad.onion/
Waifuist: http://waifuwyuu7fqlf2haidb3izomxyhxme2mk4kdlibdiwgmzelt2iorxyd.onion/
LoliFox: http://wn3ghyuon5eaqyxi7yauald3d53gsxrkanzpu2qdyc54vobif2qutsid.onion/
Smug Loli: http://bhm5koavobq353j54qichcvzr6uhtri6x4bjjy4xkybgvxkzuslzcqid.onion/
-------------------------
IRC
-------------------------
OnionCommunity: http://communpfaucdnxei.onion/
OnionCommunity: http://chatobbpwe37uhar.onion/
Infantile: http://infantilefb6ovh4.onion/
-------------------------
Blogs
-------------------------
The Asocial: http://asocialfz7ncw5ui.onion/
Go Beyond: http://potatoynwcg34xyodol6p6hvi5e4xelxdeowsl5t2daxywepub32y7yd.onion/
You Broke The Internet: http://cheettyiapsyciew.onion/
Superkuh: http://superkuhbitj6tul.onion/
Onion Soup: http://soupksx6vqh3ydda.onion/
Chown: http://y3jzukyhsjymr4dp.onion/
Bluish Coder: http://mh7mkfvezts5j6yu.onion/
Cyrus's Blog: http://cyruservvvklto2l.onion/
Lion Meadow: http://liongrasr5uy5roo.onion/
Untitled Blog: http://n3ip6btaskerrbyg.onion/
MagusNet: http://tghtnwsywvvhromy.onion/
MagusNet: http://wx3wmh767azjjl4v.onion/
MagusNet: http://q2uftrjiuegl4ped.onion/
MagusNet: http://3mrdrr2gas45q6hp.onion/
-------------------------
Political Movements
-------------------------
Crypto Party: http://crypty22ijtotell.onion/
Crypto Party: http://cpartywvpihlabsy.onion/
Code Green: http://pyl7a4ccwgpxm6rd.onion/
Anarplex: http://anarplexqtbch57j.onion/
-------------------------
Conventions
-------------------------
InfoCon: http://w27irt6ldaydjoacyovepuzlethuoypazhhbot6tljuywy52emetn7qd.onion/
DeepSec: http://kwv7z64xyiva22fw.onion/
[==================================================]
N e w s
[==================================================]
The New York Times: http://nytimes3xbfgragh.onion/
BBC: http://bbcnewsv2vjtpsuy.onion/
BBC: http://s5rhoqqosmcispfb.onion/
ProPublica: http://p53lf57qovyuvwsc6xnrppyply3vtqm7l6pcobkmyqsiofyeznfu5uqd.onion/
BuzzFeed: http://bfnews3u2ox4m4ty.onion/
Mascherari Press: http://7tm2lzezyjwtpn2s.onion/
The Onion Web: http://onionwsoiu53xre32jwve7euacadvhprq2jytfttb55hrbo3execodad.onion/
Tape: http://tapeucwutvne7l5o.onion/
Darknet Live: http://darkzzx4avcsuofgfez5zq75cqc4mprjvfqywo45dfcaxrwqg6qrlfid.onion/
Flashlight: http://kxojy6ygju4h6lwn.onion/
Tor Magazine: http://t4tyrhxbxb2c2wra.onion/
Dark Web Link: http://dwlonion3o3pjqsl.onion/
The Dark Web Journal: http://tdwj7xgc5s2k6bmv.onion/
DNMLive: http://dnmliveahwgu7nvu.onion/
Dimension X: http://uo57sqpw4h3g3y3w2j346vxidgcv2iwfaxeyt3ww3tzkj2i5k7a5tpqd.onion/
Deep Web Feed: http://deepfeedingbliob.onion/
Onion News: http://newsiiwanaduqpre.onion/
Onion News: http://t4is3dhdc2jd4yhw.onion/
Soylent News: http://7rmath4ro2of2a42.onion/
S.Dock: http://yip2pklv6nivtzrq.onion/
[==================================================]
M i s c e l l a n e o u s
[==================================================]
-------------------------
Books
-------------------------
Imperial Library Of Trantor: http://xfmro77i3lixucja.onion/
Calibre Web: https://5h5ps743nnqsjq4l.onion/
Dark Books Library: http://hoagnooxlabpxd4ieqtn6pblk4324evslb24gmjktjbhzdmxst5trrad.onion/
Thomas Paine - Common Sense: http://duskgytldkxiuqc6.onion/comsense.html
The Federalist Papers: http://duskgytldkxiuqc6.onion/fedpapers/federa00.htm
-------------------------
Hacking
-------------------------
0Day Today: http://mvfjfugdwgc5uwho.onion/
HackTown: http://hacktownpagdenbb.onion/
Hack Tools: http://5yh4qmygx72tl65u.onion/
Hackerplace: http://hackerw6dcplg3ej.onion/
Bugged Planet: http://6sgjmi53igmg7fm7.onion/
VertexNet: http://mb4z3nlfyrcjnoqf.onion/
Hacking Guides: http://3pr5shyfw6exyc2kboea5xi5guj5mf5enwy5pgcfwoycolawuw6lhzid.onion/
Hacking Library: http://putahwusckamzvezhq3a4y3ewdhln6qfimlmx3gdbuhxvia4uloyvkad.onion/
-------------------------
Games
-------------------------
Euro Buk Simulator 2014: http://hg5km4y37lgir6r3.onion/
Matrix: http://matrix4ozv2gicar.onion/
-------------------------
Uncategorized
-------------------------
IIT Underground: http://62gs2n5ydnyffzfy.onion/
Beneath Virginia Tech: http://74ypjqjwf6oejmax.onion/
Psychonaut Wiki: http://psychonaut3z5aoz.onion/
PopFur: http://vj5pbopejlhcbz4n.onion/
How Will You Tell The World: http://rjzdqt4z3z3xo73h.onion/
[==================================================]
O t h e r O n i o n L i n k L i s t s
[==================================================]
List Of Onion Services: https://www.wikiwand.com/en/List_of_Tor_onion_services
Dark Web Secrets: https://secretsdeepweb.blogspot.com/
Best Dark Web Links 2020: https://bestdeepweb.com/deepweb-links-2020
Dark Web Links: https://deep-weblinks.com/deep-web-links/
Huge Collection Of Dark Web Links: https://haxf4rall.com/2017/11/12/deep-web-onion-links/
100 Working Dark Web Links: https://haxf4rall.com/2016/11/06/100-working-deep-web-onion-and-dark-web-links/
Dark Web Sites: https://web.archive.org/web/20161120201931/http://deepwebsites.net/
100 Working Dark Web Links: https://cybarrior.com/blog/2019/04/30/100-working-deep-web-onion-and-dark-web-links/
Compilation Of Onion Links (2015): https://pastebin.com/JfmSVf6e
3000 Onion Links: https://pastebin.com/L2HiViHf
Deep Web Links: https://deepweblinks.org/
I only provide information about what exists on the dark web as informative/educational purposes only. I have listed many onion links that are still up and running with a legitimate purpose.
Few onion links might be a scam, phishing, or contain illegal activities like drugs, weapons, illegal markets, fraudulent services, stolen data, etc., and many more. These activities may involve you at risk in danger by unknowingly. Kindly be aware of such activities which may take you and put yourself under risk.
I am not involved in any practices like described above and if you wish to surf the dark web you are the only solely responsible for your activity. Any misleads or dealing with illegal markets accessed by you will end up in a bad situation.
Know your risk before opening any onion links, if you the link is legal then you can enjoy surfing and know more about the dark web or else learn about dark web before accessing it. Use a good VPN to stay away from danger and your risk factor will be very less.
Just download the Tor Browser from its original page; https://www.torproject.org
This product is made independently of Tor® anonymity software and makes no warranties about quality, suitability, or anything else from the Tor Project.
http://onnii6niq53gv3rvjpi7z5axkasurk2x5w5lwliep4qyeb2azagxn4qd.onion/
http://onnimu5istptashw65gzzwu7lmqnelbffdcmrufm52h327he6te4ysqd.onion/
http://onnin36kbcwchiacwjhl57m7wylygmulmlazpfg3qupucgjgq7blldid.onion/
Provider | Tor Link |
---|---|
Dark Net Mail eXchange | dnmxjaitaiafwmss2lx7tbs5bv66l7vjdmb5mtb3yqpxqhk3it5zivad.onion |
ProtonMail | protonmailrmez3lotccipshtkleegetolb73fuirgj7r4o4vfu7ozyd.onion |
TorMail | tormailpout6wplxlrkkhjj2ra7bmqaij5iptdmhhnnep3r6f27m2yid.onion |
TorBox | torbox36ijlcevujx7mjb4oiusvwgvmue7jfn2cvutwa6kl6to3uyqad.onion |
Site | Dark web link |
---|---|
Blockchair block explorer | blkchairbknpn73cfjhevhla7rkp4ed5gg2knctvv7it4lioy22defid.onion |
Wasabi wallet | wasabiukrxmkdgve5kynjztuovbg43uxcbcxn6y2okcrsg7gb6jdmbad.onion |
Mempool.space | mempoolhqx4isw62xs7abwphsq7ldayuidyx2v2oethdhhj6mlo2r6ad.onion |
Monero Official | monerotoruzizulg5ttgat2emf4d6fbmiea25detrmmy7erypseyteyd.onion |
FREE DATA
Data.gov Home - Data.gov data.gov data.gov
Schema.org - Schema.org
Schema.org is a set of extensible schemas that enables webmasters to embed structured data on their web pages for use by search engines and other applications. schema.org schema.org
CIA’s World Factbook is your authoritative source on the world’s countries, territories, oceans, and more. Explore world facts at your fingertips. www.cia.gov www.cia.gov
data.gov data.gov
World Bank Open Data Free and open access to global development data data.worldbank.org data.worldbank.org
DataHub - a complete solution for Open Data Platforms, Data Catalogs, Data Lakes and Data Management. DataHub is an open source, mature, fully-featured and production ready. Trusted by governments, startups, nonprofits and the Fortune 500. datahub.io datahub.io
Everything about Open-Source Intelligence TTPs.
A collection of Android security-related resources.
A curated list of resources for learning about application security. Contains books, websites, blog posts, and self-assessment quizzes.
Maintained by Paragon Initiative Enterprises with contributions from the application security and developer communities. We also have other community projects which might be useful for tomorrow’s application security experts.
If you are an absolute beginner to the topic of software security, you may benefit from reading A Gentle Introduction to Application Security.
Released: February 25, 2014
Advice on cryptographically secure pseudo-random number generators.
Released: August 6, 2014
A post on Crackstation, a project by Defuse Security
Released: May 3, 2014
Mentions many ways to make /dev/urandom
fail on Linux/BSD.
Released: June 21, 2015
Running a business requires being cost-conscious and minimizing unnecessary spending. The benefits of ensuring in the security of your application are invisible to most companies, so often times they neglect to invest in secure software development as a cost-saving measure. What these companies don’t realize is the potential cost (both financial and to brand reputation) a preventable data compromise can incur.
The average data breach costs millions of dollars in damage.
Investing more time and personnel to develop secure software is, for most companies, worth it to minimize this unnecessary risk to their bottom line.
Released: March 25, 2015
A *must-read- for anyone looking to build their own cryptography features.
Released: September 27, 2011
Great introduction to Web Application Security; though slightly dated.
Released: March 15, 2010
Develops a sense of professional paranoia while presenting crypto design techniques.
Released: March 1, 2018
Securing DevOps explores how the techniques of DevOps and Security should be applied together to make cloud services safer. This introductory book reviews state of the art practices used in securing web applications and their infrastructure, and teaches you techniques to integrate security directly into your product.
Released: May 3, 2009
Released: November 30, 2006
Released: August 30, 1996
Released: April 15, 2005
Released: May 1, 2008
Released: June 17, 2007
Released: March 3, 2009
Released: August 22, 2008
Released: June 25, 1998
Released: December 29, 2004
Released: December 13, 1989
Released: August 3, 2009
Released: March 1, 2015
Released: April 14, 2008
Released: August 1, 2014
Released: September 17, 2016
The first part of a three part book series providing broad and in-depth coverage on what web developers and architects need to know in order to create robust, reliable, maintainable and secure software, networks and other, that are delivered continuously, on time, with no nasty surprises.
The second part of a three part book series providing broad and in-depth coverage on what web developers and architects need to know in order to create robust, reliable, maintainable and secure software, VPS, networks, cloud and web applications, that are delivered continuously, on time, with no nasty surprises.
A vulnerability research and exploit development class by Owen Redwood of Florida State University.
Be sure to check out the lectures!
Developed from the materials of NYU Poly’s old Penetration Testing and Vulnerability Analysis course, Hack Night is a sobering introduction to offensive security. A lot of complex technical content is covered very quickly as students are introduced to a wide variety of complex and immersive topics over thirteen weeks.
Learn about application security by attempting to hack this website.
Where hackers and security experts come to train.
Self-assessment quiz for web application security
Secure passwords in several languages/frameworks.
A list of security news sources.
Video courses on low-level x86 programming, hacking, and forensics.
Capture The Flag - Learn Assembly and Embedded Device Security
A series of programming exercises for teaching oneself cryptography by Matasano Security. The introduction by Maciej Ceglowski explains it well.
PentesterLab provides free Hands-On exercises and a bootcamp to get started.
An intentionally insecure Javascript Web Application.
How to go on the offence before online attackers do.
Purposly vulnerable to the OWASP Top 10 Node.JS web application, with tutorials, security regression testing with the OWASP Zap API, docker image. With several options to get up and running fast.
Bi-Weekly Appsec Tutorials
OWASP ServerlessGoat is a deliberately insecure realistic AWS Lambda serverless application, maintained by OWASP and created by PureSec. You can install WebGoat, learn about the vulnerabilities, how to exploit them, and how to remediate each issue. The project also includes documentation explaining the issues and how they should be remediated with best-practices.
Showcasing bad cryptography
The blog of NCC Group, formerly Matasano, iSEC Partners, and NGS Secure.
Learn about security and performance.
Released: July 30, 2018
Blog of cryptographic company that makes open-source libraries and tools, and describes practical data security approaches for applications and infrastructures.
The top ten most common and critical security vulnerabilities found in web applications.
The infamous suite of SSL and TLS tools.
Quickly and easily assess the security of your HTTP response headers.
A free CSP and HPKP reporting service.
Test and learn Clickjacking. Make clickjacking PoC, take screenshot and share link. You can test HTTPS, HTTP, intranet & internal sites.
FunctionShield is a 100% free AWS Lambda security and Google Cloud Functions security library that equips developers with the ability to easily enforce strict security controls on serverless runtimes.
Released: February 24, 2015
A community-maintained Wiki detailing secure coding standards for Android development.
Released: May 24, 2006
A community-maintained Wiki detailing secure coding standards for C programming.
Released: May 23, 2022
Provides guidelines for improving software security through secure coding. Covers common programming languages and libraries, and focuses on concrete recommendations.
Released: July 18, 2006
A community-maintained Wiki detailing secure coding standards for C++ programming.
Released: July 14, 2015
An introduction to developing secure applications targeting version 4.5 of the .NET Framework, specifically covering cryptography and security engineering topics.
Released: May 5, 2020
Repository with Clojure examples of OWASP top 10 vulnerabilities.
Released: August 3, 2017
A guide to managing sensitive data in memory.
Released: January 12, 2007
A community-maintained Wiki detailing secure coding standards for Java programming.
Released: April 2, 2014
Secure Java programming guidelines straight from Oracle.
Released: October 13, 2015
Covers a lot of useful information for developing secure Node.js applications.
Released: June 17, 2020
A curated list of resources to secure Electron.js-based applications.
Released: July 19, 2017
Hands-on and abundant with source code for a practical guide to Securing Node.js web applications.
Learn from the team that spearheaded the Node Security Project
We run many types of info-sec security training, covering Physical, People, VPS, Networs, Cloud, Web Applications. Most of the content is sourced from the book series Kim has been working on for several years. More info can be found here
Released: November 28, 2014
A gentle introduction to timing attacks in PHP applications
Released: April 21, 2015
Discusses password policies, password storage, “remember me” cookies, and account recovery.
Released: April 22, 2013
Padriac Brady’s advice on building software that isn’t vulnerable to XSS
Released: November 23, 2011
Though this article is a few years old, much of its advice is still relevant as we veer around the corner towards PHP 7.
Released: June 16, 2014
@timoh6 explains implementing data encryption in PHP
Released: May 26, 2014
*TL;DR- - don’t escape, use prepared statements instead!
Released: August 7, 2015
A human-readable overview of commonly misused cryptography terms and fundamental concepts, with example code in PHP.
If you’re confused about cryptography terms, start here.
Released: August 2, 2015
Discusses the importance of end-to-end network-layer encryption (HTTPS) as well as secure encryption for data at rest, then introduces the specific cryptography tools that developers should use for specific use cases, whether they use libsodium, Defuse Security’s secure PHP encryption library, or OpenSSL.
Released: December 12, 2017
This guide should serve as a complement to the e-book, PHP: The Right Way, with a strong emphasis on security and not general PHP programmer topics (e.g. code style).
*Securing PHP: Core Concepts- acts as a guide to some of the most common security terms and provides some examples of them in every day PHP.
You shouldn’t need a Ph.D in Applied Cryptography to build a secure web application. Enter libsodium, which allows developers to develop fast, secure, and reliable applications without needing to know what a stream cipher even is.
Symmetric-key encryption library for PHP applications. (*Recommended- over rolling your own!)
If you’re using PHP 5.3.7+ or 5.4, use this to hash passwords
Useful for generating random strings or numbers
A secure OAuth2 server implementation
PHP 7 offers a new set of CSPRNG functions: random_bytes()
and random_int()
. This is a community effort to expose the same API in PHP 5 projects (forward compatibility layer). Permissively MIT licensed.
A secure authentication and authorization library that implements Role-Based Access Controls and Paragon Initiative Enterprises’ recommendaitons for secure “remember me” checkboxes.
A portable public domain password hashing framework for use in PHP applications.
*websec.io- is dedicated to educating developers about security with topics relating to general security fundamentals, emerging technologies and PHP-specific information
The blog of our technology and security consulting firm based in Orlando, FL
A blog about PHP, Security, Performance and general web application development.
Pádraic Brady is a Zend Framework security expert
A weekly newsletter about PHP, security, and the community.
Released: January 10, 2011
A community-maintained Wiki detailing secure coding standards for Perl programming.
Lists standard library features that should be avoided, and references sections of other chapters that are Python-specific.
Black Hat Python by Justin Seitz from NoStarch Press is a great book for the offensive security minds
Violent Python shows you how to move from a theoretical understanding of offensive computing concepts to a practical implementation.
A curated list of Capture The Flag (CTF) frameworks, libraries, resources, softwares and tutorials. This list aims to help starters as well as seasoned CTF players to find everything related to CTFs at one place. It takes time to build up collection of tools used in CTF and remember them all. This repo helps to keep all these scattered tools at one place.
Tools used for creating CTF challenges
Tools used for creating Forensics challenges
Projects that can be used to host a CTF
Tools used to create stego challenges
Check solve section for steganography.
Tools used for creating Web challenges
JavaScript Obfustcators
Tools used for solving CTF challenges
Tools used for performing various kinds of attacks
Tools used for solving Crypto challenges
Tools used for various kind of bruteforcing (passwords etc.)
Tools used for solving Exploits challenges
execve('/bin/sh', NULL, NULL)
call.
gem install one_gadget
Tools used for solving Forensics challenges
apt-get install aircrack-ng
apt-get install audacity
apt-get install samdump2 bkhive
apt-get install foremost
apt-get install pngcheck
Registry Viewers
Tools used for solving Networking challenges
apt-get install wireshark
Tools used for solving Reversing challenges
JavaScript Deobfuscators
SWF Analyzers
Various kind of useful services available around the internet
Tools used for solving Steganography challenges
apt-get install pngtools
Tools used for solving Web challenges
pip install sqlmap
Where to discover about CTF
Penetration testing and security lab Operating Systems
Malware analysts and reverse-engineering
Collections of installer scripts, useful tools
Tutorials to learn how to play CTFs
Always online CTFs
Self-hosted CTFs
Various general websites about and on CTF
Various Wikis available for learning about CTFs
Collections of CTF write-ups
AI ⁕ Breaches & Leaks ⁕ Recon ⁕ Productivity ⁕ File Upload ⁕ Toolset ⁕ Top Search Engines ⁕ Whois ⁕ Source Codes ⁕ Domain / IP / DNS ⁕ Malware ⁕ Dataset ⁕ Geo ⁕ IoT ⁕ Darknet ⁕ Cryptocurrency ⁕ Username ⁕ Email ⁕ Phone ⁕ Social Media ⁕ Facebook ⁕ Twitter ⁕ Youtube ⁕ Instagram ⁕ Reddit ⁕ LinkedIn ⁕ Google ⁕ Discord ⁕ Twitch ⁕ Telegram ⁕ Snapchat ⁕ TikTok ⁕ Steam ⁕ Search Engine ⁕ News ⁕ Clubhouse ⁕ Bot ⁕ Analysis ⁕ Blog ⁕ Throwaway Contact ⁕ ID Generator ⁕ Emulator ⁕ Hash Recovery ⁕ Downloader ⁕ Privacy / Security ⁕ Secure Communication ⁕ Resources ⁕ Threat Intel ⁕ Identity Resolution ⁕ People ⁕ Google CSE ⁕ Radio ⁕ Open Directory ⁕ Maps ⁕ Data Dump ⁕ Informant ⁕ Public Record ⁕ Government ⁕ Image and Audio
Data Leak, scam, username, domain, social
AI tools/Site
Tools for Image/Audio/Video/Doc reconnaissance
custom made google search engine for perticular fields
#####URL’s
https://github.com/LinaYorda/OSINTko
https://github.com/cyberpunkOS/CyberPunkOS
Command line #osint toolkit for domain information gathering. Partly free. https://github.com/chiasmod0n/chiasmodon
https://github.com/s0md3v/roop
https://github.com/cipher387/linux-for-OSINT-21-day
https://github.com/cipher387/python-for-OSINT-21-days
https://github.com/Alfredredbird/alfred
https://github.com/iudicium/pryingdeep
https://github.com/AnonCatalyst/Ominis-Osint
https://piratemoo.gitbook.io/moo/moosint/osint
🔗https://github.com/osintambition/Social-Media-OSINT-Tools-Collection
https://github.com/shadawck/awesome-anti-forensic
https://github.com/dev-lu/osint_toolkit
Imago is a python tool that extract digital evidences from images recursively. This tool is useful throughout a digital forensic investigation. https://github.com/redaelli/imago-forensics
https://metaosint.github.io/table/
https://github.com/AvillaDaniel/AvillaForensics
Features
https://github.com/CScorza/OSINT-FORENSICS-MOBILE
https://github.com/CScorza/Analisi-Digital-Forense
https://github.com/CScorza/EstensioniChromeOSINT
https://github.com/OhShINT/ohshint.gitbook.io
https://github.com/cloudtracer/ThreatPinchLookup
https://github.com/MetaOSINT/MetaOSINT.github.io
This repository contains a curated list of open source intelligence tools and resources focused on geolocation and chronolocation. A bookmark version of the most recent iteration of the following recourses is also available. https://github.com/cartographia/geospatial-intelligence-library
https://github.com/C3n7ral051nt4g3ncy/Prot1ntelligence
https://github.com/C3n7ral051nt4g3ncy/OSINT_Inception-links
https://github.com/Bevigil/BeVigil-OSINT-CLI
https://github.com/C3n7ral051nt4g3ncy/cURL_for_OSINT
https://github.com/qeeqbox/social-analyzer
https://github.com/CScorza/DistroForensics
https://github.com/LinaYorda/OSINTtools
This toolkit aims to help forensicators perform different kinds of acquisitions on iOS devices https://github.com/jfarley248/MEAT
https://github.com/den4uk/andriller
https://github.com/m8sec/CrossLinked
https://github.com/kennbroorg/iKy
https://github.com/blacklanternsecurity/bbot
https://github.com/jfarley248/MEAT
https://github.com/QXJ6YW4/SimpleImager
https://github.com/SirCryptic/autoexif
https://github.com/thedfirofficer/sabonis
https://github.com/vadimkantorov/natudump
https://github.com/p1ngul1n0/blackbird
https://github.com/privtools/ransomposts
https://github.com/jordanwildon/Telepathy
https://github.com/MustafaAP/pinosint
https://github.com/narkopolo/fb_friend_list_scraper
https://github.com/mxrch/GHunt
https://github.com/Vault-Cyber-Security/osint
https://github.com/HarryLudemann/Ngoto
https://github.com/aydinnyunus/exifLooter
https://github.com/AzizKpln/Moriarty-Project
https://github.com/romz0mbie/OSINT-Lists
https://github.com/m3n0sd0n4ld/GooFuzz
https://github.com/HSNHK/Computer-forensics
https://github.com/smicallef/spiderfoot
Hayabusa is a sigma-based threat hunting and fast forensics timeline generator for Windows event logs written in Rust. : https://github.com/Yamato-Security/hayabusa
A curated list of awesome forensic analysis tools and resources. : https://github.com/patronuscode/awesome-forensics
MVT (Mobile Verification Toolkit) helps with conducting forensics of mobile devices in order to find signs of a potential compromise.: https://github.com/mvt-project/mvt
Configure FireFox with Security and Intelligance features for OSINT and Security Investigations. https://github.com/simeononsecurity/FireFox-Security-Researcher
Collaborative Incident Response platform. : https://github.com/dfir-iris/iris-web
https://www.offensiveosint.io/
A file system forensics analysis scanner and threat hunting tool. Scans file systems at the MFT and OS level and stores data in SQL, SQLite or CSV. Threats and data can be probed harnessing the power and syntax of SQL. : https://github.com/AdamWhiteHat/Judge-Jury-and-Executable
A list of free and open forensics analysis tools and other resources. : https://github.com/mesquidar/ForensicsTools
OSINT tool for finding Github repositories by extracting commit logs in real time from the Github event API. : https://github.com/x1sec/commit-stream
Quidam allows you to retrieve information thanks to the forgotten password function of some sites.: https://github.com/megadose/Quidam
https://github.com/megadose/quidam-maltego
OnionSearch is a script that scrapes urls on different .onion search engines. : https://github.com/megadose/OnionSearch
Easy-to-use live forensics toolbox for Linux endpoints. : https://github.com/intezer/linux-explorer
DaProfiler allows you to get emails, social medias, adresses, works and more on your target using web scraping and google dorking techniques, based in France Only. The particularity of this program is its ability to find your target’s e-mail adresses.: https://github.com/daprofiler/DaProfiler
So what is this all about? Yep, its an OSINT blog and a collection of OSINT resources and tools.: https://github.com/OhShINT/ohshint.gitbook.io
A repository with information related to differnet resources, tools and techniques related with Cloud OSINT. : https://github.com/7WaySecurity/cloud_osint
Major tools used for Digital Forensic Investigation, includes tools used for Image, Audio, Memory, Network and Disk Image data analysis. Helpful resource for CTF Challenges. : https://github.com/karthik997/Forensic_Toolkit
All the tools you need to make your own mind up from the Open Data Sets.: https://github.com/tg12/rapid7_OSINT
A tool for OSINT based threat hunting. : https://github.com/ninoseki/mihari
Tracee: Runtime Security and Forensics using eBPF. : https://github.com/aquasecurity/tracee
Trace Labs OSINT Linux Distribution based on Kali.: https://github.com/tracelabs/tlosint-live
OSINT Swiss Army Knife https://github.com/Nhoya/gOSINT
K𝚊𝚛𝚖𝚊 𝚟𝟸 is a Passive Open Source Intelligence. : (OSINT) Automated Reconnaissance (framework) https://github.com/Dheerajmadhukar/karma_v2
Secure ELF parsing/loading library for forensics reconstruction of malware, and robust reverse engineering tools. : https://github.com/elfmaster/libelfmaster
Toutatis is a tool that allows you to extract information from instagrams accounts such as e-mails, phone numbers and more. : https://github.com/megadose/toutatis
Octosuite :– Advanced Github OSINT Framework. : https://github.com/rly0nheart/octosuite
OSINT tool to evaluate the trustworthiness of a company. : https://github.com/ericalexanderorg/should-i-trust
Google Chrome forensic tool to process, analyze and visualize browsing artifacts. : https://github.com/ChmaraX/forensix
A free, open source, cross platform Intelligence gathering tool. : https://github.com/3nock/sub3suite
Powershell Script to aid Incidence Response and Live Forensics: https://github.com/Johnng007/Live-Forensicator
OSINT tool that allows you to find a person’s accounts and emails + breached emails: https://github.com/Greyjedix/Profil3r
Infoooze is an Open-source intelligence (OSINT) tool in NodeJs. It provides various modules that allow efficient searches. : https://github.com/7ORP3DO/infoooze
Oblivion is a tool focused in real time monitoring of new data leaks, notifying if the credentials of the user has been leak out. It’s possible too verify if any credential of user has been leak out before. : https://github.com/loseys/Oblivion/tree/0f5619ecba6a9b1ebc6dc6f4988ef6c542bf8ca3
🔍 A Complete Osint Tool : https://github.com/Lucksi/Mr.Holmes
A tool to search Aviation-related intelligence from public sources. : https://github.com/n0skill/AVOSINT
PoC OSINT Discord user and guild information harvester : https://github.com/V3ntus/darvester
An OSINT framework updated weekly, wich with you can search on precise targets, with a lot of features like person search, criminal search, or social media scanning with eamail/phone, and ip changer. : https://github.com/DR34M-M4K3R/GhostRecon
Collector is a tool for osint (open source intelligence). : https://github.com/galihap76/collector
Automate downloading archived deleted ets.: https://github.com/Mennaruuk/twayback
Detection of phishing domains and domain squatting. Supports permutations such as homograph attack, typosquatting and bitsquatting. : https://github.com/atenreiro/opensquat
Proof of concept for abusing Telegram’s “People Near Me” feature and tracking people’s location: https://github.com/jkctech/Telegram-Trilateration
Discover the location of nearby Telegram users 📡🌍 : https://github.com/tejado/telegram-nearby-map
Holehe allows you to check if the mail is used on different sites like twitter, instagram and will retrieve information on sites with the forgotten password function. https://github.com/megadose/holehe
https://github.com/megadose/holehe-maltego
OSINT Tool on Twitter and Instagram. : https://github.com/xadhrit/terra
ProtOSINT is a Python script that helps you investigate Protonmail accounts and ProtonVPN IP addresses https://github.com/pixelbubble/ProtOSINT
A toolkit for the post-mortem examination of Docker containers from forensic HDD copies https://github.com/docker-forensics-toolkit/toolkit
Dump the iOS Frequent Location binary plist files https://github.com/mac4n6/iOS-Frequent-Locations-Dumper
Whapa is a set of graphical forensic tools to analyze whatsapp from Android and soon iOS devices. All the tools have been written in Python 3.8 and have been tested on linux, windows and macOS systems. https://github.com/B16f00t/whapa
Tracking the trackers. Draw connections between scripts and domains on website. https://github.com/woj-ciech/kupa3
To extract the usernames attempted by a compromised host. This information is obtained from Abuse IP DB, reports’ comments. : https://github.com/west-wind/abuse-insights
Advanced Github OSINT Framework : https://github.com/rly0nheart/octosuite
Ultimate Internet of Things/Industrial Control Systems reconnaissance tool. https://github.com/woj-ciech/Kamerka-GUI
Track users across social media platform https://github.com/woj-ciech/SocialPath
A collection of several hundred online tools for OSINT https://github.com/cipher387/osint_stuff_tool_collection
Real-time HTTP Intrusion Detection. : https://github.com/kitabisa/teler
A Search Tool created to explore the FBI’s nj arrest file. Created For Hack Jersey 2.0 https://github.com/CarlaAstudillo/ArreStats
This virtual machine image is intended for open source offensive reconnaissance. The iso image of the kali linux NetInstall operating system is taken as a basis. Other required packages were installed manually. The image includes the following packages.: https://github.com/delikely/OSINT-JUMP
Infoga - Collection of information by e-mail https://github.com/m4ll0k/Infoga
Chief report of the FBI crime data explorer project https://github.com/18F/crime-data-explorer
Pdfmted (PDF Metadata Editor) is a set of tools designed to simplify work with pdf metadata on Linux. The utilities hosted in this repository are graphic interfaces for the wonderful exiftool of Phil Harvey. https://github.com/glutanimate/PDFMtEd
Extract Metadata from several audio containers https://github.com/tmont/audio-metadata
Information gathering tool - OSINT https://github.com/twelvesec/gasmask
Check if there is an e-mail address without sending any email. Use Telnet. https://github.com/amaurymartiny/check-if-email-exists
Provides Metadata extraction for IOS, Android and windows packages. https://github.com/Microsoft/app-metadata
An Open-Source Mobile Forensic Research Tool for android platform https://github.com/scorelab/ANDROPHSY
RdpCacheStitcher is a tool that supports forensic analysts in reconstructing useful images out of RDP cache bitmaps. - https://github.com/BSI-Bund/RdpCacheStitcher
Androidqf (Android Quick Forensics) helps quickly gathering forensic evidence from Android devices, in order to identify potential traces of compromise. - https://github.com/botherder/androidqf
IPED is an open source software that can be used to process and analyze digital evidence, often seized at crime scenes by law enforcement or in a corporate investigation by private examiners. - https://github.com/sepinf-inc/IPED
Automation and automation of digital forensic tools https://github.com/google/turbinia
Script that will extract all the passwords stored from your Google Chrome Database and will keep them in Chrome. Txt txt txt txt txt txt txt txt txt https://github.com/D4Vinci/Chrome-Extractor
Firefox decrypt is a tool to extract passwords from Mozilla Profiles (Firefox / Thunderbird / Seabird) https://github.com/unode/firefox_decrypt
Recover information from ip geolocation https://github.com/maldevel/IPGeoLocation
Cameradar hacks its way into RTSP videosurveillance cameras https://github.com/Ullaakut/cameradar
Powerforensics is a framework for forensic analysis of live records https://github.com/Invoke-IR/PowerForensics
The World’s simplest facial recognition api for python and the command line https://github.com/ageitgey/face_recognition
A curated list of amazingly awesome open source intelligence tools and resources. Open-source intelligence (OSINT) is intelligence collected from publicly available sources. In the intelligence community (IC), the term “open” refers to overt, publicly available sources (as opposed to covert or clandestine sources).
This list is to help all of those who are into Cyber Threat Intellience (CTI), threat hunting, or OSINT. From beginners to advanced.
Happy hacking and hunting 🧙♂️
Please read CONTRIBUTING if you wish to add tools or resources. Feel free to help 🥰 us grow this list with great resources.
This list was taken partially taken from i-inteligence’s OSINT Tools and Resources Handbook.
Thanks to our main contributors jivoi EK_ & spmedia
The main search engines used by users.
Localized search engines by country.
Lesser known and used search engines.
Search engines for specific information or topics.
Search engines that scrape multiple sites (Google, Yahoo, Bing, Goo, etc) at the same time and return results.
Find websites that are similar. Good for business competition research.
Search for data located on PDFs, Word documents, presentation slides, and more.
Search for all kind of files.
Find information that has been uploaded to Pastebin & alternative pastebin-type sites
Search by website source code
Tools to help discover more about a reddit user or subreddit.
Perform various OSINT on Russian social media site VKontakte.
=============== A curated list of social engineering resources. Those resources and tools are intended only for cybersecurity professional, penetration testers and educational use in a controlled environment.
PacktPub - Learn Social Engineering From Scratch by Zaid Sabih
Cybrary - Social Engineering and Manipulation - Free Course
Most of these books covers the basics of psychology useful for a social engineer.
Artful Persuasion – How to command attention, Change minds and influence People – Harry Mills
The Power of Habit: Why We Do What We Do, and How to Change - Charles Duhigg
Influence: The Psychology of Persuasion Paperback – Robert B., PhD Cialdini
Emotions Revealed: Understanding Faces and Feelings - Prof Paul Ekman
The Psychology of Interrogations and Confessions: A Handbook - Gisli H. Gudjonsson
Mindfucking: A Critique of Mental Manipulation - Colin McGinn
Social Engineering: The Art of Human Hacking - Chris Hadnagy
Unmasking the Social Engineer: The Human Element of Security - Christopher Hadnagy, Dr. Ekman Paul
Social Engineering in IT Security: Tools, Tactics, and Techniques, Sharon Conheady
The Art of Deception: Controlling the Human Element of Security, Kevin D. Mitnick, William L. Simon
The Social Engineer’s Playbook: A Practical Guide to Pretexting - Jeremiah Talamantes
Abstract Security - community od Discord that is focused around Physical Security and it has many members that are in the buissness of Physical Security.
The Social-Engineer portal - Everything you need to know as a social engineer is in this site. You will find podcasts, resources, framework, informations about next events, blog ecc…
Layer 8 conference and podcast - Conference and podcast that is focused on OSINT and Social Engineering.
Your contributions and suggestions are heartily♥ welcome. (✿◕‿◕). Please check the Contributing Guidelines for more details.
This work is licensed under a Creative Commons Attribution 4.0 International License
tlshelpers - A collection of shell scripts that help handling X.509 certificate and TLS issues
crtfinder - Fast tool to extract all subdomains from crt.sh website. Output will be up to sub.sub.sub.subdomain.com with standard and advanced search techniques
exiftool - ExifTool meta information reader/writer
earlybird - EarlyBird is a sensitive data detection tool capable of scanning source code repositories for clear text password violations, PII, outdated cryptography methods, key files and more.
DumpsterDiver - Tool to search secrets in various filetypes.
ChopChop - ChopChop is a CLI to help developers scanning endpoints and identifying exposition of sensitive services/files/folders.
gospider - Fast web spider written in Go
gobuster - Directory/File, DNS and VHost busting tool written in Go
jwsxploiter - A tool to test security of json web token
bfac - BFAC (Backup File Artifacts Checker): An automated tool that checks for backup artifacts that may disclose the web-application’s source code.
linkfinder - A python script that finds endpoints in JavaScript files
secretfinder - A python script for find sensitive data (apikeys, accesstoken,jwt,..) and search anything on javascript files
JSParser - A python 2.7 script using Tornado and JSBeautifier to parse relative URLs from JavaScript files. Useful for easily discovering AJAX requests when performing security research or bug bounty hunting.
bruteforce-lists - Some files for bruteforcing certain things.
CheatSheetSeries - The OWASP Cheat Sheet Series was created to provide a concise collection of high value information on specific application security topics.
Bug-Bounty-Wordlists - A repository that includes all the important wordlists used while bug hunting.
seclists - SecLists is the security tester’s companion. It’s a collection of multiple types of lists used during security assessments, collected in one place. List types include usernames, passwords, URLs, sensitive data patterns, fuzzing payloads, web shells, and many more.
Payload Box - Attack payloads only 📦
awesome-wordlists - A curated list wordlists for bruteforcing and fuzzing
Fuzzing-wordlist - fuzzing-wordlists
Web-Attack-Cheat-Sheet - Web Attack Cheat Sheet
payloadsallthethings - A list of useful payloads and bypass for Web Application Security and Pentest/CT
pentestmonkey - Taking the monkey work out of pentesting
STOK suggest
SecUtils - Random utilities from my security projects that might be useful to others
webshell - This is a webshell open source project
OneListForAll - Rockyou for web fuzzing
bruteforce-lists - Some files for bruteforcing certain things.
english-words - 📝 A text file containing 479k English words for all your dictionary/word-based projects e.g: auto-completion / autosuggestion
Tools and packages that are used for countering forensic activities, including encryption, steganography, and anything that modify attributes. This all includes tools to work with anything in general that makes changes to a system for the purposes of hiding information.
Curated list of awesome free (mostly open source) forensic analysis tools and resources.
more at Recommended Readings by Andrew Case
A collection of software, libraries, documents, books, resources and cool stuff about security.
docker pull kalilinux/kali-linux-docker
official Kali Linuxdocker pull owasp/zap2docker-stable
- official OWASP ZAPdocker pull wpscanteam/wpscan
- official WPScandocker pull remnux/metasploit
- docker-metasploitdocker pull citizenstig/dvwa
- Damn Vulnerable Web Application (DVWA)docker pull wpscanteam/vulnerablewordpress
- Vulnerable WordPress Installationdocker pull hmlio/vaas-cve-2014-6271
- Vulnerability as a service: Shellshockdocker pull hmlio/vaas-cve-2014-0160
- Vulnerability as a service: Heartbleeddocker pull opendns/security-ninjas
- Security Ninjasdocker pull diogomonica/docker-bench-security
- Docker Bench for Securitydocker pull ismisepaul/securityshepherd
- OWASP Security Shepherddocker pull danmx/docker-owasp-webgoat
- OWASP WebGoat Project docker imagedocker-compose build && docker-compose up
- OWASP NodeGoatdocker pull citizenstig/nowasp
- OWASP Mutillidae II Web Pen-Test Practice Applicationdocker pull bkimminich/juice-shop
- OWASP Juice Shopdocker pull jeroenwillemsen/wrongsecrets
- OWASP WrongSecretsdocker run -dit --name trd -p 8081:80 cylabs/cy-threat-response
- Cyware Threat Response Dockerdocker-compose -d up
- cicd-goatOther amazingly awesome lists:
A curated list of Hacking.For a list of free hacking books available for download, go here
docker pull kalilinux/kali-linux-docker
official Kali Linuxdocker pull owasp/zap2docker-stable
- official OWASP ZAPdocker pull wpscanteam/wpscan
- official WPScandocker pull metasploitframework/metasploit-framework
- Official Metasploitdocker pull citizenstig/dvwa
- Damn Vulnerable Web Application (DVWA)docker pull wpscanteam/vulnerablewordpress
- Vulnerable WordPress Installationdocker pull hmlio/vaas-cve-2014-6271
- Vulnerability as a service: Shellshockdocker pull hmlio/vaas-cve-2014-0160
- Vulnerability as a service: Heartbleeddocker pull opendns/security-ninjas
- Security Ninjasdocker pull noncetonic/archlinux-pentest-lxde
- Arch Linux Penetration Testerdocker pull diogomonica/docker-bench-security
- Docker Bench for Securitydocker pull ismisepaul/securityshepherd
- OWASP Security Shepherddocker pull danmx/docker-owasp-webgoat
- OWASP WebGoat Project docker imagedocker pull vulnerables/web-owasp-nodegoat
- OWASP NodeGoatdocker pull citizenstig/nowasp
- OWASP Mutillidae II Web Pen-Test Practice Applicationdocker pull bkimminich/juice-shop
- OWASP Juice Shopdocker pull phocean/msf
- Docker Metasploit.git
repositories available in publicA collection of most useful tools for social media osint.
Open source intelligence (OSINT) is the practice of collecting information from published or otherwise publicly available sources. OSINT operations, whether practiced by IT security pros, malicious hackers, or state-sanctioned intelligence operatives, use advanced techniques to search through the vast haystack of visible data to find the needles they’re looking for to achieve their goals—and learn information that many don’t realize is public.
Social Media Osint, also known as Social media intelligence allows one to collect intelligence gathering from social media sites like Facebook, Twitter, Instagram etc. This type of intelligence gathering is one element of OSINT (Open- Source Intelligence).
Facebook Recover Lookup
CrowdTangle Link Checker
Social Searcher
Lookup-id.com
Who posted this
Facebook Search
Facebook Graph Searcher
Facebook People Search
DumpItBlue
Export Comments
Facebook Applications
Social Analyzer
AnalyzeID
SOWsearch
Facebook Matrix
Who posted what
StalkFace
Search is Back
SnapInsta
IFTTT Integrations
Pickuki
IMGinn.io
Instaloader
SolG
Osintgram
Toutatis
instalooter
Exportgram
Profile Analyzer
Find Instagram User Id
Instahunt
InstaFreeView
InstaNavigation
RecruitEm
RocketReach
Phantom Buster
linkedprospect
ReverseContact
LinkedIn Search Engine
Free People Search Tool
IntelligenceX Linkedin
Linkedin Search Tool
LinkedInt
InSpy
CrossLinked
TweetDeck
FollowerWonk
Twitter Advanced Search
Wayback Tweets
memory.lol
SocialData API
Social Bearing
Tinfoleak
Network Tool
Foller
SimpleScraper OSINT
Deleted Tweet Finder
Twitter Search Tool
Twitter Video Downloader
Download Twitter Data
Twitonomy
tweeterid
BirdHunt
DownAlbum
Experts PHP: Pinterest Photo Downloader
Pingroupie
Tailwind
Pinterest Guest
SourcingLab: Pinterest
F5BOT
Karma Decay
Mostly Harmless
OSINT Combine: Reddit Post Analyzer
Phantom Buster
rdddeck
Readr for Reddit
Reddit Archive
Reddit Comment Search
Redditery
Reddit Hacks
Reddit List
reddtip
Reddit Search
Reddit Shell
Reddit Stream
Reddit Suite
Reddit User Analyser
redditvids
Redective
Reditr
Reeddit
ReSavr
smat
socid_extractor
Suggest me a subreddit
Subreddits
uforio
Universal Reddit Scraper (URS)
Vizit
Wisdom of Reddit
Awesome Lists
CoderStats
Commit-stream
Digital Privacy
Find Github User ID
GH Archive
Git-Awards
GitGot
gitGraber
git-hound
Github Dorks
Github Stars
Github Trending RSS
Github Username Search Engine
Github Username Search Engine
GitHut
addmeContacts
AddMeSnaps
ChatToday
Gebruikersnamen: Snapchat
GhostCodes
OSINT Combine: Snapchat MultiViewer
Snap Map
Snapchat-mapscraper
Snap Political Ads Library
Social Finder
SnapIntel
AddMeS
checkwa
WhatsApp Fake Chat
Whatsapp Monitor
whatsfoto
addmeContacts
ChatToday
Skypli
ChatBottle: Telegram
ChatToday
informer
_IntelligenceX: Telegram
Lyzem.com
Telegram Channels
Telegram Channels
Telegram Channels Search
Telegram Directory
Telegram Group
telegram-history-dump
Telegram-osint-lib
Telegram Scraper
Tgram.io
Tgstat.com
Tgstat RU
DiscordOSINT
Discord.name
Lookupguru
Discord History Tracker
Top.gg
Unofficial Discord Lookup
Disboard
OnlyFinder
OnlySearch
Sotugas
Fansmetrics
Findr.fans
Hubite
Similarfans
Fansearch
Fulldp
Mavekite
TikTok hashtag analysis toolset
TikTok Video Downloader
Exolyt
A curated list of tools and resources for security incident response, aimed to help security analysts and DFIR teams.
Digital Forensics and Incident Response (DFIR) teams are groups of people in an organization responsible for managing the response to a security incident, including gathering evidence of the incident, remediating its effects, and implementing controls to prevent the incident from recurring in the future.
dd
, E01, .vmdk
, etc) and output nine reports.This repository contains tools and links that can be used during OSINT in Pentest or Red Team. Currently, there are numerous awesome lists with tons of tools, but Offensive Security specialists often don’t need such an extensive selection. This motivated the creation of this list. These tools cover almost all the needs of Offensive Security specialists and will help you get the job done efficiently.
If the tool performs multiple functions, for example collecting subdomains and URLs, it will be listed in two places.
Welcome! If you find that any of your favourite offensive tools is not on the list, you can suggest adding it.
Search Engines for Investigation Domains/IP Addresses.
Tools that help you collect email addresses. Usually the search requires the domain of the company.
Tools for finding mentions in code. Useful to search for company/company mentions to find passwords/secrets/confidential information.
Tools for automatic search of subdomains. Most of them require API keys to work correctly.
Only sites/tools whose search is not automated by the tools above are listed here.
Tools for passive collection and analysis URLs
An undiscovered area, the author is too dumb for that. Will gradually expand.
Threat Intelligence tools containing extensive company information, subdomains, DNS information, URLs and much more.
IP/Domain network analysis tools.
Tools for viewing the DNS history of a domain.
Tools allowing you to search for and download files located on public FTP servers.
Tools for automated passive IP address/subnet scanning.
Tools that help in passive/semi-passive analysis of Microsoft Exchange.
Tools for investigating Telegram chats.
Tools for Google Dorks.
Nickname search tools.
Sometimes situations happen that require analysing an employee’s phone number to get more information.
Tools for searching, gathering information from cloud.
Links to guide, methodologies and any information that would be useful.
Welcome to the OSINT (Open Source Intelligence) Resources repository, organized by country. Here you’ll find a collection of links to various OSINT tools, websites, and projects that are specific to different countries. Feel free to contribute by adding more resources through pull requests!
Check the - Resources containing multi-country links
50+ countries
80+ countries
80+ countries
70+ countries
If you have more OSINT resources to add, feel free to fork this repository and submit a pull request. Please ensure that the resources you’re adding are relevant and specific to the country they are listed under.
A curated list of honeypots, plus related components and much more, divided into categories such as Web, services, and others, with a focus on free and open source projects.
Database Honeypots
Web honeypots
Service Honeypots
Distributed Honeypots
Anti-honeypot stuff
ICS/SCADA honeypots
Other/random
Botnet C2 tools
IPv6 attack detection tool
Dynamic code instrumentation toolkit
Tool to convert website to server honeypots
Malware collector
Distributed sensor deployment
Network Analysis Tool
Log anonymizer
Low interaction honeypot (router back door)
honeynet farm traffic redirector
HTTPS Proxy
System instrumentation
Honeypot for USB-spreading malware
Data Collection
Passive network audit framework parser
VM monitoring and tools
Binary debugger
Mobile Analysis Tool
Low interaction honeypot
Honeynet data fusion
Server
IDS signature generation
Lookup service for AS-numbers and prefixes
Data Collection / Data Sharing
Central management tool
Network connection analyzer
Honeypot deployment
Honeypot extensions to Wireshark
Client
Honeypot
PDF document inspector
Hybrid low/high interaction honeypot
SSH Honeypots
Distributed sensor project
A pcap analyzer
Network traffic redirector
Honeypot Distribution with mixed content
Honeypot sensor
File carving
Behavioral analysis tool for win32
Live CD
Spamtrap
Commercial honeynet
Server (Bluetooth)
Dynamic analysis of Android apps
Dockerized Low Interaction packaging
Network analysis
SIP Server
SIP
IOT Honeypot
Honeytokens
Honeyd plugin
Honeyd viewer
Honeyd to MySQL connector
A script to visualize statistics from honeyd
Honeyd stats
Sandbox
Sandbox-as-a-Service
Front Ends
Visualization
Deployment
Research Papers
Section | Link |
---|---|
Maps, Geolocation and Transport | Explore |
Social Media | Explore |
Domain/IP/Links | Explore |
Image Search and Identification | Explore |
Cryptocurrencies | Explore |
Messengers | Explore |
Code | Explore |
Search engines | Explore |
IOT | Explore |
Archives | Explore |
Passwords | Explore |
Emails | Explore |
Nicknames | Explore |
Link | Description |
---|---|
Apps.skylens.io | Posts with geotags from five social networks at once on one map (Twitter, YouTube, Instagram, Flickr, Vkontakte) |
photo-map.ru | search geotagged photos from VK.com |
Snapchat map | |
YouTube Geofind | view YouTube geottaged video on map |
Flickr Photo Map | |
Flickr Common Map | displays only Flickr photos distributed under a Creative Commons license (250 of the latest for each location) |
I know where your cat lives | geottaged photo from Instagram with #cat hashtag |
Trendsmap.com | Explore most popular #Twitter trends, hashtags and users on the worldmap |
Pastvu.com | View historical photos taken at a particular location on a map. |
BirdHunt | A very simple tool that allows you to select a geolocation/radius and get a list of recent tweets made in that place. |
WikiShootMe | Worldwide map of geotagged Wikipedia Creative Commons Images. To display more information, log in with your Media Wiki account. |
The Painted Planet | Click on a point on the map to get a list of landscapes by famous artists depicting the area. |
COPERNIX | Worldwide map of geolocated Wikipedia articles. It’s possible to enter the name of a locality to see articles about local streets or attractions. |
WikiNearby | Enter geographic coordinates, language, and get a list of Wikipedia articles about streets, towns, stations and other notable places nearby. |
Huntel.io | get a list of links to Facebook/Instagram locations linked to geographic coordinates |
Link | Description |
---|---|
Map View NGMDB | map for exploring some geologic maps and articles from the NGMDB (National Geologic Map Database). |
WAQI | World’s Air Pollution: Real-time Air Quality Index map |
GlobalFishingMap | click on a point on the map and get the data on the current fishing effort at that location. |
ncei.noaa.gov | Natural Hazards Viewer (worldwide) |
Lightingmaps | lightning strikes in real time and also data on thunderstorms that ended months or years ago |
Light Pollution World Map | showing the degree of light pollution in different countries. It’s possible to see the data over time (since 2013) |
Global Wetlands Map | Interactive map of open waters, mangroves, swamps, fens, riverines, floodswamps, marshs, wet meadows and floodplains (unfortunately, there are not all countries in the world) |
Fire MAP NASA | online map of fire hotspots around the world (data from VIIRS and MODIS satellites, last 24 hours) |
Ocearch Shark Tracker | Click on a shark on the world map and find out its name, size and travel log. |
Surging Seas: Risk Zone Map | Map of points where there is a risk of significant sea level rise in the event of melting glaciers. |
USA Fishermap | when you click on a freshwater body of water, its detailed map opens, on which the depth at different points is marked |
Mindat.org | mineral maps for different countries |
Ventusky.com | collection of weather map (wind, rain, temperature, air pressure, humidity, waves etc) |
Wunderground | weather history data |
Rain Alarm | shows where it is raining on the map. You can enable notification of approaching rain (in the browser and in the mobile app) |
Cyclocane | click on the hurricane on the map and get detailed information about it |
MeteoBlue | Weather stats data |
Zoom.earth | Worldwide map of rains, storms, fires, heats, winds and others natural phenomenas |
NGDC Bathymetry map | worldwide detailed interactive bathymetry map |
Soar.earth | big collection satellite, drone and ecological maps |
Geodesics on the Earth | finding the shortest path between two points |
Google Earth | 3D representation of Earth based primarily on satellite imagery |
Everymountainintheworld | Map of the world showing the mountains (with absolute and relative altitude and links to Peakbagger, Listsofjohn and Caltopo). |
Rivermap | Online map with the most detailed information on Europe’s rivers (mostly central for the time being, but the data is being updated): direction and speed, water temperature, depth, slope angle, etc. |
Global Biodiversity Information Facility | Enter the name of an animal, bird or plant to see a map of where it has been spotted. |
Natural Hazards Map (worldwide) | Enter location and assess the risk of flooding, earthquakes and hail in this place on the map. |
River Runner Global | Click on any point on the map and trace the path that a drop of rainwater takes from current location to the world’s oceans. |
Macrostrat’s geologic map system integrates over 290 bedrock geologic maps from around the world into a single, multiscale database (c). | Macrostrat’s geologic map system integrates over 290 bedrock geologic maps from around the world into a single, multiscale database (c). |
Global Flood Database (and interactive map) | Detailed statistics on floods over the last 15 years (worldwide): precipitation levels, flooded area, number of people affected, dates, duration in days, etc. |
Gaisma | A site for those who verify the location of a photo by the position of the sun. It is very much inferior in functionality to http://timeanddate.com, but its interface is much simpler. |
Link | Description |
---|---|
Skyvector | tool is designed for planning private flights. And you can find an incredible amount of data about the current situation in the sky on it |
Flight Connections | click on the airport on the map to see the cities from which it’s possible fly direct |
World Aviation Accident Database 1962-2007 | |
World Aviation Accident Database 2008-2021 | |
Rzjets.net | user updated online database (census) of civilian jet and turbojet aircraft |
Globe.adsbexchange.com | tracking flights on a map |
Transtats.bts.gov | flight schedules and data on the actual departure/arrival times of flights in the U.S. for more than 30 years (!)) |
Legrooms for Google Flights | An extension that displays the size of the legroom between the seats next to the flight information. |
Flight Status Info | - get a list of airports by city name; - view the flight schedule of a particular airport; - view the flight schedule of a particular airline; - getting detailed information about a flight and more |
Link | Description |
---|---|
Track Trace | tracking a shipping container by number |
Container Tracking | tracking a shipping container by number |
Searates container tracking | tracking a shipping container by number |
CMA Voyage Finder | search for voyage details by voyage number or ship name |
The Shipping Database | comprehensive archive of the world ships. There is even data for 1820!!!!!!! |
Submarinecablemap.com | submarine communications cables map |
Submarine Vessels Tracking Map | |
Ports.com | online calculation of travel time between two ports (with optimal path). It’s possible to select the speed from 5 to 40 knots. Shows a list of the seas through which it passes. |
Live Cruise Ship Tracker | Large catalogue of cruise ship research materials: - map with trackers; - timetables; - webcams on decks and in ports; - elaborate thematic news aggregator |
Link | Description |
---|---|
Amtrak Status Maps Archive Database | find out the train schedule for a station on a particular day that passed many years ago (since 2008) |
Europe station maps floor plan | |
Rasp.yandex.ru/map/trains | Live map of trains for Russia, Belarus, Ukraine, Kazahstan and Abhazia |
Chronotrains | A terrific weekend travel planning service for Europeans. It shows how far you can go from a certain station in 5 hours by train. |
Direkht Ban Guru | Enter the name of the station to see what cities you can get to by train without changing (+ travel time for each city). |
Live Train Tracker | A world map showing real-time train traffic (with route point’s exact geographic coordinates) and schedules on the roads of Europe, North and South America and Australia. |
Railcabrides | Click on a point on the railway on the world map (railways are marked in orange or red) to see a list of rail cab videos from that location. With this service you can see many places where Google Street View has not yet reached! |
ZugFinder | Detailed information on trains, stations and real-time train traffic for European countries |
Link | Description |
---|---|
Ride With GPS | |
Wandermap | hiking routes world map |
Runmap | running routes world map |
Bikemap | biking route world map |
Link | Description |
---|---|
Global Terriorism Database | Info about more than 200,000 terrorist incidents from 1970 to 2020 (worldwide): - dozens of advanced search options; - statistical data for each group of incidents; - many details on each incident, with sources; |
Freedomhouse.org | map of the world that shows the scores of different countries on the following indicators (on a scale of 1 to 100) |
Crimemapping.com | pick a state, a police agency, and what crimes and where were committed in the territory under its control in the last 24 hours, a week, or a month. |
Citizen.com | live map of incidents (mainly shooting) that happened in the last hours in major U.S. cities |
MARITIME AWARENESS PROJECT | detailed map of maritime borders of states, economic zones with statistical data on ports and many other objects |
Monitor Tracking Civic Space Worldwide Map | Civicus (@CIVICUSalliance) |
Hungermap | Worldwide Hunger Map |
Native-land.ca | click on the point on the map and find out: - what nation this area used to belong to; - what language was once spoken there; - a historical event that resulted in a nation losing their territory. |
RiskMap | |
Liveuamap | |
Crisisgroup | |
Hate Map | |
emmeline.carto.com | |
Global Conflict Tracker | |
Acled data crisis map | |
Frontex Migratory Map | click on a country or region to see how many illegal border crossings have been reported there in the last six months. |
Safe Airspace | (Conflict Zone & Risk Database) worldwide map showing the countries where flying over may be dangerous; detailed history of incidents and official warnings for each country |
Worldwide Detention Centres Map | This service will help in investigations related to illegal emigration, human trafficking, missing refugees and tourists. |
Link | Description |
---|---|
Taste Atlas | Worldwide online map of national cuisine. There are thousands of dishes typical of countries or regions as a whole, as well as small towns. |
Link | Description |
---|---|
Wheelmap.org | map shows public places that are accessible and partially accessible to #wheelchair users |
Pedestriansfirst | Evaluate the pedestrian friendliness of streets in different cities. There is a lot of detailed data that will be useful both for choosing a place to live and for a variety of research |
World Population Density Map | Very detailed data. It’s possible to look at the density not only by country and city, but also by individual metropolitan areas, towns, and villages |
Emporis Buildings Map | world map showing notable buildings. For each object you can find out the height, number of floors, type, and purpose |
Osmbuildings.org | world map showing notable buildings. For each object you can find out the height, type, and purpose. |
Find Food Support | find places where you can get free food by address (USA) |
Aqicn | Air pollution gauges on the map |
Average Gamma Dose Rate Map | Shows measurements of environmental radioactivity in the form of gamma dose rate for the last 24 hours. These measurements originate from some 5500 stations in 39 countries |
OpenIndoor | A world map where you can see how different buildings look from the inside (number of floors, location of stairways, rooms, doors, etc.). The database of the service is not very large yet, but the project is constantly being developed. |
Poweroutage | Map with real-time power outage statistics by country and region. |
Open Benches | Worldwide map of 22,756 memorial benches (added by users). |
Sondehub | Worldwide map of radiosondes with detailed info (altitude, coordinates, frequency, manufacturer, sonde-type and much more) |
The Meddin Bike-sharing World Map | 8 million+ bikes in one map. There is information about rental stations that have recently closed or suspended their activities. |
Rally Maps | A worldwide map showing thousands of race (regular and one-off) locations. It’s possinle to find names of winners, routes, dates and other detailed information (historical data from the 1970s is available). |
SKYDB | Worldwide database of skyscrapers and tall buildings. |
Link | Description |
---|---|
Surveillance under Surveillance | World map of surveillance camera locations (mostly Europe and neighbor countries). For some cameras detailed information is given: geo coordinates, type, mount, timestamp etc |
Insecam.org | |
Earthcam | |
Camstreamer | |
Webcamtaxi | |
Skyline Webcams | |
Worldcam.eu | |
Worldcams TV | |
Geocam | |
Live beaches | Beaches webcam only |
Opentopia | |
MangolinkWorld | |
FoxMonitor | |
WEBCAM CSE | Google Custom Search Engine for search in 10 online street webcam catalogs |
Link | Description |
---|---|
Calculator IPVM | A tool that shows how the image from an outdoor camera it will look (based on data from Google Street View). You can specify camera parameters or select a model from a list (9188 cameras). |
Osmaps Radius | drawing circles with a certain radius on the map |
MeasureTool-GoogleMaps-V3 | Measurement tool for #GoogleMaps. |
ACSDG | tool allows you to quickly mark a group of points on the map and then export their geographic coordinates to CSV. |
MeasureMapOnline | tool for drawing rectangles, circles and complex polygons on a world map to measure their area and perimeter |
Map Fight | compare size of two countries |
Presto Map lead extractor | Converts information about labels on Google Maps to CSV or XLSX |
Gmaps Extractor | Extract data from placemarks |
GPS Visualizer | show gpx and tcx files on map |
Map Checking | tool for measuring the number of people in a crowd of different area and density. |
OSM Finder | A tool for automate work with Overpass Turbo. Upload a photo, mark a line on the map roads, railroads, power lines and get a ready-made query to find sections of the map corresponding to the photo. |
Mapnificent | Choose a city on the world map, then select an address on the map and see what places you can get to by public transport in a certain time interval (range from 1 to 90 minutes) |
Cesium ion | scalable and secure platform for 3D geospatial data. Upload your content and Cesium ion will optimize it as 3D Tiles, host it in the cloud, and stream it to any device |
OpenSwitchMapsWeb | One of the most powerful map switches I’ve ever seen. It allows you to see data for the same location in 160+ different services (some of them in Japanese). |
OSM Smart Menu | Google Chrome extension to switch between dozens of different types of online maps (based on #OpenStreetMap and NOT only) |
Calcmaps | Simple online map tools: Calculate area (triangles, quadrilaterals and complex polygons), Calculate distance (for complex routes), Measure radius, Calculate elevation |
Scribble maps | Partly free online tool for creating infographics (images or pdf) based on maps. |
Gdal3.js.org | One of the main problems of using geospatial data in investigations is the large number of applications for working with it, which save the result in different formats. This multifunctional online geodata converter will help to solve it. |
Google Maps Timeline Exporter | If your Google account has once enabled collecting data about your location (link for checking https://timeline.google.com/maps/timeline), this extension will help you analyze your movement data in depth, and export it to CSV. |
Overpass API | This simple online tool shows Open Street Map changes over a certain date range. |
localfocus.nl/geokit | geographic toolkit for investigative journalists |
Google Maps Scraper | Enter search terms (ex “Boston museum”) and scrape adresses, phone, websites and other place info from Google Maps. |
FELT | FREE online tool for creating map-based visualizations: - put labels with names and descriptions - draw lines and routes - choose from hundreds of backgrounds - download your work as PDF, image, GeoJSON or share link to online version |
Bellingcat OSM Search | A tool for locating photos and satellite images: Specify the objects you see and the distance between them (ex: a 10-story building 80 meters from a park). Select a search area (ex: a district of a city) Get a list of places that fit the description. |
Smappen | Online tool to calculate the distance a person can travel from a given point in a given time (on foot, by car, by bicycle, by train, by truck). |
Python Overpy | Old (but it’s still working) and simple command line #python tool for access Overpass Turbo API. |
Link | Description |
---|---|
Venicle Number Search Toolbox | search information about car by venicle numbers (14 different countries from one page) - #GreatBritain, #Norway, #Denmark, #Russian and others |
Transit Visualisation Client | real time info about public transport in 739 cities and towns in the dozens of countries |
Collection of public transport maps | 20 online public transport maps (most real-time) for different cities and countries around the world |
WorldLicensePlates | graphic index of license plates of different countries of the world |
Openrailwaymap | Map of the world with information about the railroad tracks. It’s possible to visualize maximum speed, electrification, track gauge, and other parameters. |
Waze | Online map (+mobile app) for information about various problems on the roads (accidents, street closures, police parking, etc.) around the world. Waze especially interesting because it stores the marks users left a few days or weeks ago. |
Link | Description |
---|---|
Opencellid.org | the world’s largest Open Database of Cell Towers |
CellMapper | Worldwide cell towers map; Cell ID Calculator; Frequency Calculator; LTE Throughput Calculator; Network statistics by countries. |
API mylnikov.org | get lattitude and longitude by WiFI BBSID |
nperf.com/map | view the coverage area of different #cellular operators in different countries |
nperf.com/map/5g | 5G coverage #map worldwide |
Vincos.it | world social media popularity map |
app.any.run | interactive worldwide map of cyber threats statistics (last 24 hour) |
Web Cam Taxi | open webcams around the world |
Radio Garden | select a local radio station on the world map and listen to what’s playing at the moment |
TorMap | Worldwide online map of Tor Nodes |
GeoWiFi | Search WiFi geolocation data by BSSID and SSID on different public databases (Wigle, Apple, OpenWifi, API Mylnikov). |
GPSJam | GPS Interfence Map shows where GPS jamming systems could be operating on a particular day (most often associated with military conflicts). |
Infrapedia | Worldwide detailed online map of Submarine Cables, Data Centers, Terrestrial Fibers, Internet Exchanges |
OONI Explorer | World biggest open data resource on internet censorship around the world. 1.6+ million measurements in 241 countries since 2012. |
Link | Description |
---|---|
Argis UFO map | UFO sightings interactive map. USA only |
Bigfoot and UFO map | Bigfoot, UFO and other sightings around USA and Europe |
The Haunted map | A map of haunted locations where ghost sightings have been reported around the world. Based by data from http://ghostresearchinternational.com |
Lost places map | A map of independent research reports on urban spaces that are published in the Lost places Facebook community |
Bigfoot Sightings and Density of the US with Biomes | Bigfoot sightings reports density around the USA |
BFRO bigfoot sightings database | This comprehensive database of credible sightings and related reports is maintained by an all-volunteer network of bigfoot/sasquatch researchers, archivists, and investigators in the United States and Canada–the BFRO. |
Haunted places | Google Earth map of ghost sightings around the world |
UFO reporting map | YouMap of UFO sightings reporting around the USA |
Australia UFO map 2008 | UFO sigthins Google Map Australia 2008 |
URBEX database map | Europe lost places map based by Urbex database |
Lostplace atlas | Google map of lost places in Germany and other Europe countries |
Virtual Globe Trotting | Add latitude and longitude to the URL to see the nearby : Unusual and funny images from Google Street View; Interesting parts of the satellite map |
Link | Description |
---|---|
Show My Street | simple tool that simplifies and speeds up your research work with Google Street View. Just click on the map and see street panoramas |
Mapillary | street panoramas over the world |
360cities.net/map | world map of panoramic (360 degrees) images |
Earthviewer360.com | Click on a point on the map to see a 360 degree video panorama (it’s possiblle to pause to see some areas in more detail) |
Link | Description |
---|---|
Observer | service allows you to watch data from different orbiting satellites in the record. The data is available in 15-30 minutes after recording. |
USGS Earth Explorer | more than 40 years old collection of satellite imagery |
Landviewer | satellite observation imagery tool that allows for on-the-fly searching, processing and getting valuable insights from satellite data to tackle real business issues |
Copernicus Open Access Hub | ESA’s open access portal to Sentinel data |
Sentinel Hub EO Browser | complete archive of Sentinel-1, Sentinel-2, Sentinel-3, Sentinel-5P, ESA’s archive of Landsat 5, 7 and 8, global coverage of Landsat 8, Envisat Meris, MODIS, Proba-V and GIBS products in one place. |
Sentinel Hub Playground | tool for viewing satellite images with different effects and rendering. |
NASA Earthdata Search | search in 8555+ collection and photos. |
INPE Image Catalog | free satellite images catalogue. |
NOAA Data Access Viewer | satellite images of the coastal U.S.(discover, customize, and download authoritative land cover, imagery, and lidar data.) |
NASA WorldView | high resolution and high quality satellite images. |
ALOS | “Advanced land Observer Satellite” images collection (Japan) |
Bhuvan | Indian Geo-platfrom of ISRO. |
OpenAerialMap | set of tools for searching, sharing, and using openly licensed satellite and unmanned aerial vehicle (UAV) imagery |
OpenAerialMap | Select an area on the map and get a list of freely available aerial images for that area. For some locations available images are many times superior in quality to conventional satellite images. |
ApolloMapping Image Hunter | Select an area on the map using a special tool (square and polygon) and get a list of dozens of images obtained from satellites or by aerial photography (from the early 2000s as well as those taken a couple of days ago). |
keyhole engelsjk | Experimental visualization tool for 1.3 million+ declassified spy satellite imagery (1960 to 1984 years). |
Maxar | Highlight an area on the world map and get dozens of satellite images of that area taken at different times (mostly 2021-2023) |
Link | Description |
---|---|
ADS-b.nl | tracking military aircrafts. |
Planefinder Army Live Flight Tracker. | |
Itamilradar | track military flights over Italy and over the Mediterranean Sea. |
MarineVesselFinder | military ship tracking. |
BellingCat Radar Interfence Tracker | |
WEBSDR | online access to a short-wave receiver located at the University of Twente. It can be used to listen to military conversations (voice or Morse code). |
Russia-Ukraine Monitor Map | represent open source material such as videos, photos and imagery that have been cross-referenced with satellite imagery to determine precise locations of military activity . |
Ukraine liveuamap.com | online tracking of war-related events in Ukraine. |
Syria Liveuamap | online tracking of war-related events in Syria. |
NATO.int | Explore this interactive map to learn more about NATO, how the Alliance works and how it responds to today’s security challenges. |
Understanding War Map Room | collection of maps illustrating military conflicts in different countries. |
US Military Bases Interactive Worldwide Map | Use the map to find out the number of people at the base, the approximate area, the opening date, and to get links to articles with more information. |
Link | Description |
---|---|
Map.Army | Online tool for creating schemes of battles and military operations on the map. Extensive customization possibilities and a huge library of symbols. |
MGRS Mapper | Build and share custom maps with standard military graphics using a simple visual interface (paod) |
ArgGis Military Overlay | Military Overlay can be used to create overlays with standard military symbols, by using and adapting existing feature templates in ArgGis Pro |
Link | Description |
---|---|
Demo.4map.com | 3D interactive world map |
OldMapsOnline | World aggregator of old maps from various sources (498,908 maps) |
Whatiswhere.com | OpenStreetMap based free POI (point of interest) search. 102 types of objects |
Collection of cadastral maps | 41 countries |
WhoDidIt | Click on an area on the OpenStreetMap to get a list of nicknames of users who have made changes on it (with dates). |
European World Translator | Enter the word in English to see its translation into different European languages on the map. |
Link | Description |
---|---|
Stweet | Opensource Python library for scraping tweets (by user, by hashtag, by keyword). NO LOGIN OR API KEY REQUIRED. |
BirdHunt | A very simple tool that allows you to select a geolocation/radius and get a list of recent tweets made in that place. |
Twitter account detector | A simple and fast Chrome extension that finds all Twitter accounts on a site. |
Follower Wonk/Compare | this service allows you to find out how many followers two (or three) Twitter accounts have in common. |
Tweepsmap Unfollows | displayed unsubscribed accounts (list for the one week available for free) |
app.truthnest.com | best tool for Twitter account investigation |
Whotwi | A free online tool for analysing your #Twitter account: - shows the mutual following; - search for tweets by calendar; - list of most active readers; - analysis of daily activity, hashtags and more. |
Treeverse.app | view dialogs in Twitter as a graph |
Hashtagify | compare the popularity of the two hashtags |
Scoutzen | search twitter lists by keywords |
One Million Tweet Map | |
Tweet Binder | detailed twitter account analyze |
Tweet Sentiment Visualization | |
Tweet Beaver Friends Following | |
Tweet Topic Explorer | |
Twitter Money Calculator | |
Twitter Analytics | gather detailed infromation about your own account |
Twemex | Twitter sidebar with: quick commands for searching your own tweets, lists, users tweets and replies; quick links to quotes of current tweet, user’s most liked tweets and conversations. |
Vicintias.io | very fast export of information about Twitter account followers to XLSX |
Twitter Shadow Ban Checker | If you suddenly notice that your account’s tweets have decreased in views and the flow of audience has slowed down, it’s worth checking to see if your account has been shadow-banned. |
Twitter Mentions Map | A world map that shows the locations of users who mention you in their tweets. |
Twitter URL Scraper | A simple tool for analyzing twitter conversations (and other pages). Get profile pictures, user names and the text of the conversation’s tweets and replies. Data can be exported to CSV, JSON, XML. |
DO ES FOLLOW | quick check if one user is subscribed to another on Twitter |
Sleeping Time | determining the approximate sleeping time of a user based on analysis of the timing of a tweet |
Tweet Tunnel | tool for quick and comfortable viewing old tweet’s of someone account |
Twitter users directory | |
FollowerAudit | In-depth analysis of Twitter followers. Identifies inactive and fake accounts, assesses followers by the number of tweets, profile information (biography, geolocation, links, profile picture). |
Foller.me | Twitter account detailed analyze |
Get day Twitter Trends | |
US Twitter Trend Calendar | |
Followerwonk | search by Twitter bio |
Twitter Botometr | |
projects.noahliebman.net/listcopy | copy a list made by another user to your Twitter account |
Unfollower Stats | iOS App that tracking unfollowers and show nofollowersback and unactive followers for your Twitter account |
Twish | very simple, quick, comfortable and nicely designed advanced #Twitter search query builder for #GoogleChrome. |
Twitter Scraper | Scrape any #Twitter user profile. Creates an unofficial Twitter API to extract tweets, retweets, replies, favorites, and conversation threads with no Twitter API limits. |
Twiiter Trending Archive | A wide range of options for analyzing #Twitter trending history: 1. See what was popular on a particular day in a particular country or in the world as a whole. 2. Enter a keyword and find out when it was in the global/particular country trends. |
Tweeview | Twitter conversation visualization (beta) |
Tweeplers | Trending Twitter users and hashtags (map/list) Top twitted cities and countries Realtime Tweet Map |
FlockNet | A tool for finding and filtering your own #Twitter followers. It allows you to find all the people from a certain city or with certain interests. And then quickly view their profiles in a convenient format. |
Orbit livasch | A tool for analyzing connections between Twitter accounts (based on the number of likes, retweets, tweet citations, and mentions). |
The Twitter Stream Grab | Full archives of tweets in JSON for a particular month (from 2011, but some months are not available). |
Twitter 3D | 3D viewer of relationships between twitter users. |
ExportData.io | (PAID) Download followers & followings, export historical tweets since 2016. |
Eight Dollars | Browser extension that shows who really is a verified #Twitter user and who paid $8 for verification. |
Twitter Archive Parser | In case your Twitter account is blocked, it’s usefull to open settings and download account data. This tool extracts the most important info about tweets from archive and formats it in an easy-to-read way. |
removeTweets | In recent weeks, I have been seeing more and more accounts deleting their tweets in whole or in part. You can automate this process with this tool. |
TWEEDS | A very easy-to-use Python library that allows you to collect all of a user’s tweets into a CSV/JSON file. Also it’s possible to collect tweets by hashtag or geolocation. |
BirdSQL | New Twitter search tool using OpenAI GPT 3.5. Type queries in simple english language to get lists of tweets or users. For example: most liked tweets abou people followed by Jeff Bezos who don’t follow him back total number of users/tweet |
Spaces Down | Twitter Spaces download service (available after the broadcast ends). Works for quite a long time. It took about 5 minutes to generate an MP3 file with an audio recording of the 46-minute space. |
Twitter Control Panel | A cross-browser extension that allows you to have maximum control over your Twitter feed: Hide retweets, quote tweets, who to follow etc; Reduce “engagement”; Hide UI items; Remove algoritmic content |
Wayback Tweets | A tool to quickly view tweets saved on http://archive.org No need to open a link to each tweet in a separate window It’s possible to filter only deleted tweets |
Link | Description |
---|---|
YouTube Whisperer | Transcribe YouTube video |
Eightify | ChatGPT YouTube summary |
YouTube Unlisted Video | search for videos available only by link on youtube |
YouTube Comments Analyze | Download detailed information about YouTube video comments to a .tab or .gdf |
Youtube Actual Top Comments | The main drawback of the standard #YouTube comment display is that it does not sort comments by the number of likes, but simply shows popular comments in a random order. This extension solves this problem: |
Noxinluencer | youtube channels comparing |
YouTube MetaData Viewer | |
PocketTube | YouTube Subscription Manager |
YouTube comment Finder | |
YouTube Comment Downloader | easy to install and fast tool for downloading YouTube comments in txt/json. Does NOT require authorization or API keys. |
Montage.meedan.com | Search #YouTube video by date (uploaded or recording) and by geolocation. |
Slash Tags | tool for recommending YouTube tags and displaying related statistical data from search keyword(s) |
YouTube playlist len | Find out the total time of all the videos in playlist |
Anylizer.com | watch frame by frame YouTube and Vimeo) |
Improve YouTube | extension with dozens of different tweaks to the standard #YouTube interface |
YoTube Channel Search | Tool for searching YouTube channels by keywords in the name and creation date. The result is a table with the channel ID, name, description, date of creation, as well as the number of subscribers, views, and uploaded videos |
watchframebyframe.com | watch frame by frame YouTube and Vimeo |
Hadzy.com | YouTube comment search) |
Ytcs | google chrome extension to search YouTube comments without leaving the site (link to source code) |
YouTube Comment Search Chrome Extension | |
YouTube Transcript API | Get the transcript/subtitles for a given #YouTube video (by ID from adress bar). It also works for automatically generated subtitles and supports translating subtitles. |
Jump Cutter | An extension for those who watch university lectures on #YouTube and want to save their time. It identifies chunks where the lecturer writes silently on the board (or is just silent) and plays them back at double speed… |
YouFilter – YouTube Advanced Search Filter | An extension that displays #YouTube search results in a table with very detailed information about each video (including quick links to the channel owner’s contacts). It’s can to download the results in CSV. |
YouTube Timestamp Comments | extension finds all the timestamps in YouTube video comments and arranges them in chronological order. |
Youtube Actual Top Comments | Fetch all comments to Youtube video (without answers). Sort them by likes and filter by keywords |
YouTube channel archiver | Tool for automation downloading video, thumbnails and comments text from target YouTube channel (or channels). |
YouTube Scraper | Extract and download channel name, likes, number of views, and number of subscribers. Scrape by keyword or URL. |
YouTube Booster | This extension selects frames from videos and generates quick links to find them on Google and TinEye! |
YouTube Caption Searcher | Well down tool for searching in #YouTube video subtitles by keyword. Use Enter to move forward and Shift+Enter to move back. |
YouTube word search | An extension that helps you find at what second in the video a certain word is heard. It’s possible to search not only by one word, but by the loaded list of words (!). |
Speak subtitles to YouTube | Subtitle dubbing tool with support for several dozen languages and voice variants. Useful for saving time and for education purposes. Works with glitches, try different settings to get better results. |
Youtube Lookup | Simple tool for gathering info about video: Content details, Snippet details, Statistics, Status, Thumbnails |
YouGlish | Type a random phrase in English and listen to native speakers pronounce it in YouTube videos. |
YouTube Screen Capture | allows you to download a stream in pieces and then merge them |
Filmot | YouTube subtitles search engine. Search across 573 million captions/528 million videos/45 million channels. |
YouTube_Tool | #Python library for: - extracting subtitles by video ID or link (in different languages); - list all the video’s contained in playlist; - list all video’s from a channel; - get info about video by ID; - proxy support; and more. |
YtGrep | A tool for quick text search of subtitles in YouTube videos. Supports regular expressions and searching across multiple videos. |
Find YouTube Video | An online tool that searches for information on YouTube videos by ID in the following sources: Wayback Machine; GhostArchive; #youtubearchive; Filmot |
YouTube Channel Crawler | Search across 20, 625,734 channels. Search by name, category, country, number of subscribers, views, videos and creation date. |
Return YouTube Comment Username | YouTube has recently stopped showing user names in comments. There is an extension that solves this problem. |
YouTube Lookup | A simple online tool to view YouTube video metadata: Snippet Statistics Status Content Geolocation Thumbnails |
Link | Description |
---|---|
Tiktok Timestamp | determines the time of publication of the video to the nearest second. Just copy the link. |
TikStats | detailed statistics on the growth dynamics of subscribers, likes, and video views for the TikTok account |
TikTok Scraper | scrapping video from user, trend or hashtag feed, extracting video’s or user’s metadata, downloading video or music, processing a list of clips or users from a file |
TikTok Downloader | TikTok Video Downloader |
TikTokD | TikTok Video Downloader |
Snaptik.app | TikTok Video Downloader |
TikTake.net | TikTok Video Downloader |
Exolyt.com | TikTok profile analyze |
Tikbuddy | TikTok profile analytics |
Mavekite.com | Enter the nickname of the user #TikTok and get the data on likes, comments, views, shares and engagements for his forty last videos |
Tiktok Scraper | Extract data about videos, users, and channels based on hashtags, profiles and individual posts. |
Tikrank.com | free tool for comparing and analyzing #TikTok accounts. Available ranking of the most popular users by country (there are more than a million accounts with the largest number of subscribers in the database) |
TikTok Creative Center Statistics | List of most popular hashtags; songs; creators; videos for different countries and periods. |
Link | Description |
---|---|
Prot1ntelligence | Validate ProtonMail email address, Gather info about ProtonMail user email or PGP Key, Search on the dark web target digital footprints, Check IP to belong to ProtonVPN |
Link | Description |
---|---|
Find my FB ID (randomtools.io) | |
435,627,630 indexed items from that Facebook dump of recent - ready to be searched upon. | |
Facebook People Directory | |
sowdust.github.io/fb-search | search facebook posts, people and groups using URL-filtres |
Dumplt Blue | GoogleChrome extension for @Facebook: dump to txt file friends, group members, messenger contacts etc, automate scroll page to bottom (+isolate scrolling), automate expanding comments and replies and much more. |
Fdown.net | Facebook video downloader |
Facebook Latest Posts Scraper | Scrape #Facebook posts with comments from one or multiple page URLs. Get post and comment texts, timestamps, post URLs, likes, shares, comments count, author ID. |
Facebook Latest Comments Scraper | Enter link to the #Facebook post and get comments comments to it (text, timestamp and other info). |
Facebook Friend List Scraper | Scrape names and usernames from large friend lists on Facebook, without being rate limited" |
Link | Description |
---|---|
ClubHouse users.db | search users by nickname and keyword in profile |
roomsofclubhouse.com | search open and scheduled rooms |
clubsearch.io | search open and scheduled rooms |
search4faces.com/ch00 | reverse image face search by 4 millions 594 thousands #clubhouse avatars. |
Link | Description |
---|---|
Freepeoplesseacrhtool.com | find people in Linkedin without registration |
CrossLinked | LinkedIn enumeration tool to extract valid employee names from an organization through search engine scraping |
Linkedin Datahub | linkedIn’s generalized metadata search & discovery tool |
Recruitin.net | easily use Google to search profiles on LinkedIn |
Link | Description |
---|---|
XingDumper | The Xing job and networking service has almost 20 million users! Here is a simple script that allows you to get a list of employees registered there for a particular company. |
Link | Description |
---|---|
Map of Reddit | an alternative format for interacting with Reddit |
Reddit Insvestigator | |
redditcommentsearch.com | getting a list of all comments by a Reddit user with a certain name |
dashboard.laterforreddit.com/analysis | examine popular post trends for a given subreddit |
Reddit Timer | Get last week’s hourly activity schedule for a specific subreddit |
Redditsave.com | Reddit video downloader |
Reddit Scraper | Crawl posts, comments, communities, and users without login. |
Redditsearch.io | Reddit search tool |
Reddloader.com | Reddit video downloader |
Camas Reddit Search | Search engines for Reddit with a lot of filtres |
Reditmetis | View statistics fot Reddit users’s account |
Repostsleuth | Reddit trends analyzer |
Redetective | Reddit search tool |
Unddit.com | Display deleted content in Reddit |
Reveddit | Reveal reddit’s removed content. Search by username, subreddit (r/), link or domain. |
Reddit User Extractor | #python script that allows you to get a complete list of comments by user name on Reddit in CSV format |
Better Reddit Search | Reddit search tool for posts and subreddits (with boolean filters by keywords and filters by publication date). |
Reddit Post Scraping Tool | Simple #python script for scraping post from #Reddit (by keywords and subreddit name) |
Subreddit Stats User-Overlap | A tool to find similar subreddits. The higher the score of a subreddit in the list, the higher the probability that users of the original subreddit (in our case r/osint) are active in it too. |
Reddit User Analyzer | Registration date; Activity stats; Kindness Meter; Text readability; Top subreddits; Most frequently used words; Submission and comment activity over time; Submission and comment karma over time; Best and worst comments |
Link | Description |
---|---|
fansmetrics.com | Search in 20 millions #OnlyFans accounts |
Onlysearch.com | Onlyfans users search engines |
onlyfinder.com | OnlyFans profiles search engine (search by people, images and deals) |
hubite.com/onlyfans-search/ | OnlyFans profiles search engine with price filter |
SimilarFans | A tool to find OnlyFans profiles with many filters (by country, price, category, age, etc.). |
FanSearch | Search OnlyFans profiles by countries, price or category. |
Link | Description |
---|---|
Bitmoji Avatar History Enumerator | BACKMOJI takes a Bitmoji ID, version (usually the number 5), and a maximum value. Press the “Grab Images!” button and your browser will make “maximum value” requests for the images of that user’s Bitmoji. Those images will be displayed below. |
Link | Description |
---|---|
Twitch Tools | downloas full followers list of any Twitch account in CSV |
Twitch Tracker | detailed analysis of #Twitch streamer stats |
Sully Gnome | detailed analysis of #Twitch streamer stats |
Twitch Stream Filter | Search streams and filter results by title, game, language, number of viewers. |
Untwitch.com | Twitch video downloader |
Twitch Overlap | shows the viewer and audience overlap stats between different channels on Twitch. Currently tracks all channels over 1000 concurrent viewers. Data updates every 30 minutes. |
Justlog | Enter the username and the name of the channel to see all of the user’s messages in that channel. The results can be downloaded as TXT |
Pogu Live | Tool that allows you to watch sub only or deleted VODs for free. It works because when a streamer deletes a video, iit is not deleted from Twitch’s servers immediately. |
Twitch Recover | Twitch VOD tool which recovers all VODs including those that are sub only or deleted. |
Twitch Database | Following List + Channel Metadata + Role Lookup |
Twitch Insights | Account stats; Game ranking; Extensions stats; List of all Twitch bot; Check user status by nickname or ID; List of Twitch team (history before 2020) |
Twitch Followage Tool | Enter the Twitch username and get a complete list of channels he/she follows (with start dates) |
Link | Description |
---|---|
Fidonet nodelist | search by node number, sysop name and sysop location |
Link | Description |
---|---|
NZBFRIENDS | usenet search engine |
Link | Description |
---|---|
Tumblr Tool | collected posts tagged with a specific term from Tumblr and export to .tab file (opens in Excel) and .GDF (opens in Gephi) |
Link | Description |
---|---|
Flickr Photopool Contact Network | Analyzes Flickr groups and makes a list of nicknames of participants for further graph analysis in Gephi |
Link | Description |
---|---|
Zspotify | Spotify track downloader. Download mp3 by link or by keywords |
Chosic.com | analyze the playlist on Spotiify, calculate the prevailing mood, genres, decades and favorite artists |
Spotify downloader | download spotify playlist in mp3 from YouTube |
chartmasters.org/spotify-streaming-numbers-tool/ | report of the number of streams of a particular artist’s tracks on Spotify |
Link | Description |
---|---|
ASTRAAHOME | 14 #Discord tools (including a RAT, a Raid Tool, a Token Grabber, a Crash Video Maker, etc) in one #python tool. |
Discord History Tracker | A tracking script will load messages from the selected channel and save them in .txt file. |
Serverse | Search for Discord servers by keyword. |
Link | Description |
---|---|
MASTO | Masto searches for the users Mastodon by name and collects information about them (profile creation date, number of subscribers and subscriptions, bio, avatar link and more). |
Fedifinder | Tool for finding Twitter-users in Mastodon. You can search among those who follow you, those who follow you, as well as in your lists! Results can be exported to CSV. |
MastoVue | More and more #osint and #infosec bloggers are creating Mastodon profiles these days. This tool will help you find accounts that match your interests by hashtag. |
Debirdify | This tool automatically finds Fediverse/Mastodon accounts of people you follow on Twitter |
Search.Noc.Social | Good alternative to the standard Mastodon search. This service allows you to search for users on different servers by hashtags and keywords. |
Instances.Social | A tool for searching across full list of instances in #Mastodon. It can help you choose the right instance to register (matching your views on spam, advertising and pornography) and in finding illegal content to investigate crimes. |
Fediverse Explorer | Search Mastodon users by interests |
Trunk | 200+ thematic lists of accounts in Mastodon. Python, JavaScript, Vim, Ruby, Privacy, Linux… There are even nudists and Tarot. The Pytrunk tool can be used to automatically following this lists https://github.com/lots-of-things/pytrunk |
What goes on Mastodon | Interactive real time visualisation which shows the number of new users and posts on Mastodon Instances in the last 6 hours, 24 hours, 72 hours or the entire last month. |
IMAGSTON | A tool that searches for users by name on different #Mastodon servers and collects information about them (profile picture, account type, date of account creation, bio). |
Movetodon | Get a list of your Twitter followings in Mastodon. With the ability to sort by date of registration, date of last activity, and buttons for quick subscriptions. |
Followgraph for Mastodon | Enter any #Mastodon Handle and get a list of accounts followed by the people this profile follows. It helps to find connections between people or just interesting accounts followed by many people interested in a certain topic. |
Kirbstr’s Mastodon search | Google CSE for some of the most popular and open mastodon instances. |
Link | Description |
---|---|
YaSeeker | Get information about http://Yandex.ru account by login |
Link | Description |
---|---|
IMGINN | This service allows you to do the following without logging in to Instagram account: - search for accounts containing a keyword in the profile name; - view all of the user’s photos; - view photos in which the profile has been tagged by other users |
Instahunt | Click on the point on the world map Click “Find places” Click “Get Instagram Place Data” Copy and paste the “Place Data” into the box View Insta locations on the map with links to photos! |
Instagram Location Search | Get the names and links to all the locations on Instagram tied to specific geographic coordinates |
Inflact Instagram Search | Instagram profiles search tool with the ability to filter results by number of subscribers, number of posts, gender, categories (personal blog, artist, product/service etc.) |
Terra | Collect information about twitter and Instagram accounts |
Instagram analyzer and viewer | |
Sterraxcyl | Tool for export to excel someone’s #Instagram followers and/or following with details (Username, FullName, Bio, Followers and Following count, etc) |
Storysaver.net | download Instagram stories. |
Instagram Scraper | Scrape info about accounts, posts, stories and comment |
Instagram Hashtag Scraper | Enter hashtag name and scrape all post tagged it. Get caption, commentsCount, photo dimensions, URL, other hashtags and other details in CSV, JSON or XLS table. |
Tenai | Simple tool that uncover some followers of a private #Instagram account |
TrendHero | An Instagram profile search tool with a huge number of filters and the ability to view profile statistics. |
INSTALOADER | Allows to download Instagram posts, photos, stories, comments, geolocation tags and more from #instagram |
InsFo | The ultimate simple tool for saving followers/following an Instagram account to a table. |
Inflact | Another online tool that allows you to watch Instagram, without logging in: - search users by nickname; - view last posts; - analyze profile; |
Imginn | Free service to view Instagram profile posts without registration |
Instagram Explorer | Click on a point on the map. Follow the instructions on the left. Get a link to view Instagram posts made at this location on a specific date range |
Link | Description |
---|---|
GHunt | google account investigation tool |
Ghunt Online Version | Get info about Google account by email: - name - default profile and cover pictures; - calendar events and timezone; - Google Maps reviews; - Google Plus and Google Chat data; |
Link | Description |
---|---|
Graphtreon.com | patreon accounts earnings stats |
Link | Description |
---|---|
Star History | simple tool that shows how the number of stars a repository on #Github has changed over the past three months. |
Commits.top | Current list of the most active @Github users by country |
Gitstar Ranking | Unofficial GitHub star ranking for users, organizations and repositories |
Github Rater | rates GitHub profile upon data received from GitHub API |
Github Trending Archives | Github trending archive for a specific date. |
GitHub Repository Size | simple google chrome extension to view Github repo size |
Gitcolombo | simple and fast tool that collects information (edit statistics and contacts) about repository contributors on Github |
Coderstats | enter Github username and get detailed statistics of profile: languages, issues, forks, stars and much more |
GitHub-Chart | it shows a visual representation of the temporal distribution of user changes in the repositories. You can visually see “productivity peaks” and see which days of the week a person is most active |
Zen | Tool for gathering emails of #Github users |
GithubCompare | When searching for OSINT tools on #Github, you will often come across several repositories with the same name. This service will help to visually compare them, determine which one was created earlier, which one has more forks and stars. |
DownGit | Create GitHub Resource Download Link |
Profile Summary for Github | Get detailed stats by Github username |
Github Hovercard | Displays a block of detailed information about the repository or user when the mouse pointer is placed over it. Save time for those who look through dozens of pages of #Github search results in search of the right tool for their tasks. |
SEART Github Search | Search engine for #Github with a dozen different filters. It has slightly fewer features than the standard Github advanced search, but more user-friendly. |
Repos Timeline | Enter #Github username and click Generate to see a timeline with all of the user’s repositories and forks they have made. |
Gitvio | A tool to quickly and easily view detailed information about a user’s Github profile: the most popular repositories, number of commits, issues and , statistics of languages used, and more. |
OSGINT | A simple #python tool to collect information about a Github user. It can be used to gather: all available emails avatar_url twitter_username number of followers/following date of profile creation and last update and more. |
gitSome | A tool for gathering information from #Github: - extract all emails from commits of a particular user (top of the pic); - gathering info about repository (with forks); - search info by domain name |
Open Source Software Insight | Amazing service that allows to analyze developers and repositories data based on more than 5 billion (!) Github Events. |
Map of Github | Enter the name of the repository, see its links to other projects, and its place on the map of all Github repositories. Notice how small 1337 island is. |
Link | Description |
---|---|
WikiStalk : Analyze Wikipedia User’s Activity | |
Wikipedia Cross-lingual Image Analysis | A simple tool that allows to evaluate the content of different language versions of an #wikipedia article about the same subject or concept in one glance. |
WikiMedia Cloud Page Views | The tool shows how many times a particular page on WikiPedia has been visited within a certain period of time. It also allows you to compare 2 or more pages with each other. Who is more popular? |
WikiWho | Database of edits made to #Wikipedia using IP ranges of organizations, government agencies and companies (FBI, NATO, European Parliament, etc.) You can view both the edits history of a single article and the edits history of organization. |
WIKIT | A tool for searching and reading #Wikipedia articles from the #CLI. The main benefit of it is fewer distractions from work. You don’t have to open browser (with Facebook, YouTube and other time eaters) to find out about something. |
Link | Description |
---|---|
Parler archive |
Link | Description |
---|---|
Sn0int framework module for Pornhub |
Link | Description |
---|---|
BlueSky users stats |
Link | Description |
---|---|
steamdb.info/calculator | shows how much money has been spent on games in Steam by a particular user |
Steam Osint Tool | Enter the link to the user’s Steam profile to get a list of his or her closed “friends” and a list of his or her public comments. |
Link | Description |
---|---|
MineSight | Minecraft #osint tool. By nickname, it checks the presence of users on different servers and collects information about them (date of registration, links to social networks, history of nickname changes, etc.). |
Link | Description |
---|---|
Xboxgamertag | search Xbox Live users by nickname (gamertag). It’s possible to view gamer’s stats and his playing history. |
Link | Description |
---|---|
Vk.city4me.com | tracking user online time |
Link | Description |
---|---|
Oh365UserFinder | A simple tool that shows if an #Office365 account is tied to a specific email address. It’s possible to check an entire list of emails from a text file at once. |
o365chk | simple #Python script to check if there is an #Office365 instance linked to a particular domain and gathering information about this instance. |
Link | Description |
---|---|
Onedrive Enumeration Tool | A tool that checks the existence of OneDrive accounts with certain usernames (from the users.txt file) in the domain of a certain company. |
Link | Description |
---|---|
Udemy Video Playback Speed | A simple extension that changes the speed of playing video courses on #Udemy. |
Link | Description |
---|---|
duolingOSINT | The language learning platform Duolingo has more than 570 million+ users worldwide. This tool collects information about Duolingo users by nickname or email. |
Link | Description |
---|---|
Gallery-dl | Quick and simple tool for downloading image galleries and collections from #flickr, #danbooru, #pixiv, #deviantart, #exhentai |
Kribrum.io | searchengine for different social media platforms with filters by author and time period |
Auto Scroll Search | automatically scrolls the page down (and loads the ribbon) until the specified keyword appears on it. |
Social Blade | help you track YouTube Channel Statistics, Twitch User Stats, Instagram Stats, and much more |
ExportComments | Export comments from social media posts to excel files (Twitter, Facebook, Instagram, Discord etc), 100 comments free |
Social Media Salary Calculator | for YouTube, TikTok, Instagram |
Chat-downloader | download chats messages in JSON from #YouTube, #Twitch, #Reddit and #Facebook. |
FindMyFBID | Toolkit for collecting data from social networks |
Social Analyzer | extension for Google Chrome that simplifies and speeds up daily monitoring of social networks. Create your own list of keywords and regularly check what’s new and related to them. |
Khalil Shreateh Social Applications | More than 20 tools to extend the standard functionality of #Facebook, #TikTok, #Instagram, #Twitter (information gathering, random pickers for contests, content downloaders etc.) |
SNScrape | Tool for search posts and gathering information about users in Twitter, Reddit, Vkontakte, Weibo, Telegram, Facebook, Instagram, Telegram and Mastodon. |
TalkWalker | You can enter a tag (keyword and brand name) and then see which people have used it most often: - gender; - age; - language; - profession; - interests. |
Kworb | A lot of different statistics on views and listens collected from #YouTube, #iTunes, #Spotify. Ratings by country, year, music type, and more. |
Amazing Hiring | An extension for Chrome that allows you to find a link to Linkedin, Facebook, VK, StackOverflow, Instagram… by user Github (or other) profile |
RUBY | Simple tool for searching videos by keyword in Rumble, BitChute, YouTube and saving results (author, title, link) to CSV file. |
The Visualized | visualize profile tweets to see the most popular from the last month; get info about the use of a particular hashtag (popular tweets, related hashtags, profiles that frequently use this hashtag); lists of #Twitter and #YouTube trends by country; |
CommentPicker | Facebook profiles/posts ID finder Export Facebook like and comments YouTube Tag Extractor Instagram profile analyzer Twitter account data export |
Link | Description |
---|---|
Wenku | download documents from Baidu Wenku without registration |
Slideshare Downloader | A very simple and fast tool for downloading Slideshare presentations in PDF format (recommend to choose High quality at once) |
Gdown | When downloading files from Google Drive curl/wget fails (because of the security notice). But this problem is easily solved |
Waybackpack | download the entire #WaybackMachine archive for a given URL. You can only download versions for a certain date range (date format YYYYMMDDhhss) |
Chat-downloader | download chats messages in JSON from #YouTube, #Twitch, #Reddit and #Facebook. |
Gallery-dl | Quick and simple tool for downloading image galleries and collections from #flickr, #danbooru, #pixiv, #deviantart, #exhentai |
Spotify downloader | download spotify playlist in mp3 from YouTube |
Zspotify | Spotify track downloader. Download mp3 by link or by keywords |
Snaptik.app | TikTok Video Downloader |
TikTok Scraper | scrapping video from user, trend or hashtag feed, extracting video’s or user’s metadata, downloading video or music, processing a list of clips or users from a file |
YouTube Comment Downloader | easy to install and fast tool for downloading YouTube comments in txt/json. Does NOT require authorization or API keys. |
Storysaver.net | download Instagram stories |
Fdown.net | Facebook video downloader |
Untwitch.com | Twitch video downloader |
Redditsave.com | Reddit video downloader |
DownGit | Create GitHub Resource Download Link |
SaveFrom.net | download video from YouTube, Vimeo, VK, Odnoklassniki and dozen of others services |
Gdown | When downloading files from Google Drive curl/wget fails (because of the security notice). But this problem is easily solved. |
Download Sorter | simple tool that will help set up the distribution of files with different extensions into different folders in a minute and permanently put “Downloads” folder in order. |
Z History Dump | Open chrome://history/ and download all links from browser history in json. This provides tremendous opportunities for visualization and analysis of information. |
Slideshare Downloader | A very simple and fast tool for downloading Slideshare presentations in PDF format (recommend to choose High quality at once) |
Megatools | The http://Mega.nz file exchange contains links to many files, including various databases of leaked data. You can use the megatools command-line tool to automate your work with this file-sharing service. |
You Get | Universal content downloader: - download video from popular sites like #YouTube or #TikTok - scrape webpages and download images - download binary files and other non-html content from sites |
SoundScrape | Download tracks and playlists from SoundCloud, Bandcamp, MixCloud, Audiomack, Hive com. |
Stream Downloader | Download streams from different sites |
Chat Downloader | Python tool for extracting chat messages from livestreams and broadcast. Supported sites: YouTube Twitch Reddit Zoom Facebook |
Link | Description |
---|---|
OWASP Amass | The OWASP Amass Project performs network mapping of attack surfaces and external asset discovery using open source information gathering and active reconnaissance techniques. |
Investigator Recon Tool | web based handy-#recon tool that uses different #GoogleDorking techniques and some open sources service to find juicy information about target websites. It helps you quickly check and gather information about the target domain name. |
AORT | All in one domain recon tool: portscan; email services enumeration; subdomain information gathering; find info in Wayback Machine and more. |
Site Dorks | |
Google (universal) Dork Builder | Quick create queries with advanced search operator for Google, Bing, Yandex etc. Copy dorks from Google Hacking Database. Save dorks in your own database |
Hakrawler | Extreme(!) fast crawler designed for easy, quick discovery of links, endpoints and assets within a web application. |
0xdork | Very light and simple #Python tool for Google Dorking |
FilePhish | Simple online Google query builder for fast and easy document file discovery. |
Snyk.io | Website Vulnerabilities Scanner |
dorks.faisalahmed.me | online constructor of google dorks for searching “sensitive” wesite pages |
Fast Google Dorks Scan | Search the website for vulnerable pages and files with sensitive information using 45 types of Google Dorks. |
GO DORK | Fast (like most #osint scripts written in #golang) tool for automation work with Google Dorks. |
Dork Scanner | NOT support Google. Only Bing, ASK and http://WoW.com (AOL) search engines. Can work with very long lists of queries/documents (in .txt files) |
ixss.warsong.pw | very old service for making XSS (Cross Site Scripting) faster and easier |
ReconFTW | tool designed to perform automated recon on a target domain by running the best set of tools to perform scanning and finding out vulnerabilities |
LFITester | Tool which tests if a server is vulnerable to Local File Inclusion (LFI) attack |
Oralyzer | Script that check website for following types of Open Redirect Vulnerabilities |
RobotTester | Simple Python script can enumerate all URLs present in robots.txt files, and test whether they can be accessed or not. |
SickNerd | tool for researching domain lists using Google Dorking. You can automatically load fresh dorks from GHDB and customize the maximum number of results |
CDNStrip | Very fast #go tool, that sorts the list of IP addresses into two lists: CDN and no CDN. |
H3X-CCTV | A simple command line tool with a Google Dorks list to find vulnerable CCTV cameras |
nDorker | Enter the domain name and get quick links to Google Dorks, Github dorks, Shodan dorks and quick links to get info about domain in Codepad, Codepen, Codeshare and other sites (“vendor dorking”) |
Scan4all | 15000+PoCs; 20 kinds of application password crack; 7000+Web fingerprints; 146 protocols and 90000+ rules Port scanning; Fuzzing and many many more |
Intezer Analyzer | Online tool for finding code injections, malware, unrecognized code and suspicious artifacts in: Files (up to 150 mb), URL, Memory dumps, Endpoints |
WEBOSINT | Simple #python tool for step-by-step collection of domain information using HackerTarget and whoisxmlapi APIs. |
KnockKnock | A very fast script written in #go that queries the ViewDNSInfo API (free, 500 results limit) and gets a list of domains related to target domain (which could theoretically belong to the same person or company) |
SQLI Dorks Generator | python script generates Google Dorks for SQL Injections for sites from the list. |
Dorks Hunter | A simple script to analyze domain using Google Dorks. It saves in file the results of checking the following categories Backup files, Database files, Exposed documents, Sub-subdomains, Login pages, SQL/PHP errors |
xnLinkFinder | Tool for discover endpoints for a given target. One of the most versatile tools of this type, with dozens of different settings. |
DATA Surgeon | A tool for extracting various sensitive data from text files and web pages. For example: - emails - phone numbers - API keys - URLs - MAC addresses - Hashes - Bitcoin wallets and more. |
JSLEAK | Extreme fast #Go tool to find secrets (emails, API keys etc), paths, links in the source code during domain recon. |
FUZZULI | Url fuzzing tool written on #go that aims to find critical backup files by creating a dynamic wordlist based on the domain. It’s using 7 different methods for creating wordlists: “shuffle”, “regular”, “reverse”, “mixed” etc |
DorkGenius | AI tool that generates “dorks” to find vulnerable sites and sensitive information for Google, Bing and DuckDuckGo based on their descriptions. It doesn’t work perfectly, but it’s an interesting idea. |
DorkGPT | Describe what you want to find in human language and get a Google query using advanced search operators. Suitable for “juicy info” and vulnerable sites, as well as for any other search tasks. |
XURLFIND3R | Find domain’s known URLs from: AlienVault’s, Open Threat Exchange, Common Crawl, Github, Intelligence X, URLScan, Wayback Machine |
LogSensor | #Python tool to discover login panels, and POST Form SQLi Scanning. Support multiple hosts scanning, targeted SQLi form scanning and proxies. |
SOC Multi Tool | Chrome Extension for quick: IP/Domain Reputation Lookup IP/ Domain Info Lookup Hash Reputation Lookup (Decoding of Base64 & HEX using CyberChef File Extension & Filename Lookup and more |
PyDork | Tool for automation collecting Google, Bing, DuckDuckGo, Baidu and Yahoo Japan search results (images search and suggestions). Note the huge(!) number of options for customizing search results. |
Link | Description |
---|---|
Scrappy! | One of the easiest to learn web scrapers I’ve seen (and quite fast at that). It allows you to extract all URLs, table fields, lists and any elements matching the given criteria from a web page in a second. |
find+ | Regex Find-in-Page Tool |
Google Chrome webpage Regexp search | |
Regex Checker | Search and highlight (in webpage): Emails, Phone numbers, Dates, Prices, Addresses |
moarTLS Analyzer | addon which check all links on the webpage and show list of non-secure links |
Scrape API | Proxy API for Web Scraping |
Try.jsoup.org | online version of HTML pasrer http://github.com/jhy/jsoup |
Investigo | A very simple and fast (written in #go) tool that searches for active links to social network accounts by username (or multiple usernames) |
REXTRACT | This extreme simple tool extracts the strings corresponding to a certain #regex from the html code of the list of URLs. |
Extract images | Extract pictures from any webpage. Analyze, sort, download and search in them by keywords. |
Contacts Details Scraper | Free contact details scraper to extract and download emails, phone numbers, Facebook, Twitter, LinkedIn, and Instagram profiles from any website. |
linkKlipper | The easiest extension to collect links from an open web page: - select links with Ctrl/Command key or download all; - filter links by extension or using Regular Expressions; - download in CSV/TXT. |
Listly | An extension that allows to collect all the data from a website into a table, quickly filter out the excess, and export the result to Excel/Google Sheet. |
EmailHarvester | A tool to collect emails registered on a certain domain from search results (google, bing, yahoo, ask) and save the results to a text file. Proxy support. |
Email Finder | Another tool to collect emails registered on a certain domain from search results (google, bing, baidu, yandex). Can be used in combination with EmailHarvester as the two tools produce different results. |
USCRAPPER | Simple #python tool for extracting different information from web pages: - email addresses - social media links - phone numbers |
Auto Scroll Search | A simple extension for Chrome that automatically scrolls a web page until a certain word or phrase appears on it (or until the stop button is pressed). |
GoGetCrawl | Search and download archived web pages and files from Common Crawl and Wayback Machine. |
Link | Description |
---|---|
Redirect Detective | tool that allows you to do a full trace of a URL Redirect |
Wheregoes.com | tool that allows you to do a full trace of a URL Redirect |
Spyoffers.com | tool that allows you to do a full trace of a URL Redirect |
Link | Description |
---|---|
Determines if website is not comply with EU Cookie Law and gives you insight about cookies installed from website before the visitors consent | |
Audits website cookies, online tracking and HTTPS usage for GDPR compliance | |
Webemailextractor.com | extract email’s and phone numbers from the website or list of website |
cookieserve.com | detailed website cookie analyze |
What every Browser knows about you | This site not only shows what information your browser provides to third-party sites, but also explains how it can be dangerous and suggests what extensions will help to ensure your anonymity. |
User Agent Parser | User Agent String can be found, for example, in the logs of your site (or someone else’s), in the source code of some CLI tools for #osint and many other places. |
Link | Description |
---|---|
Metagoofil | finds pdf/xlsx/docx files and other documents on the site/server, analyzes their metadata, and outputs a list of found user names and email addresses |
Aline | a very simple tool that simply downloads files of a certain type, located on a certain domain and indexed by Google. |
Goblyn | tool focused to enumeration and capture of website files metadata. It will search for active directories in the website and so enumerate the files, if it find some file it will get the metadata of file |
DORK DUMP | Looks for Google-indexed files with doc, docx, ppt, pptx, csv, pdf, xls, xlsx extensions on a particular domain and downloads them. |
VERY QUICK and SIMPLE metadata online editor and remover | |
AutoExif | A simple script to read and delete metadata from images and ACVH videos. |
DumpsterDiver | Tool can analyze big volumes of data and find some “secrets” in the files (passwords and hardcoded password, SSH, Azure and AWS keys etc) |
HACHOIR | One of the most powerful tools for work with files metadata with the most detailed settings. |
Link | Description |
---|---|
SEO Spyglass Backlink checker | |
Neilpatel backlinks analyzer | find out how many sites are linking to a certain web page |
Webmeup | Service for collecting information about backlinks to the site. Without registering an account it shows not everything, but a lot. To see more data (full text of link anchors, etc) for free, use the View Rendered Source extension: |
Link | Description |
---|---|
AppSumo Content Analyzer | Enter the name of the domain and find out for free its three most popular publications in social networks (for six months, a quarter, a month, or the last day) |
OpenLinkProfiles | Get backlinks by website URL. Filter and sort backlinks by anchor, context, trust, LIS and industry. |
Lookyloo | Webapp allowing to scrape a website and then displays a tree of domains calling each other (redirects, frames, javascript, css, fonts, images etc) |
Core SERP Vitals | adds a bit of information from CrUX API to the standard Google search results |
BGPView | web-browsing tool and an API that lets you gather information about the current state and structure of the internet, including ASNs, IP addresses, IXs, BGP Downstream & Upstream Peers, and much more |
Terms of Service Didn’t Read | find out what interesting privacy and confidentiality clauses are in the license agreements of popular websites and apps |
analyzeid.com | find websites with the same owner by domain name. Checking for email, Facebook App ID and nameserver matches |
MMHDAN | Calculate a fingerprint of a website (HTML, Favicon, Certificate in SHA1, SHA256, MD5, MMH3) and create the quick links to search it in IOT search engines |
Favhash | Simple script to calculate favicon hash for searching in Shodan. |
Favicon Hasher | Favicon.ico files hashes is a feature by which you can find domains related with your target. This tool generates hashes for all favicon.ico on the site (+ quick links to find them in Shodan, Censys, Zoomeye) |
FavFreak | #python tool for using favicon.ico hashes for finding new assets/IP addresses and technologies owned by a company. |
Hackertarget | 14 tools for gathering information about domain using Hackerarget API (http://hackertarget.com) |
AnalyticsRelationships | command line #tool for to search for links between domains by Google Analytics ID |
UDON | #go tool to find assets/domains based by Google Analytics ID |
Pidrila | Python Interactive Deepweb-oriented Rapid Intelligent Link Analyzer |
Adsense Identiicator Finder | this service finds other sites belonging to the same owner or company by Google Adsense ID |
Smart ruler | Simple #GoogleChrome extension (200 000 users) for those who like to explore the design of different sites |
SourceWolf | A tool for analyzing #javascript files. It finds all the variables, endpoints and social media links mentioned in the code in just a few seconds. |
Stylifyme | Tool for analyzing the style characteristics of a particular website. In the context of #osint, it will help when analyzing links between two sites (common rare design features may indicate common owner) |
Content Security Policy (CSP) Validator | Online service for checking the headers and meta tags of websites for compliance with security standards. It can help determine if a site is vulnerable to common vulnerabilities (XSS, clickjacking, etc). |
Nibbler | Free tool for comprehensive website analysis on more than ten different parameters. |
WebHackUrls | The simplest tool for URl recon with filter by keyword and saving results to file. |
Visual Site Mapper | A free online tool for generating site maps in graph form. Allows you to visually see the links between the pages of a website and estimate their number. |
WEBPALM | Command-line tool that traverse a website and generate a tree of all its webpages. Also it can scrape and extract data using #regex. |
Link | Description |
---|---|
@UniversalSearchBot | telegram bot finding information about email, russian phone number, domain or IP |
Domain Investigation Toolbox | gather information about domain with 41 online tools from one page. |
GoFindWhois | More than 180 online tool for domain investigaions in one. What’s not to be found here: reverse whois, hosting history, cloudfare resolver, redirect check, reputation analyze. |
Spyfu | tool to collect seo information about the domain, which provide a lot of data partly for free |
Spyse.com | domain investigation toolbox |
Spyse CLI | command line client for Spyse.com |
Domaintracker | webapp and mobile app, which helps you keep track of payment deadlines (expired dates) for domains (sends push notifications and notifications to email) |
Sputnik | Chrome extension for quick gathering info about IP, domain, hash or URL in dozens of different services: Censys, GreyNoise, VirusTotal, Shodan, ThreatMiner and many others. |
Whois Domain Search Tool | A tool that allows you to query whois data for a site name in several domain zones at once. |
IP Neighbors | Find the hosting neighbors for a specific web site or hostname |
The Favicon Finder | Instantly finds the favicon and all .ico files on the site, and then generates links to download them quickly. |
HostHunter | Tool to efficiently discover and extract hostnames providing a large set of target IP addresses. HostHunter utilises simple OSINT techniques to map IP addresses with virtual hostnames |
Tor Whois | |
Dnstwister | The anti-phishing domain name search engine and DNS monitoring service |
EuroDNS | Free whois data search service for long lists of domains (250 can be searched at a time, total number unlimited). The results show the status of the domain and a quick link to the full whois data. |
Source code search engine (315 million domains indexed). Search by title, metadata, javascript files, server name, location and more. | Source code search engine (315 million domains indexed). Search by title, metadata, javascript files, server name, location and more. |
Dnstwist | Command line anti-phishing domain name search engine and DNS monitoring service |
Ditto | Dsmall tool that accepts a domain name as input and generates all its variants for an homograph attack as output, checking which ones are available and which are already registered |
RADB | Provides information collected from all the registries that form part of the Internet Routing Registry |
IPinfo map | paste up to 500,000 IPs below to see where they’re located on a map |
Whois XML API Whois history database | |
Hakrawler | discover endpoints and assets |
Passive DNS search | |
Talos Intelligence Mail Server Reputation | |
netbootcamp.org/websitetool.html | access to 74 #tools to collect domain information from a single page |
HTTPFY | A fast #nodejs tool for gathering information about a domain or a list of domains. Response time, main page word count, content type, redirect location and many other options (view pic). |
Hussh | shell script for domain analyzing |
OPENSQUAT | Search newly registered phishing domain by keywords; Check it with VirusTotal and Quad9 DNS; |
Check any website to see in real time if it is blocked in China | |
@iptools_robot | univsersal domain investigation Telegram bot |
Raymond | Framework for gathering information about website |
Pulsedive | A partially free website research tool. Collects detailed information about IP, whois, ssl, dns, ports, threats reports, geolocation, cookies, metadata (fb app id etc). Make screenshots and many others |
Striker | Quick and simple tool for gathering information about domain (http headers, technologies, vulnerabilities etc). |
SiteBroker | Domain investigation #python tool |
DNSlytics | find out everything about a domain name, IP address or provider. Discover relations between them and see historical data |
FindMyAss (HostSpider) | Domain investigations toolkit |
Drishti | Nodejs toolkit for OSINT |
passivedns.mnemonic.no | DNS history search by IP-adress or by domain name |
Gotanda | Google Chrome extension. 56 tools for domain, ip and url investigation in one |
Ip Investigation Toolbox | type ip-adress once and gather information about it with 13 tools |
Crab | Well done and well designed port scanner, host info gatherer (include whois). |
MayorSecDNSScan | Identify DNS records for target domains, check for zone transfers and conduct subdomain enumeration. |
Cert4Recon | Very quick and simple subdomain enumeration using http://crt.sh. |
Miteru | Experimental phishing kit detection tool. It collects phishy URLs from phishing info feeds and checks each phishy URL whether it enables directory listing and contains a phishing kit (compressed file) or not |
Web Check | Get detailed report about IP or domain: Location SSL Info Headers Domain and host names Whois DNS records Crawl riles Cookies Server Info Redirects Server status TXT Config |
Link | Description |
---|---|
SubDomainsBrute | Very(!) fast and simple tool for subdomain bruteforce. It find 53 subdomains, scanned 31160 variations in 31 seconds. |
Anubis | Subdomain enumeration and information gathering tool |
Turbolist3r | An improved and accelerated version of famous sublist3r. Looks for subdomains in 11 sources (see picture). It’s possible to apply bruteforce (flag -b) |
DomE | Fast and reliable #python script that makes active and/or passive scan to obtain subdomains and search for open ports. Used 21 different #OSINT sources (AlienVault, ThreatCrowd, Urlscan io etc) |
CloudBrute | Tool to find target infrastructure, files, and apps on the popular cloud providers |
dnsReaper | TwiSub-domain takeover tool |
ALERTX | Very fast #go tool for search subdomains. For example, it fin 111 http://tesla.com subdomains in 0.003 seconds. |
Columbus Project | A fast, API-first subdomain discovery service with advanced queries. |
Link | Description |
---|---|
Cloudmare | Simple tool to find origin servers of websites protected by #Cloudflare, #Sucuri or #Incapsula with a misconfiguration DNS |
CloudUnflare | Reconnaissance Real IP address for Cloudflare Bypass |
Link | Description |
---|---|
RansomLook | “Yet another Ransomware gang tracker” (c) Group profiles, recent updates, forums and markets list + some stats. A real treasure cybercrime researchers. |
Whois Freaks | API which allows you to search Whois-database (430M+ domains since 1986) by keyword, company name or owner name |
Expireddomains.net | lists of deleted and expired domains (last 7 days) |
InstantDomainSearch | search for domains for sale |
WhoisDS.com | database of domains registered in the last day |
API Domaindumper | An interesting tool for researchers of IT history and data journalists. Just an FREE API that shows how many sites were registered in each domain zone on a given day (since January 1, 1990) |
ptrarchive.com | search by 230 billion DNS records retrieved from 2008 to the present. |
PeeringDB | Freely available, user-maintained, database of networks, and the go-to location for interconnection data. |
IQWhois | Search whois data by address, city, name, surname, phonenumber |
Link | Description |
---|---|
SimilarWeb | Detailed website traffic analyze |
Alexa | Keyword Research, Competitive Analysis, Website Ranking |
HypeStat Analyzer Plugin | Shows estimate daily website traffic, Alexa rank, average visit duration and used techhologies. |
vstat.info | Getting detailed info about website traffic (sources, keywords, linked sites etc) |
w3snoop | Getting detailed information about website: - general domain info; - valuation ($); - popularity; - traffic; - revenue; - security (WOT rating, McAfee WebAdvisor Rating etc) and more. |
Link | Description |
---|---|
WhatRuns | extension, which discover what runs a website: frameworks, Analytics Tools, Wordpress Plugins, Fonts. |
Built With | |
w3techs | |
Hexometer stack checker | |
Web Tech Survey | |
Awesome Tech Stack | |
Netcraft Site Report | |
Wappalyzer | |
Larger.io | |
CMLabs Tools | |
Snov.io technology checker | type name of #webdev technology (jquery, django, wordpress etc) and get the list of websites, which used it. |
Link | Description |
---|---|
View Rendered Source | The standard browser source code view did not display the actual source code. View Rendered Source extension solve this problem. It shows the html code after all JavaScript functions (full page load, page scrolling, and other user actions) are executed |
Retire.js | GoogleChrome extension for scanning a web app for use of vulnerable JavaScript libraries |
OpenLink Structured Data Sniffer | GoogleChrome extension which reveals structured metadata (Microdata, RDFa, JSON-LD, Turtle, etc.) embedded within HTML documents. |
SIngle File | GoogleChrome, Firefox and MicrosoftEdge addon to save webpage in single html file |
Dirscraper | OSINT scanning tool which discovers and maps directories found in javascript files hosted on a website |
Ericom Page Risk Analysis | Get a detailed report with links to CSS, Javascript, Fonts, XHR, Images and domains web pages |
SecretFinder | Tool for find sensitive data (apikeys, accesstoken,jwt,..) or search anything with #regexp on #javascript files |
Copy all links and image links to CSV or JSON | Download all links from current webpage in CSV (for open in #Excel) or JSON |
ArchiveReady | OSINT specialists most often use various web archives to analyze other people’s sites. But if you want your descendants to be able to find your own site, check whether the code of its pages is understandable for crawlers of web archives. |
Talend API Tester Free Edition | tool that allows to quickly test requests to different APIs directly in the browser, send requests and inspect responses, validate API behavior |
uMatrix | Shows all the domains to which the site connects at runtime and allows you to block different sources at will. Useful for ad blocking, tracking, data collection, and various experiments. |
Open Link Structured Data Sniffer | View webpage details info in Google Chrome: RDFa linked data (http://rdfa.info) POSH (Plain Old Semantic HTML) Microdata RSS |
REGEXPER | A simple and free online tool for visualizing regular expressions. Just copy the regular expression to the site and convert it into a detailed and understandable graphical scheme. |
LinkFinder | Simple tool discover endpoints and their parameters in JavaScript files. It’s possible to discover individual URLs, groups of URLs and directories. Supports regular expressions. |
Link | Description |
---|---|
Broken Link Hijacker | Crawls the website and searches for all the broken links (in “<a href” and “<img src”). |
Broken Link Checker | shows which links on the page are giving out errors. It helps to find sites that have been working recently but are no longer working. |
Open Multiple Links ☷ One Click | |
Check my links | Old and large lists of tutorials or tools often have many inactive links. This extension will help mark inactive links in red and save you time checking them out. |
Link | Description |
---|---|
Get Link Info | |
Unshorten.me | |
Urlxray | |
Unshorten.it |
Link | Description |
---|---|
Headlines.Sharethrough.com | analyzes headlines according to four indicators (strenghts, suggestions, engagement, impression) and gives a score from 1 to 100 |
Wordtune.com | Provide a link to the text of the article or upload a PDF document. In response, the service will give a brief retelling of the main ideas of the text. |
Link | Description |
---|---|
Online Loudness Meter | allows to estimate the volume of noises in the room or to analyze the volume of sounds in a recording file. |
Voice Stress Test | tool analyzes the voice and determines a person’s stress level. |
AHA Music | A very simple tool that helps you determine what track is playing in the current browser tab. What I like best about it is that it works when the sound is turned OFF (albeit with a slight delay) |
MP3 Spectrum Analyzer |
Link | Description |
---|---|
soundeffectssearch.com | find a sound library |
Vocal Remover | An AI-based service that removes vocals from a song, leaving only the music. It works amazingly well. |
Link | Description |
---|---|
Scene detection | Determine the timecodes on which there is a change of scenery in the video and significantly save time watching it |
Get text from video | Transcribe uploaded video file |
EfficientNetV2 | DeepFake Video Detector |
Downsub | Extract subtitles from video |
Subtitlevideo | Extract subtitles from video |
FlexClip | Get video metadata |
Pix2Pix-Video | Edit video by prompt |
unscreen.com | remove the background from an uploaded video |
TextGrab | Simple #Chrome extension for copying and recognizing text from videos (#YouTube, #GoogleMeetup etc.) |
Lossless Cut | #javascript #opensource swiss army knife for audio/video editing. |
Movio.la | Create spoken person video from text |
Tagrum | Upload a video file to the site or leave a link to the video. Wait a few minutes. Get a subtitled version of the video in English (other languages will probably be available later). |
Scene Edit Detection | A tool to help speed up and automate your video viewing. It highlights the frames where a new scene begins and allows you to quickly analyze the key semantic parts of the video. |
Link | Description |
---|---|
News Myseldon | from the photo looks for famous and little-known (like minor officials) people |
Ascii2d.net | Japanese reverse image search engine for anime lovers expose image properties, EXIF data, and one-click download |
Searchbyimage.app | search clothes in online shops |
Aliseeks.com | search items by photo in AliExpress and Ebay |
lykdat.com | clothing reverse image search services |
IQDB.org | reverse image search specially for anime art |
pic.sogou.com | chinese reverse image search engine |
Same Energy | reverse image search engine for finding beautiful art and photos in the same style as the original picture |
Revesearch.com | allows to upload an image once and immediately search for it in #Google, #Yandex, and #Bing. |
Image Search Assistant | searches for a picture, screenshot or fragment of a screenshot in several search engines and stores at once |
Pixsy | allows to upload pictures from computer, social networks or cloud storages, and then search for their duplicates and check if they are copyrighted |
EveryPixel | Reverse image search engine. Search across 50 leading stock images agencies. It’s possible to filter only free or only paid images. |
openi.nlm.nih.gov | Reverse image search engine for scientific and medical images |
DepositPhotos Reverse Image Search | tool for reverse image search (strictly from DepositPhoto’s collection of 222 million files). |
Portrait Matcher | Upload a picture of a face and get three paintings that show similar people. |
Image So Search | Qihoo 360 Reverse Images Search |
GORIS | Command line tool for Google reverse image search automation. It can find links to similar pictures by URL or by file. |
Pill Identifier | How to know which pill drug is pictured or accidentally found on the floor of your home? Use a special online identifier that suggests possible variations based on colour, shape and imprint. |
Logobook | help to see which companies have a logo that looks like a certain object. You can use the suggested variants to geolocate photo. |
Immerse Zone | Reverse Image Search Engine. Search by uploaded image or URl; Search by sketch (it can be drawn directly in the browser); Search by quote (can be selected from the catalog) |
Lexica | Download the image to find thousands Stable Diffusion AI artworks that are as similar to it as possible. You can also search by description and keywords. |
Numlookup Reverse Image Search | The results are very different from Yandex Images and Google Lens search results, as the service only searches for links to exact matches with the original picture. |
Google Reverse Image Search Fix | |
Google lens is not too user friendly for investigations. But this tool will help you get back to the old Google Image Search. (in case of problems, upload images to http://Postimages.org) |
Link | Description |
---|---|
Theinpaint | One of the best (and free) online photo object removal tools I’ve ever seen. Just highlight red on the photo and press Erase. Then do it again, and again, and again (until you get the perfect result). |
GFPGAN | Blind face restoration algorithm towards real-world face images. Restores blurry, blurred and damaged faces in photos. |
Remini AI Photo Enhancer | Tool allows to restore blurry faces to photos. |
Letsenhance | Online #AI tool to increase image resolution (x2, x4, x8) without quality loss. 100% automatic. Very fast. |
Media IO Watermark Remover | Select the area and mark the time frame in which you want to remove the object. Works for barely visible watermarks as well as for bright and large objects. |
Remove.bg | Remove background from image with AI |
Watermarkremover | Remove watermark from image with AI |
Instruct Pix2pix | Image editing with prompt |
Link | Description |
---|---|
SN Radar VK Photo Search | |
BBC News Visual Search | Enter the name of the item and the service will show in which news stories and at what time interval it appeared |
Link | Description |
---|---|
Aperislove | Online steganography tool: PngCheck,Strings,Foremost,Binwalk,ExifTool,Outguess,Steghide,Zsteg,Blue/Green/Red/Superimposed |
Sherloq | open source image #forensic toolset made by profesional photograph Guido Bartoli |
Image Color Picker | pick color (HEX or RGB) from image or website screenshot |
Find and Set Scale From Image | |
Image Forensic (Ghiro Online) | |
compress-or-die.com/analyze | get detail information about images (exif, metatags, ICC_Profile, quantanisation tables) |
aperisolve.fr | Deep image layers (Supperimposed, Red, Green, Blue) and properties (Zsteg, Steghide, Outguess, Exif, Binwalk, Foremost) analyze tool. |
Dicom Viewer | view MRI or CT photo online (.DCM files) |
Caloriemama | AI can identify the type of food from the photo and give information about its caloric value. |
BetterViewer | #Google Chrome extension for work with images. Right click on the picture and open it in new tab. You will get access to the following tools: Zoom, Flip, Rotate, Color picker, Extract text, Reverse image search, QR code scanner and much more |
PhotoOSINT | A simple extension that checks in a couple of seconds if a web page contains images that have not had their exif data deleted. |
Perceptual image analysis | Chrome extension for quick access to image #forensic tools: Metadata Levels Principal Component Analysis Slopes Error Level Analysis |
Plate Recognizer | Online tool to recognise number plates on blurred pictures. Sometimes it may not work accurately, but it is valuable for identifying the country when the flag is not visible. |
Street clip | AI, which determines from a photo the likelihood that it was taken in a particular country. (don’t forget to change the list of countries for each photo⚠️) |
Link | Description |
---|---|
EXIF-PY | get exif data of photos thrue command line |
Exif.app | Press “Diff check button”, upload two graphical images and get a comparison table of their metadata. The differences are highlighted in yellow |
Image Analyzer Addon | View all images on a page and expose image properties, EXIF data, and one-click download |
Online metadata viewer and editor | High-quality and well-made. Support docx, xlsx, msg, pptx, jpeg, vsd, mpp. |
Scan QR Code | While determining the location of the photo, sometimes the research of QR codes on the road poles, showcases and billboards helps a lot. This service will help to recognize a QR-code by a picture |
Identify plans | |
Forensicdots.de | find “yellow dots” (Machine Identification Code) in printed documents |
Image Diff Checker | |
Vsudo Geotag Tool | tool for mass geotagging of photos |
exifLooter | Quick #go tool to automate work with EXIF data |
PYMETA | A tool that searches (using Google, Bing etc.) for documents in the domain, analyses their metadata and generate a report in CSV format. |
Link | Description |
---|---|
Face Recognition | facial recognition api for Python and the command line |
Facial composite (identikit) maker | |
Search4faces.com | search people in VK, Odnoklassniki, TikTok and ClubHouse by photo or identikit |
Telegram Facemath bot | searching for a face among the archive of photographs from public events in Kazakhstan |
Link | Description |
---|---|
WhatTheFont | |
WhatFontIs | |
Font Squirrel | |
Font Spring | |
Identifont.com | |
LikeFont.com |
Link | Description |
---|---|
Wallet explorer | bitcoin wallet transaction history |
Blockpath.com | viewing bitcoin wallet transactions as a graph |
Cryptocurrency alerting | track spending and deposits in Bitcoin and Ethereum wallets |
Learnmebitcoin.com | find transactions between two Bitcoin adresses |
Coinwink.com | allows you to set up email notifications in case Bitcoin (or other #cryptocurrency) rate rises (falls) above (below) a certain value |
BlockCypher | Blockchain explorer for Bitcoin, Ethereum, Litecoin, DogeCoin, Dash. Getting into about address, transactions and block hashes, block number or wallet name. |
Bitcoin Abuse Database | A simple tool to check whether a Bitcoin address has been used for ransomware, blackmailers, fraudsters and view incident reports. |
BreadCrumbs | Enter your BTC or ETH wallet number to see a graph of associated wallets (with transaction history and lot of other details). |
A TON of Privacy | Tool for OSINT investigations on TON NFTs. Search info (balance, scam status etc) by Telegram nickname, phone number or domain. |
Wallet Labels | Search across more than 7.5M #Ethereum addresses labeled to easily identify wallets and exchange |
Link | Description |
---|---|
Telegago | Telegram search engine |
Commentgram CSE | search by Telegram comments |
Telegram Message Analyzer | Export #Telegram chat (with Windows version of Telegram app) and get detailed analyze of it (message count, average message count per day, word frequency etc) |
@SangMataInfo_bot | forward a message from the user and find out the history of their name in Telegram |
@tgscanrobot | telegram bot to show which telegram groups a person is member of. |
@telebrellabot | telegram bot to show which telegram groups a person is member of (users in DB: 4019357, groups in DB: 1745). |
Telegram Nearby Map | Discover the location of nearby Telegram users on OpenStreetMap |
Telescan | search users in groups (and in which groups is the user) by id, username or phone number (if it’s in your contacts) |
Tgstat | one of the largest directories of Telegram channels, which has detailed information about the growth of the audience, its engagement and mentions of a particular channel in various sources. |
Telescan | search users in groups (and in which groups is the user) by id, username or phone number |
Telegcrack.com | search in telegra.ph |
@VoiceMsgBot | telegram bot to which you can send voice messages and it converts them into text |
@transcriber_bot | telegram bot, which can convert to text voice messages in 24 languages (view pic) |
Telegramchannels.me | Ratings of the 100 largest (by number of subscribers) #Telegram channels for different languages |
@YTranslateBot | type text or resend messages to Telegram bot for translate it. |
Link | Description |
---|---|
whatsanalyze.com | analyzes #WhatsApp group message statistics (world cloud, timeline, message frequency) |
chatvisualizer.com | another #WhatsApp chat analyzer. |
Watools.io | download whatsapp profile picture |
WAGSCRAPER | Scraps Whatsapp Group Links From Google Results And Gives Working Links (with group names and images) |
Link | Description |
---|---|
Kikusernames.com | Kik messenger username search |
Link | Description |
---|---|
Slack Pirate | tool developed in Python which uses the native Slack APIs to extract ‘interesting’ information from a Slack workspace given an access token |
Link | Description |
---|---|
vedbex.com/tools/email2skype | finding a Skype account by email |
SkypeHunt | A tool for finding Skype users by nickname. Shows a list of users with date of birth, year of account creation, country, avatar link, and other information. |
Link | Description |
---|---|
Grep.app | regExp search in Github repositories |
Searchcode.com | Search engine for @github, @gitlab, @bitbucket, @GoogleCode and other source code storages |
Code Repository Google CSE | Google CSE for search 15 code repository services |
Libraries.io | search by 4 690 628 packages across 32 different package managers |
The Scraper | Simple tool for scrapping emails and social media accounts from the website’s source code. |
CloudScraper | Scrape URL’s of the target website and find links to cloud resources: Amazonaws, Digitaloceanspaces, Azure (windows net), Storage.googleapis, Aliyuncs |
Complete Email Scraper | Paste the link to the site and the bot finds the sitemap. The bot then goes through all the links on the site looking for email addresses (strings contains @). |
Python Code Checker | quick find errors in code |
Github Search | collection of Github investigation command line tools. Explore users, employes, endpoints,surveys and grab the repos |
Sploitus | exploit and hacker’s tools search engine |
Leakcop | service that monitors in real-time the illegal use of source code from certain repositories on Github |
Github Artifact Exporter | provides a set of packages to make exporting Issues easier useful for those migrating information out of Github |
PublicWWW | webpages source code search engine |
SayHello | #AI Search engine for developers. Type a question (e.g. how to do something) in normal human language and get code examples in response. |
SourceGraph | universal code search engine |
NerdyData | html/css/code search engine |
YouCode | Add free, privacy source code search engine with popular tech sites snippets in search results: Mozilla Developer Network; Github; W3 Schools; Hacker News; Read the Docs; Geek for Geeks |
De4js | HTML/JS deobfuscator |
TIO RUN | Run and test code written in one of 680 programming languages (260 practical and 420 recreational) directly in your browser |
Explain Shell | this site will help you quickly understand terminal commands-lines from articles, manuals, and tutorials |
Codesandbox | Great online environment for creating, testing, and researching written JavaScript tools (and #OSINT has many: social-analyzer, opencti, rengine, aleph). |
shellcheck.net | analyzes command-line scripts and explains in detail the errors found in them |
Regular Expression Analyzer | super tool for those who forget to leave comments on their code or have to deal with someone else’s code. |
Developer search tool | Take the art of copy and paste from Stack Overflow to a new level of speed and productivity |
HTTP Cat | free #API to get pictures with cats for different HTTP response codes |
Run PHP functions online | |
HTTPIE.IO | command-line HTTP client |
The Missing Package Manager for macOS (or Linux) | |
Gitpod.io | run code from repositories on Github directly in a browser |
Thanks | A simple script that analyzes the #opensource products used in your project and displays a list of links to pages for financial support for their developers. |
The Fuck | Simple app which corrects your previous console commands. |
API Guesser | Enter the API key or token to find out which service it can be used by. |
Cheat․sh | Timesaving tool that allows cheat sheets to be loaded directly into the command line (or Sublime Text/IntelliJ IDEA) using the curl command (run after installation). |
NGINXconfig | Online tool to configure stable and secure #nginx server. Select the options and then download the config files. |
SPF Explainer | Simple online tool that explain in details Sender Policy Framework (email authentication standard) record of target domain. |
TLDR | A tool that is a great time-saver when working with the command line. Enter “tldr command name” and get a brief description with examples of how to use it. |
AWK JS | AWK (script language) is a powerful command line tool for extracting data from texts and auto generating texts. For those who don’t use CLI yet (or just want to solve some problem without leaving browser) a good alternative is an online version of awk. |
PLDB | A huge knowledge base of 4050 programming languages. For each language you can see its place in the ranking, the number of users and repositories, the history of creation, linguistic features + huge lists of books and articles |
Link | Description |
---|---|
fnd.io | alternative search engine for the AppStore and iTunes |
GlobalSpec Engineer Search Engine | |
URVX | Based by Google Custom Search tool for searching in popular cloud storages service |
Mac Address Search Tool | search by full Mac adress, part of Mac adress (prefix), vendor name or brand name |
Hashatit.com | hastag searchengine. Search in twitter, instagram, facebook, youtube, pinterest |
Goo.ne.jp | beautiful japanese search engine |
Peteyvid | search engine for 70 video hosting sites |
3DFindit | tool for searching 3D models by 3560 3D CAD (computer aided design) and BIM (Building Information Model) catalogs. |
Filechef | tool for searching different type of files (videos, application, documents, audio, images) |
Find Who Events | Google CSE for finding events by location (keywords) in #Facebook, #Eventbrite, #Xing, #Meetup, #Groupon, #Ticketmaster, #Yepl, #VK, #Eventective, #Nextdoor |
Listennotes | Podcast Search Engine |
thereisabotforthat.com | search by catalog of 5151 bots for 17 different apps and platforms |
BooleanStringBank | over 430+ strings and 3553+ keywords |
Google Unlocked | browser extension uncensor google search results |
Iconfinder.com | Icons Search Engine |
Google Datasets Search | |
Gifcities.org | GIF Search Engine from archive.org |
Presearch.org | privately decentralized search engine, powered by #blockchain technology |
milled.com | search engine for searching through the texts of email marketing messages |
Orion | open-Source Search Engine for social networking websites. |
PacketTotal | .pcap files (Packet Capture of network data) search engine and analyze tool. Search by URL, IP, file hash, network indicator, view timeline of dns-queries and http-connections, download files for detailed analyze. |
SearXNG | Free internet metasearch engine which aggregates results from more than 70 search services. No tracking. Can be used over Tor |
Yeggi | 3D printer model search engine. There are more than 3 million 700 thousand objects in the database. There are both paid and free. |
Memegine | A search engine to find memes. Helps you find rare and obscure memes when Google fails. |
ChatBottle | A search engine to find the weirdest and most highly specialised chatbots for all occasions. There are over 150,000 bots in the database. Of these, 260 are chatbots related to cats for Facebook Messenger. |
search3 | New privacy search engine (no trackers + just a little bit of ads). With NFT search tab and cryptocurrencies realtime info tab |
DensePhrase | This tool searches phrase-level answers to your questions or retrieve relevant passages in real-time in 5 million Wikipedia articles. |
metaphor systems | A search engine with a new and unusual search method. This AI “trained to predict the next link (similar to the way GPT-3 predicts the next word)”. Enter a statement (or an entire dialog) and Metaphor will end it with the appropriate link. |
Link | Description |
---|---|
S | Search from command line in 106 different sources |
searchall.net | 75 fields for quick entry of queries to different search services on one page |
Query-server | A tool that can send queries to popular search engines (list in picture) and return search results in JSON, CSV or XML format. |
Search Engines Scraper | Collects search results in text files. It’s possible to search Google, Bing, DuckDuckGo, AOL and other search engines. |
Trufflepiggy (Context Search) | Search selected text in different search engines and sites from Google Chrome context menu. |
Search Patterns | A tool that analyzes autosuggest for #Google and #YouTube search queries (questions, prepositions, comparisons, and words starting with different letters of the alphabet). |
Searcher | A very fast and simple #go tool that allows you to collect search results from a list of keywords in the following search engines: Ask Bing Brave DuckDuckGo Yahoo Yandex |
Startpage Parser | Startpage.com search engine produces similar (but not identical) results to Google’s, but is much less likely to get banned. This #python tool allows to scrape big amounts of results without using proxies. |
BigSearch | Google Chrome and Firefox addon for quick access to dozens of online search tools: general search engines, video hosts, programming forums, translators and much more. |
Link | Description |
---|---|
Onion Search | |
TheDevilsEye | Search links in #darknet (.onion domain zone) from command line without using a Tor network. |
Onion Search Engine (+maps, mail and pastebin) | |
KILOS Darknet Search Engine | |
Ahmia Link Graph | Enter the name of the site in the .onion domain zone and see what other sites in the #onion domain zone it is associated with. |
Pasta | Pastebin scraper, which generates random paste addresses and checks if there is any text in them. |
Dark Web Scraper | Specify the start link and depth of crawl to research the .onion website for sensitive data (crypto wallets, API keys, emails, phone numbers, social media profiles). |
Pastebin-Bisque | Command line #python tool, which downloads all the pastes of a particular #Pastebin user. |
Dark Fail | List of several dozen services in the .onion domain (marketplaces, email clients, VPN services, search engines) with up-to-date links and status (online/offline) |
Darkweb archive | Free simple tool that allows you to download website files in the .onion domain zone as an archive with html, css, javascript and other files. |
Link | Description |
---|---|
buckets.grayhatwarfare.com | Amazon Public Buckets Search |
osint.sh/buckets | Azure Public Buckets Search |
Link | Description |
---|---|
Firebounty | Bug bounty search engine |
BugBountyHunting | Bug bounty hunting search engine |
Leakix | A search engine for web services where common types of vulnerabilities have been found. |
Network Entity Reputation Database (NERD) | database of malicious entities on the Internet) It’s possible to search by IP, domain, subdomain, and other parameters, including even the country code (useful for large-scale research) |
Inventory Raw Pm | Search by best #cybersecurity tools, resources, #ctf and #bugbounty platforms. |
RFC.fyi | Browseable, searchable RFC index |
Hacker News Algolia | Hacker News search engine with filters. Useful for finding all mentions of a product or person. |
Control Validation Compass | Database of 9,000+ publicly-accessible detection rules and 2,100+ offensive security tests, aligned with over 500 common attacker techniques. |
Hacking the Cloud | Encyclopedia of the attacks/tactics/techniques that offensive security professionals can use on cloud exploitation (#AWS, #Azure, #GoogleCloud, #Terraform,) |
ExploitAlert | One of the largest searchable databases of information on exploits (from October 2005 to October 2022). Updated daily. |
I strongly recommend to use it strictly for research purposes and to search for files that cannot be legally purchased anywhere else. Respect the copyrights of others.
Link | Description |
---|---|
Napalm FTP Indexer | |
Cloud File Search Engine | search music, books, video, programs archives in 59 file-sharing sites (#meganz, #dropark, #turbotit etc) |
Filesearching | old FTP servers search engine with filter by top-level domain name and filetype |
Snowfl.com | torrent aggregator which searches various public torrent indexes in real-time |
Torrents.me | torrent aggregator with search engines and list of new torrents trackers |
Open Directory Finder | Tool for search files based by Google CSE |
Mamont’s open FTP indexer | |
Orion Media Indexer | Lightning Fast Link Indexer for Torrents, Usenet, and Hosters |
Library Genesis | “search engine for articles and books, which allows free access to content that is otherwise paywalled or not digitized elsewhere” (c) |
Sunxdcc | XDCC file search engine |
Xdcc.eu | XDCC search engine |
URVX.com | File storage search engine based by Google CSE |
DDL Search | search engine for Rapidshare, Megaupload, Filefactory, Depositfile, Fileserve and a lot of other file sharing sites |
Sharedigger | search files in popular file hosting services |
Xtorx | fast torrents search engine |
Torrent Seeker | torrents search engine |
FreeWare web FTP file search | ftp servers search engine |
Search 22 | access to 10+ ftp search tools from one page |
Heystack | Service for finding public files in Google Docs, Google Sheets and Google Slides. It’s possible to filter results by topic group and creation date. |
Link | Description |
---|---|
DuckDuckGo !bangs | extension that add DuckDuckGo bang buttons to search results and search links in the context menu |
DDGR | Search in DuckDuckGo via the command line: - export the results to JSON; - bangs support - location setting |
Link | Description |
---|---|
Google Search Scraper | Crawls Google Search result pages (SERPs) and extracts a list of organic results, ads, related queries and more. It supports selection of custom country, language and location |
Googler | command line google search tool |
goosh.org | online google search command line tool |
Web Search Navigator | extension that adds keyboard shortcuts to Google, YouTube, Github, Amazon, and others |
Overload Search | Advanced query builder in #Google with the possibilities: change the language and country of your search, disable safe search,disable personalization of search results (“filter bubble”) |
Google Autocomplete Scraper | One of the best ways to learn more about a person, company, or subject is to see what people are more likely to type in a search engine along with it. |
SDorker | Type the Google Dork and get the list of the pages, that came up with this query. |
XGS | allows you to search for links to onion sites using Google Dorks (site:http://onion.cab, site:http://onion.city etc) |
Google Email Extractor | Extract emails from Google Search Results |
SEQE.me | online #tool for constructing search queries using advanced search operators simultaneously for five search engines |
Bright Local Search Result Checker | shows what #Google search results look like for a particular query around the world (by exact address) |
Auto Searcher | One by one types words from a given list into the search bar of #Google, #Bing, or another search engine |
2lingual.com | google search in two languages simultaneously in one window |
I search from | allows you to customize the country, language, device, city when searching on Google |
Anon Scraper | Search uploaded files to AnonFile using Google |
Search Commands | Google Chrome extension provides a Swiss-knife style commands tool inside your browser’s address bar to enhance your search experience |
Boolean Builder theBalazs | Google Sheet to tool for constructing Google X-Ray search queries. |
Yagooglesearch | “Simulates real human Google search behavior to prevent rate limiting by Google and if HTTP 429 blocked by Google, logic to back off and continue trying” (c) |
Google Word Sniper | Simple tool to make easier Google queries with the advanced search operator AROUND(). |
OMAIL | An online tool that extracts and validates emails from Google and Bing search results (by keyword or domain). Partly free (200 extracts per search) |
Link | Description |
---|---|
Greynoise.io | |
fofa.so | |
Thingful.net | |
TheLordEye | Tool that searches for devices directly connected to the internet with a user specified query. It returns results for webcams, traffic lights, routers, smart TVs etc |
Netlas.io | Search engine for every domain and host available on the Internet (like Shodan and Censys): - search by IP, domain DNS-servers, whois info, certificates (with filtering by ports and protocols) - 2500 requests/month free; - API and python lib “netlas”. |
CriminalAPI | Search engine for all public IPs on the Internet. Search by (for ex): html title, html meta tags and html keyword tags; whois city and country; ssl expired date; CVE id and MANY more |
FullHunt | Attack surface database of the entire Internet. Search info by domain, ip, technology, host, tag, port, city and more. |
Hunter | Search engine for security researchers (analog Shodan, Censys, Netlas). Search by domain, page title, protocol, location, certificates, http headers, ASN, product name and more. |
Link | Description |
---|---|
Quick Cache and Archive search | quick search website old versions in different search engines and archives (21 source) |
Trove | australian web archive |
Vandal | extension that makes working with http://archive.org faster, more comfortable, and more efficient. |
TheOldNet.com | |
Carbon Dating The Web | |
Arquivo.pt | |
Archive.md | |
Webarchive.loc.gov | |
Swap.stanford.edu | |
Wayback.archive-it.org | |
Vefsafn.is | |
web.archive.bibalex.org | |
Archive.vn | |
UKWA | archive of more than half a billion saved English-language web pages (data from 2013) |
Link | Description |
---|---|
The Time Machine | Tool for gathering domain info from WayBackMachine: - fetches subdomains from waybackurl; - search for /api/JSON/Configuration endpoints and many more (view pic) |
Web Archives | extension for viewing cached web page version in 18 search engines and services |
EasyCache | quick search website old versions in different search engines and archives |
cachedview.b4your.com | quick search website old versions in different search engines and archives |
Internet Archive Wayback Machine Link Ripper | Enter a host or URL to retrieve the links to the URL’s archived versions at http://wayback.archive.org. A text file is produced which lists the archive URLs. |
Waybackpack | download the entire #WaybackMachine archive for a given URL. You can only download versions for a certain date range (date format YYYYMMDDhhss) |
TheTimeMachine | Toolkit to use http://archive.org to search for vulnerabilities |
Waybackpy | If you want to write your own script to work with http://archive.org, check out the #python library Wayback Machine API. You can use it to quickly automate the extraction of all sorts of website data from the webarchive. |
Archivebox | Create your own self-hosted web archive. Save pages from browser history, bookmarks, Pocket etc. Save html, js, css, media, pdf and other files |
WaybackPDF | Collects a list of saved PDFs for the given domain from http://archive.org and downloads them into a folder. |
Archive-org-Downloader | A simple #python script for downloading books from http://archive.org in PDF format. You can adjust image resolution to optimize file size and work with link lists. |
WayMore | Search archived links to domain in Wayback Machine and Common Crawl (+ Urlscan and Alien Vault OTX). |
Wayback Keywords Search | A tool that allows you to download all the pages of a particular domain from http://archive.org for a particular month or day, and quickly do a keyword search on those pages. |
Link | Description |
---|---|
Warcat | My favorite (because it’s the easiest) tool for working with Warc files. It allows you to see the list of files in the archive (command “list”) and unpack it (command “extract”). |
Replayweb | If the warc file is small, you can view its contents with this extreme simple online tool. Also it’s possible to deploy ReplayWeb on your own server |
Metawarc | Allows you to quickly analyze the structure of the warc file and collect metadata from all the files in the archive |
Webrecorder tools | Archiving various interesting sites is a noble and useful activity for society. To make it easier for posterity to analyze your web archives, save them in Warc format with an online tool |
GRAB SITE | Af you need to make a Warc archive out of a huge site with a lot of different content, then it is better to use this #python script with dozens of different settings that will optimize the process as much as possible. |
har2warc | Convert HTTP Archive (HAR) -> Web Archive (WARC) format |
Link | Description |
---|---|
UK National Archives | search in the catalogue of United Kingdom “The National Archives” |
Directory of Open Access Journals | Search by 16 920 journals, 6, 588, 661 articles, 80 lanquages, 129 countries |
National Center for Biotechnology | unique tool to search 39 scientific databases (Pubmed, SRA, OMIN, MedGen etc) from one page |
industrydocuments.ucsf.edu | digital archive of documents created by industries which influence public health (tobacco, chemical, drug, fossil fuel) |
Offshor Leaks | Search through various databases of leaked documents of offshore companies |
Vault.fbi.gov | Vault is FOIA Library, containing 6,700 documents that have been scanned from paper |
Lux Leaks | — the name of a financial scandal revealed in November 2014 by a journalistic investigation. On this site you will find documents related to more than 350 of the world’s largest companies involved in this story |
RootsSearch | Quick search service for five sites with genealogical information (as well as births, weddings and deaths/burials) |
Newspaper navigator | Keyword search of a database of 1.5 million newspaper clippings with photos from the Library of Congress database. It’s possible to filter results by year (1900 to 1963) and state. |
Anna’s Archive | Search engine of shadow libraries: books, papers, comics, magazines (IPFS Gateway, Library Genesis etc). |
World Cat | Enter the name of the paper book and find out which public libraries near you can find it. Works for the USA, Australia and most European countries. |
DailyEarth | Worldwide catalog of daily newspapers (since 1999). 52 USA states. 73 countries. |
visLibri | World’s largest search engine for old, rare & second-hand books. Search across 140+ websites worldwide.(Ebay, Amazone, Booklooker, Catawiki, Antiqbook etc) |
FACTINSECT | Free online tool for automating #factchecking. In order to confirm or deny some information, the service provides several arguments with references to information sources. |
Link | Description |
---|---|
ConnectedPapers | A tool for gathering information about academic papers. It shows a large graph of references to other articles that are present in the text and clearly see the connections between different authors. |
AcademicTree | A tool for finding links between scientists (including little-known ones). 150000+ people in database (in all sections combined). Select a field of science. Enter a person’s name. See a tree of their teachers and students |
clinicaltrials.gov | 433,207 research studies in 221 countries. For people who have a difficult-to-treat disease, this registry will help them learn about recently developed drugs and treatments and get contacts of organizations that are researching a particular disease. |
Elicit | AI research assistant. Find answers to any question from 175 million papers. The results show a list of papers with summaries + Summary of the 4 most relevant papers. |
ExplainPaper | AI is a tool to make reading scientific articles easier. Highlight a phrase, sentence or whole paragraph to get its simple and detailed explanation with #AI. |
Bielefeld Academic Search Engine | Search across 311 million 481 thousands documents (most of them with free access). Search by email, domain, first/last name, part of address or keywords. |
Scite.ai | Enter the article title or DOI to get a list of publications that cite it. Results can be filtered by type (book, review, article), year, author, journal and other parameters. |
Scholarcy | AI papers summarizer. Upload the file or copy the access URL to the article to get: Key concepts; Abstract; Synopsis; Highlights; Summary; Links to download tables from paper in Excel. |
Research Rabbit | Find articles and view its connections - similar works, references, citations and more |
Trinka | A partly free online tool to help you prepare a research paper for publication: AI Grammar; Checker (made especially for scientific papers); Consistency checker; Citation checker; Plagiarism checker; Journal founder |
Zendy.io | Discover academic journals, articles, & books on one seamless platform. Search keyword, authors, titles ISBN, ISSN etc |
Scinapse.io | Academic Search Engine. Search by 48000 journals |
Argo Scholar | A tool for analysing connections between research articles |
INCITEFUL | Enter paper title, DOI, PubMed URl, arXiv URL to build a graph of links between the research article and other publications (who it cites and who cites it) |
PaperPanda | In recent years it has become increasingly difficult to find scientific articles. To download their full versions, websites require registration or payment. This extension finds freely available PDF versions of articles in one click. |
Link | Description |
---|---|
Afrobarometer | huge database of the results of sociological surveys conducted in African countries over the last 20 years |
Arabbarometer | database of the results of sociological surveys conducted in the Arab countries of Africa and the Middle East in 2007-2018 |
dataset.domainsproject.org | dataset of 616 millions domains (16GB!) |
Stevemorse.org | Searching the Social Security Death Index |
UK Census Online | Database of deaths, births, and marriages. From 1841 to the beginning of the 21st century. Only the first and last names can be searched. |
IPUMS Variable Search | A service for finding variables in data from sociological surveys in 157 countries from 1960 to 2022. You can find completely rare and surprising things there, like a survey to count the number of bananaboat owners in Zambia. |
Link | Description |
---|---|
CrackStation.net | password hash cracker |
Leak peek | by pasword search part of email and site, where this password is used |
Reference of default settings of different router models (IP, username, password) | |
Many Passwords | Default passwords for IoT devices and for web applications (for ex. MySQL and PostgreSQL admin panels) |
PassHunt | Command line tool for searching of default credentials for network devices, web applications and more. Search through 523 vendors and their 2084 default passwords |
BugMenot | login and passwords for public accounts in different services |
Search-That-Hash | Python tool for automating password hash detection (based on Hashcat). It can work with single strings as well as with long lists of hashes from a text file. Useful for investigating data leaks |
Link | Description |
---|---|
geeMail User Finder | A simple tool to check the validity of a Gmail account. You can check a single email or a list of emails. |
Breachchecker.com | history of data leaks associated with a particular email address |
Metric Sparrow email permulator | |
snov.io email finder | find emails of company employees by domain name. |
Mailfoguess | tool create a lot of possible local-part from personal information, add domain to all local-part respecting the conditions of creation of mail of these domains and verify these mails |
Hunter.io | can link to an article to find its author and his email address |
Mailcat | find existing email addresses by nickname in 22 providers, > 60 domains and > 100 aliases |
H8mail | email OSINT and breach hunting tool using different breach and reconnaissance services, or local breaches such as Troy Hunt’s “Collection1” and the infamous “Breach Compilation” torrent |
MailBoxLayer API | free api for email adress checking |
EmailHippo | Simple free online tool for check the existence of a particular email address and evaluate its reliability on a 10-point scale. |
Spycloud.com | check for a particular email in data leaks. Shows how many addresses registered on a particular house have been scrambled |
Gravatar check | Just enter email and see what the person’s Gravatar avatar looks like. |
Email Permutator | Google Sheet table that generate 46 variants of user email by first name, last name and domain |
Have I Been Sold? | The service checks if the e-mail address is included in one of the databases, which are sold illegally and are used for various illegal activities such as spamming. |
mailMeta | Simple tool to analyze emails headers and identify spoofed emails. |
EmailAnalyzer | Tool for analyzing .eml files. It analyzes and checks with VirusTotal links, attachments and headers. |
Avatar API | Enter email address and receive an image of the avatar linked to it. Over a billion avatars in the database collected from public sources (such as Gravatar, Stackoverflow etc.) |
Email Finder | Enter a person’s first and last name, domain name of a company or email service, and then get a list of possible email addresses with their status (free). |
Defastra | Assesses the reliability of a phone or email on a number of different parameters. Displays social network profiles registered to the number or email. Partially free |
OSINT Industries | Enter emai/phonel and get a list of accounts that may be associated with it (accounts for which this email was used to register or those where the email in the profile description) |
What Mail? | Simple #python tool for email headers analyze and visualize them in a table. |
ZEHEF | A simple #Python tool that collects information about an email. It checks its reputation in different sources and finds possible accounts in different social networks (some functions may not work properly, the tool is in development). |
Castrickclues | Online tool to get Google and Skype account information by email, phone number or nickname (free). + search for accounts in other services (paid). |
Link | Description |
---|---|
@maigret_osint_bot | check accounts by username on 1500 sites. Based on maigret CLI tool |
Analyzeid.com Username Search | view “Summary” of accounts found: list of names used, locations, bio, creations dates etc. |
NEXFIL | Search username by 350 social media platforms |
Spy | Just another very quick and simple account checker by username (210 sites in list). |
Profil3r | search for profiles in social networks by nickname |
Aliens eye | Find links to social media accounts in 70 websites by username |
Thorndyke | Checks the availability of a specified username on over 200 websites |
Marple | It collect links contains nickname/name/surname in url from Google and DuckDuckGo search results. |
Holehe | check if the mail is used on different sites like twitter, instagram and will retrieve information on sites with the forgotten password function |
UserFinder | tool for finding profiles by username |
Snoop | Search users profile by nickname |
Pyosint | Search for usenames form a list of 326 websites. Scrap a website to extract all links form a given website. Automate the search of subdomains of a given domain from diffrent services |
Alternate Spelling Finder | When searching for information by name, remember that the same name can be recorded in documents and files very differently, as people of different nationalities perceive sounds differently. |
Translit.net | Sometimes it happens that a person’s name is written in Cyrillic, but you can find a lot of info about him in Google if you type his transliteration “Ivan Ivanov”. This tool will come in handy when working with Russian, Belarusian, Ukrainian, Armenian names |
NAMINT | Enter first, middle (or nickname) and last name, and press Go! to see possible search patterns and links (Google, Yandex, Facebook, Twitter, Linkedin and others social media) |
Username Availability Checker | Simple online tool that checks if a user with a certain nickname is present on popular social networks. Very far behind Maigret/WhatsMyName in terms of number of services, but suitable for a quick check. |
BlackBird | - Search username across 200+ sites; - API username check (Protonmail, PlayerDB, Hackthebox etc); - Check archived Twitter accounts. |
Nameberry | When you are looking for mentions of a person on social media, remember that one name can have dozens of different spelling variations. Ideally, you should check them all, or at least the most popular ones. |
WhatsMyName | With Holehe and Maigret, WhatsMyName is one of the most powerful Username enumeration tools. |
Go Sherlock | #GO version of Project Sherlock (https://github.com/sherlock-project/sherlock…). It’s quite fast. Checks if a user with a certain nickname exists on a thousand sites in a few tens of seconds. |
User Searcher | User-Searcher is a powerful and free tool to help you search username in 2000+ websites. |
Digital Footprint Check | Similar to WhatsMyName but with options to extend search into email, phone and social handles. |
Link | Description |
---|---|
USA Telephone Directory Collection | 3512 of paper “yellow” and “white” pages available for download in PDF published from 1887 to 1987 |
Oldphonebook | USA phonenumbers database from 1994 to 2014 |
Phomber | Get information about phone number with command line. |
Numverify API | free api for global phone number lookup and validation |
FireFly | Get information about phone number using Numverify API |
PhoneNumber OSINT | Simple tool for gathering basic information about phone numbers (country code, timezone, provider) |
Link | Description |
---|---|
DaProfiler | Get emails, social medias, adresses of peoples using web scraping and google dorking |
SingleHire | Tool for search contacts by full name, location and job title. Shows phones, emails, #Linkedin, #Facebook, #Twitter and other social media profile |
Social Analyzer | tool for searching nickname profiles on more than 300 sites |
SovaWeb | web version of a famous Russian bot in Telegram for searching by email, nickname, IMSI, IMEI, MSISDN, BTS, IP, BSSID |
BehindTheNames | when conducting an in-depth search for information about a person, it is important to check the different pronunciations of their name and diminutives. This service will help you find them |
My CSE for search in 48 pastebin sites | |
Psbdmp.ws | search sensitive user data by 25 759 511 pastebins |
Cybernews RockYour2021 | check if your data has been leaked |
GoFindWho People Search | More than 300 tools for gathering information about people in one. Search by name, username, phone, adress, company name. |
That’s them people search | |
Anywho | Search for people in #USA. Enter first and last name to get age, address, and part of phone number (free) |
Usersearch.org | search people by nickname, phone or email |
Ellis Island | online searchable database of 65 million arrivals to #NewYork between (late 19th and early 20th century). |
recordsearch.naa.gov.au | National archives of #Australia |
SpyDialer | Free search contact information by phone number, name, address or email |
Decoding Social Security Numbers in One Step | |
Inmate Database Search | |
Scamdigger.com | search in #scammers database by name, IP-adress, email or phone |
Cloob.com | Iranian people search |
SlaveVoyages.org | the Trans-Atlantic and Intra-American slave trade databases are the culmination of several decades of independent and collaborative research by scholars drawing upon data in libraries and archives around the Atlantic world. |
FEI Database Person Search | If the person you are researching is related to equestrian sports, check the FEI database for information about him or her. There you can find cards of riders, horse owners, grooms and fans around the world. |
Name Variant Search | Type in a name and get a list of possible spelling options (+ quick links to Google, DuckDuckGo and Facebook searches for each option) |
Link | Description |
---|---|
Rug | Extreme simple tool for generating random user data. |
Face Generator | Face Generator for creating #sockpuppets. Customize gender, age, head position, emotions, hair and skin color, makeup and glasses. |
2,682,783 free AI generated photos | |
VoiceBooking | fake voice generator |
ThisXDoesNotExist | collection of more than 30 services that generate various items using neural networks. |
TheXifer | add fake metadata to photo |
GeoTagOnline | add fake geotags to photo |
Fake ID Identity Random Name Generator | generate a random character with a fake name for games, novels, or alter ego avatars of yourself. Create a new virtual disposable identity instantly. |
@TempMail_org_bot | telegram bot for quick creation of temporary email addresses (to receive emails when registering on different sites) |
Text2img | text to image AI generator |
Face Anonimyzer | Upload a face photo and get set of similar AI generated faces. |
AI video generator | Type the text (video script). Choose a character and script template. Click the “Submit a video” button. Enter your registration data and wait for the letter with the result |
Movio.la | Create spoken person video from text |
AI Face maker | Just draw a person face (note that there is a separate tool for each part of the face) and the neural network will generate a realistic photo based on it. |
SessionBox | multi-login browser extension |
MultiLogin | multi-login browser extension |
FreshStart | multi-login browser extension |
BoredHumans | Another tool for creating non-existent people. AI was trained using a database of 70,000 of photos of real humans. I like this service because it often makes very emotional and lively faces. |
Deepfakesweb | Create deepfake videos ONLINE |
Deep Face Live | Real-time face swap for streaming and video calls |
Fakeinfo | Online screenshot generator of fake YouTube channels, posts/profiles on Facebook, Instagram, TikTok, Twitter, chats on Telegram, Hangouts, WhatsApp, Line, Linkedin. |
ThisPersonDoesNotExistAPI (unofficial) | #Python library that returns a random “doesnotexist” person picture generated by AI (with site http://thispersondoesnotexist.com) |
This Baseball Player Does Not Exist | A non-existent personality generator that generates people who look amazingly natural. |
Cardgenerator.org | tool for generating valid bank card numbers (useful for registering accounts to use free trial versions or to create sock puppets) |
VCC Generator | tool for generating valid bank card numbers (useful for registering accounts to use free trial versions or to create sock puppets) |
CardGuru | tool for generating valid bank card numbers (useful for registering accounts to use free trial versions or to create sock puppets) |
CardGenerator | tool for generating valid bank card numbers (useful for registering accounts to use free trial versions or to create sock puppets) |
Faker | Python tool for generating fake data in different languages. Generate addresses, city names, postal codes (you can choose the country), names, meaningless texts, etc. |
Generate Data | Free tool for generating fake data. Useful for testing scripts and applications. The result can be downloaded in CSV, JSON, XML, SQL or JavaScript (PHP, TypeScript, Python) arrays. |
Link | Description |
---|---|
Annotely | Perfectly simple tool for putting an arrow on a screenshot, highlighting some detail or blurring personal data. |
Pramp | The service allows you to take five free (!) online #coding and #productmanagement interview training sessions with peers |
RemindWhen | Simple app that reminds you on email if your favorite country opens for tourists from your country. |
Web–proxy | free web proxy |
Google Docs Voice Comments | simple trick to save time. Voice comments in GoogleDocs, Sheets, Slides, and Forms. |
Text to ASCII Art Generator (TAAG) | This site will help you make atmospheric lettering for your command line tool or README. |
Snow | A very simple add-on that speeds up and simplifies the formatting of #GoogleDocs. “Show” shows non-printable characters (spaces, tabs, page breaks, indents, etc.) |
Wide-band WebSDR | Online access to a short-wave receiver located at the University of Twente. It can be used to listen to military conversations (voice or Morse code) |
Crontab guru | Online “shedule expression” editor (for setting task times in Crontab files). |
Chmod calculator | Calculate the octal numeric or symbolic value for a set of file or folder permissions in #Linux servers. Check the desired boxes or directly enter a valid numeric value to see its value in other format |
Ray So | A simple tool that allows you to beautifully design code as a picture (for social media post or article). |
Windows Event Collection | A tool to help you understand #Windows, #SharePoint, #SQLServer and Exchange system security logs. |
Hack This Page | A simple extension that allows you to edit the text of any web page. |
Soundraw | AI music generation |
Screenshot - Full Page Screen Capture | record a video of part of the screen using a very easy-to-use browser extension |
Chepy | Python command line version of CyberChef |
Typeit | If the text in the picture is not recognised using Google Lens or other OCR tools, try just typing it character by character using the online keyboard. This website has these for 25 different languages. |
Transform Tools | This tool is worth knowing for developers and anyone who has to work with different data formats. It can convert: JSON to MySQL, JavaScript to JSON, TypeScript to JavaScript, Markdown to HTML |
Autoregex | AI regular expressions generator. Generates a pattern by verbal description. It does not work perfectly (see picture with bitcoin wallet, there is an error, it does not always start with 13). But in general the service is very impressive! |
MARKMAP | A simple and free online tool to convert Markdown to Mindmap (SVG or interactive HTML). Formatting options are not too many, but enough to create an informative and clear visualization. |
Xmind Works | Online tool for open and editing .xmind files |
CLIGPT | The simplest tool possible (with as few settings as possible) for working with ChatGPT API at the command line and using in bash scripts. |
MarkWhen | Free online tool that converts Markdown to graphical timeline. It will come in handy for investigations where you need to investigate time-bound events, or simply for quick project planning. Export results in .SVG, .PNG, .MW or share link. |
Link | Description |
---|---|
Jsoncrack | Online tool for visualizing, editing and searching for text in JSON files. With the ability to save, export and share results via a link. |
Jsonvisio | Well-made JSON file renderer. Allows you to quickly understand the structure of even the most complex #JSON files. |
Time graphics | Powerful tool for analytics of time-based events: a large number of settings for the visualization of time periods, integration with Google Drive, YouTube, Google Maps, 12 ways to export results (PNG, JSON, PPTX etc.) |
Gephi | fast and easy to learn graph analytics tool with a lot of modules (plugins) |
Tobloef.com | text to mind map |
Cheat sheet maker | simple tool for creating cheat sheets |
JSONHero | Free online tool for visualizing data in JSON format. With tree structure display, syntax highlighting, link preview, pictures, colors and many other interesting features. |
Link | Description |
---|---|
Scrapersnbots | A collection of a wide variety of online tools for #osint and not only: search for users with a specific name on different sites, one domain #Google Image search, YouTube tags viewer, url-extractor and much more |
Manytools | Collection of tools to automate the repetitive jobs involved in webdevelopment and hacking. |
Webdext | An intelligent and quick web data extractor for #GoogleChrome. Support data extraction from web pages containing a list of objects such as product listing, news listing, search result, etc |
CloudHQ | A collection of several dozen extensions for #Chrome that allow you to extend the functionality of the standard #Gmail interface and maximize your #productivity. Tracking, sorting, sharing, saving, editing and much more. |
Magical. Text Expander | Create shortcuts in Google Chrome to reduce text entry time. For example: email templates, message templates for messengers, signatures and contact information, the names of people with complex spelling (lom -> Lomarrikkendd) |
Online tools | 55 tools for calculation hash functions, calculation file checksum, encoding and decoding strings |
CyberChef | collection of more than a hundred online #tools for automating a wide variety of tasks (string coding, text comparison, double-space removal) |
Shadowcrypt Tools | 24 online tools for OSINT, network scanning, MD5 encryption and many others |
Link | Description |
---|---|
Web history stat | detailed statistics of your browser history |
coveryourtracks.eff.org | can tell a lot about your browser and computer, including showing a list of installed fonts on the system. |
Webmapper | Extension that create a map-visualization based by browser history. A visual representation of the most visited sites in 10, 20, 50 or 100 days. Zoomable and searchable. |
Export Chrome History | A simple extension for Googlechrome that allows you to save detailed information about links from browser history as CSV/JSON. Useful for both personal archives and investigations using other people’s computers. |
Link | Description |
---|---|
Grep for OSINT | simple toolkit that helps to quickly extract “important data” (phone numbers, email addresses, URLs) from the text / file directory |
Diffnow.com | Compares and finds differences in text, URL (html code downloaded by link), office documents (doc, docx, xls, xlsx, ppt, pptx), source code (C, C++, C#, Java, Perl, PHP and other), archives (RAR, 7-zip etc). |
CompressedCrack | Simple tool for brute passwords for ZIP and RAR archives |
Encrytped ZIP file creator | Create ZIP archive online |
PDFX | get meta data of PDF files thrue command line |
@mediainforobot | telegram bot to getting metadata from different types of files |
Mutagen | get meta data of audiofiles thrue command line |
voyant-tools.org | analysis of particular words in .TXT, .DOCX, .XLSX, .CSV and other file types. |
Analyze file format online | |
ToolSley: analyze file format online | |
RecoveryToolBox | recovery tools for corrupted Excel, CorelDraw, Photoshop, PowerPoint, RAR, ZIP, PDF and other files |
Google Docs to Markdown online converter | just copy text to the site |
Binvis | lets you visually dissect and analyze binary files. It’s the interactive grandchild of a static visualisation online tool |
Gdrive-copy | The standard functionality of #GoogleDrive does not allow you to copy an entire folder with all subfolders and files. But it can be done using third-party applications |
Siftrss.com | tool for filtering RSS feeds |
JSON to CSV | |
Textise.net | convert the HTML code of a page to TXT |
Link | Description |
---|---|
Checking MI account | |
Contex condoms serial number lookup | |
iPhone IMEI Checker | Get information about #iPhone by International Mobile Equipment Identity |
SNDeepInfo | Find information about devices (phones, smartphones, cameras, household appliances) by - IMEI; - MEID; - ICCID; - serial number; - Apple Part Number. |
Link | Description |
---|---|
Nonfungible.com | help to analyze the NFT market, find out which tokens were sold most actively (week, month, year, all time) |
Numbers | Search NFT by Content ID, Commit hash, keywords or uploaded photo. |
Fingble Nftport | One of the most accurate search engines for finding NFT by uploaded image. Works well with faces. Also it’s possible to search by keyword or Token ID. |
Link | Description |
---|---|
Wordstat.yandex.ru | the estimated number of Yandex searches in the coming month for different keywords |
Trends Google | |
Keywordtool.io | keyword matching for Google, YouTube, Amazon, Ebay, Bing, Instagram, Twitter |
Google Books Ngram Viewer | |
News Explorer BlueMix | |
Pinterest Trends | |
PyTrends | Simple #python library for automatically collecting data from Google Trends. |
KeyWordPeopleUse | Type in a keyword and see what questions mentioning it are being asked on Quora and Reddit. The service is also able to analyse Google Autocomplete and “People also ask” |
Link | Description |
---|---|
Google Play Scraper | get the most detailed |
App Store Scraper | get the most detailed metadata about the app from AppStore |
Link | Description |
---|---|
Lei.bloomberg.com | search information about company by Legal Identify Number |
990 finder | Enter the company name and select the state to get a link to download its 900 form. |
Open Corporates Command Line Client (Occli) | Gathering detailed information about company through cli. |
NewsBrief | Looking for recent mentions of the company in online media around the world |
Related List | find company-related contacts and confidential documents leaked online |
Investing.com | View a detailed investment profile of the company |
FCCID.IO | seacrh by FCC ID, Country, Date, Company name or Frequency ( in Mhz) |
Tradeint | Quick access for more than 85 tools for gathering information about company and company website, location and sector |
Corporative Registry Catalog | worldwide catalog of business registries (63 countries) |
LEI search | can help find “who owned by” or “who owns” |
openownership.org | Wordwide beneficial ownership data. |
opensanctions.org | Open source data on sanctioned people and companies in various countries from 35 (!) different sources. |
Oec World | A tool for detailed analysis of international trade. It will show clearly which country sells which products, to which countries these products are sold and in what trade value (in $) |
Skymem | A free tool to search for employees’ emails by company domain. Partially free (only 25 emails can be viewed) |
Link | Description |
---|---|
FDIC search | Search banks by FDIC (Federal Deposit Insurance Corporation) certificate number and get detailed information about it |
Iban.com | Check the validity of the IBAN (International Bank Account Number) of the company and see the information about the bank where it is serviced |
Freebin Checker | easy-to-use API for getting bank details by BIN. 850,000+ BIN records in FreeBinChecker’s database |
Credit OSINT | A very simple #python tool to gather information about bank cards and validate them. |
Link | Description |
---|---|
WIPO.int | Global Brands Database (46,020,000 records) |
TMDN Design View | Search 17 684 046 products designs across the European Union and beyond |
TESS | Search engine for #USA trademarks |
Link | Description |
---|---|
TendersInfo | Search tenders around the world by keywords. |
Barcode lookup | |
Panjiva.com | search data on millions of shipments worldwide |
en.52wmb.com | Search information about worldwide buyers and suppliers by product name, company name or HS code. |
Link | Description |
---|---|
Amazon Scraper | scraped detail information about list of items |
Amazon ASIN Finder | |
Sellerapp.com. Amazon Reverse ASIN search |
Link | Description |
---|---|
Reelgood.com | search engine for more than 300 free and paid streaming services (Netflix, Amazon Prime Video, HBO, BBC, DisneyPlus) |
IMCDB | Internet Movie Cars Database |
Sympsons screencaps search | |
Search Futuruma screencaps | |
Rick and Morty screencaps search | |
Subzin.com | by one phrase will find the movie, as well as the full text of the dialogue with the timing |
Doesthedogdie | This is an ingenious site that lets you find out if a movie (video game) has scenes that might upset someone (death of dogs, cats and horses, animal abuse, domestic violence etc). |
PlayPhrase | Search across 7 million + phrase from movies and watch fragments in which this3 phrase is spoken. |
Link | Description |
---|---|
Unogs.com | Netflix search without registration |
flixable.com | alternative way to find anything interesting on Netflix |
flixwatch.co | alternative way to find anything interesting on Netflix |
flicksurfer.com | alternative way to find anything interesting on Netflix |
flixboss.com | alternative way to find anything interesting on Netflix |
flickmetrix.com | alternative way to find anything interesting on Netflix |
whatthehellshouldiwatchonnetflix.com | alternative way to find anything interesting on Netflix |
netflix-codes.com | alternative way to find anything interesting on Netflix |
Link | Description |
---|---|
Radion.net | view list of all radiostations near your location and search radiostations by keywords |
American Archive of Public Broadcasting | Discover historic programs of publicly funded radio and television across America. Watch and listen |
LiveATC | Archive of audio recordings between pilots and dispatchers. Useful for investigating incidents and for foreign language comprehension skills (if you learn to understand pilots’ conversations, you will be able to understand everything). |
Wideband shortware radio receiver map | Online map of shortwave radio receivers available for listening in your browser at the moment. |
IPTV org | Search by 28 813 IP television channels in 196 countries. Get detailed information about channel in HTML/JSON (sometimes with link to livestream). |
Link | Description |
---|---|
Osint Search Tools | Several hundred links for quick search in Social Media, Communties, Maps, Documents Search Engines, Maps, Pastes… |
Scrummage | Ultimate OSINT and Threat Hunting Framework |
Mr.Holmes | osint toolkit for gathering information about domains, phone numbers and social media accounts |
SEMID osint framework | Search user info in Tiktok, Playstation, Discord, Doxbin,Twitter, Github |
NAZAR | universal Osint Toolkit |
E4GL30S1NT | ShellScript toolkit for #osint (12 tools) |
Recon Spider | Advanced Open Source Intelligence (#OSINT) Framework for scanning IP Address, Emails, Websites, Organizations |
Hunt Osint Framework | Dozens of online tools for different stages of #osint investigations |
GoMapEnum | Gather emails on Linkedin (via Linkedin and via Google) + User enumeration and password bruteforce on Azure, ADFS, OWA, O365 (this part seems to be still in development) |
ExtendClass | One of my favorite sites for #automating various routine tasks. Among the many analogues, it stands out for its quality of work and variety of functions (view pic). |
FoxyRecon | 44 osint tools in one add-on for #Firefox |
S.I.G.I.T. | Simple information gathering toolkit |
GVNG Search | Command line toolkit for gathering information about person (nickname search, validate email, geolocate ip) and domain (traceroute, dns lookup, tcp port scan etc). |
Owasp Maryam | modular open-source framework based on OSINT and data gathering |
Ghoulbond | Just another all-in-one command line toolkit for gathering information about system (technical characteristics, internet speed, IP/Mac address, port scanner)+some features for nickname and phone number #osint. |
Metabigoor | Simple and fast #osint framework |
Geekflare Tools | 39 online free tools for website testing |
Oryon OSINT query tool | Construct investigations links in Google Sheet |
Discover | Custom bash scripts used to automate various penetration testing tasks including recon, scanning, parsing and listeners with metasploit (16 tools in one) |
one-plus.github.io/DocumentSearch | Document Search osint Toolkit |
Telegram HowToFindBot | |
Harpoon | |
ResearchBuzz | Google Sinker Search queries constructor (view pic), Google News Search queries constructor, Quick twitter account historical navigation in http://archive.org, Blogspace Time Machine and more tools |
Profounder | searching users by nickname and scrapping url’s from website |
Moriarty Project | |
Osintcombine Tools | |
OSINT-SAN | |
Mihari | |
One Plus OSINT Toolkit | |
Vichiti | |
Sarenka | |
Vedbex.com | |
Synapsint.com | |
Ashok | Swiff knife for #osint |
IVRE | framework for network recon |
SEARCH Investigative and Forensic Toolbar | extension with quick access to dozens of online tools for osint, forensics and othef investigations goals. |
Tenssens | osint framework |
Collector | Universal Osint Toolkit |
Randomtools | Several dozen online tools for a variety of purposes. Including to facilitate gathering information on #Facebook, #Twitter, #YouTube, #Instagram |
Infooze | User Recon, Mail Finder, Whois/IP/DNS/headers lookup, InstaRecon, Git Recon, Exif Metadata |
ThreatPinch Lookup | Helps speed up security investigations by automatically providing relevant information upon hovering over any IPv4 address, MD5 hash, SHA2 hash, and CVE title. It’s designed to be completely customizable and work with any rest API(c) |
Osint tool | A universal online tool for searching various services and APIs with more than a dozen different inputs (phone number, email, website address, domain, etc.). |
Hackers toolkit | An extension for quick access to dozens of tools for decoding/encoding strings as well as generating queries for popular types of web attacks (#SQLi,#LFI,#XSS). |
BOTSTER | A huge collection of bots for gathering, monitoring, analysing and validating data from Instagram, Twitter, Google, Amazon, Linkedin, Shopify and other services. |
Magnifier | #osint #python toolkit. 15 scripts in one: - subdomain finder; - website emails collector; - zone transfer; - reverse IP lookup; and much more. |
Wannabe1337 Toolkit | This site has dozens of free online tools (many of which will be useful for #osint): - website and network info gathering tools; - code, text and image processing tools; - IPFS and Fraud tools; - Discord and Bitcoin tools. |
BazzellPy | Unofficial(!) #Python library for automation work with IntelTechniques Search Tools https://inteltechniques.com/tools/ |
BBOT | Toolkit of 51 modules (for collecting domain/IP information - cookie_brute, wappalyzer, sslcert, leakix, urlscan, wayback (full list in the picture) |
SLASH | Universal #cli search tool. Search email or username across social media, forums, Pastebin leaks, Github commits and more. |
How to verify? | Visual fact checking mind maps for verification video, audio, source, text. Detailed workflows descriptions with tools, tips and tricks. |
Cyclect | Ultimate OSINT Search Engine + list of 281+ tools for information gathering about": IP Adress, Social Media Account, Email, Phone, Domain, Person, Venicle and more. |
ShrewdEye | Online versions of popular command line #osint tools: Amass, SubFinder, AssetFinder, GAU, DNSX |
OSINT Toolkit | Self-hosted web app (one minute Docker installation) for gathering information about IPs, Domains, URLs, Emails, Hashes, CVEs and more. |
OSINTTracker | A simple and free online tool to visualize investigations and collect data about different entry points (domains, email addresses, crypto wallet numbers) using hundreds of different online services. |
Link | Description |
---|---|
Cronodump | When searching for information about citizens of Ukraine, Russia and other CIS countries, often have to deal with leaked databases for the Cronos program (used in government organizations). This simple utility generates Cronos files in CSV. |
Jsonvisio | Well-made JSON file renderer. Allows you to quickly understand the structure of even the most complex #JSON files. |
1C Database Converter | 1C is a very popular program in CIS countries for storing data in enterprises (accounting, document management, etc.). This tool allows you to convert 1C files into CSV files. |
Insight Jini | Extreme quick, extreme simple and free online tool for data visalization and analysis |
DIAGRAMIFY | generates flow charts from the text description. Branching and backtracking are supported |
OBSIDIAN CLI | Very simple #go tool that let to interact with the Obsidian using the terminal. Open, search, create and edit files. Can be combined with any other #cli #osint tools to automate your workflow. |
Link | Description |
---|---|
Windows 10 Online Emulator | |
Parrot Security OS Online Emulator |
Link | Description |
---|---|
Offen Osint | |
BlackArch Linux | |
Kali Linux | |
CSI Linux | |
Fedora Security Lab | |
Huron Osint | |
Tsurugi Linux | |
Osintux | |
TraceLabs OSINT VM | |
Dracos Linux | |
ArchStrike | |
Septor Linux | |
Parrot Security | |
osintBOX | Parrot OS Home edition modified with the popular OSINT tools: Dmitry, ExifTool, Maltego, Sherlock, SpiderFoot and much more. |
Pentoo Linux | |
Deft Linux | |
BackBox | |
Falcon Arch Linux | |
AttifyOS | Linux distro for pentesting IoT devices. |
Link | Description |
---|---|
Python OSINT automation examples | In this repository, I will collect quick and simple code examples that use Python to automate various #osint tasks. |
Worldwide OSINT Tools Map | |
Quick hashtags and keywords search | |
Quick geolocation search | |
Phone Number Search Constructor | |
Domain Investigation Toolbox | |
IP adress Investigation Toolbox | |
Quick Cache and Archive search | |
Grep for OSINT | Set of very simple shell scripts that will help you quickly analyze a text or a folder with files for data useful for investigation (phone numbers, bank card numbers, URLs, emails |
5 Google Custom Search Engine for search 48 pastebin sites | |
CSE for search 20 source code hosting services | |
Dorks collections list | List of Github repositories and articles with list of dorks for different search engines |
APIs for OSINT | List of API’s for gathering information about phone numbers, addresses, domains etc |
Advanced Search Operators List | List of the links to the docs for different services, which explain using of advanced search operators |
Code understanding tools list | Tools for understanding other people’s code |
Awesome grep | List of GREP modifications and alternatives for a variety of purposes |
Maltego transforms list | list of tools that handle different data and make it usable in Maltego |
=============== A curated list of awesome information security resources.
Those resources and tools are intended only for cybersecurity professional and educational use in a controlled environment.
=================
===========================
In this class you will learn how to design secure systems and write secure code. You will learn how to find vulnerabilities in code and how to design software systems that limit the impact of security vulnerabilities. We will focus on principles for building secure systems and give many real world examples.
This course explains the inner workings of cryptographic primitives and how to correctly use them. Students will learn how to reason about the security of cryptographic constructions and how to apply this knowledge to real-world applications. The course begins with a detailed discussion of how two parties who have a shared secret key can communicate securely when a powerful adversary eavesdrops and tampers with traffic. We will examine many deployed protocols and analyze mistakes in existing systems. The second half of the course discusses public-key techniques that let two or more parties generate a shared secret key. We will cover the relevant number theory and discuss public-key encryption and basic key-exchange. Throughout the course students will be exposed to many exciting open problems in the field.
This course is a continuation of Crypto I and explains the inner workings of public-key systems and cryptographic protocols. Students will learn how to reason about the security of cryptographic constructions and how to apply this knowledge to real-world applications. The course begins with constructions for digital signatures and their applications. We will then discuss protocols for user authentication and zero-knowledge protocols. Next we will turn to privacy applications of cryptography supporting anonymous credentials and private database lookup. We will conclude with more advanced topics including multi-party computation and elliptic curve cryptography.
This course focuses on how to design and build secure systems with a human-centric focus. We will look at basic principles of human-computer interaction, and apply these insights to the design of secure systems with the goal of developing security measures that respect human performance and their goals within a system.
This course we will explore the foundations of software security. We will consider important software vulnerabilities and attacks that exploit them – such as buffer overflows, SQL injection, and session hijacking – and we will consider defenses that prevent or mitigate these attacks, including advanced testing and program analysis techniques. Importantly, we take a “build security in” mentality, considering techniques at each phase of the development cycle that can be used to strengthen the security of software systems.
This course will introduce you to the foundations of modern cryptography, with an eye toward practical applications. We will learn the importance of carefully defining security; of relying on a set of well-studied “hardness assumptions” (e.g., the hardness of factoring large numbers); and of the possibility of proving security of complicated constructions based on low-level primitives. We will not only cover these ideas in theory, but will also explore their real-world impact. You will learn about cryptographic primitives in wide use today, and see how these can be combined to develop modern protocols for secure communication.
This course will introduce you to the foundations of modern cryptography, with an eye toward practical applications. We will learn the importance of carefully defining security; of relying on a set of well-studied “hardness assumptions” (e.g., the hardness of factoring large numbers); and of the possibility of proving security of complicated constructions based on low-level primitives. We will not only cover these ideas in theory, but will also explore their real-world impact. You will learn about cryptographic primitives in wide use today, and see how these can be combined to develop modern protocols for secure communication.
This course will introduce you to the cybersecurity, ideal for learners who are curious about the world of Internet security and who want to be literate in the field. This course will take a ride in to cybersecurity feild for beginners.
There are 5-6 major job roles in industry for cybersecurity enthusiast. In This course you will Learn about different career pathways in cybersecurity and complete a self-assessment project to better understand the right path for you.
This course is good for beginner It contains introduction to cybersecurity, The CISO’s view, Helps you building cybersecurity toolKit and find your cybersecurity career path.
Developed from the materials of NYU Tandon’s old Penetration Testing and Vulnerability Analysis course, Hack Night is a sobering introduction to offensive security. A lot of complex technical content is covered very quickly as students are introduced to a wide variety of complex and immersive topics over thirteen weeks.
The primary incentive for an attacker to exploit a vulnerability, or series of vulnerabilities is to achieve a return on an investment (his/her time usually). This return need not be strictly monetary, an attacker may be interested in obtaining access to data, identities, or some other commodity that is valuable to them. The field of penetration testing involves authorized auditing and exploitation of systems to assess actual system security in order to protect against attackers. This requires thorough knowledge of vulnerabilities and how to exploit them. Thus, this course provides an introductory but comprehensive coverage of the fundamental methodologies, skills, legal issues, and tools used in white hat penetration testing and secure system administration.
This class allows students to look deep into know protocols (i.e. IP, TCP, UDP) to see how an attacker can utilize these protocols to their advantage and how to spot issues in a network via captured network traffic. The first half of this course focuses on know protocols while the second half of the class focuses on reverse engineering unknown protocols. This class will utilize captured traffic to allow students to reverse the protocol by using known techniques such as incorporating bioinformatics introduced by Marshall Beddoe. This class will also cover fuzzing protocols to see if the server or client have vulnerabilities. Overall, a student finishing this class will have a better understanding of the network layers, protocols, and network communication and their interaction in computer networks.
This course will introduce students to modern malware analysis techniques through readings and hands-on interactive analysis of real-world samples. After taking this course students will be equipped with the skills to analyze advanced contemporary malware using both static and dynamic analysis.
This course will start off by covering basic x86 reverse engineering, vulnerability analysis, and classical forms of Linux-based userland binary exploitation. It will then transition into protections found on modern systems (Canaries, DEP, ASLR, RELRO, Fortify Source, etc) and the techniques used to defeat them. Time permitting, the course will also cover other subjects in exploitation including kernel-land and Windows based exploitation.
Reverse engineering techniques for semiconductor devices and their applications to competitive analysis, IP litigation, security testing, supply chain verification, and failure analysis. IC packaging technologies and sample preparation techniques for die recovery and live analysis. Deprocessing and staining methods for revealing features bellow top passivation. Memory technologies and appropriate extraction techniques for each. Study contemporary anti-tamper/anti-RE methods and their effectiveness at protecting designs from attackers. Programmable logic microarchitecture and the issues involved with reverse engineering programmable logic.
CNIT 40: DNS Security DNS is crucial for all Internet transactions, but it is subject to numerous security risks, including phishing, hijacking, packet amplification, spoofing, snooping, poisoning, and more. Learn how to configure secure DNS servers, and to detect malicious activity with DNS monitoring. We will also cover DNSSEC principles and deployment. Students will perform hands-on projects deploying secure DNS servers on both Windows and Linux platforms.
CNIT 120 - Network Security Knowledge and skills required for Network Administrators and Information Technology professionals to be aware of security vulnerabilities, to implement security measures, to analyze an existing network environment in consideration of known security threats or risks, to defend against attacks or viruses, and to ensure data privacy and integrity. Terminology and procedures for implementation and configuration of security, including access control, authorization, encryption, packet filters, firewalls, and Virtual Private Networks (VPNs).
CNIT 121 - Computer Forensics The class covers forensics tools, methods, and procedures used for investigation of computers, techniques of data recovery and evidence collection, protection of evidence, expert witness skills, and computer crime investigation techniques. Includes analysis of various file systems and specialized diagnostic software used to retrieve data. Prepares for part of the industry standard certification exam, Security+, and also maps to the Computer Investigation Specialists exam.
CNIT 123 - Ethical Hacking and Network Defense Students learn how hackers attack computers and networks, and how to protect systems from such attacks, using both Windows and Linux systems. Students will learn legal restrictions and ethical guidelines, and will be required to obey them. Students will perform many hands-on labs, both attacking and defending, using port scans, footprinting, exploiting Windows and Linux vulnerabilities, buffer overflow exploits, SQL injection, privilege escalation, Trojans, and backdoors.
CNIT 124 - Advanced Ethical Hacking Advanced techniques of defeating computer security, and countermeasures to protect Windows and Unix/Linux systems. Hands-on labs include Google hacking, automated footprinting, sophisticated ping and port scans, privilege escalation, attacks against telephone and Voice over Internet Protocol (VoIP) systems, routers, firewalls, wireless devices, Web servers, and Denial of Service attacks.
CNIT 126 - Practical Malware Analysis Learn how to analyze malware, including computer viruses, trojans, and rootkits, using disassemblers, debuggers, static and dynamic analysis, using IDA Pro, OllyDbg and other tools.
CNIT 127 - Exploit Development Learn how to find vulnerabilities and exploit them to gain control of target systems, including Linux, Windows, Mac, and Cisco. This class covers how to write tools, not just how to use them; essential skills for advanced penetration testers and software security professionals.
CNIT 128 - Hacking Mobile Devices Mobile devices such as smartphones and tablets are now used for making purchases, emails, social networking, and many other risky activities. These devices run specialized operating systems have many security problems. This class will cover how mobile operating systems and apps work, how to find and exploit vulnerabilities in them, and how to defend them. Topics will include phone call, voicemail, and SMS intrusion, jailbreaking, rooting, NFC attacks, malware, browser exploitation, and application vulnerabilities. Hands-on projects will include as many of these activities as are practical and legal.
CNIT 129S: Securing Web Applications Techniques used by attackers to breach Web applications, and how to protect them. How to secure authentication, access, databases, and back-end components. How to protect users from each other. How to find common vulnerabilities in compiled code and source code.
CNIT 140: IT Security Practices Training students for cybersecurity competitions, including CTF events and the Collegiate Cyberdefense Competition (CCDC). This training will prepare students for employment as security professionals, and if our team does well in the competitions, the competitors will gain recognition and respect which should lead to more and better job offers.
Violent Python and Exploit Development In the exploit development section, students will take over vulnerable systems with simple Python scripts.
This class will introduce the CS graduate students to malware concepts, malware analysis, and black-box reverse engineering techniques. The target audience is focused on computer science graduate students or undergraduate seniors without prior cyber security or malware experience. It is intended to introduce the students to types of malware, common attack recipes, some tools, and a wide array of malware analysis techniques.
Hands-On course coverings topics such as mobile ecosystem, the design and architecture of mobile operating systems, application analysis, reverse engineering, malware detection, vulnerability assessment, automatic static and dynamic analysis, and exploitation and mitigation techniques. Besides the slides for the course, there are also multiple challenges covering mobile app development, reversing and exploitation.
OpenSecurityTraining.info is dedicated to sharing training material for computer security classes, on any topic, that are at least one day long.
Android Forensics & Security Testing This class serves as a foundation for mobile digital forensics, forensics of Android operating systems, and penetration testing of Android applications.
Certified Information Systems Security Professional (CISSP)® Common Body of Knowledge (CBK)® Review The CISSP CBK Review course is uniquely designed for federal agency information assurance (IA) professionals in meeting NSTISSI-4011, National Training Standard for Information Systems Security Professionals, as required by DoD 8570.01-M, Information Assurance Workforce Improvement Program.
Flow Analysis & Network Hunting This course focuses on network analysis and hunting of malicious activity from a security operations center perspective. We will dive into the netflow strengths, operational limitations of netflow, recommended sensor placement, netflow tools, visualization of network data, analytic trade craft for network situational awareness and networking hunting scenarios.
Hacking Techniques and Intrusion Detection The course is designed to help students gain a detailed insight into the practical and theoretical aspects of advanced topics in hacking techniques and intrusion detection.
Introductory Intel x86: Architecture, Assembly, Applications, & Alliteration This class serves as a foundation for the follow on Intermediate level x86 class. It teaches the basic concepts and describes the hardware that assembly code deals with. It also goes over many of the most common assembly instructions. Although x86 has hundreds of special purpose instructions, students will be shown it is possible to read most programs by knowing only around 20-30 instructions and their variations.
Introductory Intel x86-64: Architecture, Assembly, Applications, & Alliteration This class serves as a foundation for the follow on Intermediate level x86 class. It teaches the basic concepts and describes the hardware that assembly code deals with. It also goes over many of the most common assembly instructions. Although x86 has hundreds of special purpose instructions, students will be shown it is possible to read most programs by knowing only around 20-30 instructions and their variations.
Introduction to ARM This class builds on the Intro to x86 class and tries to provide parallels and differences between the two processor architectures wherever possible while focusing on the ARM instruction set, some of the ARM processor features, and how software works and runs on the ARM processor.
Introduction to Cellular Security This course is intended to demonstrate the core concepts of cellular network security. Although the course discusses GSM, UMTS, and LTE - it is heavily focused on LTE. The course first introduces important cellular concepts and then follows the evolution of GSM to LTE.
Introduction to Network Forensics This is a mainly lecture based class giving an introduction to common network monitoring and forensic techniques.
Introduction to Secure Coding This course provides a look at some of the most prevalent security related coding mistakes made in industry today. Each type of issue is explained in depth including how a malicious user may attack the code, and strategies for avoiding the issues are then reviewed.
Introduction to Vulnerability Assessment This is a lecture and lab based class giving an introduction to vulnerability assessment of some common common computing technologies. Instructor-led lab exercises are used to demonstrate specific tools and technologies.
Introduction to Trusted Computing This course is an introduction to the fundamental technologies behind Trusted Computing. You will learn what Trusted Platform Modules (TPMs) are and what capabilities they can provide both at an in-depth technical level and in an enterprise context. You will also learn about how other technologies such as the Dynamic Root of Trust for Measurement (DRTM) and virtualization can both take advantage of TPMs and be used to enhance the TPM’s capabilities.
Offensive, Defensive, and Forensic Techniques for Determining Web User Identity This course looks at web users from a few different perspectives. First, we look at identifying techniques to determine web user identities from a server perspective. Second, we will look at obfuscating techniques from a user whom seeks to be anonymous. Finally, we look at forensic techniques, which, when given a hard drive or similar media, we identify users who accessed that server.
Pcap Analysis & Network Hunting Introduction to Packet Capture (PCAP) explains the fundamentals of how, where, and why to capture network traffic and what to do with it. This class covers open-source tools like tcpdump, Wireshark, and ChopShop in several lab exercises that reinforce the material. Some of the topics include capturing packets with tcpdump, mining DNS resolutions using only command-line tools, and busting obfuscated protocols. This class will prepare students to tackle common problems and help them begin developing the skills to handle more advanced networking challenges.
Malware Dynamic Analysis This introductory malware dynamic analysis class is dedicated to people who are starting to work on malware analysis or who want to know what kinds of artifacts left by malware can be detected via various tools. The class will be a hands-on class where students can use various tools to look for how malware is: Persisting, Communicating, and Hiding
Secure Code Review The course briefly talks about the development lifecycle and the importance of peer reviews in delivering a quality product. How to perform this review is discussed and how to keep secure coding a priority during the review is stressed. A variety of hands-on exercises will address common coding mistakes, what to focus on during a review, and how to manage limited time.
Smart Cards This course shows how smart cards are different compared to other type of cards. It is explained how smart cards can be used to realize confidentiality and integrity of information.
The Life of Binaries Along the way we discuss the relevance of security at different stages of a binary’s life, from the tricks that can be played by a malicious compiler, to how viruses really work, to the way which malware “packers” duplicate OS process execution functionality, to the benefit of a security-enhanced OS loader which implements address space layout randomization (ASLR).
Understanding Cryptology: Core Concepts This is an introduction to cryptology with a focus on applied cryptology. It was designed to be accessible to a wide audience, and therefore does not include a rigorous mathematical foundation (this will be covered in later classes).
Understanding Cryptology: Cryptanalysis A class for those who want to stop learning about building cryptographic systems and want to attack them. This course is a mixture of lecture designed to introduce students to a variety of code-breaking techniques and python labs to solidify those concepts. Unlike its sister class, Core Concepts, math is necessary for this topic.
Exploits 1: Introduction to Software Exploits Software vulnerabilities are flaws in program logic that can be leveraged by an attacker to execute arbitrary code on a target system. This class will cover both the identification of software vulnerabilities and the techniques attackers use to exploit them. In addition, current techniques that attempt to remediate the threat of software vulnerability exploitation will be discussed.
Exploits 2: Exploitation in the Windows Environment This course covers the exploitation of stack corruption vulnerabilities in the Windows environment. Stack overflows are programming flaws that often times allow an attacker to execute arbitrary code in the context of a vulnerable program. There are many nuances involved with exploiting these vulnerabilities in Windows. Window’s exploit mitigations such as DEP, ASLR, SafeSEH, and SEHOP, makes leveraging these programming bugs more difficult, but not impossible. The course highlights the features and weaknesses of many the exploit mitigation techniques deployed in Windows operating systems. Also covered are labs that describe the process of finding bugs in Windows applications with mutation based fuzzing, and then developing exploits that target those bugs.
Intermediate Intel x86: Architecture, Assembly, Applications, & Alliteration Building upon the Introductory Intel x86 class, this class goes into more depth on topics already learned, and introduces more advanced topics that dive deeper into how Intel-based systems work.
Advanced x86: Virtualization with Intel VT-x The purpose of this course is to provide a hands on introduction to Intel hardware support for virtualization. The first part will motivate the challenges of virtualization in the absence of dedicated hardware. This is followed by a deep dive on the Intel virtualization “API” and labs to begin implementing a blue pill / hyperjacking attack made famous by researchers like Joanna Rutkowska and Dino Dai Zovi et al. Finally a discussion of virtualization detection techniques.
Advanced x86: Introduction to BIOS & SMM We will cover why the BIOS is critical to the security of the platform. This course will also show you what capabilities and opportunities are provided to an attacker when BIOSes are not properly secured. We will also provide you tools for performing vulnerability analysis on firmware, as well as firmware forensics. This class will take people with existing reverse engineering skills and teach them to analyze UEFI firmware. This can be used either for vulnerability hunting, or to analyze suspected implants found in a BIOS, without having to rely on anyone else.
Introduction to Reverse Engineering Software Throughout the history of invention curious minds have sought to understand the inner workings of their gadgets. Whether investigating a broken watch, or improving an engine, these people have broken down their goods into their elemental parts to understand how they work. This is Reverse Engineering (RE), and it is done every day from recreating outdated and incompatible software, understanding malicious code, or exploiting weaknesses in software.
Reverse Engineering Malware This class picks up where the Introduction to Reverse Engineering Software course left off, exploring how static reverse engineering techniques can be used to understand what a piece of malware does and how it can be removed.
Rootkits: What they are, and how to find them Rootkits are a class of malware which are dedicated to hiding the attacker’s presence on a compromised system. This class will focus on understanding how rootkits work, and what tools can be used to help find them.
The Adventures of a Keystroke: An in-depth look into keylogging on Windows Keyloggers are one of the most widely used components in malware. Keyboard and mouse are the devices nearly all of the PCs are controlled by, this makes them an important target of malware authors. If someone can record your keystrokes then he can control your whole PC without you noticing.
CompTIA A+ This course covers the fundamentals of computer technology, basic networking, installation and configuration of PCs, laptops and related hardware, as well as configuring common features for mobile operation systems Android and Apple iOS.
CompTIA Linux+ Our free, self-paced online Linux+ training prepares students with the knowledge to become a certified Linux+ expert, spanning a curriculum that covers Linux maintenance tasks, user assistance and installation and configuration.
CompTIA Cloud+ Our free, online Cloud+ training addresses the essential knowledge for implementing, managing and maintaining cloud technologies as securely as possible. It covers cloud concepts and models, virtualization, and infrastructure in the cloud.
CompTIA Network+ In addition to building one’s networking skill set, this course is also designed to prepare an individual for the Network+ certification exam, a distinction that can open a myriad of job opportunities from major companies
CompTIA Advanced Security Practitioner In our free online CompTIA CASP training, you’ll learn how to integrate advanced authentication, how to manage risk in the enterprise, how to conduct vulnerability assessments and how to analyze network security concepts and components.
CompTIA Security+ Learn about general security concepts, basics of cryptography, communications security and operational and organizational security. With the increase of major security breaches that are occurring, security experts are needed now more than ever.
ITIL Foundation Our online ITIL Foundation training course provides baseline knowledge for IT service management best practices: how to reduce costs, increase enhancements in processes, improve IT productivity and overall customer satisfaction.
Cryptography In this online course we will be examining how cryptography is the cornerstone of security technologies, and how through its use of different encryption methods you can protect private or sensitive information from unauthorized access.
Cisco CCNA Our free, online, self-paced CCNA training teaches students to install, configure, troubleshoot and operate LAN, WAN and dial access services for medium-sized networks. You’ll also learn how to describe the operation of data networks.
Virtualization Management Our free, self-paced online Virtualization Management training class focuses on installing, configuring and managing virtualization software. You’ll learn how to work your way around the cloud and how to build the infrastructure for it.
Penetration Testing and Ethical Hacking If the idea of hacking as a career excites you, you’ll benefit greatly from completing this training here on Cybrary. You’ll learn how to exploit networks in the manner of an attacker, in order to find out how protect the system from them.
Computer and Hacking Forensics Love the idea of digital forensics investigation? That’s what computer forensics is all about. You’ll learn how to; determine potential online criminal activity at its inception, legally gather evidence, search and investigate wireless attacks.
Web Application Penetration Testing In this course, SME, Raymond Evans, takes you on a wild and fascinating journey into the cyber security discipline of web application pentesting. This is a very hands-on course that will require you to set up your own pentesting environment.
CISA - Certified Information Systems Auditor In order to face the dynamic requirements of meeting enterprise vulnerability management challenges, this course covers the auditing process to ensure that you have the ability to analyze the state of your organization and make changes where needed.
Secure Coding Join industry leader Sunny Wear as she discusses secure coding guidelines and how secure coding is important when it comes to lowering risk and vulnerabilities. Learn about XSS, Direct Object Reference, Data Exposure, Buffer Overflows, & Resource Management.
NIST 800-171 Controlled Unclassified Information Course The Cybrary NIST 800-171 course covers the 14 domains of safeguarding controlled unclassified information in non-federal agencies. Basic and derived requirements are presented for each security domain as defined in the NIST 800-171 special publication.
Advanced Penetration Testing This course covers how to attack from the web using cross-site scripting, SQL injection attacks, remote and local file inclusion and how to understand the defender of the network you’re breaking into to. You’ll also learn tricks for exploiting a network.
Intro to Malware Analysis and Reverse Engineering In this course you’ll learn how to perform dynamic and static analysis on all major files types, how to carve malicious executables from documents and how to recognize common malware tactics and debug and disassemble malicious binaries.
Social Engineering and Manipulation In this online, self-paced Social Engineering and Manipulation training class, you will learn how some of the most elegant social engineering attacks take place. Learn to perform these scenarios and what is done during each step of the attack.
Post Exploitation Hacking In this free self-paced online training course, you’ll cover three main topics: Information Gathering, Backdooring and Covering Steps, how to use system specific tools to get general information, listener shells, metasploit and meterpreter scripting.
Python for Security Professionals This course will take you from basic concepts to advanced scripts in just over 10 hours of material, with a focus on networking and security.
Metasploit This free Metasploit training class will teach you to utilize the deep capabilities of Metasploit for penetration testing and help you to prepare to run vulnerability assessments for organizations of any size.
ISC2 CCSP - Certified Cloud Security Professional The reality is that attackers never rest, and along with the traditional threats targeting internal networks and systems, an entirely new variety specifically targeting the cloud has emerged.
Executive
CISSP - Certified Information Systems Security Professional Our free online CISSP (8 domains) training covers topics ranging from operations security, telecommunications, network and internet security, access control systems and methodology and business continuity planning.
CISM - Certified Information Security Manager Cybrary’s Certified Information Security Manager (CISM) course is a great fit for IT professionals looking to move up in their organization and advance their careers and/or current CISMs looking to learn about the latest trends in the IT industry.
PMP - Project Management Professional Our free online PMP training course educates on how to initiate, plan and manage a project, as well as the process behind analyzing risk, monitoring and controlling project contracts and how to develop schedules and budgets.
CRISC - Certified in Risk and Information Systems Control Certified in Risk and Information Systems Control is for IT and business professionals who develop and maintain information system controls, and whose job revolves around security operations and compliance.
Risk Management Framework The National Institute of Standards and Technology (NIST) established the Risk Management Framework (RMF) as a set of operational and procedural standards or guidelines that a US government agency must follow to ensure the compliance of its data systems.
ISC2 CSSLP - Certified Secure Software Life-cycle Professional This course helps professionals in the industry build their credentials to advance within their organization, allowing them to learn valuable managerial skills as well as how to apply the best practices to keep organizations systems running well.
COBIT - Control Objectives for Information and Related Technologies Cybrary’s online COBIT certification program offers an opportunity to learn about all the components of the COBIT 5 framework, covering everything from the business end-to-end to strategies in how effectively managing and governing enterprise IT.
Corporate Cybersecurity Management Cyber risk, legal considerations and insurance are often overlooked by businesses and this sets them up for major financial devastation should an incident occur.
Roppers is a community dedicated to providing free training to beginners so that they have the best introduction to the field possible and have the knowledge, skills, and confidence required to figure out what the next ten thousand hours will require them to learn.
Introduction to Computing Fundamentals A free, self-paced curriculum designed to give a beginner all of the foundational knowledge and skills required to be successful. It teaches security fundamentals along with building a strong technical foundation that students will build on for years to come. Full text available as a gitbook. Learning Objectives: Linux, Hardware, Networking, Operating Systems, Power User, Scripting Pre-Reqs: None
Introduction to Capture the Flags Free course designed to teach the fundamentals required to be successful in Capture the Flag competitions and compete in the picoCTF event. Our mentors will track your progress and provide assistance every step of the way. Full text available as a gitbook. Learning Objectives: CTFs, Forensics, Cryptography, Web-Exploitation Pre-Reqs: Linux, Scripting
Introduction to Security Free course designed to teach students security theory and have them execute defensive measures so that they are better prepared against threats online and in the physical world. Full text available as a gitbook. Learning Objectives: Security Theory, Practical Application, Real-World Examples Pre-Reqs: None
Started in 2002, funded by a total of 1.3 million dollars from NSF, and now used by hundreds of educational institutes worldwide, the SEED project’s objective is to develop hands-on laboratory exercises (called SEED labs) for computer and information security education and help instructors adopt these labs in their curricula.
These labs cover some of the most common vulnerabilities in general software. The labs show students how attacks work in exploiting these vulnerabilities.
Buffer-Overflow Vulnerability Lab Launching attack to exploit the buffer-overflow vulnerability using shellcode. Conducting experiments with several countermeasures.
Return-to-libc Attack Lab Using the return-to-libc technique to defeat the “non-executable stack” countermeasure of the buffer-overflow attack.
Environment Variable and Set-UID Lab This is a redesign of the Set-UID lab (see below).
Set-UID Program Vulnerability Lab Launching attacks on privileged Set-UID root program. Risks of environment variables. Side effects of system().
Race-Condition Vulnerability Lab Exploiting the race condition vulnerability in privileged program. Conducting experiments with various countermeasures.
Format-String Vulnerability Lab Exploiting the format string vulnerability to crash a program, steal sensitive information, or modify critical data.
Shellshock Attack Lab Launch attack to exploit the Shellshock vulnerability that is discovered in late 2014.
These labs cover topics on network security, ranging from attacks on TCP/IP and DNS to various network security technologies (Firewall, VPN, and IPSec).
TCP/IP Attack Lab Launching attacks to exploit the vulnerabilities of the TCP/IP protocol, including session hijacking, SYN flooding, TCP reset attacks, etc.
Heartbleed Attack Lab Using the heartbleed attack to steal secrets from a remote server.
Local DNS Attack Lab Using several methods to conduct DNS pharming attacks on computers in a LAN environment.
Remote DNS Attack Lab Using the Kaminsky method to launch DNS cache poisoning attacks on remote DNS servers.
Packet Sniffing and Spoofing Lab Writing programs to sniff packets sent over the local network; writing programs to spoof various types of packets.
Linux Firewall Exploration Lab Writing a simple packet-filter firewall; playing with Linux’s built-in firewall software and web-proxy firewall; experimenting with ways to evade firewalls.
Firewall-VPN Lab: Bypassing Firewalls using VPN Implement a simple vpn program (client/server), and use it to bypass firewalls.
Virtual Private Network (VPN) Lab Design and implement a transport-layer VPN system for Linux, using the TUN/TAP technologies. This project requires at least a month of time to finish, so it is good for final project.
Minix IPSec Lab Implement the IPSec protocol in the Minix operating system and use it to set up Virtual Private Networks.
Minix Firewall Lab Implementing a simple firewall in Minix operating system.
These labs cover some of the most common vulnerabilities in web applications. The labs show students how attacks work in exploiting these vulnerabilities.
Elgg is an open-source social-network system. We have modified it for our labs.
Cross-Site Scripting Attack Lab Launching the cross-site scripting attack on a vulnerable web application. Conducting experiments with several countermeasures.
Cross-Site Request Forgery Attack Lab Launching the cross-site request forgery attack on a vulnerable web application. Conducting experiments with several countermeasures.
Web Tracking Lab Experimenting with the web tracking technology to see how users can be checked when they browse the web.
SQL Injection Attack Lab Launching the SQL-injection attack on a vulnerable web application. Conducting experiments with several countermeasures.
Collabtive is an open-source web-based project management system. We have modified it for our labs.
Cross-site Scripting Attack Lab Launching the cross-site scripting attack on a vulnerable web application. Conducting experiments with several countermeasures.
Cross-site Request Forgery Attack Lab Launching the cross-site request forgery attack on a vulnerable web application. Conducting experiments with several countermeasures.
SQL Injection Lab Launching the SQL-injection attack on a vulnerable web application. Conducting experiments with several countermeasures.
Web Browser Access Control Lab Exploring browser’s access control system to understand its security policies.
PhpBB is an open-source web-based message board system, allowing users to post messages. We have modified it for our labs.
Cross-site Scripting Attack Lab Launching the cross-site scripting attack on a vulnerable web application. Conducting experiments with several countermeasures.
Cross-site Request Forgery Attack Lab Launching the cross-site request forgery attack on a vulnerable web application. Conducting experiments with several countermeasures.
SQL Injection Lab Launching the SQL-injection attack on a vulnerable web application. Conducting experiments with several countermeasures.
ClickJacking Attack Lab Launching the ClickJacking attack on a vulnerable web site. Conducting experiments with several countermeasures.
These labs cover the security mechanisms in operating system, mostly focusing on access control mechanisms in Linux.
Linux Capability Exploration Lab Exploring the POSIX 1.e capability system in Linux to see how privileges can be divided into smaller pieces to ensure the compliance with the Least Privilege principle.
Role-Based Access Control (RBAC) Lab Designing and implementing an integrated access control system for Minix that uses both capability-based and role-based access control mechanisms. Students need to modify the Minix kernel.
Encrypted File System Lab Designing and implementing an encrypted file system for Minix. Students need to modify the Minix kernel.
These labs cover three essential concepts in cryptography, including secrete-key encryption, one-way hash function, and public-key encryption and PKI.
Secret Key Encryption Lab Exploring the secret-key encryption and its applications using OpenSSL.
One-Way Hash Function Lab Exploring one-way hash function and its applications using OpenSSL.
Public-Key Cryptography and PKI Lab Exploring public-key cryptography, digital signature, certificate, and PKI using OpenSSL.
These labs focus on the smartphone security, covering the most common vulnerabilities and attacks on mobile devices. An Android VM is provided for these labs.
Android Repackaging Lab Insert malicious code inside an existing Android app, and repackage it.
Android Device Rooting Lab Develop an OTA (Over-The-Air) package from scratch to root an Android device.
There is only one way to properly learn web penetration testing: by getting your hands dirty. We teach how to manually find and exploit vulnerabilities. You will understand the root cause of the problems and the methods that can be used to exploit them. Our exercises are based on common vulnerabilities found in different systems. The issues are not emulated. We provide you real systems with real vulnerabilities.
From SQL Injection to Shell This exercise explains how you can, from a SQL injection, gain access to the administration console. Then in the administration console, how you can run commands on the system.
From SQL Injection to Shell II This exercise explains how you can, from a blind SQL injection, gain access to the administration console. Then in the administration console, how you can run commands on the system.
From SQL Injection to Shell: PostgreSQL edition This exercise explains how you can from a SQL injection gain access to the administration console. Then in the administration console, how you can run commands on the system.
Web for Pentester This exercise is a set of the most common web vulnerabilities.
Web for Pentester II This exercise is a set of the most common web vulnerabilities.
PHP Include And Post Exploitation This exercice describes the exploitation of a local file include with limited access. Once code execution is gained, you will see some post exploitation tricks.
Linux Host Review This exercice explains how to perform a Linux host review, what and how you can check the configuration of a Linux server to ensure it is securely configured. The reviewed system is a traditional Linux-Apache-Mysql-PHP (LAMP) server used to host a blog.
Electronic Code Book This exercise explains how you can tamper with an encrypted cookies to access another user’s account.
Rack Cookies and Commands injection After a short brute force introduction, this exercice explains the tampering of rack cookie and how you can even manage to modify a signed cookie (if the secret is trivial). Using this issue, you will be able to escalate your privileges and gain commands execution.
Padding Oracle This course details the exploitation of a weakness in the authentication of a PHP website. The website uses Cipher Block Chaining (CBC) to encrypt information provided by users and use this information to ensure authentication. The application also leaks if the padding is valid when decrypting the information. We will see how this behavior can impact the authentication and how it can be exploited.
XSS and MySQL FILE This exercise explains how you can use a Cross-Site Scripting vulnerability to get access to an administrator’s cookies. Then how you can use his/her session to gain access to the administration to find a SQL injection and gain code execution using it.
Axis2 Web service and Tomcat Manager This exercice explains the interactions between Tomcat and Apache, then it will show you how to call and attack an Axis2 Web service. Using information retrieved from this attack, you will be able to gain access to the Tomcat Manager and deploy a WebShell to gain commands execution.
Play Session Injection This exercise covers the exploitation of a session injection in the Play framework. This issue can be used to tamper with the content of the session while bypassing the signing mechanism.
Play XML Entities This exercise covers the exploitation of a XML entities in the Play framework.
CVE-2007-1860: mod_jk double-decoding This exercise covers the exploitation of CVE-2007-1860. This vulnerability allows an attacker to gain access to unaccessible pages using crafted requests. This is a common trick that a lot of testers miss.
CVE-2008-1930: Wordpress 2.5 Cookie Integrity Protection Vulnerability This exercise explains how you can exploit CVE-2008-1930 to gain access to the administration interface of a Wordpress installation.
CVE-2012-1823: PHP CGI This exercise explains how you can exploit CVE-2012-1823 to retrieve the source code of an application and gain code execution.
CVE-2012-2661: ActiveRecord SQL injection This exercise explains how you can exploit CVE-2012-2661 to retrieve information from a database.
CVE-2012-6081: MoinMoin code execution This exercise explains how you can exploit CVE-2012-6081 to gain code execution. This vulnerability was exploited to compromise Debian’s wiki and Python documentation website.
CVE-2014-6271/Shellshock This exercise covers the exploitation of a Bash vulnerability through a CGI.
Learn the fundamentals of Binary Auditing. Know how HLL mapping works, get more inner file understanding than ever. Learn how to find and analyse software vulnerability. Dig inside Buffer Overflows and learn how exploits can be prevented. Start to analyse your first viruses and malware the safe way. Learn about simple tricks and how viruses look like using real life examples.
Damn Vulnerable Web Application (DVWA) is a PHP/MySQL web application that is damn vulnerable. Its main goal is to be an aid for security professionals to test their skills and tools in a legal environment, help web developers better understand the processes of securing web applications and to aid both students & teachers to learn about web application security in a controlled class room environment.
Damn Vulnerable Web Services is an insecure web application with multiple vulnerable web service components that can be used to learn real world web service vulnerabilities. The aim of this project is to help security professionals learn about Web Application Security through the use of a practical lab environment.
OWASP Mutillidae II is a free, open source, deliberately vulnerable web-application providing a target for web-security enthusiest. With dozens of vulns and hints to help the user; this is an easy-to-use web hacking environment designed for labs, security enthusiast, classrooms, CTF, and vulnerability assessment tool targets. Mutillidae has been used in graduate security courses, corporate web sec training courses, and as an “assess the assessor” target for vulnerability assessment software.
Open Web Application Security Project (OWASP) Broken Web Applications Project, a collection of vulnerable web applications that is distributed on a Virtual Machine in VMware format compatible with their no-cost and commercial VMware products.
Bricks is a web application security learning platform built on PHP and MySQL. The project focuses on variations of commonly seen application security issues. Each ‘Brick’ has some sort of security issue which can be leveraged manually or using automated software tools. The mission is to ‘Break the Bricks’ and thus learn the various aspects of web application security.
The Hackademic Challenges implement realistic scenarios with known vulnerabilities in a safe and controllable environment. Users can attempt to discover and exploit these vulnerabilities in order to learn important concepts of information security through an attacker’s perspective.
The Web Attack and Exploitation Distro (WAED) is a lightweight virtual machine based on Debian Distribution. WAED is pre-configured with various real-world vulnerable web applications in a sandboxed environment. It includes pentesting tools that aid in finding web application vulnerabilities. The main motivation behind this project is to provide a practical environment to learn about web application’s vulnerabilities without the hassle of dealing with complex configurations. Currently, there are around 18 vulnerable applications installed in WAED.
XVWA is a badly coded web application written in PHP/MySQL that helps security enthusiasts to learn application security. It’s not advisable to host this application online as it is designed to be “Xtremely Vulnerable”. We recommend hosting this application in local/controlled environment and sharpening your application security ninja skills with any tools of your own choice. It’s totally legal to break or hack into this. The idea is to evangelize web application security to the community in possibly the easiest and fundamental way. Learn and acquire these skills for good purpose. How you use these skills and knowledge base is not our responsibility.
WebGoat is a deliberately insecure web application maintained by OWASP designed to teach web application security lessons.
SQLi-LABS is a comprehensive test bed to Learn and understand nitti gritty of SQL injections and thereby helps professionals understand how to protect.
This pentester training platform/lab is full of machines (boxes) to hack on the different difficulty level. Majority of the content generated by the community and released on the website after the staff’s approval. Besides boxes users also can pick static challenges or work on advanced tasks like Fortress or Endgame.
We all learn in different ways: in a group, by yourself, reading books, watching/listening to other people, making notes or things out for yourself. Learning the basics & understanding them is essential; this knowledge can be enforced by then putting it into practice.
Over the years people have been creating these resources and a lot of time has been put into them, creating ‘hidden gems’ of training material. However, unless you know of them, its hard to discover them.
So VulnHub was born to cover as many as possible, creating a catalogue of ‘stuff’ that is (legally) ‘breakable, hackable & exploitable’ - allowing you to learn in a safe environment and practice ‘stuff’ out. When something is added to VulnHub’s database it will be indexed as best as possible, to try and give you the best match possible for what you’re wishing to learn or experiment with.
CTF Resources A general collection of information, tools, and tips regarding CTFs and similar security competitions.
CTF write-ups 2016 Wiki-like CTF write-ups repository, maintained by the community. (2015)
CTF write-ups 2015 Wiki-like CTF write-ups repository, maintained by the community. (2015)
CTF write-ups 2014 Wiki-like CTF write-ups repository, maintained by the community. (2014)
CTF write-ups 2013 Wiki-like CTF write-ups repository, maintained by the community. (2013)
captf This site is primarily the work of psifertex since he needed a dump site for a variety of CTF material and since many other public sites documenting the art and sport of Hacking Capture the Flag events have come and gone over the years.
shell-storm The Jonathan Salwan’s little corner.
Security Tube hosts a large range of video tutorials on IT security including penetration testing , exploit development and reverse engineering.
SecurityTube Metasploit Framework Expert (SMFE) This video series covers basics of Metasploit Framework. We will look at why to use metasploit then go on to how to exploit vulnerbilities with help of metasploit and post exploitation techniques with meterpreter.
Wireless LAN Security and Penetration Testing Megaprimer This video series will take you through a journey in wireless LAN (in)security and penetration testing. We will start from the very basics of how WLANs work, graduate to packet sniffing and injection attacks, move on to audit infrastructure vulnerabilities, learn to break into WLAN clients and finally look at advanced hybrid attacks involving wireless and applications.
Exploit Research Megaprimer In this video series, we will learn how to program exploits for various vulnerabilities published online. We will also look at how to use various tools and techniques to find Zero Day vulnerabilities in both open and closed source software.
Buffer Overflow Exploitation Megaprimer for Linux In this video series, we will understand the basic of buffer overflows and understand how to exploit them on linux based systems. In later videos, we will also look at how to apply the same principles to Windows and other selected operating systems.
Comes with everything you need to understand complete systems such as SSL/TLS: block ciphers, stream ciphers, hash functions, message authentication codes, public key encryption, key agreement protocols, and signature algorithms. Learn how to exploit common cryptographic flaws, armed with nothing but a little time and your favorite programming language. Forge administrator cookies, recover passwords, and even backdoor your own random number generator.
This book is about constructing practical cruptosystems for which we can argue security under plausible assumptions. The book covers many constructions for different tasks in cryptography. For each task we define the required goal. To analyze the constructions, we develop a unified framework for doing cryptographic proofs. A reader who masters this framework will capable of applying it to new constructions that may not be covered in this book. We describe common mistakes to avoid as well as attacks on real-world systems that illustratre the importance of rigor in cryptography. We end every chapter with a fund application that applies the ideas in the chapter in some unexpected way.
The world has changed radically since the first edition of this book was published in 2001. Spammers, virus writers, phishermen, money launderers, and spies now trade busily with each other in a lively online criminal economy and as they specialize, they get better. In this indispensable, fully updated guide, Ross Anderson reveals how to build systems that stay dependable whether faced with error or malice. Here?s straight talk on critical topics such as technical engineering basics, types of attack, specialized protection mechanisms, security psychology, policy, and more.
This book offers a primer on reverse-engineering, delving into disassembly code-level reverse engineering and explaining how to decipher assembly language for those beginners who would like to learn to understand x86 (which accounts for almost all executable software in the world) and ARM code created by C/C++ compilers.
The focus areas that CTF competitions tend to measure are vulnerability discovery, exploit creation, toolkit creation, and operational tradecraft.. Whether you want to succeed at CTF, or as a computer security professional, you’ll need to become an expert in at least one of these disciplines. Ideally in all of them.
Pwnable.kr is a non-commercial wargame site which provides various pwn challenges regarding system exploitation.
Matasano Crypto Challenges (a.k.a. Cryptopals) is a collection of exercises that demonstrate attacks on real-world crypto by letting you implement and break the cryptoschemes yourself.
The Open Web Application Security Project (OWASP) is a 501(c)(3) worldwide not-for-profit charitable organization focused on improving the security of software. Our mission is to make software security visible, so that individuals and organizations worldwide can make informed decisions about true software security risks.
This guide arose out of the need for system administrators to have an updated, solid, well re-searched and thought-through guide for configuring SSL, PGP,SSH and other cryptographic tools in the post-Snowdenage. Triggered by the NSA leaks in the summer of 2013, many system administrators and IT security officers saw the need to strengthen their encryption settings.This guide is specifically written for these system administrators.
The penetration testing execution standard cover everything related to a penetration test - from the initial communication and reasoning behind a pentest, through the intelligence gathering and threat modeling phases where testers are working behind the scenes in order to get a better understanding of the tested organization, through vulnerability research, exploitation and post exploitation, where the technical security expertise of the testers come to play and combine with the business understanding of the engagement, and finally to the reporting, which captures the entire process, in a manner that makes sense to the customer and provides the most value to it.
A curated list of malware analysis tools and resources.
Web traffic anonymizers for analysts.
Trap and collect your own samples.
Malware samples collected for analysis.
Harvest and analyze IOCs.
Threat intelligence and IOC resources.
Antivirus and other malware identification tools
Web-based multi-AV scanners, and malware sandboxes for automated analysis.
Inspect domains and IP addresses.
Analyze malicious URLs. See also the domain analysis and documents and shellcode sections.
Analyze malicious JS and shellcode from PDFs and Office documents. See also the browser malware section.
For extracting files from inside disk and memory images.
Reverse XOR and other code obfuscation methods.
Disassemblers, debuggers, and other static and dynamic analysis tools.
Analyze network interactions.
Tools for dissecting malware in memory images or running systems.
Essential malware analysis reading material.
Pull requests and issues with suggestions are welcome! Please read the CONTRIBUTING guidelines before submitting a PR.
This list was made possible by:
Thanks!
A collection of penetration testing and offensive cybersecurity resources. Penetration testing is the practice of launching authorized, simulated attacks against computer systems and their physical infrastructure to expose potential security weaknesses and vulnerabilities. Should you discover a vulnerability, please follow this guidance to report it responsibly.
See also awesome-tor.
.exe
s”).See also DEF CON Suggested Reading.
See awesome-malware-analysis § Books.
See also HackingThe.cloud.
See also Reverse Engineering Tools.
certutil
(using fake certificates).wallet.dat
).See also awesome-industrial-control-system-security.
See also awesome-vulnerable.
docker pull citizenstig/dvwa
.docker pull bkimminich/juice-shop
.docker pull citizenstig/nowasp
.docker-compose build && docker-compose up
.docker pull ismisepaul/securityshepherd
.docker pull webgoat/webgoat-7.1
.docker pull webgoat/webgoat-8.0
.docker pull hmlio/vaas-cve-2014-0160
.docker pull vulnerables/cve-2017-7494
.docker pull hmlio/vaas-cve-2014-6271
.docker pull wpscanteam/vulnerablewordpress
.See awesome-lockpicking.
ping
, traceroute
, whois
, and more.shijack
.GET
/POST
, multithreading, proxies, origin spoofing methods, cache evasion techniques, etc.masscan
to quickly identify open ports and then nmap
to gain details on the systems/services on those ports.fierce.pl
DNS reconnaissance tool for locating non-contiguous IP space.See also awesome-pcaptools.
pcap
or pcapng
files with batch editing features.See also Intercepting Web proxies.
.p12
and .pfx
extensions), such as TLS/SSL certificates.sqlmap
that identifies SQLi vulnerabilities based on a given dork and (optional) website.See also awesome-osint.
See also Web-accessible source code ripping tools.
See also awesome-reversing, Exploit Development Tools.
See also awesome-social-engineering.
See also Proxies and Machine-in-the-Middle (MITM) Tools.
.git
repositories..git
repositories available in public.