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>.*–' | sed 's/<title>//; s/–//' | awk -v i="$i" '{print " " i ": " $0}'; done
If you get all 20 users, increase the number to 100 and try more.