Vik
Vik

Reputation: 5961

Any idea how to find a website written on ROR?

Any idea how to find a website written on ROR?

I mean just looking at urls ... how I can identify the written in ROR ?

Thanks for your time .

Upvotes: 0

Views: 74

Answers (2)

Mischa
Mischa

Reputation: 43298

Just looking at URLs? Impossible. Most Rails apps these days have this:

<meta name="csrf-param" content="authenticity_token"/>
<meta name="csrf-token" content="y3DSVtX1Q2ZFviGXhCWCjjFaoRJImq7hJAWrZugudLU="/>

You could check the HTML source for that.

Upvotes: 3

Eric
Eric

Reputation: 43

No way by looking at URLs, and I'm pretty sure it's also impossible by looking at source code since it's all HTML.

Upvotes: 0

Related Questions