secfree
secfree

Reputation: 4647

Is there any way to detect whether a web api has updated?

There’s a lot of urls to scan for web security. I want to do a re-scan if the web api behind a url has updated. Is there any way to detect it?

My current solution is detecting it by detecting the change of page content, with calculating the simhash and Hamming distance. But the change of a web api may not affect its response.

Upvotes: 0

Views: 34

Answers (1)

0x90
0x90

Reputation: 6259

No, there is no general solution to query from the client side wether an API running on the server has been updated.

If such a method existed, it would lead to any number of security issues.

You may want to request a list of updated APIs from the developer.

Upvotes: 1

Related Questions