Noel Neo Banking est une ressource bancaire compacte ESX avec des commandes pour créer, financer, transférer et supprimer des comptes. FiveMX a inspecté le public RezaNoel/Noel-NeoBanking repository le 23 juillet 2026 à l'engagement e5d202e1cdd3.
What was verified
The manifest identifies version 1.0.0 and loads @mysql-async/lib/MySQL.lua, followed by the shared config and server code. The config still expects the legacy esx:getSharedObject event. The README documents /bank for account creation, deposits, withdrawals, transfers and deletion, plus /balance for reading the balance.
This is an older integration pattern. A current ESX server may use imports and oxmysql instead of the declared event and mysql-async library. Do not rename the dependency or database calls without reviewing the complete source and testing the resulting query behavior.
Database review before use
- Read the server queries and identify every table, column, identifier and uniqueness assumption.
- Create a disposable database from a sanitized staging snapshot.
- Run account creation twice and verify that duplicate names or identifiers are rejected consistently.
- Test zero, negative, very large and concurrent deposit, withdrawal and transfer requests.
- Confirm that account deletion cannot remove another player’s account or leave an incorrect balance.
Security and migration boundary
Every balance change must be authorized and calculated on the server. Treat client-supplied account identifiers and amounts as untrusted. If you port the resource to oxmysql, use parameterized queries and preserve transaction boundaries for transfers; subtracting and adding money in unrelated statements can create inconsistent balances after an error.
The repository has no tagged release or visible licence file in the inspected tree. FiveMX did not verify a supported migration path, production load profile or compatibility with current ESX. Pin the reviewed commit, keep a database backup and use the resource only after the exact account workflow passes staging tests.