Got this warning when I verify my Addon "Access to the `ctypes` global"

Warning: Insufficiently meticulous use of ctypes can lead to serious, and often exploitable, errors. The use of bundled binary code, or access to system libraries, may allow for add-ons to perform unsafe operations. All ctypes use must be carefully reviewed by a qualified reviewer.

I got the above warning when I use ctypes in my script

libUser32 = ctypes.open(“user32.dll”);

Access to the ctypes global

Warning: Insufficiently meticulous use of ctypes can lead to serious, and often exploitable, errors. The use of bundled binary code, or access to system libraries, may allow for add-ons to perform unsafe operations. All ctypes use must be carefully reviewed by a qualified reviewer.

That warning is right. Doesn’t necessarily mean your add-on won’t pass review, but it tells reviewers that they need to pay special attention to it.