Default Users in SAP Commerce Cloud

Nuray Fahri
23 min readMar 25, 2024

--

SAP Commerce Cloud includes a preconfigured default set of users designed for development and demonstration purposes. The availability of users and roles is dependent on module functionality.

There are several default user accounts that come with the SAP Commerce Cloud system, the list can be found here: Default Users.

For security reasons, with the new versions of SAP Commerce Cloud all default users are initially disabled and do not come with preconfigured passwords. However, previous versions (e.g., before patch release 1808.24, 6.7) included default passwords for these users and they were enabled for login.

Important!!!

If you’ve been utilizing essential, project, and sample data with users that had default passwords in older commerce versions, there’s a possibility that you may still have some of those passwords in your system(we learned it in the hard way :D). To ensure that no default passwords persist after an upgrade, it’s crucial to follow the procedure outlined in SAP Note: 2922193:

First to execute password check groovy script:

import de.hybris.platform.core.model.user.UserModel
import de.hybris.platform.servicelayer.exceptions.UnknownIdentifierException
import de.hybris.platform.servicelayer.user.PasswordEncoderService
import de.hybris.platform.servicelayer.user.UserService
import org.slf4j.Logger
import org.slf4j.LoggerFactory

import java.util.stream.Collectors
import java.util.stream.Stream

class DefaultPasswordChecker {
private static final Collection<String> EMPTY_PASSWORDS = Arrays.asList("", null)
private static final Collection<String> COMMON_PASSWORDS = Arrays.asList("nimda", "1234", "123456", "12341234", "password", "pass123")
private static final Collection<UserWithDefaultPasswords> USERS_WITH_KNOWN_PASSWORDS = [new UserWithDefaultPasswords("admin", "nimda"), new UserWithDefaultPasswords("anonymous", "suomynona"), new UserWithDefaultPasswords("hac_editor", "editor", ""), new UserWithDefaultPasswords("hac_viewer", "viewer", ""), new UserWithDefaultPasswords("yformsmanager", "yformsmanager"), new UserWithDefaultPasswords("alistair@hybris.com", "", "12341234"), new UserWithDefaultPasswords("BackofficeIntegrationAdministrator", ""), new UserWithDefaultPasswords("BackofficeIntegrationAgent", ""), new UserWithDefaultPasswords("integrationmonitoringtestuser", ""), new UserWithDefaultPasswords("integrationservicetestuser", ""), new UserWithDefaultPasswords("vjdbcReportsUser", "1234"), new UserWithDefaultPasswords("analyticsmanager", "1234"), new UserWithDefaultPasswords("cmsreader-apparel", "1234"), new UserWithDefaultPasswords("keenreviewer1@hybris.com", "password", "12341234"), new UserWithDefaultPasswords("reviewer1@hybris.com", "password", ""), new UserWithDefaultPasswords("keenreviewer2@hybris.com", "password", "12341234"), new UserWithDefaultPasswords("reviewer2@hybris.com", "password", ""), new UserWithDefaultPasswords("keenreviewer3@hybris.com", "password", "12341234"), new UserWithDefaultPasswords("reviewer3@hybris.com", "password", ""), new UserWithDefaultPasswords("keenreviewer4@hybris.com", "password", "12341234"), new UserWithDefaultPasswords("reviewer4@hybris.com", "password", ""), new UserWithDefaultPasswords("keenreviewer5@hybris.com", "password", "12341234"), new UserWithDefaultPasswords("reviewer5@hybris.com", "password", ""), new UserWithDefaultPasswords("keenreviewer6@hybris.com", "password", "12341234"), new UserWithDefaultPasswords("reviewer6@hybris.com", "password", ""), new UserWithDefaultPasswords("keenreviewer7@hybris.com", "password", "12341234"), new UserWithDefaultPasswords("reviewer7@hybris.com", "password", ""), new UserWithDefaultPasswords("keenreviewer8@hybris.com", "password", "12341234"), new UserWithDefaultPasswords("reviewer8@hybris.com", "password", ""), new UserWithDefaultPasswords("keenreviewer9@hybris.com", "password", "12341234"), new UserWithDefaultPasswords("reviewer9@hybris.com", "password", ""), new UserWithDefaultPasswords("keenreviewer10@hybris.com", "password", "123456"), new UserWithDefaultPasswords("reviewer10@hybris.com", "password", ""), new UserWithDefaultPasswords("keenreviewer11@hybris.com", "password", "123456"), new UserWithDefaultPasswords("reviewer11@hybris.com", "password", ""), new UserWithDefaultPasswords("keenreviewer12@hybris.com", "password", "123456"), new UserWithDefaultPasswords("reviewer12@hybris.com", "password", ""), new UserWithDefaultPasswords("keenreviewer13@hybris.com", "password", "123456"), new UserWithDefaultPasswords("reviewer13@hybris.com", "password", ""), new UserWithDefaultPasswords("keenreviewer14@hybris.com", "password", "123456"), new UserWithDefaultPasswords("reviewer14@hybris.com", "password", ""), new UserWithDefaultPasswords("keenreviewer15@hybris.com", "password", "123456"), new UserWithDefaultPasswords("reviewer15@hybris.com", "password", ""), new UserWithDefaultPasswords("keenreviewer16@hybris.com", "password", "123456"), new UserWithDefaultPasswords("reviewer16@hybris.com", "password", ""), new UserWithDefaultPasswords("keenreviewer17@hybris.com", "password", "123456"), new UserWithDefaultPasswords("reviewer17@hybris.com", "password", ""), new UserWithDefaultPasswords("keenreviewer18@hybris.com", "password", "123456"), new UserWithDefaultPasswords("reviewer18@hybris.com", "password", ""), new UserWithDefaultPasswords("keenreviewer19@hybris.com", "password", "123456"), new UserWithDefaultPasswords("reviewer19@hybris.com", "password", ""), new UserWithDefaultPasswords("keenreviewer20@hybris.com", "password", "123456"), new UserWithDefaultPasswords("reviewer20@hybris.com", "password", ""), new UserWithDefaultPasswords("keenreviewer21@hybris.com", "password", "123456"), new UserWithDefaultPasswords("reviewer21@hybris.com", "password", ""), new UserWithDefaultPasswords("keenreviewer22@hybris.com", "password", "123456"), new UserWithDefaultPasswords("reviewer22@hybris.com", "password", ""), new UserWithDefaultPasswords("keenreviewer23@hybris.com", "password", "123456"), new UserWithDefaultPasswords("reviewer23@hybris.com", "password", ""), new UserWithDefaultPasswords("keenreviewer24@hybris.com", "password", "123456"), new UserWithDefaultPasswords("reviewer24@hybris.com", "password", ""), new UserWithDefaultPasswords("keenreviewer25@hybris.com", "password", "123456"), new UserWithDefaultPasswords("reviewer25@hybris.com", "password", ""), new UserWithDefaultPasswords("keenreviewer26@hybris.com", "password", "123456"), new UserWithDefaultPasswords("reviewer26@hybris.com", "password", ""), new UserWithDefaultPasswords("keenreviewer27@hybris.com", "password", "123456"), new UserWithDefaultPasswords("reviewer27@hybris.com", "password", ""), new UserWithDefaultPasswords("keenreviewer28@hybris.com", "password", "123456"), new UserWithDefaultPasswords("reviewer28@hybris.com", "password", ""), new UserWithDefaultPasswords("keenreviewer29@hybris.com", "password", "123456"), new UserWithDefaultPasswords("reviewer29@hybris.com", "password", ""), new UserWithDefaultPasswords("keenreviewer30@hybris.com", "password", "123456"), new UserWithDefaultPasswords("reviewer30@hybris.com", "password", ""), new UserWithDefaultPasswords("asagent", "123456"), new UserWithDefaultPasswords("IntegrationAdministrator", "1234"), new UserWithDefaultPasswords("IntegrationAgent", "1234"), new UserWithDefaultPasswords("integrationapi_adminuser", ""), new UserWithDefaultPasswords("integrationapi_createuser", ""), new UserWithDefaultPasswords("integrationapi_viewuser", ""), new UserWithDefaultPasswords("manager", ""), new UserWithDefaultPasswords("cmsmanager", "1234"), new UserWithDefaultPasswords("revenueCloudCustomerApiUser", "nimda"), new UserWithDefaultPasswords("sapInboundProductUser", "nimda", ""), new UserWithDefaultPasswords("RegApproverA", "nimda", "12341234"), new UserWithDefaultPasswords("sapInboundMDMB2CCustomerUser", ""), new UserWithDefaultPasswords("sapInboundRCConfigUser", "nimda"), new UserWithDefaultPasswords("sapInboundSubscriptionPriceUser", "nimda"), new UserWithDefaultPasswords("searchmanager", "12341234"), new UserWithDefaultPasswords("csagent", "1234"), new UserWithDefaultPasswords("sapCpqQuoteApiUser", "nimda"), new UserWithDefaultPasswords("InboundConsentTemplateUser", "nimda"), new UserWithDefaultPasswords("punchout.customer@punchoutorg.com", "12341234"), new UserWithDefaultPasswords("punchout.customer2@punchoutorg.com", "12341234"), new UserWithDefaultPasswords("CustomerSupportAdministrator", "1234"), new UserWithDefaultPasswords("CustomerSupportManager", "1234"), new UserWithDefaultPasswords("CustomerSupportAgent", "1234"), new UserWithDefaultPasswords("sapInboundOMMReturnRequestUser", ""), new UserWithDefaultPasswords("importmanager", "1234"), new UserWithDefaultPasswords("sapInboundB2CCustomerUser", ""), new UserWithDefaultPasswords("sapInboundClassificationUser", ""), new UserWithDefaultPasswords("sapInboundPriceUser", ""), new UserWithDefaultPasswords("sapInboundB2BCustomerUser", ""), new UserWithDefaultPasswords("sapInboundOMMOrderUser", ""), new UserWithDefaultPasswords("marketingmanager", "", "12341234"), new UserWithDefaultPasswords("sapInboundOMSOrderUser", ""), new UserWithDefaultPasswords("test-user-with-orders@ydev.hybris.com", "Password123."), new UserWithDefaultPasswords("test-user-with-coupons@ydev.hybris.com", "Password123."), new UserWithDefaultPasswords("asagentsales", "123456"), new UserWithDefaultPasswords("asagentmanager", "123456"), new UserWithDefaultPasswords("customer.support.1@sap.com", "1234"), new UserWithDefaultPasswords("customer.support.2@sap.com", "1234"), new UserWithDefaultPasswords("customer.support.3@sap.com", "1234"), new UserWithDefaultPasswords("customer.support.4@sap.com", "1234"), new UserWithDefaultPasswords("customer.support.5@sap.com", "1234"), new UserWithDefaultPasswords("customer.support.6@sap.com", "1234"), new UserWithDefaultPasswords("customer.support.7@sap.com", "1234"), new UserWithDefaultPasswords("customer.support.8@sap.com", "1234"), new UserWithDefaultPasswords("WarehouseAdministrator", "1234"), new UserWithDefaultPasswords("WarehouseManager", "1234"), new UserWithDefaultPasswords("WarehouseAgent", "1234"), new UserWithDefaultPasswords("BedfordWarehouseAgent", "1234"), new UserWithDefaultPasswords("CarltonWarehouseAgent", "1234"), new UserWithDefaultPasswords("GlasgowWarehouseAgent", "1234"), new UserWithDefaultPasswords("JerseyWarehouseAgent", "1234"), new UserWithDefaultPasswords("LeedsWarehouseAgent", "1234"), new UserWithDefaultPasswords("BerlinMuseumWarehouseAgent", "1234"), new UserWithDefaultPasswords("BerlinDomWarehouseAgent", "1234"), new UserWithDefaultPasswords("BerlinZooWarehouseAgent", "1234"), new UserWithDefaultPasswords("BerlinHospitalWarehouseAgent", "1234"), new UserWithDefaultPasswords("MunichMuseumWarehouseAgent", "1234"), new UserWithDefaultPasswords("NakanoWarehouseAgent", "1234"), new UserWithDefaultPasswords("SecondaryNakanoWarehouseAgent", "1234"), new UserWithDefaultPasswords("ShinbashiWarehouseAgent", "1234"), new UserWithDefaultPasswords("KotoWarehouseAgent", "1234"), new UserWithDefaultPasswords("MisatoWarehouseAgent", "1234"), new UserWithDefaultPasswords("MatsudoWarehouseAgent", "1234"), new UserWithDefaultPasswords("DefaultWarehouseAgent", "1234"), new UserWithDefaultPasswords("Tulsa1WarehouseAgent", "1234"), new UserWithDefaultPasswords("Tulsa2WarehouseAgent", "1234"), new UserWithDefaultPasswords("Tulsa3WarehouseAgent", "1234"), new UserWithDefaultPasswords("Tulsa4WarehouseAgent", "1234"), new UserWithDefaultPasswords("Tulsa5WarehouseAgent", "1234"), new UserWithDefaultPasswords("IndianapolisWarehouseAgent", "1234"), new UserWithDefaultPasswords("TampaWarehouseAgent", "1234"), new UserWithDefaultPasswords("CajonWarehouseAgent", "1234"), new UserWithDefaultPasswords("TacomaWarehouseAgent", "1234"), new UserWithDefaultPasswords("WarehouseSAgent", "1234"), new UserWithDefaultPasswords("WarehouseEAgent", "1234"), new UserWithDefaultPasswords("WarehouseWAgent", "1234"), new UserWithDefaultPasswords("WarehouseNAgent", "1234"), new UserWithDefaultPasswords("cmspublisher", "1234"), new UserWithDefaultPasswords("cmsreviewer", "1234"), new UserWithDefaultPasswords("cmseditor", "1234"), new UserWithDefaultPasswords("cmstranslator", "1234"), new UserWithDefaultPasswords("cmstranslator-Annette", "1234"), new UserWithDefaultPasswords("cmstranslator-Seb", "1234"), new UserWithDefaultPasswords("cmsmanager-apparel-de", "1234"), new UserWithDefaultPasswords("cmsmanager-apparel-uk", "1234"), new UserWithDefaultPasswords("cmsmanager-powertools", "1234"), new UserWithDefaultPasswords("productmanager", "1234"), new UserWithDefaultPasswords("cmsmanager-electronics", "1234"), new UserWithDefaultPasswords("cmsmanager-electronics-euzone", "1234"), new UserWithDefaultPasswords("cmsmanager-electronics-eu", "1234"), new UserWithDefaultPasswords("cmsmanager-electronics-uk", "1234"), new UserWithDefaultPasswords("cmsmanager-electronics-de", "1234"), new UserWithDefaultPasswords("cmsmanager-electronics-us", "1234"), new UserWithDefaultPasswords("merchantvendormanager", "12341234"), new UserWithDefaultPasswords("vendor1vendoradministrator", "12341234"), new UserWithDefaultPasswords("vendor1vendorproductmanager", "12341234"), new UserWithDefaultPasswords("vendor1vendorcontentmanager", "12341234"), new UserWithDefaultPasswords("vendor1vendorwarehousestaff", "12341234"), new UserWithDefaultPasswords("vendor2vendoradministrator", "12341234"), new UserWithDefaultPasswords("vendor2vendorproductmanager", "12341234"), new UserWithDefaultPasswords("vendor2vendorcontentmanager", "12341234"), new UserWithDefaultPasswords("vendor2vendorwarehousestaff", "12341234"), new UserWithDefaultPasswords("vendor3vendoradministrator", "12341234"), new UserWithDefaultPasswords("vendor3vendorproductmanager", "12341234"), new UserWithDefaultPasswords("vendor3vendorcontentmanager", "12341234"), new UserWithDefaultPasswords("vendor3vendorwarehousestaff", "12341234"), new UserWithDefaultPasswords("vendor4vendoradministrator", "12341234"), new UserWithDefaultPasswords("vendor4vendorproductmanager", "12341234"), new UserWithDefaultPasswords("vendor4vendorcontentmanager", "12341234"), new UserWithDefaultPasswords("vendor4vendorwarehousestaff", "12341234"), new UserWithDefaultPasswords("vendor5vendoradministrator", "12341234"), new UserWithDefaultPasswords("vendor5vendorproductmanager", "12341234"), new UserWithDefaultPasswords("vendor5vendorcontentmanager", "12341234"), new UserWithDefaultPasswords("vendor5vendorwarehousestaff", "12341234"), new UserWithDefaultPasswords("vendor6vendoradministrator", "12341234"), new UserWithDefaultPasswords("vendor6vendorproductmanager", "12341234"), new UserWithDefaultPasswords("vendor6vendorcontentmanager", "12341234"), new UserWithDefaultPasswords("vendor6vendorwarehousestaff", "12341234"), new UserWithDefaultPasswords("vendor7vendoradministrator", "12341234"), new UserWithDefaultPasswords("vendor7vendorproductmanager", "12341234"), new UserWithDefaultPasswords("vendor7vendorcontentmanager", "12341234"), new UserWithDefaultPasswords("vendor7vendorwarehousestaff", "12341234"), new UserWithDefaultPasswords("vendor8vendoradministrator", "12341234"), new UserWithDefaultPasswords("vendor8vendorproductmanager", "12341234"), new UserWithDefaultPasswords("vendor8vendorcontentmanager", "12341234"), new UserWithDefaultPasswords("vendor8vendorwarehousestaff", "12341234"), new UserWithDefaultPasswords("keenreviewer0@hybris.com", "12341234"), new UserWithDefaultPasswords("merchantproductmanager", "12341234"), new UserWithDefaultPasswords("merchantcontentmanager", "12341234"), new UserWithDefaultPasswords("acctmgra", "12341234"), new UserWithDefaultPasswords("acctmgrb", "12341234"), new UserWithDefaultPasswords("acctmgrc", "12341234"), new UserWithDefaultPasswords("acctmgrd", "12341234"), new UserWithDefaultPasswords("linda.wolf@rustic-hw.com", "12341234"), new UserWithDefaultPasswords("lars.bauer@rustic-hw.com", "12341234"), new UserWithDefaultPasswords("hanna.schmidt@rustic-hw.com", "12341234"), new UserWithDefaultPasswords("james.bell@rustic-hw.com", "12341234"), new UserWithDefaultPasswords("carla.torres@rustic-hw.com", "12341234"), new UserWithDefaultPasswords("matheu.silva@rustic-hw.com", "12341234"), new UserWithDefaultPasswords("mingmei.wang@rustic-hw.com", "12341234"), new UserWithDefaultPasswords("mark.rivers@rustic-hw.com", "12341234"), new UserWithDefaultPasswords("anthony.lombardi@rustic-hw.com", "12341234"), new UserWithDefaultPasswords("william.hunter@rustic-hw.com", "12341234"), new UserWithDefaultPasswords("marie.dubois@rustic-hw.com", "12341234"), new UserWithDefaultPasswords("axel.krause@rustic-hw.com", "12341234"), new UserWithDefaultPasswords("ulf.becker@rustic-hw.com", "12341234"), new UserWithDefaultPasswords("alejandro.navarro@rustic-hw.com", "12341234"), new UserWithDefaultPasswords("lucas.kowalski@rustic-hw.com", "12341234"), new UserWithDefaultPasswords("byung-soon.lee@rustic-hw.com", "12341234"), new UserWithDefaultPasswords("gi.sun@rustic-hw.com", "12341234"), new UserWithDefaultPasswords("akiro.nakamura@rustic-hw.com", "12341234"), new UserWithDefaultPasswords("anil.gupta@rustic-hw.com", "12341234"), new UserWithDefaultPasswords("salome.levi@rustic-hw.com", "12341234"), new UserWithDefaultPasswords("linda.wolf@pronto-hw.com", "12341234"), new UserWithDefaultPasswords("hanna.schmidt@pronto-hw.com", "12341234"), new UserWithDefaultPasswords("james.bell@pronto-hw.com", "12341234"), new UserWithDefaultPasswords("mark.rivers@pronto-hw.com", "12341234"), new UserWithDefaultPasswords("mingmei.wang@pronto-hw.com", "12341234"), new UserWithDefaultPasswords("william.hunter@pronto-hw.com", "12341234"), new UserWithDefaultPasswords("gi.sun@pronto-hw.com", "12341234"), new UserWithDefaultPasswords("akiro.nakamura@pronto-hw.com", "12341234"), new UserWithDefaultPasswords("anil.gupta@pronto-hw.com", "12341234"), new UserWithDefaultPasswords("brandon.leclair@acme.com", "12341234"), new UserWithDefaultPasswords("janetta.estepp@acme.com", "12341234"), new UserWithDefaultPasswords("yoshie.dority@acme.com", "12341234"), new UserWithDefaultPasswords("glen.hofer@acme.com", "12341234"), new UserWithDefaultPasswords("temeka.meekins@acme.com", "12341234"), new UserWithDefaultPasswords("dionne.siguenza@acme.com", "12341234"), new UserWithDefaultPasswords("hermelinda.cusick@acme.com", "12341234"), new UserWithDefaultPasswords("karleen.holub@acme.com", "12341234"), new UserWithDefaultPasswords("abraham.mclane@acme.com", "12341234"), new UserWithDefaultPasswords("marvel.fargo@acme.com", "12341234"), new UserWithDefaultPasswords("darrin.hesser@acme.com", "12341234"), new UserWithDefaultPasswords("jules.hasson@acme.com", "12341234"), new UserWithDefaultPasswords("ula.barragan@acme.com", "12341234"), new UserWithDefaultPasswords("juliane.tickle@acme.com", "12341234"), new UserWithDefaultPasswords("lavone.dupler@acme.com", "12341234"), new UserWithDefaultPasswords("chelsie.steck@acme.com", "12341234"), new UserWithDefaultPasswords("daniele.sorber@acme.com", "12341234"), new UserWithDefaultPasswords("yan.shehorn@acme.com", "12341234"), new UserWithDefaultPasswords("fern.henline@acme.com", "12341234"), new UserWithDefaultPasswords("debera.spiller@acme.com", "12341234"), new UserWithDefaultPasswords("albert.decastro@acme.com", "12341234"), new UserWithDefaultPasswords("piedad.holdren@acme.com", "12341234"), new UserWithDefaultPasswords("bernardo.coelho@acme.com", "12341234"), new UserWithDefaultPasswords("sade.mcdougall@acme.com", "12341234"), new UserWithDefaultPasswords("latisha.latimer@acme.com", "12341234"), new UserWithDefaultPasswords("tom.ziebarth@acme.com", "12341234"), new UserWithDefaultPasswords("mara.martino@acme.com", "12341234"), new UserWithDefaultPasswords("elizabeth.juhlin@acme.com", "12341234"), new UserWithDefaultPasswords("sheilah.duffin@acme.com", "12341234"), new UserWithDefaultPasswords("eusebio.scharff@acme.com", "12341234"), new UserWithDefaultPasswords("alda.kamaka@acme.com", "12341234"), new UserWithDefaultPasswords("anamaria.coots@acme.com", "12341234"), new UserWithDefaultPasswords("lael.garibay@acme.com", "12341234"), new UserWithDefaultPasswords("jamey.sowa@acme.com", "12341234"), new UserWithDefaultPasswords("dot.cohan@acme.com", "12341234"), new UserWithDefaultPasswords("dorthy.geoghegan@acme.com", "12341234"), new UserWithDefaultPasswords("marie.kempner@acme.com", "12341234"), new UserWithDefaultPasswords("dietrich.brand@acme.com", "12341234"), new UserWithDefaultPasswords("dagmar.fischer@acme.com", "12341234"), new UserWithDefaultPasswords("angelyn.lobaugh@acme.com", "12341234"), new UserWithDefaultPasswords("tilda.prisbrey@acme.com", "12341234"), new UserWithDefaultPasswords("james.davis@acme.com", "12341234"), new UserWithDefaultPasswords("amelia.hill@acme.com", "12341234"), new UserWithDefaultPasswords("oliver.baker@acme.com", "12341234"), new UserWithDefaultPasswords("emily.bennett@acme.com", "12341234"), new UserWithDefaultPasswords("noah.jenkins@acme.com", "12341234"), new UserWithDefaultPasswords("isabella.jackson@acme.com", "12341234"), new UserWithDefaultPasswords("richard.martin@acme.com", "12341234"), new UserWithDefaultPasswords("hanna.andresen@acme.com", "12341234"), new UserWithDefaultPasswords("ossie.dilks@acme.com", "12341234"), new UserWithDefaultPasswords("annabel.golder@acme.com", "12341234"), new UserWithDefaultPasswords("francie.wildman@acme.com", "12341234"), new UserWithDefaultPasswords("yuka.kobayashi@acme.com", "12341234"), new UserWithDefaultPasswords("shun.watanabe@acme.com", "12341234"), new UserWithDefaultPasswords("natsumi.takahashi@acme.com", "12341234"), new UserWithDefaultPasswords("keita.tanaka@acme.com", "12341234"), new UserWithDefaultPasswords("ayumi.nakamura@acme.com", "12341234"), new UserWithDefaultPasswords("yu.yamamoto@acme.com", "12341234"), new UserWithDefaultPasswords("mai.matsumoto@acme.com", "12341234"), new UserWithDefaultPasswords("aarav.devi@acme.com", "12341234"), new UserWithDefaultPasswords("arjun.sewant@acme.com", "12341234"), new UserWithDefaultPasswords("chandni.devaraju@acme.com", "12341234"), new UserWithDefaultPasswords("sandesh.patwary@acme.com", "12341234"), new UserWithDefaultPasswords("zhang.wei@acme.com", "12341234"), new UserWithDefaultPasswords("wang.lei@acme.com", "12341234"), new UserWithDefaultPasswords("liu.yang@acme.com", "12341234"), new UserWithDefaultPasswords("chen.gao@acme.com", "12341234"), new UserWithDefaultPasswords("vada.rahm@acme.com", "12341234"), new UserWithDefaultPasswords("chris.rumple@ehost.com", "12341234"), new UserWithDefaultPasswords("dan.cameron@siteb.com", "12341234"), new UserWithDefaultPasswords("harold.wine@asite.org", "12341234"), new UserWithDefaultPasswords("h.williams@peabody.ca", "12341234"), new UserWithDefaultPasswords("daisy.smith@irc.uk", "12341234"), new UserWithDefaultPasswords("elena.bulav@internet.ru", "12341234"), new UserWithDefaultPasswords("wei.liu@homemail.ch", "12341234"), new UserWithDefaultPasswords("customer.support@nakano.com", "123456"), new UserWithDefaultPasswords("customer.support@ichikawa.com", "123456"), new UserWithDefaultPasswords("aaron.customer@hybris.com", "123456"), new UserWithDefaultPasswords("andrew.customer@hybris.com", "123456"), new UserWithDefaultPasswords("anette.customer@hybris.com", "123456"), new UserWithDefaultPasswords("bridget.customer@hybris.com", "123456"), new UserWithDefaultPasswords("arnold.customer@hybris.com", "123456"), new UserWithDefaultPasswords("anne.customer@hybris.com", "123456"), new UserWithDefaultPasswords("andrea.customer@hybris.com", "123456"), new UserWithDefaultPasswords("brian.customer@hybris.com", "123456"), new UserWithDefaultPasswords("bobby.customer@hybris.com", "123456"), new UserWithDefaultPasswords("anthony.customer@hybris.com", "123456"), new UserWithDefaultPasswords("bernard.customer@hybris.com", "123456"), new UserWithDefaultPasswords("vipgiold@hybris.com", "123456"), new UserWithDefaultPasswords("cxmanager", "12341234"), new UserWithDefaultPasswords("cxuser", "12341234"), new UserWithDefaultPasswords("vipgold@hybris.com", "12341234"), new UserWithDefaultPasswords("vipsilver@hybris.com", "12341234"), new UserWithDefaultPasswords("vipbronze@hybris.com", "12341234"), new UserWithDefaultPasswords("women@hybris.com", "12341234"), new UserWithDefaultPasswords("men@hybris.com", "12341234"), new UserWithDefaultPasswords("menover30@hybris.com", "12341234"), new UserWithDefaultPasswords("womenvipgold@hybris.com", "12341234"), new UserWithDefaultPasswords("womenvipsilver@hybris.com", "12341234"), new UserWithDefaultPasswords("menvipbronze@hybris.com", "12341234"), new UserWithDefaultPasswords("menvipgold@hybris.com", "12341234"), new UserWithDefaultPasswords("cxmanager-apparel-uk", "12341234"), new UserWithDefaultPasswords("cxuser-apparel-uk", "12341234"), new UserWithDefaultPasswords("menshortslover@hybris.com", "12341234"), new UserWithDefaultPasswords("shortslover@hybris.com", "12341234"), new UserWithDefaultPasswords("burtonlover@hybris.com", "12341234"), new UserWithDefaultPasswords("cxmanager-apparel-de", "12341234"), new UserWithDefaultPasswords("cxuser-apparel-de", "12341234"), new UserWithDefaultPasswords("cxmanager-electronics-eu", "12341234"), new UserWithDefaultPasswords("cxuser-electronics-eu", "12341234"), new UserWithDefaultPasswords("cxmanager-electronics-uk", "12341234"), new UserWithDefaultPasswords("cxuser-electronics-uk", "12341234"), new UserWithDefaultPasswords("cxmanager-electronics-de", "12341234"), new UserWithDefaultPasswords("cxuser-electronics-de", "12341234"), new UserWithDefaultPasswords("cxmanager-electronics-euzone", "12341234"), new UserWithDefaultPasswords("cxuser-electronics-euzone", "12341234"), new UserWithDefaultPasswords("cxmanager-electronics-us", "12341234"), new UserWithDefaultPasswords("cxuser-electronics-us", "12341234"), new UserWithDefaultPasswords("cxmanager-electronics", "12341234"), new UserWithDefaultPasswords("cxuser-electronics", "12341234"), new UserWithDefaultPasswords("canonlover@hybris.com", "12341234"), new UserWithDefaultPasswords("cameralenslover@hybris.com", "12341234"), new UserWithDefaultPasswords("cxmanager-powertools", "12341234"), new UserWithDefaultPasswords("cxuser-powertools", "12341234"), new UserWithDefaultPasswords("powerdrillslover@pronto-hw.com", "12341234"), new UserWithDefaultPasswords("screwdriverslover@pronto-hw.com", "12341234"), new UserWithDefaultPasswords("christmascustomer@hybris.com", "12341234"), new UserWithDefaultPasswords("summercustomer@hybris.com", "12341234"), new UserWithDefaultPasswords("maycustomer@hybris.com", "12341234"), new UserWithDefaultPasswords("thanksgivingcustomer@hybris.com", "12341234"), new UserWithDefaultPasswords("BackofficeProductManager", "1234"), new UserWithDefaultPasswords("BackofficeProductAdministrator", "1234"), new UserWithDefaultPasswords("BackofficeWorkflowUser", "1234"), new UserWithDefaultPasswords("BackofficeWorkflowAdministrator", "1234"), new UserWithDefaultPasswords("wfl_productManagement", "1234"), new UserWithDefaultPasswords("wfl_purchase", "1234"), new UserWithDefaultPasswords("wfl_marketing", "1234"), new UserWithDefaultPasswords("wfl_marketing_DE", "1234"), new UserWithDefaultPasswords("wfl_marketing_EN", "1234"), new UserWithDefaultPasswords("wfl_marketing_ES", "1234"), new UserWithDefaultPasswords("wfl_marketing_GB", "1234"), new UserWithDefaultPasswords("wfl_marketing_SWE", "1234"), new UserWithDefaultPasswords("wfl_marketing_FR", "1234"), new UserWithDefaultPasswords("wfl_marketing_IT", "1234"), new UserWithDefaultPasswords("wfl_marketing_GSW", "1234"), new UserWithDefaultPasswords("wfl_translator_DE", "1234"), new UserWithDefaultPasswords("wfl_translator_EN", "1234"), new UserWithDefaultPasswords("wfl_translator_ES", "1234"), new UserWithDefaultPasswords("wfl_translator_GB", "1234"), new UserWithDefaultPasswords("wfl_translator_SWE", "1234"), new UserWithDefaultPasswords("wfl_translator_FR", "1234"), new UserWithDefaultPasswords("wfl_translator_IT", "1234"), new UserWithDefaultPasswords("wfl_translator_GSW", "1234"), new UserWithDefaultPasswords("TranslatorGSW", "1234"), new UserWithDefaultPasswords("sbgadmin", "1234"), new UserWithDefaultPasswords("wfl_productApproval", "1234"), new UserWithDefaultPasswords("tuaInboundSimpleProductOfferingUser", "1234"), new UserWithDefaultPasswords("selfserviceuser2@hybris.com", "1234"), new UserWithDefaultPasswords("selfserviceuser3@hybris.com", "1234"), new UserWithDefaultPasswords("selfserviceuser4@hybris.com", "1234"), new UserWithDefaultPasswords("selfserviceuser5@hybris.com", "1234"), new UserWithDefaultPasswords("selfserviceuser6@hybris.com", "1234"), new UserWithDefaultPasswords("etta.berg@hybris.com", "1234"), new UserWithDefaultPasswords("tim.james@hybris.com", "1234"), new UserWithDefaultPasswords("ronnie.ray@hybris.com", "1234"), new UserWithDefaultPasswords("reggy.ray@hybris.com", "1234"), new UserWithDefaultPasswords("alan.martin@hybris.com", "1234"), new UserWithDefaultPasswords("maria.stevens@hybris.com", "1234"), new UserWithDefaultPasswords("john.russel@hybris.com", "1234"), new UserWithDefaultPasswords("mark.farrel@hybris.com", "1234"), new UserWithDefaultPasswords("olivia.ann@hybris.com", "1234"), new UserWithDefaultPasswords("adrian.kent@hybris.com", "1234"), new UserWithDefaultPasswords("customer.support@chicago.com", "123456"), new UserWithDefaultPasswords("customer.support@sanfrancisco.com", "123456"), new UserWithDefaultPasswords("pritika.customer@hybris.com", "123456"), new UserWithDefaultPasswords("kirti.customer@hybris.com", "123456"), new UserWithDefaultPasswords("isha.customer@hybris.com", "123456"), new UserWithDefaultPasswords("nishi.customer@hybris.com", "123456"), new UserWithDefaultPasswords("surabhi.customer@hybris.com", "123456"), new UserWithDefaultPasswords("kritika.customer@hybris.com", "123456"), new UserWithDefaultPasswords("dipti.customer@hybris.com", "123456"), new UserWithDefaultPasswords("pradeepthi.customer@hybris.com", "123456"), new UserWithDefaultPasswords("rewati.customer@hybris.com", "123456"), new UserWithDefaultPasswords("diptiman.customer@hybris.com", "123456"), new UserWithDefaultPasswords("daniel.customer@hybris.com", "123456"), new UserWithDefaultPasswords("abra.christensen@sapfsa.com", "1234"), new UserWithDefaultPasswords("aladdin.gentry@sapfsa.com", "1234"), new UserWithDefaultPasswords("amos.adkins@sapfsa.com", "1234"), new UserWithDefaultPasswords("aubrey.baxter@sapfsa.com", "1234"), new UserWithDefaultPasswords("blossom.welch@sapfsa.com", "1234"), new UserWithDefaultPasswords("burton.franco@sapfsa.com", "1234"), new UserWithDefaultPasswords("carson.shepherd@sapfsa.com", "1234"), new UserWithDefaultPasswords("colt.ford@sapfsa.com", "1234"), new UserWithDefaultPasswords("deacon.fuller@sapfsa.com", "1234"), new UserWithDefaultPasswords("dean.barton@sapfsa.com", "1234"), new UserWithDefaultPasswords("diana.best@sapfsa.com", "1234"), new UserWithDefaultPasswords("evangeline.jefferson@sapfsa.com", "1234"), new UserWithDefaultPasswords("hedley.mayer@sapfsa.com", "1234"), new UserWithDefaultPasswords("indira.duffy@sapfsa.com", "1234"), new UserWithDefaultPasswords("kadeem.gamble@sapfsa.com", "1234"), new UserWithDefaultPasswords("kai.ratliff@sapfsa.com", "1234"), new UserWithDefaultPasswords("kelsie.spencer@sapfsa.com", "1234"), new UserWithDefaultPasswords("michael.clarke@sapfsa.com", "1234"), new UserWithDefaultPasswords("patricia.anderson@sapfsa.com", "1234"), new UserWithDefaultPasswords("tag.demph@sapfsa.com", "1234"), new UserWithDefaultPasswords("ulysses.head@sapfsa.com", "1234"), new UserWithDefaultPasswords("xaviera.crawford@sapfsa.com", "1234"), new UserWithDefaultPasswords("yuri.chandler@sapfsa.com", "1234"), new UserWithDefaultPasswords("michael.barton@sapfsa.com", "1234"), new UserWithDefaultPasswords("thomas.schmidt@sapfsa.com", "123123"), new UserWithDefaultPasswords("kathy.liu@sapfsa.com", "123123"), new UserWithDefaultPasswords("john.miller@sapfsa.com", "123123"), new UserWithDefaultPasswords("richard.wilson@sapfsa.com", "123123"), new UserWithDefaultPasswords("marco.rossi@sapfsa.com", "123123"), new UserWithDefaultPasswords("takahiro.suzuki@sapfsa.com", "123123"), new UserWithDefaultPasswords("antonio.ferrari@sapfsa.com", "123123"), new UserWithDefaultPasswords("elena.petrova@sapfsa.com", "123123"), new UserWithDefaultPasswords("teresa.ruiz@sapfsa.com", "123123"), new UserWithDefaultPasswords("joana.oliveira@sapfsa.com", "123123"), new UserWithDefaultPasswords("pedro.dasilva@sapfsa.com", "123123"), new UserWithDefaultPasswords("ravi.pandey@sapfsa.com", "123123"), new UserWithDefaultPasswords("john.li@sapfsa.com", "123123"), new UserWithDefaultPasswords("aiko.abe@sapfsa.com", "123123"), new UserWithDefaultPasswords("monique.legrand@sapfsa.com", "123123"), new UserWithDefaultPasswords("stefan.bosch@sapfsa.com", "123123"), new UserWithDefaultPasswords("miguel.rodriguez@sapfsa.com", "123123"), new UserWithDefaultPasswords("matthew.zhao@sapfsa.com", "123123"), new UserWithDefaultPasswords("michael.adams@sapfsa.com", "123123"), new UserWithDefaultPasswords("donna@moore.com", "123456"), new UserWithDefaultPasswords("richard@wilson.com", "123456"), new UserWithDefaultPasswords("fsintegrationadmin", "123456"), new UserWithDefaultPasswords("jane.citizen@stateofrosebud.com", "Rosebud\$"), new UserWithDefaultPasswords("john.citizen@stateofrosebud.com", "Rosebud\$"), new UserWithDefaultPasswords("granny.citizen@stateofrosebud.com", "Rosebud\$"), new UserWithDefaultPasswords("jason.citizen@stateofrosebud.com", "Rosebud\$"), new UserWithDefaultPasswords("calvin.citizen@stateofrosebud.com", "Rosebud\$"), new UserWithDefaultPasswords("carol.citizen@stateofrosebud.com", "Rosebud\$"), new UserWithDefaultPasswords("elizabeth.miller@stateofrosebud.com", "Rosebud\$"), new UserWithDefaultPasswords("matthew.miller@stateofrosebud.com", "Rosebud\$"), new UserWithDefaultPasswords("teresa.citizen@stateofrosebud.com", "Rosebud\$"), new UserWithDefaultPasswords("amanda.smith@stateofrosebud.com", "Rosebud\$"), new UserWithDefaultPasswords("jack.smith@stateofrosebud.com", "Rosebud\$"), new UserWithDefaultPasswords("josephine.citizen@stateofrosebud.com", "Rosebud\$"), new UserWithDefaultPasswords("homer.citizen@stateofrosebud.com", "Rosebud\$"), new UserWithDefaultPasswords("jill.citizen", "Rosebud\$"), new UserWithDefaultPasswords("joey.citizen", "Rosebud\$")]
private final UserService userService
private final PasswordEncoderService passwordEncoderService
private boolean skipDisabledUsers = false
private boolean skipNonexistentUsers = false

DefaultPasswordChecker(final UserService userService, final PasswordEncoderService passwordEncoderService) {
this.userService = Objects.requireNonNull(userService)
this.passwordEncoderService = Objects.requireNonNull(passwordEncoderService)
}

static String generateReportForKnownUsers(final UserService userService, final PasswordEncoderService passwordEncoderService) {
return new DefaultPasswordChecker(userService, passwordEncoderService).generateReport()
}

static void setRandomPasswordAndDisableLoginForUsersWithKnownPasswords(final UserService userService, final PasswordEncoderService passwordEncoderService, final boolean skipDisabled = false, final boolean skipNonexistent = true) {
final DefaultPasswordChecker checker = new DefaultPasswordChecker(userService, passwordEncoderService)
checker.setSkipDisabledUsers(skipDisabled)
checker.setSkipNonexistentUsers(skipNonexistent)
checker.applyChanges()
}

void setSkipDisabledUsers(final boolean skipDisabledUsers) {
this.skipDisabledUsers = skipDisabledUsers
}

void setSkipNonexistentUsers(final boolean skipNonexistentUsers) {
this.skipNonexistentUsers = skipNonexistentUsers
}

String generateReport() {
return streamOfActions()
.map({ UserAction a -> a.toString() })
.collect(Collectors.joining("\n"))
}

void applyChanges() {
streamOfActions().forEach({ UserAction a -> a.execute() })
}

private Stream<UserAction> streamOfActions() {
Stream<UserAction> result = USERS_WITH_KNOWN_PASSWORDS
.stream()
.sorted(Comparator.comparing({ UserWithDefaultPasswords u -> u.uid.toLowerCase() }))
.map({ UserWithDefaultPasswords u -> toAction(u) })

if (skipDisabledUsers) result = result.filter({ UserAction a -> a.isLoginEnabled() })
if (skipNonexistentUsers) result = result.filter({ UserAction a -> a.userExists() })

return result
}

private UserAction toAction(final UserWithDefaultPasswords user) {
final UserModel existingUser
try {
existingUser = userService.getUserForUID(user.getUid())
} catch (UnknownIdentifierException e) {
return UserAction.nonexistentUser(user)
}

final boolean isAdmin = userService.isAdmin(existingUser)

if (hasPassword(existingUser, user.defaultPasswords)) {
return UserAction.changeDefaultPassword(existingUser, isAdmin)
}

if (hasPassword(existingUser, EMPTY_PASSWORDS)) {
return UserAction.changEmptyPassword(existingUser, isAdmin)
}

if (hasPassword(existingUser, COMMON_PASSWORDS)) {
return UserAction.changeCommonPassword(existingUser, isAdmin)
}

return UserAction.nothingToChange(existingUser)
}

private boolean hasPassword(final UserModel user, final Collection<String> passwordsToCheck) {
return passwordsToCheck
.stream()
.anyMatch({ String p -> passwordEncoderService.isValid(user, p) })
}

private static class UserAction {
private static final Logger LOG = LoggerFactory.getLogger(UserAction.class)

static UserAction nothingToChange(final UserModel user) {
return new DoNothing(user.getUid(), user.isLoginDisabled())
}

static UserAction nonexistentUser(final UserWithDefaultPasswords user) {
return new DoNothing(user.uid, null)
}

static UserAction changeDefaultPassword(final UserModel user, final boolean isAdmin) {
return new SetRandomPassword(user, !user.isLoginDisabled(), "default", isAdmin)
}

static UserAction changEmptyPassword(final UserModel user, final boolean isAdmin) {
return new SetRandomPassword(user, !user.isLoginDisabled(), "empty", isAdmin)
}

static UserAction changeCommonPassword(final UserModel user, final boolean isAdmin) {
return new SetRandomPassword(user, !user.isLoginDisabled(), "common", isAdmin)
}

void execute() {
LOG.info(this.toString())
}

boolean isLoginEnabled() {
return true
}

boolean userExists() {
return true
}

private static class DoNothing extends UserAction {
private final String uid
private final Boolean isLoginEnabled

private DoNothing(final String uid, final Boolean isLoginEnabled) {
this.uid = uid
this.isLoginEnabled = isLoginEnabled
}

@Override
boolean isLoginEnabled() {
return isLoginEnabled == null || isLoginEnabled
}

@Override
boolean userExists() {
return isLoginEnabled != null
}

@Override
String toString() {
return String.format("%s: %s.", uid, userExists() ? "Nothing to change" : "Doesn't exist")
}
}

private static class SetRandomPassword extends UserAction {
private final UserModel user
private final boolean disableUser
private final String passwordChangeReason
private final boolean isAdmin

private SetRandomPassword(final UserModel user, final boolean disableUser, final String passwordChangeReason, final boolean isAdmin) {
this.user = user
this.disableUser = disableUser
this.passwordChangeReason = passwordChangeReason
this.isAdmin = isAdmin
}

@Override
void execute() {
super.execute()
if (isAdminAdmin()) return
user.setPassword(UUID.randomUUID().toString())
if (disableUser && !isAdmin) {
user.setLoginDisabled(true)
}
}

@Override
boolean isLoginEnabled() {
return !user.isLoginDisabled()
}

@Override
String toString() {
return String.format("%s: Login %s%s Change %s password to the random one.%s%s",
user.getUid(),
user.isLoginDisabled() ? "disabled." : "ENABLED!",
isAdmin ? " ADMIN USER!" : "",
passwordChangeReason,
(disableUser && !isAdmin) ? " Disable login." : "",
isAdminAdmin() ? " Must be fixed manually." : "")
}

private boolean isAdminAdmin() {
return "admin".equals(user.getUid())
}
}
}

private static class UserWithDefaultPasswords {
final String uid
final Set<String> defaultPasswords

UserWithDefaultPasswords(final String uid, final String... defaultPasswords) {
this.uid = Objects.requireNonNull(uid, "uid mustn't be null.")
Objects.requireNonNull(defaultPasswords, "defaultPasswords mustn't be null.")
this.defaultPasswords = new HashSet<>(Arrays.asList(defaultPasswords))
this.defaultPasswords.forEach({ String p -> Objects.requireNonNull(p, "defaultPasswords mustn't contain null.") })
if (this.defaultPasswords.isEmpty()) {
throw new IllegalArgumentException("defaultPasswords mustn't be empty.")
}
}
}
}

DefaultPasswordChecker.generateReportForKnownUsers(userService, passwordEncoderService)

Result:

Then to execute password randomize groovy script:

import de.hybris.platform.core.model.user.UserModel
import de.hybris.platform.servicelayer.exceptions.UnknownIdentifierException
import de.hybris.platform.servicelayer.user.PasswordEncoderService
import de.hybris.platform.servicelayer.user.UserService
import org.slf4j.Logger
import org.slf4j.LoggerFactory

import java.util.stream.Collectors
import java.util.stream.Stream

class DefaultPasswordChecker {
private static final Collection<String> EMPTY_PASSWORDS = Arrays.asList("", null)
private static final Collection<String> COMMON_PASSWORDS = Arrays.asList("nimda", "1234", "123456", "12341234", "password", "pass123")
private static final Collection<UserWithDefaultPasswords> USERS_WITH_KNOWN_PASSWORDS = [new UserWithDefaultPasswords("anonymous", "suomynona"), new UserWithDefaultPasswords("hac_editor", "editor", ""), new UserWithDefaultPasswords("hac_viewer", "viewer", ""), new UserWithDefaultPasswords("yformsmanager", "yformsmanager"), new UserWithDefaultPasswords("alistair@hybris.com", "", "12341234"), new UserWithDefaultPasswords("BackofficeIntegrationAdministrator", ""), new UserWithDefaultPasswords("BackofficeIntegrationAgent", ""), new UserWithDefaultPasswords("integrationmonitoringtestuser", ""), new UserWithDefaultPasswords("integrationservicetestuser", ""), new UserWithDefaultPasswords("vjdbcReportsUser", "1234"), new UserWithDefaultPasswords("analyticsmanager", "1234"), new UserWithDefaultPasswords("cmsreader-apparel", "1234"), new UserWithDefaultPasswords("keenreviewer1@hybris.com", "password", "12341234"), new UserWithDefaultPasswords("reviewer1@hybris.com", "password", ""), new UserWithDefaultPasswords("keenreviewer2@hybris.com", "password", "12341234"), new UserWithDefaultPasswords("reviewer2@hybris.com", "password", ""), new UserWithDefaultPasswords("keenreviewer3@hybris.com", "password", "12341234"), new UserWithDefaultPasswords("reviewer3@hybris.com", "password", ""), new UserWithDefaultPasswords("keenreviewer4@hybris.com", "password", "12341234"), new UserWithDefaultPasswords("reviewer4@hybris.com", "password", ""), new UserWithDefaultPasswords("keenreviewer5@hybris.com", "password", "12341234"), new UserWithDefaultPasswords("reviewer5@hybris.com", "password", ""), new UserWithDefaultPasswords("keenreviewer6@hybris.com", "password", "12341234"), new UserWithDefaultPasswords("reviewer6@hybris.com", "password", ""), new UserWithDefaultPasswords("keenreviewer7@hybris.com", "password", "12341234"), new UserWithDefaultPasswords("reviewer7@hybris.com", "password", ""), new UserWithDefaultPasswords("keenreviewer8@hybris.com", "password", "12341234"), new UserWithDefaultPasswords("reviewer8@hybris.com", "password", ""), new UserWithDefaultPasswords("keenreviewer9@hybris.com", "password", "12341234"), new UserWithDefaultPasswords("reviewer9@hybris.com", "password", ""), new UserWithDefaultPasswords("keenreviewer10@hybris.com", "password", "123456"), new UserWithDefaultPasswords("reviewer10@hybris.com", "password", ""), new UserWithDefaultPasswords("keenreviewer11@hybris.com", "password", "123456"), new UserWithDefaultPasswords("reviewer11@hybris.com", "password", ""), new UserWithDefaultPasswords("keenreviewer12@hybris.com", "password", "123456"), new UserWithDefaultPasswords("reviewer12@hybris.com", "password", ""), new UserWithDefaultPasswords("keenreviewer13@hybris.com", "password", "123456"), new UserWithDefaultPasswords("reviewer13@hybris.com", "password", ""), new UserWithDefaultPasswords("keenreviewer14@hybris.com", "password", "123456"), new UserWithDefaultPasswords("reviewer14@hybris.com", "password", ""), new UserWithDefaultPasswords("keenreviewer15@hybris.com", "password", "123456"), new UserWithDefaultPasswords("reviewer15@hybris.com", "password", ""), new UserWithDefaultPasswords("keenreviewer16@hybris.com", "password", "123456"), new UserWithDefaultPasswords("reviewer16@hybris.com", "password", ""), new UserWithDefaultPasswords("keenreviewer17@hybris.com", "password", "123456"), new UserWithDefaultPasswords("reviewer17@hybris.com", "password", ""), new UserWithDefaultPasswords("keenreviewer18@hybris.com", "password", "123456"), new UserWithDefaultPasswords("reviewer18@hybris.com", "password", ""), new UserWithDefaultPasswords("keenreviewer19@hybris.com", "password", "123456"), new UserWithDefaultPasswords("reviewer19@hybris.com", "password", ""), new UserWithDefaultPasswords("keenreviewer20@hybris.com", "password", "123456"), new UserWithDefaultPasswords("reviewer20@hybris.com", "password", ""), new UserWithDefaultPasswords("keenreviewer21@hybris.com", "password", "123456"), new UserWithDefaultPasswords("reviewer21@hybris.com", "password", ""), new UserWithDefaultPasswords("keenreviewer22@hybris.com", "password", "123456"), new UserWithDefaultPasswords("reviewer22@hybris.com", "password", ""), new UserWithDefaultPasswords("keenreviewer23@hybris.com", "password", "123456"), new UserWithDefaultPasswords("reviewer23@hybris.com", "password", ""), new UserWithDefaultPasswords("keenreviewer24@hybris.com", "password", "123456"), new UserWithDefaultPasswords("reviewer24@hybris.com", "password", ""), new UserWithDefaultPasswords("keenreviewer25@hybris.com", "password", "123456"), new UserWithDefaultPasswords("reviewer25@hybris.com", "password", ""), new UserWithDefaultPasswords("keenreviewer26@hybris.com", "password", "123456"), new UserWithDefaultPasswords("reviewer26@hybris.com", "password", ""), new UserWithDefaultPasswords("keenreviewer27@hybris.com", "password", "123456"), new UserWithDefaultPasswords("reviewer27@hybris.com", "password", ""), new UserWithDefaultPasswords("keenreviewer28@hybris.com", "password", "123456"), new UserWithDefaultPasswords("reviewer28@hybris.com", "password", ""), new UserWithDefaultPasswords("keenreviewer29@hybris.com", "password", "123456"), new UserWithDefaultPasswords("reviewer29@hybris.com", "password", ""), new UserWithDefaultPasswords("keenreviewer30@hybris.com", "password", "123456"), new UserWithDefaultPasswords("reviewer30@hybris.com", "password", ""), new UserWithDefaultPasswords("asagent", "123456"), new UserWithDefaultPasswords("IntegrationAdministrator", "1234"), new UserWithDefaultPasswords("IntegrationAgent", "1234"), new UserWithDefaultPasswords("integrationapi_adminuser", ""), new UserWithDefaultPasswords("integrationapi_createuser", ""), new UserWithDefaultPasswords("integrationapi_viewuser", ""), new UserWithDefaultPasswords("manager", ""), new UserWithDefaultPasswords("cmsmanager", "1234"), new UserWithDefaultPasswords("revenueCloudCustomerApiUser", "nimda"), new UserWithDefaultPasswords("sapInboundProductUser", "nimda", ""), new UserWithDefaultPasswords("RegApproverA", "nimda", "12341234"), new UserWithDefaultPasswords("sapInboundMDMB2CCustomerUser", ""), new UserWithDefaultPasswords("sapInboundRCConfigUser", "nimda"), new UserWithDefaultPasswords("sapInboundSubscriptionPriceUser", "nimda"), new UserWithDefaultPasswords("searchmanager", "12341234"), new UserWithDefaultPasswords("csagent", "1234"), new UserWithDefaultPasswords("sapCpqQuoteApiUser", "nimda"), new UserWithDefaultPasswords("InboundConsentTemplateUser", "nimda"), new UserWithDefaultPasswords("punchout.customer@punchoutorg.com", "12341234"), new UserWithDefaultPasswords("punchout.customer2@punchoutorg.com", "12341234"), new UserWithDefaultPasswords("CustomerSupportAdministrator", "1234"), new UserWithDefaultPasswords("CustomerSupportManager", "1234"), new UserWithDefaultPasswords("CustomerSupportAgent", "1234"), new UserWithDefaultPasswords("sapInboundOMMReturnRequestUser", ""), new UserWithDefaultPasswords("importmanager", "1234"), new UserWithDefaultPasswords("sapInboundB2CCustomerUser", ""), new UserWithDefaultPasswords("sapInboundClassificationUser", ""), new UserWithDefaultPasswords("sapInboundPriceUser", ""), new UserWithDefaultPasswords("sapInboundB2BCustomerUser", ""), new UserWithDefaultPasswords("sapInboundOMMOrderUser", ""), new UserWithDefaultPasswords("marketingmanager", "", "12341234"), new UserWithDefaultPasswords("sapInboundOMSOrderUser", ""), new UserWithDefaultPasswords("test-user-with-orders@ydev.hybris.com", "Password123."), new UserWithDefaultPasswords("test-user-with-coupons@ydev.hybris.com", "Password123."), new UserWithDefaultPasswords("asagentsales", "123456"), new UserWithDefaultPasswords("asagentmanager", "123456"), new UserWithDefaultPasswords("customer.support.1@sap.com", "1234"), new UserWithDefaultPasswords("customer.support.2@sap.com", "1234"), new UserWithDefaultPasswords("customer.support.3@sap.com", "1234"), new UserWithDefaultPasswords("customer.support.4@sap.com", "1234"), new UserWithDefaultPasswords("customer.support.5@sap.com", "1234"), new UserWithDefaultPasswords("customer.support.6@sap.com", "1234"), new UserWithDefaultPasswords("customer.support.7@sap.com", "1234"), new UserWithDefaultPasswords("customer.support.8@sap.com", "1234"), new UserWithDefaultPasswords("WarehouseAdministrator", "1234"), new UserWithDefaultPasswords("WarehouseManager", "1234"), new UserWithDefaultPasswords("WarehouseAgent", "1234"), new UserWithDefaultPasswords("BedfordWarehouseAgent", "1234"), new UserWithDefaultPasswords("CarltonWarehouseAgent", "1234"), new UserWithDefaultPasswords("GlasgowWarehouseAgent", "1234"), new UserWithDefaultPasswords("JerseyWarehouseAgent", "1234"), new UserWithDefaultPasswords("LeedsWarehouseAgent", "1234"), new UserWithDefaultPasswords("BerlinMuseumWarehouseAgent", "1234"), new UserWithDefaultPasswords("BerlinDomWarehouseAgent", "1234"), new UserWithDefaultPasswords("BerlinZooWarehouseAgent", "1234"), new UserWithDefaultPasswords("BerlinHospitalWarehouseAgent", "1234"), new UserWithDefaultPasswords("MunichMuseumWarehouseAgent", "1234"), new UserWithDefaultPasswords("NakanoWarehouseAgent", "1234"), new UserWithDefaultPasswords("SecondaryNakanoWarehouseAgent", "1234"), new UserWithDefaultPasswords("ShinbashiWarehouseAgent", "1234"), new UserWithDefaultPasswords("KotoWarehouseAgent", "1234"), new UserWithDefaultPasswords("MisatoWarehouseAgent", "1234"), new UserWithDefaultPasswords("MatsudoWarehouseAgent", "1234"), new UserWithDefaultPasswords("DefaultWarehouseAgent", "1234"), new UserWithDefaultPasswords("Tulsa1WarehouseAgent", "1234"), new UserWithDefaultPasswords("Tulsa2WarehouseAgent", "1234"), new UserWithDefaultPasswords("Tulsa3WarehouseAgent", "1234"), new UserWithDefaultPasswords("Tulsa4WarehouseAgent", "1234"), new UserWithDefaultPasswords("Tulsa5WarehouseAgent", "1234"), new UserWithDefaultPasswords("IndianapolisWarehouseAgent", "1234"), new UserWithDefaultPasswords("TampaWarehouseAgent", "1234"), new UserWithDefaultPasswords("CajonWarehouseAgent", "1234"), new UserWithDefaultPasswords("TacomaWarehouseAgent", "1234"), new UserWithDefaultPasswords("WarehouseSAgent", "1234"), new UserWithDefaultPasswords("WarehouseEAgent", "1234"), new UserWithDefaultPasswords("WarehouseWAgent", "1234"), new UserWithDefaultPasswords("WarehouseNAgent", "1234"), new UserWithDefaultPasswords("cmspublisher", "1234"), new UserWithDefaultPasswords("cmsreviewer", "1234"), new UserWithDefaultPasswords("cmseditor", "1234"), new UserWithDefaultPasswords("cmstranslator", "1234"), new UserWithDefaultPasswords("cmstranslator-Annette", "1234"), new UserWithDefaultPasswords("cmstranslator-Seb", "1234"), new UserWithDefaultPasswords("cmsmanager-apparel-de", "1234"), new UserWithDefaultPasswords("cmsmanager-apparel-uk", "1234"), new UserWithDefaultPasswords("cmsmanager-powertools", "1234"), new UserWithDefaultPasswords("productmanager", "1234"), new UserWithDefaultPasswords("cmsmanager-electronics", "1234"), new UserWithDefaultPasswords("cmsmanager-electronics-euzone", "1234"), new UserWithDefaultPasswords("cmsmanager-electronics-eu", "1234"), new UserWithDefaultPasswords("cmsmanager-electronics-uk", "1234"), new UserWithDefaultPasswords("cmsmanager-electronics-de", "1234"), new UserWithDefaultPasswords("cmsmanager-electronics-us", "1234"), new UserWithDefaultPasswords("merchantvendormanager", "12341234"), new UserWithDefaultPasswords("vendor1vendoradministrator", "12341234"), new UserWithDefaultPasswords("vendor1vendorproductmanager", "12341234"), new UserWithDefaultPasswords("vendor1vendorcontentmanager", "12341234"), new UserWithDefaultPasswords("vendor1vendorwarehousestaff", "12341234"), new UserWithDefaultPasswords("vendor2vendoradministrator", "12341234"), new UserWithDefaultPasswords("vendor2vendorproductmanager", "12341234"), new UserWithDefaultPasswords("vendor2vendorcontentmanager", "12341234"), new UserWithDefaultPasswords("vendor2vendorwarehousestaff", "12341234"), new UserWithDefaultPasswords("vendor3vendoradministrator", "12341234"), new UserWithDefaultPasswords("vendor3vendorproductmanager", "12341234"), new UserWithDefaultPasswords("vendor3vendorcontentmanager", "12341234"), new UserWithDefaultPasswords("vendor3vendorwarehousestaff", "12341234"), new UserWithDefaultPasswords("vendor4vendoradministrator", "12341234"), new UserWithDefaultPasswords("vendor4vendorproductmanager", "12341234"), new UserWithDefaultPasswords("vendor4vendorcontentmanager", "12341234"), new UserWithDefaultPasswords("vendor4vendorwarehousestaff", "12341234"), new UserWithDefaultPasswords("vendor5vendoradministrator", "12341234"), new UserWithDefaultPasswords("vendor5vendorproductmanager", "12341234"), new UserWithDefaultPasswords("vendor5vendorcontentmanager", "12341234"), new UserWithDefaultPasswords("vendor5vendorwarehousestaff", "12341234"), new UserWithDefaultPasswords("vendor6vendoradministrator", "12341234"), new UserWithDefaultPasswords("vendor6vendorproductmanager", "12341234"), new UserWithDefaultPasswords("vendor6vendorcontentmanager", "12341234"), new UserWithDefaultPasswords("vendor6vendorwarehousestaff", "12341234"), new UserWithDefaultPasswords("vendor7vendoradministrator", "12341234"), new UserWithDefaultPasswords("vendor7vendorproductmanager", "12341234"), new UserWithDefaultPasswords("vendor7vendorcontentmanager", "12341234"), new UserWithDefaultPasswords("vendor7vendorwarehousestaff", "12341234"), new UserWithDefaultPasswords("vendor8vendoradministrator", "12341234"), new UserWithDefaultPasswords("vendor8vendorproductmanager", "12341234"), new UserWithDefaultPasswords("vendor8vendorcontentmanager", "12341234"), new UserWithDefaultPasswords("vendor8vendorwarehousestaff", "12341234"), new UserWithDefaultPasswords("keenreviewer0@hybris.com", "12341234"), new UserWithDefaultPasswords("merchantproductmanager", "12341234"), new UserWithDefaultPasswords("merchantcontentmanager", "12341234"), new UserWithDefaultPasswords("acctmgra", "12341234"), new UserWithDefaultPasswords("acctmgrb", "12341234"), new UserWithDefaultPasswords("acctmgrc", "12341234"), new UserWithDefaultPasswords("acctmgrd", "12341234"), new UserWithDefaultPasswords("linda.wolf@rustic-hw.com", "12341234"), new UserWithDefaultPasswords("lars.bauer@rustic-hw.com", "12341234"), new UserWithDefaultPasswords("hanna.schmidt@rustic-hw.com", "12341234"), new UserWithDefaultPasswords("james.bell@rustic-hw.com", "12341234"), new UserWithDefaultPasswords("carla.torres@rustic-hw.com", "12341234"), new UserWithDefaultPasswords("matheu.silva@rustic-hw.com", "12341234"), new UserWithDefaultPasswords("mingmei.wang@rustic-hw.com", "12341234"), new UserWithDefaultPasswords("mark.rivers@rustic-hw.com", "12341234"), new UserWithDefaultPasswords("anthony.lombardi@rustic-hw.com", "12341234"), new UserWithDefaultPasswords("william.hunter@rustic-hw.com", "12341234"), new UserWithDefaultPasswords("marie.dubois@rustic-hw.com", "12341234"), new UserWithDefaultPasswords("axel.krause@rustic-hw.com", "12341234"), new UserWithDefaultPasswords("ulf.becker@rustic-hw.com", "12341234"), new UserWithDefaultPasswords("alejandro.navarro@rustic-hw.com", "12341234"), new UserWithDefaultPasswords("lucas.kowalski@rustic-hw.com", "12341234"), new UserWithDefaultPasswords("byung-soon.lee@rustic-hw.com", "12341234"), new UserWithDefaultPasswords("gi.sun@rustic-hw.com", "12341234"), new UserWithDefaultPasswords("akiro.nakamura@rustic-hw.com", "12341234"), new UserWithDefaultPasswords("anil.gupta@rustic-hw.com", "12341234"), new UserWithDefaultPasswords("salome.levi@rustic-hw.com", "12341234"), new UserWithDefaultPasswords("linda.wolf@pronto-hw.com", "12341234"), new UserWithDefaultPasswords("hanna.schmidt@pronto-hw.com", "12341234"), new UserWithDefaultPasswords("james.bell@pronto-hw.com", "12341234"), new UserWithDefaultPasswords("mark.rivers@pronto-hw.com", "12341234"), new UserWithDefaultPasswords("mingmei.wang@pronto-hw.com", "12341234"), new UserWithDefaultPasswords("william.hunter@pronto-hw.com", "12341234"), new UserWithDefaultPasswords("gi.sun@pronto-hw.com", "12341234"), new UserWithDefaultPasswords("akiro.nakamura@pronto-hw.com", "12341234"), new UserWithDefaultPasswords("anil.gupta@pronto-hw.com", "12341234"), new UserWithDefaultPasswords("brandon.leclair@acme.com", "12341234"), new UserWithDefaultPasswords("janetta.estepp@acme.com", "12341234"), new UserWithDefaultPasswords("yoshie.dority@acme.com", "12341234"), new UserWithDefaultPasswords("glen.hofer@acme.com", "12341234"), new UserWithDefaultPasswords("temeka.meekins@acme.com", "12341234"), new UserWithDefaultPasswords("dionne.siguenza@acme.com", "12341234"), new UserWithDefaultPasswords("hermelinda.cusick@acme.com", "12341234"), new UserWithDefaultPasswords("karleen.holub@acme.com", "12341234"), new UserWithDefaultPasswords("abraham.mclane@acme.com", "12341234"), new UserWithDefaultPasswords("marvel.fargo@acme.com", "12341234"), new UserWithDefaultPasswords("darrin.hesser@acme.com", "12341234"), new UserWithDefaultPasswords("jules.hasson@acme.com", "12341234"), new UserWithDefaultPasswords("ula.barragan@acme.com", "12341234"), new UserWithDefaultPasswords("juliane.tickle@acme.com", "12341234"), new UserWithDefaultPasswords("lavone.dupler@acme.com", "12341234"), new UserWithDefaultPasswords("chelsie.steck@acme.com", "12341234"), new UserWithDefaultPasswords("daniele.sorber@acme.com", "12341234"), new UserWithDefaultPasswords("yan.shehorn@acme.com", "12341234"), new UserWithDefaultPasswords("fern.henline@acme.com", "12341234"), new UserWithDefaultPasswords("debera.spiller@acme.com", "12341234"), new UserWithDefaultPasswords("albert.decastro@acme.com", "12341234"), new UserWithDefaultPasswords("piedad.holdren@acme.com", "12341234"), new UserWithDefaultPasswords("bernardo.coelho@acme.com", "12341234"), new UserWithDefaultPasswords("sade.mcdougall@acme.com", "12341234"), new UserWithDefaultPasswords("latisha.latimer@acme.com", "12341234"), new UserWithDefaultPasswords("tom.ziebarth@acme.com", "12341234"), new UserWithDefaultPasswords("mara.martino@acme.com", "12341234"), new UserWithDefaultPasswords("elizabeth.juhlin@acme.com", "12341234"), new UserWithDefaultPasswords("sheilah.duffin@acme.com", "12341234"), new UserWithDefaultPasswords("eusebio.scharff@acme.com", "12341234"), new UserWithDefaultPasswords("alda.kamaka@acme.com", "12341234"), new UserWithDefaultPasswords("anamaria.coots@acme.com", "12341234"), new UserWithDefaultPasswords("lael.garibay@acme.com", "12341234"), new UserWithDefaultPasswords("jamey.sowa@acme.com", "12341234"), new UserWithDefaultPasswords("dot.cohan@acme.com", "12341234"), new UserWithDefaultPasswords("dorthy.geoghegan@acme.com", "12341234"), new UserWithDefaultPasswords("marie.kempner@acme.com", "12341234"), new UserWithDefaultPasswords("dietrich.brand@acme.com", "12341234"), new UserWithDefaultPasswords("dagmar.fischer@acme.com", "12341234"), new UserWithDefaultPasswords("angelyn.lobaugh@acme.com", "12341234"), new UserWithDefaultPasswords("tilda.prisbrey@acme.com", "12341234"), new UserWithDefaultPasswords("james.davis@acme.com", "12341234"), new UserWithDefaultPasswords("amelia.hill@acme.com", "12341234"), new UserWithDefaultPasswords("oliver.baker@acme.com", "12341234"), new UserWithDefaultPasswords("emily.bennett@acme.com", "12341234"), new UserWithDefaultPasswords("noah.jenkins@acme.com", "12341234"), new UserWithDefaultPasswords("isabella.jackson@acme.com", "12341234"), new UserWithDefaultPasswords("richard.martin@acme.com", "12341234"), new UserWithDefaultPasswords("hanna.andresen@acme.com", "12341234"), new UserWithDefaultPasswords("ossie.dilks@acme.com", "12341234"), new UserWithDefaultPasswords("annabel.golder@acme.com", "12341234"), new UserWithDefaultPasswords("francie.wildman@acme.com", "12341234"), new UserWithDefaultPasswords("yuka.kobayashi@acme.com", "12341234"), new UserWithDefaultPasswords("shun.watanabe@acme.com", "12341234"), new UserWithDefaultPasswords("natsumi.takahashi@acme.com", "12341234"), new UserWithDefaultPasswords("keita.tanaka@acme.com", "12341234"), new UserWithDefaultPasswords("ayumi.nakamura@acme.com", "12341234"), new UserWithDefaultPasswords("yu.yamamoto@acme.com", "12341234"), new UserWithDefaultPasswords("mai.matsumoto@acme.com", "12341234"), new UserWithDefaultPasswords("aarav.devi@acme.com", "12341234"), new UserWithDefaultPasswords("arjun.sewant@acme.com", "12341234"), new UserWithDefaultPasswords("chandni.devaraju@acme.com", "12341234"), new UserWithDefaultPasswords("sandesh.patwary@acme.com", "12341234"), new UserWithDefaultPasswords("zhang.wei@acme.com", "12341234"), new UserWithDefaultPasswords("wang.lei@acme.com", "12341234"), new UserWithDefaultPasswords("liu.yang@acme.com", "12341234"), new UserWithDefaultPasswords("chen.gao@acme.com", "12341234"), new UserWithDefaultPasswords("vada.rahm@acme.com", "12341234"), new UserWithDefaultPasswords("chris.rumple@ehost.com", "12341234"), new UserWithDefaultPasswords("dan.cameron@siteb.com", "12341234"), new UserWithDefaultPasswords("harold.wine@asite.org", "12341234"), new UserWithDefaultPasswords("h.williams@peabody.ca", "12341234"), new UserWithDefaultPasswords("daisy.smith@irc.uk", "12341234"), new UserWithDefaultPasswords("elena.bulav@internet.ru", "12341234"), new UserWithDefaultPasswords("wei.liu@homemail.ch", "12341234"), new UserWithDefaultPasswords("customer.support@nakano.com", "123456"), new UserWithDefaultPasswords("customer.support@ichikawa.com", "123456"), new UserWithDefaultPasswords("aaron.customer@hybris.com", "123456"), new UserWithDefaultPasswords("andrew.customer@hybris.com", "123456"), new UserWithDefaultPasswords("anette.customer@hybris.com", "123456"), new UserWithDefaultPasswords("bridget.customer@hybris.com", "123456"), new UserWithDefaultPasswords("arnold.customer@hybris.com", "123456"), new UserWithDefaultPasswords("anne.customer@hybris.com", "123456"), new UserWithDefaultPasswords("andrea.customer@hybris.com", "123456"), new UserWithDefaultPasswords("brian.customer@hybris.com", "123456"), new UserWithDefaultPasswords("bobby.customer@hybris.com", "123456"), new UserWithDefaultPasswords("anthony.customer@hybris.com", "123456"), new UserWithDefaultPasswords("bernard.customer@hybris.com", "123456"), new UserWithDefaultPasswords("vipgiold@hybris.com", "123456"), new UserWithDefaultPasswords("cxmanager", "12341234"), new UserWithDefaultPasswords("cxuser", "12341234"), new UserWithDefaultPasswords("vipgold@hybris.com", "12341234"), new UserWithDefaultPasswords("vipsilver@hybris.com", "12341234"), new UserWithDefaultPasswords("vipbronze@hybris.com", "12341234"), new UserWithDefaultPasswords("women@hybris.com", "12341234"), new UserWithDefaultPasswords("men@hybris.com", "12341234"), new UserWithDefaultPasswords("menover30@hybris.com", "12341234"), new UserWithDefaultPasswords("womenvipgold@hybris.com", "12341234"), new UserWithDefaultPasswords("womenvipsilver@hybris.com", "12341234"), new UserWithDefaultPasswords("menvipbronze@hybris.com", "12341234"), new UserWithDefaultPasswords("menvipgold@hybris.com", "12341234"), new UserWithDefaultPasswords("cxmanager-apparel-uk", "12341234"), new UserWithDefaultPasswords("cxuser-apparel-uk", "12341234"), new UserWithDefaultPasswords("menshortslover@hybris.com", "12341234"), new UserWithDefaultPasswords("shortslover@hybris.com", "12341234"), new UserWithDefaultPasswords("burtonlover@hybris.com", "12341234"), new UserWithDefaultPasswords("cxmanager-apparel-de", "12341234"), new UserWithDefaultPasswords("cxuser-apparel-de", "12341234"), new UserWithDefaultPasswords("cxmanager-electronics-eu", "12341234"), new UserWithDefaultPasswords("cxuser-electronics-eu", "12341234"), new UserWithDefaultPasswords("cxmanager-electronics-uk", "12341234"), new UserWithDefaultPasswords("cxuser-electronics-uk", "12341234"), new UserWithDefaultPasswords("cxmanager-electronics-de", "12341234"), new UserWithDefaultPasswords("cxuser-electronics-de", "12341234"), new UserWithDefaultPasswords("cxmanager-electronics-euzone", "12341234"), new UserWithDefaultPasswords("cxuser-electronics-euzone", "12341234"), new UserWithDefaultPasswords("cxmanager-electronics-us", "12341234"), new UserWithDefaultPasswords("cxuser-electronics-us", "12341234"), new UserWithDefaultPasswords("cxmanager-electronics", "12341234"), new UserWithDefaultPasswords("cxuser-electronics", "12341234"), new UserWithDefaultPasswords("canonlover@hybris.com", "12341234"), new UserWithDefaultPasswords("cameralenslover@hybris.com", "12341234"), new UserWithDefaultPasswords("cxmanager-powertools", "12341234"), new UserWithDefaultPasswords("cxuser-powertools", "12341234"), new UserWithDefaultPasswords("powerdrillslover@pronto-hw.com", "12341234"), new UserWithDefaultPasswords("screwdriverslover@pronto-hw.com", "12341234"), new UserWithDefaultPasswords("christmascustomer@hybris.com", "12341234"), new UserWithDefaultPasswords("summercustomer@hybris.com", "12341234"), new UserWithDefaultPasswords("maycustomer@hybris.com", "12341234"), new UserWithDefaultPasswords("thanksgivingcustomer@hybris.com", "12341234"), new UserWithDefaultPasswords("BackofficeProductManager", "1234"), new UserWithDefaultPasswords("BackofficeProductAdministrator", "1234"), new UserWithDefaultPasswords("BackofficeWorkflowUser", "1234"), new UserWithDefaultPasswords("BackofficeWorkflowAdministrator", "1234"), new UserWithDefaultPasswords("wfl_productManagement", "1234"), new UserWithDefaultPasswords("wfl_purchase", "1234"), new UserWithDefaultPasswords("wfl_marketing", "1234"), new UserWithDefaultPasswords("wfl_marketing_DE", "1234"), new UserWithDefaultPasswords("wfl_marketing_EN", "1234"), new UserWithDefaultPasswords("wfl_marketing_ES", "1234"), new UserWithDefaultPasswords("wfl_marketing_GB", "1234"), new UserWithDefaultPasswords("wfl_marketing_SWE", "1234"), new UserWithDefaultPasswords("wfl_marketing_FR", "1234"), new UserWithDefaultPasswords("wfl_marketing_IT", "1234"), new UserWithDefaultPasswords("wfl_marketing_GSW", "1234"), new UserWithDefaultPasswords("wfl_translator_DE", "1234"), new UserWithDefaultPasswords("wfl_translator_EN", "1234"), new UserWithDefaultPasswords("wfl_translator_ES", "1234"), new UserWithDefaultPasswords("wfl_translator_GB", "1234"), new UserWithDefaultPasswords("wfl_translator_SWE", "1234"), new UserWithDefaultPasswords("wfl_translator_FR", "1234"), new UserWithDefaultPasswords("wfl_translator_IT", "1234"), new UserWithDefaultPasswords("wfl_translator_GSW", "1234"), new UserWithDefaultPasswords("TranslatorGSW", "1234"), new UserWithDefaultPasswords("sbgadmin", "1234"), new UserWithDefaultPasswords("wfl_productApproval", "1234"), new UserWithDefaultPasswords("tuaInboundSimpleProductOfferingUser", "1234"), new UserWithDefaultPasswords("selfserviceuser2@hybris.com", "1234"), new UserWithDefaultPasswords("selfserviceuser3@hybris.com", "1234"), new UserWithDefaultPasswords("selfserviceuser4@hybris.com", "1234"), new UserWithDefaultPasswords("selfserviceuser5@hybris.com", "1234"), new UserWithDefaultPasswords("selfserviceuser6@hybris.com", "1234"), new UserWithDefaultPasswords("etta.berg@hybris.com", "1234"), new UserWithDefaultPasswords("tim.james@hybris.com", "1234"), new UserWithDefaultPasswords("ronnie.ray@hybris.com", "1234"), new UserWithDefaultPasswords("reggy.ray@hybris.com", "1234"), new UserWithDefaultPasswords("alan.martin@hybris.com", "1234"), new UserWithDefaultPasswords("maria.stevens@hybris.com", "1234"), new UserWithDefaultPasswords("john.russel@hybris.com", "1234"), new UserWithDefaultPasswords("mark.farrel@hybris.com", "1234"), new UserWithDefaultPasswords("olivia.ann@hybris.com", "1234"), new UserWithDefaultPasswords("adrian.kent@hybris.com", "1234"), new UserWithDefaultPasswords("customer.support@chicago.com", "123456"), new UserWithDefaultPasswords("customer.support@sanfrancisco.com", "123456"), new UserWithDefaultPasswords("pritika.customer@hybris.com", "123456"), new UserWithDefaultPasswords("kirti.customer@hybris.com", "123456"), new UserWithDefaultPasswords("isha.customer@hybris.com", "123456"), new UserWithDefaultPasswords("nishi.customer@hybris.com", "123456"), new UserWithDefaultPasswords("surabhi.customer@hybris.com", "123456"), new UserWithDefaultPasswords("kritika.customer@hybris.com", "123456"), new UserWithDefaultPasswords("dipti.customer@hybris.com", "123456"), new UserWithDefaultPasswords("pradeepthi.customer@hybris.com", "123456"), new UserWithDefaultPasswords("rewati.customer@hybris.com", "123456"), new UserWithDefaultPasswords("diptiman.customer@hybris.com", "123456"), new UserWithDefaultPasswords("daniel.customer@hybris.com", "123456"), new UserWithDefaultPasswords("abra.christensen@sapfsa.com", "1234"), new UserWithDefaultPasswords("aladdin.gentry@sapfsa.com", "1234"), new UserWithDefaultPasswords("amos.adkins@sapfsa.com", "1234"), new UserWithDefaultPasswords("aubrey.baxter@sapfsa.com", "1234"), new UserWithDefaultPasswords("blossom.welch@sapfsa.com", "1234"), new UserWithDefaultPasswords("burton.franco@sapfsa.com", "1234"), new UserWithDefaultPasswords("carson.shepherd@sapfsa.com", "1234"), new UserWithDefaultPasswords("colt.ford@sapfsa.com", "1234"), new UserWithDefaultPasswords("deacon.fuller@sapfsa.com", "1234"), new UserWithDefaultPasswords("dean.barton@sapfsa.com", "1234"), new UserWithDefaultPasswords("diana.best@sapfsa.com", "1234"), new UserWithDefaultPasswords("evangeline.jefferson@sapfsa.com", "1234"), new UserWithDefaultPasswords("hedley.mayer@sapfsa.com", "1234"), new UserWithDefaultPasswords("indira.duffy@sapfsa.com", "1234"), new UserWithDefaultPasswords("kadeem.gamble@sapfsa.com", "1234"), new UserWithDefaultPasswords("kai.ratliff@sapfsa.com", "1234"), new UserWithDefaultPasswords("kelsie.spencer@sapfsa.com", "1234"), new UserWithDefaultPasswords("michael.clarke@sapfsa.com", "1234"), new UserWithDefaultPasswords("patricia.anderson@sapfsa.com", "1234"), new UserWithDefaultPasswords("tag.demph@sapfsa.com", "1234"), new UserWithDefaultPasswords("ulysses.head@sapfsa.com", "1234"), new UserWithDefaultPasswords("xaviera.crawford@sapfsa.com", "1234"), new UserWithDefaultPasswords("yuri.chandler@sapfsa.com", "1234"), new UserWithDefaultPasswords("michael.barton@sapfsa.com", "1234"), new UserWithDefaultPasswords("thomas.schmidt@sapfsa.com", "123123"), new UserWithDefaultPasswords("kathy.liu@sapfsa.com", "123123"), new UserWithDefaultPasswords("john.miller@sapfsa.com", "123123"), new UserWithDefaultPasswords("richard.wilson@sapfsa.com", "123123"), new UserWithDefaultPasswords("marco.rossi@sapfsa.com", "123123"), new UserWithDefaultPasswords("takahiro.suzuki@sapfsa.com", "123123"), new UserWithDefaultPasswords("antonio.ferrari@sapfsa.com", "123123"), new UserWithDefaultPasswords("elena.petrova@sapfsa.com", "123123"), new UserWithDefaultPasswords("teresa.ruiz@sapfsa.com", "123123"), new UserWithDefaultPasswords("joana.oliveira@sapfsa.com", "123123"), new UserWithDefaultPasswords("pedro.dasilva@sapfsa.com", "123123"), new UserWithDefaultPasswords("ravi.pandey@sapfsa.com", "123123"), new UserWithDefaultPasswords("john.li@sapfsa.com", "123123"), new UserWithDefaultPasswords("aiko.abe@sapfsa.com", "123123"), new UserWithDefaultPasswords("monique.legrand@sapfsa.com", "123123"), new UserWithDefaultPasswords("stefan.bosch@sapfsa.com", "123123"), new UserWithDefaultPasswords("miguel.rodriguez@sapfsa.com", "123123"), new UserWithDefaultPasswords("matthew.zhao@sapfsa.com", "123123"), new UserWithDefaultPasswords("michael.adams@sapfsa.com", "123123"), new UserWithDefaultPasswords("donna@moore.com", "123456"), new UserWithDefaultPasswords("richard@wilson.com", "123456"), new UserWithDefaultPasswords("fsintegrationadmin", "123456"), new UserWithDefaultPasswords("jane.citizen@stateofrosebud.com", "Rosebud\$"), new UserWithDefaultPasswords("john.citizen@stateofrosebud.com", "Rosebud\$"), new UserWithDefaultPasswords("granny.citizen@stateofrosebud.com", "Rosebud\$"), new UserWithDefaultPasswords("jason.citizen@stateofrosebud.com", "Rosebud\$"), new UserWithDefaultPasswords("calvin.citizen@stateofrosebud.com", "Rosebud\$"), new UserWithDefaultPasswords("carol.citizen@stateofrosebud.com", "Rosebud\$"), new UserWithDefaultPasswords("elizabeth.miller@stateofrosebud.com", "Rosebud\$"), new UserWithDefaultPasswords("matthew.miller@stateofrosebud.com", "Rosebud\$"), new UserWithDefaultPasswords("teresa.citizen@stateofrosebud.com", "Rosebud\$"), new UserWithDefaultPasswords("amanda.smith@stateofrosebud.com", "Rosebud\$"), new UserWithDefaultPasswords("jack.smith@stateofrosebud.com", "Rosebud\$"), new UserWithDefaultPasswords("josephine.citizen@stateofrosebud.com", "Rosebud\$"), new UserWithDefaultPasswords("homer.citizen@stateofrosebud.com", "Rosebud\$"), new UserWithDefaultPasswords("jill.citizen", "Rosebud\$"), new UserWithDefaultPasswords("joey.citizen", "Rosebud\$")]
private final UserService userService
private final PasswordEncoderService passwordEncoderService
private boolean skipDisabledUsers = false
private boolean skipNonexistentUsers = false

DefaultPasswordChecker(final UserService userService, final PasswordEncoderService passwordEncoderService) {
this.userService = Objects.requireNonNull(userService)
this.passwordEncoderService = Objects.requireNonNull(passwordEncoderService)
}

static String generateReportForKnownUsers(final UserService userService, final PasswordEncoderService passwordEncoderService) {
return new DefaultPasswordChecker(userService, passwordEncoderService).generateReport()
}

static void setRandomPasswordAndDisableLoginForUsersWithKnownPasswords(final UserService userService, final PasswordEncoderService passwordEncoderService, final boolean skipDisabled = false, final boolean skipNonexistent = true) {
final DefaultPasswordChecker checker = new DefaultPasswordChecker(userService, passwordEncoderService)
checker.setSkipDisabledUsers(skipDisabled)
checker.setSkipNonexistentUsers(skipNonexistent)
checker.applyChanges()
}

void setSkipDisabledUsers(final boolean skipDisabledUsers) {
this.skipDisabledUsers = skipDisabledUsers
}

void setSkipNonexistentUsers(final boolean skipNonexistentUsers) {
this.skipNonexistentUsers = skipNonexistentUsers
}

String generateReport() {
return streamOfActions()
.map({ UserAction a -> a.toString() })
.collect(Collectors.joining("\n"))
}

void applyChanges() {
streamOfActions().forEach({ UserAction a -> a.execute() })
}

private Stream<UserAction> streamOfActions() {
Stream<UserAction> result = USERS_WITH_KNOWN_PASSWORDS
.stream()
.sorted(Comparator.comparing({ UserWithDefaultPasswords u -> u.uid.toLowerCase() }))
.map({ UserWithDefaultPasswords u -> toAction(u) })

if (skipDisabledUsers) result = result.filter({ UserAction a -> a.isLoginEnabled() })
if (skipNonexistentUsers) result = result.filter({ UserAction a -> a.userExists() })

return result
}

private UserAction toAction(final UserWithDefaultPasswords user) {
final UserModel existingUser
try {
existingUser = userService.getUserForUID(user.getUid())
} catch (UnknownIdentifierException e) {
return UserAction.nonexistentUser(user)
}

final boolean isAdmin = userService.isAdmin(existingUser)

if (hasPassword(existingUser, user.defaultPasswords)) {
return UserAction.changeDefaultPassword(existingUser, isAdmin)
}

if (hasPassword(existingUser, EMPTY_PASSWORDS)) {
return UserAction.changEmptyPassword(existingUser, isAdmin)
}

if (hasPassword(existingUser, COMMON_PASSWORDS)) {
return UserAction.changeCommonPassword(existingUser, isAdmin)
}

return UserAction.nothingToChange(existingUser)
}

private boolean hasPassword(final UserModel user, final Collection<String> passwordsToCheck) {
return passwordsToCheck
.stream()
.anyMatch({ String p -> passwordEncoderService.isValid(user, p) })
}

private static class UserAction {
private static final Logger LOG = LoggerFactory.getLogger(UserAction.class)

static UserAction nothingToChange(final UserModel user) {
return new DoNothing(user.getUid(), user.isLoginDisabled())
}

static UserAction nonexistentUser(final UserWithDefaultPasswords user) {
return new DoNothing(user.uid, null)
}

static UserAction changeDefaultPassword(final UserModel user, final boolean isAdmin) {
return new SetRandomPassword(user, !user.isLoginDisabled(), "default", isAdmin)
}

static UserAction changEmptyPassword(final UserModel user, final boolean isAdmin) {
return new SetRandomPassword(user, !user.isLoginDisabled(), "empty", isAdmin)
}

static UserAction changeCommonPassword(final UserModel user, final boolean isAdmin) {
return new SetRandomPassword(user, !user.isLoginDisabled(), "common", isAdmin)
}

void execute() {
LOG.info(this.toString())
}

boolean isLoginEnabled() {
return true
}

boolean userExists() {
return true
}

private static class DoNothing extends UserAction {
private final String uid
private final Boolean isLoginEnabled

private DoNothing(final String uid, final Boolean isLoginEnabled) {
this.uid = uid
this.isLoginEnabled = isLoginEnabled
}

@Override
boolean isLoginEnabled() {
return isLoginEnabled == null || isLoginEnabled
}

@Override
boolean userExists() {
return isLoginEnabled != null
}

@Override
String toString() {
return String.format("%s: %s.", uid, userExists() ? "Nothing to change" : "Doesn't exist")
}
}

private static class SetRandomPassword extends UserAction {
private final UserModel user
private final boolean disableUser
private final String passwordChangeReason
private final boolean isAdmin

private SetRandomPassword(final UserModel user, final boolean disableUser, final String passwordChangeReason, final boolean isAdmin) {
this.user = user
this.disableUser = disableUser
this.passwordChangeReason = passwordChangeReason
this.isAdmin = isAdmin
}

@Override
void execute() {
super.execute()
if (isAdminAdmin()) return
user.setPassword(UUID.randomUUID().toString())
if (disableUser && !isAdmin) {
user.setLoginDisabled(true)
}
}

@Override
boolean isLoginEnabled() {
return !user.isLoginDisabled()
}

@Override
String toString() {
return String.format("%s: Login %s%s Change %s password to the random one.%s%s",
user.getUid(),
user.isLoginDisabled() ? "disabled." : "ENABLED!",
isAdmin ? " ADMIN USER!" : "",
passwordChangeReason,
(disableUser && !isAdmin) ? " Disable login." : "",
isAdminAdmin() ? " Must be fixed manually." : "")
}

private boolean isAdminAdmin() {
return "admin".equals(user.getUid())
}
}
}

private static class UserWithDefaultPasswords {
final String uid
final Set<String> defaultPasswords

UserWithDefaultPasswords(final String uid, final String... defaultPasswords) {
this.uid = Objects.requireNonNull(uid, "uid mustn't be null.")
Objects.requireNonNull(defaultPasswords, "defaultPasswords mustn't be null.")
this.defaultPasswords = new HashSet<>(Arrays.asList(defaultPasswords))
this.defaultPasswords.forEach({ String p -> Objects.requireNonNull(p, "defaultPasswords mustn't contain null.") })
if (this.defaultPasswords.isEmpty()) {
throw new IllegalArgumentException("defaultPasswords mustn't be empty.")
}
}
}
}

DefaultPasswordChecker.setRandomPasswordAndDisableLoginForUsersWithKnownPasswords(userService, passwordEncoderService)
modelService.saveAll()

As i mentioned earlier with the newer version of SAP Commerce Cloud all these users are disabled. To enable them this impex can be used(Do not enable all default users, or set a single password for all users, in a production environment. You should use this procedure only for test, demonstration, or development systems)

UPDATE User;UID[unique=true];password[default=pw4all];loginDisabled[default=false]
"#%beforeEach:
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import de.hybris.platform.servicelayer.user.UserService;
import de.hybris.platform.servicelayer.exceptions.UnknownIdentifierException;
ERROR_MESSAGE_TEMPLATE = ""Password for the user [{}] can not be set because the user does not exist"";
Logger LOG = LoggerFactory.getLogger(""ImpExImportReader"");
UserService userService = Registry.getApplicationContext().getBean(""userService"", UserService.class);
userUid = line.get(1);
try
{
userService.getUserForUID(userUid);
}
catch (UnknownIdentifierException ex)
{
LOG.info(ERROR_MESSAGE_TEMPLATE, userUid);
line.clear();
}"
; aarav.devi@acme.com
; aaron.customer@hybris.com
; abraham.mclane@acme.com
; acctmgra
; acctmgrb
; acctmgrc
; acctmgrd
; akiro.nakamura@pronto-hw.com
; akiro.nakamura@rustic-hw.com
; albert.decastro@acme.com
; alda.kamaka@acme.com
; alejandro.navarro@rustic-hw.com
; alistair@hybris.com
; amelia.hill@acme.com
; analyticsmanager
; anamaria.coots@acme.com
; andrea.customer@hybris.com
; andrew.customer@hybris.com
; anette.customer@hybris.com
; angelyn.lobaugh@acme.com
; anil.gupta@pronto-hw.com
; anil.gupta@rustic-hw.com
; annabel.golder@acme.com
; anne.customer@hybris.com
; anonymous
; anthony.customer@hybris.com
; anthony.lombardi@rustic-hw.com
; arjun.sewant@acme.com
; arnold.customer@hybris.com
; asagent
; asagentmanager
; asagentsales
; axel.krause@rustic-hw.com
; ayumi.nakamura@acme.com
; BackofficeIntegrationAdministrator
; BackofficeIntegrationAgent
; BackofficeProductAdministrator
; BackofficeProductManager
; BackofficeWorkflowAdministrator
; BackofficeWorkflowUser
; BedfordWarehouseAgent
; BerlinDomWarehouseAgent
; BerlinHospitalWarehouseAgent
; BerlinMuseumWarehouseAgent
; BerlinZooWarehouseAgent
; bernard.customer@hybris.com
; bernardo.coelho@acme.com
; bobby.customer@hybris.com
; brandon.leclair@acme.com
; brian.customer@hybris.com
; bridget.customer@hybris.com
; burtonlover@hybris.com
; byung-soon.lee@rustic-hw.com
; CajonWarehouseAgent
; cameralenslover@hybris.com
; canonlover@hybris.com
; carla.torres@rustic-hw.com
; CarltonWarehouseAgent
; chandni.devaraju@acme.com
; chelsie.steck@acme.com
; chen.gao@acme.com
; chris.rumple@ehost.com
; christmascustomer@hybris.com
; cmseditor
; cmsmanager
; cmsmanager-apparel-de
; cmsmanager-apparel-uk
; cmsmanager-electronics
; cmsmanager-electronics-de
; cmsmanager-electronics-eu
; cmsmanager-electronics-euzone
; cmsmanager-electronics-uk
; cmsmanager-electronics-us
; cmsmanager-powertools
; cmspublisher
; cmsreader-apparel
; cmsreviewer
; cmstranslator
; cmstranslator-Annette
; cmstranslator-Seb
; csagent
; customer.support.1@sap.com
; customer.support.2@sap.com
; customer.support.3@sap.com
; customer.support.4@sap.com
; customer.support.5@sap.com
; customer.support.6@sap.com
; customer.support.7@sap.com
; customer.support.8@sap.com
; customer.support@ichikawa.com
; customer.support@nakano.com
; CustomerSupportAdministrator
; CustomerSupportAgent
; CustomerSupportManager
; cxmanager
; cxmanager-apparel-de
; cxmanager-apparel-uk
; cxmanager-electronics
; cxmanager-electronics-de
; cxmanager-electronics-eu
; cxmanager-electronics-euzone
; cxmanager-electronics-uk
; cxmanager-electronics-us
; cxmanager-powertools
; cxuser
; cxuser-apparel-de
; cxuser-apparel-uk
; cxuser-electronics
; cxuser-electronics-de
; cxuser-electronics-eu
; cxuser-electronics-euzone
; cxuser-electronics-uk
; cxuser-electronics-us
; cxuser-powertools
; dagmar.fischer@acme.com
; daisy.smith@irc.uk
; dan.cameron@siteb.com
; daniele.sorber@acme.com
; darrin.hesser@acme.com
; debera.spiller@acme.com
; DefaultWarehouseAgent
; dietrich.brand@acme.com
; dionne.siguenza@acme.com
; dorthy.geoghegan@acme.com
; dot.cohan@acme.com
; elena.bulav@internet.ru
; elizabeth.juhlin@acme.com
; emily.bennett@acme.com
; eusebio.scharff@acme.com
; fern.henline@acme.com
; francie.wildman@acme.com
; gi.sun@pronto-hw.com
; gi.sun@rustic-hw.com
; GlasgowWarehouseAgent
; glen.hofer@acme.com
; h.williams@peabody.ca
; hac_editor
; hac_viewer
; hanna.andresen@acme.com
; hanna.schmidt@pronto-hw.com
; hanna.schmidt@rustic-hw.com
; harold.wine@asite.org
; hermelinda.cusick@acme.com
; importmanager
; InboundConsentTemplateUser
; IndianapolisWarehouseAgent
; IntegrationAdministrator
; IntegrationAgent
; integrationapi_adminuser
; integrationapi_createuser
; integrationapi_viewuser
; integrationmonitoringtestuser
; integrationservicetestuser
; isabella.jackson@acme.com
; james.bell@pronto-hw.com
; james.bell@rustic-hw.com
; james.davis@acme.com
; jamey.sowa@acme.com
; janetta.estepp@acme.com
; JerseyWarehouseAgent
; jules.hasson@acme.com
; juliane.tickle@acme.com
; karleen.holub@acme.com
; keenreviewer0@hybris.com
; keenreviewer10@hybris.com
; keenreviewer11@hybris.com
; keenreviewer12@hybris.com
; keenreviewer13@hybris.com
; keenreviewer14@hybris.com
; keenreviewer15@hybris.com
; keenreviewer16@hybris.com
; keenreviewer17@hybris.com
; keenreviewer18@hybris.com
; keenreviewer19@hybris.com
; keenreviewer1@hybris.com
; keenreviewer20@hybris.com
; keenreviewer21@hybris.com
; keenreviewer22@hybris.com
; keenreviewer23@hybris.com
; keenreviewer24@hybris.com
; keenreviewer25@hybris.com
; keenreviewer26@hybris.com
; keenreviewer27@hybris.com
; keenreviewer28@hybris.com
; keenreviewer29@hybris.com
; keenreviewer2@hybris.com
; keenreviewer30@hybris.com
; keenreviewer3@hybris.com
; keenreviewer4@hybris.com
; keenreviewer5@hybris.com
; keenreviewer6@hybris.com
; keenreviewer7@hybris.com
; keenreviewer8@hybris.com
; keenreviewer9@hybris.com
; keita.tanaka@acme.com
; KotoWarehouseAgent
; lael.garibay@acme.com
; lars.bauer@rustic-hw.com
; latisha.latimer@acme.com
; lavone.dupler@acme.com
; LeedsWarehouseAgent
; linda.wolf@pronto-hw.com
; linda.wolf@rustic-hw.com
; liu.yang@acme.com
; lucas.kowalski@rustic-hw.com
; mai.matsumoto@acme.com
; manager
; mara.martino@acme.com
; marie.dubois@rustic-hw.com
; marie.kempner@acme.com
; mark.rivers@pronto-hw.com
; mark.rivers@rustic-hw.com
; marketingmanager
; marvel.fargo@acme.com
; matheu.silva@rustic-hw.com
; MatsudoWarehouseAgent
; maycustomer@hybris.com
; men@hybris.com
; menover30@hybris.com
; menshortslover@hybris.com
; menvipbronze@hybris.com
; menvipgold@hybris.com
; merchantcontentmanager
; merchantproductmanager
; merchantvendormanager
; mingmei.wang@pronto-hw.com
; mingmei.wang@rustic-hw.com
; MisatoWarehouseAgent
; MunichMuseumWarehouseAgent
; NakanoWarehouseAgent
; natsumi.takahashi@acme.com
; noah.jenkins@acme.com
; oliver.baker@acme.com
; ossie.dilks@acme.com
; piedad.holdren@acme.com
; powerdrillslover@pronto-hw.com
; productmanager
; punchout.customer2@punchoutorg.com
; punchout.customer@punchoutorg.com
; RegApproverA
; revenueCloudCustomerApiUser
; reviewer10@hybris.com
; reviewer11@hybris.com
; reviewer12@hybris.com
; reviewer13@hybris.com
; reviewer14@hybris.com
; reviewer15@hybris.com
; reviewer16@hybris.com
; reviewer17@hybris.com
; reviewer18@hybris.com
; reviewer19@hybris.com
; reviewer1@hybris.com
; reviewer20@hybris.com
; reviewer21@hybris.com
; reviewer22@hybris.com
; reviewer23@hybris.com
; reviewer24@hybris.com
; reviewer25@hybris.com
; reviewer26@hybris.com
; reviewer27@hybris.com
; reviewer28@hybris.com
; reviewer29@hybris.com
; reviewer2@hybris.com
; reviewer30@hybris.com
; reviewer3@hybris.com
; reviewer4@hybris.com
; reviewer5@hybris.com
; reviewer6@hybris.com
; reviewer7@hybris.com
; reviewer8@hybris.com
; reviewer9@hybris.com
; richard.martin@acme.com
; sade.mcdougall@acme.com
; salome.levi@rustic-hw.com
; sandesh.patwary@acme.com
; sapCpqQuoteApiUser
; sapInboundB2BCustomerUser
; sapInboundB2CCustomerUser
; sapInboundClassificationUser
; sapInboundMDMB2CCustomerUser
; sapInboundOMMOrderUser
; sapInboundOMMReturnRequestUser
; sapInboundOMSOrderUser
; sapInboundPriceUser
; sapInboundProductUser
; sapInboundRCConfigUser
; sapInboundSubscriptionPriceUser
; screwdriverslover@pronto-hw.com
; searchmanager
; SecondaryNakanoWarehouseAgent
; sheilah.duffin@acme.com
; ShinbashiWarehouseAgent
; shortslover@hybris.com
; shun.watanabe@acme.com
; summercustomer@hybris.com
; TacomaWarehouseAgent
; TampaWarehouseAgent
; temeka.meekins@acme.com
; test-user-with-coupons@ydev.hybris.com
; test-user-with-orders@ydev.hybris.com
; thanksgivingcustomer@hybris.com
; tilda.prisbrey@acme.com
; tom.ziebarth@acme.com
; TranslatorGSW
; Tulsa1WarehouseAgent
; Tulsa2WarehouseAgent
; Tulsa3WarehouseAgent
; Tulsa4WarehouseAgent
; Tulsa5WarehouseAgent
; ula.barragan@acme.com
; ulf.becker@rustic-hw.com
; vada.rahm@acme.com
; vendor1vendoradministrator
; vendor1vendorcontentmanager
; vendor1vendorproductmanager
; vendor1vendorwarehousestaff
; vendor2vendoradministrator
; vendor2vendorcontentmanager
; vendor2vendorproductmanager
; vendor2vendorwarehousestaff
; vendor3vendoradministrator
; vendor3vendorcontentmanager
; vendor3vendorproductmanager
; vendor3vendorwarehousestaff
; vendor4vendoradministrator
; vendor4vendorcontentmanager
; vendor4vendorproductmanager
; vendor4vendorwarehousestaff
; vendor5vendoradministrator
; vendor5vendorcontentmanager
; vendor5vendorproductmanager
; vendor5vendorwarehousestaff
; vendor6vendoradministrator
; vendor6vendorcontentmanager
; vendor6vendorproductmanager
; vendor6vendorwarehousestaff
; vendor7vendoradministrator
; vendor7vendorcontentmanager
; vendor7vendorproductmanager
; vendor7vendorwarehousestaff
; vendor8vendoradministrator
; vendor8vendorcontentmanager
; vendor8vendorproductmanager
; vendor8vendorwarehousestaff
; vipbronze@hybris.com
; vipgiold@hybris.com
; vipgold@hybris.com
; vipsilver@hybris.com
; vjdbcReportsUser
; wang.lei@acme.com
; WarehouseAdministrator
; WarehouseAgent
; WarehouseEAgent
; WarehouseManager
; WarehouseNAgent
; WarehouseSAgent
; WarehouseWAgent
; wei.liu@homemail.ch
; wfl_marketing
; wfl_marketing_DE
; wfl_marketing_EN
; wfl_marketing_ES
; wfl_marketing_FR
; wfl_marketing_GB
; wfl_marketing_GSW
; wfl_marketing_IT
; wfl_marketing_SWE
; wfl_productManagement
; wfl_purchase
; wfl_translator_DE
; wfl_translator_EN
; wfl_translator_ES
; wfl_translator_FR
; wfl_translator_GB
; wfl_translator_GSW
; wfl_translator_IT
; wfl_translator_SWE
; william.hunter@pronto-hw.com
; william.hunter@rustic-hw.com
; women@hybris.com
; womenvipgold@hybris.com
; womenvipsilver@hybris.com
; yan.shehorn@acme.com
; yformsmanager
; yoshie.dority@acme.com
; yu.yamamoto@acme.com
; yuka.kobayashi@acme.com
; zhang.wei@acme.com
; sbgadmin
; wfl_productApproval
; tuaInboundSimpleProductOfferingUser
; selfserviceuser2@hybris.com
; selfserviceuser3@hybris.com
; selfserviceuser4@hybris.com
; selfserviceuser5@hybris.com
; selfserviceuser6@hybris.com
; etta.berg@hybris.com
; tim.james@hybris.com
; ronnie.ray@hybris.com
; reggy.ray@hybris.com
; alan.martin@hybris.com
; maria.stevens@hybris.com
; john.russel@hybris.com
; mark.farrel@hybris.com
; olivia.ann@hybris.com
; adrian.kent@hybris.com
; customer.support@chicago.com
; customer.support@sanfrancisco.com
; pritika.customer@hybris.com
; kirti.customer@hybris.com
; isha.customer@hybris.com
; nishi.customer@hybris.com
; surabhi.customer@hybris.com
; kritika.customer@hybris.com
; dipti.customer@hybris.com
; pradeepthi.customer@hybris.com
; rewati.customer@hybris.com
; diptiman.customer@hybris.com
; daniel.customer@hybris.com
; abra.christensen@sapfsa.com
; aladdin.gentry@sapfsa.com
; amos.adkins@sapfsa.com
; aubrey.baxter@sapfsa.com
; blossom.welch@sapfsa.com
; burton.franco@sapfsa.com
; carson.shepherd@sapfsa.com
; colt.ford@sapfsa.com
; deacon.fuller@sapfsa.com
; dean.barton@sapfsa.com
; diana.best@sapfsa.com
; evangeline.jefferson@sapfsa.com
; hedley.mayer@sapfsa.com
; idira.duffy@sapfsa.com
; kadeem.gamble@sapfsa.com
; kai.ratliff@sapfsa.com
; kelsie.spencer@sapfsa.com
; michael.clarke@sapfsa.com
; patricia.anderson@sapfsa.com
; tag.demph@sapfsa.com
; ulysses.head@sapfsa.com
; xaviera.crawford@sapfsa.com
; yuri.chandler@sapfsa.com
; michael.barton@sapfsa.com
; thomas.schmidt@sapfsa.com
; kathy.liu@sapfsa.com
; john.miller@sapfsa.com
; richard.wilson@sapfsa.com
; marco.rossi@sapfsa.com
; takahiro.suzuki@sapfsa.com
; antonio.ferrari@sapfsa.com
; elena.petrova@sapfsa.com
; teresa.ruiz@sapfsa.com
; joana.oliveira@sapfsa.com
; pedro.dasilva@sapfsa.com
; ravi.pandey@sapfsa.com
; john.li@sapfsa.com
; aiko.abe@sapfsa.com
; monique.legrand@sapfsa.com
; stefan.bosch@sapfsa.com
; miguel.rodriguez@sapfsa.com
; matthew.zhao@sapfsa.com
; michael.adams@sapfsa.com
; donna@moore.com
; richard@wilson.com
; fsintegrationadmin
; jane.citizen@stateofrosebud.com
; john.citizen@stateofrosebud.com
; granny.citizen@stateofrosebud.com
; jason.citizen@stateofrosebud.com
; calvin.citizen@stateofrosebud.com
; carol.citizen@stateofrosebud.com
; elizabeth.miller@stateofrosebud.com
; matthew.miller@stateofrosebud.com
; teresa.citizen@stateofrosebud.com
; amanda.smith@stateofrosebud.com
; jack.smith@stateofrosebud.com
; josephine.citizen@stateofrosebud.com
; homer.citizen@stateofrosebud.com
; jill.citizen
; joey.citizen

You can find detailed instructions on how to change/set passwords for default users using Backoffice, executing Impex and enable/disable users by referring to the following: Official Documentation.

--

--