Jump to content

Recommended Posts

Posted
5 minutes ago, xxdem said:

imho I would just go O(n) with an array of struct{int accountId, int sessionId} and perform a search or something similar, it doesn't seem that the n will ever be huge on this case, I could be wrong

 

That's true for the first map (accountId -> sessionId), it usually contains just few items. But the second map contains all account IDs that were logged since last server start so O(n) would be bad

Posted

kind of sick see this guy commenting all the time about which language is the best, "no, c is the best". please, everyone has their opinion so, keep you preference for c to yourself. stop complaining full of mimi and do better job using c  before post anything.


 

Thank you for the share  eresea.

Posted (edited)
1 hour ago, japarzo said:

kind of sick see this guy commenting all the time about which language is the best, "no, c is the best". please, everyone has their opinion so, keep you preference for c to yourself. stop complaining full of mimi and do better job using c  before post anything.


 

Thank you for the share  eresea.

 

What a clown, I never said C is the best, you say "all the time" I never did xd

 

1 hour ago, eressea said:

 

That's true for the first map (accountId -> sessionId), it usually contains just few items. But the second map contains all account IDs that were logged since last server start so O(n) would be bad

 

Can you enlighten me a bit? Why we need to cache all these sessions on the map? Even if we do, what would the average n lenght be on an official NCSoft server?

Edited by xxdem
Posted
45 minutes ago, xxdem said:

Can you enlighten me a bit? Why we need to cache all these sessions on the map? Even if we do, what would the average n lenght be on an official NCSoft server?

 

I'm not sure about purpose of the second map (I just know it's there and that it contains all account IDs since server start, maybe I'll dig bit more into it later), on retail server it will be big (surely 10k+)... That will be big difference between O(n) and O(log n). Probably it can be omitted - but it would probably have some performance impact.

Posted
5 hours ago, japarzo said:

kind of sick see this guy commenting all the time about which language is the best, "no, c is the best". please, everyone has their opinion so, keep you preference for c to yourself. stop complaining full of mimi and do better job using c  before post anything.


 

Thank you for the share  eresea.

respect the forum's last toxic user, its like a kind without ways to breed and reproduce, you just watch it fade slowly and smile for his sort but happy future.

Posted

yeah it's a pretty ancient bug that one, caused all kinds of havoc back in the like c2-c4 days before people actually figured out what it was, any c4-based ext will have it fixed via amped

Posted
2 hours ago, Anarchy said:

yeah it's a pretty ancient bug that one, caused all kinds of havoc back in the like c2-c4 days before people actually figured out what it was, any c4-based ext will have it fixed via amped

 

I've forgot about amped - this strategy of using two extenders at once seemed weird to me so I didn't care much about it :D

Still not fixed in leaked H5 and GD... maybe still not fixed on offic server :D

Posted

i wouldn't be surprised tbh, i mean hell you can still do the file download exploit on official servers atm, used it to snag eventdata not so long ago from there, seems they aren't much interested in security so hardly a surprise so many of their files floating around :D

Posted
On 7/31/2018 at 6:13 PM, xxdem said:

 

What a clown, I never said C is the best, you say "all the time" I never did xd

 

it is not hard to find your comments in the forum saying about "C, why not C? C is better than other languages" , so, please. You are the only Clown here trying to fool your own self. thx much love <3

Posted
23 minutes ago, japarzo said:

it is not hard to find your comments in the forum saying about "C, why not C? C is better than other languages" , so, please. You are the only Clown here trying to fool your own self. thx much love <3

 

yeah, its not hard its impossible. Prove me false

Posted

The file download exploit is fixed via the html link check setting in l2server.ini, they recently turned it on in NA due to what im assumeing, noticeing files being leaked :P. Though i have a feeling it will be turned back off in the next major update on NA when they replace the l2server.ini :D and forget about it. this login exploit is also fixed on retail

Posted

the reason it's disabled is they gave up on updating the whitelist for bypass commands for all the random shit they added in the newer chronicles in the client which sends bypass commands instead of packets, combined with the fact that in hf+ l2server they changed the way fstrings from AI work and now the fstring id is passed directly to the client in the html body like:

<fstring p1="%s" p2="%s" p3="%s" p4="%s" p5="%s">%d</fstring>

and it fills in whole bypass commands via localized NPCString-x.dat - both of which end up with false blocks on the bypass check and fuck up a bunch of systems :D

 

( so to any of you building exts on the hf+ files, don't forget to fix that ;) )

 

but from what i hear in the latest shit they don't appear to have enabled the link check (for example you can still rip htmls no problem if you know the html names) but instead might've added some filtering to prevent the download shit but last time i checked it was like 3 months ago and it worked fine on NA,RU and KR servers but a lot can change in 3 months :D

Posted

Ya, it was enabled on NA only as far as i can tell, as of ~2ish months ago, and when they did it broke a ton of quests and people trying to learn awakening race skills :D,  all it does is DC you on anything not cached, , so i expect they just enabled the l2server.ini setting when they noticed the log shit appearing a bit more then normal lol. but i expect it to be turned off again when they do there next major update and they get a new l2server.ini from KR, and forget they had it enabled :D.

Posted
2 hours ago, Anarchy said:

the reason it's disabled is they gave up on updating the whitelist for bypass commands for all the random shit they added in the newer chronicles in the client which sends bypass commands instead of packets, combined with the fact that in hf+ l2server they changed the way fstrings from AI work and now the fstring id is passed directly to the client in the html body like:

 


<fstring p1="%s" p2="%s" p3="%s" p4="%s" p5="%s">%d</fstring>

 

and it fills in whole bypass commands via localized NPCString-x.dat - both of which end up with false blocks on the bypass check and fuck up a bunch of systems :D

 

( so to any of you building exts on the hf+ files, don't forget to fix that ;) )

 

but from what i hear in the latest shit they don't appear to have enabled the link check (for example you can still rip htmls no problem if you know the html names) but instead might've added some filtering to prevent the download shit but last time i checked it was like 3 months ago and it worked fine on NA,RU and KR servers but a lot can change in 3 months :D

doubt that's the reason, there are close to none global bypasses on GOD+ (some oly/coc, few npcs) and privs running last off files like gamecoast have validation fully enabled with auto kick

about exploit, it still works fine on innova (+ they even had plain txt scripts for most of last years, lul)

Posted

it's the reason trust me :D in classic half the damn interface is run off bypasses + they clearly don't know how their own bypass check parser works cuz i have to reformat their own htmls every time to remove whitespace and shit from bypass urls in random htmls which also cause false blocks, and there's a reason gamecoast has it enabled with no problems (they patched it) but the fstring shit is for sure the biggest reason, check out npcstring-x.dat that shit is full of full bypass strings where they really only need the localized string to be in there, all those links will false block if u enable bypass checks on any server highfive or above, including latest classic and salvation l2server

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.




  • Posts

    • Gaining attention on Instagram today is more competitive than ever. Whether you're a content creator, entrepreneur, or influencer, building a loyal audience is essential—but often slow. That’s why many users turn to free Instagram followers to kickstart their growth and establish credibility early. With services like GoupSocial, you no longer have to wait months to build traction. By using tools such as instagram followers panel free and free smm panels, you can gain real followers and reach your goals faster. Why Free Instagram Followers Make a Difference Let’s face it—numbers matter. A higher follower count directly affects how others see your brand or profile. When people visit your account and see a big audience, they’re more likely to trust you, follow you, and engage with your content. Here’s how free Instagram followers impact your account: ✅ Boosted credibility: People associate large followings with trust and value. ✅ Greater reach: The Instagram algorithm favors high-engagement accounts. ✅ Brand appeal: Businesses want to collaborate with profiles that already have visibility. ✅ Faster momentum: Platforms like instagram free followers panel eliminate slow, organic-only growth paths. Add tools like free ig likes every 24 hours, and you're not just growing—you’re staying active and visible across the platform. Top Benefits of Using Free Instagram Followers 1. Gain Social Proof Instantly When visitors see a high follower count, it validates your profile. Tools like idigic Instagram followers allow you to generate this social proof fast—without compromising on quality. 2. Consistent Engagement With Likes and Views Pairing followers with tools like free ig likes every 24 hours ensures your content gets seen and interacted with. The algorithm loves engagement, and this keeps your posts fresh and prioritized. 3. Easier Entry Into Explore Page Profiles with high engagement have a better shot at being featured on trending pages. Platforms like igtools followers can help drive those early signals Instagram uses to recommend content. 4. Save Time While Looking Organic Building your presence takes time—unless you have help. With instagram free followers 100 real services, your account grows quickly and still looks natural, without spammy or fake-looking numbers. 5. Attract Collaborations With Brands Businesses look for influencers who can amplify their message. When your profile has strong numbers—boosted via instagram free followers like and free smm panels—you’re more likely to land partnerships and deals. Is It Safe to Get Free Instagram Followers? Yes, if done correctly. The key is using trusted sources. Some platforms fill your profile with bots, which can get your account flagged or banned. That’s why services like GoupSocial are essential—they deliver real, safe engagement through tools like instagram followers panel free. With idigic Instagram followers or igtools followers, the goal isn’t just more numbers—it’s smart, consistent growth that Instagram’s algorithm can respect. How to Use GoupSocial to Get Free Instagram Followers Getting started is simple: 🖊️ Enter your Instagram username 🎯 Choose the number of followers you want 🚀 Click "submit" and watch your count increase in real time Whether you want to test the waters with a few followers or boost engagement with free ig likes every 24 hours, GoupSocial has the tools to help. The Power of Using Growth Tools Strategically Gaining traction with free Instagram followers isn’t about cheating the system—it’s about working smarter. Using platforms that offer instagram free followers 100 real ensures you don’t just inflate numbers, but also increase your influence. Tools like instagram free followers like, free smm panels, and instagram followers panel free create a foundation of trust, engagement, and visibility. It’s the perfect launchpad for creators who want to focus on content—not on chasing every new follower manually. Start Strong, Grow Smarter Instagram success is no longer reserved for those with large budgets. With the right tools, anyone can build influence. Free Instagram followers from reputable services like GoupSocial help you achieve fast, safe, and impactful growth. Use features like free ig likes every 24 hours, explore tools like idigic Instagram followers, and make use of instagram free followers like strategies to grow with confidence. The power to scale is in your hands—start now and watch your audience thrive.
    • Buying & Selling FFXIV FFXI Horizon Eden and other server
    • Buying & Selling Torn City Cash
    • Added: payment method MidTrans - for Indonesia MercadoPago - for Brazil and etc.
  • Topics

×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock