News Feed
  • DrugHub has agreed to fully refund all users who lost money in the SuperMarket exit scam.  
  • Retro Market has gone offline. Circumstances of the closure unknown.  
  • SuperMarket has closed following an exit scam by one of the admins.  
  • The admin of Incognito Market, Pharoah, has been arrested by the FBI several months after exit scamming.  
  • Silk RoadTorhoo mini logo
  • darknet markets list
  • Popular P2P exchange LocalMonero has announced it is closing.  

I made a lil script to save you from reloading the page during maintenance : Archetyp | Torhoo darknet markets

#!/bin/bash

##	Is Archetyp Market Up?

socks_proxy='localhost:9050'

## Put your mirror here ⤵️
mirror[1]='http://4pt4axjgzmm4ibmxplfiuvopxzf775e5bqseyllafcecryfthdupjwyd.onion'
#mirror[2]=''
#mirror[3]='...'

for link in ${mirror[@]}; do

	timeout=5
	slink="${link:7:9}...${link: -7}"

	echo "🔎 testing $slink"

	if response=$(timeout $timeout curl -s --socks5-hostname "$socks_proxy" "$link") ; then

		echo "🙋 $link is up"

		if echo $response | grep -i maintenance > /dev/null; then

			echo "🛠  Market is still showing maintenance mode..."

		else

			echo "🤔 Market state changed!"

		fi

	else

		echo "❓ Can't reach $link"

	fi

done





I did this for myself to save some reloading, maybe 'watch' this or bind this to a notifications, idk your setup.