3.7 WordPress Usernames

Links

  • https://example.com/wp-json/wp/v2/users
  • https://example.com/?author=1


To get a list of the top 20 users in a WordPress website. Edit the website URL and copy paste the below in a terminal window:

for i in {1..20}; do curl -s "https://hacksmarter-manufacturing.shop/?author=$i" | grep -o '<title>.*&#8211;' | sed 's/<title>//; s/&#8211;//' | awk -v i="$i" '{print " " i ": " $0}'; done


If you get all 20 users, increase the number to 100 and try more.

Complete and Continue