malware Posted August 15, 2018 Posted August 15, 2018 (edited) What UI (user interface) used to develop kesperky antivirus? avat and eset and bitdefder? They have some sick gui. I wanna develop UI like them I guess bitdefender used embedded html and css UI.. Edited August 15, 2018 by malware
Extreme Coders Posted August 15, 2018 Posted August 15, 2018 Some of them uses the Sciter engine. Lightweight and free from all that Electron bloat. https://sciter.com/ 1
malware Posted August 15, 2018 Author Posted August 15, 2018 1 hour ago, Extreme Coders said: Some of them uses the Sciter engine. Lightweight and free from all that Electron bloat. https://sciter.com/ i am trying to find tutorial on google but i have not found anything. Can you please provide me some guide or online resource on reciter to follow along and devlop..
atom0s Posted August 15, 2018 Posted August 15, 2018 Sciter has a ton of examples included with its download. https://github.com/c-smile/sciter-sdk Keep in mind though, Sciter does not use standard Javascript / CSS engines, its all home-made so there are some things that will not work with it, and you cannot drop-in any JS library to work with it such as jQuery. (It comes with its own library similar to jQuery but is not as in depth.) Overall its a great library, the owner/author is very active, nice and helpful on their site, and has been used in a lot of commercial apps such as the various anti-virus UI's. 1
malware Posted August 15, 2018 Author Posted August 15, 2018 How do i reverse engineer sciter application? is it similar to reversing a win32 GUI app ?
evlncrn8 Posted August 15, 2018 Posted August 15, 2018 now, that is a question you can answer for yourself.. so how about going and doing it ?...
atom0s Posted August 15, 2018 Posted August 15, 2018 5 hours ago, malware said: How do i reverse engineer sciter application? is it similar to reversing a win32 GUI app ? What do you need to reverse? Are you looking for how the programs are doing certain things? A lot of the apps that are advertised on Sciters site as using Sciter no longer do. (Most have moved to Electron style setups instead so they can use official JS libraries and such.) So most of what you are probably trying to reverse don't use it anymore. If you are looking for the programs UI related stuff, most of the Sciter apps keep things in a single encrypted file / zipped file which are loaded into memory. (Sciter supports this directly as a way to try and prevent code-theft but its just a deterrent.) 1
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now