jump to navigation

MaxDSL autologin November 5, 2010

Posted by Nicolae Matei in Web.
trackback

Daca aveti nevoie de un program pentru a va auto loga pe internet si a nu pierde site-urile deschise anterior in google chrome, puteti utiliza urmatorul cod ce il puneti in Extensions/userScriptCSS (trebuie sa va instalati aceasta extensie):

URL regexp: http://86.106.213.142:8080/

function login(){
  var f = document.getElementsByName('authenticateForm')[0];
  if(f){
    document.getElementsByName('username')[0].value = 'o1234567';
    document.getElementsByName('password')[0].value = '1234';
    f.submit();
  } else {
    var url = window.location.href.split('CPURL=')[1];
    if(url){
      url = unescape(url);
      window.location.href = url;
    }
  }
}
login();

tot ce trebuie sa schimbati este:
URL – Url-ul unde apare login-ul de la MaxDSL
username/password

Advertisement

Comments»

No comments yet — be the first.

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out / Change )

Twitter picture

You are commenting using your Twitter account. Log Out / Change )

Facebook photo

You are commenting using your Facebook account. Log Out / Change )

Connecting to %s

Follow

Get every new post delivered to your Inbox.