Find your PHPSESSID - VictorWesterlund/labylib GitHub Wiki
LabyMod uses the PHP scripting language for its cosmetics back-end. PHPSESSID
is a type of cookie stored in your browser; used and generated by PHP to keep track of your current session on labymod.net. Labylib uses this cookie in the same way to update cosmetics, as if you were doing these actions manually on the dashboard.
Disclaimer! This cookie can be used to pull off session hijacking (..yeah). To make things worse, LabyMod does not reset your PHPSESSID between sessions. What that means is that you should only ever run labylib and it's dependents locally on your machine.
Instructions for your browser:
- Chrome & Edge
- Firefox
- Safari
-
Internet Explorer(Not supported)
- Open labymod.net and log in with your Labymod account
- Press F12 on your keyboard (or Ctrl+⇧ Shift+I) to open DevTools
- Click on the
Application
tab. - Expand
Cookies
under theStorage
cateogry in the sidebar and selecthttps://www.labymod.net/
- Type
PHPSESSID
into the search box called 'Filter' - Copy
Value
(PHPSESSID) from the filtered table. If nothing comes up; try navigating to another page on labymod.net - Close DevTools
- Open labymod.net and log in with your Labymod account
- Press F12 on your keyboard (or Right-click the page and select "Inspect Element") to open Developer Tools
- Click on the
Storage
tab. -
Cookies
should already be expanded and selected, but if it isn't; expand it and selecthttps://www.labymod.net
- Using the search bar called 'Filter items', type:
PHPSESSID
- Copy
Value
(PHPSESSID) from the filtered table. If nothing comes up; try navigating to another page on labymod.net - Close Developer Tools
- Open labymod.net and log in with your Labymod account
- Right-click the page and select "Inspect Element" (or ⌥ Option+⌘ Command+I) to open Web Inspector
- Click on the
Storage
tab. - Expand
Cookies
in the sidebar and selectlabymod.net
- Find
PHPSESSID
in the table under the 'Name' column - Copy
Value
(PHPSESSID) from the filtered table. If nothing comes up; try navigating to another page on labymod.net - Close Web Inspector