i\'m trying to make my own \"website checker\" for specific needs and i\'m having problem accessing the iFrame..
Uncaught SecurityError: Failed to rea
That's a normal security measure used by all the browsers. You can't access elements or frames that have a different origin, that would be a huge security flaw. Hence, the browser blocks all the scripts that try to do that kind of stuff. To perform any action inside a frame its content must have the same origin.
For further information take look at this answer of mine.