Jump to content

Nightw0lf

Legendary Member
  • Posts

    3,029
  • Joined

  • Last visited

  • Days Won

    86
  • Feedback

    0%

Everything posted by Nightw0lf

  1. what did you do this time you posted "hello world"? i think he has automatic insta-warn maxcheaters staff 2020: user register -> user ban group automatic set mark my words.
  2. what you give is a simple html not code (the tip of the iceberg) also hard to understand the problem, it will be hard to get a solution.
  3. this cant be.
  4. hahahahahahaha so you found the info about the official drops?
  5. Java has him now... RIP
  6. ask joey he was project leader so he knows or by searching l2j forums maybe there is a reference, but as tryskel said simply check existing L2J and compare with L2OFF (dont know how you find l2off tho)
  7. send me a message in about 12 hours from now.
  8. who made the pack maybe he can answer this: "fixed on latest version buy it and see for your self"
  9. why you cant do what everything is explained
  10. using sunrise is like going to jail but for real :D check config.java if the corresponding config files have any typo or capital to lower case miss-type its very common for projects
  11. all of your forms can be faked it does not change and its used for all of your forms lol
  12. εγκό ρίξι λαντι στο φοτια
  13. εγώ δεν σε έβρισα... άκου εκεί vodafone...
  14. όποιος κάνει σύνδεση το 2019 σε οτε/wind κλπ είναι κώτσος υπάρχουν νέες εταιρίες που προσφέρουν με λιγότερα λεφτά απο 50mbps εως 1gbps με χαμηλά ping αρκεί να ψάξεις τι παίζει στην περιοχή σου (μιλάω για θεσσαλονίκη και αθήνα)
  15. btw your website has a serious vulnerability VuGnsl8k5ZKsPUxniMb1I8XK2TbnILwCtcGUpA9X somebody can hack into another's account and pretend to be him and act like him (change pass, spend money, anything) also this script gives away all your "secrets" <script type="text/javascript"> $(document).ready(function(){ function verifyLogin(e){ $.ajax({ url:"/verifyLogin/"+$(e.target).val()+"", dataType: 'JSON', method: 'GET', success : function(vl){ if(vl.message=="ok"){ $(e.target).siblings("#message-email-log").html("<p style='color:green;'>Found email</p>").hide().fadeIn(800); }else{ $(e.target).siblings("#message-email-log").html("<p style='color:red;'>Mail not found</p>").hide().fadeIn(800); } } }); } function verifymailReg(e){ $.ajax({ url:"/verifyLogin/"+$(e.target).val()+"", dataType: 'JSON', method: 'GET', success : function(vl){ if(vl.message=="ok"){ $(e.target).siblings("#message-email-reg").html("<p style='color:white;'>Email not available</p>").hide().fadeIn(800); }else{ $(e.target).siblings("#message-email-reg").html("<p style='color:#92EC00;'>Email available</p>").hide().fadeIn(800); } } }); } function verifyPassword(e){ $.ajax({ url:"/verifyPassword/"+$(e.target).val()+"/"+$(e.target).parents('#form-login-in').find('#email').val()+"", dataType: 'JSON', method: 'GET', success : function(vl){ console.log(vl.dbpass+" "+vl.requestpass); if(vl.message=="ok"){ $(e.target).siblings("#message-password-log").html("<p style='color:green;'>Correct password</p>").hide().fadeIn(800); }else{ $(e.target).siblings("#message-password-log").html("<p style='color:red;'>Wrong password</p>").hide().fadeIn(800); } } }); } $("#email").blur(function(e){ if($(e.target).val()!=""){ verifyLogin(e); } }); $("#myform-registrationUser").submit(function(e){ event.preventDefault(); var a = $(e.target); var url="/customRegister"; var data = $(this).serializeArray(); var token = $("#token").val(); $.ajax({ url : url, data : data, dataType : 'JSON', method : 'POST', headers: {'X-CSRF-TOKEN': token}, }).done(function(response){ if(response.errors){ a.find("#message-name-reg").html(response.errors.name).fadeIn(400); a.find("#message-email-reg").html(response.errors.email).fadeIn(400); a.find("#message-password-reg").html(response.errors.password).fadeIn(400); } if(response.message=="ok"){ window.location.replace("/message-registration"); } }); }); $("#form-send-mail").submit(function(e){ e.preventDefault(); if($(e.targer).find("#email").val()=="" || $(e.targer).find("#subject").val()=="" || $(e.targer).find("#content").val()==""){ alert("kha"); }else{ $.ajax({ url: "/ckeckMail", method: "GET", data: $("#form-send-mail").serializeArray(), dataType: 'JSON', }).done(function(response){ if(response.errors){ console.log(response.errors); }else{ window.location.replace("/sendMail"); } }); } }); $('[data-toggle="tooltip"]').tooltip(); var id_banners = []; var id_premiums = []; $("a").each(function(index){ if($(this).hasClass("active_banner")){ id_banners.push($(this).attr("id")); } if($(this).hasClass("active_premium")){ id_premiums.push($(this).attr("id")); } }); setTimeout(function(){ $.ajax({ url: "/updateImpresions", method: "POST", data: {ids : id_banners, idsp : id_premiums}, dataType: "JSON", success : function(e){ //console.log("Update impressions"); }, error : function(e){ console.log("An error ocurred:"+e.error); } }); },100); $(".active_banner").click(function(){ var id = $(this).attr("id"); $.ajax({ url: "/updateClick", method: "POST", data: {id : id}, dataType: "JSON", success : function(e){ console.log(e.message); }, error : function(e){ console.log("An error ocurred"); } }); }); $(".visit").click(function(){ var id = $(this).attr("id"); $.ajax({ url: "/updateVisit", method: "POST", data: {id : id}, dataType: "JSON", success : function(e){ console.log(e.message); }, error : function(e){ console.log("An error ocurred"); } }); }); $(".active_premium").click(function(){ var id = $(this).attr("id"); $.ajax({ url: "/updatePremiumClick", method: "POST", data: {id : id}, dataType: "JSON", success : function(e){ console.log(e.message); }, error : function(e){ console.log("An error ocurred"); } }); }); var elements = $('#sign_modal_overlay, #sign_modal'); var body = $("body"); var modal = document.getElementById('sign_modal_overlay'); document.addEventListener("keydown", function(event) { if(event.keyCode === 27){ elements.removeClass('active'); body.css({"overflow-y":"visible"}); } }); window.onclick = function(event){ if(event.target == modal){ elements.removeClass('active'); body.css({"overflow-y":"visible"}); } } $('.open-modal-login').click(function(){ elements.addClass('active'); body.css({"overflow-y":"hidden"}); }); $('.close-modal').click(function(){ elements.removeClass('active'); body.css({"overflow-y":"visible"}); }); var el = $('#contact_modal_overlay, #contact_modal'); var modalc = document.getElementById('contact_modal_overlay'); document.addEventListener("keydown", function(event) { if(event.keyCode === 27){ el.removeClass('active'); body.css({"overflow-y":"visible"}); } }); window.onclick = function(event){ if(event.target == modalc){ el.removeClass('active'); body.css({"overflow-y":"visible"}); } } $('.open-modal-contact').click(function(){ el.addClass('active'); body.css({"overflow-y":"hidden"}); }); $('.close-modal-contact').click(function(){ el.removeClass('active'); body.css({"overflow-y":"visible"}); }); $.ajaxSetup({ headers: {'X-CSRF-TOKEN': $("meta[name='csrf-token']").attr("content")} }); }); window.onload = function(){ (function(d, s, id){ var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) {return;} js = d.createElement(s); js.id = id; js.src = "//connect.facebook.net/en_US/sdk.js"; fjs.parentNode.insertBefore(js, fjs); }(document, 'script', 'facebook-jssdk')); window.fbAsyncInit = function() { FB.init({ appId : '1616853315289008', xfbml : true, version : 'v2.8' }); }; $('.btn-facebook').click(function() { FB.getLoginStatus(function(response) { if (response.status === 'connected') { console.log('Already Logged In.'); } else { FB.login(); } }); }); } </script>
  16. Content Count 83 Joined October 14, 2014 Last visited 15 minutes ago Feedback 0% i also checked his account he only write bad content indeed i mean its amazing spending so much time to write all this hate everywhere... this needs effort!
  17. about the prices is a fix plus number of the prices is a multiplier applied on the prices more clues more easy solution
  18. you probably added some rate config to multiply the sell price, did you apply any patches last days you found on some l2jbrazil forums etc?
  19. upload the core for examination you did something
  20. TK nerd mode on. valid tho. thanks for sharing!
  21. https://updater.denart-designs.com
  22. read more about sql injection in google because login can do harm on your database https://en.wikipedia.org/wiki/SQL_injection use PDO or if you have old PHP $login = mysql_real_escape_string($login); or $login = preg_replace("/[^a-zA-Z]/", "", $login);// this leaves only letters from a to z + capital for numbers a-zA-Z0-9
  23. the answer is no-ip.com make account make a new host then you get something like myserver.ddns.net you put in l2.ini myserver.ddns.net and you run the application DUC of no ip in your computer and you have the same IP address even if your router resets. about the port open enter your router and do it not hard you need only 2106, 7777 ports to test go here canyouseeme.org
×
×
  • Create New...

Important Information

This community uses essential cookies to function properly. Non-essential cookies and third-party services are used only with your consent. Read our Privacy Policy and We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue..