This message was deleted.
# general
s
This message was deleted.
c
@Giulia Guizzardi do you know about that?
a
Maybe grep for any other xml endpoints that look like a feed in a web fuzzing wordlist.
Maybe tmi, but something like this is easy enough and doesn’t require installing a fuzzer:
Copy code
while read endpoint; do
  url=“$site$endpoint”
  if curl -s “$url”; then
    echo “$endpoint works”
  Fi
done < < $(< “$wordlist_part”)
e
problem is rss feed url can take many forms. it can be different from the original url too. I already tested all the most common ones
a
Yeah that’s why I recommended looking for a webapp fuzzing wordlist (irrc owasp has a project with a decent one) and grep out anything that looks good to try (also the html could indicate a blog platform and search that)
f
@Erwan Grooters Here you go: http://platformengineering.org/blog/rss.xml
g
Well already solved. Thank you everyone! :)
e
damned I’m pretty sure I tested this one 😑 Sorry 🙇