WAPT web panel

Questions about WAPT Server / Requests and help related to the WAPT server
Forum Rules
Community Forum Rules
* English support on www.reddit.com/r/wapt
* French community support is available on this forum
* Please prefix the topic title with [RESOLVED] if it is resolved.
* Please do not edit a topic that is tagged [RESOLVED]. Open a new topic referencing the old one.
* Specify the installed WAPT version, full version, and build number (2.2.1.11957 / 2.2.2.12337 / etc.) as well as the Enterprise/Discovery edition.
* Versions 1.8.2 and earlier are no longer supported. The only questions accepted regarding version 1.8.2 are related to upgrading to a supported version (2.1, 2.2, etc.).
* Specify the server OS (Linux/Windows) and version (Debian Buster/Bullseye - CentOS 7 - Windows Server 2012/2016/2019).
* Specify the OS of the administration/package creation machine and the machine with the problematic agent, if applicable (Windows 7/10/11/Debian 11/etc.).
* Avoid asking multiple questions when opening a topic, otherwise it may be ignored. If there are multiple topics, open separate topics, preferably one after the other and not all at the same time (i.e., do not spam the forum).
* Include code snippets, screenshots, and other images directly in the post. Links to Pastebin, Bitly, and other third-party sites will be systematically removed.
* As with any community forum, support is provided voluntarily by members. If you require commercial support, you can contact Tranquil IT's sales department at 02.40.97.57.55
Locked
Calvibald
Messages: 13
Registration: May 20, 2019 - 4:16 p.m.

May 29, 2019 - 08:20

Hello!
I've just finished a web interface for WAPT, which allows for room and user management.
It's possible to create groups of PCs called "rooms" and install packages on them.
Users can then access their assigned rooms and manage the packages within them.

Here's the GitHub link. The software hasn't been fully tested yet, so if you test it, I'd appreciate your feedback and any modifications you make.
https://github.com/jojojojojota/waptwebpanel

Have a good day/evening!
- JEANTET Joey, development student
User avatar
dcardon
WAPT Expert
Messages: 1932
Registration: June 18, 2014 - 09:58
Location: Saint Sébastien sur Loire
Contact :

June 4, 2019 - 1:03 PM

Hello Joey,
Calvibald wrote: May 29, 2019 - 8:20 AM I just finished a web interface for WAPT, which allows for room and user management.
It's therefore possible to create groups of PCs called "rooms" and install packages on them.
The created users can access the rooms assigned to them and manage the packages.

Here's the GitHub link. The software hasn't been tested at scale yet, so if you test it, I would appreciate feedback and any modifications made.
https://github.com/jojojojojota/waptwebpanel
Thank you very much for this contribution and your enthusiasm. This is a way of working that could prove interesting for middle or high schools that don't require high levels of security. I have two comments, however:

First, the WAPT security model is based on asymmetric cryptography, with the private key protected by a password and stored on the admin's machine or on an external token. In your code, the key and its password are stored directly in plain text on the server. It's important to understand that accessing the decrypted code signing key is essentially the same as having local admin rights on all machines.

Secondly, the WAPT server is written in Python; it would be much more appropriate to use Python rather than PHP! And Python code is, in my opinion, much nicer than PHP code. ;) )

Regarding my first point, it would be helpful to mention in your README.md the security implications of your proposed operating method. In your model, if the server is compromised, the entire network is compromised. This is true for most other deployment solutions, but not for WAPT when used according to the public WAPT documentation (WAPT has received CSPN security certification and qualification from ANSSI).

In the operating mode you're proposing, the server potentially becomes an attack vector. This isn't a problem for networks that don't require a high level of security, but the system administrator who will be using it still needs to be fully aware of this. Feel free to reuse part of this explanatory text in your README if you want!

Sincerely,

Denis
Denis Cardon - Tranquil IT
Share your experiences on WAPT! Send us your blog and article URLs in the "Your Opinion of the forum, and we'll feature them on the WAPT
Calvibald
Messages: 13
Registration: May 20, 2019 - 4:16 p.m.

June 4, 2019 - 1:47 PM

Thanks for the feedback! I'll add this to the readme since it's indeed important. As the system is more of a demo or alpha version, it's likely to change drastically. So I'll work on other solutions!

Have a good rest of the day!
- JEANTET Joey, development student
Locked