-
Posts
2,854 -
Credits
0 -
Joined
-
Last visited
-
Days Won
41 -
Feedback
0%
Content Type
Articles
Profiles
Forums
Store
Everything posted by Nightw0lf
-
Code Free DenArt Donate Panel v4 (WEB)
Nightw0lf replied to Nightw0lf's topic in Server Shares & Files [L2J]
UPDATE 19/9/2022 Fixed Payeer IPN now works with currency Added new config on PAYEER for currency -
Discussion Did you ever scan GameServer.exe of l2jmobius ?
Nightw0lf replied to GsL's topic in Server Development Discussion [L2J]
he obviously never been there so he cant know... with superiority complex you are always second in his brain in any way, its how he is rised his parrents money made him like that and the reason he is allowed to write toxic answers, attack you personally, beign racist and all is this "good manners" start from home, proofs is on every reply he has no ethics and wont stop until he gets a good ass kick. his fake wannabe complex of superiority can also be translated to this: American Pie 7 (Beta House) "A Lion with a small penis must compensate with a mighty roar." nobody -
Discussion Did you ever scan GameServer.exe of l2jmobius ?
Nightw0lf replied to GsL's topic in Server Development Discussion [L2J]
superiority complex -
Discussion Did you ever scan GameServer.exe of l2jmobius ?
Nightw0lf replied to GsL's topic in Server Development Discussion [L2J]
Your nobody ass went all serious mode maybe we vote for you to fill some graphic designer position now! your superiority complex amazes me every time you write something but you are nobody anyway -
Discussion Did you ever scan GameServer.exe of l2jmobius ?
Nightw0lf replied to GsL's topic in Server Development Discussion [L2J]
+ and both sizes are big for that resolution -
Discussion Did you ever scan GameServer.exe of l2jmobius ?
Nightw0lf replied to GsL's topic in Server Development Discussion [L2J]
i believe you are wrong here the size also depends on depth you can see higher values even in small resolutions, dont listen to the idiot he is just saying random stuff so he wont look like an idiot, its what he does... its his "thing" if you want, just do what we do with handicapped people. say ok and leave him be. Note: https://www.google.com/search?q=bat+to+exe -
Discussion Did you ever scan GameServer.exe of l2jmobius ?
Nightw0lf replied to GsL's topic in Server Development Discussion [L2J]
you obviously talking noncense again, look better i will let this one go and forget you said that. -
Discussion Did you ever scan GameServer.exe of l2jmobius ?
Nightw0lf replied to GsL's topic in Server Development Discussion [L2J]
I've also have a free updater at https://updater.denart-designs.com/ who does that excact thing and its obfuscated but depends on obfuscation it will show more or less false positives every time i update it and its still runs on windows normally with self sign. -
Discussion Did you ever scan GameServer.exe of l2jmobius ?
Nightw0lf replied to GsL's topic in Server Development Discussion [L2J]
https://github.com/Zoey76/L2 -
Code Free DenArt Donate Panel v4 (WEB)
Nightw0lf replied to Nightw0lf's topic in Server Shares & Files [L2J]
UPDATE 18/09/2022 Supports L2OFF & L2JAVA servers Advext and Vanganth servers are supported Multiserver selection function (can add unlimited servers l2j and l2off) Cleanup on translations Added more translations Added Error and Success messages Donate Item Icons now show dynamically from the ID you set Ability to ban attackers who snooping in the back links and rest apis Added global banlist function every 30 minutes download updated ban lists Added lucera jar for unix without GUI and windows with GUI Updaed Log system Added Developer, Warning, Info, Payment and Error logs Clean up old code from v2 panel Rewrite login from game function also supports server selection Added icons in base template Added composer Added requirements check Added Agreement Supports MsSQL, MySQL, MariaDB databases and drivers mysqli, pdo (dblib, mysql), sqlsrv. Added more protection layers in paypal ipn Stable core Mobile friendly with responsive design works on all devices. -
GR Αναζήτηση συνεργάτη για ολοκλήρωση project πληρωμών με κρυπτ
Nightw0lf replied to ScRaB4ever's topic in Off-Topics
βάλε και εσύ ένα χεράκι είδες κώδικα; ζόρικα τα πράγματα -
GR Αναζήτηση συνεργάτη για ολοκλήρωση project πληρωμών με κρυπτ
Nightw0lf replied to ScRaB4ever's topic in Off-Topics
https://dev.twitch.tv/docs/api/get-started είναι το καλύτερο παράδειγμα που μπορώ να σου δώσω Authorization Tokens Client Id Client secret Η καλύτερη πιστοποίηση μέσω των κεφαλίδων (headers) χωρίς να φορτώνεις body (εξοικονόμηση πόρων) και δίνεις πρόσβαση σε συγκεκριμένους τομείς με json απαντήσεις αφού γίνει η πιστοποίηση, μετά από αυτό έρχεται η ζωή των tokens και η ανανέωσή τους. και το documentation για τους developers ένα παράδειγμα: https://dev.twitch.tv/docs/api/reference#get-game-analytics αυτά. -
GR Αναζήτηση συνεργάτη για ολοκλήρωση project πληρωμών με κρυπτ
Nightw0lf replied to ScRaB4ever's topic in Off-Topics
επειδή έχω ασχοληθεί πολύ με τα IPN θα σου πρότεινα να ασχοληθείς περισσότερο με την πιστοποίηση και την ασφάλεια γιατί λείπουν πολλά απο τη PHP σύνδεση που κάνει ο συνδρομητής σου μιλάω για αυτό: https://files.fiskpay.net/dependency/fiskpay-dependency.zip <?php /* * @package fiskpay.ipn * * @copyright (C) FiskPay https://fiskpay.net/ * @license GNU General Public License version 2 or later; */ //Add tor wallet address in the $wallet parameter. Example: // //$wallet = "0x1BedAb21aB78D16a4EDAf6eBbb746ccfEA5e7ad0"; $wallet = "0x1bedab21ab78d16a4edaf6ebbb746ccfea5e7ad0"; $data = json_decode(file_get_contents('php://input'), true); if($data) { $claimed = false; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, 'https://api.fiskpay.net/claim/'); curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode(array('k' => $data['0'], 'w' => $wallet))); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_POST, true); $json_data = curl_exec($ch); curl_close($ch); if($json_data) { $claim_data = json_decode(preg_replace('/[\x00-\x1F\x80-\xFF]/', '', $json_data)); if($claim_data != null && $claim_data -> claim) { $claimed = true; } } if($claimed) { //Variables feched from the post form during client payment $variable_1 = $data['1']; $variable_2 = $data['2']; $variable_3 = $data['3']; $variable_4 = $data['4']; $crypto_currency = $data['5']; $crypto_amount = $data['6']; $fiat_currency = $data['7']; $fiat_amount = $data['8']; $transaction_hash = $data['9']; $transaction_chain_id = $data['10']; /*--------------------------------------------------*/ /* */ /* */ /* */ /* remove these commends and */ /* add your code here! */ /* */ /* */ /* */ /*--------------------------------------------------*/ } } ?> επίσης καλό είναι να δώσεις και ένα sandbox με ελεύθερη χρήση και να στήσεις ένα github project για τον composer θα κερδίσεις πολύ γρηγορότερα κόσμο αν όλα γίνονται εύκολα και υπάρχει wiki για το Rest API με documentation για τους developers, επίσης θα ήταν καλό να μην σταθείς μόνο στην PHP αλλά να το δώσεις για περισσότερες γλώσσες. Y.γ: https://app.fiskpay.net/ αυτό δεν φαίνεται πολύ καλά, γεμάτο nulls είναι -
99% of admins globally wont know how laravel works is what i am trying to say, it needs another level of php knowledge to do something on this files and without support or actually pay some developer by hour is very expensive to maintain such files, thats just my opinion. and as you see the vps is also not easy to install i know first hand
-
i saw its on laravel 9 and php 8.1 so its latest technologies and i like that, but laravel it will not be easy for maintainance or update, so far i managed to login but links are breaking all the time its fustrating buy a vps 3.5 euro and set it up, its worth doing that because you will eventually need it.
-
donate items automatically go here https://shop.denart-designs.com/product/account-panel/
-
I did not read the topic at full title and first line ill read it later, i think i came to hard it was not my intention and neither do i have any scores except the trash talker on top of your comment that is doing ads on top of your comments in the other topic and i got confused anyway he kinda looks like a dissapointed fan of mine. like an ex who cant even get fucked properly. he is anoying some times but he got used in getting e-ass whooped. https://github.com/sdrak94/inertiax import static "L2AEPvP in 2021" about the code yes that goes without saying that i try the code but in my long experience it will always have another thing to be fixed even after testing, well i dont know why not use PHP its very easy to write something if you know how to, hell i could write that in python if i was good and python was able to run in something that is very commonly used like a xampp or a hosting that is available almost everywhere and easy if you see by the years even l2editor has become an online tool you dont need to install java or python or anything to run it, plus is my main language i almost practice 19+ years on php so its like making dinner kinda thing. ok i just read the topic what you say now makes sense
-
WTS L2jWeb V2 Account Control Panel for l2j
Nightw0lf replied to Seamless's topic in Marketplace [L2Packs & Files]
template is taken from here consider giving some credits https://github.com/puikinsh/CoolAdmin my first thoughts on seeing the below list is that either you did random stuff or you used something complex as engine like laravel framework or something because if its pure PHP the panel need more work overal is kinda bad on the front end for example it loads paypal and other libraries not needed or used in every page https://prnt.sc/lJ6K_B9OkyHj loads after body javascripts https://prnt.sc/ZFQO-WS_05pK some weird stuff here https://prnt.sc/QGYG0oT3zFEg https://acp.l2jweb.com/create-transaction?amount=1&character=test3 this link provides attack oportunities https://prnt.sc/Vqg-lf4OhYpi why? the csrf seems not to work thats a potential XSS attack overall this is only what can be seen, in backend is probably the same or worse you need to put some effort on this panels mate alot of functionalities missing from your demo that i saw in the images can you update the demo? Note a netsparker or charles user can damage your shop is it tested? -
Help RaidBoss aCis
Nightw0lf replied to Williams's question in Request Server Development Help [L2J]
welcome to l2j, use l2off instead -
by warning him to not get scammed from somebody else with my panels is not a joke or plug on my services or products. and if you want to know many people come to me crying about bad panels that not work, and when i ask where did you get it from they say "amnesia" so warning before they get some message from this scammers is not bad because this comments will stay and they are good for seo and those who search, so i really dont get why are you saying that or why you think that in first place, and even why care what i do with my products? even here did you see how big this code was? how can you make it work in one run? ofc it will have bugs i am a pragmatist not a dream seller. i do something it will have bugs and i will fix them thats the truth and the end, feel free to disagree.
-
WTB SQL Script for merging servers
Nightw0lf replied to tabosas's topic in Marketplace [L2Packs & Files]
burned. -
WTB SQL Script for merging servers
Nightw0lf replied to tabosas's topic in Marketplace [L2Packs & Files]
the idiot will not speak now that is shared in PHP