Jump to content
  • 0

Bypass Value Is Devided ?


LightFusion

Question

<a action="bypass -h npc_%objectId%_Link manormanager/manor_client_help001.htm">Listen to the explanation.</a><br>

I have this code for manor manager dialog(html), i would like to ask - are these bypass value readed by server as 1 single peace(-hnpc_10000_Linkmanormanager/manor_client_help001.htm), or they are devided on 3 peaces so 1(-h) 2(npc_10000_Link) 3(manormanager/manor_client_help001.htm) is going to server handle ?

Edited by LightFusion
Link to comment
Share on other sites

Recommended Posts

  • 0
else if (command.startsWith("Link"))
{
String path = command.substring(5).trim();
if (path.indexOf("..") != -1)
return;


final NpcHtmlMessage html = new NpcHtmlMessage(getObjectId());
html.setFile("data/html/" + path);
html.replace("%objectId%", getObjectId());
player.sendPacket(html);
}

Used as a single file, pointing on an existing data directory.

Edited by Tryskell
Link to comment
Share on other sites

  • 0
else if (command.startsWith("Link"))
{
String path = command.substring(5).trim();
if (path.indexOf("..") != -1)
return;


final NpcHtmlMessage html = new NpcHtmlMessage(getObjectId());
html.setFile("data/html/" + path);
html.replace("%objectId%", getObjectId());
player.sendPacket(html);
}

Used as a single file, pointing on an existing data directory.

 

so it doesnt divides when it send this value(over 3), it send it as full peace - hnpc_10000_Linkmanormanager/manor_client_help001.htm

Link to comment
Share on other sites

  • 0

When you are on Link, the only possibility is to send a htm. If you want another type of bypass, read by yourself L2Npc.onBypassFeedback for the complete list. That method can (and will probably) be overidden on children classes.

Edited by Tryskell
Link to comment
Share on other sites

  • 0

When you are on Link, the only possibility is to send a htm. If you want another type of bypass, read by yourself L2Npc.onBypassFeedback for the complete list. That method can (and will probably) be overidden on children classes.

you mean something like <a action="bypass -h npc_%objectId%_Augment 1">Augment.</a> is  an bypassFeedback ?

Link to comment
Share on other sites

  • 0

you mean something like <a action="bypass -h npc_%objectId%_Augment 1">Augment.</a> is  an bypassFeedback ?

 

You answer yourself to your question.

Link to comment
Share on other sites

  • 0

You answer yourself to your question.

but i still dont get if we are talking about this example

<a action="bypass -h npc_%objectId%_Augment 1">Augment.</a>

-h key is telling to some server handle, that npc_npcid_ is sending as first bypass ? then it sends Augment 1 as second bypass ? Or its send all info "npc_%npcid(or wethever  is objectid is)%_Augment 1" as an single bypass 

Link to comment
Share on other sites

  • 0
else if (command.startsWith("Link"))
{
String path = command.substring(5).trim();
if (path.indexOf("..") != -1)
return;


final NpcHtmlMessage html = new NpcHtmlMessage(getObjectId());
html.setFile("data/html/" + path);
html.replace("%objectId%", getObjectId());
player.sendPacket(html);
}

Used as a single file, pointing on an existing data directory.

 

One more thing, 

about html 

html.replace("%objectId%", getObjectId());

if "%objectId%" is crypted , does that means that npcid value, that it must represent, is being generated before cryption, so that means that inside html is writed not crypted %objectId% , but crypted "value" that represent objectID, for example "20000" would be "lbbbbb", or thats wrong ? And its crypting "%objectID%" string itself, by 1 each symbol, over string length, Or its not even being used ?

Edited by LightFusion
Link to comment
Share on other sites

  • 0

It's used to avoid bypass manipulation, about bypass it's cutted on multiple places, it cuts first keyword and stops on bypass (which stores all bypasses from htm into player list to avoid bypasses manipulation), on bypass it stops to npc, then finally got to final command (Link in your first exemple, but can be anything else).

 

You should maybe download L2PHX and see by yourself how it works. %tag% is commonly used as replacement tag. It allows to add dynamic things on a static file. Most of admin HTMs panel have to use such feature, otherwise you couldn't simply not use it (notably commands where you need to put parameter(s)).

Link to comment
Share on other sites

  • 0

It's used to avoid bypass manipulation, about bypass it's cutted on multiple places, it cuts first keyword and stops on bypass (which stores all bypasses from htm into player list to avoid bypasses manipulation), on bypass it stops to npc, then finally got to final command (Link in your first exemple, but can be anything else).

 

You should maybe download L2PHX and see by yourself how it works. %tag% is commonly used as replacement tag. It allows to add dynamic things on a static file. Most of admin HTMs panel have to use such feature, otherwise you couldn't simply not use it (notably commands where you need to put parameter(s)).

well but im asking if this tag is crypted staticly so its value is predifined, or its not used at all, ofc its hard to say without looking, but this is what i have in action, and its crypted

action="bypass -h )0" 

And thats acctualy unicode representation, so you cant see other part that cant be shown in message

action="bypass -h  41,48,25,5,5,17,11,23,21"

so its showing only 41 & 48, that represent ) 0.

 

And i cant figure out does Admin put in this html and dynamic tag( that has crypted presentation) or its not ?

Link to comment
Share on other sites

  • 0

well but im asking if this tag is crypted staticly so its value is predifined, or its not used at all, ofc its hard to say without looking, but this is what i have in action, and its crypted

action="bypass -h )0" 

And thats acctualy unicode representation, so you cant see other part that cant be shown in message

action="bypass -h  41,48,25,5,5,17,11,23,21"

so its showing only 41 & 48, that represent ) 0.

 

And i cant figure out does Admin put in this html and dynamic tag( that has crypted presentation) or its not ?

 

You probably fucked up encoding ( utf-8 ). There is no reason the tag being edited on htm. Or express yourself better.

Edited by Tryskell
Link to comment
Share on other sites

  • 0

You probably fucked up encoding ( utf-8 ). There is no reason the tag being edited on htm. Or express yourself better.

xm yeah seems i was right, those dialogs on server i'm working on doesnt have static bypass values with %tag%, because they are crypted, each bypass+objectid(aka npcid) is generated on the fly(everytime dialog is being opend its generates different type of crytped val), i found this by hooking html dialog itself from server... damn

Edited by LightFusion
Link to comment
Share on other sites

Guest
This topic is now closed to further replies.


  • Posts

    • oh, i didnt know that. I got everything i need. Thank you so much for your information and help!
    • In every mobius source there should be a readme file with all the links you need (system, client, IDEs etc). Best of luck!
    • I didnt say i dont know anything but i couldnt find a place to start. a guy here mentioned l2jmobius which is a good place to start. so i searched for it and its actually what i wanted. Now i just need to find a clean client to start. I know how to program and how to do changed to client but its hard to find clean clients. I dont really want to make my server exactly like gracia final. I just want to test out the clients and decide which one works better for me. I dont really like the awakening classes and the newest races. Can you please provide me with a couple of links of different clients so i can test them out before i start my project? As i said i cant really find any clean install client. Thank you in advance
    • OUR OFFICIAL WEBSITE / FORUM - MILLENNIUM-HOOK.NET CHEAT DESCRIPTION: Our cheat for Fortnite game has proven itself in the best way among players, the cheat has good optimization, a beautiful visual appearance and has extensive functionality. And reliable protection and HWID Spoofer give our cheat even more advantages over competitors! SUPPORTED ANTI-CHEATS: (read more on official website) - Easy Anti-Cheat (EAC): Undetected & Safe - BattlEye AC: Undetected & Safe - Hyperion AC: Undetected & Safe Our Fortnite cheat has a limited number of slots to ensure greater product security! (Available slots check on official website) FEATURES: AIMBOT: - Aim bone - Silent aim - Smooth - Fov - Distance - Key ESP: - Players - Loot - Vehicles - Traps - Other MISC: - No bloom - No spread - Vehicle flight - Instarevive - Aim while Jumping - Teleport to players within 4m (10m with pickaxe) or teleport downed players to you. - Teleport key - Fov changer REQUIREMENTS: - Included HWID Spoofer: Yes - Stream Bypass: No (Engineering works. Will be available again soon). - Supported game modes: Windowed, Borderless - Supported platforms: Steam / Uplay / Epic Games - Supported CPU: Intel & AMD - Supported OS: Windows 10 (1903,1909,2004,20H2,21H1, 22H2), Windows 11 (All version). Supported OS change and are added periodically. More check on official website.   IN-GAME SCREENSHOTS:   - Check on the official website.
    • OUR OFFICIAL WEBSITE / FORUM - MILLENNIUM-HOOK.NET CHEAT DESCRIPTION: We are offering the best in market Division 2 hacks without detection. If you are wondering where to get the best cheats and hacks for The Division 2, you are at the right place! Our private TD2  hack has been completely undetected since we released it! Also, our cheat has all the most necessary functions such as aimbot, esp, etc. And the limited slots will give even more security to our product. SUPPORTED ANTI-CHEATS: (read more on official website) - Easy Anti-Cheat (EAC): Undetected & Safe - FairFight AC: Undetected & Safe Our The Division 2 cheat has a limited number of slots to ensure greater product security! (Available slots check on official website) FEATURES: AIMBOT: - Enable aim - No recoil - Silent aim - Aim distance - Aim fov - Draw aim fov - Fov change - Weakspot - Aim hitbox - Head - Neck - Chest - Random ESP: - Enable visuals - Enable radar - Skeleton - Weakspot - Pre-rendering - ESP distance - Radar distance - Auto - Enemy - Name - Blacklist - Whitelist - Custom color - Clear whitelist - Clear blacklist MISC: - Auto fire/Triggerbot - Rapid of fire rate - Shotgun of fire rate - Magic bullets - Fast reload - Unlimited ammo - Shoot in safehouse - Accelerate - Noclip REQUIREMENTS: - Included HWID Spoofer: Yes - Stream Bypass: Yes - Supported game modes: Windowed, Borderless - Supported platforms: Steam / Uplay / Epic Games - Supported CPU: Intel & AMD - Supported OS: Windows 10 (1903,1909,2004,20H2,21H1, 22H2), Windows 11 (All version). Supported OS change and are added periodically. More check on official website.   IN-GAME SCREENSHOTS:   - Check on the official website.
  • Topics

×
×
  • Create New...