You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I hosted a proxy using this module and it instantly got my server flagged. Seems like it might be because google's little ai robots or something think its a fake website impersonating the real one, while in reality it is just a proxy.
It might also be because i'm modifying the headers to allow iframe embeds with custom middleware. Could this be the case?
(see below for code)
function removeXFrame(data) {
if (data.headers) {
if (data.headers['x-frame-options']) {
delete data.headers['x-frame-options']
}
}
}
Could this be prevented in some way? (I know you can report safe-browsing inaccuracies to google, but I don't want it getting instantly flagged again)
Thank you,
-piggy
The text was updated successfully, but these errors were encountered:
I hosted a proxy using this module and it instantly got my server flagged. Seems like it might be because google's little ai robots or something think its a fake website impersonating the real one, while in reality it is just a proxy.
It might also be because i'm modifying the headers to allow iframe embeds with custom middleware. Could this be the case?
(see below for code)
Could this be prevented in some way? (I know you can report safe-browsing inaccuracies to google, but I don't want it getting instantly flagged again)
Thank you,
-piggy
The text was updated successfully, but these errors were encountered: