McMyAdmin was replaced by AMP in 2018, new users should use AMP instead of McMyAdmin.
This page remains here for legacy users.
AMP features the same ease of use and simple installation, but supports more games, has more features, and will continue to recieve support and updates. McMyAdmin 2 is no longer recieving any feature updates.
Please use CubeCoders AMP for any new installations where possible.
import webcolors css_colors = webcolors.CSS3_NAMES_TO_HEX with open('my-colors.txt', 'w') as f: for name, hexcode in css_colors.items(): f.write(f"name,hexcode\n")
# Extract all hex values jq '.[] | .hex' color-names.json > hex-values.txt jq -r 'to_entries[] | "--(.key): (.value.hex);"' color-names.json > colors.css Case 2: Fuzz a color parameter (bug bounty) ffuf -u https://example.com/api?color=FUZZ -w SecLists/Discovery/Web-Content/common-colors.txt Case 3: Create a terminal theme # Pull ANSI codes from jonas/ansi-colors curl -s https://raw.githubusercontent.com/jonas/ansi-colors/main/index.js | grep "colors\[" What to Look For in a Quality Color Wordlist | Feature | Why it matters | |---------|----------------| | Multiple formats | JSON for web, CSV for Excel, TXT for fuzzing | | De-duplicated | Prevents repeated hex codes | | Licensed | MIT or CC0 – avoid GPL if proprietary | | Versioned | Color standards change (e.g., Pantone to HEX mapping) | Building Your Own Color Wordlist If the existing lists don’t fit your need (e.g., you want only “pastel” colors), use this Python snippet: color wordlist github
©2013-2023 CubeCoders Limited
Registered in the United Kingdom